blob: e1672c478522e874e4560fed10828a8b4a4212db [file] [log] [blame]
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001/*
2 * Support routines from the Windows API
3 *
4 * This module was originally created by merging PC/_subprocess.c with
5 * Modules/_multiprocessing/win32_functions.c.
6 *
7 * Copyright (c) 2004 by Fredrik Lundh <fredrik@pythonware.com>
8 * Copyright (c) 2004 by Secret Labs AB, http://www.pythonware.com
9 * Copyright (c) 2004 by Peter Astrand <astrand@lysator.liu.se>
10 *
11 * By obtaining, using, and/or copying this software and/or its
12 * associated documentation, you agree that you have read, understood,
13 * and will comply with the following terms and conditions:
14 *
15 * Permission to use, copy, modify, and distribute this software and
16 * its associated documentation for any purpose and without fee is
17 * hereby granted, provided that the above copyright notice appears in
18 * all copies, and that both that copyright notice and this permission
19 * notice appear in supporting documentation, and that the name of the
20 * authors not be used in advertising or publicity pertaining to
21 * distribution of the software without specific, written prior
22 * permission.
23 *
24 * THE AUTHORS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
25 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
26 * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
27 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
28 * OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
29 * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
30 * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
31 *
32 */
33
34/* Licensed to PSF under a Contributor Agreement. */
35/* See http://www.python.org/2.4/license for licensing details. */
36
37#include "Python.h"
Victor Stinner4a21e572020-04-15 02:35:41 +020038#include "structmember.h" // PyMemberDef
Antoine Pitrou23bba4c2012-04-18 20:51:15 +020039
40#define WINDOWS_LEAN_AND_MEAN
41#include "windows.h"
42#include <crtdbg.h>
Tim Golden0321cf22014-05-05 19:46:17 +010043#include "winreparse.h"
Antoine Pitrou23bba4c2012-04-18 20:51:15 +020044
45#if defined(MS_WIN32) && !defined(MS_WIN64)
46#define HANDLE_TO_PYNUM(handle) \
47 PyLong_FromUnsignedLong((unsigned long) handle)
48#define PYNUM_TO_HANDLE(obj) ((HANDLE)PyLong_AsUnsignedLong(obj))
49#define F_POINTER "k"
50#define T_POINTER T_ULONG
51#else
52#define HANDLE_TO_PYNUM(handle) \
53 PyLong_FromUnsignedLongLong((unsigned long long) handle)
54#define PYNUM_TO_HANDLE(obj) ((HANDLE)PyLong_AsUnsignedLongLong(obj))
55#define F_POINTER "K"
56#define T_POINTER T_ULONGLONG
57#endif
58
59#define F_HANDLE F_POINTER
60#define F_DWORD "k"
Antoine Pitrou23bba4c2012-04-18 20:51:15 +020061
62#define T_HANDLE T_POINTER
63
64/* Grab CancelIoEx dynamically from kernel32 */
65static int has_CancelIoEx = -1;
66static BOOL (CALLBACK *Py_CancelIoEx)(HANDLE, LPOVERLAPPED);
67
68static int
69check_CancelIoEx()
70{
71 if (has_CancelIoEx == -1)
72 {
73 HINSTANCE hKernel32 = GetModuleHandle("KERNEL32");
74 * (FARPROC *) &Py_CancelIoEx = GetProcAddress(hKernel32,
75 "CancelIoEx");
76 has_CancelIoEx = (Py_CancelIoEx != NULL);
77 }
78 return has_CancelIoEx;
79}
80
81
82/*
83 * A Python object wrapping an OVERLAPPED structure and other useful data
84 * for overlapped I/O
85 */
86
87typedef struct {
88 PyObject_HEAD
89 OVERLAPPED overlapped;
90 /* For convenience, we store the file handle too */
91 HANDLE handle;
92 /* Whether there's I/O in flight */
93 int pending;
94 /* Whether I/O completed successfully */
95 int completed;
96 /* Buffer used for reading (optional) */
97 PyObject *read_buffer;
98 /* Buffer used for writing (optional) */
99 Py_buffer write_buffer;
100} OverlappedObject;
101
102static void
103overlapped_dealloc(OverlappedObject *self)
104{
105 DWORD bytes;
106 int err = GetLastError();
Richard Oudkerk633db6f2013-11-17 13:15:51 +0000107
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200108 if (self->pending) {
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200109 if (check_CancelIoEx() &&
Richard Oudkerk633db6f2013-11-17 13:15:51 +0000110 Py_CancelIoEx(self->handle, &self->overlapped) &&
111 GetOverlappedResult(self->handle, &self->overlapped, &bytes, TRUE))
112 {
113 /* The operation is no longer pending -- nothing to do. */
114 }
Eric Snow2ebc5ce2017-09-07 23:51:28 -0600115 else if (_Py_IsFinalizing())
Richard Oudkerk633db6f2013-11-17 13:15:51 +0000116 {
117 /* The operation is still pending -- give a warning. This
118 will probably only happen on Windows XP. */
119 PyErr_SetString(PyExc_RuntimeError,
120 "I/O operations still in flight while destroying "
121 "Overlapped object, the process may crash");
122 PyErr_WriteUnraisable(NULL);
123 }
124 else
125 {
126 /* The operation is still pending, but the process is
127 probably about to exit, so we need not worry too much
128 about memory leaks. Leaking self prevents a potential
129 crash. This can happen when a daemon thread is cleaned
130 up at exit -- see #19565. We only expect to get here
131 on Windows XP. */
132 CloseHandle(self->overlapped.hEvent);
133 SetLastError(err);
134 return;
135 }
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200136 }
Richard Oudkerk633db6f2013-11-17 13:15:51 +0000137
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200138 CloseHandle(self->overlapped.hEvent);
139 SetLastError(err);
140 if (self->write_buffer.obj)
141 PyBuffer_Release(&self->write_buffer);
142 Py_CLEAR(self->read_buffer);
143 PyObject_Del(self);
144}
145
Zachary Waref2244ea2015-05-13 01:22:54 -0500146/*[clinic input]
147module _winapi
148class _winapi.Overlapped "OverlappedObject *" "&OverlappedType"
149[clinic start generated code]*/
150/*[clinic end generated code: output=da39a3ee5e6b4b0d input=c13d3f5fd1dabb84]*/
151
152/*[python input]
153def create_converter(type_, format_unit):
154 name = type_ + '_converter'
155 # registered upon creation by CConverter's metaclass
156 type(name, (CConverter,), {'type': type_, 'format_unit': format_unit})
157
158# format unit differs between platforms for these
159create_converter('HANDLE', '" F_HANDLE "')
160create_converter('HMODULE', '" F_HANDLE "')
161create_converter('LPSECURITY_ATTRIBUTES', '" F_POINTER "')
Davin Pottse895de32019-02-23 22:08:16 -0600162create_converter('LPCVOID', '" F_POINTER "')
Zachary Waref2244ea2015-05-13 01:22:54 -0500163
164create_converter('BOOL', 'i') # F_BOOL used previously (always 'i')
165create_converter('DWORD', 'k') # F_DWORD is always "k" (which is much shorter)
166create_converter('LPCTSTR', 's')
Giampaolo Rodola4a172cc2018-06-12 23:04:50 +0200167create_converter('LPCWSTR', 'u')
Zachary Waref2244ea2015-05-13 01:22:54 -0500168create_converter('LPWSTR', 'u')
169create_converter('UINT', 'I') # F_UINT used previously (always 'I')
170
171class HANDLE_return_converter(CReturnConverter):
172 type = 'HANDLE'
173
174 def render(self, function, data):
175 self.declare(data)
176 self.err_occurred_if("_return_value == INVALID_HANDLE_VALUE", data)
177 data.return_conversion.append(
Serhiy Storchaka5dee6552016-06-09 16:16:06 +0300178 'if (_return_value == NULL) {\n Py_RETURN_NONE;\n}\n')
Zachary Waref2244ea2015-05-13 01:22:54 -0500179 data.return_conversion.append(
180 'return_value = HANDLE_TO_PYNUM(_return_value);\n')
181
182class DWORD_return_converter(CReturnConverter):
183 type = 'DWORD'
184
185 def render(self, function, data):
186 self.declare(data)
Victor Stinner850a18e2017-10-24 16:53:32 -0700187 self.err_occurred_if("_return_value == PY_DWORD_MAX", data)
Zachary Waref2244ea2015-05-13 01:22:54 -0500188 data.return_conversion.append(
189 'return_value = Py_BuildValue("k", _return_value);\n')
Davin Pottse895de32019-02-23 22:08:16 -0600190
191class LPVOID_return_converter(CReturnConverter):
192 type = 'LPVOID'
193
194 def render(self, function, data):
195 self.declare(data)
196 self.err_occurred_if("_return_value == NULL", data)
197 data.return_conversion.append(
198 'return_value = HANDLE_TO_PYNUM(_return_value);\n')
Zachary Waref2244ea2015-05-13 01:22:54 -0500199[python start generated code]*/
Davin Pottse895de32019-02-23 22:08:16 -0600200/*[python end generated code: output=da39a3ee5e6b4b0d input=79464c61a31ae932]*/
Zachary Waref2244ea2015-05-13 01:22:54 -0500201
202#include "clinic/_winapi.c.h"
203
204/*[clinic input]
205_winapi.Overlapped.GetOverlappedResult
206
207 wait: bool
208 /
209[clinic start generated code]*/
210
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200211static PyObject *
Zachary Waref2244ea2015-05-13 01:22:54 -0500212_winapi_Overlapped_GetOverlappedResult_impl(OverlappedObject *self, int wait)
213/*[clinic end generated code: output=bdd0c1ed6518cd03 input=194505ee8e0e3565]*/
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200214{
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200215 BOOL res;
216 DWORD transferred = 0;
217 DWORD err;
218
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200219 Py_BEGIN_ALLOW_THREADS
220 res = GetOverlappedResult(self->handle, &self->overlapped, &transferred,
221 wait != 0);
222 Py_END_ALLOW_THREADS
223
224 err = res ? ERROR_SUCCESS : GetLastError();
225 switch (err) {
226 case ERROR_SUCCESS:
227 case ERROR_MORE_DATA:
228 case ERROR_OPERATION_ABORTED:
229 self->completed = 1;
230 self->pending = 0;
231 break;
232 case ERROR_IO_INCOMPLETE:
233 break;
234 default:
235 self->pending = 0;
Serhiy Storchaka55fe1ae2017-04-16 10:46:38 +0300236 return PyErr_SetExcFromWindowsErr(PyExc_OSError, err);
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200237 }
238 if (self->completed && self->read_buffer != NULL) {
239 assert(PyBytes_CheckExact(self->read_buffer));
240 if (transferred != PyBytes_GET_SIZE(self->read_buffer) &&
241 _PyBytes_Resize(&self->read_buffer, transferred))
242 return NULL;
243 }
244 return Py_BuildValue("II", (unsigned) transferred, (unsigned) err);
245}
246
Zachary Waref2244ea2015-05-13 01:22:54 -0500247/*[clinic input]
248_winapi.Overlapped.getbuffer
249[clinic start generated code]*/
250
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200251static PyObject *
Zachary Waref2244ea2015-05-13 01:22:54 -0500252_winapi_Overlapped_getbuffer_impl(OverlappedObject *self)
253/*[clinic end generated code: output=95a3eceefae0f748 input=347fcfd56b4ceabd]*/
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200254{
255 PyObject *res;
256 if (!self->completed) {
257 PyErr_SetString(PyExc_ValueError,
258 "can't get read buffer before GetOverlappedResult() "
259 "signals the operation completed");
260 return NULL;
261 }
262 res = self->read_buffer ? self->read_buffer : Py_None;
263 Py_INCREF(res);
264 return res;
265}
266
Zachary Waref2244ea2015-05-13 01:22:54 -0500267/*[clinic input]
268_winapi.Overlapped.cancel
269[clinic start generated code]*/
270
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200271static PyObject *
Zachary Waref2244ea2015-05-13 01:22:54 -0500272_winapi_Overlapped_cancel_impl(OverlappedObject *self)
273/*[clinic end generated code: output=fcb9ab5df4ebdae5 input=cbf3da142290039f]*/
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200274{
275 BOOL res = TRUE;
276
277 if (self->pending) {
278 Py_BEGIN_ALLOW_THREADS
279 if (check_CancelIoEx())
280 res = Py_CancelIoEx(self->handle, &self->overlapped);
281 else
282 res = CancelIo(self->handle);
283 Py_END_ALLOW_THREADS
284 }
285
286 /* CancelIoEx returns ERROR_NOT_FOUND if the I/O completed in-between */
287 if (!res && GetLastError() != ERROR_NOT_FOUND)
Serhiy Storchaka55fe1ae2017-04-16 10:46:38 +0300288 return PyErr_SetExcFromWindowsErr(PyExc_OSError, 0);
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200289 self->pending = 0;
290 Py_RETURN_NONE;
291}
292
293static PyMethodDef overlapped_methods[] = {
Zachary Waref2244ea2015-05-13 01:22:54 -0500294 _WINAPI_OVERLAPPED_GETOVERLAPPEDRESULT_METHODDEF
295 _WINAPI_OVERLAPPED_GETBUFFER_METHODDEF
296 _WINAPI_OVERLAPPED_CANCEL_METHODDEF
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200297 {NULL}
298};
299
300static PyMemberDef overlapped_members[] = {
301 {"event", T_HANDLE,
302 offsetof(OverlappedObject, overlapped) + offsetof(OVERLAPPED, hEvent),
303 READONLY, "overlapped event handle"},
304 {NULL}
305};
306
307PyTypeObject OverlappedType = {
308 PyVarObject_HEAD_INIT(NULL, 0)
309 /* tp_name */ "_winapi.Overlapped",
310 /* tp_basicsize */ sizeof(OverlappedObject),
311 /* tp_itemsize */ 0,
312 /* tp_dealloc */ (destructor) overlapped_dealloc,
Jeroen Demeyer530f5062019-05-31 04:13:39 +0200313 /* tp_vectorcall_offset */ 0,
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200314 /* tp_getattr */ 0,
315 /* tp_setattr */ 0,
Jeroen Demeyer530f5062019-05-31 04:13:39 +0200316 /* tp_as_async */ 0,
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200317 /* tp_repr */ 0,
318 /* tp_as_number */ 0,
319 /* tp_as_sequence */ 0,
320 /* tp_as_mapping */ 0,
321 /* tp_hash */ 0,
322 /* tp_call */ 0,
323 /* tp_str */ 0,
324 /* tp_getattro */ 0,
325 /* tp_setattro */ 0,
326 /* tp_as_buffer */ 0,
327 /* tp_flags */ Py_TPFLAGS_DEFAULT,
328 /* tp_doc */ "OVERLAPPED structure wrapper",
329 /* tp_traverse */ 0,
330 /* tp_clear */ 0,
331 /* tp_richcompare */ 0,
332 /* tp_weaklistoffset */ 0,
333 /* tp_iter */ 0,
334 /* tp_iternext */ 0,
335 /* tp_methods */ overlapped_methods,
336 /* tp_members */ overlapped_members,
337 /* tp_getset */ 0,
338 /* tp_base */ 0,
339 /* tp_dict */ 0,
340 /* tp_descr_get */ 0,
341 /* tp_descr_set */ 0,
342 /* tp_dictoffset */ 0,
343 /* tp_init */ 0,
344 /* tp_alloc */ 0,
345 /* tp_new */ 0,
346};
347
348static OverlappedObject *
349new_overlapped(HANDLE handle)
350{
351 OverlappedObject *self;
352
353 self = PyObject_New(OverlappedObject, &OverlappedType);
354 if (!self)
355 return NULL;
356 self->handle = handle;
357 self->read_buffer = NULL;
358 self->pending = 0;
359 self->completed = 0;
360 memset(&self->overlapped, 0, sizeof(OVERLAPPED));
361 memset(&self->write_buffer, 0, sizeof(Py_buffer));
362 /* Manual reset, initially non-signalled */
363 self->overlapped.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
364 return self;
365}
366
367/* -------------------------------------------------------------------- */
368/* windows API functions */
369
Zachary Waref2244ea2015-05-13 01:22:54 -0500370/*[clinic input]
371_winapi.CloseHandle
372
373 handle: HANDLE
374 /
375
376Close handle.
377[clinic start generated code]*/
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200378
379static PyObject *
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +0300380_winapi_CloseHandle_impl(PyObject *module, HANDLE handle)
381/*[clinic end generated code: output=7ad37345f07bd782 input=7f0e4ac36e0352b8]*/
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200382{
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200383 BOOL success;
384
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200385 Py_BEGIN_ALLOW_THREADS
Zachary Waref2244ea2015-05-13 01:22:54 -0500386 success = CloseHandle(handle);
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200387 Py_END_ALLOW_THREADS
388
389 if (!success)
390 return PyErr_SetFromWindowsErr(0);
391
392 Py_RETURN_NONE;
393}
394
Zachary Waref2244ea2015-05-13 01:22:54 -0500395/*[clinic input]
396_winapi.ConnectNamedPipe
397
398 handle: HANDLE
Serhiy Storchaka202fda52017-03-12 10:10:47 +0200399 overlapped as use_overlapped: bool(accept={int}) = False
Zachary Waref2244ea2015-05-13 01:22:54 -0500400[clinic start generated code]*/
401
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200402static PyObject *
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +0300403_winapi_ConnectNamedPipe_impl(PyObject *module, HANDLE handle,
Zachary Ware77772c02015-05-13 10:58:35 -0500404 int use_overlapped)
Serhiy Storchaka202fda52017-03-12 10:10:47 +0200405/*[clinic end generated code: output=335a0e7086800671 input=34f937c1c86e5e68]*/
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200406{
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200407 BOOL success;
408 OverlappedObject *overlapped = NULL;
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200409
410 if (use_overlapped) {
Zachary Waref2244ea2015-05-13 01:22:54 -0500411 overlapped = new_overlapped(handle);
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200412 if (!overlapped)
413 return NULL;
414 }
415
416 Py_BEGIN_ALLOW_THREADS
Zachary Waref2244ea2015-05-13 01:22:54 -0500417 success = ConnectNamedPipe(handle,
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200418 overlapped ? &overlapped->overlapped : NULL);
419 Py_END_ALLOW_THREADS
420
421 if (overlapped) {
422 int err = GetLastError();
423 /* Overlapped ConnectNamedPipe never returns a success code */
424 assert(success == 0);
425 if (err == ERROR_IO_PENDING)
426 overlapped->pending = 1;
427 else if (err == ERROR_PIPE_CONNECTED)
428 SetEvent(overlapped->overlapped.hEvent);
429 else {
430 Py_DECREF(overlapped);
431 return PyErr_SetFromWindowsErr(err);
432 }
433 return (PyObject *) overlapped;
434 }
435 if (!success)
436 return PyErr_SetFromWindowsErr(0);
437
438 Py_RETURN_NONE;
439}
440
Zachary Waref2244ea2015-05-13 01:22:54 -0500441/*[clinic input]
442_winapi.CreateFile -> HANDLE
443
444 file_name: LPCTSTR
445 desired_access: DWORD
446 share_mode: DWORD
447 security_attributes: LPSECURITY_ATTRIBUTES
448 creation_disposition: DWORD
449 flags_and_attributes: DWORD
450 template_file: HANDLE
451 /
452[clinic start generated code]*/
453
454static HANDLE
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +0300455_winapi_CreateFile_impl(PyObject *module, LPCTSTR file_name,
Zachary Ware77772c02015-05-13 10:58:35 -0500456 DWORD desired_access, DWORD share_mode,
457 LPSECURITY_ATTRIBUTES security_attributes,
458 DWORD creation_disposition,
459 DWORD flags_and_attributes, HANDLE template_file)
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +0300460/*[clinic end generated code: output=417ddcebfc5a3d53 input=6423c3e40372dbd5]*/
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200461{
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200462 HANDLE handle;
463
Steve Dowerb82e17e2019-05-23 08:45:22 -0700464 if (PySys_Audit("_winapi.CreateFile", "uIIII",
465 file_name, desired_access, share_mode,
466 creation_disposition, flags_and_attributes) < 0) {
467 return INVALID_HANDLE_VALUE;
468 }
469
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200470 Py_BEGIN_ALLOW_THREADS
Zachary Waref2244ea2015-05-13 01:22:54 -0500471 handle = CreateFile(file_name, desired_access,
472 share_mode, security_attributes,
473 creation_disposition,
474 flags_and_attributes, template_file);
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200475 Py_END_ALLOW_THREADS
476
477 if (handle == INVALID_HANDLE_VALUE)
Zachary Waref2244ea2015-05-13 01:22:54 -0500478 PyErr_SetFromWindowsErr(0);
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200479
Zachary Waref2244ea2015-05-13 01:22:54 -0500480 return handle;
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200481}
482
Zachary Waref2244ea2015-05-13 01:22:54 -0500483/*[clinic input]
Davin Pottse895de32019-02-23 22:08:16 -0600484_winapi.CreateFileMapping -> HANDLE
485
486 file_handle: HANDLE
487 security_attributes: LPSECURITY_ATTRIBUTES
488 protect: DWORD
489 max_size_high: DWORD
490 max_size_low: DWORD
491 name: LPCWSTR
492 /
493[clinic start generated code]*/
494
495static HANDLE
496_winapi_CreateFileMapping_impl(PyObject *module, HANDLE file_handle,
497 LPSECURITY_ATTRIBUTES security_attributes,
498 DWORD protect, DWORD max_size_high,
499 DWORD max_size_low, LPCWSTR name)
500/*[clinic end generated code: output=6c0a4d5cf7f6fcc6 input=3dc5cf762a74dee8]*/
501{
502 HANDLE handle;
503
504 Py_BEGIN_ALLOW_THREADS
505 handle = CreateFileMappingW(file_handle, security_attributes,
506 protect, max_size_high, max_size_low,
507 name);
508 Py_END_ALLOW_THREADS
509
510 if (handle == NULL) {
Zackery Spytzeda385c2019-05-30 01:58:50 -0600511 PyObject *temp = PyUnicode_FromWideChar(name, -1);
512 PyErr_SetExcFromWindowsErrWithFilenameObject(PyExc_OSError, 0, temp);
513 Py_XDECREF(temp);
Davin Pottse895de32019-02-23 22:08:16 -0600514 handle = INVALID_HANDLE_VALUE;
515 }
516
517 return handle;
518}
519
520/*[clinic input]
Zachary Waref2244ea2015-05-13 01:22:54 -0500521_winapi.CreateJunction
Tim Golden0321cf22014-05-05 19:46:17 +0100522
Zachary Waref2244ea2015-05-13 01:22:54 -0500523 src_path: LPWSTR
524 dst_path: LPWSTR
525 /
526[clinic start generated code]*/
527
528static PyObject *
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +0300529_winapi_CreateJunction_impl(PyObject *module, LPWSTR src_path,
Zachary Ware77772c02015-05-13 10:58:35 -0500530 LPWSTR dst_path)
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +0300531/*[clinic end generated code: output=66b7eb746e1dfa25 input=8cd1f9964b6e3d36]*/
Zachary Waref2244ea2015-05-13 01:22:54 -0500532{
Tim Golden0321cf22014-05-05 19:46:17 +0100533 /* Privilege adjustment */
534 HANDLE token = NULL;
535 TOKEN_PRIVILEGES tp;
536
537 /* Reparse data buffer */
538 const USHORT prefix_len = 4;
539 USHORT print_len = 0;
540 USHORT rdb_size = 0;
Martin Panter70214ad2016-08-04 02:38:59 +0000541 _Py_PREPARSE_DATA_BUFFER rdb = NULL;
Tim Golden0321cf22014-05-05 19:46:17 +0100542
543 /* Junction point creation */
544 HANDLE junction = NULL;
545 DWORD ret = 0;
546
Tim Golden0321cf22014-05-05 19:46:17 +0100547 if (src_path == NULL || dst_path == NULL)
548 return PyErr_SetFromWindowsErr(ERROR_INVALID_PARAMETER);
549
550 if (wcsncmp(src_path, L"\\??\\", prefix_len) == 0)
551 return PyErr_SetFromWindowsErr(ERROR_INVALID_PARAMETER);
552
Steve Dowerb82e17e2019-05-23 08:45:22 -0700553 if (PySys_Audit("_winapi.CreateJunction", "uu", src_path, dst_path) < 0) {
554 return NULL;
555 }
556
Tim Golden0321cf22014-05-05 19:46:17 +0100557 /* Adjust privileges to allow rewriting directory entry as a
558 junction point. */
559 if (!OpenProcessToken(GetCurrentProcess(), TOKEN_ADJUST_PRIVILEGES, &token))
560 goto cleanup;
561
562 if (!LookupPrivilegeValue(NULL, SE_RESTORE_NAME, &tp.Privileges[0].Luid))
563 goto cleanup;
564
565 tp.PrivilegeCount = 1;
566 tp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED;
567 if (!AdjustTokenPrivileges(token, FALSE, &tp, sizeof(TOKEN_PRIVILEGES),
568 NULL, NULL))
569 goto cleanup;
570
571 if (GetFileAttributesW(src_path) == INVALID_FILE_ATTRIBUTES)
572 goto cleanup;
573
574 /* Store the absolute link target path length in print_len. */
575 print_len = (USHORT)GetFullPathNameW(src_path, 0, NULL, NULL);
576 if (print_len == 0)
577 goto cleanup;
578
579 /* NUL terminator should not be part of print_len. */
580 --print_len;
581
582 /* REPARSE_DATA_BUFFER usage is heavily under-documented, especially for
583 junction points. Here's what I've learned along the way:
584 - A junction point has two components: a print name and a substitute
585 name. They both describe the link target, but the substitute name is
586 the physical target and the print name is shown in directory listings.
587 - The print name must be a native name, prefixed with "\??\".
588 - Both names are stored after each other in the same buffer (the
589 PathBuffer) and both must be NUL-terminated.
590 - There are four members defining their respective offset and length
591 inside PathBuffer: SubstituteNameOffset, SubstituteNameLength,
592 PrintNameOffset and PrintNameLength.
593 - The total size we need to allocate for the REPARSE_DATA_BUFFER, thus,
594 is the sum of:
595 - the fixed header size (REPARSE_DATA_BUFFER_HEADER_SIZE)
596 - the size of the MountPointReparseBuffer member without the PathBuffer
597 - the size of the prefix ("\??\") in bytes
598 - the size of the print name in bytes
599 - the size of the substitute name in bytes
600 - the size of two NUL terminators in bytes */
Martin Panter70214ad2016-08-04 02:38:59 +0000601 rdb_size = _Py_REPARSE_DATA_BUFFER_HEADER_SIZE +
Tim Golden0321cf22014-05-05 19:46:17 +0100602 sizeof(rdb->MountPointReparseBuffer) -
603 sizeof(rdb->MountPointReparseBuffer.PathBuffer) +
604 /* Two +1's for NUL terminators. */
605 (prefix_len + print_len + 1 + print_len + 1) * sizeof(WCHAR);
Andy Lester7668a8b2020-03-24 23:26:44 -0500606 rdb = (_Py_PREPARSE_DATA_BUFFER)PyMem_RawCalloc(1, rdb_size);
Tim Golden0321cf22014-05-05 19:46:17 +0100607 if (rdb == NULL)
608 goto cleanup;
609
Tim Golden0321cf22014-05-05 19:46:17 +0100610 rdb->ReparseTag = IO_REPARSE_TAG_MOUNT_POINT;
Martin Panter70214ad2016-08-04 02:38:59 +0000611 rdb->ReparseDataLength = rdb_size - _Py_REPARSE_DATA_BUFFER_HEADER_SIZE;
Tim Golden0321cf22014-05-05 19:46:17 +0100612 rdb->MountPointReparseBuffer.SubstituteNameOffset = 0;
613 rdb->MountPointReparseBuffer.SubstituteNameLength =
614 (prefix_len + print_len) * sizeof(WCHAR);
615 rdb->MountPointReparseBuffer.PrintNameOffset =
616 rdb->MountPointReparseBuffer.SubstituteNameLength + sizeof(WCHAR);
617 rdb->MountPointReparseBuffer.PrintNameLength = print_len * sizeof(WCHAR);
618
619 /* Store the full native path of link target at the substitute name
620 offset (0). */
621 wcscpy(rdb->MountPointReparseBuffer.PathBuffer, L"\\??\\");
622 if (GetFullPathNameW(src_path, print_len + 1,
623 rdb->MountPointReparseBuffer.PathBuffer + prefix_len,
624 NULL) == 0)
625 goto cleanup;
626
627 /* Copy everything but the native prefix to the print name offset. */
628 wcscpy(rdb->MountPointReparseBuffer.PathBuffer +
629 prefix_len + print_len + 1,
630 rdb->MountPointReparseBuffer.PathBuffer + prefix_len);
631
632 /* Create a directory for the junction point. */
633 if (!CreateDirectoryW(dst_path, NULL))
634 goto cleanup;
635
636 junction = CreateFileW(dst_path, GENERIC_READ | GENERIC_WRITE, 0, NULL,
637 OPEN_EXISTING,
638 FILE_FLAG_OPEN_REPARSE_POINT | FILE_FLAG_BACKUP_SEMANTICS, NULL);
639 if (junction == INVALID_HANDLE_VALUE)
640 goto cleanup;
641
642 /* Make the directory entry a junction point. */
643 if (!DeviceIoControl(junction, FSCTL_SET_REPARSE_POINT, rdb, rdb_size,
644 NULL, 0, &ret, NULL))
645 goto cleanup;
646
647cleanup:
648 ret = GetLastError();
649
650 CloseHandle(token);
651 CloseHandle(junction);
652 PyMem_RawFree(rdb);
653
654 if (ret != 0)
655 return PyErr_SetFromWindowsErr(ret);
656
657 Py_RETURN_NONE;
658}
659
Zachary Waref2244ea2015-05-13 01:22:54 -0500660/*[clinic input]
661_winapi.CreateNamedPipe -> HANDLE
662
663 name: LPCTSTR
664 open_mode: DWORD
665 pipe_mode: DWORD
666 max_instances: DWORD
667 out_buffer_size: DWORD
668 in_buffer_size: DWORD
669 default_timeout: DWORD
670 security_attributes: LPSECURITY_ATTRIBUTES
671 /
672[clinic start generated code]*/
673
674static HANDLE
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +0300675_winapi_CreateNamedPipe_impl(PyObject *module, LPCTSTR name, DWORD open_mode,
676 DWORD pipe_mode, DWORD max_instances,
677 DWORD out_buffer_size, DWORD in_buffer_size,
678 DWORD default_timeout,
Zachary Ware77772c02015-05-13 10:58:35 -0500679 LPSECURITY_ATTRIBUTES security_attributes)
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +0300680/*[clinic end generated code: output=80f8c07346a94fbc input=5a73530b84d8bc37]*/
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200681{
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200682 HANDLE handle;
683
Steve Dowerb82e17e2019-05-23 08:45:22 -0700684 if (PySys_Audit("_winapi.CreateNamedPipe", "uII",
685 name, open_mode, pipe_mode) < 0) {
686 return INVALID_HANDLE_VALUE;
687 }
688
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200689 Py_BEGIN_ALLOW_THREADS
Zachary Waref2244ea2015-05-13 01:22:54 -0500690 handle = CreateNamedPipe(name, open_mode, pipe_mode,
691 max_instances, out_buffer_size,
692 in_buffer_size, default_timeout,
693 security_attributes);
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200694 Py_END_ALLOW_THREADS
695
696 if (handle == INVALID_HANDLE_VALUE)
Zachary Waref2244ea2015-05-13 01:22:54 -0500697 PyErr_SetFromWindowsErr(0);
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200698
Zachary Waref2244ea2015-05-13 01:22:54 -0500699 return handle;
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200700}
701
Zachary Waref2244ea2015-05-13 01:22:54 -0500702/*[clinic input]
703_winapi.CreatePipe
704
705 pipe_attrs: object
706 Ignored internally, can be None.
707 size: DWORD
708 /
709
710Create an anonymous pipe.
711
712Returns a 2-tuple of handles, to the read and write ends of the pipe.
713[clinic start generated code]*/
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200714
715static PyObject *
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +0300716_winapi_CreatePipe_impl(PyObject *module, PyObject *pipe_attrs, DWORD size)
717/*[clinic end generated code: output=1c4411d8699f0925 input=c4f2cfa56ef68d90]*/
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200718{
719 HANDLE read_pipe;
720 HANDLE write_pipe;
721 BOOL result;
722
Steve Dowerb82e17e2019-05-23 08:45:22 -0700723 if (PySys_Audit("_winapi.CreatePipe", NULL) < 0) {
724 return NULL;
725 }
726
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200727 Py_BEGIN_ALLOW_THREADS
728 result = CreatePipe(&read_pipe, &write_pipe, NULL, size);
729 Py_END_ALLOW_THREADS
730
731 if (! result)
732 return PyErr_SetFromWindowsErr(GetLastError());
733
734 return Py_BuildValue(
735 "NN", HANDLE_TO_PYNUM(read_pipe), HANDLE_TO_PYNUM(write_pipe));
736}
737
738/* helpers for createprocess */
739
740static unsigned long
Serhiy Storchakaef1585e2015-12-25 20:01:53 +0200741getulong(PyObject* obj, const char* name)
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200742{
743 PyObject* value;
744 unsigned long ret;
745
746 value = PyObject_GetAttrString(obj, name);
747 if (! value) {
748 PyErr_Clear(); /* FIXME: propagate error? */
749 return 0;
750 }
751 ret = PyLong_AsUnsignedLong(value);
752 Py_DECREF(value);
753 return ret;
754}
755
756static HANDLE
Serhiy Storchakaef1585e2015-12-25 20:01:53 +0200757gethandle(PyObject* obj, const char* name)
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200758{
759 PyObject* value;
760 HANDLE ret;
761
762 value = PyObject_GetAttrString(obj, name);
763 if (! value) {
764 PyErr_Clear(); /* FIXME: propagate error? */
765 return NULL;
766 }
767 if (value == Py_None)
768 ret = NULL;
769 else
770 ret = PYNUM_TO_HANDLE(value);
771 Py_DECREF(value);
772 return ret;
773}
774
Serhiy Storchaka8abd7c72019-03-28 16:01:34 +0200775static wchar_t *
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200776getenvironment(PyObject* environment)
777{
778 Py_ssize_t i, envsize, totalsize;
Serhiy Storchaka8abd7c72019-03-28 16:01:34 +0200779 wchar_t *buffer = NULL, *p, *end;
780 PyObject *keys, *values;
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200781
Ezio Melotti85a86292013-08-17 16:57:41 +0300782 /* convert environment dictionary to windows environment string */
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200783 if (! PyMapping_Check(environment)) {
784 PyErr_SetString(
785 PyExc_TypeError, "environment must be dictionary or None");
786 return NULL;
787 }
788
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200789 keys = PyMapping_Keys(environment);
Oren Milman0b3a87e2017-09-14 22:30:28 +0300790 if (!keys) {
791 return NULL;
792 }
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200793 values = PyMapping_Values(environment);
Oren Milman0b3a87e2017-09-14 22:30:28 +0300794 if (!values) {
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200795 goto error;
Oren Milman0b3a87e2017-09-14 22:30:28 +0300796 }
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200797
Serhiy Storchaka8abd7c72019-03-28 16:01:34 +0200798 envsize = PyList_GET_SIZE(keys);
799 if (PyList_GET_SIZE(values) != envsize) {
Serhiy Storchakabf623ae2017-04-19 20:03:52 +0300800 PyErr_SetString(PyExc_RuntimeError,
801 "environment changed size during iteration");
802 goto error;
803 }
804
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200805 totalsize = 1; /* trailing null character */
806 for (i = 0; i < envsize; i++) {
Serhiy Storchaka8abd7c72019-03-28 16:01:34 +0200807 PyObject* key = PyList_GET_ITEM(keys, i);
808 PyObject* value = PyList_GET_ITEM(values, i);
809 Py_ssize_t size;
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200810
811 if (! PyUnicode_Check(key) || ! PyUnicode_Check(value)) {
812 PyErr_SetString(PyExc_TypeError,
813 "environment can only contain strings");
814 goto error;
815 }
Serhiy Storchakad174d242017-06-23 19:39:27 +0300816 if (PyUnicode_FindChar(key, '\0', 0, PyUnicode_GET_LENGTH(key), 1) != -1 ||
817 PyUnicode_FindChar(value, '\0', 0, PyUnicode_GET_LENGTH(value), 1) != -1)
818 {
819 PyErr_SetString(PyExc_ValueError, "embedded null character");
820 goto error;
821 }
822 /* Search from index 1 because on Windows starting '=' is allowed for
823 defining hidden environment variables. */
824 if (PyUnicode_GET_LENGTH(key) == 0 ||
825 PyUnicode_FindChar(key, '=', 1, PyUnicode_GET_LENGTH(key), 1) != -1)
826 {
827 PyErr_SetString(PyExc_ValueError, "illegal environment variable name");
828 goto error;
829 }
Serhiy Storchaka8abd7c72019-03-28 16:01:34 +0200830
831 size = PyUnicode_AsWideChar(key, NULL, 0);
832 assert(size > 1);
833 if (totalsize > PY_SSIZE_T_MAX - size) {
Benjamin Peterson8ce68062015-02-09 20:58:12 -0500834 PyErr_SetString(PyExc_OverflowError, "environment too long");
835 goto error;
836 }
Serhiy Storchaka8abd7c72019-03-28 16:01:34 +0200837 totalsize += size; /* including '=' */
838
839 size = PyUnicode_AsWideChar(value, NULL, 0);
840 assert(size > 0);
841 if (totalsize > PY_SSIZE_T_MAX - size) {
Benjamin Peterson8ce68062015-02-09 20:58:12 -0500842 PyErr_SetString(PyExc_OverflowError, "environment too long");
843 goto error;
844 }
Serhiy Storchaka8abd7c72019-03-28 16:01:34 +0200845 totalsize += size; /* including trailing '\0' */
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200846 }
847
Serhiy Storchaka8abd7c72019-03-28 16:01:34 +0200848 buffer = PyMem_NEW(wchar_t, totalsize);
Benjamin Peterson8ce68062015-02-09 20:58:12 -0500849 if (! buffer) {
850 PyErr_NoMemory();
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200851 goto error;
Benjamin Peterson8ce68062015-02-09 20:58:12 -0500852 }
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200853 p = buffer;
854 end = buffer + totalsize;
855
856 for (i = 0; i < envsize; i++) {
Serhiy Storchaka8abd7c72019-03-28 16:01:34 +0200857 PyObject* key = PyList_GET_ITEM(keys, i);
858 PyObject* value = PyList_GET_ITEM(values, i);
859 Py_ssize_t size = PyUnicode_AsWideChar(key, p, end - p);
860 assert(1 <= size && size < end - p);
861 p += size;
862 *p++ = L'=';
863 size = PyUnicode_AsWideChar(value, p, end - p);
864 assert(0 <= size && size < end - p);
865 p += size + 1;
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200866 }
867
Serhiy Storchaka8abd7c72019-03-28 16:01:34 +0200868 /* add trailing null character */
869 *p++ = L'\0';
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200870 assert(p == end);
871
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200872 error:
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200873 Py_XDECREF(keys);
874 Py_XDECREF(values);
Serhiy Storchaka8abd7c72019-03-28 16:01:34 +0200875 return buffer;
Antoine Pitrou23bba4c2012-04-18 20:51:15 +0200876}
877
Segev Finerb2a60832017-12-18 11:28:19 +0200878static LPHANDLE
879gethandlelist(PyObject *mapping, const char *name, Py_ssize_t *size)
880{
881 LPHANDLE ret = NULL;
882 PyObject *value_fast = NULL;
883 PyObject *value;
884 Py_ssize_t i;
885
886 value = PyMapping_GetItemString(mapping, name);
887 if (!value) {
888 PyErr_Clear();
889 return NULL;
890 }
891
892 if (value == Py_None) {
893 goto cleanup;
894 }
895
896 value_fast = PySequence_Fast(value, "handle_list must be a sequence or None");
897 if (value_fast == NULL)
898 goto cleanup;
899
900 *size = PySequence_Fast_GET_SIZE(value_fast) * sizeof(HANDLE);
901
902 /* Passing an empty array causes CreateProcess to fail so just don't set it */
903 if (*size == 0) {
904 goto cleanup;
905 }
906
907 ret = PyMem_Malloc(*size);
908 if (ret == NULL)
909 goto cleanup;
910
911 for (i = 0; i < PySequence_Fast_GET_SIZE(value_fast); i++) {
912 ret[i] = PYNUM_TO_HANDLE(PySequence_Fast_GET_ITEM(value_fast, i));
913 if (ret[i] == (HANDLE)-1 && PyErr_Occurred()) {
914 PyMem_Free(ret);
915 ret = NULL;
916 goto cleanup;
917 }
918 }
919
920cleanup:
921 Py_DECREF(value);
922 Py_XDECREF(value_fast);
923 return ret;
924}
925
926typedef struct {
927 LPPROC_THREAD_ATTRIBUTE_LIST attribute_list;
928 LPHANDLE handle_list;
929} AttributeList;
930
931static void
932freeattributelist(AttributeList *attribute_list)
933{
934 if (attribute_list->attribute_list != NULL) {
935 DeleteProcThreadAttributeList(attribute_list->attribute_list);
936 PyMem_Free(attribute_list->attribute_list);
937 }
938
939 PyMem_Free(attribute_list->handle_list);
940
941 memset(attribute_list, 0, sizeof(*attribute_list));
942}
943
944static int
945getattributelist(PyObject *obj, const char *name, AttributeList *attribute_list)
946{
947 int ret = 0;
948 DWORD err;
949 BOOL result;
950 PyObject *value;
951 Py_ssize_t handle_list_size;
952 DWORD attribute_count = 0;
953 SIZE_T attribute_list_size = 0;
954
955 value = PyObject_GetAttrString(obj, name);
956 if (!value) {
957 PyErr_Clear(); /* FIXME: propagate error? */
958 return 0;
959 }
960
961 if (value == Py_None) {
962 ret = 0;
963 goto cleanup;
964 }
965
966 if (!PyMapping_Check(value)) {
967 ret = -1;
968 PyErr_Format(PyExc_TypeError, "%s must be a mapping or None", name);
969 goto cleanup;
970 }
971
972 attribute_list->handle_list = gethandlelist(value, "handle_list", &handle_list_size);
973 if (attribute_list->handle_list == NULL && PyErr_Occurred()) {
974 ret = -1;
975 goto cleanup;
976 }
977
978 if (attribute_list->handle_list != NULL)
979 ++attribute_count;
980
981 /* Get how many bytes we need for the attribute list */
982 result = InitializeProcThreadAttributeList(NULL, attribute_count, 0, &attribute_list_size);
983 if (result || GetLastError() != ERROR_INSUFFICIENT_BUFFER) {
984 ret = -1;
985 PyErr_SetFromWindowsErr(GetLastError());
986 goto cleanup;
987 }
988
989 attribute_list->attribute_list = PyMem_Malloc(attribute_list_size);
990 if (attribute_list->attribute_list == NULL) {
991 ret = -1;
992 goto cleanup;
993 }
994
995 result = InitializeProcThreadAttributeList(
996 attribute_list->attribute_list,
997 attribute_count,
998 0,
999 &attribute_list_size);
1000 if (!result) {
1001 err = GetLastError();
1002
1003 /* So that we won't call DeleteProcThreadAttributeList */
1004 PyMem_Free(attribute_list->attribute_list);
1005 attribute_list->attribute_list = NULL;
1006
1007 ret = -1;
1008 PyErr_SetFromWindowsErr(err);
1009 goto cleanup;
1010 }
1011
1012 if (attribute_list->handle_list != NULL) {
1013 result = UpdateProcThreadAttribute(
1014 attribute_list->attribute_list,
1015 0,
1016 PROC_THREAD_ATTRIBUTE_HANDLE_LIST,
1017 attribute_list->handle_list,
1018 handle_list_size,
1019 NULL,
1020 NULL);
1021 if (!result) {
1022 ret = -1;
1023 PyErr_SetFromWindowsErr(GetLastError());
1024 goto cleanup;
1025 }
1026 }
1027
1028cleanup:
1029 Py_DECREF(value);
1030
1031 if (ret < 0)
1032 freeattributelist(attribute_list);
1033
1034 return ret;
1035}
1036
Zachary Waref2244ea2015-05-13 01:22:54 -05001037/*[clinic input]
1038_winapi.CreateProcess
1039
Zachary Ware77772c02015-05-13 10:58:35 -05001040 application_name: Py_UNICODE(accept={str, NoneType})
Vladimir Matveev7b360162018-12-14 00:30:51 -08001041 command_line: object
1042 Can be str or None
Zachary Waref2244ea2015-05-13 01:22:54 -05001043 proc_attrs: object
1044 Ignored internally, can be None.
1045 thread_attrs: object
1046 Ignored internally, can be None.
1047 inherit_handles: BOOL
1048 creation_flags: DWORD
1049 env_mapping: object
Zachary Ware77772c02015-05-13 10:58:35 -05001050 current_directory: Py_UNICODE(accept={str, NoneType})
Zachary Waref2244ea2015-05-13 01:22:54 -05001051 startup_info: object
1052 /
1053
1054Create a new process and its primary thread.
1055
1056The return value is a tuple of the process handle, thread handle,
1057process ID, and thread ID.
1058[clinic start generated code]*/
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001059
1060static PyObject *
Serhiy Storchakaafb3e712018-12-14 11:19:51 +02001061_winapi_CreateProcess_impl(PyObject *module,
1062 const Py_UNICODE *application_name,
Vladimir Matveev7b360162018-12-14 00:30:51 -08001063 PyObject *command_line, PyObject *proc_attrs,
Zachary Ware77772c02015-05-13 10:58:35 -05001064 PyObject *thread_attrs, BOOL inherit_handles,
1065 DWORD creation_flags, PyObject *env_mapping,
Serhiy Storchakaafb3e712018-12-14 11:19:51 +02001066 const Py_UNICODE *current_directory,
Zachary Ware77772c02015-05-13 10:58:35 -05001067 PyObject *startup_info)
Serhiy Storchakaafb3e712018-12-14 11:19:51 +02001068/*[clinic end generated code: output=9b2423a609230132 input=42ac293eaea03fc4]*/
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001069{
Segev Finerb2a60832017-12-18 11:28:19 +02001070 PyObject *ret = NULL;
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001071 BOOL result;
1072 PROCESS_INFORMATION pi;
Segev Finerb2a60832017-12-18 11:28:19 +02001073 STARTUPINFOEXW si;
Serhiy Storchaka8abd7c72019-03-28 16:01:34 +02001074 wchar_t *wenvironment = NULL;
Vladimir Matveev7b360162018-12-14 00:30:51 -08001075 wchar_t *command_line_copy = NULL;
Segev Finerb2a60832017-12-18 11:28:19 +02001076 AttributeList attribute_list = {0};
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001077
Steve Dowerb82e17e2019-05-23 08:45:22 -07001078 if (PySys_Audit("_winapi.CreateProcess", "uuu", application_name,
1079 command_line, current_directory) < 0) {
1080 return NULL;
1081 }
1082
Victor Stinner252346a2020-05-01 11:33:44 +02001083 PyInterpreterState *interp = PyInterpreterState_Get();
1084 const PyConfig *config = _PyInterpreterState_GetConfig(interp);
1085 if (config->_isolated_interpreter) {
1086 PyErr_SetString(PyExc_RuntimeError,
1087 "subprocess not supported for isolated subinterpreters");
1088 return NULL;
1089 }
1090
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001091 ZeroMemory(&si, sizeof(si));
Segev Finerb2a60832017-12-18 11:28:19 +02001092 si.StartupInfo.cb = sizeof(si);
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001093
1094 /* note: we only support a small subset of all SI attributes */
Segev Finerb2a60832017-12-18 11:28:19 +02001095 si.StartupInfo.dwFlags = getulong(startup_info, "dwFlags");
1096 si.StartupInfo.wShowWindow = (WORD)getulong(startup_info, "wShowWindow");
1097 si.StartupInfo.hStdInput = gethandle(startup_info, "hStdInput");
1098 si.StartupInfo.hStdOutput = gethandle(startup_info, "hStdOutput");
1099 si.StartupInfo.hStdError = gethandle(startup_info, "hStdError");
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001100 if (PyErr_Occurred())
Segev Finerb2a60832017-12-18 11:28:19 +02001101 goto cleanup;
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001102
1103 if (env_mapping != Py_None) {
Serhiy Storchaka8abd7c72019-03-28 16:01:34 +02001104 wenvironment = getenvironment(env_mapping);
Serhiy Storchakad174d242017-06-23 19:39:27 +03001105 if (wenvironment == NULL) {
Segev Finerb2a60832017-12-18 11:28:19 +02001106 goto cleanup;
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001107 }
1108 }
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001109
Segev Finerb2a60832017-12-18 11:28:19 +02001110 if (getattributelist(startup_info, "lpAttributeList", &attribute_list) < 0)
1111 goto cleanup;
1112
1113 si.lpAttributeList = attribute_list.attribute_list;
Vladimir Matveev7b360162018-12-14 00:30:51 -08001114 if (PyUnicode_Check(command_line)) {
1115 command_line_copy = PyUnicode_AsWideCharString(command_line, NULL);
1116 if (command_line_copy == NULL) {
1117 goto cleanup;
1118 }
1119 }
1120 else if (command_line != Py_None) {
Victor Stinner4a21e572020-04-15 02:35:41 +02001121 PyErr_Format(PyExc_TypeError,
1122 "CreateProcess() argument 2 must be str or None, not %s",
Vladimir Matveev7b360162018-12-14 00:30:51 -08001123 Py_TYPE(command_line)->tp_name);
1124 goto cleanup;
1125 }
1126
Segev Finerb2a60832017-12-18 11:28:19 +02001127
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001128 Py_BEGIN_ALLOW_THREADS
1129 result = CreateProcessW(application_name,
Vladimir Matveev7b360162018-12-14 00:30:51 -08001130 command_line_copy,
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001131 NULL,
1132 NULL,
1133 inherit_handles,
Segev Finerb2a60832017-12-18 11:28:19 +02001134 creation_flags | EXTENDED_STARTUPINFO_PRESENT |
1135 CREATE_UNICODE_ENVIRONMENT,
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001136 wenvironment,
1137 current_directory,
Segev Finerb2a60832017-12-18 11:28:19 +02001138 (LPSTARTUPINFOW)&si,
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001139 &pi);
1140 Py_END_ALLOW_THREADS
1141
Segev Finerb2a60832017-12-18 11:28:19 +02001142 if (!result) {
1143 PyErr_SetFromWindowsErr(GetLastError());
1144 goto cleanup;
1145 }
1146
1147 ret = Py_BuildValue("NNkk",
1148 HANDLE_TO_PYNUM(pi.hProcess),
1149 HANDLE_TO_PYNUM(pi.hThread),
1150 pi.dwProcessId,
1151 pi.dwThreadId);
1152
1153cleanup:
Vladimir Matveev7b360162018-12-14 00:30:51 -08001154 PyMem_Free(command_line_copy);
Serhiy Storchaka8abd7c72019-03-28 16:01:34 +02001155 PyMem_Free(wenvironment);
Segev Finerb2a60832017-12-18 11:28:19 +02001156 freeattributelist(&attribute_list);
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001157
Segev Finerb2a60832017-12-18 11:28:19 +02001158 return ret;
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001159}
1160
Zachary Waref2244ea2015-05-13 01:22:54 -05001161/*[clinic input]
1162_winapi.DuplicateHandle -> HANDLE
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001163
Zachary Waref2244ea2015-05-13 01:22:54 -05001164 source_process_handle: HANDLE
1165 source_handle: HANDLE
1166 target_process_handle: HANDLE
1167 desired_access: DWORD
1168 inherit_handle: BOOL
1169 options: DWORD = 0
1170 /
1171
1172Return a duplicate handle object.
1173
1174The duplicate handle refers to the same object as the original
1175handle. Therefore, any changes to the object are reflected
1176through both handles.
1177[clinic start generated code]*/
1178
1179static HANDLE
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +03001180_winapi_DuplicateHandle_impl(PyObject *module, HANDLE source_process_handle,
Zachary Ware77772c02015-05-13 10:58:35 -05001181 HANDLE source_handle,
1182 HANDLE target_process_handle,
1183 DWORD desired_access, BOOL inherit_handle,
1184 DWORD options)
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +03001185/*[clinic end generated code: output=ad9711397b5dcd4e input=b933e3f2356a8c12]*/
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001186{
1187 HANDLE target_handle;
1188 BOOL result;
1189
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001190 Py_BEGIN_ALLOW_THREADS
1191 result = DuplicateHandle(
1192 source_process_handle,
1193 source_handle,
1194 target_process_handle,
1195 &target_handle,
1196 desired_access,
1197 inherit_handle,
1198 options
1199 );
1200 Py_END_ALLOW_THREADS
1201
Zachary Waref2244ea2015-05-13 01:22:54 -05001202 if (! result) {
1203 PyErr_SetFromWindowsErr(GetLastError());
1204 return INVALID_HANDLE_VALUE;
1205 }
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001206
Zachary Waref2244ea2015-05-13 01:22:54 -05001207 return target_handle;
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001208}
1209
Zachary Waref2244ea2015-05-13 01:22:54 -05001210/*[clinic input]
1211_winapi.ExitProcess
1212
1213 ExitCode: UINT
1214 /
1215
1216[clinic start generated code]*/
1217
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001218static PyObject *
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +03001219_winapi_ExitProcess_impl(PyObject *module, UINT ExitCode)
1220/*[clinic end generated code: output=a387deb651175301 input=4f05466a9406c558]*/
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001221{
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001222 #if defined(Py_DEBUG)
1223 SetErrorMode(SEM_FAILCRITICALERRORS|SEM_NOALIGNMENTFAULTEXCEPT|
1224 SEM_NOGPFAULTERRORBOX|SEM_NOOPENFILEERRORBOX);
1225 _CrtSetReportMode(_CRT_ASSERT, _CRTDBG_MODE_DEBUG);
1226 #endif
1227
Zachary Waref2244ea2015-05-13 01:22:54 -05001228 ExitProcess(ExitCode);
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001229
1230 return NULL;
1231}
1232
Zachary Waref2244ea2015-05-13 01:22:54 -05001233/*[clinic input]
1234_winapi.GetCurrentProcess -> HANDLE
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001235
Zachary Waref2244ea2015-05-13 01:22:54 -05001236Return a handle object for the current process.
1237[clinic start generated code]*/
1238
1239static HANDLE
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +03001240_winapi_GetCurrentProcess_impl(PyObject *module)
1241/*[clinic end generated code: output=ddeb4dd2ffadf344 input=b213403fd4b96b41]*/
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001242{
Zachary Waref2244ea2015-05-13 01:22:54 -05001243 return GetCurrentProcess();
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001244}
1245
Zachary Waref2244ea2015-05-13 01:22:54 -05001246/*[clinic input]
1247_winapi.GetExitCodeProcess -> DWORD
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001248
Zachary Waref2244ea2015-05-13 01:22:54 -05001249 process: HANDLE
1250 /
1251
1252Return the termination status of the specified process.
1253[clinic start generated code]*/
1254
1255static DWORD
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +03001256_winapi_GetExitCodeProcess_impl(PyObject *module, HANDLE process)
1257/*[clinic end generated code: output=b4620bdf2bccf36b input=61b6bfc7dc2ee374]*/
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001258{
1259 DWORD exit_code;
1260 BOOL result;
1261
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001262 result = GetExitCodeProcess(process, &exit_code);
1263
Zachary Waref2244ea2015-05-13 01:22:54 -05001264 if (! result) {
1265 PyErr_SetFromWindowsErr(GetLastError());
Victor Stinner850a18e2017-10-24 16:53:32 -07001266 exit_code = PY_DWORD_MAX;
Zachary Waref2244ea2015-05-13 01:22:54 -05001267 }
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001268
Zachary Waref2244ea2015-05-13 01:22:54 -05001269 return exit_code;
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001270}
1271
Zachary Waref2244ea2015-05-13 01:22:54 -05001272/*[clinic input]
1273_winapi.GetLastError -> DWORD
1274[clinic start generated code]*/
1275
1276static DWORD
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +03001277_winapi_GetLastError_impl(PyObject *module)
1278/*[clinic end generated code: output=8585b827cb1a92c5 input=62d47fb9bce038ba]*/
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001279{
Zachary Waref2244ea2015-05-13 01:22:54 -05001280 return GetLastError();
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001281}
1282
Zachary Waref2244ea2015-05-13 01:22:54 -05001283/*[clinic input]
1284_winapi.GetModuleFileName
1285
1286 module_handle: HMODULE
1287 /
1288
1289Return the fully-qualified path for the file that contains module.
1290
1291The module must have been loaded by the current process.
1292
1293The module parameter should be a handle to the loaded module
1294whose path is being requested. If this parameter is 0,
1295GetModuleFileName retrieves the path of the executable file
1296of the current process.
1297[clinic start generated code]*/
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001298
1299static PyObject *
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +03001300_winapi_GetModuleFileName_impl(PyObject *module, HMODULE module_handle)
1301/*[clinic end generated code: output=85b4b728c5160306 input=6d66ff7deca5d11f]*/
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001302{
1303 BOOL result;
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001304 WCHAR filename[MAX_PATH];
1305
Steve Dowerb82e17e2019-05-23 08:45:22 -07001306 Py_BEGIN_ALLOW_THREADS
Zachary Waref2244ea2015-05-13 01:22:54 -05001307 result = GetModuleFileNameW(module_handle, filename, MAX_PATH);
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001308 filename[MAX_PATH-1] = '\0';
Steve Dowerb82e17e2019-05-23 08:45:22 -07001309 Py_END_ALLOW_THREADS
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001310
1311 if (! result)
1312 return PyErr_SetFromWindowsErr(GetLastError());
1313
1314 return PyUnicode_FromWideChar(filename, wcslen(filename));
1315}
1316
Zachary Waref2244ea2015-05-13 01:22:54 -05001317/*[clinic input]
1318_winapi.GetStdHandle -> HANDLE
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001319
Zachary Waref2244ea2015-05-13 01:22:54 -05001320 std_handle: DWORD
1321 One of STD_INPUT_HANDLE, STD_OUTPUT_HANDLE, or STD_ERROR_HANDLE.
1322 /
1323
1324Return a handle to the specified standard device.
1325
1326The integer associated with the handle object is returned.
1327[clinic start generated code]*/
1328
1329static HANDLE
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +03001330_winapi_GetStdHandle_impl(PyObject *module, DWORD std_handle)
1331/*[clinic end generated code: output=0e613001e73ab614 input=07016b06a2fc8826]*/
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001332{
1333 HANDLE handle;
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001334
1335 Py_BEGIN_ALLOW_THREADS
1336 handle = GetStdHandle(std_handle);
1337 Py_END_ALLOW_THREADS
1338
1339 if (handle == INVALID_HANDLE_VALUE)
Zachary Waref2244ea2015-05-13 01:22:54 -05001340 PyErr_SetFromWindowsErr(GetLastError());
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001341
Zachary Waref2244ea2015-05-13 01:22:54 -05001342 return handle;
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001343}
1344
Zachary Waref2244ea2015-05-13 01:22:54 -05001345/*[clinic input]
1346_winapi.GetVersion -> long
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001347
Zachary Waref2244ea2015-05-13 01:22:54 -05001348Return the version number of the current operating system.
1349[clinic start generated code]*/
1350
1351static long
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +03001352_winapi_GetVersion_impl(PyObject *module)
1353/*[clinic end generated code: output=e41f0db5a3b82682 input=e21dff8d0baeded2]*/
Steve Dower3e96f322015-03-02 08:01:10 -08001354/* Disable deprecation warnings about GetVersionEx as the result is
1355 being passed straight through to the caller, who is responsible for
1356 using it correctly. */
1357#pragma warning(push)
1358#pragma warning(disable:4996)
1359
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001360{
Zachary Waref2244ea2015-05-13 01:22:54 -05001361 return GetVersion();
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001362}
1363
Steve Dower3e96f322015-03-02 08:01:10 -08001364#pragma warning(pop)
1365
Zachary Waref2244ea2015-05-13 01:22:54 -05001366/*[clinic input]
Davin Pottse895de32019-02-23 22:08:16 -06001367_winapi.MapViewOfFile -> LPVOID
1368
1369 file_map: HANDLE
1370 desired_access: DWORD
1371 file_offset_high: DWORD
1372 file_offset_low: DWORD
1373 number_bytes: size_t
1374 /
1375[clinic start generated code]*/
1376
1377static LPVOID
1378_winapi_MapViewOfFile_impl(PyObject *module, HANDLE file_map,
1379 DWORD desired_access, DWORD file_offset_high,
1380 DWORD file_offset_low, size_t number_bytes)
1381/*[clinic end generated code: output=f23b1ee4823663e3 input=177471073be1a103]*/
1382{
1383 LPVOID address;
1384
1385 Py_BEGIN_ALLOW_THREADS
1386 address = MapViewOfFile(file_map, desired_access, file_offset_high,
1387 file_offset_low, number_bytes);
1388 Py_END_ALLOW_THREADS
1389
1390 if (address == NULL)
1391 PyErr_SetFromWindowsErr(0);
1392
1393 return address;
1394}
1395
1396/*[clinic input]
1397_winapi.OpenFileMapping -> HANDLE
1398
1399 desired_access: DWORD
1400 inherit_handle: BOOL
1401 name: LPCWSTR
1402 /
1403[clinic start generated code]*/
1404
1405static HANDLE
1406_winapi_OpenFileMapping_impl(PyObject *module, DWORD desired_access,
1407 BOOL inherit_handle, LPCWSTR name)
1408/*[clinic end generated code: output=08cc44def1cb11f1 input=131f2a405359de7f]*/
1409{
1410 HANDLE handle;
1411
1412 Py_BEGIN_ALLOW_THREADS
1413 handle = OpenFileMappingW(desired_access, inherit_handle, name);
1414 Py_END_ALLOW_THREADS
1415
1416 if (handle == NULL) {
Zackery Spytzeda385c2019-05-30 01:58:50 -06001417 PyObject *temp = PyUnicode_FromWideChar(name, -1);
1418 PyErr_SetExcFromWindowsErrWithFilenameObject(PyExc_OSError, 0, temp);
1419 Py_XDECREF(temp);
Davin Pottse895de32019-02-23 22:08:16 -06001420 handle = INVALID_HANDLE_VALUE;
1421 }
1422
1423 return handle;
1424}
1425
1426/*[clinic input]
Zachary Waref2244ea2015-05-13 01:22:54 -05001427_winapi.OpenProcess -> HANDLE
1428
1429 desired_access: DWORD
1430 inherit_handle: BOOL
1431 process_id: DWORD
1432 /
1433[clinic start generated code]*/
1434
1435static HANDLE
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +03001436_winapi_OpenProcess_impl(PyObject *module, DWORD desired_access,
Zachary Ware77772c02015-05-13 10:58:35 -05001437 BOOL inherit_handle, DWORD process_id)
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +03001438/*[clinic end generated code: output=b42b6b81ea5a0fc3 input=ec98c4cf4ea2ec36]*/
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001439{
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001440 HANDLE handle;
1441
Steve Dowerb82e17e2019-05-23 08:45:22 -07001442 if (PySys_Audit("_winapi.OpenProcess", "II",
1443 process_id, desired_access) < 0) {
1444 return INVALID_HANDLE_VALUE;
1445 }
1446
1447 Py_BEGIN_ALLOW_THREADS
Zachary Waref2244ea2015-05-13 01:22:54 -05001448 handle = OpenProcess(desired_access, inherit_handle, process_id);
Steve Dowerb82e17e2019-05-23 08:45:22 -07001449 Py_END_ALLOW_THREADS
Zachary Waref2244ea2015-05-13 01:22:54 -05001450 if (handle == NULL) {
Steve Dowerb82e17e2019-05-23 08:45:22 -07001451 PyErr_SetFromWindowsErr(GetLastError());
Zachary Waref2244ea2015-05-13 01:22:54 -05001452 handle = INVALID_HANDLE_VALUE;
1453 }
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001454
Zachary Waref2244ea2015-05-13 01:22:54 -05001455 return handle;
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001456}
1457
Zachary Waref2244ea2015-05-13 01:22:54 -05001458/*[clinic input]
1459_winapi.PeekNamedPipe
1460
1461 handle: HANDLE
1462 size: int = 0
1463 /
1464[clinic start generated code]*/
1465
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001466static PyObject *
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +03001467_winapi_PeekNamedPipe_impl(PyObject *module, HANDLE handle, int size)
1468/*[clinic end generated code: output=d0c3e29e49d323dd input=c7aa53bfbce69d70]*/
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001469{
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001470 PyObject *buf = NULL;
1471 DWORD nread, navail, nleft;
1472 BOOL ret;
1473
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001474 if (size < 0) {
1475 PyErr_SetString(PyExc_ValueError, "negative size");
1476 return NULL;
1477 }
1478
1479 if (size) {
1480 buf = PyBytes_FromStringAndSize(NULL, size);
1481 if (!buf)
1482 return NULL;
1483 Py_BEGIN_ALLOW_THREADS
1484 ret = PeekNamedPipe(handle, PyBytes_AS_STRING(buf), size, &nread,
1485 &navail, &nleft);
1486 Py_END_ALLOW_THREADS
1487 if (!ret) {
1488 Py_DECREF(buf);
Serhiy Storchaka55fe1ae2017-04-16 10:46:38 +03001489 return PyErr_SetExcFromWindowsErr(PyExc_OSError, 0);
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001490 }
1491 if (_PyBytes_Resize(&buf, nread))
1492 return NULL;
Alexander Buchkovsky266f4902018-09-04 19:10:28 +03001493 return Py_BuildValue("NII", buf, navail, nleft);
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001494 }
1495 else {
1496 Py_BEGIN_ALLOW_THREADS
1497 ret = PeekNamedPipe(handle, NULL, 0, NULL, &navail, &nleft);
1498 Py_END_ALLOW_THREADS
1499 if (!ret) {
Serhiy Storchaka55fe1ae2017-04-16 10:46:38 +03001500 return PyErr_SetExcFromWindowsErr(PyExc_OSError, 0);
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001501 }
Alexander Buchkovsky266f4902018-09-04 19:10:28 +03001502 return Py_BuildValue("II", navail, nleft);
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001503 }
1504}
1505
Zachary Waref2244ea2015-05-13 01:22:54 -05001506/*[clinic input]
1507_winapi.ReadFile
1508
1509 handle: HANDLE
Alexander Buchkovsky266f4902018-09-04 19:10:28 +03001510 size: DWORD
Serhiy Storchaka202fda52017-03-12 10:10:47 +02001511 overlapped as use_overlapped: bool(accept={int}) = False
Zachary Waref2244ea2015-05-13 01:22:54 -05001512[clinic start generated code]*/
1513
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001514static PyObject *
Alexander Buchkovsky266f4902018-09-04 19:10:28 +03001515_winapi_ReadFile_impl(PyObject *module, HANDLE handle, DWORD size,
Zachary Ware77772c02015-05-13 10:58:35 -05001516 int use_overlapped)
Alexander Buchkovsky266f4902018-09-04 19:10:28 +03001517/*[clinic end generated code: output=d3d5b44a8201b944 input=08c439d03a11aac5]*/
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001518{
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001519 DWORD nread;
1520 PyObject *buf;
1521 BOOL ret;
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001522 DWORD err;
1523 OverlappedObject *overlapped = NULL;
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001524
1525 buf = PyBytes_FromStringAndSize(NULL, size);
1526 if (!buf)
1527 return NULL;
1528 if (use_overlapped) {
1529 overlapped = new_overlapped(handle);
1530 if (!overlapped) {
1531 Py_DECREF(buf);
1532 return NULL;
1533 }
1534 /* Steals reference to buf */
1535 overlapped->read_buffer = buf;
1536 }
1537
1538 Py_BEGIN_ALLOW_THREADS
1539 ret = ReadFile(handle, PyBytes_AS_STRING(buf), size, &nread,
1540 overlapped ? &overlapped->overlapped : NULL);
1541 Py_END_ALLOW_THREADS
1542
1543 err = ret ? 0 : GetLastError();
1544
1545 if (overlapped) {
1546 if (!ret) {
1547 if (err == ERROR_IO_PENDING)
1548 overlapped->pending = 1;
1549 else if (err != ERROR_MORE_DATA) {
1550 Py_DECREF(overlapped);
Serhiy Storchaka55fe1ae2017-04-16 10:46:38 +03001551 return PyErr_SetExcFromWindowsErr(PyExc_OSError, 0);
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001552 }
1553 }
1554 return Py_BuildValue("NI", (PyObject *) overlapped, err);
1555 }
1556
1557 if (!ret && err != ERROR_MORE_DATA) {
1558 Py_DECREF(buf);
Serhiy Storchaka55fe1ae2017-04-16 10:46:38 +03001559 return PyErr_SetExcFromWindowsErr(PyExc_OSError, 0);
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001560 }
1561 if (_PyBytes_Resize(&buf, nread))
1562 return NULL;
1563 return Py_BuildValue("NI", buf, err);
1564}
1565
Zachary Waref2244ea2015-05-13 01:22:54 -05001566/*[clinic input]
1567_winapi.SetNamedPipeHandleState
1568
1569 named_pipe: HANDLE
1570 mode: object
1571 max_collection_count: object
1572 collect_data_timeout: object
1573 /
1574[clinic start generated code]*/
1575
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001576static PyObject *
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +03001577_winapi_SetNamedPipeHandleState_impl(PyObject *module, HANDLE named_pipe,
Zachary Ware77772c02015-05-13 10:58:35 -05001578 PyObject *mode,
1579 PyObject *max_collection_count,
1580 PyObject *collect_data_timeout)
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +03001581/*[clinic end generated code: output=f2129d222cbfa095 input=9142d72163d0faa6]*/
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001582{
Zachary Waref2244ea2015-05-13 01:22:54 -05001583 PyObject *oArgs[3] = {mode, max_collection_count, collect_data_timeout};
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001584 DWORD dwArgs[3], *pArgs[3] = {NULL, NULL, NULL};
1585 int i;
Steve Dowerb82e17e2019-05-23 08:45:22 -07001586 BOOL b;
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001587
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001588 for (i = 0 ; i < 3 ; i++) {
1589 if (oArgs[i] != Py_None) {
1590 dwArgs[i] = PyLong_AsUnsignedLongMask(oArgs[i]);
1591 if (PyErr_Occurred())
1592 return NULL;
1593 pArgs[i] = &dwArgs[i];
1594 }
1595 }
1596
Steve Dowerb82e17e2019-05-23 08:45:22 -07001597 Py_BEGIN_ALLOW_THREADS
1598 b = SetNamedPipeHandleState(named_pipe, pArgs[0], pArgs[1], pArgs[2]);
1599 Py_END_ALLOW_THREADS
1600
1601 if (!b)
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001602 return PyErr_SetFromWindowsErr(0);
1603
1604 Py_RETURN_NONE;
1605}
1606
Zachary Waref2244ea2015-05-13 01:22:54 -05001607
1608/*[clinic input]
1609_winapi.TerminateProcess
1610
1611 handle: HANDLE
1612 exit_code: UINT
1613 /
1614
1615Terminate the specified process and all of its threads.
1616[clinic start generated code]*/
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001617
1618static PyObject *
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +03001619_winapi_TerminateProcess_impl(PyObject *module, HANDLE handle,
Zachary Ware77772c02015-05-13 10:58:35 -05001620 UINT exit_code)
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +03001621/*[clinic end generated code: output=f4e99ac3f0b1f34a input=d6bc0aa1ee3bb4df]*/
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001622{
1623 BOOL result;
1624
Steve Dowerb82e17e2019-05-23 08:45:22 -07001625 if (PySys_Audit("_winapi.TerminateProcess", "nI",
1626 (Py_ssize_t)handle, exit_code) < 0) {
1627 return NULL;
1628 }
1629
Zachary Waref2244ea2015-05-13 01:22:54 -05001630 result = TerminateProcess(handle, exit_code);
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001631
1632 if (! result)
1633 return PyErr_SetFromWindowsErr(GetLastError());
1634
Zachary Waref2244ea2015-05-13 01:22:54 -05001635 Py_RETURN_NONE;
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001636}
1637
Zachary Waref2244ea2015-05-13 01:22:54 -05001638/*[clinic input]
Davin Pottse895de32019-02-23 22:08:16 -06001639_winapi.VirtualQuerySize -> size_t
1640
1641 address: LPCVOID
1642 /
1643[clinic start generated code]*/
1644
1645static size_t
1646_winapi_VirtualQuerySize_impl(PyObject *module, LPCVOID address)
1647/*[clinic end generated code: output=40c8e0ff5ec964df input=6b784a69755d0bb6]*/
1648{
1649 SIZE_T size_of_buf;
1650 MEMORY_BASIC_INFORMATION mem_basic_info;
1651 SIZE_T region_size;
1652
1653 Py_BEGIN_ALLOW_THREADS
1654 size_of_buf = VirtualQuery(address, &mem_basic_info, sizeof(mem_basic_info));
1655 Py_END_ALLOW_THREADS
1656
1657 if (size_of_buf == 0)
1658 PyErr_SetFromWindowsErr(0);
1659
1660 region_size = mem_basic_info.RegionSize;
1661 return region_size;
1662}
1663
1664/*[clinic input]
Zachary Waref2244ea2015-05-13 01:22:54 -05001665_winapi.WaitNamedPipe
1666
1667 name: LPCTSTR
1668 timeout: DWORD
1669 /
1670[clinic start generated code]*/
1671
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001672static PyObject *
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +03001673_winapi_WaitNamedPipe_impl(PyObject *module, LPCTSTR name, DWORD timeout)
1674/*[clinic end generated code: output=c2866f4439b1fe38 input=36fc781291b1862c]*/
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001675{
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001676 BOOL success;
1677
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001678 Py_BEGIN_ALLOW_THREADS
Zachary Waref2244ea2015-05-13 01:22:54 -05001679 success = WaitNamedPipe(name, timeout);
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001680 Py_END_ALLOW_THREADS
1681
1682 if (!success)
1683 return PyErr_SetFromWindowsErr(0);
1684
1685 Py_RETURN_NONE;
1686}
1687
Zachary Waref2244ea2015-05-13 01:22:54 -05001688/*[clinic input]
1689_winapi.WaitForMultipleObjects
1690
1691 handle_seq: object
1692 wait_flag: BOOL
1693 milliseconds: DWORD(c_default='INFINITE') = _winapi.INFINITE
1694 /
1695[clinic start generated code]*/
1696
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001697static PyObject *
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +03001698_winapi_WaitForMultipleObjects_impl(PyObject *module, PyObject *handle_seq,
1699 BOOL wait_flag, DWORD milliseconds)
1700/*[clinic end generated code: output=295e3f00b8e45899 input=36f76ca057cd28a0]*/
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001701{
1702 DWORD result;
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001703 HANDLE handles[MAXIMUM_WAIT_OBJECTS];
1704 HANDLE sigint_event = NULL;
1705 Py_ssize_t nhandles, i;
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001706
1707 if (!PySequence_Check(handle_seq)) {
1708 PyErr_Format(PyExc_TypeError,
1709 "sequence type expected, got '%s'",
Richard Oudkerk67339272012-08-21 14:54:22 +01001710 Py_TYPE(handle_seq)->tp_name);
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001711 return NULL;
1712 }
1713 nhandles = PySequence_Length(handle_seq);
1714 if (nhandles == -1)
1715 return NULL;
1716 if (nhandles < 0 || nhandles >= MAXIMUM_WAIT_OBJECTS - 1) {
1717 PyErr_Format(PyExc_ValueError,
1718 "need at most %zd handles, got a sequence of length %zd",
1719 MAXIMUM_WAIT_OBJECTS - 1, nhandles);
1720 return NULL;
1721 }
1722 for (i = 0; i < nhandles; i++) {
1723 HANDLE h;
1724 PyObject *v = PySequence_GetItem(handle_seq, i);
1725 if (v == NULL)
1726 return NULL;
1727 if (!PyArg_Parse(v, F_HANDLE, &h)) {
1728 Py_DECREF(v);
1729 return NULL;
1730 }
1731 handles[i] = h;
1732 Py_DECREF(v);
1733 }
1734 /* If this is the main thread then make the wait interruptible
1735 by Ctrl-C unless we are waiting for *all* handles */
1736 if (!wait_flag && _PyOS_IsMainThread()) {
1737 sigint_event = _PyOS_SigintEvent();
1738 assert(sigint_event != NULL);
1739 handles[nhandles++] = sigint_event;
1740 }
1741
1742 Py_BEGIN_ALLOW_THREADS
1743 if (sigint_event != NULL)
1744 ResetEvent(sigint_event);
1745 result = WaitForMultipleObjects((DWORD) nhandles, handles,
1746 wait_flag, milliseconds);
1747 Py_END_ALLOW_THREADS
1748
1749 if (result == WAIT_FAILED)
Serhiy Storchaka55fe1ae2017-04-16 10:46:38 +03001750 return PyErr_SetExcFromWindowsErr(PyExc_OSError, 0);
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001751 else if (sigint_event != NULL && result == WAIT_OBJECT_0 + nhandles - 1) {
1752 errno = EINTR;
Serhiy Storchaka55fe1ae2017-04-16 10:46:38 +03001753 return PyErr_SetFromErrno(PyExc_OSError);
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001754 }
1755
1756 return PyLong_FromLong((int) result);
1757}
1758
Zachary Waref2244ea2015-05-13 01:22:54 -05001759/*[clinic input]
1760_winapi.WaitForSingleObject -> long
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001761
Zachary Waref2244ea2015-05-13 01:22:54 -05001762 handle: HANDLE
1763 milliseconds: DWORD
1764 /
1765
1766Wait for a single object.
1767
1768Wait until the specified object is in the signaled state or
1769the time-out interval elapses. The timeout value is specified
1770in milliseconds.
1771[clinic start generated code]*/
1772
1773static long
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +03001774_winapi_WaitForSingleObject_impl(PyObject *module, HANDLE handle,
Zachary Ware77772c02015-05-13 10:58:35 -05001775 DWORD milliseconds)
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +03001776/*[clinic end generated code: output=3c4715d8f1b39859 input=443d1ab076edc7b1]*/
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001777{
1778 DWORD result;
1779
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001780 Py_BEGIN_ALLOW_THREADS
1781 result = WaitForSingleObject(handle, milliseconds);
1782 Py_END_ALLOW_THREADS
1783
Zachary Waref2244ea2015-05-13 01:22:54 -05001784 if (result == WAIT_FAILED) {
1785 PyErr_SetFromWindowsErr(GetLastError());
1786 return -1;
1787 }
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001788
Zachary Waref2244ea2015-05-13 01:22:54 -05001789 return result;
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001790}
1791
Zachary Waref2244ea2015-05-13 01:22:54 -05001792/*[clinic input]
1793_winapi.WriteFile
1794
1795 handle: HANDLE
1796 buffer: object
Serhiy Storchaka202fda52017-03-12 10:10:47 +02001797 overlapped as use_overlapped: bool(accept={int}) = False
Zachary Waref2244ea2015-05-13 01:22:54 -05001798[clinic start generated code]*/
1799
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001800static PyObject *
Serhiy Storchaka1a2b24f2016-07-07 17:35:15 +03001801_winapi_WriteFile_impl(PyObject *module, HANDLE handle, PyObject *buffer,
Zachary Ware77772c02015-05-13 10:58:35 -05001802 int use_overlapped)
Serhiy Storchaka202fda52017-03-12 10:10:47 +02001803/*[clinic end generated code: output=2ca80f6bf3fa92e3 input=11eae2a03aa32731]*/
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001804{
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001805 Py_buffer _buf, *buf;
Victor Stinner71765772013-06-24 23:13:24 +02001806 DWORD len, written;
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001807 BOOL ret;
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001808 DWORD err;
1809 OverlappedObject *overlapped = NULL;
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001810
1811 if (use_overlapped) {
1812 overlapped = new_overlapped(handle);
1813 if (!overlapped)
1814 return NULL;
1815 buf = &overlapped->write_buffer;
1816 }
1817 else
1818 buf = &_buf;
1819
Zachary Waref2244ea2015-05-13 01:22:54 -05001820 if (!PyArg_Parse(buffer, "y*", buf)) {
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001821 Py_XDECREF(overlapped);
1822 return NULL;
1823 }
1824
1825 Py_BEGIN_ALLOW_THREADS
Victor Stinner850a18e2017-10-24 16:53:32 -07001826 len = (DWORD)Py_MIN(buf->len, PY_DWORD_MAX);
Victor Stinner71765772013-06-24 23:13:24 +02001827 ret = WriteFile(handle, buf->buf, len, &written,
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001828 overlapped ? &overlapped->overlapped : NULL);
1829 Py_END_ALLOW_THREADS
1830
1831 err = ret ? 0 : GetLastError();
1832
1833 if (overlapped) {
1834 if (!ret) {
1835 if (err == ERROR_IO_PENDING)
1836 overlapped->pending = 1;
1837 else {
1838 Py_DECREF(overlapped);
Serhiy Storchaka55fe1ae2017-04-16 10:46:38 +03001839 return PyErr_SetExcFromWindowsErr(PyExc_OSError, 0);
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001840 }
1841 }
1842 return Py_BuildValue("NI", (PyObject *) overlapped, err);
1843 }
1844
1845 PyBuffer_Release(buf);
1846 if (!ret)
Serhiy Storchaka55fe1ae2017-04-16 10:46:38 +03001847 return PyErr_SetExcFromWindowsErr(PyExc_OSError, 0);
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001848 return Py_BuildValue("II", written, err);
1849}
1850
Victor Stinner91106cd2017-12-13 12:29:09 +01001851/*[clinic input]
1852_winapi.GetACP
1853
1854Get the current Windows ANSI code page identifier.
1855[clinic start generated code]*/
1856
1857static PyObject *
1858_winapi_GetACP_impl(PyObject *module)
1859/*[clinic end generated code: output=f7ee24bf705dbb88 input=1433c96d03a05229]*/
1860{
1861 return PyLong_FromUnsignedLong(GetACP());
1862}
1863
Segev Finerb2a60832017-12-18 11:28:19 +02001864/*[clinic input]
1865_winapi.GetFileType -> DWORD
1866
1867 handle: HANDLE
1868[clinic start generated code]*/
1869
1870static DWORD
1871_winapi_GetFileType_impl(PyObject *module, HANDLE handle)
1872/*[clinic end generated code: output=92b8466ac76ecc17 input=0058366bc40bbfbf]*/
1873{
1874 DWORD result;
1875
1876 Py_BEGIN_ALLOW_THREADS
1877 result = GetFileType(handle);
1878 Py_END_ALLOW_THREADS
1879
1880 if (result == FILE_TYPE_UNKNOWN && GetLastError() != NO_ERROR) {
1881 PyErr_SetFromWindowsErr(0);
1882 return -1;
1883 }
1884
1885 return result;
1886}
1887
Victor Stinner91106cd2017-12-13 12:29:09 +01001888
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001889static PyMethodDef winapi_functions[] = {
Zachary Waref2244ea2015-05-13 01:22:54 -05001890 _WINAPI_CLOSEHANDLE_METHODDEF
1891 _WINAPI_CONNECTNAMEDPIPE_METHODDEF
1892 _WINAPI_CREATEFILE_METHODDEF
Davin Pottse895de32019-02-23 22:08:16 -06001893 _WINAPI_CREATEFILEMAPPING_METHODDEF
Zachary Waref2244ea2015-05-13 01:22:54 -05001894 _WINAPI_CREATENAMEDPIPE_METHODDEF
1895 _WINAPI_CREATEPIPE_METHODDEF
1896 _WINAPI_CREATEPROCESS_METHODDEF
1897 _WINAPI_CREATEJUNCTION_METHODDEF
1898 _WINAPI_DUPLICATEHANDLE_METHODDEF
1899 _WINAPI_EXITPROCESS_METHODDEF
1900 _WINAPI_GETCURRENTPROCESS_METHODDEF
1901 _WINAPI_GETEXITCODEPROCESS_METHODDEF
1902 _WINAPI_GETLASTERROR_METHODDEF
1903 _WINAPI_GETMODULEFILENAME_METHODDEF
1904 _WINAPI_GETSTDHANDLE_METHODDEF
1905 _WINAPI_GETVERSION_METHODDEF
Davin Pottse895de32019-02-23 22:08:16 -06001906 _WINAPI_MAPVIEWOFFILE_METHODDEF
1907 _WINAPI_OPENFILEMAPPING_METHODDEF
Zachary Waref2244ea2015-05-13 01:22:54 -05001908 _WINAPI_OPENPROCESS_METHODDEF
1909 _WINAPI_PEEKNAMEDPIPE_METHODDEF
1910 _WINAPI_READFILE_METHODDEF
1911 _WINAPI_SETNAMEDPIPEHANDLESTATE_METHODDEF
1912 _WINAPI_TERMINATEPROCESS_METHODDEF
Davin Pottse895de32019-02-23 22:08:16 -06001913 _WINAPI_VIRTUALQUERYSIZE_METHODDEF
Zachary Waref2244ea2015-05-13 01:22:54 -05001914 _WINAPI_WAITNAMEDPIPE_METHODDEF
1915 _WINAPI_WAITFORMULTIPLEOBJECTS_METHODDEF
1916 _WINAPI_WAITFORSINGLEOBJECT_METHODDEF
1917 _WINAPI_WRITEFILE_METHODDEF
Victor Stinner91106cd2017-12-13 12:29:09 +01001918 _WINAPI_GETACP_METHODDEF
Segev Finerb2a60832017-12-18 11:28:19 +02001919 _WINAPI_GETFILETYPE_METHODDEF
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001920 {NULL, NULL}
1921};
1922
1923static struct PyModuleDef winapi_module = {
1924 PyModuleDef_HEAD_INIT,
1925 "_winapi",
1926 NULL,
1927 -1,
1928 winapi_functions,
1929 NULL,
1930 NULL,
1931 NULL,
1932 NULL
1933};
1934
1935#define WINAPI_CONSTANT(fmt, con) \
1936 PyDict_SetItemString(d, #con, Py_BuildValue(fmt, con))
1937
1938PyMODINIT_FUNC
1939PyInit__winapi(void)
1940{
1941 PyObject *d;
1942 PyObject *m;
1943
1944 if (PyType_Ready(&OverlappedType) < 0)
1945 return NULL;
1946
1947 m = PyModule_Create(&winapi_module);
1948 if (m == NULL)
1949 return NULL;
1950 d = PyModule_GetDict(m);
1951
1952 PyDict_SetItemString(d, "Overlapped", (PyObject *) &OverlappedType);
1953
1954 /* constants */
1955 WINAPI_CONSTANT(F_DWORD, CREATE_NEW_CONSOLE);
1956 WINAPI_CONSTANT(F_DWORD, CREATE_NEW_PROCESS_GROUP);
1957 WINAPI_CONSTANT(F_DWORD, DUPLICATE_SAME_ACCESS);
Antoine Pitrou5438ed12012-04-24 22:56:57 +02001958 WINAPI_CONSTANT(F_DWORD, DUPLICATE_CLOSE_SOURCE);
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001959 WINAPI_CONSTANT(F_DWORD, ERROR_ALREADY_EXISTS);
1960 WINAPI_CONSTANT(F_DWORD, ERROR_BROKEN_PIPE);
1961 WINAPI_CONSTANT(F_DWORD, ERROR_IO_PENDING);
1962 WINAPI_CONSTANT(F_DWORD, ERROR_MORE_DATA);
1963 WINAPI_CONSTANT(F_DWORD, ERROR_NETNAME_DELETED);
1964 WINAPI_CONSTANT(F_DWORD, ERROR_NO_SYSTEM_RESOURCES);
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001965 WINAPI_CONSTANT(F_DWORD, ERROR_MORE_DATA);
1966 WINAPI_CONSTANT(F_DWORD, ERROR_NETNAME_DELETED);
Richard Oudkerkfdb8dcf2012-05-05 19:45:37 +01001967 WINAPI_CONSTANT(F_DWORD, ERROR_NO_DATA);
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001968 WINAPI_CONSTANT(F_DWORD, ERROR_NO_SYSTEM_RESOURCES);
1969 WINAPI_CONSTANT(F_DWORD, ERROR_OPERATION_ABORTED);
1970 WINAPI_CONSTANT(F_DWORD, ERROR_PIPE_BUSY);
1971 WINAPI_CONSTANT(F_DWORD, ERROR_PIPE_CONNECTED);
1972 WINAPI_CONSTANT(F_DWORD, ERROR_SEM_TIMEOUT);
1973 WINAPI_CONSTANT(F_DWORD, FILE_FLAG_FIRST_PIPE_INSTANCE);
1974 WINAPI_CONSTANT(F_DWORD, FILE_FLAG_OVERLAPPED);
Antoine Pitrou5438ed12012-04-24 22:56:57 +02001975 WINAPI_CONSTANT(F_DWORD, FILE_GENERIC_READ);
1976 WINAPI_CONSTANT(F_DWORD, FILE_GENERIC_WRITE);
Davin Pottse895de32019-02-23 22:08:16 -06001977 WINAPI_CONSTANT(F_DWORD, FILE_MAP_ALL_ACCESS);
1978 WINAPI_CONSTANT(F_DWORD, FILE_MAP_COPY);
1979 WINAPI_CONSTANT(F_DWORD, FILE_MAP_EXECUTE);
1980 WINAPI_CONSTANT(F_DWORD, FILE_MAP_READ);
1981 WINAPI_CONSTANT(F_DWORD, FILE_MAP_WRITE);
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001982 WINAPI_CONSTANT(F_DWORD, GENERIC_READ);
1983 WINAPI_CONSTANT(F_DWORD, GENERIC_WRITE);
1984 WINAPI_CONSTANT(F_DWORD, INFINITE);
Davin Pottse895de32019-02-23 22:08:16 -06001985 WINAPI_CONSTANT(F_HANDLE, INVALID_HANDLE_VALUE);
1986 WINAPI_CONSTANT(F_DWORD, MEM_COMMIT);
1987 WINAPI_CONSTANT(F_DWORD, MEM_FREE);
1988 WINAPI_CONSTANT(F_DWORD, MEM_IMAGE);
1989 WINAPI_CONSTANT(F_DWORD, MEM_MAPPED);
1990 WINAPI_CONSTANT(F_DWORD, MEM_PRIVATE);
1991 WINAPI_CONSTANT(F_DWORD, MEM_RESERVE);
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02001992 WINAPI_CONSTANT(F_DWORD, NMPWAIT_WAIT_FOREVER);
1993 WINAPI_CONSTANT(F_DWORD, OPEN_EXISTING);
Davin Pottse895de32019-02-23 22:08:16 -06001994 WINAPI_CONSTANT(F_DWORD, PAGE_EXECUTE);
1995 WINAPI_CONSTANT(F_DWORD, PAGE_EXECUTE_READ);
1996 WINAPI_CONSTANT(F_DWORD, PAGE_EXECUTE_READWRITE);
1997 WINAPI_CONSTANT(F_DWORD, PAGE_EXECUTE_WRITECOPY);
1998 WINAPI_CONSTANT(F_DWORD, PAGE_GUARD);
1999 WINAPI_CONSTANT(F_DWORD, PAGE_NOACCESS);
2000 WINAPI_CONSTANT(F_DWORD, PAGE_NOCACHE);
2001 WINAPI_CONSTANT(F_DWORD, PAGE_READONLY);
2002 WINAPI_CONSTANT(F_DWORD, PAGE_READWRITE);
2003 WINAPI_CONSTANT(F_DWORD, PAGE_WRITECOMBINE);
2004 WINAPI_CONSTANT(F_DWORD, PAGE_WRITECOPY);
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02002005 WINAPI_CONSTANT(F_DWORD, PIPE_ACCESS_DUPLEX);
2006 WINAPI_CONSTANT(F_DWORD, PIPE_ACCESS_INBOUND);
2007 WINAPI_CONSTANT(F_DWORD, PIPE_READMODE_MESSAGE);
2008 WINAPI_CONSTANT(F_DWORD, PIPE_TYPE_MESSAGE);
2009 WINAPI_CONSTANT(F_DWORD, PIPE_UNLIMITED_INSTANCES);
2010 WINAPI_CONSTANT(F_DWORD, PIPE_WAIT);
2011 WINAPI_CONSTANT(F_DWORD, PROCESS_ALL_ACCESS);
Thomas Moreauc09a9f52019-05-20 21:37:05 +02002012 WINAPI_CONSTANT(F_DWORD, SYNCHRONIZE);
Antoine Pitrou5438ed12012-04-24 22:56:57 +02002013 WINAPI_CONSTANT(F_DWORD, PROCESS_DUP_HANDLE);
Davin Pottse895de32019-02-23 22:08:16 -06002014 WINAPI_CONSTANT(F_DWORD, SEC_COMMIT);
2015 WINAPI_CONSTANT(F_DWORD, SEC_IMAGE);
2016 WINAPI_CONSTANT(F_DWORD, SEC_LARGE_PAGES);
2017 WINAPI_CONSTANT(F_DWORD, SEC_NOCACHE);
2018 WINAPI_CONSTANT(F_DWORD, SEC_RESERVE);
2019 WINAPI_CONSTANT(F_DWORD, SEC_WRITECOMBINE);
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02002020 WINAPI_CONSTANT(F_DWORD, STARTF_USESHOWWINDOW);
2021 WINAPI_CONSTANT(F_DWORD, STARTF_USESTDHANDLES);
2022 WINAPI_CONSTANT(F_DWORD, STD_INPUT_HANDLE);
2023 WINAPI_CONSTANT(F_DWORD, STD_OUTPUT_HANDLE);
2024 WINAPI_CONSTANT(F_DWORD, STD_ERROR_HANDLE);
2025 WINAPI_CONSTANT(F_DWORD, STILL_ACTIVE);
2026 WINAPI_CONSTANT(F_DWORD, SW_HIDE);
2027 WINAPI_CONSTANT(F_DWORD, WAIT_OBJECT_0);
Victor Stinner373f0a92014-03-20 09:26:55 +01002028 WINAPI_CONSTANT(F_DWORD, WAIT_ABANDONED_0);
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02002029 WINAPI_CONSTANT(F_DWORD, WAIT_TIMEOUT);
Victor Stinner91106cd2017-12-13 12:29:09 +01002030
Jamesb5d9e082017-11-08 14:18:59 +00002031 WINAPI_CONSTANT(F_DWORD, ABOVE_NORMAL_PRIORITY_CLASS);
2032 WINAPI_CONSTANT(F_DWORD, BELOW_NORMAL_PRIORITY_CLASS);
2033 WINAPI_CONSTANT(F_DWORD, HIGH_PRIORITY_CLASS);
2034 WINAPI_CONSTANT(F_DWORD, IDLE_PRIORITY_CLASS);
2035 WINAPI_CONSTANT(F_DWORD, NORMAL_PRIORITY_CLASS);
2036 WINAPI_CONSTANT(F_DWORD, REALTIME_PRIORITY_CLASS);
Victor Stinner91106cd2017-12-13 12:29:09 +01002037
Jamesb5d9e082017-11-08 14:18:59 +00002038 WINAPI_CONSTANT(F_DWORD, CREATE_NO_WINDOW);
2039 WINAPI_CONSTANT(F_DWORD, DETACHED_PROCESS);
2040 WINAPI_CONSTANT(F_DWORD, CREATE_DEFAULT_ERROR_MODE);
2041 WINAPI_CONSTANT(F_DWORD, CREATE_BREAKAWAY_FROM_JOB);
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02002042
Segev Finerb2a60832017-12-18 11:28:19 +02002043 WINAPI_CONSTANT(F_DWORD, FILE_TYPE_UNKNOWN);
2044 WINAPI_CONSTANT(F_DWORD, FILE_TYPE_DISK);
2045 WINAPI_CONSTANT(F_DWORD, FILE_TYPE_CHAR);
2046 WINAPI_CONSTANT(F_DWORD, FILE_TYPE_PIPE);
2047 WINAPI_CONSTANT(F_DWORD, FILE_TYPE_REMOTE);
2048
Antoine Pitrou23bba4c2012-04-18 20:51:15 +02002049 WINAPI_CONSTANT("i", NULL);
2050
2051 return m;
2052}