2 /* POSIX module implementation */
4 /* This file is also used for Windows NT/MS-Win and OS/2. In that case the
5 module actually calls itself 'nt' or 'os2', not 'posix', and a few
6 functions are either unimplemented or implemented differently. The source
7 assumes that for Windows NT, the macro 'MS_WINDOWS' is defined independent
8 of the compiler used. Different compilers define their own feature
9 test macro, e.g. '__BORLANDC__' or '_MSC_VER'. For OS/2, the compiler
10 independent macro PYOS_OS2 should be defined. On OS/2 the default
11 compiler is assumed to be IBM's VisualAge C++ (VACPP). PYCC_GCC is used
12 as the compiler specific macro for the EMX port of gcc to OS/2. */
14 /* See also ../Dos/dosmodule.c */
18 * Step 1 of support for weak-linking a number of symbols existing on
19 * OSX 10.4 and later, see the comment in the #ifdef __APPLE__ block
20 * at the end of this file for more information.
24 # pragma weak fstatvfs
26 #endif /* __APPLE__ */
28 #define PY_SSIZE_T_CLEAN
31 #include "structseq.h"
35 #endif /* defined(__VMS) */
41 PyDoc_STRVAR(posix__doc__
,
42 "This module provides access to operating system functionality that is\n\
43 standardized by the C Standard and the POSIX standard (a thinly\n\
44 disguised Unix interface). Refer to the library manual and\n\
45 corresponding Unix manual entries for more information on calls.");
47 #ifndef Py_USING_UNICODE
48 /* This is used in signatures of functions. */
49 #define Py_UNICODE void
54 #define INCL_DOSERRORS
55 #define INCL_DOSPROCESS
67 #ifdef HAVE_SYS_TYPES_H
68 #include <sys/types.h>
69 #endif /* HAVE_SYS_TYPES_H */
71 #ifdef HAVE_SYS_STAT_H
73 #endif /* HAVE_SYS_STAT_H */
75 #ifdef HAVE_SYS_WAIT_H
76 #include <sys/wait.h> /* For WNOHANG */
85 #endif /* HAVE_FCNTL_H */
91 #ifdef HAVE_SYSEXITS_H
93 #endif /* HAVE_SYSEXITS_H */
95 #ifdef HAVE_SYS_LOADAVG_H
96 #include <sys/loadavg.h>
99 /* Various compilers have only certain posix functions */
100 /* XXX Gosh I wish these were all moved into pyconfig.h */
101 #if defined(PYCC_VACPP) && defined(PYOS_OS2)
104 #if defined(__WATCOMC__) && !defined(__QNX__) /* Watcom compiler */
105 #define HAVE_GETCWD 1
106 #define HAVE_OPENDIR 1
107 #define HAVE_SYSTEM 1
114 #ifdef __BORLANDC__ /* Borland compiler */
116 #define HAVE_GETCWD 1
117 #define HAVE_OPENDIR 1
120 #define HAVE_SYSTEM 1
123 #ifdef _MSC_VER /* Microsoft compiler */
124 #define HAVE_GETCWD 1
125 #define HAVE_SPAWNV 1
129 #define HAVE_SYSTEM 1
132 #define fsync _commit
134 #if defined(PYOS_OS2) && defined(PYCC_GCC) || defined(__VMS)
135 /* Everything needed is defined in PC/os2emx/pyconfig.h or vms/pyconfig.h */
136 #else /* all other compilers */
137 /* Unix functions that the configure script doesn't check for */
140 #if defined(__USLC__) && defined(__SCO_VERSION__) /* SCO UDK Compiler */
143 #define HAVE_GETCWD 1
144 #define HAVE_GETEGID 1
145 #define HAVE_GETEUID 1
146 #define HAVE_GETGID 1
147 #define HAVE_GETPPID 1
148 #define HAVE_GETUID 1
150 #define HAVE_OPENDIR 1
155 #define HAVE_SYSTEM 1
157 #define HAVE_TTYNAME 1
158 #endif /* PYOS_OS2 && PYCC_GCC && __VMS */
159 #endif /* _MSC_VER */
160 #endif /* __BORLANDC__ */
161 #endif /* ! __WATCOMC__ || __QNX__ */
162 #endif /* ! __IBMC__ */
166 #if defined(__sgi)&&_COMPILER_VERSION>=700
167 /* declare ctermid_r if compiling with MIPSPro 7.x in ANSI C mode
169 extern char *ctermid_r(char *);
172 #ifndef HAVE_UNISTD_H
173 #if defined(PYCC_VACPP)
174 extern int mkdir(char *);
176 #if ( defined(__WATCOMC__) || defined(_MSC_VER) ) && !defined(__QNX__)
177 extern int mkdir(const char *);
179 extern int mkdir(const char *, mode_t
);
182 #if defined(__IBMC__) || defined(__IBMCPP__)
183 extern int chdir(char *);
184 extern int rmdir(char *);
186 extern int chdir(const char *);
187 extern int rmdir(const char *);
190 extern int chmod(const char *, int);
192 extern int chmod(const char *, mode_t
);
195 extern int fchmod(int, mode_t);
198 extern int lchmod(const char *, mode_t);
200 extern int chown(const char *, uid_t
, gid_t
);
201 extern char *getcwd(char *, int);
202 extern char *strerror(int);
203 extern int link(const char *, const char *);
204 extern int rename(const char *, const char *);
205 extern int stat(const char *, struct stat
*);
206 extern int unlink(const char *);
207 extern int pclose(FILE *);
209 extern int symlink(const char *, const char *);
210 #endif /* HAVE_SYMLINK */
212 extern int lstat(const char *, struct stat
*);
213 #endif /* HAVE_LSTAT */
214 #endif /* !HAVE_UNISTD_H */
216 #endif /* !_MSC_VER */
220 #endif /* HAVE_UTIME_H */
222 #ifdef HAVE_SYS_UTIME_H
223 #include <sys/utime.h>
224 #define HAVE_UTIME_H /* pretend we do for the rest of this file */
225 #endif /* HAVE_SYS_UTIME_H */
227 #ifdef HAVE_SYS_TIMES_H
228 #include <sys/times.h>
229 #endif /* HAVE_SYS_TIMES_H */
231 #ifdef HAVE_SYS_PARAM_H
232 #include <sys/param.h>
233 #endif /* HAVE_SYS_PARAM_H */
235 #ifdef HAVE_SYS_UTSNAME_H
236 #include <sys/utsname.h>
237 #endif /* HAVE_SYS_UTSNAME_H */
241 #define NAMLEN(dirent) strlen((dirent)->d_name)
243 #if defined(__WATCOMC__) && !defined(__QNX__)
245 #define NAMLEN(dirent) strlen((dirent)->d_name)
247 #define dirent direct
248 #define NAMLEN(dirent) (dirent)->d_namlen
250 #ifdef HAVE_SYS_NDIR_H
251 #include <sys/ndir.h>
253 #ifdef HAVE_SYS_DIR_H
268 #ifdef HAVE_PROCESS_H
274 #include <shellapi.h> /* for ShellExecute() */
276 #define pclose _pclose
277 #endif /* _MSC_VER */
279 #if defined(PYCC_VACPP) && defined(PYOS_OS2)
284 #if defined(PATH_MAX) && PATH_MAX > 1024
285 #define MAXPATHLEN PATH_MAX
287 #define MAXPATHLEN 1024
289 #endif /* MAXPATHLEN */
292 /* Emulate some macros on systems that have a union instead of macros */
295 #define WIFEXITED(u_wait) (!(u_wait).w_termsig && !(u_wait).w_coredump)
299 #define WEXITSTATUS(u_wait) (WIFEXITED(u_wait)?((u_wait).w_retcode):-1)
303 #define WTERMSIG(u_wait) ((u_wait).w_termsig)
306 #define WAIT_TYPE union wait
307 #define WAIT_STATUS_INT(s) (s.w_status)
309 #else /* !UNION_WAIT */
310 #define WAIT_TYPE int
311 #define WAIT_STATUS_INT(s) (s)
312 #endif /* UNION_WAIT */
314 /* Issue #1983: pid_t can be longer than a C long on some systems */
315 #if !defined(SIZEOF_PID_T) || SIZEOF_PID_T == SIZEOF_INT
316 #define PARSE_PID "i"
317 #define PyLong_FromPid PyInt_FromLong
318 #define PyLong_AsPid PyInt_AsLong
319 #elif SIZEOF_PID_T == SIZEOF_LONG
320 #define PARSE_PID "l"
321 #define PyLong_FromPid PyInt_FromLong
322 #define PyLong_AsPid PyInt_AsLong
323 #elif defined(SIZEOF_LONG_LONG) && SIZEOF_PID_T == SIZEOF_LONG_LONG
324 #define PARSE_PID "L"
325 #define PyLong_FromPid PyLong_FromLongLong
326 #define PyLong_AsPid PyInt_AsLongLong
328 #error "sizeof(pid_t) is neither sizeof(int), sizeof(long) or sizeof(long long)"
329 #endif /* SIZEOF_PID_T */
331 /* Don't use the "_r" form if we don't need it (also, won't have a
332 prototype for it, at least on Solaris -- maybe others as well?). */
333 #if defined(HAVE_CTERMID_R) && defined(WITH_THREAD)
334 #define USE_CTERMID_R
337 #if defined(HAVE_TMPNAM_R) && defined(WITH_THREAD)
341 /* choose the appropriate stat and fstat functions and return structs */
343 #if defined(MS_WIN64) || defined(MS_WINDOWS)
344 # define STAT win32_stat
345 # define FSTAT win32_fstat
346 # define STRUCT_STAT struct win32_stat
350 # define STRUCT_STAT struct stat
353 #if defined(MAJOR_IN_MKDEV)
354 #include <sys/mkdev.h>
356 #if defined(MAJOR_IN_SYSMACROS)
357 #include <sys/sysmacros.h>
359 #if defined(HAVE_MKNOD) && defined(HAVE_SYS_MKDEV_H)
360 #include <sys/mkdev.h>
364 #if defined _MSC_VER && _MSC_VER >= 1400
365 /* Microsoft CRT in VS2005 and higher will verify that a filehandle is
366 * valid and throw an assertion if it isn't.
367 * Normally, an invalid fd is likely to be a C program error and therefore
368 * an assertion can be useful, but it does contradict the POSIX standard
369 * which for write(2) states:
370 * "Otherwise, -1 shall be returned and errno set to indicate the error."
371 * "[EBADF] The fildes argument is not a valid file descriptor open for
373 * Furthermore, python allows the user to enter any old integer
374 * as a fd and should merely raise a python exception on error.
375 * The Microsoft CRT doesn't provide an official way to check for the
376 * validity of a file descriptor, but we can emulate its internal behaviour
377 * by using the exported __pinfo data member and knowledge of the
378 * internal structures involved.
379 * The structures below must be updated for each version of visual studio
380 * according to the file internal.h in the CRT source, until MS comes
381 * up with a less hacky way to do this.
382 * (all of this is to avoid globally modifying the CRT behaviour using
383 * _set_invalid_parameter_handler() and _CrtSetReportMode())
385 /* The actual size of the structure is determined at runtime.
386 * Only the first items must be present.
393 extern __declspec(dllimport
) char * __pioinfo
[];
395 #define IOINFO_ARRAY_ELTS (1 << IOINFO_L2E)
396 #define IOINFO_ARRAYS 64
397 #define _NHANDLE_ (IOINFO_ARRAYS * IOINFO_ARRAY_ELTS)
399 #define _NO_CONSOLE_FILENO (intptr_t)-2
401 /* This function emulates what the windows CRT does to validate file handles */
405 const int i1
= fd
>> IOINFO_L2E
;
406 const int i2
= fd
& ((1 << IOINFO_L2E
) - 1);
408 static int sizeof_ioinfo
= 0;
410 /* Determine the actual size of the ioinfo structure,
411 * as used by the CRT loaded in memory
413 if (sizeof_ioinfo
== 0 && __pioinfo
[0] != NULL
) {
414 sizeof_ioinfo
= _msize(__pioinfo
[0]) / IOINFO_ARRAY_ELTS
;
416 if (sizeof_ioinfo
== 0) {
417 /* This should not happen... */
421 /* See that it isn't a special CLEAR fileno */
422 if (fd
!= _NO_CONSOLE_FILENO
) {
423 /* Microsoft CRT would check that 0<=fd<_nhandle but we can't do that. Instead
424 * we check pointer validity and other info
426 if (0 <= i1
&& i1
< IOINFO_ARRAYS
&& __pioinfo
[i1
] != NULL
) {
427 /* finally, check that the file is open */
428 my_ioinfo
* info
= (my_ioinfo
*)(__pioinfo
[i1
] + i2
* sizeof_ioinfo
);
429 if (info
->osfile
& FOPEN
) {
439 /* the special case of checking dup2. The target fd must be in a sensible range */
441 _PyVerify_fd_dup2(int fd1
, int fd2
)
443 if (!_PyVerify_fd(fd1
))
445 if (fd2
== _NO_CONSOLE_FILENO
)
447 if ((unsigned)fd2
< _NHANDLE_
)
453 /* dummy version. _PyVerify_fd() is already defined in fileobject.h */
454 #define _PyVerify_fd_dup2(A, B) (1)
457 /* Return a dictionary corresponding to the POSIX environment table */
458 #ifdef WITH_NEXT_FRAMEWORK
459 /* On Darwin/MacOSX a shared library or framework has no access to
460 ** environ directly, we must obtain it with _NSGetEnviron().
462 #include <crt_externs.h>
463 static char **environ
;
464 #elif !defined(_MSC_VER) && ( !defined(__WATCOMC__) || defined(__QNX__) )
465 extern char **environ
;
466 #endif /* !_MSC_VER */
473 #if defined(PYOS_OS2)
475 char buffer
[1024]; /* OS/2 Provides a Documented Max of 1024 Chars */
480 #ifdef WITH_NEXT_FRAMEWORK
482 environ
= *_NSGetEnviron();
486 /* This part ignores errors */
487 for (e
= environ
; *e
!= NULL
; e
++) {
490 char *p
= strchr(*e
, '=');
493 k
= PyString_FromStringAndSize(*e
, (int)(p
-*e
));
498 v
= PyString_FromString(p
+1);
504 if (PyDict_GetItem(d
, k
) == NULL
) {
505 if (PyDict_SetItem(d
, k
, v
) != 0)
511 #if defined(PYOS_OS2)
512 rc
= DosQueryExtLIBPATH(buffer
, BEGIN_LIBPATH
);
513 if (rc
== NO_ERROR
) { /* (not a type, envname is NOT 'BEGIN_LIBPATH') */
514 PyObject
*v
= PyString_FromString(buffer
);
515 PyDict_SetItemString(d
, "BEGINLIBPATH", v
);
518 rc
= DosQueryExtLIBPATH(buffer
, END_LIBPATH
);
519 if (rc
== NO_ERROR
) { /* (not a typo, envname is NOT 'END_LIBPATH') */
520 PyObject
*v
= PyString_FromString(buffer
);
521 PyDict_SetItemString(d
, "ENDLIBPATH", v
);
529 /* Set a POSIX-specific error from errno, and return NULL */
534 return PyErr_SetFromErrno(PyExc_OSError
);
537 posix_error_with_filename(char* name
)
539 return PyErr_SetFromErrnoWithFilename(PyExc_OSError
, name
);
544 posix_error_with_unicode_filename(Py_UNICODE
* name
)
546 return PyErr_SetFromErrnoWithUnicodeFilename(PyExc_OSError
, name
);
548 #endif /* MS_WINDOWS */
552 posix_error_with_allocated_filename(char* name
)
554 PyObject
*rc
= PyErr_SetFromErrnoWithFilename(PyExc_OSError
, name
);
561 win32_error(char* function
, char* filename
)
563 /* XXX We should pass the function name along in the future.
564 (_winreg.c also wants to pass the function name.)
565 This would however require an additional param to the
566 Windows error object, which is non-trivial.
568 errno
= GetLastError();
570 return PyErr_SetFromWindowsErrWithFilename(errno
, filename
);
572 return PyErr_SetFromWindowsErr(errno
);
576 win32_error_unicode(char* function
, Py_UNICODE
* filename
)
578 /* XXX - see win32_error for comments on 'function' */
579 errno
= GetLastError();
581 return PyErr_SetFromWindowsErrWithUnicodeFilename(errno
, filename
);
583 return PyErr_SetFromWindowsErr(errno
);
587 convert_to_unicode(PyObject
**param
)
589 if (PyUnicode_CheckExact(*param
))
591 else if (PyUnicode_Check(*param
))
592 /* For a Unicode subtype that's not a Unicode object,
593 return a true Unicode object with the same data. */
594 *param
= PyUnicode_FromUnicode(PyUnicode_AS_UNICODE(*param
),
595 PyUnicode_GET_SIZE(*param
));
597 *param
= PyUnicode_FromEncodedObject(*param
,
598 Py_FileSystemDefaultEncoding
,
600 return (*param
) != NULL
;
603 #endif /* MS_WINDOWS */
605 #if defined(PYOS_OS2)
606 /**********************************************************************
607 * Helper Function to Trim and Format OS/2 Messages
608 **********************************************************************/
610 os2_formatmsg(char *msgbuf
, int msglen
, char *reason
)
612 msgbuf
[msglen
] = '\0'; /* OS/2 Doesn't Guarantee a Terminator */
614 if (strlen(msgbuf
) > 0) { /* If Non-Empty Msg, Trim CRLF */
615 char *lastc
= &msgbuf
[ strlen(msgbuf
)-1 ];
617 while (lastc
> msgbuf
&& isspace(Py_CHARMASK(*lastc
)))
618 *lastc
-- = '\0'; /* Trim Trailing Whitespace (CRLF) */
621 /* Add Optional Reason Text */
623 strcat(msgbuf
, " : ");
624 strcat(msgbuf
, reason
);
628 /**********************************************************************
629 * Decode an OS/2 Operating System Error Code
631 * A convenience function to lookup an OS/2 error code and return a
632 * text message we can use to raise a Python exception.
635 * The messages for errors returned from the OS/2 kernel reside in
636 * the file OSO001.MSG in the \OS2 directory hierarchy.
638 **********************************************************************/
640 os2_strerror(char *msgbuf
, int msgbuflen
, int errorcode
, char *reason
)
645 /* Retrieve Kernel-Related Error Message from OSO001.MSG File */
646 Py_BEGIN_ALLOW_THREADS
647 rc
= DosGetMessage(NULL
, 0, msgbuf
, msgbuflen
,
648 errorcode
, "oso001.msg", &msglen
);
652 os2_formatmsg(msgbuf
, msglen
, reason
);
654 PyOS_snprintf(msgbuf
, msgbuflen
,
655 "unknown OS error #%d", errorcode
);
660 /* Set an OS/2-specific error and return NULL. OS/2 kernel
661 errors are not in a global variable e.g. 'errno' nor are
662 they congruent with posix error numbers. */
670 os2_strerror(text
, sizeof(text
), code
, "");
672 v
= Py_BuildValue("(is)", code
, text
);
674 PyErr_SetObject(PyExc_OSError
, v
);
677 return NULL
; /* Signal to Python that an Exception is Pending */
682 /* POSIX generic methods */
685 posix_fildes(PyObject
*fdobj
, int (*func
)(int))
689 fd
= PyObject_AsFileDescriptor(fdobj
);
692 if (!_PyVerify_fd(fd
))
693 return posix_error();
694 Py_BEGIN_ALLOW_THREADS
698 return posix_error();
704 posix_1str(PyObject
*args
, char *format
, int (*func
)(const char*))
708 if (!PyArg_ParseTuple(args
, format
,
709 Py_FileSystemDefaultEncoding
, &path1
))
711 Py_BEGIN_ALLOW_THREADS
712 res
= (*func
)(path1
);
715 return posix_error_with_allocated_filename(path1
);
722 posix_2str(PyObject
*args
,
724 int (*func
)(const char *, const char *))
726 char *path1
= NULL
, *path2
= NULL
;
728 if (!PyArg_ParseTuple(args
, format
,
729 Py_FileSystemDefaultEncoding
, &path1
,
730 Py_FileSystemDefaultEncoding
, &path2
))
732 Py_BEGIN_ALLOW_THREADS
733 res
= (*func
)(path1
, path2
);
738 /* XXX how to report both path1 and path2??? */
739 return posix_error();
746 win32_1str(PyObject
* args
, char* func
,
747 char* format
, BOOL (__stdcall
*funcA
)(LPCSTR
),
748 char* wformat
, BOOL (__stdcall
*funcW
)(LPWSTR
))
754 if (!PyArg_ParseTuple(args
, wformat
, &uni
))
757 Py_BEGIN_ALLOW_THREADS
758 result
= funcW(PyUnicode_AsUnicode(uni
));
761 return win32_error_unicode(func
, PyUnicode_AsUnicode(uni
));
765 if (!PyArg_ParseTuple(args
, format
, &ansi
))
767 Py_BEGIN_ALLOW_THREADS
768 result
= funcA(ansi
);
771 return win32_error(func
, ansi
);
777 /* This is a reimplementation of the C library's chdir function,
778 but one that produces Win32 errors instead of DOS error codes.
779 chdir is essentially a wrapper around SetCurrentDirectory; however,
780 it also needs to set "magic" environment variables indicating
781 the per-drive current directory, which are of the form =<drive>: */
782 static BOOL __stdcall
783 win32_chdir(LPCSTR path
)
785 char new_path
[MAX_PATH
+1];
789 if(!SetCurrentDirectoryA(path
))
791 result
= GetCurrentDirectoryA(MAX_PATH
+1, new_path
);
794 /* In the ANSI API, there should not be any paths longer
796 assert(result
<= MAX_PATH
+1);
797 if (strncmp(new_path
, "\\\\", 2) == 0 ||
798 strncmp(new_path
, "//", 2) == 0)
799 /* UNC path, nothing to do. */
801 env
[1] = new_path
[0];
802 return SetEnvironmentVariableA(env
, new_path
);
805 /* The Unicode version differs from the ANSI version
806 since the current directory might exceed MAX_PATH characters */
807 static BOOL __stdcall
808 win32_wchdir(LPCWSTR path
)
810 wchar_t _new_path
[MAX_PATH
+1], *new_path
= _new_path
;
812 wchar_t env
[4] = L
"=x:";
814 if(!SetCurrentDirectoryW(path
))
816 result
= GetCurrentDirectoryW(MAX_PATH
+1, new_path
);
819 if (result
> MAX_PATH
+1) {
820 new_path
= malloc(result
* sizeof(wchar_t));
822 SetLastError(ERROR_OUTOFMEMORY
);
825 result
= GetCurrentDirectoryW(result
, new_path
);
831 if (wcsncmp(new_path
, L
"\\\\", 2) == 0 ||
832 wcsncmp(new_path
, L
"//", 2) == 0)
833 /* UNC path, nothing to do. */
835 env
[1] = new_path
[0];
836 result
= SetEnvironmentVariableW(env
, new_path
);
837 if (new_path
!= _new_path
)
844 /* The CRT of Windows has a number of flaws wrt. its stat() implementation:
845 - time stamps are restricted to second resolution
846 - file modification times suffer from forth-and-back conversions between
848 Therefore, we implement our own stat, based on the Win32 API directly.
850 #define HAVE_STAT_NSEC 1
855 unsigned short st_mode
;
869 static __int64 secs_between_epochs
= 11644473600; /* Seconds between 1.1.1601 and 1.1.1970 */
872 FILE_TIME_to_time_t_nsec(FILETIME
*in_ptr
, int *time_out
, int* nsec_out
)
874 /* XXX endianness. Shouldn't matter, as all Windows implementations are little-endian */
875 /* Cannot simply cast and dereference in_ptr,
876 since it might not be aligned properly */
878 memcpy(&in
, in_ptr
, sizeof(in
));
879 *nsec_out
= (int)(in
% 10000000) * 100; /* FILETIME is in units of 100 nsec. */
880 /* XXX Win32 supports time stamps past 2038; we currently don't */
881 *time_out
= Py_SAFE_DOWNCAST((in
/ 10000000) - secs_between_epochs
, __int64
, int);
885 time_t_to_FILE_TIME(int time_in
, int nsec_in
, FILETIME
*out_ptr
)
889 out
= time_in
+ secs_between_epochs
;
890 out
= out
* 10000000 + nsec_in
/ 100;
891 memcpy(out_ptr
, &out
, sizeof(out
));
894 /* Below, we *know* that ugo+r is 0444 */
896 #error Unsupported C library
899 attributes_to_mode(DWORD attr
)
902 if (attr
& FILE_ATTRIBUTE_DIRECTORY
)
903 m
|= _S_IFDIR
| 0111; /* IFEXEC for user,group,other */
906 if (attr
& FILE_ATTRIBUTE_READONLY
)
914 attribute_data_to_stat(WIN32_FILE_ATTRIBUTE_DATA
*info
, struct win32_stat
*result
)
916 memset(result
, 0, sizeof(*result
));
917 result
->st_mode
= attributes_to_mode(info
->dwFileAttributes
);
918 result
->st_size
= (((__int64
)info
->nFileSizeHigh
)<<32) + info
->nFileSizeLow
;
919 FILE_TIME_to_time_t_nsec(&info
->ftCreationTime
, &result
->st_ctime
, &result
->st_ctime_nsec
);
920 FILE_TIME_to_time_t_nsec(&info
->ftLastWriteTime
, &result
->st_mtime
, &result
->st_mtime_nsec
);
921 FILE_TIME_to_time_t_nsec(&info
->ftLastAccessTime
, &result
->st_atime
, &result
->st_atime_nsec
);
927 attributes_from_dir(LPCSTR pszFile
, LPWIN32_FILE_ATTRIBUTE_DATA pfad
)
930 WIN32_FIND_DATAA FileData
;
931 hFindFile
= FindFirstFileA(pszFile
, &FileData
);
932 if (hFindFile
== INVALID_HANDLE_VALUE
)
934 FindClose(hFindFile
);
935 pfad
->dwFileAttributes
= FileData
.dwFileAttributes
;
936 pfad
->ftCreationTime
= FileData
.ftCreationTime
;
937 pfad
->ftLastAccessTime
= FileData
.ftLastAccessTime
;
938 pfad
->ftLastWriteTime
= FileData
.ftLastWriteTime
;
939 pfad
->nFileSizeHigh
= FileData
.nFileSizeHigh
;
940 pfad
->nFileSizeLow
= FileData
.nFileSizeLow
;
945 attributes_from_dir_w(LPCWSTR pszFile
, LPWIN32_FILE_ATTRIBUTE_DATA pfad
)
948 WIN32_FIND_DATAW FileData
;
949 hFindFile
= FindFirstFileW(pszFile
, &FileData
);
950 if (hFindFile
== INVALID_HANDLE_VALUE
)
952 FindClose(hFindFile
);
953 pfad
->dwFileAttributes
= FileData
.dwFileAttributes
;
954 pfad
->ftCreationTime
= FileData
.ftCreationTime
;
955 pfad
->ftLastAccessTime
= FileData
.ftLastAccessTime
;
956 pfad
->ftLastWriteTime
= FileData
.ftLastWriteTime
;
957 pfad
->nFileSizeHigh
= FileData
.nFileSizeHigh
;
958 pfad
->nFileSizeLow
= FileData
.nFileSizeLow
;
963 win32_stat(const char* path
, struct win32_stat
*result
)
965 WIN32_FILE_ATTRIBUTE_DATA info
;
968 if (!GetFileAttributesExA(path
, GetFileExInfoStandard
, &info
)) {
969 if (GetLastError() != ERROR_SHARING_VIOLATION
) {
970 /* Protocol violation: we explicitly clear errno, instead of
971 setting it to a POSIX error. Callers should use GetLastError. */
975 /* Could not get attributes on open file. Fall back to
976 reading the directory. */
977 if (!attributes_from_dir(path
, &info
)) {
978 /* Very strange. This should not fail now */
984 code
= attribute_data_to_stat(&info
, result
);
987 /* Set S_IFEXEC if it is an .exe, .bat, ... */
988 dot
= strrchr(path
, '.');
990 if (stricmp(dot
, ".bat") == 0 ||
991 stricmp(dot
, ".cmd") == 0 ||
992 stricmp(dot
, ".exe") == 0 ||
993 stricmp(dot
, ".com") == 0)
994 result
->st_mode
|= 0111;
1000 win32_wstat(const wchar_t* path
, struct win32_stat
*result
)
1004 WIN32_FILE_ATTRIBUTE_DATA info
;
1005 if (!GetFileAttributesExW(path
, GetFileExInfoStandard
, &info
)) {
1006 if (GetLastError() != ERROR_SHARING_VIOLATION
) {
1007 /* Protocol violation: we explicitly clear errno, instead of
1008 setting it to a POSIX error. Callers should use GetLastError. */
1012 /* Could not get attributes on open file. Fall back to
1013 reading the directory. */
1014 if (!attributes_from_dir_w(path
, &info
)) {
1015 /* Very strange. This should not fail now */
1021 code
= attribute_data_to_stat(&info
, result
);
1024 /* Set IFEXEC if it is an .exe, .bat, ... */
1025 dot
= wcsrchr(path
, '.');
1027 if (_wcsicmp(dot
, L
".bat") == 0 ||
1028 _wcsicmp(dot
, L
".cmd") == 0 ||
1029 _wcsicmp(dot
, L
".exe") == 0 ||
1030 _wcsicmp(dot
, L
".com") == 0)
1031 result
->st_mode
|= 0111;
1037 win32_fstat(int file_number
, struct win32_stat
*result
)
1039 BY_HANDLE_FILE_INFORMATION info
;
1043 h
= (HANDLE
)_get_osfhandle(file_number
);
1045 /* Protocol violation: we explicitly clear errno, instead of
1046 setting it to a POSIX error. Callers should use GetLastError. */
1049 if (h
== INVALID_HANDLE_VALUE
) {
1050 /* This is really a C library error (invalid file handle).
1051 We set the Win32 error to the closes one matching. */
1052 SetLastError(ERROR_INVALID_HANDLE
);
1055 memset(result
, 0, sizeof(*result
));
1057 type
= GetFileType(h
);
1058 if (type
== FILE_TYPE_UNKNOWN
) {
1059 DWORD error
= GetLastError();
1063 /* else: valid but unknown file */
1066 if (type
!= FILE_TYPE_DISK
) {
1067 if (type
== FILE_TYPE_CHAR
)
1068 result
->st_mode
= _S_IFCHR
;
1069 else if (type
== FILE_TYPE_PIPE
)
1070 result
->st_mode
= _S_IFIFO
;
1074 if (!GetFileInformationByHandle(h
, &info
)) {
1078 /* similar to stat() */
1079 result
->st_mode
= attributes_to_mode(info
.dwFileAttributes
);
1080 result
->st_size
= (((__int64
)info
.nFileSizeHigh
)<<32) + info
.nFileSizeLow
;
1081 FILE_TIME_to_time_t_nsec(&info
.ftCreationTime
, &result
->st_ctime
, &result
->st_ctime_nsec
);
1082 FILE_TIME_to_time_t_nsec(&info
.ftLastWriteTime
, &result
->st_mtime
, &result
->st_mtime_nsec
);
1083 FILE_TIME_to_time_t_nsec(&info
.ftLastAccessTime
, &result
->st_atime
, &result
->st_atime_nsec
);
1084 /* specific to fstat() */
1085 result
->st_nlink
= info
.nNumberOfLinks
;
1086 result
->st_ino
= (((__int64
)info
.nFileIndexHigh
)<<32) + info
.nFileIndexLow
;
1090 #endif /* MS_WINDOWS */
1092 PyDoc_STRVAR(stat_result__doc__
,
1093 "stat_result: Result from stat or lstat.\n\n\
1094 This object may be accessed either as a tuple of\n\
1095 (mode, ino, dev, nlink, uid, gid, size, atime, mtime, ctime)\n\
1096 or via the attributes st_mode, st_ino, st_dev, st_nlink, st_uid, and so on.\n\
1098 Posix/windows: If your platform supports st_blksize, st_blocks, st_rdev,\n\
1099 or st_flags, they are available as attributes only.\n\
1101 See os.stat for more information.");
1103 static PyStructSequence_Field stat_result_fields
[] = {
1104 {"st_mode", "protection bits"},
1105 {"st_ino", "inode"},
1106 {"st_dev", "device"},
1107 {"st_nlink", "number of hard links"},
1108 {"st_uid", "user ID of owner"},
1109 {"st_gid", "group ID of owner"},
1110 {"st_size", "total size, in bytes"},
1111 /* The NULL is replaced with PyStructSequence_UnnamedField later. */
1112 {NULL
, "integer time of last access"},
1113 {NULL
, "integer time of last modification"},
1114 {NULL
, "integer time of last change"},
1115 {"st_atime", "time of last access"},
1116 {"st_mtime", "time of last modification"},
1117 {"st_ctime", "time of last change"},
1118 #ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
1119 {"st_blksize", "blocksize for filesystem I/O"},
1121 #ifdef HAVE_STRUCT_STAT_ST_BLOCKS
1122 {"st_blocks", "number of blocks allocated"},
1124 #ifdef HAVE_STRUCT_STAT_ST_RDEV
1125 {"st_rdev", "device type (if inode device)"},
1127 #ifdef HAVE_STRUCT_STAT_ST_FLAGS
1128 {"st_flags", "user defined flags for file"},
1130 #ifdef HAVE_STRUCT_STAT_ST_GEN
1131 {"st_gen", "generation number"},
1133 #ifdef HAVE_STRUCT_STAT_ST_BIRTHTIME
1134 {"st_birthtime", "time of creation"},
1139 #ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
1140 #define ST_BLKSIZE_IDX 13
1142 #define ST_BLKSIZE_IDX 12
1145 #ifdef HAVE_STRUCT_STAT_ST_BLOCKS
1146 #define ST_BLOCKS_IDX (ST_BLKSIZE_IDX+1)
1148 #define ST_BLOCKS_IDX ST_BLKSIZE_IDX
1151 #ifdef HAVE_STRUCT_STAT_ST_RDEV
1152 #define ST_RDEV_IDX (ST_BLOCKS_IDX+1)
1154 #define ST_RDEV_IDX ST_BLOCKS_IDX
1157 #ifdef HAVE_STRUCT_STAT_ST_FLAGS
1158 #define ST_FLAGS_IDX (ST_RDEV_IDX+1)
1160 #define ST_FLAGS_IDX ST_RDEV_IDX
1163 #ifdef HAVE_STRUCT_STAT_ST_GEN
1164 #define ST_GEN_IDX (ST_FLAGS_IDX+1)
1166 #define ST_GEN_IDX ST_FLAGS_IDX
1169 #ifdef HAVE_STRUCT_STAT_ST_BIRTHTIME
1170 #define ST_BIRTHTIME_IDX (ST_GEN_IDX+1)
1172 #define ST_BIRTHTIME_IDX ST_GEN_IDX
1175 static PyStructSequence_Desc stat_result_desc
= {
1176 "stat_result", /* name */
1177 stat_result__doc__
, /* doc */
1182 PyDoc_STRVAR(statvfs_result__doc__
,
1183 "statvfs_result: Result from statvfs or fstatvfs.\n\n\
1184 This object may be accessed either as a tuple of\n\
1185 (bsize, frsize, blocks, bfree, bavail, files, ffree, favail, flag, namemax),\n\
1186 or via the attributes f_bsize, f_frsize, f_blocks, f_bfree, and so on.\n\
1188 See os.statvfs for more information.");
1190 static PyStructSequence_Field statvfs_result_fields
[] = {
1204 static PyStructSequence_Desc statvfs_result_desc
= {
1205 "statvfs_result", /* name */
1206 statvfs_result__doc__
, /* doc */
1207 statvfs_result_fields
,
1211 static int initialized
;
1212 static PyTypeObject StatResultType
;
1213 static PyTypeObject StatVFSResultType
;
1214 static newfunc structseq_new
;
1217 statresult_new(PyTypeObject
*type
, PyObject
*args
, PyObject
*kwds
)
1219 PyStructSequence
*result
;
1222 result
= (PyStructSequence
*)structseq_new(type
, args
, kwds
);
1225 /* If we have been initialized from a tuple,
1226 st_?time might be set to None. Initialize it
1227 from the int slots. */
1228 for (i
= 7; i
<= 9; i
++) {
1229 if (result
->ob_item
[i
+3] == Py_None
) {
1231 Py_INCREF(result
->ob_item
[i
]);
1232 result
->ob_item
[i
+3] = result
->ob_item
[i
];
1235 return (PyObject
*)result
;
1240 /* If true, st_?time is float. */
1241 static int _stat_float_times
= 1;
1243 PyDoc_STRVAR(stat_float_times__doc__
,
1244 "stat_float_times([newval]) -> oldval\n\n\
1245 Determine whether os.[lf]stat represents time stamps as float objects.\n\
1246 If newval is True, future calls to stat() return floats, if it is False,\n\
1247 future calls return ints. \n\
1248 If newval is omitted, return the current setting.\n");
1251 stat_float_times(PyObject
* self
, PyObject
*args
)
1254 if (!PyArg_ParseTuple(args
, "|i:stat_float_times", &newval
))
1257 /* Return old value */
1258 return PyBool_FromLong(_stat_float_times
);
1259 _stat_float_times
= newval
;
1265 fill_time(PyObject
*v
, int index
, time_t sec
, unsigned long nsec
)
1267 PyObject
*fval
,*ival
;
1268 #if SIZEOF_TIME_T > SIZEOF_LONG
1269 ival
= PyLong_FromLongLong((PY_LONG_LONG
)sec
);
1271 ival
= PyInt_FromLong((long)sec
);
1275 if (_stat_float_times
) {
1276 fval
= PyFloat_FromDouble(sec
+ 1e-9*nsec
);
1281 PyStructSequence_SET_ITEM(v
, index
, ival
);
1282 PyStructSequence_SET_ITEM(v
, index
+3, fval
);
1285 /* pack a system stat C structure into the Python stat tuple
1286 (used by posix_stat() and posix_fstat()) */
1288 _pystat_fromstructstat(STRUCT_STAT
*st
)
1290 unsigned long ansec
, mnsec
, cnsec
;
1291 PyObject
*v
= PyStructSequence_New(&StatResultType
);
1295 PyStructSequence_SET_ITEM(v
, 0, PyInt_FromLong((long)st
->st_mode
));
1296 #ifdef HAVE_LARGEFILE_SUPPORT
1297 PyStructSequence_SET_ITEM(v
, 1,
1298 PyLong_FromLongLong((PY_LONG_LONG
)st
->st_ino
));
1300 PyStructSequence_SET_ITEM(v
, 1, PyInt_FromLong((long)st
->st_ino
));
1302 #if defined(HAVE_LONG_LONG) && !defined(MS_WINDOWS)
1303 PyStructSequence_SET_ITEM(v
, 2,
1304 PyLong_FromLongLong((PY_LONG_LONG
)st
->st_dev
));
1306 PyStructSequence_SET_ITEM(v
, 2, PyInt_FromLong((long)st
->st_dev
));
1308 PyStructSequence_SET_ITEM(v
, 3, PyInt_FromLong((long)st
->st_nlink
));
1309 PyStructSequence_SET_ITEM(v
, 4, PyInt_FromLong((long)st
->st_uid
));
1310 PyStructSequence_SET_ITEM(v
, 5, PyInt_FromLong((long)st
->st_gid
));
1311 #ifdef HAVE_LARGEFILE_SUPPORT
1312 PyStructSequence_SET_ITEM(v
, 6,
1313 PyLong_FromLongLong((PY_LONG_LONG
)st
->st_size
));
1315 PyStructSequence_SET_ITEM(v
, 6, PyInt_FromLong(st
->st_size
));
1318 #if defined(HAVE_STAT_TV_NSEC)
1319 ansec
= st
->st_atim
.tv_nsec
;
1320 mnsec
= st
->st_mtim
.tv_nsec
;
1321 cnsec
= st
->st_ctim
.tv_nsec
;
1322 #elif defined(HAVE_STAT_TV_NSEC2)
1323 ansec
= st
->st_atimespec
.tv_nsec
;
1324 mnsec
= st
->st_mtimespec
.tv_nsec
;
1325 cnsec
= st
->st_ctimespec
.tv_nsec
;
1326 #elif defined(HAVE_STAT_NSEC)
1327 ansec
= st
->st_atime_nsec
;
1328 mnsec
= st
->st_mtime_nsec
;
1329 cnsec
= st
->st_ctime_nsec
;
1331 ansec
= mnsec
= cnsec
= 0;
1333 fill_time(v
, 7, st
->st_atime
, ansec
);
1334 fill_time(v
, 8, st
->st_mtime
, mnsec
);
1335 fill_time(v
, 9, st
->st_ctime
, cnsec
);
1337 #ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
1338 PyStructSequence_SET_ITEM(v
, ST_BLKSIZE_IDX
,
1339 PyInt_FromLong((long)st
->st_blksize
));
1341 #ifdef HAVE_STRUCT_STAT_ST_BLOCKS
1342 PyStructSequence_SET_ITEM(v
, ST_BLOCKS_IDX
,
1343 PyInt_FromLong((long)st
->st_blocks
));
1345 #ifdef HAVE_STRUCT_STAT_ST_RDEV
1346 PyStructSequence_SET_ITEM(v
, ST_RDEV_IDX
,
1347 PyInt_FromLong((long)st
->st_rdev
));
1349 #ifdef HAVE_STRUCT_STAT_ST_GEN
1350 PyStructSequence_SET_ITEM(v
, ST_GEN_IDX
,
1351 PyInt_FromLong((long)st
->st_gen
));
1353 #ifdef HAVE_STRUCT_STAT_ST_BIRTHTIME
1356 unsigned long bsec
,bnsec
;
1357 bsec
= (long)st
->st_birthtime
;
1358 #ifdef HAVE_STAT_TV_NSEC2
1359 bnsec
= st
->st_birthtimespec
.tv_nsec
;
1363 if (_stat_float_times
) {
1364 val
= PyFloat_FromDouble(bsec
+ 1e-9*bnsec
);
1366 val
= PyInt_FromLong((long)bsec
);
1368 PyStructSequence_SET_ITEM(v
, ST_BIRTHTIME_IDX
,
1372 #ifdef HAVE_STRUCT_STAT_ST_FLAGS
1373 PyStructSequence_SET_ITEM(v
, ST_FLAGS_IDX
,
1374 PyInt_FromLong((long)st
->st_flags
));
1377 if (PyErr_Occurred()) {
1387 /* IsUNCRoot -- test whether the supplied path is of the form \\SERVER\SHARE\,
1388 where / can be used in place of \ and the trailing slash is optional.
1389 Both SERVER and SHARE must have at least one character.
1392 #define ISSLASHA(c) ((c) == '\\' || (c) == '/')
1393 #define ISSLASHW(c) ((c) == L'\\' || (c) == L'/')
1395 #define ARRAYSIZE(a) (sizeof(a) / sizeof(a[0]))
1399 IsUNCRootA(char *path
, int pathlen
)
1401 #define ISSLASH ISSLASHA
1405 if (pathlen
< 5 || !ISSLASH(path
[0]) || !ISSLASH(path
[1]))
1406 /* minimum UNCRoot is \\x\y */
1408 for (i
= 2; i
< pathlen
; i
++)
1409 if (ISSLASH(path
[i
])) break;
1410 if (i
== 2 || i
== pathlen
)
1411 /* do not allow \\\SHARE or \\SERVER */
1414 for (i
= share
; i
< pathlen
; i
++)
1415 if (ISSLASH(path
[i
])) break;
1416 return (i
!= share
&& (i
== pathlen
|| i
== pathlen
-1));
1422 IsUNCRootW(Py_UNICODE
*path
, int pathlen
)
1424 #define ISSLASH ISSLASHW
1428 if (pathlen
< 5 || !ISSLASH(path
[0]) || !ISSLASH(path
[1]))
1429 /* minimum UNCRoot is \\x\y */
1431 for (i
= 2; i
< pathlen
; i
++)
1432 if (ISSLASH(path
[i
])) break;
1433 if (i
== 2 || i
== pathlen
)
1434 /* do not allow \\\SHARE or \\SERVER */
1437 for (i
= share
; i
< pathlen
; i
++)
1438 if (ISSLASH(path
[i
])) break;
1439 return (i
!= share
&& (i
== pathlen
|| i
== pathlen
-1));
1443 #endif /* MS_WINDOWS */
1446 posix_do_stat(PyObject
*self
, PyObject
*args
,
1449 int (*statfunc
)(const char *, STRUCT_STAT
*, ...),
1451 int (*statfunc
)(const char *, STRUCT_STAT
*),
1454 int (*wstatfunc
)(const Py_UNICODE
*, STRUCT_STAT
*))
1457 char *path
= NULL
; /* pass this to stat; do not free() it */
1458 char *pathfree
= NULL
; /* this memory must be free'd */
1463 PyUnicodeObject
*po
;
1464 if (PyArg_ParseTuple(args
, wformat
, &po
)) {
1465 Py_UNICODE
*wpath
= PyUnicode_AS_UNICODE(po
);
1467 Py_BEGIN_ALLOW_THREADS
1468 /* PyUnicode_AS_UNICODE result OK without
1469 thread lock as it is a simple dereference. */
1470 res
= wstatfunc(wpath
, &st
);
1471 Py_END_ALLOW_THREADS
1474 return win32_error_unicode("stat", wpath
);
1475 return _pystat_fromstructstat(&st
);
1477 /* Drop the argument parsing error as narrow strings
1482 if (!PyArg_ParseTuple(args
, format
,
1483 Py_FileSystemDefaultEncoding
, &path
))
1487 Py_BEGIN_ALLOW_THREADS
1488 res
= (*statfunc
)(path
, &st
);
1489 Py_END_ALLOW_THREADS
1493 result
= win32_error("stat", pathfree
);
1495 result
= posix_error_with_filename(pathfree
);
1499 result
= _pystat_fromstructstat(&st
);
1501 PyMem_Free(pathfree
);
1507 PyDoc_STRVAR(posix_access__doc__
,
1508 "access(path, mode) -> True if granted, False otherwise\n\n\
1509 Use the real uid/gid to test for access to a path. Note that most\n\
1510 operations will use the effective uid/gid, therefore this routine can\n\
1511 be used in a suid/sgid environment to test if the invoking user has the\n\
1512 specified access to the path. The mode argument can be F_OK to test\n\
1513 existence, or the inclusive-OR of R_OK, W_OK, and X_OK.");
1516 posix_access(PyObject
*self
, PyObject
*args
)
1523 PyUnicodeObject
*po
;
1524 if (PyArg_ParseTuple(args
, "Ui:access", &po
, &mode
)) {
1525 Py_BEGIN_ALLOW_THREADS
1526 /* PyUnicode_AS_UNICODE OK without thread lock as
1527 it is a simple dereference. */
1528 attr
= GetFileAttributesW(PyUnicode_AS_UNICODE(po
));
1529 Py_END_ALLOW_THREADS
1532 /* Drop the argument parsing error as narrow strings
1535 if (!PyArg_ParseTuple(args
, "eti:access",
1536 Py_FileSystemDefaultEncoding
, &path
, &mode
))
1538 Py_BEGIN_ALLOW_THREADS
1539 attr
= GetFileAttributesA(path
);
1540 Py_END_ALLOW_THREADS
1543 if (attr
== 0xFFFFFFFF)
1544 /* File does not exist, or cannot read attributes */
1545 return PyBool_FromLong(0);
1546 /* Access is possible if either write access wasn't requested, or
1547 the file isn't read-only, or if it's a directory, as there are
1548 no read-only directories on Windows. */
1549 return PyBool_FromLong(!(mode
& 2)
1550 || !(attr
& FILE_ATTRIBUTE_READONLY
)
1551 || (attr
& FILE_ATTRIBUTE_DIRECTORY
));
1552 #else /* MS_WINDOWS */
1554 if (!PyArg_ParseTuple(args
, "eti:access",
1555 Py_FileSystemDefaultEncoding
, &path
, &mode
))
1557 Py_BEGIN_ALLOW_THREADS
1558 res
= access(path
, mode
);
1559 Py_END_ALLOW_THREADS
1561 return PyBool_FromLong(res
== 0);
1562 #endif /* MS_WINDOWS */
1579 PyDoc_STRVAR(posix_ttyname__doc__
,
1580 "ttyname(fd) -> string\n\n\
1581 Return the name of the terminal device connected to 'fd'.");
1584 posix_ttyname(PyObject
*self
, PyObject
*args
)
1589 if (!PyArg_ParseTuple(args
, "i:ttyname", &id
))
1593 /* file descriptor 0 only, the default input device (stdin) */
1604 return posix_error();
1605 return PyString_FromString(ret
);
1610 PyDoc_STRVAR(posix_ctermid__doc__
,
1611 "ctermid() -> string\n\n\
1612 Return the name of the controlling terminal for this process.");
1615 posix_ctermid(PyObject
*self
, PyObject
*noargs
)
1618 char buffer
[L_ctermid
];
1620 #ifdef USE_CTERMID_R
1621 ret
= ctermid_r(buffer
);
1623 ret
= ctermid(buffer
);
1626 return posix_error();
1627 return PyString_FromString(buffer
);
1631 PyDoc_STRVAR(posix_chdir__doc__
,
1633 Change the current working directory to the specified path.");
1636 posix_chdir(PyObject
*self
, PyObject
*args
)
1639 return win32_1str(args
, "chdir", "s:chdir", win32_chdir
, "U:chdir", win32_wchdir
);
1640 #elif defined(PYOS_OS2) && defined(PYCC_GCC)
1641 return posix_1str(args
, "et:chdir", _chdir2
);
1642 #elif defined(__VMS)
1643 return posix_1str(args
, "et:chdir", (int (*)(const char *))chdir
);
1645 return posix_1str(args
, "et:chdir", chdir
);
1650 PyDoc_STRVAR(posix_fchdir__doc__
,
1651 "fchdir(fildes)\n\n\
1652 Change to the directory of the given file descriptor. fildes must be\n\
1653 opened on a directory, not a file.");
1656 posix_fchdir(PyObject
*self
, PyObject
*fdobj
)
1658 return posix_fildes(fdobj
, fchdir
);
1660 #endif /* HAVE_FCHDIR */
1663 PyDoc_STRVAR(posix_chmod__doc__
,
1664 "chmod(path, mode)\n\n\
1665 Change the access permissions of a file.");
1668 posix_chmod(PyObject
*self
, PyObject
*args
)
1675 PyUnicodeObject
*po
;
1676 if (PyArg_ParseTuple(args
, "Ui|:chmod", &po
, &i
)) {
1677 Py_BEGIN_ALLOW_THREADS
1678 attr
= GetFileAttributesW(PyUnicode_AS_UNICODE(po
));
1679 if (attr
!= 0xFFFFFFFF) {
1681 attr
&= ~FILE_ATTRIBUTE_READONLY
;
1683 attr
|= FILE_ATTRIBUTE_READONLY
;
1684 res
= SetFileAttributesW(PyUnicode_AS_UNICODE(po
), attr
);
1688 Py_END_ALLOW_THREADS
1690 return win32_error_unicode("chmod",
1691 PyUnicode_AS_UNICODE(po
));
1695 /* Drop the argument parsing error as narrow strings
1699 if (!PyArg_ParseTuple(args
, "eti:chmod", Py_FileSystemDefaultEncoding
,
1702 Py_BEGIN_ALLOW_THREADS
1703 attr
= GetFileAttributesA(path
);
1704 if (attr
!= 0xFFFFFFFF) {
1706 attr
&= ~FILE_ATTRIBUTE_READONLY
;
1708 attr
|= FILE_ATTRIBUTE_READONLY
;
1709 res
= SetFileAttributesA(path
, attr
);
1713 Py_END_ALLOW_THREADS
1715 win32_error("chmod", path
);
1722 #else /* MS_WINDOWS */
1723 if (!PyArg_ParseTuple(args
, "eti:chmod", Py_FileSystemDefaultEncoding
,
1726 Py_BEGIN_ALLOW_THREADS
1727 res
= chmod(path
, i
);
1728 Py_END_ALLOW_THREADS
1730 return posix_error_with_allocated_filename(path
);
1738 PyDoc_STRVAR(posix_fchmod__doc__
,
1739 "fchmod(fd, mode)\n\n\
1740 Change the access permissions of the file given by file\n\
1744 posix_fchmod(PyObject
*self
, PyObject
*args
)
1747 if (!PyArg_ParseTuple(args
, "ii:fchmod", &fd
, &mode
))
1749 Py_BEGIN_ALLOW_THREADS
1750 res
= fchmod(fd
, mode
);
1751 Py_END_ALLOW_THREADS
1753 return posix_error();
1756 #endif /* HAVE_FCHMOD */
1759 PyDoc_STRVAR(posix_lchmod__doc__
,
1760 "lchmod(path, mode)\n\n\
1761 Change the access permissions of a file. If path is a symlink, this\n\
1762 affects the link itself rather than the target.");
1765 posix_lchmod(PyObject
*self
, PyObject
*args
)
1770 if (!PyArg_ParseTuple(args
, "eti:lchmod", Py_FileSystemDefaultEncoding
,
1773 Py_BEGIN_ALLOW_THREADS
1774 res
= lchmod(path
, i
);
1775 Py_END_ALLOW_THREADS
1777 return posix_error_with_allocated_filename(path
);
1781 #endif /* HAVE_LCHMOD */
1785 PyDoc_STRVAR(posix_chflags__doc__
,
1786 "chflags(path, flags)\n\n\
1790 posix_chflags(PyObject
*self
, PyObject
*args
)
1793 unsigned long flags
;
1795 if (!PyArg_ParseTuple(args
, "etk:chflags",
1796 Py_FileSystemDefaultEncoding
, &path
, &flags
))
1798 Py_BEGIN_ALLOW_THREADS
1799 res
= chflags(path
, flags
);
1800 Py_END_ALLOW_THREADS
1802 return posix_error_with_allocated_filename(path
);
1807 #endif /* HAVE_CHFLAGS */
1809 #ifdef HAVE_LCHFLAGS
1810 PyDoc_STRVAR(posix_lchflags__doc__
,
1811 "lchflags(path, flags)\n\n\
1813 This function will not follow symbolic links.");
1816 posix_lchflags(PyObject
*self
, PyObject
*args
)
1819 unsigned long flags
;
1821 if (!PyArg_ParseTuple(args
, "etk:lchflags",
1822 Py_FileSystemDefaultEncoding
, &path
, &flags
))
1824 Py_BEGIN_ALLOW_THREADS
1825 res
= lchflags(path
, flags
);
1826 Py_END_ALLOW_THREADS
1828 return posix_error_with_allocated_filename(path
);
1833 #endif /* HAVE_LCHFLAGS */
1836 PyDoc_STRVAR(posix_chroot__doc__
,
1838 Change root directory to path.");
1841 posix_chroot(PyObject
*self
, PyObject
*args
)
1843 return posix_1str(args
, "et:chroot", chroot
);
1848 PyDoc_STRVAR(posix_fsync__doc__
,
1850 force write of file with filedescriptor to disk.");
1853 posix_fsync(PyObject
*self
, PyObject
*fdobj
)
1855 return posix_fildes(fdobj
, fsync
);
1857 #endif /* HAVE_FSYNC */
1859 #ifdef HAVE_FDATASYNC
1862 extern int fdatasync(int); /* On HP-UX, in libc but not in unistd.h */
1865 PyDoc_STRVAR(posix_fdatasync__doc__
,
1866 "fdatasync(fildes)\n\n\
1867 force write of file with filedescriptor to disk.\n\
1868 does not force update of metadata.");
1871 posix_fdatasync(PyObject
*self
, PyObject
*fdobj
)
1873 return posix_fildes(fdobj
, fdatasync
);
1875 #endif /* HAVE_FDATASYNC */
1879 PyDoc_STRVAR(posix_chown__doc__
,
1880 "chown(path, uid, gid)\n\n\
1881 Change the owner and group id of path to the numeric uid and gid.");
1884 posix_chown(PyObject
*self
, PyObject
*args
)
1889 if (!PyArg_ParseTuple(args
, "etll:chown",
1890 Py_FileSystemDefaultEncoding
, &path
,
1893 Py_BEGIN_ALLOW_THREADS
1894 res
= chown(path
, (uid_t
) uid
, (gid_t
) gid
);
1895 Py_END_ALLOW_THREADS
1897 return posix_error_with_allocated_filename(path
);
1902 #endif /* HAVE_CHOWN */
1905 PyDoc_STRVAR(posix_fchown__doc__
,
1906 "fchown(fd, uid, gid)\n\n\
1907 Change the owner and group id of the file given by file descriptor\n\
1908 fd to the numeric uid and gid.");
1911 posix_fchown(PyObject
*self
, PyObject
*args
)
1916 if (!PyArg_ParseTuple(args
, "ill:chown", &fd
, &uid
, &gid
))
1918 Py_BEGIN_ALLOW_THREADS
1919 res
= fchown(fd
, (uid_t
) uid
, (gid_t
) gid
);
1920 Py_END_ALLOW_THREADS
1922 return posix_error();
1925 #endif /* HAVE_FCHOWN */
1928 PyDoc_STRVAR(posix_lchown__doc__
,
1929 "lchown(path, uid, gid)\n\n\
1930 Change the owner and group id of path to the numeric uid and gid.\n\
1931 This function will not follow symbolic links.");
1934 posix_lchown(PyObject
*self
, PyObject
*args
)
1939 if (!PyArg_ParseTuple(args
, "etll:lchown",
1940 Py_FileSystemDefaultEncoding
, &path
,
1943 Py_BEGIN_ALLOW_THREADS
1944 res
= lchown(path
, (uid_t
) uid
, (gid_t
) gid
);
1945 Py_END_ALLOW_THREADS
1947 return posix_error_with_allocated_filename(path
);
1952 #endif /* HAVE_LCHOWN */
1956 PyDoc_STRVAR(posix_getcwd__doc__
,
1957 "getcwd() -> path\n\n\
1958 Return a string representing the current working directory.");
1961 posix_getcwd(PyObject
*self
, PyObject
*noargs
)
1963 int bufsize_incr
= 1024;
1965 char *tmpbuf
= NULL
;
1967 PyObject
*dynamic_return
;
1969 Py_BEGIN_ALLOW_THREADS
1971 bufsize
= bufsize
+ bufsize_incr
;
1972 tmpbuf
= malloc(bufsize
);
1973 if (tmpbuf
== NULL
) {
1976 #if defined(PYOS_OS2) && defined(PYCC_GCC)
1977 res
= _getcwd2(tmpbuf
, bufsize
);
1979 res
= getcwd(tmpbuf
, bufsize
);
1985 } while ((res
== NULL
) && (errno
== ERANGE
));
1986 Py_END_ALLOW_THREADS
1989 return posix_error();
1991 dynamic_return
= PyString_FromString(tmpbuf
);
1994 return dynamic_return
;
1997 #ifdef Py_USING_UNICODE
1998 PyDoc_STRVAR(posix_getcwdu__doc__
,
1999 "getcwdu() -> path\n\n\
2000 Return a unicode string representing the current working directory.");
2003 posix_getcwdu(PyObject
*self
, PyObject
*noargs
)
2011 wchar_t *wbuf2
= wbuf
;
2013 Py_BEGIN_ALLOW_THREADS
2014 len
= GetCurrentDirectoryW(sizeof wbuf
/ sizeof wbuf
[0], wbuf
);
2015 /* If the buffer is large enough, len does not include the
2016 terminating \0. If the buffer is too small, len includes
2017 the space needed for the terminator. */
2018 if (len
>= sizeof wbuf
/ sizeof wbuf
[0]) {
2019 wbuf2
= malloc(len
* sizeof(wchar_t));
2021 len
= GetCurrentDirectoryW(len
, wbuf2
);
2023 Py_END_ALLOW_THREADS
2029 if (wbuf2
!= wbuf
) free(wbuf2
);
2030 return win32_error("getcwdu", NULL
);
2032 resobj
= PyUnicode_FromWideChar(wbuf2
, len
);
2033 if (wbuf2
!= wbuf
) free(wbuf2
);
2035 #endif /* MS_WINDOWS */
2037 Py_BEGIN_ALLOW_THREADS
2038 #if defined(PYOS_OS2) && defined(PYCC_GCC)
2039 res
= _getcwd2(buf
, sizeof buf
);
2041 res
= getcwd(buf
, sizeof buf
);
2043 Py_END_ALLOW_THREADS
2045 return posix_error();
2046 return PyUnicode_Decode(buf
, strlen(buf
), Py_FileSystemDefaultEncoding
,"strict");
2048 #endif /* Py_USING_UNICODE */
2049 #endif /* HAVE_GETCWD */
2053 PyDoc_STRVAR(posix_link__doc__
,
2054 "link(src, dst)\n\n\
2055 Create a hard link to a file.");
2058 posix_link(PyObject
*self
, PyObject
*args
)
2060 return posix_2str(args
, "etet:link", link
);
2062 #endif /* HAVE_LINK */
2065 PyDoc_STRVAR(posix_listdir__doc__
,
2066 "listdir(path) -> list_of_strings\n\n\
2067 Return a list containing the names of the entries in the directory.\n\
2069 path: path of directory to list\n\
2071 The list is in arbitrary order. It does not include the special\n\
2072 entries '.' and '..' even if they are present in the directory.");
2075 posix_listdir(PyObject
*self
, PyObject
*args
)
2077 /* XXX Should redo this putting the (now four) versions of opendir
2078 in separate files instead of having them all here... */
2079 #if defined(MS_WINDOWS) && !defined(HAVE_OPENDIR)
2084 WIN32_FIND_DATA FileData
;
2085 char namebuf
[MAX_PATH
+5]; /* Overallocate for \\*.*\0 */
2086 char *bufptr
= namebuf
;
2087 Py_ssize_t len
= sizeof(namebuf
)-5; /* only claim to have space for MAX_PATH */
2090 if (PyArg_ParseTuple(args
, "U:listdir", &po
)) {
2091 WIN32_FIND_DATAW wFileData
;
2092 Py_UNICODE
*wnamebuf
;
2093 /* Overallocate for \\*.*\0 */
2094 len
= PyUnicode_GET_SIZE(po
);
2095 wnamebuf
= malloc((len
+ 5) * sizeof(wchar_t));
2100 wcscpy(wnamebuf
, PyUnicode_AS_UNICODE(po
));
2102 Py_UNICODE wch
= wnamebuf
[len
-1];
2103 if (wch
!= L
'/' && wch
!= L
'\\' && wch
!= L
':')
2104 wnamebuf
[len
++] = L
'\\';
2105 wcscpy(wnamebuf
+ len
, L
"*.*");
2107 if ((d
= PyList_New(0)) == NULL
) {
2111 hFindFile
= FindFirstFileW(wnamebuf
, &wFileData
);
2112 if (hFindFile
== INVALID_HANDLE_VALUE
) {
2113 int error
= GetLastError();
2114 if (error
== ERROR_FILE_NOT_FOUND
) {
2119 win32_error_unicode("FindFirstFileW", wnamebuf
);
2124 /* Skip over . and .. */
2125 if (wcscmp(wFileData
.cFileName
, L
".") != 0 &&
2126 wcscmp(wFileData
.cFileName
, L
"..") != 0) {
2127 v
= PyUnicode_FromUnicode(wFileData
.cFileName
, wcslen(wFileData
.cFileName
));
2133 if (PyList_Append(d
, v
) != 0) {
2141 Py_BEGIN_ALLOW_THREADS
2142 result
= FindNextFileW(hFindFile
, &wFileData
);
2143 Py_END_ALLOW_THREADS
2144 /* FindNextFile sets error to ERROR_NO_MORE_FILES if
2145 it got to the end of the directory. */
2146 if (!result
&& GetLastError() != ERROR_NO_MORE_FILES
) {
2148 win32_error_unicode("FindNextFileW", wnamebuf
);
2149 FindClose(hFindFile
);
2153 } while (result
== TRUE
);
2155 if (FindClose(hFindFile
) == FALSE
) {
2157 win32_error_unicode("FindClose", wnamebuf
);
2164 /* Drop the argument parsing error as narrow strings
2168 if (!PyArg_ParseTuple(args
, "et#:listdir",
2169 Py_FileSystemDefaultEncoding
, &bufptr
, &len
))
2172 char ch
= namebuf
[len
-1];
2173 if (ch
!= SEP
&& ch
!= ALTSEP
&& ch
!= ':')
2174 namebuf
[len
++] = '/';
2175 strcpy(namebuf
+ len
, "*.*");
2178 if ((d
= PyList_New(0)) == NULL
)
2181 hFindFile
= FindFirstFile(namebuf
, &FileData
);
2182 if (hFindFile
== INVALID_HANDLE_VALUE
) {
2183 int error
= GetLastError();
2184 if (error
== ERROR_FILE_NOT_FOUND
)
2187 return win32_error("FindFirstFile", namebuf
);
2190 /* Skip over . and .. */
2191 if (strcmp(FileData
.cFileName
, ".") != 0 &&
2192 strcmp(FileData
.cFileName
, "..") != 0) {
2193 v
= PyString_FromString(FileData
.cFileName
);
2199 if (PyList_Append(d
, v
) != 0) {
2207 Py_BEGIN_ALLOW_THREADS
2208 result
= FindNextFile(hFindFile
, &FileData
);
2209 Py_END_ALLOW_THREADS
2210 /* FindNextFile sets error to ERROR_NO_MORE_FILES if
2211 it got to the end of the directory. */
2212 if (!result
&& GetLastError() != ERROR_NO_MORE_FILES
) {
2214 win32_error("FindNextFile", namebuf
);
2215 FindClose(hFindFile
);
2218 } while (result
== TRUE
);
2220 if (FindClose(hFindFile
) == FALSE
) {
2222 return win32_error("FindClose", namebuf
);
2227 #elif defined(PYOS_OS2)
2230 #define MAX_PATH CCHMAXPATH
2235 char namebuf
[MAX_PATH
+5];
2241 if (!PyArg_ParseTuple(args
, "t#:listdir", &name
, &len
))
2243 if (len
>= MAX_PATH
) {
2244 PyErr_SetString(PyExc_ValueError
, "path too long");
2247 strcpy(namebuf
, name
);
2248 for (pt
= namebuf
; *pt
; pt
++)
2251 if (namebuf
[len
-1] != SEP
)
2252 namebuf
[len
++] = SEP
;
2253 strcpy(namebuf
+ len
, "*.*");
2255 if ((d
= PyList_New(0)) == NULL
)
2258 rc
= DosFindFirst(namebuf
, /* Wildcard Pattern to Match */
2259 &hdir
, /* Handle to Use While Search Directory */
2260 FILE_READONLY
| FILE_HIDDEN
| FILE_SYSTEM
| FILE_DIRECTORY
,
2261 &ep
, sizeof(ep
), /* Structure to Receive Directory Entry */
2262 &srchcnt
, /* Max and Actual Count of Entries Per Iteration */
2263 FIL_STANDARD
); /* Format of Entry (EAs or Not) */
2265 if (rc
!= NO_ERROR
) {
2267 return posix_error_with_filename(name
);
2270 if (srchcnt
> 0) { /* If Directory is NOT Totally Empty, */
2272 if (ep
.achName
[0] == '.'
2273 && (ep
.achName
[1] == '\0' || (ep
.achName
[1] == '.' && ep
.achName
[2] == '\0')))
2274 continue; /* Skip Over "." and ".." Names */
2276 strcpy(namebuf
, ep
.achName
);
2278 /* Leave Case of Name Alone -- In Native Form */
2279 /* (Removed Forced Lowercasing Code) */
2281 v
= PyString_FromString(namebuf
);
2287 if (PyList_Append(d
, v
) != 0) {
2294 } while (DosFindNext(hdir
, &ep
, sizeof(ep
), &srchcnt
) == NO_ERROR
&& srchcnt
> 0);
2304 int arg_is_unicode
= 1;
2307 if (!PyArg_ParseTuple(args
, "U:listdir", &v
)) {
2311 if (!PyArg_ParseTuple(args
, "et:listdir", Py_FileSystemDefaultEncoding
, &name
))
2313 if ((dirp
= opendir(name
)) == NULL
) {
2314 return posix_error_with_allocated_filename(name
);
2316 if ((d
= PyList_New(0)) == NULL
) {
2323 Py_BEGIN_ALLOW_THREADS
2325 Py_END_ALLOW_THREADS
2332 return posix_error_with_allocated_filename(name
);
2335 if (ep
->d_name
[0] == '.' &&
2337 (ep
->d_name
[1] == '.' && NAMLEN(ep
) == 2)))
2339 v
= PyString_FromStringAndSize(ep
->d_name
, NAMLEN(ep
));
2345 #ifdef Py_USING_UNICODE
2346 if (arg_is_unicode
) {
2349 w
= PyUnicode_FromEncodedObject(v
,
2350 Py_FileSystemDefaultEncoding
,
2357 /* fall back to the original byte string, as
2358 discussed in patch #683592 */
2363 if (PyList_Append(d
, v
) != 0) {
2376 #endif /* which OS */
2377 } /* end of posix_listdir */
2380 /* A helper function for abspath on win32 */
2382 posix__getfullpathname(PyObject
*self
, PyObject
*args
)
2384 /* assume encoded strings won't more than double no of chars */
2385 char inbuf
[MAX_PATH
*2];
2386 char *inbufp
= inbuf
;
2387 Py_ssize_t insize
= sizeof(inbuf
);
2388 char outbuf
[MAX_PATH
*2];
2391 PyUnicodeObject
*po
;
2392 if (PyArg_ParseTuple(args
, "U|:_getfullpathname", &po
)) {
2393 Py_UNICODE
*wpath
= PyUnicode_AS_UNICODE(po
);
2394 Py_UNICODE woutbuf
[MAX_PATH
*2], *woutbufp
= woutbuf
;
2398 result
= GetFullPathNameW(wpath
,
2399 sizeof(woutbuf
)/sizeof(woutbuf
[0]),
2401 if (result
> sizeof(woutbuf
)/sizeof(woutbuf
[0])) {
2402 woutbufp
= malloc(result
* sizeof(Py_UNICODE
));
2404 return PyErr_NoMemory();
2405 result
= GetFullPathNameW(wpath
, result
, woutbufp
, &wtemp
);
2408 v
= PyUnicode_FromUnicode(woutbufp
, wcslen(woutbufp
));
2410 v
= win32_error_unicode("GetFullPathNameW", wpath
);
2411 if (woutbufp
!= woutbuf
)
2415 /* Drop the argument parsing error as narrow strings
2419 if (!PyArg_ParseTuple (args
, "et#:_getfullpathname",
2420 Py_FileSystemDefaultEncoding
, &inbufp
,
2423 if (!GetFullPathName(inbuf
, sizeof(outbuf
)/sizeof(outbuf
[0]),
2425 return win32_error("GetFullPathName", inbuf
);
2426 if (PyUnicode_Check(PyTuple_GetItem(args
, 0))) {
2427 return PyUnicode_Decode(outbuf
, strlen(outbuf
),
2428 Py_FileSystemDefaultEncoding
, NULL
);
2430 return PyString_FromString(outbuf
);
2431 } /* end of posix__getfullpathname */
2432 #endif /* MS_WINDOWS */
2434 PyDoc_STRVAR(posix_mkdir__doc__
,
2435 "mkdir(path [, mode=0777])\n\n\
2436 Create a directory.");
2439 posix_mkdir(PyObject
*self
, PyObject
*args
)
2446 PyUnicodeObject
*po
;
2447 if (PyArg_ParseTuple(args
, "U|i:mkdir", &po
, &mode
)) {
2448 Py_BEGIN_ALLOW_THREADS
2449 /* PyUnicode_AS_UNICODE OK without thread lock as
2450 it is a simple dereference. */
2451 res
= CreateDirectoryW(PyUnicode_AS_UNICODE(po
), NULL
);
2452 Py_END_ALLOW_THREADS
2454 return win32_error_unicode("mkdir", PyUnicode_AS_UNICODE(po
));
2458 /* Drop the argument parsing error as narrow strings
2461 if (!PyArg_ParseTuple(args
, "et|i:mkdir",
2462 Py_FileSystemDefaultEncoding
, &path
, &mode
))
2464 Py_BEGIN_ALLOW_THREADS
2465 /* PyUnicode_AS_UNICODE OK without thread lock as
2466 it is a simple dereference. */
2467 res
= CreateDirectoryA(path
, NULL
);
2468 Py_END_ALLOW_THREADS
2470 win32_error("mkdir", path
);
2477 #else /* MS_WINDOWS */
2479 if (!PyArg_ParseTuple(args
, "et|i:mkdir",
2480 Py_FileSystemDefaultEncoding
, &path
, &mode
))
2482 Py_BEGIN_ALLOW_THREADS
2483 #if ( defined(__WATCOMC__) || defined(PYCC_VACPP) ) && !defined(__QNX__)
2486 res
= mkdir(path
, mode
);
2488 Py_END_ALLOW_THREADS
2490 return posix_error_with_allocated_filename(path
);
2494 #endif /* MS_WINDOWS */
2498 /* sys/resource.h is needed for at least: wait3(), wait4(), broken nice. */
2499 #if defined(HAVE_SYS_RESOURCE_H)
2500 #include <sys/resource.h>
2505 PyDoc_STRVAR(posix_nice__doc__
,
2506 "nice(inc) -> new_priority\n\n\
2507 Decrease the priority of process by inc and return the new priority.");
2510 posix_nice(PyObject
*self
, PyObject
*args
)
2512 int increment
, value
;
2514 if (!PyArg_ParseTuple(args
, "i:nice", &increment
))
2517 /* There are two flavours of 'nice': one that returns the new
2518 priority (as required by almost all standards out there) and the
2519 Linux/FreeBSD/BSDI one, which returns '0' on success and advices
2520 the use of getpriority() to get the new priority.
2522 If we are of the nice family that returns the new priority, we
2523 need to clear errno before the call, and check if errno is filled
2524 before calling posix_error() on a returnvalue of -1, because the
2525 -1 may be the actual new priority! */
2528 value
= nice(increment
);
2529 #if defined(HAVE_BROKEN_NICE) && defined(HAVE_GETPRIORITY)
2531 value
= getpriority(PRIO_PROCESS
, 0);
2533 if (value
== -1 && errno
!= 0)
2534 /* either nice() or getpriority() returned an error */
2535 return posix_error();
2536 return PyInt_FromLong((long) value
);
2538 #endif /* HAVE_NICE */
2540 PyDoc_STRVAR(posix_rename__doc__
,
2541 "rename(old, new)\n\n\
2542 Rename a file or directory.");
2545 posix_rename(PyObject
*self
, PyObject
*args
)
2551 if (!PyArg_ParseTuple(args
, "OO:rename", &o1
, &o2
))
2553 if (!convert_to_unicode(&o1
))
2555 if (!convert_to_unicode(&o2
)) {
2559 Py_BEGIN_ALLOW_THREADS
2560 result
= MoveFileW(PyUnicode_AsUnicode(o1
),
2561 PyUnicode_AsUnicode(o2
));
2562 Py_END_ALLOW_THREADS
2566 return win32_error("rename", NULL
);
2571 if (!PyArg_ParseTuple(args
, "ss:rename", &p1
, &p2
))
2573 Py_BEGIN_ALLOW_THREADS
2574 result
= MoveFileA(p1
, p2
);
2575 Py_END_ALLOW_THREADS
2577 return win32_error("rename", NULL
);
2581 return posix_2str(args
, "etet:rename", rename
);
2586 PyDoc_STRVAR(posix_rmdir__doc__
,
2588 Remove a directory.");
2591 posix_rmdir(PyObject
*self
, PyObject
*args
)
2594 return win32_1str(args
, "rmdir", "s:rmdir", RemoveDirectoryA
, "U:rmdir", RemoveDirectoryW
);
2596 return posix_1str(args
, "et:rmdir", rmdir
);
2601 PyDoc_STRVAR(posix_stat__doc__
,
2602 "stat(path) -> stat result\n\n\
2603 Perform a stat system call on the given path.");
2606 posix_stat(PyObject
*self
, PyObject
*args
)
2609 return posix_do_stat(self
, args
, "et:stat", STAT
, "U:stat", win32_wstat
);
2611 return posix_do_stat(self
, args
, "et:stat", STAT
, NULL
, NULL
);
2617 PyDoc_STRVAR(posix_system__doc__
,
2618 "system(command) -> exit_status\n\n\
2619 Execute the command (a string) in a subshell.");
2622 posix_system(PyObject
*self
, PyObject
*args
)
2626 if (!PyArg_ParseTuple(args
, "s:system", &command
))
2628 Py_BEGIN_ALLOW_THREADS
2629 sts
= system(command
);
2630 Py_END_ALLOW_THREADS
2631 return PyInt_FromLong(sts
);
2636 PyDoc_STRVAR(posix_umask__doc__
,
2637 "umask(new_mask) -> old_mask\n\n\
2638 Set the current numeric umask and return the previous umask.");
2641 posix_umask(PyObject
*self
, PyObject
*args
)
2644 if (!PyArg_ParseTuple(args
, "i:umask", &i
))
2648 return posix_error();
2649 return PyInt_FromLong((long)i
);
2653 PyDoc_STRVAR(posix_unlink__doc__
,
2655 Remove a file (same as remove(path)).");
2657 PyDoc_STRVAR(posix_remove__doc__
,
2659 Remove a file (same as unlink(path)).");
2662 posix_unlink(PyObject
*self
, PyObject
*args
)
2665 return win32_1str(args
, "remove", "s:remove", DeleteFileA
, "U:remove", DeleteFileW
);
2667 return posix_1str(args
, "et:remove", unlink
);
2673 PyDoc_STRVAR(posix_uname__doc__
,
2674 "uname() -> (sysname, nodename, release, version, machine)\n\n\
2675 Return a tuple identifying the current operating system.");
2678 posix_uname(PyObject
*self
, PyObject
*noargs
)
2683 Py_BEGIN_ALLOW_THREADS
2685 Py_END_ALLOW_THREADS
2687 return posix_error();
2688 return Py_BuildValue("(sssss)",
2695 #endif /* HAVE_UNAME */
2698 extract_time(PyObject
*t
, long* sec
, long* usec
)
2701 if (PyFloat_Check(t
)) {
2702 double tval
= PyFloat_AsDouble(t
);
2703 PyObject
*intobj
= Py_TYPE(t
)->tp_as_number
->nb_int(t
);
2706 intval
= PyInt_AsLong(intobj
);
2708 if (intval
== -1 && PyErr_Occurred())
2711 *usec
= (long)((tval
- intval
) * 1e6
); /* can't exceed 1000000 */
2713 /* If rounding gave us a negative number,
2718 intval
= PyInt_AsLong(t
);
2719 if (intval
== -1 && PyErr_Occurred())
2726 PyDoc_STRVAR(posix_utime__doc__
,
2727 "utime(path, (atime, mtime))\n\
2728 utime(path, None)\n\n\
2729 Set the access and modified time of the file to the given values. If the\n\
2730 second form is used, set the access and modified times to the current time.");
2733 posix_utime(PyObject
*self
, PyObject
*args
)
2737 PyUnicodeObject
*obwpath
;
2738 wchar_t *wpath
= NULL
;
2741 long atimesec
, mtimesec
, ausec
, musec
;
2742 FILETIME atime
, mtime
;
2743 PyObject
*result
= NULL
;
2745 if (PyArg_ParseTuple(args
, "UO|:utime", &obwpath
, &arg
)) {
2746 wpath
= PyUnicode_AS_UNICODE(obwpath
);
2747 Py_BEGIN_ALLOW_THREADS
2748 hFile
= CreateFileW(wpath
, FILE_WRITE_ATTRIBUTES
, 0,
2749 NULL
, OPEN_EXISTING
,
2750 FILE_FLAG_BACKUP_SEMANTICS
, NULL
);
2751 Py_END_ALLOW_THREADS
2752 if (hFile
== INVALID_HANDLE_VALUE
)
2753 return win32_error_unicode("utime", wpath
);
2755 /* Drop the argument parsing error as narrow strings
2760 if (!PyArg_ParseTuple(args
, "etO:utime",
2761 Py_FileSystemDefaultEncoding
, &apath
, &arg
))
2763 Py_BEGIN_ALLOW_THREADS
2764 hFile
= CreateFileA(apath
, FILE_WRITE_ATTRIBUTES
, 0,
2765 NULL
, OPEN_EXISTING
,
2766 FILE_FLAG_BACKUP_SEMANTICS
, NULL
);
2767 Py_END_ALLOW_THREADS
2768 if (hFile
== INVALID_HANDLE_VALUE
) {
2769 win32_error("utime", apath
);
2776 if (arg
== Py_None
) {
2778 GetSystemTime(&now
);
2779 if (!SystemTimeToFileTime(&now
, &mtime
) ||
2780 !SystemTimeToFileTime(&now
, &atime
)) {
2781 win32_error("utime", NULL
);
2785 else if (!PyTuple_Check(arg
) || PyTuple_Size(arg
) != 2) {
2786 PyErr_SetString(PyExc_TypeError
,
2787 "utime() arg 2 must be a tuple (atime, mtime)");
2791 if (extract_time(PyTuple_GET_ITEM(arg
, 0),
2792 &atimesec
, &ausec
) == -1)
2794 time_t_to_FILE_TIME(atimesec
, 1000*ausec
, &atime
);
2795 if (extract_time(PyTuple_GET_ITEM(arg
, 1),
2796 &mtimesec
, &musec
) == -1)
2798 time_t_to_FILE_TIME(mtimesec
, 1000*musec
, &mtime
);
2800 if (!SetFileTime(hFile
, NULL
, &atime
, &mtime
)) {
2801 /* Avoid putting the file name into the error here,
2802 as that may confuse the user into believing that
2803 something is wrong with the file, when it also
2804 could be the time stamp that gives a problem. */
2805 win32_error("utime", NULL
);
2812 #else /* MS_WINDOWS */
2815 long atime
, mtime
, ausec
, musec
;
2819 #if defined(HAVE_UTIMES)
2820 struct timeval buf
[2];
2821 #define ATIME buf[0].tv_sec
2822 #define MTIME buf[1].tv_sec
2823 #elif defined(HAVE_UTIME_H)
2824 /* XXX should define struct utimbuf instead, above */
2826 #define ATIME buf.actime
2827 #define MTIME buf.modtime
2828 #define UTIME_ARG &buf
2829 #else /* HAVE_UTIMES */
2831 #define ATIME buf[0]
2832 #define MTIME buf[1]
2833 #define UTIME_ARG buf
2834 #endif /* HAVE_UTIMES */
2837 if (!PyArg_ParseTuple(args
, "etO:utime",
2838 Py_FileSystemDefaultEncoding
, &path
, &arg
))
2840 if (arg
== Py_None
) {
2841 /* optional time values not given */
2842 Py_BEGIN_ALLOW_THREADS
2843 res
= utime(path
, NULL
);
2844 Py_END_ALLOW_THREADS
2846 else if (!PyTuple_Check(arg
) || PyTuple_Size(arg
) != 2) {
2847 PyErr_SetString(PyExc_TypeError
,
2848 "utime() arg 2 must be a tuple (atime, mtime)");
2853 if (extract_time(PyTuple_GET_ITEM(arg
, 0),
2854 &atime
, &ausec
) == -1) {
2858 if (extract_time(PyTuple_GET_ITEM(arg
, 1),
2859 &mtime
, &musec
) == -1) {
2866 buf
[0].tv_usec
= ausec
;
2867 buf
[1].tv_usec
= musec
;
2868 Py_BEGIN_ALLOW_THREADS
2869 res
= utimes(path
, buf
);
2870 Py_END_ALLOW_THREADS
2872 Py_BEGIN_ALLOW_THREADS
2873 res
= utime(path
, UTIME_ARG
);
2874 Py_END_ALLOW_THREADS
2875 #endif /* HAVE_UTIMES */
2878 return posix_error_with_allocated_filename(path
);
2886 #endif /* MS_WINDOWS */
2890 /* Process operations */
2892 PyDoc_STRVAR(posix__exit__doc__
,
2894 Exit to the system with specified status, without normal exit processing.");
2897 posix__exit(PyObject
*self
, PyObject
*args
)
2900 if (!PyArg_ParseTuple(args
, "i:_exit", &sts
))
2903 return NULL
; /* Make gcc -Wall happy */
2906 #if defined(HAVE_EXECV) || defined(HAVE_SPAWNV)
2908 free_string_array(char **array
, Py_ssize_t count
)
2911 for (i
= 0; i
< count
; i
++)
2912 PyMem_Free(array
[i
]);
2919 PyDoc_STRVAR(posix_execv__doc__
,
2920 "execv(path, args)\n\n\
2921 Execute an executable path with arguments, replacing current process.\n\
2923 path: path of executable file\n\
2924 args: tuple or list of strings");
2927 posix_execv(PyObject
*self
, PyObject
*args
)
2933 PyObject
*(*getitem
)(PyObject
*, Py_ssize_t
);
2935 /* execv has two arguments: (path, argv), where
2936 argv is a list or tuple of strings. */
2938 if (!PyArg_ParseTuple(args
, "etO:execv",
2939 Py_FileSystemDefaultEncoding
,
2942 if (PyList_Check(argv
)) {
2943 argc
= PyList_Size(argv
);
2944 getitem
= PyList_GetItem
;
2946 else if (PyTuple_Check(argv
)) {
2947 argc
= PyTuple_Size(argv
);
2948 getitem
= PyTuple_GetItem
;
2951 PyErr_SetString(PyExc_TypeError
, "execv() arg 2 must be a tuple or list");
2956 PyErr_SetString(PyExc_ValueError
, "execv() arg 2 must not be empty");
2961 argvlist
= PyMem_NEW(char *, argc
+1);
2962 if (argvlist
== NULL
) {
2964 return PyErr_NoMemory();
2966 for (i
= 0; i
< argc
; i
++) {
2967 if (!PyArg_Parse((*getitem
)(argv
, i
), "et",
2968 Py_FileSystemDefaultEncoding
,
2970 free_string_array(argvlist
, i
);
2971 PyErr_SetString(PyExc_TypeError
,
2972 "execv() arg 2 must contain only strings");
2978 argvlist
[argc
] = NULL
;
2980 execv(path
, argvlist
);
2982 /* If we get here it's definitely an error */
2984 free_string_array(argvlist
, argc
);
2986 return posix_error();
2990 PyDoc_STRVAR(posix_execve__doc__
,
2991 "execve(path, args, env)\n\n\
2992 Execute a path with arguments and environment, replacing current process.\n\
2994 path: path of executable file\n\
2995 args: tuple or list of arguments\n\
2996 env: dictionary of strings mapping to strings");
2999 posix_execve(PyObject
*self
, PyObject
*args
)
3002 PyObject
*argv
, *env
;
3005 PyObject
*key
, *val
, *keys
=NULL
, *vals
=NULL
;
3006 Py_ssize_t i
, pos
, argc
, envc
;
3007 PyObject
*(*getitem
)(PyObject
*, Py_ssize_t
);
3008 Py_ssize_t lastarg
= 0;
3010 /* execve has three arguments: (path, argv, env), where
3011 argv is a list or tuple of strings and env is a dictionary
3012 like posix.environ. */
3014 if (!PyArg_ParseTuple(args
, "etOO:execve",
3015 Py_FileSystemDefaultEncoding
,
3016 &path
, &argv
, &env
))
3018 if (PyList_Check(argv
)) {
3019 argc
= PyList_Size(argv
);
3020 getitem
= PyList_GetItem
;
3022 else if (PyTuple_Check(argv
)) {
3023 argc
= PyTuple_Size(argv
);
3024 getitem
= PyTuple_GetItem
;
3027 PyErr_SetString(PyExc_TypeError
,
3028 "execve() arg 2 must be a tuple or list");
3031 if (!PyMapping_Check(env
)) {
3032 PyErr_SetString(PyExc_TypeError
,
3033 "execve() arg 3 must be a mapping object");
3037 argvlist
= PyMem_NEW(char *, argc
+1);
3038 if (argvlist
== NULL
) {
3042 for (i
= 0; i
< argc
; i
++) {
3043 if (!PyArg_Parse((*getitem
)(argv
, i
),
3044 "et;execve() arg 2 must contain only strings",
3045 Py_FileSystemDefaultEncoding
,
3053 argvlist
[argc
] = NULL
;
3055 i
= PyMapping_Size(env
);
3058 envlist
= PyMem_NEW(char *, i
+ 1);
3059 if (envlist
== NULL
) {
3064 keys
= PyMapping_Keys(env
);
3065 vals
= PyMapping_Values(env
);
3068 if (!PyList_Check(keys
) || !PyList_Check(vals
)) {
3069 PyErr_SetString(PyExc_TypeError
,
3070 "execve(): env.keys() or env.values() is not a list");
3074 for (pos
= 0; pos
< i
; pos
++) {
3078 key
= PyList_GetItem(keys
, pos
);
3079 val
= PyList_GetItem(vals
, pos
);
3085 "s;execve() arg 3 contains a non-string key",
3089 "s;execve() arg 3 contains a non-string value",
3095 #if defined(PYOS_OS2)
3096 /* Omit Pseudo-Env Vars that Would Confuse Programs if Passed On */
3097 if (stricmp(k
, "BEGINLIBPATH") != 0 && stricmp(k
, "ENDLIBPATH") != 0) {
3099 len
= PyString_Size(key
) + PyString_Size(val
) + 2;
3100 p
= PyMem_NEW(char, len
);
3105 PyOS_snprintf(p
, len
, "%s=%s", k
, v
);
3106 envlist
[envc
++] = p
;
3107 #if defined(PYOS_OS2)
3113 execve(path
, argvlist
, envlist
);
3115 /* If we get here it's definitely an error */
3117 (void) posix_error();
3121 PyMem_DEL(envlist
[envc
]);
3124 free_string_array(argvlist
, lastarg
);
3131 #endif /* HAVE_EXECV */
3135 PyDoc_STRVAR(posix_spawnv__doc__
,
3136 "spawnv(mode, path, args)\n\n\
3137 Execute the program 'path' in a new process.\n\
3139 mode: mode of process creation\n\
3140 path: path of executable file\n\
3141 args: tuple or list of strings");
3144 posix_spawnv(PyObject
*self
, PyObject
*args
)
3151 Py_intptr_t spawnval
;
3152 PyObject
*(*getitem
)(PyObject
*, Py_ssize_t
);
3154 /* spawnv has three arguments: (mode, path, argv), where
3155 argv is a list or tuple of strings. */
3157 if (!PyArg_ParseTuple(args
, "ietO:spawnv", &mode
,
3158 Py_FileSystemDefaultEncoding
,
3161 if (PyList_Check(argv
)) {
3162 argc
= PyList_Size(argv
);
3163 getitem
= PyList_GetItem
;
3165 else if (PyTuple_Check(argv
)) {
3166 argc
= PyTuple_Size(argv
);
3167 getitem
= PyTuple_GetItem
;
3170 PyErr_SetString(PyExc_TypeError
,
3171 "spawnv() arg 2 must be a tuple or list");
3176 argvlist
= PyMem_NEW(char *, argc
+1);
3177 if (argvlist
== NULL
) {
3179 return PyErr_NoMemory();
3181 for (i
= 0; i
< argc
; i
++) {
3182 if (!PyArg_Parse((*getitem
)(argv
, i
), "et",
3183 Py_FileSystemDefaultEncoding
,
3185 free_string_array(argvlist
, i
);
3188 "spawnv() arg 2 must contain only strings");
3193 argvlist
[argc
] = NULL
;
3195 #if defined(PYOS_OS2) && defined(PYCC_GCC)
3196 Py_BEGIN_ALLOW_THREADS
3197 spawnval
= spawnv(mode
, path
, argvlist
);
3198 Py_END_ALLOW_THREADS
3200 if (mode
== _OLD_P_OVERLAY
)
3203 Py_BEGIN_ALLOW_THREADS
3204 spawnval
= _spawnv(mode
, path
, argvlist
);
3205 Py_END_ALLOW_THREADS
3208 free_string_array(argvlist
, argc
);
3212 return posix_error();
3214 #if SIZEOF_LONG == SIZEOF_VOID_P
3215 return Py_BuildValue("l", (long) spawnval
);
3217 return Py_BuildValue("L", (PY_LONG_LONG
) spawnval
);
3222 PyDoc_STRVAR(posix_spawnve__doc__
,
3223 "spawnve(mode, path, args, env)\n\n\
3224 Execute the program 'path' in a new process.\n\
3226 mode: mode of process creation\n\
3227 path: path of executable file\n\
3228 args: tuple or list of arguments\n\
3229 env: dictionary of strings mapping to strings");
3232 posix_spawnve(PyObject
*self
, PyObject
*args
)
3235 PyObject
*argv
, *env
;
3238 PyObject
*key
, *val
, *keys
=NULL
, *vals
=NULL
, *res
=NULL
;
3239 int mode
, pos
, envc
;
3241 Py_intptr_t spawnval
;
3242 PyObject
*(*getitem
)(PyObject
*, Py_ssize_t
);
3243 Py_ssize_t lastarg
= 0;
3245 /* spawnve has four arguments: (mode, path, argv, env), where
3246 argv is a list or tuple of strings and env is a dictionary
3247 like posix.environ. */
3249 if (!PyArg_ParseTuple(args
, "ietOO:spawnve", &mode
,
3250 Py_FileSystemDefaultEncoding
,
3251 &path
, &argv
, &env
))
3253 if (PyList_Check(argv
)) {
3254 argc
= PyList_Size(argv
);
3255 getitem
= PyList_GetItem
;
3257 else if (PyTuple_Check(argv
)) {
3258 argc
= PyTuple_Size(argv
);
3259 getitem
= PyTuple_GetItem
;
3262 PyErr_SetString(PyExc_TypeError
,
3263 "spawnve() arg 2 must be a tuple or list");
3266 if (!PyMapping_Check(env
)) {
3267 PyErr_SetString(PyExc_TypeError
,
3268 "spawnve() arg 3 must be a mapping object");
3272 argvlist
= PyMem_NEW(char *, argc
+1);
3273 if (argvlist
== NULL
) {
3277 for (i
= 0; i
< argc
; i
++) {
3278 if (!PyArg_Parse((*getitem
)(argv
, i
),
3279 "et;spawnve() arg 2 must contain only strings",
3280 Py_FileSystemDefaultEncoding
,
3288 argvlist
[argc
] = NULL
;
3290 i
= PyMapping_Size(env
);
3293 envlist
= PyMem_NEW(char *, i
+ 1);
3294 if (envlist
== NULL
) {
3299 keys
= PyMapping_Keys(env
);
3300 vals
= PyMapping_Values(env
);
3303 if (!PyList_Check(keys
) || !PyList_Check(vals
)) {
3304 PyErr_SetString(PyExc_TypeError
,
3305 "spawnve(): env.keys() or env.values() is not a list");
3309 for (pos
= 0; pos
< i
; pos
++) {
3313 key
= PyList_GetItem(keys
, pos
);
3314 val
= PyList_GetItem(vals
, pos
);
3320 "s;spawnve() arg 3 contains a non-string key",
3324 "s;spawnve() arg 3 contains a non-string value",
3329 len
= PyString_Size(key
) + PyString_Size(val
) + 2;
3330 p
= PyMem_NEW(char, len
);
3335 PyOS_snprintf(p
, len
, "%s=%s", k
, v
);
3336 envlist
[envc
++] = p
;
3340 #if defined(PYOS_OS2) && defined(PYCC_GCC)
3341 Py_BEGIN_ALLOW_THREADS
3342 spawnval
= spawnve(mode
, path
, argvlist
, envlist
);
3343 Py_END_ALLOW_THREADS
3345 if (mode
== _OLD_P_OVERLAY
)
3348 Py_BEGIN_ALLOW_THREADS
3349 spawnval
= _spawnve(mode
, path
, argvlist
, envlist
);
3350 Py_END_ALLOW_THREADS
3354 (void) posix_error();
3356 #if SIZEOF_LONG == SIZEOF_VOID_P
3357 res
= Py_BuildValue("l", (long) spawnval
);
3359 res
= Py_BuildValue("L", (PY_LONG_LONG
) spawnval
);
3364 PyMem_DEL(envlist
[envc
]);
3367 free_string_array(argvlist
, lastarg
);
3375 /* OS/2 supports spawnvp & spawnvpe natively */
3376 #if defined(PYOS_OS2)
3377 PyDoc_STRVAR(posix_spawnvp__doc__
,
3378 "spawnvp(mode, file, args)\n\n\
3379 Execute the program 'file' in a new process, using the environment\n\
3380 search path to find the file.\n\
3382 mode: mode of process creation\n\
3383 file: executable file name\n\
3384 args: tuple or list of strings");
3387 posix_spawnvp(PyObject
*self
, PyObject
*args
)
3393 Py_intptr_t spawnval
;
3394 PyObject
*(*getitem
)(PyObject
*, Py_ssize_t
);
3396 /* spawnvp has three arguments: (mode, path, argv), where
3397 argv is a list or tuple of strings. */
3399 if (!PyArg_ParseTuple(args
, "ietO:spawnvp", &mode
,
3400 Py_FileSystemDefaultEncoding
,
3403 if (PyList_Check(argv
)) {
3404 argc
= PyList_Size(argv
);
3405 getitem
= PyList_GetItem
;
3407 else if (PyTuple_Check(argv
)) {
3408 argc
= PyTuple_Size(argv
);
3409 getitem
= PyTuple_GetItem
;
3412 PyErr_SetString(PyExc_TypeError
,
3413 "spawnvp() arg 2 must be a tuple or list");
3418 argvlist
= PyMem_NEW(char *, argc
+1);
3419 if (argvlist
== NULL
) {
3421 return PyErr_NoMemory();
3423 for (i
= 0; i
< argc
; i
++) {
3424 if (!PyArg_Parse((*getitem
)(argv
, i
), "et",
3425 Py_FileSystemDefaultEncoding
,
3427 free_string_array(argvlist
, i
);
3430 "spawnvp() arg 2 must contain only strings");
3435 argvlist
[argc
] = NULL
;
3437 Py_BEGIN_ALLOW_THREADS
3438 #if defined(PYCC_GCC)
3439 spawnval
= spawnvp(mode
, path
, argvlist
);
3441 spawnval
= _spawnvp(mode
, path
, argvlist
);
3443 Py_END_ALLOW_THREADS
3445 free_string_array(argvlist
, argc
);
3449 return posix_error();
3451 return Py_BuildValue("l", (long) spawnval
);
3455 PyDoc_STRVAR(posix_spawnvpe__doc__
,
3456 "spawnvpe(mode, file, args, env)\n\n\
3457 Execute the program 'file' in a new process, using the environment\n\
3458 search path to find the file.\n\
3460 mode: mode of process creation\n\
3461 file: executable file name\n\
3462 args: tuple or list of arguments\n\
3463 env: dictionary of strings mapping to strings");
3466 posix_spawnvpe(PyObject
*self
, PyObject
*args
)
3469 PyObject
*argv
, *env
;
3472 PyObject
*key
, *val
, *keys
=NULL
, *vals
=NULL
, *res
=NULL
;
3473 int mode
, i
, pos
, argc
, envc
;
3474 Py_intptr_t spawnval
;
3475 PyObject
*(*getitem
)(PyObject
*, Py_ssize_t
);
3478 /* spawnvpe has four arguments: (mode, path, argv, env), where
3479 argv is a list or tuple of strings and env is a dictionary
3480 like posix.environ. */
3482 if (!PyArg_ParseTuple(args
, "ietOO:spawnvpe", &mode
,
3483 Py_FileSystemDefaultEncoding
,
3484 &path
, &argv
, &env
))
3486 if (PyList_Check(argv
)) {
3487 argc
= PyList_Size(argv
);
3488 getitem
= PyList_GetItem
;
3490 else if (PyTuple_Check(argv
)) {
3491 argc
= PyTuple_Size(argv
);
3492 getitem
= PyTuple_GetItem
;
3495 PyErr_SetString(PyExc_TypeError
,
3496 "spawnvpe() arg 2 must be a tuple or list");
3499 if (!PyMapping_Check(env
)) {
3500 PyErr_SetString(PyExc_TypeError
,
3501 "spawnvpe() arg 3 must be a mapping object");
3505 argvlist
= PyMem_NEW(char *, argc
+1);
3506 if (argvlist
== NULL
) {
3510 for (i
= 0; i
< argc
; i
++) {
3511 if (!PyArg_Parse((*getitem
)(argv
, i
),
3512 "et;spawnvpe() arg 2 must contain only strings",
3513 Py_FileSystemDefaultEncoding
,
3521 argvlist
[argc
] = NULL
;
3523 i
= PyMapping_Size(env
);
3526 envlist
= PyMem_NEW(char *, i
+ 1);
3527 if (envlist
== NULL
) {
3532 keys
= PyMapping_Keys(env
);
3533 vals
= PyMapping_Values(env
);
3536 if (!PyList_Check(keys
) || !PyList_Check(vals
)) {
3537 PyErr_SetString(PyExc_TypeError
,
3538 "spawnvpe(): env.keys() or env.values() is not a list");
3542 for (pos
= 0; pos
< i
; pos
++) {
3546 key
= PyList_GetItem(keys
, pos
);
3547 val
= PyList_GetItem(vals
, pos
);
3553 "s;spawnvpe() arg 3 contains a non-string key",
3557 "s;spawnvpe() arg 3 contains a non-string value",
3562 len
= PyString_Size(key
) + PyString_Size(val
) + 2;
3563 p
= PyMem_NEW(char, len
);
3568 PyOS_snprintf(p
, len
, "%s=%s", k
, v
);
3569 envlist
[envc
++] = p
;
3573 Py_BEGIN_ALLOW_THREADS
3574 #if defined(PYCC_GCC)
3575 spawnval
= spawnvpe(mode
, path
, argvlist
, envlist
);
3577 spawnval
= _spawnvpe(mode
, path
, argvlist
, envlist
);
3579 Py_END_ALLOW_THREADS
3582 (void) posix_error();
3584 res
= Py_BuildValue("l", (long) spawnval
);
3588 PyMem_DEL(envlist
[envc
]);
3591 free_string_array(argvlist
, lastarg
);
3598 #endif /* PYOS_OS2 */
3599 #endif /* HAVE_SPAWNV */
3603 PyDoc_STRVAR(posix_fork1__doc__
,
3604 "fork1() -> pid\n\n\
3605 Fork a child process with a single multiplexed (i.e., not bound) thread.\n\
3607 Return 0 to child process and PID of child to parent process.");
3610 posix_fork1(PyObject
*self
, PyObject
*noargs
)
3614 _PyImport_AcquireLock();
3617 /* child: this clobbers and resets the import lock. */
3620 /* parent: release the import lock. */
3621 result
= _PyImport_ReleaseLock();
3624 return posix_error();
3626 /* Don't clobber the OSError if the fork failed. */
3627 PyErr_SetString(PyExc_RuntimeError
,
3628 "not holding the import lock");
3631 return PyLong_FromPid(pid
);
3637 PyDoc_STRVAR(posix_fork__doc__
,
3639 Fork a child process.\n\
3640 Return 0 to child process and PID of child to parent process.");
3643 posix_fork(PyObject
*self
, PyObject
*noargs
)
3647 _PyImport_AcquireLock();
3650 /* child: this clobbers and resets the import lock. */
3653 /* parent: release the import lock. */
3654 result
= _PyImport_ReleaseLock();
3657 return posix_error();
3659 /* Don't clobber the OSError if the fork failed. */
3660 PyErr_SetString(PyExc_RuntimeError
,
3661 "not holding the import lock");
3664 return PyLong_FromPid(pid
);
3668 /* AIX uses /dev/ptc but is otherwise the same as /dev/ptmx */
3669 /* IRIX has both /dev/ptc and /dev/ptmx, use ptmx */
3670 #if defined(HAVE_DEV_PTC) && !defined(HAVE_DEV_PTMX)
3671 #define DEV_PTY_FILE "/dev/ptc"
3672 #define HAVE_DEV_PTMX
3674 #define DEV_PTY_FILE "/dev/ptmx"
3677 #if defined(HAVE_OPENPTY) || defined(HAVE_FORKPTY) || defined(HAVE_DEV_PTMX)
3681 #ifdef HAVE_LIBUTIL_H
3682 #include <libutil.h>
3686 #endif /* HAVE_UTIL_H */
3687 #endif /* HAVE_LIBUTIL_H */
3688 #endif /* HAVE_PTY_H */
3689 #ifdef HAVE_STROPTS_H
3690 #include <stropts.h>
3692 #endif /* defined(HAVE_OPENPTY) || defined(HAVE_FORKPTY) || defined(HAVE_DEV_PTMX */
3694 #if defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX)
3695 PyDoc_STRVAR(posix_openpty__doc__
,
3696 "openpty() -> (master_fd, slave_fd)\n\n\
3697 Open a pseudo-terminal, returning open fd's for both master and slave end.\n");
3700 posix_openpty(PyObject
*self
, PyObject
*noargs
)
3702 int master_fd
, slave_fd
;
3703 #ifndef HAVE_OPENPTY
3706 #if defined(HAVE_DEV_PTMX) && !defined(HAVE_OPENPTY) && !defined(HAVE__GETPTY)
3707 PyOS_sighandler_t sig_saved
;
3709 extern char *ptsname(int fildes
);
3714 if (openpty(&master_fd
, &slave_fd
, NULL
, NULL
, NULL
) != 0)
3715 return posix_error();
3716 #elif defined(HAVE__GETPTY)
3717 slave_name
= _getpty(&master_fd
, O_RDWR
, 0666, 0);
3718 if (slave_name
== NULL
)
3719 return posix_error();
3721 slave_fd
= open(slave_name
, O_RDWR
);
3723 return posix_error();
3725 master_fd
= open(DEV_PTY_FILE
, O_RDWR
| O_NOCTTY
); /* open master */
3727 return posix_error();
3728 sig_saved
= PyOS_setsig(SIGCHLD
, SIG_DFL
);
3729 /* change permission of slave */
3730 if (grantpt(master_fd
) < 0) {
3731 PyOS_setsig(SIGCHLD
, sig_saved
);
3732 return posix_error();
3735 if (unlockpt(master_fd
) < 0) {
3736 PyOS_setsig(SIGCHLD
, sig_saved
);
3737 return posix_error();
3739 PyOS_setsig(SIGCHLD
, sig_saved
);
3740 slave_name
= ptsname(master_fd
); /* get name of slave */
3741 if (slave_name
== NULL
)
3742 return posix_error();
3743 slave_fd
= open(slave_name
, O_RDWR
| O_NOCTTY
); /* open slave */
3745 return posix_error();
3746 #if !defined(__CYGWIN__) && !defined(HAVE_DEV_PTC)
3747 ioctl(slave_fd
, I_PUSH
, "ptem"); /* push ptem */
3748 ioctl(slave_fd
, I_PUSH
, "ldterm"); /* push ldterm */
3750 ioctl(slave_fd
, I_PUSH
, "ttcompat"); /* push ttcompat */
3752 #endif /* HAVE_CYGWIN */
3753 #endif /* HAVE_OPENPTY */
3755 return Py_BuildValue("(ii)", master_fd
, slave_fd
);
3758 #endif /* defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX) */
3761 PyDoc_STRVAR(posix_forkpty__doc__
,
3762 "forkpty() -> (pid, master_fd)\n\n\
3763 Fork a new process with a new pseudo-terminal as controlling tty.\n\n\
3764 Like fork(), return 0 as pid to child process, and PID of child to parent.\n\
3765 To both, return fd of newly opened pseudo-terminal.\n");
3768 posix_forkpty(PyObject
*self
, PyObject
*noargs
)
3770 int master_fd
= -1, result
= 0;
3773 _PyImport_AcquireLock();
3774 pid
= forkpty(&master_fd
, NULL
, NULL
, NULL
);
3776 /* child: this clobbers and resets the import lock. */
3779 /* parent: release the import lock. */
3780 result
= _PyImport_ReleaseLock();
3783 return posix_error();
3785 /* Don't clobber the OSError if the fork failed. */
3786 PyErr_SetString(PyExc_RuntimeError
,
3787 "not holding the import lock");
3790 return Py_BuildValue("(Ni)", PyLong_FromPid(pid
), master_fd
);
3795 PyDoc_STRVAR(posix_getegid__doc__
,
3796 "getegid() -> egid\n\n\
3797 Return the current process's effective group id.");
3800 posix_getegid(PyObject
*self
, PyObject
*noargs
)
3802 return PyInt_FromLong((long)getegid());
3808 PyDoc_STRVAR(posix_geteuid__doc__
,
3809 "geteuid() -> euid\n\n\
3810 Return the current process's effective user id.");
3813 posix_geteuid(PyObject
*self
, PyObject
*noargs
)
3815 return PyInt_FromLong((long)geteuid());
3821 PyDoc_STRVAR(posix_getgid__doc__
,
3822 "getgid() -> gid\n\n\
3823 Return the current process's group id.");
3826 posix_getgid(PyObject
*self
, PyObject
*noargs
)
3828 return PyInt_FromLong((long)getgid());
3833 PyDoc_STRVAR(posix_getpid__doc__
,
3834 "getpid() -> pid\n\n\
3835 Return the current process id");
3838 posix_getpid(PyObject
*self
, PyObject
*noargs
)
3840 return PyLong_FromPid(getpid());
3844 #ifdef HAVE_GETGROUPS
3845 PyDoc_STRVAR(posix_getgroups__doc__
,
3846 "getgroups() -> list of group IDs\n\n\
3847 Return list of supplemental group IDs for the process.");
3850 posix_getgroups(PyObject
*self
, PyObject
*noargs
)
3852 PyObject
*result
= NULL
;
3855 #define MAX_GROUPS NGROUPS_MAX
3857 /* defined to be 16 on Solaris7, so this should be a small number */
3858 #define MAX_GROUPS 64
3860 gid_t grouplist
[MAX_GROUPS
];
3863 n
= getgroups(MAX_GROUPS
, grouplist
);
3867 result
= PyList_New(n
);
3868 if (result
!= NULL
) {
3870 for (i
= 0; i
< n
; ++i
) {
3871 PyObject
*o
= PyInt_FromLong((long)grouplist
[i
]);
3877 PyList_SET_ITEM(result
, i
, o
);
3886 #ifdef HAVE_INITGROUPS
3887 PyDoc_STRVAR(posix_initgroups__doc__
,
3888 "initgroups(username, gid) -> None\n\n\
3889 Call the system initgroups() to initialize the group access list with all of\n\
3890 the groups of which the specified username is a member, plus the specified\n\
3894 posix_initgroups(PyObject
*self
, PyObject
*args
)
3899 if (!PyArg_ParseTuple(args
, "sl:initgroups", &username
, &gid
))
3902 if (initgroups(username
, (gid_t
) gid
) == -1)
3903 return PyErr_SetFromErrno(PyExc_OSError
);
3911 PyDoc_STRVAR(posix_getpgid__doc__
,
3912 "getpgid(pid) -> pgid\n\n\
3913 Call the system call getpgid().");
3916 posix_getpgid(PyObject
*self
, PyObject
*args
)
3919 if (!PyArg_ParseTuple(args
, PARSE_PID
":getpgid", &pid
))
3921 pgid
= getpgid(pid
);
3923 return posix_error();
3924 return PyLong_FromPid(pgid
);
3926 #endif /* HAVE_GETPGID */
3930 PyDoc_STRVAR(posix_getpgrp__doc__
,
3931 "getpgrp() -> pgrp\n\n\
3932 Return the current process group id.");
3935 posix_getpgrp(PyObject
*self
, PyObject
*noargs
)
3937 #ifdef GETPGRP_HAVE_ARG
3938 return PyLong_FromPid(getpgrp(0));
3939 #else /* GETPGRP_HAVE_ARG */
3940 return PyLong_FromPid(getpgrp());
3941 #endif /* GETPGRP_HAVE_ARG */
3943 #endif /* HAVE_GETPGRP */
3947 PyDoc_STRVAR(posix_setpgrp__doc__
,
3949 Make this process the process group leader.");
3952 posix_setpgrp(PyObject
*self
, PyObject
*noargs
)
3954 #ifdef SETPGRP_HAVE_ARG
3955 if (setpgrp(0, 0) < 0)
3956 #else /* SETPGRP_HAVE_ARG */
3958 #endif /* SETPGRP_HAVE_ARG */
3959 return posix_error();
3964 #endif /* HAVE_SETPGRP */
3967 PyDoc_STRVAR(posix_getppid__doc__
,
3968 "getppid() -> ppid\n\n\
3969 Return the parent's process id.");
3972 posix_getppid(PyObject
*self
, PyObject
*noargs
)
3974 return PyLong_FromPid(getppid());
3979 #ifdef HAVE_GETLOGIN
3980 PyDoc_STRVAR(posix_getlogin__doc__
,
3981 "getlogin() -> string\n\n\
3982 Return the actual login name.");
3985 posix_getlogin(PyObject
*self
, PyObject
*noargs
)
3987 PyObject
*result
= NULL
;
3989 int old_errno
= errno
;
3997 PyErr_SetString(PyExc_OSError
,
3998 "unable to determine login name");
4001 result
= PyString_FromString(name
);
4009 PyDoc_STRVAR(posix_getuid__doc__
,
4010 "getuid() -> uid\n\n\
4011 Return the current process's user id.");
4014 posix_getuid(PyObject
*self
, PyObject
*noargs
)
4016 return PyInt_FromLong((long)getuid());
4022 PyDoc_STRVAR(posix_kill__doc__
,
4023 "kill(pid, sig)\n\n\
4024 Kill a process with a signal.");
4027 posix_kill(PyObject
*self
, PyObject
*args
)
4031 if (!PyArg_ParseTuple(args
, PARSE_PID
"i:kill", &pid
, &sig
))
4033 #if defined(PYOS_OS2) && !defined(PYCC_GCC)
4034 if (sig
== XCPT_SIGNAL_INTR
|| sig
== XCPT_SIGNAL_BREAK
) {
4036 if ((rc
= DosSendSignalException(pid
, sig
)) != NO_ERROR
)
4037 return os2_error(rc
);
4039 } else if (sig
== XCPT_SIGNAL_KILLPROC
) {
4041 if ((rc
= DosKillProcess(DKP_PROCESS
, pid
)) != NO_ERROR
)
4042 return os2_error(rc
);
4045 return NULL
; /* Unrecognized Signal Requested */
4047 if (kill(pid
, sig
) == -1)
4048 return posix_error();
4056 PyDoc_STRVAR(posix_killpg__doc__
,
4057 "killpg(pgid, sig)\n\n\
4058 Kill a process group with a signal.");
4061 posix_killpg(PyObject
*self
, PyObject
*args
)
4065 /* XXX some man pages make the `pgid` parameter an int, others
4066 a pid_t. Since getpgrp() returns a pid_t, we assume killpg should
4067 take the same type. Moreover, pid_t is always at least as wide as
4068 int (else compilation of this module fails), which is safe. */
4069 if (!PyArg_ParseTuple(args
, PARSE_PID
"i:killpg", &pgid
, &sig
))
4071 if (killpg(pgid
, sig
) == -1)
4072 return posix_error();
4079 PyDoc_STRVAR(win32_kill__doc__
,
4080 "kill(pid, sig)\n\n\
4081 Kill a process with a signal.");
4084 win32_kill(PyObject
*self
, PyObject
*args
)
4087 DWORD pid
, sig
, err
;
4090 if (!PyArg_ParseTuple(args
, "kk:kill", &pid
, &sig
))
4093 /* Console processes which share a common console can be sent CTRL+C or
4094 CTRL+BREAK events, provided they handle said events. */
4095 if (sig
== CTRL_C_EVENT
|| sig
== CTRL_BREAK_EVENT
) {
4096 if (GenerateConsoleCtrlEvent(sig
, pid
) == 0) {
4097 err
= GetLastError();
4098 return PyErr_SetFromWindowsErr(err
);
4104 /* If the signal is outside of what GenerateConsoleCtrlEvent can use,
4105 attempt to open and terminate the process. */
4106 handle
= OpenProcess(PROCESS_ALL_ACCESS
, FALSE
, pid
);
4107 if (handle
== NULL
) {
4108 err
= GetLastError();
4109 return PyErr_SetFromWindowsErr(err
);
4112 if (TerminateProcess(handle
, sig
) == 0) {
4113 err
= GetLastError();
4114 result
= PyErr_SetFromWindowsErr(err
);
4120 CloseHandle(handle
);
4123 #endif /* MS_WINDOWS */
4127 #ifdef HAVE_SYS_LOCK_H
4128 #include <sys/lock.h>
4131 PyDoc_STRVAR(posix_plock__doc__
,
4133 Lock program segments into memory.");
4136 posix_plock(PyObject
*self
, PyObject
*args
)
4139 if (!PyArg_ParseTuple(args
, "i:plock", &op
))
4141 if (plock(op
) == -1)
4142 return posix_error();
4150 PyDoc_STRVAR(posix_popen__doc__
,
4151 "popen(command [, mode='r' [, bufsize]]) -> pipe\n\n\
4152 Open a pipe to/from a command returning a file object.");
4154 #if defined(PYOS_OS2)
4155 #if defined(PYCC_VACPP)
4157 async_system(const char *command
)
4159 char errormsg
[256], args
[1024];
4163 char *shell
= getenv("COMSPEC");
4167 /* avoid overflowing the argument buffer */
4168 if (strlen(shell
) + 3 + strlen(command
) >= 1024)
4169 return ERROR_NOT_ENOUGH_MEMORY
4172 strcat(args
, shell
);
4173 strcat(args
, "/c ");
4174 strcat(args
, command
);
4176 /* execute asynchronously, inheriting the environment */
4177 rc
= DosExecPgm(errormsg
,
4188 popen(const char *command
, const char *mode
, int pipesize
, int *err
)
4194 /* mode determines which of stdin or stdout is reconnected to
4195 * the pipe to the child
4197 if (strchr(mode
, 'r') != NULL
) {
4198 tgt_fd
= 1; /* stdout */
4199 } else if (strchr(mode
, 'w')) {
4200 tgt_fd
= 0; /* stdin */
4202 *err
= ERROR_INVALID_ACCESS
;
4206 /* setup the pipe */
4207 if ((rc
= DosCreatePipe(&pipeh
[0], &pipeh
[1], pipesize
)) != NO_ERROR
) {
4212 /* prevent other threads accessing stdio */
4215 /* reconnect stdio and execute child */
4218 if (dup2(pipeh
[tgtfd
], tgtfd
) == 0) {
4219 DosClose(pipeh
[tgtfd
]);
4220 rc
= async_system(command
);
4227 /* allow other threads access to stdio */
4230 /* if execution of child was successful return file stream */
4232 return fdopen(pipeh
[1 - tgtfd
], mode
);
4234 DosClose(pipeh
[1 - tgtfd
]);
4241 posix_popen(PyObject
*self
, PyObject
*args
)
4245 int err
, bufsize
= -1;
4248 if (!PyArg_ParseTuple(args
, "s|si:popen", &name
, &mode
, &bufsize
))
4250 Py_BEGIN_ALLOW_THREADS
4251 fp
= popen(name
, mode
, (bufsize
> 0) ? bufsize
: 4096, &err
);
4252 Py_END_ALLOW_THREADS
4254 return os2_error(err
);
4256 f
= PyFile_FromFile(fp
, name
, mode
, fclose
);
4258 PyFile_SetBufSize(f
, bufsize
);
4262 #elif defined(PYCC_GCC)
4264 /* standard posix version of popen() support */
4266 posix_popen(PyObject
*self
, PyObject
*args
)
4273 if (!PyArg_ParseTuple(args
, "s|si:popen", &name
, &mode
, &bufsize
))
4275 Py_BEGIN_ALLOW_THREADS
4276 fp
= popen(name
, mode
);
4277 Py_END_ALLOW_THREADS
4279 return posix_error();
4280 f
= PyFile_FromFile(fp
, name
, mode
, pclose
);
4282 PyFile_SetBufSize(f
, bufsize
);
4286 /* fork() under OS/2 has lots'o'warts
4287 * EMX supports pipe() and spawn*() so we can synthesize popen[234]()
4288 * most of this code is a ripoff of the win32 code, but using the
4289 * capabilities of EMX's C library routines
4292 /* These tell _PyPopen() whether to return 1, 2, or 3 file objects. */
4298 static PyObject
*_PyPopen(char *, int, int, int);
4299 static int _PyPclose(FILE *file
);
4302 * Internal dictionary mapping popen* file pointers to process handles,
4303 * for use when retrieving the process exit code. See _PyPclose() below
4304 * for more information on this dictionary's use.
4306 static PyObject
*_PyPopenProcs
= NULL
;
4308 /* os2emx version of popen2()
4310 * The result of this function is a pipe (file) connected to the
4311 * process's stdin, and a pipe connected to the process's stdout.
4315 os2emx_popen2(PyObject
*self
, PyObject
*args
)
4323 if (!PyArg_ParseTuple(args
, "s|si:popen2", &cmdstring
, &mode
, &bufsize
))
4328 else if (*mode
!= 'b') {
4329 PyErr_SetString(PyExc_ValueError
, "mode must be 't' or 'b'");
4334 f
= _PyPopen(cmdstring
, tm
, POPEN_2
, bufsize
);
4340 * Variation on os2emx.popen2
4342 * The result of this function is 3 pipes - the process's stdin,
4347 os2emx_popen3(PyObject
*self
, PyObject
*args
)
4355 if (!PyArg_ParseTuple(args
, "s|si:popen3", &cmdstring
, &mode
, &bufsize
))
4360 else if (*mode
!= 'b') {
4361 PyErr_SetString(PyExc_ValueError
, "mode must be 't' or 'b'");
4366 f
= _PyPopen(cmdstring
, tm
, POPEN_3
, bufsize
);
4372 * Variation on os2emx.popen2
4374 * The result of this function is 2 pipes - the processes stdin,
4375 * and stdout+stderr combined as a single pipe.
4379 os2emx_popen4(PyObject
*self
, PyObject
*args
)
4387 if (!PyArg_ParseTuple(args
, "s|si:popen4", &cmdstring
, &mode
, &bufsize
))
4392 else if (*mode
!= 'b') {
4393 PyErr_SetString(PyExc_ValueError
, "mode must be 't' or 'b'");
4398 f
= _PyPopen(cmdstring
, tm
, POPEN_4
, bufsize
);
4403 /* a couple of structures for convenient handling of multiple
4404 * file handles and pipes
4418 /* The following code is derived from the win32 code */
4421 _PyPopen(char *cmdstring
, int mode
, int n
, int bufsize
)
4423 struct file_ref stdio
[3];
4424 struct pipe_ref p_fd
[3];
4426 int file_count
, i
, pipe_err
;
4428 char *shell
, *sh_name
, *opt
, *rd_mode
, *wr_mode
;
4429 PyObject
*f
, *p_f
[3];
4431 /* file modes for subsequent fdopen's on pipe handles */
4443 /* prepare shell references */
4444 if ((shell
= getenv("EMXSHELL")) == NULL
)
4445 if ((shell
= getenv("COMSPEC")) == NULL
)
4448 return posix_error();
4451 sh_name
= _getname(shell
);
4452 if (stricmp(sh_name
, "cmd.exe") == 0 || stricmp(sh_name
, "4os2.exe") == 0)
4457 /* save current stdio fds + their flags, and set not inheritable */
4459 while (pipe_err
>= 0 && i
< 3)
4461 pipe_err
= stdio
[i
].handle
= dup(i
);
4462 stdio
[i
].flags
= fcntl(i
, F_GETFD
, 0);
4463 fcntl(stdio
[i
].handle
, F_SETFD
, stdio
[i
].flags
| FD_CLOEXEC
);
4468 /* didn't get them all saved - clean up and bail out */
4469 int saved_err
= errno
;
4472 close(stdio
[i
].handle
);
4475 return posix_error();
4478 /* create pipe ends */
4483 while ((pipe_err
== 0) && (i
< file_count
))
4484 pipe_err
= pipe((int *)&p_fd
[i
++]);
4487 /* didn't get them all made - clean up and bail out */
4494 return posix_error();
4497 /* change the actual standard IO streams over temporarily,
4498 * making the retained pipe ends non-inheritable
4503 if (dup2(p_fd
[0].rd
, 0) == 0)
4506 i
= fcntl(p_fd
[0].wr
, F_GETFD
, 0);
4507 fcntl(p_fd
[0].wr
, F_SETFD
, i
| FD_CLOEXEC
);
4508 if ((p_s
[0] = fdopen(p_fd
[0].wr
, wr_mode
)) == NULL
)
4522 if (dup2(p_fd
[1].wr
, 1) == 1)
4525 i
= fcntl(p_fd
[1].rd
, F_GETFD
, 0);
4526 fcntl(p_fd
[1].rd
, F_SETFD
, i
| FD_CLOEXEC
);
4527 if ((p_s
[1] = fdopen(p_fd
[1].rd
, rd_mode
)) == NULL
)
4539 /* - stderr, as required */
4545 if (dup2(p_fd
[2].wr
, 2) == 2)
4548 i
= fcntl(p_fd
[2].rd
, F_GETFD
, 0);
4549 fcntl(p_fd
[2].rd
, F_SETFD
, i
| FD_CLOEXEC
);
4550 if ((p_s
[2] = fdopen(p_fd
[2].rd
, rd_mode
)) == NULL
)
4565 if (dup2(1, 2) != 2)
4573 /* spawn the child process */
4576 pipe_pid
= spawnlp(P_NOWAIT
, shell
, shell
, opt
, cmdstring
, (char *)0);
4583 /* save the PID into the FILE structure
4584 * NOTE: this implementation doesn't actually
4585 * take advantage of this, but do it for
4586 * completeness - AIM Apr01
4588 for (i
= 0; i
< file_count
; i
++)
4589 p_s
[i
]->_pid
= pipe_pid
;
4593 /* reset standard IO to normal */
4594 for (i
= 0; i
< 3; i
++)
4596 dup2(stdio
[i
].handle
, i
);
4597 fcntl(i
, F_SETFD
, stdio
[i
].flags
);
4598 close(stdio
[i
].handle
);
4601 /* if any remnant problems, clean up and bail out */
4604 for (i
= 0; i
< 3; i
++)
4610 return posix_error_with_filename(cmdstring
);
4613 /* build tuple of file objects to return */
4614 if ((p_f
[0] = PyFile_FromFile(p_s
[0], cmdstring
, wr_mode
, _PyPclose
)) != NULL
)
4615 PyFile_SetBufSize(p_f
[0], bufsize
);
4616 if ((p_f
[1] = PyFile_FromFile(p_s
[1], cmdstring
, rd_mode
, _PyPclose
)) != NULL
)
4617 PyFile_SetBufSize(p_f
[1], bufsize
);
4620 if ((p_f
[2] = PyFile_FromFile(p_s
[2], cmdstring
, rd_mode
, _PyPclose
)) != NULL
)
4621 PyFile_SetBufSize(p_f
[0], bufsize
);
4622 f
= PyTuple_Pack(3, p_f
[0], p_f
[1], p_f
[2]);
4625 f
= PyTuple_Pack(2, p_f
[0], p_f
[1]);
4628 * Insert the files we've created into the process dictionary
4629 * all referencing the list with the process handle and the
4630 * initial number of files (see description below in _PyPclose).
4631 * Since if _PyPclose later tried to wait on a process when all
4632 * handles weren't closed, it could create a deadlock with the
4633 * child, we spend some energy here to try to ensure that we
4634 * either insert all file handles into the dictionary or none
4635 * at all. It's a little clumsy with the various popen modes
4636 * and variable number of files involved.
4640 _PyPopenProcs
= PyDict_New();
4645 PyObject
*procObj
, *pidObj
, *intObj
, *fileObj
[3];
4648 fileObj
[0] = fileObj
[1] = fileObj
[2] = NULL
;
4649 ins_rc
[0] = ins_rc
[1] = ins_rc
[2] = 0;
4651 procObj
= PyList_New(2);
4652 pidObj
= PyLong_FromPid(pipe_pid
);
4653 intObj
= PyInt_FromLong((long) file_count
);
4655 if (procObj
&& pidObj
&& intObj
)
4657 PyList_SetItem(procObj
, 0, pidObj
);
4658 PyList_SetItem(procObj
, 1, intObj
);
4660 fileObj
[0] = PyLong_FromVoidPtr(p_s
[0]);
4663 ins_rc
[0] = PyDict_SetItem(_PyPopenProcs
,
4667 fileObj
[1] = PyLong_FromVoidPtr(p_s
[1]);
4670 ins_rc
[1] = PyDict_SetItem(_PyPopenProcs
,
4674 if (file_count
>= 3)
4676 fileObj
[2] = PyLong_FromVoidPtr(p_s
[2]);
4679 ins_rc
[2] = PyDict_SetItem(_PyPopenProcs
,
4685 if (ins_rc
[0] < 0 || !fileObj
[0] ||
4686 ins_rc
[1] < 0 || (file_count
> 1 && !fileObj
[1]) ||
4687 ins_rc
[2] < 0 || (file_count
> 2 && !fileObj
[2]))
4689 /* Something failed - remove any dictionary
4690 * entries that did make it.
4692 if (!ins_rc
[0] && fileObj
[0])
4694 PyDict_DelItem(_PyPopenProcs
,
4697 if (!ins_rc
[1] && fileObj
[1])
4699 PyDict_DelItem(_PyPopenProcs
,
4702 if (!ins_rc
[2] && fileObj
[2])
4704 PyDict_DelItem(_PyPopenProcs
,
4711 * Clean up our localized references for the dictionary keys
4712 * and value since PyDict_SetItem will Py_INCREF any copies
4713 * that got placed in the dictionary.
4715 Py_XDECREF(procObj
);
4716 Py_XDECREF(fileObj
[0]);
4717 Py_XDECREF(fileObj
[1]);
4718 Py_XDECREF(fileObj
[2]);
4721 /* Child is launched. */
4726 * Wrapper for fclose() to use for popen* files, so we can retrieve the
4727 * exit code for the child process and return as a result of the close.
4729 * This function uses the _PyPopenProcs dictionary in order to map the
4730 * input file pointer to information about the process that was
4731 * originally created by the popen* call that created the file pointer.
4732 * The dictionary uses the file pointer as a key (with one entry
4733 * inserted for each file returned by the original popen* call) and a
4734 * single list object as the value for all files from a single call.
4735 * The list object contains the Win32 process handle at [0], and a file
4736 * count at [1], which is initialized to the total number of file
4737 * handles using that list.
4739 * This function closes whichever handle it is passed, and decrements
4740 * the file count in the dictionary for the process handle pointed to
4741 * by this file. On the last close (when the file count reaches zero),
4742 * this function will wait for the child process and then return its
4743 * exit code as the result of the close() operation. This permits the
4744 * files to be closed in any order - it is always the close() of the
4745 * final handle that will return the exit code.
4747 * NOTE: This function is currently called with the GIL released.
4748 * hence we use the GILState API to manage our state.
4751 static int _PyPclose(FILE *file
)
4756 PyObject
*procObj
, *pidObj
, *intObj
, *fileObj
;
4759 PyGILState_STATE state
;
4762 /* Close the file handle first, to ensure it can't block the
4763 * child from exiting if it's the last handle.
4765 result
= fclose(file
);
4768 state
= PyGILState_Ensure();
4772 if ((fileObj
= PyLong_FromVoidPtr(file
)) != NULL
&&
4773 (procObj
= PyDict_GetItem(_PyPopenProcs
,
4774 fileObj
)) != NULL
&&
4775 (pidObj
= PyList_GetItem(procObj
,0)) != NULL
&&
4776 (intObj
= PyList_GetItem(procObj
,1)) != NULL
)
4778 pipe_pid
= (pid_t
) PyLong_AsPid(pidObj
);
4779 file_count
= (int) PyInt_AsLong(intObj
);
4783 /* Still other files referencing process */
4785 PyList_SetItem(procObj
,1,
4786 PyInt_FromLong((long) file_count
));
4790 /* Last file for this process */
4791 if (result
!= EOF
&&
4792 waitpid(pipe_pid
, &exit_code
, 0) == pipe_pid
)
4794 /* extract exit status */
4795 if (WIFEXITED(exit_code
))
4797 result
= WEXITSTATUS(exit_code
);
4807 /* Indicate failure - this will cause the file object
4808 * to raise an I/O error and translate the last
4809 * error code from errno. We do have a problem with
4810 * last errors that overlap the normal errno table,
4811 * but that's a consistent problem with the file object.
4817 /* Remove this file pointer from dictionary */
4818 PyDict_DelItem(_PyPopenProcs
, fileObj
);
4820 if (PyDict_Size(_PyPopenProcs
) == 0)
4822 Py_DECREF(_PyPopenProcs
);
4823 _PyPopenProcs
= NULL
;
4826 } /* if object retrieval ok */
4828 Py_XDECREF(fileObj
);
4829 } /* if _PyPopenProcs */
4832 PyGILState_Release(state
);
4837 #endif /* PYCC_??? */
4839 #elif defined(MS_WINDOWS)
4842 * Portable 'popen' replacement for Win32.
4844 * Written by Bill Tutt <billtut@microsoft.com>. Minor tweaks
4845 * and 2.0 integration by Fredrik Lundh <fredrik@pythonware.com>
4846 * Return code handling by David Bolen <db3l@fitlinxx.com>.
4853 /* These tell _PyPopen() wether to return 1, 2, or 3 file objects. */
4859 static PyObject
*_PyPopen(char *, int, int);
4860 static int _PyPclose(FILE *file
);
4863 * Internal dictionary mapping popen* file pointers to process handles,
4864 * for use when retrieving the process exit code. See _PyPclose() below
4865 * for more information on this dictionary's use.
4867 static PyObject
*_PyPopenProcs
= NULL
;
4870 /* popen that works from a GUI.
4872 * The result of this function is a pipe (file) connected to the
4873 * processes stdin or stdout, depending on the requested mode.
4877 posix_popen(PyObject
*self
, PyObject
*args
)
4885 if (!PyArg_ParseTuple(args
, "s|si:popen", &cmdstring
, &mode
, &bufsize
))
4890 else if (*mode
!= 'w') {
4891 PyErr_SetString(PyExc_ValueError
, "popen() arg 2 must be 'r' or 'w'");
4896 if (bufsize
!= -1) {
4897 PyErr_SetString(PyExc_ValueError
, "popen() arg 3 must be -1");
4901 if (*(mode
+1) == 't')
4902 f
= _PyPopen(cmdstring
, tm
| _O_TEXT
, POPEN_1
);
4903 else if (*(mode
+1) == 'b')
4904 f
= _PyPopen(cmdstring
, tm
| _O_BINARY
, POPEN_1
);
4906 f
= _PyPopen(cmdstring
, tm
| _O_TEXT
, POPEN_1
);
4911 /* Variation on win32pipe.popen
4913 * The result of this function is a pipe (file) connected to the
4914 * process's stdin, and a pipe connected to the process's stdout.
4918 win32_popen2(PyObject
*self
, PyObject
*args
)
4926 if (!PyArg_ParseTuple(args
, "s|si:popen2", &cmdstring
, &mode
, &bufsize
))
4931 else if (*mode
!= 'b') {
4932 PyErr_SetString(PyExc_ValueError
, "popen2() arg 2 must be 't' or 'b'");
4937 if (bufsize
!= -1) {
4938 PyErr_SetString(PyExc_ValueError
, "popen2() arg 3 must be -1");
4942 f
= _PyPopen(cmdstring
, tm
, POPEN_2
);
4948 * Variation on <om win32pipe.popen>
4950 * The result of this function is 3 pipes - the process's stdin,
4955 win32_popen3(PyObject
*self
, PyObject
*args
)
4963 if (!PyArg_ParseTuple(args
, "s|si:popen3", &cmdstring
, &mode
, &bufsize
))
4968 else if (*mode
!= 'b') {
4969 PyErr_SetString(PyExc_ValueError
, "popen3() arg 2 must be 't' or 'b'");
4974 if (bufsize
!= -1) {
4975 PyErr_SetString(PyExc_ValueError
, "popen3() arg 3 must be -1");
4979 f
= _PyPopen(cmdstring
, tm
, POPEN_3
);
4985 * Variation on win32pipe.popen
4987 * The result of this function is 2 pipes - the processes stdin,
4988 * and stdout+stderr combined as a single pipe.
4992 win32_popen4(PyObject
*self
, PyObject
*args
)
5000 if (!PyArg_ParseTuple(args
, "s|si:popen4", &cmdstring
, &mode
, &bufsize
))
5005 else if (*mode
!= 'b') {
5006 PyErr_SetString(PyExc_ValueError
, "popen4() arg 2 must be 't' or 'b'");
5011 if (bufsize
!= -1) {
5012 PyErr_SetString(PyExc_ValueError
, "popen4() arg 3 must be -1");
5016 f
= _PyPopen(cmdstring
, tm
, POPEN_4
);
5022 _PyPopenCreateProcess(char *cmdstring
,
5028 PROCESS_INFORMATION piProcInfo
;
5029 STARTUPINFO siStartInfo
;
5030 DWORD dwProcessFlags
= 0; /* no NEW_CONSOLE by default for Ctrl+C handling */
5031 char *s1
,*s2
, *s3
= " /c ";
5032 const char *szConsoleSpawn
= "w9xpopen.exe";
5036 if (i
= GetEnvironmentVariable("COMSPEC",NULL
,0)) {
5039 s1
= (char *)alloca(i
);
5040 if (!(x
= GetEnvironmentVariable("COMSPEC", s1
, i
)))
5041 /* x < i, so x fits into an integer */
5044 /* Explicitly check if we are using COMMAND.COM. If we are
5045 * then use the w9xpopen hack.
5048 while (comshell
>= s1
&& *comshell
!= '\\')
5052 if (GetVersion() < 0x80000000 &&
5053 _stricmp(comshell
, "command.com") != 0) {
5054 /* NT/2000 and not using command.com. */
5055 x
= i
+ strlen(s3
) + strlen(cmdstring
) + 1;
5056 s2
= (char *)alloca(x
);
5058 PyOS_snprintf(s2
, x
, "%s%s%s", s1
, s3
, cmdstring
);
5062 * Oh gag, we're on Win9x or using COMMAND.COM. Use
5063 * the workaround listed in KB: Q150956
5065 char modulepath
[_MAX_PATH
];
5066 struct stat statinfo
;
5067 GetModuleFileName(NULL
, modulepath
, sizeof(modulepath
));
5068 for (x
= i
= 0; modulepath
[i
]; i
++)
5069 if (modulepath
[i
] == SEP
)
5071 modulepath
[x
] = '\0';
5072 /* Create the full-name to w9xpopen, so we can test it exists */
5075 (sizeof(modulepath
)/sizeof(modulepath
[0]))
5076 -strlen(modulepath
));
5077 if (stat(modulepath
, &statinfo
) != 0) {
5078 size_t mplen
= sizeof(modulepath
)/sizeof(modulepath
[0]);
5079 /* Eeek - file-not-found - possibly an embedding
5080 situation - see if we can locate it in sys.prefix
5085 modulepath
[mplen
-1] = '\0';
5086 if (modulepath
[strlen(modulepath
)-1] != '\\')
5087 strcat(modulepath
, "\\");
5090 mplen
-strlen(modulepath
));
5091 /* No where else to look - raise an easily identifiable
5092 error, rather than leaving Windows to report
5093 "file not found" - as the user is probably blissfully
5094 unaware this shim EXE is used, and it will confuse them.
5095 (well, it confused me for a while ;-)
5097 if (stat(modulepath
, &statinfo
) != 0) {
5098 PyErr_Format(PyExc_RuntimeError
,
5099 "Can not locate '%s' which is needed "
5100 "for popen to work with your shell "
5106 x
= i
+ strlen(s3
) + strlen(cmdstring
) + 1 +
5107 strlen(modulepath
) +
5108 strlen(szConsoleSpawn
) + 1;
5110 s2
= (char *)alloca(x
);
5112 /* To maintain correct argument passing semantics,
5113 we pass the command-line as it stands, and allow
5114 quoting to be applied. w9xpopen.exe will then
5115 use its argv vector, and re-quote the necessary
5116 args for the ultimate child process.
5125 /* Not passing CREATE_NEW_CONSOLE has been known to
5126 cause random failures on win9x. Specifically a
5128 "Your program accessed mem currently in use at xxx"
5129 and a hopeful warning about the stability of your
5131 Cost is Ctrl+C won't kill children, but anyone
5132 who cares can have a go!
5134 dwProcessFlags
|= CREATE_NEW_CONSOLE
;
5138 /* Could be an else here to try cmd.exe / command.com in the path
5139 Now we'll just error out.. */
5141 PyErr_SetString(PyExc_RuntimeError
,
5142 "Cannot locate a COMSPEC environment variable to "
5143 "use as the shell");
5147 ZeroMemory(&siStartInfo
, sizeof(STARTUPINFO
));
5148 siStartInfo
.cb
= sizeof(STARTUPINFO
);
5149 siStartInfo
.dwFlags
= STARTF_USESTDHANDLES
| STARTF_USESHOWWINDOW
;
5150 siStartInfo
.hStdInput
= hStdin
;
5151 siStartInfo
.hStdOutput
= hStdout
;
5152 siStartInfo
.hStdError
= hStderr
;
5153 siStartInfo
.wShowWindow
= SW_HIDE
;
5155 if (CreateProcess(NULL
,
5165 /* Close the handles now so anyone waiting is woken. */
5166 CloseHandle(piProcInfo
.hThread
);
5168 /* Return process handle */
5169 *hProcess
= piProcInfo
.hProcess
;
5172 win32_error("CreateProcess", s2
);
5176 /* The following code is based off of KB: Q190351 */
5179 _PyPopen(char *cmdstring
, int mode
, int n
)
5181 HANDLE hChildStdinRd
, hChildStdinWr
, hChildStdoutRd
, hChildStdoutWr
,
5182 hChildStderrRd
, hChildStderrWr
, hChildStdinWrDup
, hChildStdoutRdDup
,
5183 hChildStderrRdDup
, hProcess
; /* hChildStdoutWrDup; */
5185 SECURITY_ATTRIBUTES saAttr
;
5192 saAttr
.nLength
= sizeof(SECURITY_ATTRIBUTES
);
5193 saAttr
.bInheritHandle
= TRUE
;
5194 saAttr
.lpSecurityDescriptor
= NULL
;
5196 if (!CreatePipe(&hChildStdinRd
, &hChildStdinWr
, &saAttr
, 0))
5197 return win32_error("CreatePipe", NULL
);
5199 /* Create new output read handle and the input write handle. Set
5200 * the inheritance properties to FALSE. Otherwise, the child inherits
5201 * these handles; resulting in non-closeable handles to the pipes
5203 fSuccess
= DuplicateHandle(GetCurrentProcess(), hChildStdinWr
,
5204 GetCurrentProcess(), &hChildStdinWrDup
, 0,
5206 DUPLICATE_SAME_ACCESS
);
5208 return win32_error("DuplicateHandle", NULL
);
5210 /* Close the inheritable version of ChildStdin
5211 that we're using. */
5212 CloseHandle(hChildStdinWr
);
5214 if (!CreatePipe(&hChildStdoutRd
, &hChildStdoutWr
, &saAttr
, 0))
5215 return win32_error("CreatePipe", NULL
);
5217 fSuccess
= DuplicateHandle(GetCurrentProcess(), hChildStdoutRd
,
5218 GetCurrentProcess(), &hChildStdoutRdDup
, 0,
5219 FALSE
, DUPLICATE_SAME_ACCESS
);
5221 return win32_error("DuplicateHandle", NULL
);
5223 /* Close the inheritable version of ChildStdout
5224 that we're using. */
5225 CloseHandle(hChildStdoutRd
);
5228 if (!CreatePipe(&hChildStderrRd
, &hChildStderrWr
, &saAttr
, 0))
5229 return win32_error("CreatePipe", NULL
);
5230 fSuccess
= DuplicateHandle(GetCurrentProcess(),
5232 GetCurrentProcess(),
5233 &hChildStderrRdDup
, 0,
5234 FALSE
, DUPLICATE_SAME_ACCESS
);
5236 return win32_error("DuplicateHandle", NULL
);
5237 /* Close the inheritable version of ChildStdErr that we're using. */
5238 CloseHandle(hChildStderrRd
);
5243 switch (mode
& (_O_RDONLY
| _O_TEXT
| _O_BINARY
| _O_WRONLY
)) {
5244 case _O_WRONLY
| _O_TEXT
:
5245 /* Case for writing to child Stdin in text mode. */
5246 fd1
= _open_osfhandle((Py_intptr_t
)hChildStdinWrDup
, mode
);
5247 f1
= _fdopen(fd1
, "w");
5248 f
= PyFile_FromFile(f1
, cmdstring
, "w", _PyPclose
);
5249 PyFile_SetBufSize(f
, 0);
5250 /* We don't care about these pipes anymore, so close them. */
5251 CloseHandle(hChildStdoutRdDup
);
5252 CloseHandle(hChildStderrRdDup
);
5255 case _O_RDONLY
| _O_TEXT
:
5256 /* Case for reading from child Stdout in text mode. */
5257 fd1
= _open_osfhandle((Py_intptr_t
)hChildStdoutRdDup
, mode
);
5258 f1
= _fdopen(fd1
, "r");
5259 f
= PyFile_FromFile(f1
, cmdstring
, "r", _PyPclose
);
5260 PyFile_SetBufSize(f
, 0);
5261 /* We don't care about these pipes anymore, so close them. */
5262 CloseHandle(hChildStdinWrDup
);
5263 CloseHandle(hChildStderrRdDup
);
5266 case _O_RDONLY
| _O_BINARY
:
5267 /* Case for readinig from child Stdout in binary mode. */
5268 fd1
= _open_osfhandle((Py_intptr_t
)hChildStdoutRdDup
, mode
);
5269 f1
= _fdopen(fd1
, "rb");
5270 f
= PyFile_FromFile(f1
, cmdstring
, "rb", _PyPclose
);
5271 PyFile_SetBufSize(f
, 0);
5272 /* We don't care about these pipes anymore, so close them. */
5273 CloseHandle(hChildStdinWrDup
);
5274 CloseHandle(hChildStderrRdDup
);
5277 case _O_WRONLY
| _O_BINARY
:
5278 /* Case for writing to child Stdin in binary mode. */
5279 fd1
= _open_osfhandle((Py_intptr_t
)hChildStdinWrDup
, mode
);
5280 f1
= _fdopen(fd1
, "wb");
5281 f
= PyFile_FromFile(f1
, cmdstring
, "wb", _PyPclose
);
5282 PyFile_SetBufSize(f
, 0);
5283 /* We don't care about these pipes anymore, so close them. */
5284 CloseHandle(hChildStdoutRdDup
);
5285 CloseHandle(hChildStderrRdDup
);
5297 if (mode
& _O_TEXT
) {
5305 fd1
= _open_osfhandle((Py_intptr_t
)hChildStdinWrDup
, mode
);
5306 f1
= _fdopen(fd1
, m2
);
5307 fd2
= _open_osfhandle((Py_intptr_t
)hChildStdoutRdDup
, mode
);
5308 f2
= _fdopen(fd2
, m1
);
5309 p1
= PyFile_FromFile(f1
, cmdstring
, m2
, _PyPclose
);
5310 PyFile_SetBufSize(p1
, 0);
5311 p2
= PyFile_FromFile(f2
, cmdstring
, m1
, _PyPclose
);
5312 PyFile_SetBufSize(p2
, 0);
5315 CloseHandle(hChildStderrRdDup
);
5317 f
= PyTuple_Pack(2,p1
,p2
);
5327 PyObject
*p1
, *p2
, *p3
;
5329 if (mode
& _O_TEXT
) {
5337 fd1
= _open_osfhandle((Py_intptr_t
)hChildStdinWrDup
, mode
);
5338 f1
= _fdopen(fd1
, m2
);
5339 fd2
= _open_osfhandle((Py_intptr_t
)hChildStdoutRdDup
, mode
);
5340 f2
= _fdopen(fd2
, m1
);
5341 fd3
= _open_osfhandle((Py_intptr_t
)hChildStderrRdDup
, mode
);
5342 f3
= _fdopen(fd3
, m1
);
5343 p1
= PyFile_FromFile(f1
, cmdstring
, m2
, _PyPclose
);
5344 p2
= PyFile_FromFile(f2
, cmdstring
, m1
, _PyPclose
);
5345 p3
= PyFile_FromFile(f3
, cmdstring
, m1
, _PyPclose
);
5346 PyFile_SetBufSize(p1
, 0);
5347 PyFile_SetBufSize(p2
, 0);
5348 PyFile_SetBufSize(p3
, 0);
5349 f
= PyTuple_Pack(3,p1
,p2
,p3
);
5359 if (!_PyPopenCreateProcess(cmdstring
,
5367 if (!_PyPopenCreateProcess(cmdstring
,
5376 * Insert the files we've created into the process dictionary
5377 * all referencing the list with the process handle and the
5378 * initial number of files (see description below in _PyPclose).
5379 * Since if _PyPclose later tried to wait on a process when all
5380 * handles weren't closed, it could create a deadlock with the
5381 * child, we spend some energy here to try to ensure that we
5382 * either insert all file handles into the dictionary or none
5383 * at all. It's a little clumsy with the various popen modes
5384 * and variable number of files involved.
5386 if (!_PyPopenProcs
) {
5387 _PyPopenProcs
= PyDict_New();
5390 if (_PyPopenProcs
) {
5391 PyObject
*procObj
, *hProcessObj
, *intObj
, *fileObj
[3];
5394 fileObj
[0] = fileObj
[1] = fileObj
[2] = NULL
;
5395 ins_rc
[0] = ins_rc
[1] = ins_rc
[2] = 0;
5397 procObj
= PyList_New(2);
5398 hProcessObj
= PyLong_FromVoidPtr(hProcess
);
5399 intObj
= PyInt_FromLong(file_count
);
5401 if (procObj
&& hProcessObj
&& intObj
) {
5402 PyList_SetItem(procObj
,0,hProcessObj
);
5403 PyList_SetItem(procObj
,1,intObj
);
5405 fileObj
[0] = PyLong_FromVoidPtr(f1
);
5407 ins_rc
[0] = PyDict_SetItem(_PyPopenProcs
,
5411 if (file_count
>= 2) {
5412 fileObj
[1] = PyLong_FromVoidPtr(f2
);
5414 ins_rc
[1] = PyDict_SetItem(_PyPopenProcs
,
5419 if (file_count
>= 3) {
5420 fileObj
[2] = PyLong_FromVoidPtr(f3
);
5422 ins_rc
[2] = PyDict_SetItem(_PyPopenProcs
,
5428 if (ins_rc
[0] < 0 || !fileObj
[0] ||
5429 ins_rc
[1] < 0 || (file_count
> 1 && !fileObj
[1]) ||
5430 ins_rc
[2] < 0 || (file_count
> 2 && !fileObj
[2])) {
5431 /* Something failed - remove any dictionary
5432 * entries that did make it.
5434 if (!ins_rc
[0] && fileObj
[0]) {
5435 PyDict_DelItem(_PyPopenProcs
,
5438 if (!ins_rc
[1] && fileObj
[1]) {
5439 PyDict_DelItem(_PyPopenProcs
,
5442 if (!ins_rc
[2] && fileObj
[2]) {
5443 PyDict_DelItem(_PyPopenProcs
,
5450 * Clean up our localized references for the dictionary keys
5451 * and value since PyDict_SetItem will Py_INCREF any copies
5452 * that got placed in the dictionary.
5454 Py_XDECREF(procObj
);
5455 Py_XDECREF(fileObj
[0]);
5456 Py_XDECREF(fileObj
[1]);
5457 Py_XDECREF(fileObj
[2]);
5460 /* Child is launched. Close the parents copy of those pipe
5461 * handles that only the child should have open. You need to
5462 * make sure that no handles to the write end of the output pipe
5463 * are maintained in this process or else the pipe will not close
5464 * when the child process exits and the ReadFile will hang. */
5466 if (!CloseHandle(hChildStdinRd
))
5467 return win32_error("CloseHandle", NULL
);
5469 if (!CloseHandle(hChildStdoutWr
))
5470 return win32_error("CloseHandle", NULL
);
5472 if ((n
!= 4) && (!CloseHandle(hChildStderrWr
)))
5473 return win32_error("CloseHandle", NULL
);
5479 * Wrapper for fclose() to use for popen* files, so we can retrieve the
5480 * exit code for the child process and return as a result of the close.
5482 * This function uses the _PyPopenProcs dictionary in order to map the
5483 * input file pointer to information about the process that was
5484 * originally created by the popen* call that created the file pointer.
5485 * The dictionary uses the file pointer as a key (with one entry
5486 * inserted for each file returned by the original popen* call) and a
5487 * single list object as the value for all files from a single call.
5488 * The list object contains the Win32 process handle at [0], and a file
5489 * count at [1], which is initialized to the total number of file
5490 * handles using that list.
5492 * This function closes whichever handle it is passed, and decrements
5493 * the file count in the dictionary for the process handle pointed to
5494 * by this file. On the last close (when the file count reaches zero),
5495 * this function will wait for the child process and then return its
5496 * exit code as the result of the close() operation. This permits the
5497 * files to be closed in any order - it is always the close() of the
5498 * final handle that will return the exit code.
5500 * NOTE: This function is currently called with the GIL released.
5501 * hence we use the GILState API to manage our state.
5504 static int _PyPclose(FILE *file
)
5509 PyObject
*procObj
, *hProcessObj
, *intObj
, *fileObj
;
5512 PyGILState_STATE state
;
5515 /* Close the file handle first, to ensure it can't block the
5516 * child from exiting if it's the last handle.
5518 result
= fclose(file
);
5520 state
= PyGILState_Ensure();
5522 if (_PyPopenProcs
) {
5523 if ((fileObj
= PyLong_FromVoidPtr(file
)) != NULL
&&
5524 (procObj
= PyDict_GetItem(_PyPopenProcs
,
5525 fileObj
)) != NULL
&&
5526 (hProcessObj
= PyList_GetItem(procObj
,0)) != NULL
&&
5527 (intObj
= PyList_GetItem(procObj
,1)) != NULL
) {
5529 hProcess
= PyLong_AsVoidPtr(hProcessObj
);
5530 file_count
= PyInt_AsLong(intObj
);
5532 if (file_count
> 1) {
5533 /* Still other files referencing process */
5535 PyList_SetItem(procObj
,1,
5536 PyInt_FromLong(file_count
));
5538 /* Last file for this process */
5539 if (result
!= EOF
&&
5540 WaitForSingleObject(hProcess
, INFINITE
) != WAIT_FAILED
&&
5541 GetExitCodeProcess(hProcess
, &exit_code
)) {
5542 /* Possible truncation here in 16-bit environments, but
5543 * real exit codes are just the lower byte in any event.
5547 /* Indicate failure - this will cause the file object
5548 * to raise an I/O error and translate the last Win32
5549 * error code from errno. We do have a problem with
5550 * last errors that overlap the normal errno table,
5551 * but that's a consistent problem with the file object.
5553 if (result
!= EOF
) {
5554 /* If the error wasn't from the fclose(), then
5555 * set errno for the file object error handling.
5557 errno
= GetLastError();
5562 /* Free up the native handle at this point */
5563 CloseHandle(hProcess
);
5566 /* Remove this file pointer from dictionary */
5567 PyDict_DelItem(_PyPopenProcs
, fileObj
);
5569 if (PyDict_Size(_PyPopenProcs
) == 0) {
5570 Py_DECREF(_PyPopenProcs
);
5571 _PyPopenProcs
= NULL
;
5574 } /* if object retrieval ok */
5576 Py_XDECREF(fileObj
);
5577 } /* if _PyPopenProcs */
5580 PyGILState_Release(state
);
5585 #else /* which OS? */
5587 posix_popen(PyObject
*self
, PyObject
*args
)
5594 if (!PyArg_ParseTuple(args
, "s|si:popen", &name
, &mode
, &bufsize
))
5596 /* Strip mode of binary or text modifiers */
5597 if (strcmp(mode
, "rb") == 0 || strcmp(mode
, "rt") == 0)
5599 else if (strcmp(mode
, "wb") == 0 || strcmp(mode
, "wt") == 0)
5601 Py_BEGIN_ALLOW_THREADS
5602 fp
= popen(name
, mode
);
5603 Py_END_ALLOW_THREADS
5605 return posix_error();
5606 f
= PyFile_FromFile(fp
, name
, mode
, pclose
);
5608 PyFile_SetBufSize(f
, bufsize
);
5612 #endif /* PYOS_??? */
5613 #endif /* HAVE_POPEN */
5617 PyDoc_STRVAR(posix_setuid__doc__
,
5619 Set the current process's user id.");
5622 posix_setuid(PyObject
*self
, PyObject
*args
)
5626 if (!PyArg_ParseTuple(args
, "l:setuid", &uid_arg
))
5629 if (uid
!= uid_arg
) {
5630 PyErr_SetString(PyExc_OverflowError
, "user id too big");
5633 if (setuid(uid
) < 0)
5634 return posix_error();
5638 #endif /* HAVE_SETUID */
5642 PyDoc_STRVAR(posix_seteuid__doc__
,
5644 Set the current process's effective user id.");
5647 posix_seteuid (PyObject
*self
, PyObject
*args
)
5651 if (!PyArg_ParseTuple(args
, "l", &euid_arg
))
5654 if (euid
!= euid_arg
) {
5655 PyErr_SetString(PyExc_OverflowError
, "user id too big");
5658 if (seteuid(euid
) < 0) {
5659 return posix_error();
5665 #endif /* HAVE_SETEUID */
5668 PyDoc_STRVAR(posix_setegid__doc__
,
5670 Set the current process's effective group id.");
5673 posix_setegid (PyObject
*self
, PyObject
*args
)
5677 if (!PyArg_ParseTuple(args
, "l", &egid_arg
))
5680 if (egid
!= egid_arg
) {
5681 PyErr_SetString(PyExc_OverflowError
, "group id too big");
5684 if (setegid(egid
) < 0) {
5685 return posix_error();
5691 #endif /* HAVE_SETEGID */
5693 #ifdef HAVE_SETREUID
5694 PyDoc_STRVAR(posix_setreuid__doc__
,
5695 "setreuid(ruid, euid)\n\n\
5696 Set the current process's real and effective user ids.");
5699 posix_setreuid (PyObject
*self
, PyObject
*args
)
5701 long ruid_arg
, euid_arg
;
5703 if (!PyArg_ParseTuple(args
, "ll", &ruid_arg
, &euid_arg
))
5706 ruid
= (uid_t
)-1; /* let the compiler choose how -1 fits */
5708 ruid
= ruid_arg
; /* otherwise, assign from our long */
5713 if ((euid_arg
!= -1 && euid
!= euid_arg
) ||
5714 (ruid_arg
!= -1 && ruid
!= ruid_arg
)) {
5715 PyErr_SetString(PyExc_OverflowError
, "user id too big");
5718 if (setreuid(ruid
, euid
) < 0) {
5719 return posix_error();
5725 #endif /* HAVE_SETREUID */
5727 #ifdef HAVE_SETREGID
5728 PyDoc_STRVAR(posix_setregid__doc__
,
5729 "setregid(rgid, egid)\n\n\
5730 Set the current process's real and effective group ids.");
5733 posix_setregid (PyObject
*self
, PyObject
*args
)
5735 long rgid_arg
, egid_arg
;
5737 if (!PyArg_ParseTuple(args
, "ll", &rgid_arg
, &egid_arg
))
5740 rgid
= (gid_t
)-1; /* let the compiler choose how -1 fits */
5742 rgid
= rgid_arg
; /* otherwise, assign from our long */
5747 if ((egid_arg
!= -1 && egid
!= egid_arg
) ||
5748 (rgid_arg
!= -1 && rgid
!= rgid_arg
)) {
5749 PyErr_SetString(PyExc_OverflowError
, "group id too big");
5752 if (setregid(rgid
, egid
) < 0) {
5753 return posix_error();
5759 #endif /* HAVE_SETREGID */
5762 PyDoc_STRVAR(posix_setgid__doc__
,
5764 Set the current process's group id.");
5767 posix_setgid(PyObject
*self
, PyObject
*args
)
5771 if (!PyArg_ParseTuple(args
, "l:setgid", &gid_arg
))
5774 if (gid
!= gid_arg
) {
5775 PyErr_SetString(PyExc_OverflowError
, "group id too big");
5778 if (setgid(gid
) < 0)
5779 return posix_error();
5783 #endif /* HAVE_SETGID */
5785 #ifdef HAVE_SETGROUPS
5786 PyDoc_STRVAR(posix_setgroups__doc__
,
5787 "setgroups(list)\n\n\
5788 Set the groups of the current process to list.");
5791 posix_setgroups(PyObject
*self
, PyObject
*groups
)
5794 gid_t grouplist
[MAX_GROUPS
];
5796 if (!PySequence_Check(groups
)) {
5797 PyErr_SetString(PyExc_TypeError
, "setgroups argument must be a sequence");
5800 len
= PySequence_Size(groups
);
5801 if (len
> MAX_GROUPS
) {
5802 PyErr_SetString(PyExc_ValueError
, "too many groups");
5805 for(i
= 0; i
< len
; i
++) {
5807 elem
= PySequence_GetItem(groups
, i
);
5810 if (!PyInt_Check(elem
)) {
5811 if (!PyLong_Check(elem
)) {
5812 PyErr_SetString(PyExc_TypeError
,
5813 "groups must be integers");
5817 unsigned long x
= PyLong_AsUnsignedLong(elem
);
5818 if (PyErr_Occurred()) {
5819 PyErr_SetString(PyExc_TypeError
,
5820 "group id too big");
5825 /* read back to see if it fits in gid_t */
5826 if (grouplist
[i
] != x
) {
5827 PyErr_SetString(PyExc_TypeError
,
5828 "group id too big");
5834 long x
= PyInt_AsLong(elem
);
5836 if (grouplist
[i
] != x
) {
5837 PyErr_SetString(PyExc_TypeError
,
5838 "group id too big");
5846 if (setgroups(len
, grouplist
) < 0)
5847 return posix_error();
5851 #endif /* HAVE_SETGROUPS */
5853 #if defined(HAVE_WAIT3) || defined(HAVE_WAIT4)
5855 wait_helper(pid_t pid
, int status
, struct rusage
*ru
)
5858 static PyObject
*struct_rusage
;
5861 return posix_error();
5863 if (struct_rusage
== NULL
) {
5864 PyObject
*m
= PyImport_ImportModuleNoBlock("resource");
5867 struct_rusage
= PyObject_GetAttrString(m
, "struct_rusage");
5869 if (struct_rusage
== NULL
)
5873 /* XXX(nnorwitz): Copied (w/mods) from resource.c, there should be only one. */
5874 result
= PyStructSequence_New((PyTypeObject
*) struct_rusage
);
5879 #define doubletime(TV) ((double)(TV).tv_sec + (TV).tv_usec * 0.000001)
5882 PyStructSequence_SET_ITEM(result
, 0,
5883 PyFloat_FromDouble(doubletime(ru
->ru_utime
)));
5884 PyStructSequence_SET_ITEM(result
, 1,
5885 PyFloat_FromDouble(doubletime(ru
->ru_stime
)));
5886 #define SET_INT(result, index, value)\
5887 PyStructSequence_SET_ITEM(result, index, PyInt_FromLong(value))
5888 SET_INT(result
, 2, ru
->ru_maxrss
);
5889 SET_INT(result
, 3, ru
->ru_ixrss
);
5890 SET_INT(result
, 4, ru
->ru_idrss
);
5891 SET_INT(result
, 5, ru
->ru_isrss
);
5892 SET_INT(result
, 6, ru
->ru_minflt
);
5893 SET_INT(result
, 7, ru
->ru_majflt
);
5894 SET_INT(result
, 8, ru
->ru_nswap
);
5895 SET_INT(result
, 9, ru
->ru_inblock
);
5896 SET_INT(result
, 10, ru
->ru_oublock
);
5897 SET_INT(result
, 11, ru
->ru_msgsnd
);
5898 SET_INT(result
, 12, ru
->ru_msgrcv
);
5899 SET_INT(result
, 13, ru
->ru_nsignals
);
5900 SET_INT(result
, 14, ru
->ru_nvcsw
);
5901 SET_INT(result
, 15, ru
->ru_nivcsw
);
5904 if (PyErr_Occurred()) {
5909 return Py_BuildValue("NiN", PyLong_FromPid(pid
), status
, result
);
5911 #endif /* HAVE_WAIT3 || HAVE_WAIT4 */
5914 PyDoc_STRVAR(posix_wait3__doc__
,
5915 "wait3(options) -> (pid, status, rusage)\n\n\
5916 Wait for completion of a child process.");
5919 posix_wait3(PyObject
*self
, PyObject
*args
)
5925 WAIT_STATUS_INT(status
) = 0;
5927 if (!PyArg_ParseTuple(args
, "i:wait3", &options
))
5930 Py_BEGIN_ALLOW_THREADS
5931 pid
= wait3(&status
, options
, &ru
);
5932 Py_END_ALLOW_THREADS
5934 return wait_helper(pid
, WAIT_STATUS_INT(status
), &ru
);
5936 #endif /* HAVE_WAIT3 */
5939 PyDoc_STRVAR(posix_wait4__doc__
,
5940 "wait4(pid, options) -> (pid, status, rusage)\n\n\
5941 Wait for completion of a given child process.");
5944 posix_wait4(PyObject
*self
, PyObject
*args
)
5950 WAIT_STATUS_INT(status
) = 0;
5952 if (!PyArg_ParseTuple(args
, PARSE_PID
"i:wait4", &pid
, &options
))
5955 Py_BEGIN_ALLOW_THREADS
5956 pid
= wait4(pid
, &status
, options
, &ru
);
5957 Py_END_ALLOW_THREADS
5959 return wait_helper(pid
, WAIT_STATUS_INT(status
), &ru
);
5961 #endif /* HAVE_WAIT4 */
5964 PyDoc_STRVAR(posix_waitpid__doc__
,
5965 "waitpid(pid, options) -> (pid, status)\n\n\
5966 Wait for completion of a given child process.");
5969 posix_waitpid(PyObject
*self
, PyObject
*args
)
5974 WAIT_STATUS_INT(status
) = 0;
5976 if (!PyArg_ParseTuple(args
, PARSE_PID
"i:waitpid", &pid
, &options
))
5978 Py_BEGIN_ALLOW_THREADS
5979 pid
= waitpid(pid
, &status
, options
);
5980 Py_END_ALLOW_THREADS
5982 return posix_error();
5984 return Py_BuildValue("Ni", PyLong_FromPid(pid
), WAIT_STATUS_INT(status
));
5987 #elif defined(HAVE_CWAIT)
5989 /* MS C has a variant of waitpid() that's usable for most purposes. */
5990 PyDoc_STRVAR(posix_waitpid__doc__
,
5991 "waitpid(pid, options) -> (pid, status << 8)\n\n"
5992 "Wait for completion of a given process. options is ignored on Windows.");
5995 posix_waitpid(PyObject
*self
, PyObject
*args
)
5998 int status
, options
;
6000 if (!PyArg_ParseTuple(args
, PARSE_PID
"i:waitpid", &pid
, &options
))
6002 Py_BEGIN_ALLOW_THREADS
6003 pid
= _cwait(&status
, pid
, options
);
6004 Py_END_ALLOW_THREADS
6006 return posix_error();
6008 /* shift the status left a byte so this is more like the POSIX waitpid */
6009 return Py_BuildValue("Ni", PyLong_FromPid(pid
), status
<< 8);
6011 #endif /* HAVE_WAITPID || HAVE_CWAIT */
6014 PyDoc_STRVAR(posix_wait__doc__
,
6015 "wait() -> (pid, status)\n\n\
6016 Wait for completion of a child process.");
6019 posix_wait(PyObject
*self
, PyObject
*noargs
)
6023 WAIT_STATUS_INT(status
) = 0;
6025 Py_BEGIN_ALLOW_THREADS
6026 pid
= wait(&status
);
6027 Py_END_ALLOW_THREADS
6029 return posix_error();
6031 return Py_BuildValue("Ni", PyLong_FromPid(pid
), WAIT_STATUS_INT(status
));
6036 PyDoc_STRVAR(posix_lstat__doc__
,
6037 "lstat(path) -> stat result\n\n\
6038 Like stat(path), but do not follow symbolic links.");
6041 posix_lstat(PyObject
*self
, PyObject
*args
)
6044 return posix_do_stat(self
, args
, "et:lstat", lstat
, NULL
, NULL
);
6045 #else /* !HAVE_LSTAT */
6047 return posix_do_stat(self
, args
, "et:lstat", STAT
, "U:lstat", win32_wstat
);
6049 return posix_do_stat(self
, args
, "et:lstat", STAT
, NULL
, NULL
);
6051 #endif /* !HAVE_LSTAT */
6055 #ifdef HAVE_READLINK
6056 PyDoc_STRVAR(posix_readlink__doc__
,
6057 "readlink(path) -> path\n\n\
6058 Return a string representing the path to which the symbolic link points.");
6061 posix_readlink(PyObject
*self
, PyObject
*args
)
6064 char buf
[MAXPATHLEN
];
6067 #ifdef Py_USING_UNICODE
6068 int arg_is_unicode
= 0;
6071 if (!PyArg_ParseTuple(args
, "et:readlink",
6072 Py_FileSystemDefaultEncoding
, &path
))
6074 #ifdef Py_USING_UNICODE
6075 v
= PySequence_GetItem(args
, 0);
6081 if (PyUnicode_Check(v
)) {
6087 Py_BEGIN_ALLOW_THREADS
6088 n
= readlink(path
, buf
, (int) sizeof buf
);
6089 Py_END_ALLOW_THREADS
6091 return posix_error_with_allocated_filename(path
);
6094 v
= PyString_FromStringAndSize(buf
, n
);
6095 #ifdef Py_USING_UNICODE
6096 if (arg_is_unicode
) {
6099 w
= PyUnicode_FromEncodedObject(v
,
6100 Py_FileSystemDefaultEncoding
,
6107 /* fall back to the original byte string, as
6108 discussed in patch #683592 */
6115 #endif /* HAVE_READLINK */
6119 PyDoc_STRVAR(posix_symlink__doc__
,
6120 "symlink(src, dst)\n\n\
6121 Create a symbolic link pointing to src named dst.");
6124 posix_symlink(PyObject
*self
, PyObject
*args
)
6126 return posix_2str(args
, "etet:symlink", symlink
);
6128 #endif /* HAVE_SYMLINK */
6132 #if defined(PYCC_VACPP) && defined(PYOS_OS2)
6138 Py_BEGIN_ALLOW_THREADS
6139 DosQuerySysInfo(QSV_MS_COUNT
, QSV_MS_COUNT
, &value
, sizeof(value
));
6140 Py_END_ALLOW_THREADS
6146 posix_times(PyObject
*self
, PyObject
*noargs
)
6148 /* Currently Only Uptime is Provided -- Others Later */
6149 return Py_BuildValue("ddddd",
6150 (double)0 /* t.tms_utime / HZ */,
6151 (double)0 /* t.tms_stime / HZ */,
6152 (double)0 /* t.tms_cutime / HZ */,
6153 (double)0 /* t.tms_cstime / HZ */,
6154 (double)system_uptime() / 1000);
6157 #define NEED_TICKS_PER_SECOND
6158 static long ticks_per_second
= -1;
6160 posix_times(PyObject
*self
, PyObject
*noargs
)
6166 if (c
== (clock_t) -1)
6167 return posix_error();
6168 return Py_BuildValue("ddddd",
6169 (double)t
.tms_utime
/ ticks_per_second
,
6170 (double)t
.tms_stime
/ ticks_per_second
,
6171 (double)t
.tms_cutime
/ ticks_per_second
,
6172 (double)t
.tms_cstime
/ ticks_per_second
,
6173 (double)c
/ ticks_per_second
);
6175 #endif /* not OS2 */
6176 #endif /* HAVE_TIMES */
6180 #define HAVE_TIMES /* so the method table will pick it up */
6182 posix_times(PyObject
*self
, PyObject
*noargs
)
6184 FILETIME create
, exit
, kernel
, user
;
6186 hProc
= GetCurrentProcess();
6187 GetProcessTimes(hProc
, &create
, &exit
, &kernel
, &user
);
6188 /* The fields of a FILETIME structure are the hi and lo part
6189 of a 64-bit value expressed in 100 nanosecond units.
6190 1e7 is one second in such units; 1e-7 the inverse.
6191 429.4967296 is 2**32 / 1e7 or 2**32 * 1e-7.
6193 return Py_BuildValue(
6195 (double)(user
.dwHighDateTime
*429.4967296 +
6196 user
.dwLowDateTime
*1e-7),
6197 (double)(kernel
.dwHighDateTime
*429.4967296 +
6198 kernel
.dwLowDateTime
*1e-7),
6203 #endif /* MS_WINDOWS */
6206 PyDoc_STRVAR(posix_times__doc__
,
6207 "times() -> (utime, stime, cutime, cstime, elapsed_time)\n\n\
6208 Return a tuple of floating point numbers indicating process times.");
6213 PyDoc_STRVAR(posix_getsid__doc__
,
6214 "getsid(pid) -> sid\n\n\
6215 Call the system call getsid().");
6218 posix_getsid(PyObject
*self
, PyObject
*args
)
6222 if (!PyArg_ParseTuple(args
, PARSE_PID
":getsid", &pid
))
6226 return posix_error();
6227 return PyInt_FromLong((long)sid
);
6229 #endif /* HAVE_GETSID */
6233 PyDoc_STRVAR(posix_setsid__doc__
,
6235 Call the system call setsid().");
6238 posix_setsid(PyObject
*self
, PyObject
*noargs
)
6241 return posix_error();
6245 #endif /* HAVE_SETSID */
6248 PyDoc_STRVAR(posix_setpgid__doc__
,
6249 "setpgid(pid, pgrp)\n\n\
6250 Call the system call setpgid().");
6253 posix_setpgid(PyObject
*self
, PyObject
*args
)
6257 if (!PyArg_ParseTuple(args
, PARSE_PID
"i:setpgid", &pid
, &pgrp
))
6259 if (setpgid(pid
, pgrp
) < 0)
6260 return posix_error();
6264 #endif /* HAVE_SETPGID */
6267 #ifdef HAVE_TCGETPGRP
6268 PyDoc_STRVAR(posix_tcgetpgrp__doc__
,
6269 "tcgetpgrp(fd) -> pgid\n\n\
6270 Return the process group associated with the terminal given by a fd.");
6273 posix_tcgetpgrp(PyObject
*self
, PyObject
*args
)
6277 if (!PyArg_ParseTuple(args
, "i:tcgetpgrp", &fd
))
6279 pgid
= tcgetpgrp(fd
);
6281 return posix_error();
6282 return PyLong_FromPid(pgid
);
6284 #endif /* HAVE_TCGETPGRP */
6287 #ifdef HAVE_TCSETPGRP
6288 PyDoc_STRVAR(posix_tcsetpgrp__doc__
,
6289 "tcsetpgrp(fd, pgid)\n\n\
6290 Set the process group associated with the terminal given by a fd.");
6293 posix_tcsetpgrp(PyObject
*self
, PyObject
*args
)
6297 if (!PyArg_ParseTuple(args
, "i" PARSE_PID
":tcsetpgrp", &fd
, &pgid
))
6299 if (tcsetpgrp(fd
, pgid
) < 0)
6300 return posix_error();
6304 #endif /* HAVE_TCSETPGRP */
6306 /* Functions acting on file descriptors */
6308 PyDoc_STRVAR(posix_open__doc__
,
6309 "open(filename, flag [, mode=0777]) -> fd\n\n\
6310 Open a file (for low level IO).");
6313 posix_open(PyObject
*self
, PyObject
*args
)
6321 PyUnicodeObject
*po
;
6322 if (PyArg_ParseTuple(args
, "Ui|i:mkdir", &po
, &flag
, &mode
)) {
6323 Py_BEGIN_ALLOW_THREADS
6324 /* PyUnicode_AS_UNICODE OK without thread
6325 lock as it is a simple dereference. */
6326 fd
= _wopen(PyUnicode_AS_UNICODE(po
), flag
, mode
);
6327 Py_END_ALLOW_THREADS
6329 return posix_error();
6330 return PyInt_FromLong((long)fd
);
6332 /* Drop the argument parsing error as narrow strings
6337 if (!PyArg_ParseTuple(args
, "eti|i",
6338 Py_FileSystemDefaultEncoding
, &file
,
6342 Py_BEGIN_ALLOW_THREADS
6343 fd
= open(file
, flag
, mode
);
6344 Py_END_ALLOW_THREADS
6346 return posix_error_with_allocated_filename(file
);
6348 return PyInt_FromLong((long)fd
);
6352 PyDoc_STRVAR(posix_close__doc__
,
6354 Close a file descriptor (for low level IO).");
6357 posix_close(PyObject
*self
, PyObject
*args
)
6360 if (!PyArg_ParseTuple(args
, "i:close", &fd
))
6362 if (!_PyVerify_fd(fd
))
6363 return posix_error();
6364 Py_BEGIN_ALLOW_THREADS
6366 Py_END_ALLOW_THREADS
6368 return posix_error();
6374 PyDoc_STRVAR(posix_closerange__doc__
,
6375 "closerange(fd_low, fd_high)\n\n\
6376 Closes all file descriptors in [fd_low, fd_high), ignoring errors.");
6379 posix_closerange(PyObject
*self
, PyObject
*args
)
6381 int fd_from
, fd_to
, i
;
6382 if (!PyArg_ParseTuple(args
, "ii:closerange", &fd_from
, &fd_to
))
6384 Py_BEGIN_ALLOW_THREADS
6385 for (i
= fd_from
; i
< fd_to
; i
++)
6386 if (_PyVerify_fd(i
))
6388 Py_END_ALLOW_THREADS
6393 PyDoc_STRVAR(posix_dup__doc__
,
6394 "dup(fd) -> fd2\n\n\
6395 Return a duplicate of a file descriptor.");
6398 posix_dup(PyObject
*self
, PyObject
*args
)
6401 if (!PyArg_ParseTuple(args
, "i:dup", &fd
))
6403 if (!_PyVerify_fd(fd
))
6404 return posix_error();
6405 Py_BEGIN_ALLOW_THREADS
6407 Py_END_ALLOW_THREADS
6409 return posix_error();
6410 return PyInt_FromLong((long)fd
);
6414 PyDoc_STRVAR(posix_dup2__doc__
,
6415 "dup2(old_fd, new_fd)\n\n\
6416 Duplicate file descriptor.");
6419 posix_dup2(PyObject
*self
, PyObject
*args
)
6422 if (!PyArg_ParseTuple(args
, "ii:dup2", &fd
, &fd2
))
6424 if (!_PyVerify_fd_dup2(fd
, fd2
))
6425 return posix_error();
6426 Py_BEGIN_ALLOW_THREADS
6427 res
= dup2(fd
, fd2
);
6428 Py_END_ALLOW_THREADS
6430 return posix_error();
6436 PyDoc_STRVAR(posix_lseek__doc__
,
6437 "lseek(fd, pos, how) -> newpos\n\n\
6438 Set the current position of a file descriptor.");
6441 posix_lseek(PyObject
*self
, PyObject
*args
)
6444 #if defined(MS_WIN64) || defined(MS_WINDOWS)
6445 PY_LONG_LONG pos
, res
;
6450 if (!PyArg_ParseTuple(args
, "iOi:lseek", &fd
, &posobj
, &how
))
6453 /* Turn 0, 1, 2 into SEEK_{SET,CUR,END} */
6455 case 0: how
= SEEK_SET
; break;
6456 case 1: how
= SEEK_CUR
; break;
6457 case 2: how
= SEEK_END
; break;
6459 #endif /* SEEK_END */
6461 #if !defined(HAVE_LARGEFILE_SUPPORT)
6462 pos
= PyInt_AsLong(posobj
);
6464 pos
= PyLong_Check(posobj
) ?
6465 PyLong_AsLongLong(posobj
) : PyInt_AsLong(posobj
);
6467 if (PyErr_Occurred())
6470 if (!_PyVerify_fd(fd
))
6471 return posix_error();
6472 Py_BEGIN_ALLOW_THREADS
6473 #if defined(MS_WIN64) || defined(MS_WINDOWS)
6474 res
= _lseeki64(fd
, pos
, how
);
6476 res
= lseek(fd
, pos
, how
);
6478 Py_END_ALLOW_THREADS
6480 return posix_error();
6482 #if !defined(HAVE_LARGEFILE_SUPPORT)
6483 return PyInt_FromLong(res
);
6485 return PyLong_FromLongLong(res
);
6490 PyDoc_STRVAR(posix_read__doc__
,
6491 "read(fd, buffersize) -> string\n\n\
6492 Read a file descriptor.");
6495 posix_read(PyObject
*self
, PyObject
*args
)
6499 if (!PyArg_ParseTuple(args
, "ii:read", &fd
, &size
))
6503 return posix_error();
6505 buffer
= PyString_FromStringAndSize((char *)NULL
, size
);
6508 if (!_PyVerify_fd(fd
))
6509 return posix_error();
6510 Py_BEGIN_ALLOW_THREADS
6511 n
= read(fd
, PyString_AsString(buffer
), size
);
6512 Py_END_ALLOW_THREADS
6515 return posix_error();
6518 _PyString_Resize(&buffer
, n
);
6523 PyDoc_STRVAR(posix_write__doc__
,
6524 "write(fd, string) -> byteswritten\n\n\
6525 Write a string to a file descriptor.");
6528 posix_write(PyObject
*self
, PyObject
*args
)
6534 if (!PyArg_ParseTuple(args
, "is*:write", &fd
, &pbuf
))
6536 if (!_PyVerify_fd(fd
))
6537 return posix_error();
6538 Py_BEGIN_ALLOW_THREADS
6539 size
= write(fd
, pbuf
.buf
, (size_t)pbuf
.len
);
6540 Py_END_ALLOW_THREADS
6541 PyBuffer_Release(&pbuf
);
6543 return posix_error();
6544 return PyInt_FromSsize_t(size
);
6548 PyDoc_STRVAR(posix_fstat__doc__
,
6549 "fstat(fd) -> stat result\n\n\
6550 Like stat(), but for an open file descriptor.");
6553 posix_fstat(PyObject
*self
, PyObject
*args
)
6558 if (!PyArg_ParseTuple(args
, "i:fstat", &fd
))
6561 /* on OpenVMS we must ensure that all bytes are written to the file */
6564 if (!_PyVerify_fd(fd
))
6565 return posix_error();
6566 Py_BEGIN_ALLOW_THREADS
6567 res
= FSTAT(fd
, &st
);
6568 Py_END_ALLOW_THREADS
6571 return win32_error("fstat", NULL
);
6573 return posix_error();
6577 return _pystat_fromstructstat(&st
);
6581 PyDoc_STRVAR(posix_fdopen__doc__
,
6582 "fdopen(fd [, mode='r' [, bufsize]]) -> file_object\n\n\
6583 Return an open file object connected to a file descriptor.");
6586 posix_fdopen(PyObject
*self
, PyObject
*args
)
6589 char *orgmode
= "r";
6594 if (!PyArg_ParseTuple(args
, "i|si", &fd
, &orgmode
, &bufsize
))
6597 /* Sanitize mode. See fileobject.c */
6598 mode
= PyMem_MALLOC(strlen(orgmode
)+3);
6603 strcpy(mode
, orgmode
);
6604 if (_PyFile_SanitizeMode(mode
)) {
6608 if (!_PyVerify_fd(fd
))
6609 return posix_error();
6610 Py_BEGIN_ALLOW_THREADS
6611 #if !defined(MS_WINDOWS) && defined(HAVE_FCNTL_H)
6612 if (mode
[0] == 'a') {
6613 /* try to make sure the O_APPEND flag is set */
6615 flags
= fcntl(fd
, F_GETFL
);
6617 fcntl(fd
, F_SETFL
, flags
| O_APPEND
);
6618 fp
= fdopen(fd
, mode
);
6619 if (fp
== NULL
&& flags
!= -1)
6620 /* restore old mode if fdopen failed */
6621 fcntl(fd
, F_SETFL
, flags
);
6623 fp
= fdopen(fd
, mode
);
6626 fp
= fdopen(fd
, mode
);
6628 Py_END_ALLOW_THREADS
6631 return posix_error();
6632 f
= PyFile_FromFile(fp
, "<fdopen>", orgmode
, fclose
);
6634 PyFile_SetBufSize(f
, bufsize
);
6638 PyDoc_STRVAR(posix_isatty__doc__
,
6639 "isatty(fd) -> bool\n\n\
6640 Return True if the file descriptor 'fd' is an open file descriptor\n\
6641 connected to the slave end of a terminal.");
6644 posix_isatty(PyObject
*self
, PyObject
*args
)
6647 if (!PyArg_ParseTuple(args
, "i:isatty", &fd
))
6649 if (!_PyVerify_fd(fd
))
6650 return PyBool_FromLong(0);
6651 return PyBool_FromLong(isatty(fd
));
6655 PyDoc_STRVAR(posix_pipe__doc__
,
6656 "pipe() -> (read_end, write_end)\n\n\
6660 posix_pipe(PyObject
*self
, PyObject
*noargs
)
6662 #if defined(PYOS_OS2)
6666 Py_BEGIN_ALLOW_THREADS
6667 rc
= DosCreatePipe( &read
, &write
, 4096);
6668 Py_END_ALLOW_THREADS
6670 return os2_error(rc
);
6672 return Py_BuildValue("(ii)", read
, write
);
6674 #if !defined(MS_WINDOWS)
6677 Py_BEGIN_ALLOW_THREADS
6679 Py_END_ALLOW_THREADS
6681 return posix_error();
6682 return Py_BuildValue("(ii)", fds
[0], fds
[1]);
6683 #else /* MS_WINDOWS */
6685 int read_fd
, write_fd
;
6687 Py_BEGIN_ALLOW_THREADS
6688 ok
= CreatePipe(&read
, &write
, NULL
, 0);
6689 Py_END_ALLOW_THREADS
6691 return win32_error("CreatePipe", NULL
);
6692 read_fd
= _open_osfhandle((Py_intptr_t
)read
, 0);
6693 write_fd
= _open_osfhandle((Py_intptr_t
)write
, 1);
6694 return Py_BuildValue("(ii)", read_fd
, write_fd
);
6695 #endif /* MS_WINDOWS */
6698 #endif /* HAVE_PIPE */
6702 PyDoc_STRVAR(posix_mkfifo__doc__
,
6703 "mkfifo(filename [, mode=0666])\n\n\
6704 Create a FIFO (a POSIX named pipe).");
6707 posix_mkfifo(PyObject
*self
, PyObject
*args
)
6712 if (!PyArg_ParseTuple(args
, "s|i:mkfifo", &filename
, &mode
))
6714 Py_BEGIN_ALLOW_THREADS
6715 res
= mkfifo(filename
, mode
);
6716 Py_END_ALLOW_THREADS
6718 return posix_error();
6725 #if defined(HAVE_MKNOD) && defined(HAVE_MAKEDEV)
6726 PyDoc_STRVAR(posix_mknod__doc__
,
6727 "mknod(filename [, mode=0600, device])\n\n\
6728 Create a filesystem node (file, device special file or named pipe)\n\
6729 named filename. mode specifies both the permissions to use and the\n\
6730 type of node to be created, being combined (bitwise OR) with one of\n\
6731 S_IFREG, S_IFCHR, S_IFBLK, and S_IFIFO. For S_IFCHR and S_IFBLK,\n\
6732 device defines the newly created device special file (probably using\n\
6733 os.makedev()), otherwise it is ignored.");
6737 posix_mknod(PyObject
*self
, PyObject
*args
)
6743 if (!PyArg_ParseTuple(args
, "s|ii:mknod", &filename
, &mode
, &device
))
6745 Py_BEGIN_ALLOW_THREADS
6746 res
= mknod(filename
, mode
, device
);
6747 Py_END_ALLOW_THREADS
6749 return posix_error();
6755 #ifdef HAVE_DEVICE_MACROS
6756 PyDoc_STRVAR(posix_major__doc__
,
6757 "major(device) -> major number\n\
6758 Extracts a device major number from a raw device number.");
6761 posix_major(PyObject
*self
, PyObject
*args
)
6764 if (!PyArg_ParseTuple(args
, "i:major", &device
))
6766 return PyInt_FromLong((long)major(device
));
6769 PyDoc_STRVAR(posix_minor__doc__
,
6770 "minor(device) -> minor number\n\
6771 Extracts a device minor number from a raw device number.");
6774 posix_minor(PyObject
*self
, PyObject
*args
)
6777 if (!PyArg_ParseTuple(args
, "i:minor", &device
))
6779 return PyInt_FromLong((long)minor(device
));
6782 PyDoc_STRVAR(posix_makedev__doc__
,
6783 "makedev(major, minor) -> device number\n\
6784 Composes a raw device number from the major and minor device numbers.");
6787 posix_makedev(PyObject
*self
, PyObject
*args
)
6790 if (!PyArg_ParseTuple(args
, "ii:makedev", &major
, &minor
))
6792 return PyInt_FromLong((long)makedev(major
, minor
));
6794 #endif /* device macros */
6797 #ifdef HAVE_FTRUNCATE
6798 PyDoc_STRVAR(posix_ftruncate__doc__
,
6799 "ftruncate(fd, length)\n\n\
6800 Truncate a file to a specified length.");
6803 posix_ftruncate(PyObject
*self
, PyObject
*args
)
6810 if (!PyArg_ParseTuple(args
, "iO:ftruncate", &fd
, &lenobj
))
6813 #if !defined(HAVE_LARGEFILE_SUPPORT)
6814 length
= PyInt_AsLong(lenobj
);
6816 length
= PyLong_Check(lenobj
) ?
6817 PyLong_AsLongLong(lenobj
) : PyInt_AsLong(lenobj
);
6819 if (PyErr_Occurred())
6822 Py_BEGIN_ALLOW_THREADS
6823 res
= ftruncate(fd
, length
);
6824 Py_END_ALLOW_THREADS
6826 return posix_error();
6833 PyDoc_STRVAR(posix_putenv__doc__
,
6834 "putenv(key, value)\n\n\
6835 Change or add an environment variable.");
6837 /* Save putenv() parameters as values here, so we can collect them when they
6838 * get re-set with another call for the same key. */
6839 static PyObject
*posix_putenv_garbage
;
6842 posix_putenv(PyObject
*self
, PyObject
*args
)
6849 if (!PyArg_ParseTuple(args
, "ss:putenv", &s1
, &s2
))
6852 #if defined(PYOS_OS2)
6853 if (stricmp(s1
, "BEGINLIBPATH") == 0) {
6856 rc
= DosSetExtLIBPATH(s2
, BEGIN_LIBPATH
);
6858 return os2_error(rc
);
6860 } else if (stricmp(s1
, "ENDLIBPATH") == 0) {
6863 rc
= DosSetExtLIBPATH(s2
, END_LIBPATH
);
6865 return os2_error(rc
);
6869 /* XXX This can leak memory -- not easy to fix :-( */
6870 len
= strlen(s1
) + strlen(s2
) + 2;
6871 /* len includes space for a trailing \0; the size arg to
6872 PyString_FromStringAndSize does not count that */
6873 newstr
= PyString_FromStringAndSize(NULL
, (int)len
- 1);
6875 return PyErr_NoMemory();
6876 newenv
= PyString_AS_STRING(newstr
);
6877 PyOS_snprintf(newenv
, len
, "%s=%s", s1
, s2
);
6878 if (putenv(newenv
)) {
6883 /* Install the first arg and newstr in posix_putenv_garbage;
6884 * this will cause previous value to be collected. This has to
6885 * happen after the real putenv() call because the old value
6886 * was still accessible until then. */
6887 if (PyDict_SetItem(posix_putenv_garbage
,
6888 PyTuple_GET_ITEM(args
, 0), newstr
)) {
6889 /* really not much we can do; just leak */
6896 #if defined(PYOS_OS2)
6904 #ifdef HAVE_UNSETENV
6905 PyDoc_STRVAR(posix_unsetenv__doc__
,
6907 Delete an environment variable.");
6910 posix_unsetenv(PyObject
*self
, PyObject
*args
)
6914 if (!PyArg_ParseTuple(args
, "s:unsetenv", &s1
))
6919 /* Remove the key from posix_putenv_garbage;
6920 * this will cause it to be collected. This has to
6921 * happen after the real unsetenv() call because the
6922 * old value was still accessible until then.
6924 if (PyDict_DelItem(posix_putenv_garbage
,
6925 PyTuple_GET_ITEM(args
, 0))) {
6926 /* really not much we can do; just leak */
6933 #endif /* unsetenv */
6935 PyDoc_STRVAR(posix_strerror__doc__
,
6936 "strerror(code) -> string\n\n\
6937 Translate an error code to a message string.");
6940 posix_strerror(PyObject
*self
, PyObject
*args
)
6944 if (!PyArg_ParseTuple(args
, "i:strerror", &code
))
6946 message
= strerror(code
);
6947 if (message
== NULL
) {
6948 PyErr_SetString(PyExc_ValueError
,
6949 "strerror() argument out of range");
6952 return PyString_FromString(message
);
6956 #ifdef HAVE_SYS_WAIT_H
6959 PyDoc_STRVAR(posix_WCOREDUMP__doc__
,
6960 "WCOREDUMP(status) -> bool\n\n\
6961 Return True if the process returning 'status' was dumped to a core file.");
6964 posix_WCOREDUMP(PyObject
*self
, PyObject
*args
)
6967 WAIT_STATUS_INT(status
) = 0;
6969 if (!PyArg_ParseTuple(args
, "i:WCOREDUMP", &WAIT_STATUS_INT(status
)))
6972 return PyBool_FromLong(WCOREDUMP(status
));
6974 #endif /* WCOREDUMP */
6977 PyDoc_STRVAR(posix_WIFCONTINUED__doc__
,
6978 "WIFCONTINUED(status) -> bool\n\n\
6979 Return True if the process returning 'status' was continued from a\n\
6980 job control stop.");
6983 posix_WIFCONTINUED(PyObject
*self
, PyObject
*args
)
6986 WAIT_STATUS_INT(status
) = 0;
6988 if (!PyArg_ParseTuple(args
, "i:WCONTINUED", &WAIT_STATUS_INT(status
)))
6991 return PyBool_FromLong(WIFCONTINUED(status
));
6993 #endif /* WIFCONTINUED */
6996 PyDoc_STRVAR(posix_WIFSTOPPED__doc__
,
6997 "WIFSTOPPED(status) -> bool\n\n\
6998 Return True if the process returning 'status' was stopped.");
7001 posix_WIFSTOPPED(PyObject
*self
, PyObject
*args
)
7004 WAIT_STATUS_INT(status
) = 0;
7006 if (!PyArg_ParseTuple(args
, "i:WIFSTOPPED", &WAIT_STATUS_INT(status
)))
7009 return PyBool_FromLong(WIFSTOPPED(status
));
7011 #endif /* WIFSTOPPED */
7014 PyDoc_STRVAR(posix_WIFSIGNALED__doc__
,
7015 "WIFSIGNALED(status) -> bool\n\n\
7016 Return True if the process returning 'status' was terminated by a signal.");
7019 posix_WIFSIGNALED(PyObject
*self
, PyObject
*args
)
7022 WAIT_STATUS_INT(status
) = 0;
7024 if (!PyArg_ParseTuple(args
, "i:WIFSIGNALED", &WAIT_STATUS_INT(status
)))
7027 return PyBool_FromLong(WIFSIGNALED(status
));
7029 #endif /* WIFSIGNALED */
7032 PyDoc_STRVAR(posix_WIFEXITED__doc__
,
7033 "WIFEXITED(status) -> bool\n\n\
7034 Return true if the process returning 'status' exited using the exit()\n\
7038 posix_WIFEXITED(PyObject
*self
, PyObject
*args
)
7041 WAIT_STATUS_INT(status
) = 0;
7043 if (!PyArg_ParseTuple(args
, "i:WIFEXITED", &WAIT_STATUS_INT(status
)))
7046 return PyBool_FromLong(WIFEXITED(status
));
7048 #endif /* WIFEXITED */
7051 PyDoc_STRVAR(posix_WEXITSTATUS__doc__
,
7052 "WEXITSTATUS(status) -> integer\n\n\
7053 Return the process return code from 'status'.");
7056 posix_WEXITSTATUS(PyObject
*self
, PyObject
*args
)
7059 WAIT_STATUS_INT(status
) = 0;
7061 if (!PyArg_ParseTuple(args
, "i:WEXITSTATUS", &WAIT_STATUS_INT(status
)))
7064 return Py_BuildValue("i", WEXITSTATUS(status
));
7066 #endif /* WEXITSTATUS */
7069 PyDoc_STRVAR(posix_WTERMSIG__doc__
,
7070 "WTERMSIG(status) -> integer\n\n\
7071 Return the signal that terminated the process that provided the 'status'\n\
7075 posix_WTERMSIG(PyObject
*self
, PyObject
*args
)
7078 WAIT_STATUS_INT(status
) = 0;
7080 if (!PyArg_ParseTuple(args
, "i:WTERMSIG", &WAIT_STATUS_INT(status
)))
7083 return Py_BuildValue("i", WTERMSIG(status
));
7085 #endif /* WTERMSIG */
7088 PyDoc_STRVAR(posix_WSTOPSIG__doc__
,
7089 "WSTOPSIG(status) -> integer\n\n\
7090 Return the signal that stopped the process that provided\n\
7091 the 'status' value.");
7094 posix_WSTOPSIG(PyObject
*self
, PyObject
*args
)
7097 WAIT_STATUS_INT(status
) = 0;
7099 if (!PyArg_ParseTuple(args
, "i:WSTOPSIG", &WAIT_STATUS_INT(status
)))
7102 return Py_BuildValue("i", WSTOPSIG(status
));
7104 #endif /* WSTOPSIG */
7106 #endif /* HAVE_SYS_WAIT_H */
7109 #if defined(HAVE_FSTATVFS) && defined(HAVE_SYS_STATVFS_H)
7111 /* SCO OpenServer 5.0 and later requires _SVID3 before it reveals the
7112 needed definitions in sys/statvfs.h */
7115 #include <sys/statvfs.h>
7118 _pystatvfs_fromstructstatvfs(struct statvfs st
) {
7119 PyObject
*v
= PyStructSequence_New(&StatVFSResultType
);
7123 #if !defined(HAVE_LARGEFILE_SUPPORT)
7124 PyStructSequence_SET_ITEM(v
, 0, PyInt_FromLong((long) st
.f_bsize
));
7125 PyStructSequence_SET_ITEM(v
, 1, PyInt_FromLong((long) st
.f_frsize
));
7126 PyStructSequence_SET_ITEM(v
, 2, PyInt_FromLong((long) st
.f_blocks
));
7127 PyStructSequence_SET_ITEM(v
, 3, PyInt_FromLong((long) st
.f_bfree
));
7128 PyStructSequence_SET_ITEM(v
, 4, PyInt_FromLong((long) st
.f_bavail
));
7129 PyStructSequence_SET_ITEM(v
, 5, PyInt_FromLong((long) st
.f_files
));
7130 PyStructSequence_SET_ITEM(v
, 6, PyInt_FromLong((long) st
.f_ffree
));
7131 PyStructSequence_SET_ITEM(v
, 7, PyInt_FromLong((long) st
.f_favail
));
7132 PyStructSequence_SET_ITEM(v
, 8, PyInt_FromLong((long) st
.f_flag
));
7133 PyStructSequence_SET_ITEM(v
, 9, PyInt_FromLong((long) st
.f_namemax
));
7135 PyStructSequence_SET_ITEM(v
, 0, PyInt_FromLong((long) st
.f_bsize
));
7136 PyStructSequence_SET_ITEM(v
, 1, PyInt_FromLong((long) st
.f_frsize
));
7137 PyStructSequence_SET_ITEM(v
, 2,
7138 PyLong_FromLongLong((PY_LONG_LONG
) st
.f_blocks
));
7139 PyStructSequence_SET_ITEM(v
, 3,
7140 PyLong_FromLongLong((PY_LONG_LONG
) st
.f_bfree
));
7141 PyStructSequence_SET_ITEM(v
, 4,
7142 PyLong_FromLongLong((PY_LONG_LONG
) st
.f_bavail
));
7143 PyStructSequence_SET_ITEM(v
, 5,
7144 PyLong_FromLongLong((PY_LONG_LONG
) st
.f_files
));
7145 PyStructSequence_SET_ITEM(v
, 6,
7146 PyLong_FromLongLong((PY_LONG_LONG
) st
.f_ffree
));
7147 PyStructSequence_SET_ITEM(v
, 7,
7148 PyLong_FromLongLong((PY_LONG_LONG
) st
.f_favail
));
7149 PyStructSequence_SET_ITEM(v
, 8, PyInt_FromLong((long) st
.f_flag
));
7150 PyStructSequence_SET_ITEM(v
, 9, PyInt_FromLong((long) st
.f_namemax
));
7156 PyDoc_STRVAR(posix_fstatvfs__doc__
,
7157 "fstatvfs(fd) -> statvfs result\n\n\
7158 Perform an fstatvfs system call on the given fd.");
7161 posix_fstatvfs(PyObject
*self
, PyObject
*args
)
7166 if (!PyArg_ParseTuple(args
, "i:fstatvfs", &fd
))
7168 Py_BEGIN_ALLOW_THREADS
7169 res
= fstatvfs(fd
, &st
);
7170 Py_END_ALLOW_THREADS
7172 return posix_error();
7174 return _pystatvfs_fromstructstatvfs(st
);
7176 #endif /* HAVE_FSTATVFS && HAVE_SYS_STATVFS_H */
7179 #if defined(HAVE_STATVFS) && defined(HAVE_SYS_STATVFS_H)
7180 #include <sys/statvfs.h>
7182 PyDoc_STRVAR(posix_statvfs__doc__
,
7183 "statvfs(path) -> statvfs result\n\n\
7184 Perform a statvfs system call on the given path.");
7187 posix_statvfs(PyObject
*self
, PyObject
*args
)
7192 if (!PyArg_ParseTuple(args
, "s:statvfs", &path
))
7194 Py_BEGIN_ALLOW_THREADS
7195 res
= statvfs(path
, &st
);
7196 Py_END_ALLOW_THREADS
7198 return posix_error_with_filename(path
);
7200 return _pystatvfs_fromstructstatvfs(st
);
7202 #endif /* HAVE_STATVFS */
7206 PyDoc_STRVAR(posix_tempnam__doc__
,
7207 "tempnam([dir[, prefix]]) -> string\n\n\
7208 Return a unique name for a temporary file.\n\
7209 The directory and a prefix may be specified as strings; they may be omitted\n\
7210 or None if not needed.");
7213 posix_tempnam(PyObject
*self
, PyObject
*args
)
7215 PyObject
*result
= NULL
;
7220 if (!PyArg_ParseTuple(args
, "|zz:tempnam", &dir
, &pfx
))
7223 if (PyErr_Warn(PyExc_RuntimeWarning
,
7224 "tempnam is a potential security risk to your program") < 0)
7228 name
= _tempnam(dir
, pfx
);
7230 name
= tempnam(dir
, pfx
);
7233 return PyErr_NoMemory();
7234 result
= PyString_FromString(name
);
7242 PyDoc_STRVAR(posix_tmpfile__doc__
,
7243 "tmpfile() -> file object\n\n\
7244 Create a temporary file with no directory entries.");
7247 posix_tmpfile(PyObject
*self
, PyObject
*noargs
)
7253 return posix_error();
7254 return PyFile_FromFile(fp
, "<tmpfile>", "w+b", fclose
);
7260 PyDoc_STRVAR(posix_tmpnam__doc__
,
7261 "tmpnam() -> string\n\n\
7262 Return a unique name for a temporary file.");
7265 posix_tmpnam(PyObject
*self
, PyObject
*noargs
)
7267 char buffer
[L_tmpnam
];
7270 if (PyErr_Warn(PyExc_RuntimeWarning
,
7271 "tmpnam is a potential security risk to your program") < 0)
7275 name
= tmpnam_r(buffer
);
7277 name
= tmpnam(buffer
);
7280 PyObject
*err
= Py_BuildValue("is", 0,
7282 "unexpected NULL from tmpnam_r"
7284 "unexpected NULL from tmpnam"
7287 PyErr_SetObject(PyExc_OSError
, err
);
7291 return PyString_FromString(buffer
);
7296 /* This is used for fpathconf(), pathconf(), confstr() and sysconf().
7297 * It maps strings representing configuration variable names to
7298 * integer values, allowing those functions to be called with the
7299 * magic names instead of polluting the module's namespace with tons of
7300 * rarely-used constants. There are three separate tables that use
7301 * these definitions.
7303 * This code is always included, even if none of the interfaces that
7304 * need it are included. The #if hackery needed to avoid it would be
7305 * sufficiently pervasive that it's not worth the loss of readability.
7313 conv_confname(PyObject
*arg
, int *valuep
, struct constdef
*table
,
7316 if (PyInt_Check(arg
)) {
7317 *valuep
= PyInt_AS_LONG(arg
);
7320 if (PyString_Check(arg
)) {
7321 /* look up the value in the table using a binary search */
7324 size_t hi
= tablesize
;
7326 char *confname
= PyString_AS_STRING(arg
);
7328 mid
= (lo
+ hi
) / 2;
7329 cmp
= strcmp(confname
, table
[mid
].name
);
7335 *valuep
= table
[mid
].value
;
7339 PyErr_SetString(PyExc_ValueError
, "unrecognized configuration name");
7342 PyErr_SetString(PyExc_TypeError
,
7343 "configuration names must be strings or integers");
7348 #if defined(HAVE_FPATHCONF) || defined(HAVE_PATHCONF)
7349 static struct constdef posix_constants_pathconf
[] = {
7350 #ifdef _PC_ABI_AIO_XFER_MAX
7351 {"PC_ABI_AIO_XFER_MAX", _PC_ABI_AIO_XFER_MAX
},
7353 #ifdef _PC_ABI_ASYNC_IO
7354 {"PC_ABI_ASYNC_IO", _PC_ABI_ASYNC_IO
},
7357 {"PC_ASYNC_IO", _PC_ASYNC_IO
},
7359 #ifdef _PC_CHOWN_RESTRICTED
7360 {"PC_CHOWN_RESTRICTED", _PC_CHOWN_RESTRICTED
},
7362 #ifdef _PC_FILESIZEBITS
7363 {"PC_FILESIZEBITS", _PC_FILESIZEBITS
},
7366 {"PC_LAST", _PC_LAST
},
7369 {"PC_LINK_MAX", _PC_LINK_MAX
},
7371 #ifdef _PC_MAX_CANON
7372 {"PC_MAX_CANON", _PC_MAX_CANON
},
7374 #ifdef _PC_MAX_INPUT
7375 {"PC_MAX_INPUT", _PC_MAX_INPUT
},
7378 {"PC_NAME_MAX", _PC_NAME_MAX
},
7381 {"PC_NO_TRUNC", _PC_NO_TRUNC
},
7384 {"PC_PATH_MAX", _PC_PATH_MAX
},
7387 {"PC_PIPE_BUF", _PC_PIPE_BUF
},
7390 {"PC_PRIO_IO", _PC_PRIO_IO
},
7392 #ifdef _PC_SOCK_MAXBUF
7393 {"PC_SOCK_MAXBUF", _PC_SOCK_MAXBUF
},
7396 {"PC_SYNC_IO", _PC_SYNC_IO
},
7399 {"PC_VDISABLE", _PC_VDISABLE
},
7404 conv_path_confname(PyObject
*arg
, int *valuep
)
7406 return conv_confname(arg
, valuep
, posix_constants_pathconf
,
7407 sizeof(posix_constants_pathconf
)
7408 / sizeof(struct constdef
));
7412 #ifdef HAVE_FPATHCONF
7413 PyDoc_STRVAR(posix_fpathconf__doc__
,
7414 "fpathconf(fd, name) -> integer\n\n\
7415 Return the configuration limit name for the file descriptor fd.\n\
7416 If there is no limit, return -1.");
7419 posix_fpathconf(PyObject
*self
, PyObject
*args
)
7421 PyObject
*result
= NULL
;
7424 if (PyArg_ParseTuple(args
, "iO&:fpathconf", &fd
,
7425 conv_path_confname
, &name
)) {
7429 limit
= fpathconf(fd
, name
);
7430 if (limit
== -1 && errno
!= 0)
7433 result
= PyInt_FromLong(limit
);
7440 #ifdef HAVE_PATHCONF
7441 PyDoc_STRVAR(posix_pathconf__doc__
,
7442 "pathconf(path, name) -> integer\n\n\
7443 Return the configuration limit name for the file or directory path.\n\
7444 If there is no limit, return -1.");
7447 posix_pathconf(PyObject
*self
, PyObject
*args
)
7449 PyObject
*result
= NULL
;
7453 if (PyArg_ParseTuple(args
, "sO&:pathconf", &path
,
7454 conv_path_confname
, &name
)) {
7458 limit
= pathconf(path
, name
);
7459 if (limit
== -1 && errno
!= 0) {
7460 if (errno
== EINVAL
)
7461 /* could be a path or name problem */
7464 posix_error_with_filename(path
);
7467 result
= PyInt_FromLong(limit
);
7474 static struct constdef posix_constants_confstr
[] = {
7475 #ifdef _CS_ARCHITECTURE
7476 {"CS_ARCHITECTURE", _CS_ARCHITECTURE
},
7479 {"CS_HOSTNAME", _CS_HOSTNAME
},
7481 #ifdef _CS_HW_PROVIDER
7482 {"CS_HW_PROVIDER", _CS_HW_PROVIDER
},
7484 #ifdef _CS_HW_SERIAL
7485 {"CS_HW_SERIAL", _CS_HW_SERIAL
},
7487 #ifdef _CS_INITTAB_NAME
7488 {"CS_INITTAB_NAME", _CS_INITTAB_NAME
},
7490 #ifdef _CS_LFS64_CFLAGS
7491 {"CS_LFS64_CFLAGS", _CS_LFS64_CFLAGS
},
7493 #ifdef _CS_LFS64_LDFLAGS
7494 {"CS_LFS64_LDFLAGS", _CS_LFS64_LDFLAGS
},
7496 #ifdef _CS_LFS64_LIBS
7497 {"CS_LFS64_LIBS", _CS_LFS64_LIBS
},
7499 #ifdef _CS_LFS64_LINTFLAGS
7500 {"CS_LFS64_LINTFLAGS", _CS_LFS64_LINTFLAGS
},
7502 #ifdef _CS_LFS_CFLAGS
7503 {"CS_LFS_CFLAGS", _CS_LFS_CFLAGS
},
7505 #ifdef _CS_LFS_LDFLAGS
7506 {"CS_LFS_LDFLAGS", _CS_LFS_LDFLAGS
},
7509 {"CS_LFS_LIBS", _CS_LFS_LIBS
},
7511 #ifdef _CS_LFS_LINTFLAGS
7512 {"CS_LFS_LINTFLAGS", _CS_LFS_LINTFLAGS
},
7515 {"CS_MACHINE", _CS_MACHINE
},
7518 {"CS_PATH", _CS_PATH
},
7521 {"CS_RELEASE", _CS_RELEASE
},
7523 #ifdef _CS_SRPC_DOMAIN
7524 {"CS_SRPC_DOMAIN", _CS_SRPC_DOMAIN
},
7527 {"CS_SYSNAME", _CS_SYSNAME
},
7530 {"CS_VERSION", _CS_VERSION
},
7532 #ifdef _CS_XBS5_ILP32_OFF32_CFLAGS
7533 {"CS_XBS5_ILP32_OFF32_CFLAGS", _CS_XBS5_ILP32_OFF32_CFLAGS
},
7535 #ifdef _CS_XBS5_ILP32_OFF32_LDFLAGS
7536 {"CS_XBS5_ILP32_OFF32_LDFLAGS", _CS_XBS5_ILP32_OFF32_LDFLAGS
},
7538 #ifdef _CS_XBS5_ILP32_OFF32_LIBS
7539 {"CS_XBS5_ILP32_OFF32_LIBS", _CS_XBS5_ILP32_OFF32_LIBS
},
7541 #ifdef _CS_XBS5_ILP32_OFF32_LINTFLAGS
7542 {"CS_XBS5_ILP32_OFF32_LINTFLAGS", _CS_XBS5_ILP32_OFF32_LINTFLAGS
},
7544 #ifdef _CS_XBS5_ILP32_OFFBIG_CFLAGS
7545 {"CS_XBS5_ILP32_OFFBIG_CFLAGS", _CS_XBS5_ILP32_OFFBIG_CFLAGS
},
7547 #ifdef _CS_XBS5_ILP32_OFFBIG_LDFLAGS
7548 {"CS_XBS5_ILP32_OFFBIG_LDFLAGS", _CS_XBS5_ILP32_OFFBIG_LDFLAGS
},
7550 #ifdef _CS_XBS5_ILP32_OFFBIG_LIBS
7551 {"CS_XBS5_ILP32_OFFBIG_LIBS", _CS_XBS5_ILP32_OFFBIG_LIBS
},
7553 #ifdef _CS_XBS5_ILP32_OFFBIG_LINTFLAGS
7554 {"CS_XBS5_ILP32_OFFBIG_LINTFLAGS", _CS_XBS5_ILP32_OFFBIG_LINTFLAGS
},
7556 #ifdef _CS_XBS5_LP64_OFF64_CFLAGS
7557 {"CS_XBS5_LP64_OFF64_CFLAGS", _CS_XBS5_LP64_OFF64_CFLAGS
},
7559 #ifdef _CS_XBS5_LP64_OFF64_LDFLAGS
7560 {"CS_XBS5_LP64_OFF64_LDFLAGS", _CS_XBS5_LP64_OFF64_LDFLAGS
},
7562 #ifdef _CS_XBS5_LP64_OFF64_LIBS
7563 {"CS_XBS5_LP64_OFF64_LIBS", _CS_XBS5_LP64_OFF64_LIBS
},
7565 #ifdef _CS_XBS5_LP64_OFF64_LINTFLAGS
7566 {"CS_XBS5_LP64_OFF64_LINTFLAGS", _CS_XBS5_LP64_OFF64_LINTFLAGS
},
7568 #ifdef _CS_XBS5_LPBIG_OFFBIG_CFLAGS
7569 {"CS_XBS5_LPBIG_OFFBIG_CFLAGS", _CS_XBS5_LPBIG_OFFBIG_CFLAGS
},
7571 #ifdef _CS_XBS5_LPBIG_OFFBIG_LDFLAGS
7572 {"CS_XBS5_LPBIG_OFFBIG_LDFLAGS", _CS_XBS5_LPBIG_OFFBIG_LDFLAGS
},
7574 #ifdef _CS_XBS5_LPBIG_OFFBIG_LIBS
7575 {"CS_XBS5_LPBIG_OFFBIG_LIBS", _CS_XBS5_LPBIG_OFFBIG_LIBS
},
7577 #ifdef _CS_XBS5_LPBIG_OFFBIG_LINTFLAGS
7578 {"CS_XBS5_LPBIG_OFFBIG_LINTFLAGS", _CS_XBS5_LPBIG_OFFBIG_LINTFLAGS
},
7580 #ifdef _MIPS_CS_AVAIL_PROCESSORS
7581 {"MIPS_CS_AVAIL_PROCESSORS", _MIPS_CS_AVAIL_PROCESSORS
},
7583 #ifdef _MIPS_CS_BASE
7584 {"MIPS_CS_BASE", _MIPS_CS_BASE
},
7586 #ifdef _MIPS_CS_HOSTID
7587 {"MIPS_CS_HOSTID", _MIPS_CS_HOSTID
},
7589 #ifdef _MIPS_CS_HW_NAME
7590 {"MIPS_CS_HW_NAME", _MIPS_CS_HW_NAME
},
7592 #ifdef _MIPS_CS_NUM_PROCESSORS
7593 {"MIPS_CS_NUM_PROCESSORS", _MIPS_CS_NUM_PROCESSORS
},
7595 #ifdef _MIPS_CS_OSREL_MAJ
7596 {"MIPS_CS_OSREL_MAJ", _MIPS_CS_OSREL_MAJ
},
7598 #ifdef _MIPS_CS_OSREL_MIN
7599 {"MIPS_CS_OSREL_MIN", _MIPS_CS_OSREL_MIN
},
7601 #ifdef _MIPS_CS_OSREL_PATCH
7602 {"MIPS_CS_OSREL_PATCH", _MIPS_CS_OSREL_PATCH
},
7604 #ifdef _MIPS_CS_OS_NAME
7605 {"MIPS_CS_OS_NAME", _MIPS_CS_OS_NAME
},
7607 #ifdef _MIPS_CS_OS_PROVIDER
7608 {"MIPS_CS_OS_PROVIDER", _MIPS_CS_OS_PROVIDER
},
7610 #ifdef _MIPS_CS_PROCESSORS
7611 {"MIPS_CS_PROCESSORS", _MIPS_CS_PROCESSORS
},
7613 #ifdef _MIPS_CS_SERIAL
7614 {"MIPS_CS_SERIAL", _MIPS_CS_SERIAL
},
7616 #ifdef _MIPS_CS_VENDOR
7617 {"MIPS_CS_VENDOR", _MIPS_CS_VENDOR
},
7622 conv_confstr_confname(PyObject
*arg
, int *valuep
)
7624 return conv_confname(arg
, valuep
, posix_constants_confstr
,
7625 sizeof(posix_constants_confstr
)
7626 / sizeof(struct constdef
));
7629 PyDoc_STRVAR(posix_confstr__doc__
,
7630 "confstr(name) -> string\n\n\
7631 Return a string-valued system configuration variable.");
7634 posix_confstr(PyObject
*self
, PyObject
*args
)
7636 PyObject
*result
= NULL
;
7640 if (PyArg_ParseTuple(args
, "O&:confstr", conv_confstr_confname
, &name
)) {
7644 len
= confstr(name
, buffer
, sizeof(buffer
));
7655 if ((unsigned int)len
>= sizeof(buffer
)) {
7656 result
= PyString_FromStringAndSize(NULL
, len
-1);
7658 confstr(name
, PyString_AS_STRING(result
), len
);
7661 result
= PyString_FromStringAndSize(buffer
, len
-1);
7670 static struct constdef posix_constants_sysconf
[] = {
7671 #ifdef _SC_2_CHAR_TERM
7672 {"SC_2_CHAR_TERM", _SC_2_CHAR_TERM
},
7675 {"SC_2_C_BIND", _SC_2_C_BIND
},
7678 {"SC_2_C_DEV", _SC_2_C_DEV
},
7680 #ifdef _SC_2_C_VERSION
7681 {"SC_2_C_VERSION", _SC_2_C_VERSION
},
7683 #ifdef _SC_2_FORT_DEV
7684 {"SC_2_FORT_DEV", _SC_2_FORT_DEV
},
7686 #ifdef _SC_2_FORT_RUN
7687 {"SC_2_FORT_RUN", _SC_2_FORT_RUN
},
7689 #ifdef _SC_2_LOCALEDEF
7690 {"SC_2_LOCALEDEF", _SC_2_LOCALEDEF
},
7693 {"SC_2_SW_DEV", _SC_2_SW_DEV
},
7696 {"SC_2_UPE", _SC_2_UPE
},
7698 #ifdef _SC_2_VERSION
7699 {"SC_2_VERSION", _SC_2_VERSION
},
7701 #ifdef _SC_ABI_ASYNCHRONOUS_IO
7702 {"SC_ABI_ASYNCHRONOUS_IO", _SC_ABI_ASYNCHRONOUS_IO
},
7705 {"SC_ACL", _SC_ACL
},
7707 #ifdef _SC_AIO_LISTIO_MAX
7708 {"SC_AIO_LISTIO_MAX", _SC_AIO_LISTIO_MAX
},
7711 {"SC_AIO_MAX", _SC_AIO_MAX
},
7713 #ifdef _SC_AIO_PRIO_DELTA_MAX
7714 {"SC_AIO_PRIO_DELTA_MAX", _SC_AIO_PRIO_DELTA_MAX
},
7717 {"SC_ARG_MAX", _SC_ARG_MAX
},
7719 #ifdef _SC_ASYNCHRONOUS_IO
7720 {"SC_ASYNCHRONOUS_IO", _SC_ASYNCHRONOUS_IO
},
7722 #ifdef _SC_ATEXIT_MAX
7723 {"SC_ATEXIT_MAX", _SC_ATEXIT_MAX
},
7726 {"SC_AUDIT", _SC_AUDIT
},
7728 #ifdef _SC_AVPHYS_PAGES
7729 {"SC_AVPHYS_PAGES", _SC_AVPHYS_PAGES
},
7731 #ifdef _SC_BC_BASE_MAX
7732 {"SC_BC_BASE_MAX", _SC_BC_BASE_MAX
},
7734 #ifdef _SC_BC_DIM_MAX
7735 {"SC_BC_DIM_MAX", _SC_BC_DIM_MAX
},
7737 #ifdef _SC_BC_SCALE_MAX
7738 {"SC_BC_SCALE_MAX", _SC_BC_SCALE_MAX
},
7740 #ifdef _SC_BC_STRING_MAX
7741 {"SC_BC_STRING_MAX", _SC_BC_STRING_MAX
},
7744 {"SC_CAP", _SC_CAP
},
7746 #ifdef _SC_CHARCLASS_NAME_MAX
7747 {"SC_CHARCLASS_NAME_MAX", _SC_CHARCLASS_NAME_MAX
},
7750 {"SC_CHAR_BIT", _SC_CHAR_BIT
},
7753 {"SC_CHAR_MAX", _SC_CHAR_MAX
},
7756 {"SC_CHAR_MIN", _SC_CHAR_MIN
},
7758 #ifdef _SC_CHILD_MAX
7759 {"SC_CHILD_MAX", _SC_CHILD_MAX
},
7762 {"SC_CLK_TCK", _SC_CLK_TCK
},
7764 #ifdef _SC_COHER_BLKSZ
7765 {"SC_COHER_BLKSZ", _SC_COHER_BLKSZ
},
7767 #ifdef _SC_COLL_WEIGHTS_MAX
7768 {"SC_COLL_WEIGHTS_MAX", _SC_COLL_WEIGHTS_MAX
},
7770 #ifdef _SC_DCACHE_ASSOC
7771 {"SC_DCACHE_ASSOC", _SC_DCACHE_ASSOC
},
7773 #ifdef _SC_DCACHE_BLKSZ
7774 {"SC_DCACHE_BLKSZ", _SC_DCACHE_BLKSZ
},
7776 #ifdef _SC_DCACHE_LINESZ
7777 {"SC_DCACHE_LINESZ", _SC_DCACHE_LINESZ
},
7779 #ifdef _SC_DCACHE_SZ
7780 {"SC_DCACHE_SZ", _SC_DCACHE_SZ
},
7782 #ifdef _SC_DCACHE_TBLKSZ
7783 {"SC_DCACHE_TBLKSZ", _SC_DCACHE_TBLKSZ
},
7785 #ifdef _SC_DELAYTIMER_MAX
7786 {"SC_DELAYTIMER_MAX", _SC_DELAYTIMER_MAX
},
7788 #ifdef _SC_EQUIV_CLASS_MAX
7789 {"SC_EQUIV_CLASS_MAX", _SC_EQUIV_CLASS_MAX
},
7791 #ifdef _SC_EXPR_NEST_MAX
7792 {"SC_EXPR_NEST_MAX", _SC_EXPR_NEST_MAX
},
7795 {"SC_FSYNC", _SC_FSYNC
},
7797 #ifdef _SC_GETGR_R_SIZE_MAX
7798 {"SC_GETGR_R_SIZE_MAX", _SC_GETGR_R_SIZE_MAX
},
7800 #ifdef _SC_GETPW_R_SIZE_MAX
7801 {"SC_GETPW_R_SIZE_MAX", _SC_GETPW_R_SIZE_MAX
},
7803 #ifdef _SC_ICACHE_ASSOC
7804 {"SC_ICACHE_ASSOC", _SC_ICACHE_ASSOC
},
7806 #ifdef _SC_ICACHE_BLKSZ
7807 {"SC_ICACHE_BLKSZ", _SC_ICACHE_BLKSZ
},
7809 #ifdef _SC_ICACHE_LINESZ
7810 {"SC_ICACHE_LINESZ", _SC_ICACHE_LINESZ
},
7812 #ifdef _SC_ICACHE_SZ
7813 {"SC_ICACHE_SZ", _SC_ICACHE_SZ
},
7816 {"SC_INF", _SC_INF
},
7819 {"SC_INT_MAX", _SC_INT_MAX
},
7822 {"SC_INT_MIN", _SC_INT_MIN
},
7825 {"SC_IOV_MAX", _SC_IOV_MAX
},
7827 #ifdef _SC_IP_SECOPTS
7828 {"SC_IP_SECOPTS", _SC_IP_SECOPTS
},
7830 #ifdef _SC_JOB_CONTROL
7831 {"SC_JOB_CONTROL", _SC_JOB_CONTROL
},
7833 #ifdef _SC_KERN_POINTERS
7834 {"SC_KERN_POINTERS", _SC_KERN_POINTERS
},
7837 {"SC_KERN_SIM", _SC_KERN_SIM
},
7840 {"SC_LINE_MAX", _SC_LINE_MAX
},
7842 #ifdef _SC_LOGIN_NAME_MAX
7843 {"SC_LOGIN_NAME_MAX", _SC_LOGIN_NAME_MAX
},
7845 #ifdef _SC_LOGNAME_MAX
7846 {"SC_LOGNAME_MAX", _SC_LOGNAME_MAX
},
7849 {"SC_LONG_BIT", _SC_LONG_BIT
},
7852 {"SC_MAC", _SC_MAC
},
7854 #ifdef _SC_MAPPED_FILES
7855 {"SC_MAPPED_FILES", _SC_MAPPED_FILES
},
7858 {"SC_MAXPID", _SC_MAXPID
},
7860 #ifdef _SC_MB_LEN_MAX
7861 {"SC_MB_LEN_MAX", _SC_MB_LEN_MAX
},
7864 {"SC_MEMLOCK", _SC_MEMLOCK
},
7866 #ifdef _SC_MEMLOCK_RANGE
7867 {"SC_MEMLOCK_RANGE", _SC_MEMLOCK_RANGE
},
7869 #ifdef _SC_MEMORY_PROTECTION
7870 {"SC_MEMORY_PROTECTION", _SC_MEMORY_PROTECTION
},
7872 #ifdef _SC_MESSAGE_PASSING
7873 {"SC_MESSAGE_PASSING", _SC_MESSAGE_PASSING
},
7875 #ifdef _SC_MMAP_FIXED_ALIGNMENT
7876 {"SC_MMAP_FIXED_ALIGNMENT", _SC_MMAP_FIXED_ALIGNMENT
},
7878 #ifdef _SC_MQ_OPEN_MAX
7879 {"SC_MQ_OPEN_MAX", _SC_MQ_OPEN_MAX
},
7881 #ifdef _SC_MQ_PRIO_MAX
7882 {"SC_MQ_PRIO_MAX", _SC_MQ_PRIO_MAX
},
7884 #ifdef _SC_NACLS_MAX
7885 {"SC_NACLS_MAX", _SC_NACLS_MAX
},
7887 #ifdef _SC_NGROUPS_MAX
7888 {"SC_NGROUPS_MAX", _SC_NGROUPS_MAX
},
7890 #ifdef _SC_NL_ARGMAX
7891 {"SC_NL_ARGMAX", _SC_NL_ARGMAX
},
7893 #ifdef _SC_NL_LANGMAX
7894 {"SC_NL_LANGMAX", _SC_NL_LANGMAX
},
7896 #ifdef _SC_NL_MSGMAX
7897 {"SC_NL_MSGMAX", _SC_NL_MSGMAX
},
7900 {"SC_NL_NMAX", _SC_NL_NMAX
},
7902 #ifdef _SC_NL_SETMAX
7903 {"SC_NL_SETMAX", _SC_NL_SETMAX
},
7905 #ifdef _SC_NL_TEXTMAX
7906 {"SC_NL_TEXTMAX", _SC_NL_TEXTMAX
},
7908 #ifdef _SC_NPROCESSORS_CONF
7909 {"SC_NPROCESSORS_CONF", _SC_NPROCESSORS_CONF
},
7911 #ifdef _SC_NPROCESSORS_ONLN
7912 {"SC_NPROCESSORS_ONLN", _SC_NPROCESSORS_ONLN
},
7914 #ifdef _SC_NPROC_CONF
7915 {"SC_NPROC_CONF", _SC_NPROC_CONF
},
7917 #ifdef _SC_NPROC_ONLN
7918 {"SC_NPROC_ONLN", _SC_NPROC_ONLN
},
7921 {"SC_NZERO", _SC_NZERO
},
7924 {"SC_OPEN_MAX", _SC_OPEN_MAX
},
7927 {"SC_PAGESIZE", _SC_PAGESIZE
},
7929 #ifdef _SC_PAGE_SIZE
7930 {"SC_PAGE_SIZE", _SC_PAGE_SIZE
},
7933 {"SC_PASS_MAX", _SC_PASS_MAX
},
7935 #ifdef _SC_PHYS_PAGES
7936 {"SC_PHYS_PAGES", _SC_PHYS_PAGES
},
7939 {"SC_PII", _SC_PII
},
7941 #ifdef _SC_PII_INTERNET
7942 {"SC_PII_INTERNET", _SC_PII_INTERNET
},
7944 #ifdef _SC_PII_INTERNET_DGRAM
7945 {"SC_PII_INTERNET_DGRAM", _SC_PII_INTERNET_DGRAM
},
7947 #ifdef _SC_PII_INTERNET_STREAM
7948 {"SC_PII_INTERNET_STREAM", _SC_PII_INTERNET_STREAM
},
7951 {"SC_PII_OSI", _SC_PII_OSI
},
7953 #ifdef _SC_PII_OSI_CLTS
7954 {"SC_PII_OSI_CLTS", _SC_PII_OSI_CLTS
},
7956 #ifdef _SC_PII_OSI_COTS
7957 {"SC_PII_OSI_COTS", _SC_PII_OSI_COTS
},
7959 #ifdef _SC_PII_OSI_M
7960 {"SC_PII_OSI_M", _SC_PII_OSI_M
},
7962 #ifdef _SC_PII_SOCKET
7963 {"SC_PII_SOCKET", _SC_PII_SOCKET
},
7966 {"SC_PII_XTI", _SC_PII_XTI
},
7969 {"SC_POLL", _SC_POLL
},
7971 #ifdef _SC_PRIORITIZED_IO
7972 {"SC_PRIORITIZED_IO", _SC_PRIORITIZED_IO
},
7974 #ifdef _SC_PRIORITY_SCHEDULING
7975 {"SC_PRIORITY_SCHEDULING", _SC_PRIORITY_SCHEDULING
},
7977 #ifdef _SC_REALTIME_SIGNALS
7978 {"SC_REALTIME_SIGNALS", _SC_REALTIME_SIGNALS
},
7980 #ifdef _SC_RE_DUP_MAX
7981 {"SC_RE_DUP_MAX", _SC_RE_DUP_MAX
},
7983 #ifdef _SC_RTSIG_MAX
7984 {"SC_RTSIG_MAX", _SC_RTSIG_MAX
},
7986 #ifdef _SC_SAVED_IDS
7987 {"SC_SAVED_IDS", _SC_SAVED_IDS
},
7989 #ifdef _SC_SCHAR_MAX
7990 {"SC_SCHAR_MAX", _SC_SCHAR_MAX
},
7992 #ifdef _SC_SCHAR_MIN
7993 {"SC_SCHAR_MIN", _SC_SCHAR_MIN
},
7996 {"SC_SELECT", _SC_SELECT
},
7998 #ifdef _SC_SEMAPHORES
7999 {"SC_SEMAPHORES", _SC_SEMAPHORES
},
8001 #ifdef _SC_SEM_NSEMS_MAX
8002 {"SC_SEM_NSEMS_MAX", _SC_SEM_NSEMS_MAX
},
8004 #ifdef _SC_SEM_VALUE_MAX
8005 {"SC_SEM_VALUE_MAX", _SC_SEM_VALUE_MAX
},
8007 #ifdef _SC_SHARED_MEMORY_OBJECTS
8008 {"SC_SHARED_MEMORY_OBJECTS", _SC_SHARED_MEMORY_OBJECTS
},
8011 {"SC_SHRT_MAX", _SC_SHRT_MAX
},
8014 {"SC_SHRT_MIN", _SC_SHRT_MIN
},
8016 #ifdef _SC_SIGQUEUE_MAX
8017 {"SC_SIGQUEUE_MAX", _SC_SIGQUEUE_MAX
},
8019 #ifdef _SC_SIGRT_MAX
8020 {"SC_SIGRT_MAX", _SC_SIGRT_MAX
},
8022 #ifdef _SC_SIGRT_MIN
8023 {"SC_SIGRT_MIN", _SC_SIGRT_MIN
},
8025 #ifdef _SC_SOFTPOWER
8026 {"SC_SOFTPOWER", _SC_SOFTPOWER
},
8028 #ifdef _SC_SPLIT_CACHE
8029 {"SC_SPLIT_CACHE", _SC_SPLIT_CACHE
},
8031 #ifdef _SC_SSIZE_MAX
8032 {"SC_SSIZE_MAX", _SC_SSIZE_MAX
},
8034 #ifdef _SC_STACK_PROT
8035 {"SC_STACK_PROT", _SC_STACK_PROT
},
8037 #ifdef _SC_STREAM_MAX
8038 {"SC_STREAM_MAX", _SC_STREAM_MAX
},
8040 #ifdef _SC_SYNCHRONIZED_IO
8041 {"SC_SYNCHRONIZED_IO", _SC_SYNCHRONIZED_IO
},
8044 {"SC_THREADS", _SC_THREADS
},
8046 #ifdef _SC_THREAD_ATTR_STACKADDR
8047 {"SC_THREAD_ATTR_STACKADDR", _SC_THREAD_ATTR_STACKADDR
},
8049 #ifdef _SC_THREAD_ATTR_STACKSIZE
8050 {"SC_THREAD_ATTR_STACKSIZE", _SC_THREAD_ATTR_STACKSIZE
},
8052 #ifdef _SC_THREAD_DESTRUCTOR_ITERATIONS
8053 {"SC_THREAD_DESTRUCTOR_ITERATIONS", _SC_THREAD_DESTRUCTOR_ITERATIONS
},
8055 #ifdef _SC_THREAD_KEYS_MAX
8056 {"SC_THREAD_KEYS_MAX", _SC_THREAD_KEYS_MAX
},
8058 #ifdef _SC_THREAD_PRIORITY_SCHEDULING
8059 {"SC_THREAD_PRIORITY_SCHEDULING", _SC_THREAD_PRIORITY_SCHEDULING
},
8061 #ifdef _SC_THREAD_PRIO_INHERIT
8062 {"SC_THREAD_PRIO_INHERIT", _SC_THREAD_PRIO_INHERIT
},
8064 #ifdef _SC_THREAD_PRIO_PROTECT
8065 {"SC_THREAD_PRIO_PROTECT", _SC_THREAD_PRIO_PROTECT
},
8067 #ifdef _SC_THREAD_PROCESS_SHARED
8068 {"SC_THREAD_PROCESS_SHARED", _SC_THREAD_PROCESS_SHARED
},
8070 #ifdef _SC_THREAD_SAFE_FUNCTIONS
8071 {"SC_THREAD_SAFE_FUNCTIONS", _SC_THREAD_SAFE_FUNCTIONS
},
8073 #ifdef _SC_THREAD_STACK_MIN
8074 {"SC_THREAD_STACK_MIN", _SC_THREAD_STACK_MIN
},
8076 #ifdef _SC_THREAD_THREADS_MAX
8077 {"SC_THREAD_THREADS_MAX", _SC_THREAD_THREADS_MAX
},
8080 {"SC_TIMERS", _SC_TIMERS
},
8082 #ifdef _SC_TIMER_MAX
8083 {"SC_TIMER_MAX", _SC_TIMER_MAX
},
8085 #ifdef _SC_TTY_NAME_MAX
8086 {"SC_TTY_NAME_MAX", _SC_TTY_NAME_MAX
},
8088 #ifdef _SC_TZNAME_MAX
8089 {"SC_TZNAME_MAX", _SC_TZNAME_MAX
},
8091 #ifdef _SC_T_IOV_MAX
8092 {"SC_T_IOV_MAX", _SC_T_IOV_MAX
},
8094 #ifdef _SC_UCHAR_MAX
8095 {"SC_UCHAR_MAX", _SC_UCHAR_MAX
},
8098 {"SC_UINT_MAX", _SC_UINT_MAX
},
8100 #ifdef _SC_UIO_MAXIOV
8101 {"SC_UIO_MAXIOV", _SC_UIO_MAXIOV
},
8103 #ifdef _SC_ULONG_MAX
8104 {"SC_ULONG_MAX", _SC_ULONG_MAX
},
8106 #ifdef _SC_USHRT_MAX
8107 {"SC_USHRT_MAX", _SC_USHRT_MAX
},
8110 {"SC_VERSION", _SC_VERSION
},
8113 {"SC_WORD_BIT", _SC_WORD_BIT
},
8115 #ifdef _SC_XBS5_ILP32_OFF32
8116 {"SC_XBS5_ILP32_OFF32", _SC_XBS5_ILP32_OFF32
},
8118 #ifdef _SC_XBS5_ILP32_OFFBIG
8119 {"SC_XBS5_ILP32_OFFBIG", _SC_XBS5_ILP32_OFFBIG
},
8121 #ifdef _SC_XBS5_LP64_OFF64
8122 {"SC_XBS5_LP64_OFF64", _SC_XBS5_LP64_OFF64
},
8124 #ifdef _SC_XBS5_LPBIG_OFFBIG
8125 {"SC_XBS5_LPBIG_OFFBIG", _SC_XBS5_LPBIG_OFFBIG
},
8127 #ifdef _SC_XOPEN_CRYPT
8128 {"SC_XOPEN_CRYPT", _SC_XOPEN_CRYPT
},
8130 #ifdef _SC_XOPEN_ENH_I18N
8131 {"SC_XOPEN_ENH_I18N", _SC_XOPEN_ENH_I18N
},
8133 #ifdef _SC_XOPEN_LEGACY
8134 {"SC_XOPEN_LEGACY", _SC_XOPEN_LEGACY
},
8136 #ifdef _SC_XOPEN_REALTIME
8137 {"SC_XOPEN_REALTIME", _SC_XOPEN_REALTIME
},
8139 #ifdef _SC_XOPEN_REALTIME_THREADS
8140 {"SC_XOPEN_REALTIME_THREADS", _SC_XOPEN_REALTIME_THREADS
},
8142 #ifdef _SC_XOPEN_SHM
8143 {"SC_XOPEN_SHM", _SC_XOPEN_SHM
},
8145 #ifdef _SC_XOPEN_UNIX
8146 {"SC_XOPEN_UNIX", _SC_XOPEN_UNIX
},
8148 #ifdef _SC_XOPEN_VERSION
8149 {"SC_XOPEN_VERSION", _SC_XOPEN_VERSION
},
8151 #ifdef _SC_XOPEN_XCU_VERSION
8152 {"SC_XOPEN_XCU_VERSION", _SC_XOPEN_XCU_VERSION
},
8154 #ifdef _SC_XOPEN_XPG2
8155 {"SC_XOPEN_XPG2", _SC_XOPEN_XPG2
},
8157 #ifdef _SC_XOPEN_XPG3
8158 {"SC_XOPEN_XPG3", _SC_XOPEN_XPG3
},
8160 #ifdef _SC_XOPEN_XPG4
8161 {"SC_XOPEN_XPG4", _SC_XOPEN_XPG4
},
8166 conv_sysconf_confname(PyObject
*arg
, int *valuep
)
8168 return conv_confname(arg
, valuep
, posix_constants_sysconf
,
8169 sizeof(posix_constants_sysconf
)
8170 / sizeof(struct constdef
));
8173 PyDoc_STRVAR(posix_sysconf__doc__
,
8174 "sysconf(name) -> integer\n\n\
8175 Return an integer-valued system configuration variable.");
8178 posix_sysconf(PyObject
*self
, PyObject
*args
)
8180 PyObject
*result
= NULL
;
8183 if (PyArg_ParseTuple(args
, "O&:sysconf", conv_sysconf_confname
, &name
)) {
8187 value
= sysconf(name
);
8188 if (value
== -1 && errno
!= 0)
8191 result
= PyInt_FromLong(value
);
8198 /* This code is used to ensure that the tables of configuration value names
8199 * are in sorted order as required by conv_confname(), and also to build the
8200 * the exported dictionaries that are used to publish information about the
8201 * names available on the host platform.
8203 * Sorting the table at runtime ensures that the table is properly ordered
8204 * when used, even for platforms we're not able to test on. It also makes
8205 * it easier to add additional entries to the tables.
8209 cmp_constdefs(const void *v1
, const void *v2
)
8211 const struct constdef
*c1
=
8212 (const struct constdef
*) v1
;
8213 const struct constdef
*c2
=
8214 (const struct constdef
*) v2
;
8216 return strcmp(c1
->name
, c2
->name
);
8220 setup_confname_table(struct constdef
*table
, size_t tablesize
,
8221 char *tablename
, PyObject
*module
)
8226 qsort(table
, tablesize
, sizeof(struct constdef
), cmp_constdefs
);
8231 for (i
=0; i
< tablesize
; ++i
) {
8232 PyObject
*o
= PyInt_FromLong(table
[i
].value
);
8233 if (o
== NULL
|| PyDict_SetItemString(d
, table
[i
].name
, o
) == -1) {
8240 return PyModule_AddObject(module
, tablename
, d
);
8243 /* Return -1 on failure, 0 on success. */
8245 setup_confname_tables(PyObject
*module
)
8247 #if defined(HAVE_FPATHCONF) || defined(HAVE_PATHCONF)
8248 if (setup_confname_table(posix_constants_pathconf
,
8249 sizeof(posix_constants_pathconf
)
8250 / sizeof(struct constdef
),
8251 "pathconf_names", module
))
8255 if (setup_confname_table(posix_constants_confstr
,
8256 sizeof(posix_constants_confstr
)
8257 / sizeof(struct constdef
),
8258 "confstr_names", module
))
8262 if (setup_confname_table(posix_constants_sysconf
,
8263 sizeof(posix_constants_sysconf
)
8264 / sizeof(struct constdef
),
8265 "sysconf_names", module
))
8272 PyDoc_STRVAR(posix_abort__doc__
,
8273 "abort() -> does not return!\n\n\
8274 Abort the interpreter immediately. This 'dumps core' or otherwise fails\n\
8275 in the hardest way possible on the hosting operating system.");
8278 posix_abort(PyObject
*self
, PyObject
*noargs
)
8282 Py_FatalError("abort() called from Python code didn't abort!");
8287 PyDoc_STRVAR(win32_startfile__doc__
,
8288 "startfile(filepath [, operation]) - Start a file with its associated\n\
8291 When \"operation\" is not specified or \"open\", this acts like\n\
8292 double-clicking the file in Explorer, or giving the file name as an\n\
8293 argument to the DOS \"start\" command: the file is opened with whatever\n\
8294 application (if any) its extension is associated.\n\
8295 When another \"operation\" is given, it specifies what should be done with\n\
8296 the file. A typical operation is \"print\".\n\
8298 startfile returns as soon as the associated application is launched.\n\
8299 There is no option to wait for the application to close, and no way\n\
8300 to retrieve the application's exit status.\n\
8302 The filepath is relative to the current directory. If you want to use\n\
8303 an absolute path, make sure the first character is not a slash (\"/\");\n\
8304 the underlying Win32 ShellExecute function doesn't work if it is.");
8307 win32_startfile(PyObject
*self
, PyObject
*args
)
8310 char *operation
= NULL
;
8313 PyObject
*unipath
, *woperation
= NULL
;
8314 if (!PyArg_ParseTuple(args
, "U|s:startfile",
8315 &unipath
, &operation
)) {
8321 woperation
= PyUnicode_DecodeASCII(operation
,
8322 strlen(operation
), NULL
);
8330 Py_BEGIN_ALLOW_THREADS
8331 rc
= ShellExecuteW((HWND
)0, woperation
? PyUnicode_AS_UNICODE(woperation
) : 0,
8332 PyUnicode_AS_UNICODE(unipath
),
8333 NULL
, NULL
, SW_SHOWNORMAL
);
8334 Py_END_ALLOW_THREADS
8336 Py_XDECREF(woperation
);
8337 if (rc
<= (HINSTANCE
)32) {
8338 PyObject
*errval
= win32_error_unicode("startfile",
8339 PyUnicode_AS_UNICODE(unipath
));
8346 if (!PyArg_ParseTuple(args
, "et|s:startfile",
8347 Py_FileSystemDefaultEncoding
, &filepath
,
8350 Py_BEGIN_ALLOW_THREADS
8351 rc
= ShellExecute((HWND
)0, operation
, filepath
,
8352 NULL
, NULL
, SW_SHOWNORMAL
);
8353 Py_END_ALLOW_THREADS
8354 if (rc
<= (HINSTANCE
)32) {
8355 PyObject
*errval
= win32_error("startfile", filepath
);
8356 PyMem_Free(filepath
);
8359 PyMem_Free(filepath
);
8363 #endif /* MS_WINDOWS */
8365 #ifdef HAVE_GETLOADAVG
8366 PyDoc_STRVAR(posix_getloadavg__doc__
,
8367 "getloadavg() -> (float, float, float)\n\n\
8368 Return the number of processes in the system run queue averaged over\n\
8369 the last 1, 5, and 15 minutes or raises OSError if the load average\n\
8373 posix_getloadavg(PyObject
*self
, PyObject
*noargs
)
8376 if (getloadavg(loadavg
, 3)!=3) {
8377 PyErr_SetString(PyExc_OSError
, "Load averages are unobtainable");
8380 return Py_BuildValue("ddd", loadavg
[0], loadavg
[1], loadavg
[2]);
8386 PyDoc_STRVAR(win32_urandom__doc__
,
8387 "urandom(n) -> str\n\n\
8388 Return a string of n random bytes suitable for cryptographic use.");
8390 typedef BOOL (WINAPI
*CRYPTACQUIRECONTEXTA
)(HCRYPTPROV
*phProv
,\
8391 LPCSTR pszContainer
, LPCSTR pszProvider
, DWORD dwProvType
,\
8393 typedef BOOL (WINAPI
*CRYPTGENRANDOM
)(HCRYPTPROV hProv
, DWORD dwLen
,\
8396 static CRYPTGENRANDOM pCryptGenRandom
= NULL
;
8397 /* This handle is never explicitly released. Instead, the operating
8398 system will release it when the process terminates. */
8399 static HCRYPTPROV hCryptProv
= 0;
8402 win32_urandom(PyObject
*self
, PyObject
*args
)
8407 /* Read arguments */
8408 if (! PyArg_ParseTuple(args
, "i:urandom", &howMany
))
8411 return PyErr_Format(PyExc_ValueError
,
8412 "negative argument not allowed");
8414 if (hCryptProv
== 0) {
8415 HINSTANCE hAdvAPI32
= NULL
;
8416 CRYPTACQUIRECONTEXTA pCryptAcquireContext
= NULL
;
8418 /* Obtain handle to the DLL containing CryptoAPI
8419 This should not fail */
8420 hAdvAPI32
= GetModuleHandle("advapi32.dll");
8421 if(hAdvAPI32
== NULL
)
8422 return win32_error("GetModuleHandle", NULL
);
8424 /* Obtain pointers to the CryptoAPI functions
8425 This will fail on some early versions of Win95 */
8426 pCryptAcquireContext
= (CRYPTACQUIRECONTEXTA
)GetProcAddress(
8428 "CryptAcquireContextA");
8429 if (pCryptAcquireContext
== NULL
)
8430 return PyErr_Format(PyExc_NotImplementedError
,
8431 "CryptAcquireContextA not found");
8433 pCryptGenRandom
= (CRYPTGENRANDOM
)GetProcAddress(
8434 hAdvAPI32
, "CryptGenRandom");
8435 if (pCryptGenRandom
== NULL
)
8436 return PyErr_Format(PyExc_NotImplementedError
,
8437 "CryptGenRandom not found");
8439 /* Acquire context */
8440 if (! pCryptAcquireContext(&hCryptProv
, NULL
, NULL
,
8441 PROV_RSA_FULL
, CRYPT_VERIFYCONTEXT
))
8442 return win32_error("CryptAcquireContext", NULL
);
8445 /* Allocate bytes */
8446 result
= PyString_FromStringAndSize(NULL
, howMany
);
8447 if (result
!= NULL
) {
8448 /* Get random data */
8449 memset(PyString_AS_STRING(result
), 0, howMany
); /* zero seed */
8450 if (! pCryptGenRandom(hCryptProv
, howMany
, (unsigned char*)
8451 PyString_AS_STRING(result
))) {
8453 return win32_error("CryptGenRandom", NULL
);
8461 /* Use openssl random routine */
8462 #include <openssl/rand.h>
8463 PyDoc_STRVAR(vms_urandom__doc__
,
8464 "urandom(n) -> str\n\n\
8465 Return a string of n random bytes suitable for cryptographic use.");
8468 vms_urandom(PyObject
*self
, PyObject
*args
)
8473 /* Read arguments */
8474 if (! PyArg_ParseTuple(args
, "i:urandom", &howMany
))
8477 return PyErr_Format(PyExc_ValueError
,
8478 "negative argument not allowed");
8480 /* Allocate bytes */
8481 result
= PyString_FromStringAndSize(NULL
, howMany
);
8482 if (result
!= NULL
) {
8483 /* Get random data */
8484 if (RAND_pseudo_bytes((unsigned char*)
8485 PyString_AS_STRING(result
),
8488 return PyErr_Format(PyExc_ValueError
,
8489 "RAND_pseudo_bytes");
8496 #ifdef HAVE_SETRESUID
8497 PyDoc_STRVAR(posix_setresuid__doc__
,
8498 "setresuid(ruid, euid, suid)\n\n\
8499 Set the current process's real, effective, and saved user ids.");
8502 posix_setresuid (PyObject
*self
, PyObject
*args
)
8504 /* We assume uid_t is no larger than a long. */
8505 long ruid
, euid
, suid
;
8506 if (!PyArg_ParseTuple(args
, "lll", &ruid
, &euid
, &suid
))
8508 if (setresuid(ruid
, euid
, suid
) < 0)
8509 return posix_error();
8514 #ifdef HAVE_SETRESGID
8515 PyDoc_STRVAR(posix_setresgid__doc__
,
8516 "setresgid(rgid, egid, sgid)\n\n\
8517 Set the current process's real, effective, and saved group ids.");
8520 posix_setresgid (PyObject
*self
, PyObject
*args
)
8522 /* We assume uid_t is no larger than a long. */
8523 long rgid
, egid
, sgid
;
8524 if (!PyArg_ParseTuple(args
, "lll", &rgid
, &egid
, &sgid
))
8526 if (setresgid(rgid
, egid
, sgid
) < 0)
8527 return posix_error();
8532 #ifdef HAVE_GETRESUID
8533 PyDoc_STRVAR(posix_getresuid__doc__
,
8534 "getresuid() -> (ruid, euid, suid)\n\n\
8535 Get tuple of the current process's real, effective, and saved user ids.");
8538 posix_getresuid (PyObject
*self
, PyObject
*noargs
)
8540 uid_t ruid
, euid
, suid
;
8541 long l_ruid
, l_euid
, l_suid
;
8542 if (getresuid(&ruid
, &euid
, &suid
) < 0)
8543 return posix_error();
8544 /* Force the values into long's as we don't know the size of uid_t. */
8548 return Py_BuildValue("(lll)", l_ruid
, l_euid
, l_suid
);
8552 #ifdef HAVE_GETRESGID
8553 PyDoc_STRVAR(posix_getresgid__doc__
,
8554 "getresgid() -> (rgid, egid, sgid)\n\n\
8555 Get tuple of the current process's real, effective, and saved user ids.");
8558 posix_getresgid (PyObject
*self
, PyObject
*noargs
)
8560 uid_t rgid
, egid
, sgid
;
8561 long l_rgid
, l_egid
, l_sgid
;
8562 if (getresgid(&rgid
, &egid
, &sgid
) < 0)
8563 return posix_error();
8564 /* Force the values into long's as we don't know the size of uid_t. */
8568 return Py_BuildValue("(lll)", l_rgid
, l_egid
, l_sgid
);
8572 static PyMethodDef posix_methods
[] = {
8573 {"access", posix_access
, METH_VARARGS
, posix_access__doc__
},
8575 {"ttyname", posix_ttyname
, METH_VARARGS
, posix_ttyname__doc__
},
8577 {"chdir", posix_chdir
, METH_VARARGS
, posix_chdir__doc__
},
8579 {"chflags", posix_chflags
, METH_VARARGS
, posix_chflags__doc__
},
8580 #endif /* HAVE_CHFLAGS */
8581 {"chmod", posix_chmod
, METH_VARARGS
, posix_chmod__doc__
},
8583 {"fchmod", posix_fchmod
, METH_VARARGS
, posix_fchmod__doc__
},
8584 #endif /* HAVE_FCHMOD */
8586 {"chown", posix_chown
, METH_VARARGS
, posix_chown__doc__
},
8587 #endif /* HAVE_CHOWN */
8589 {"lchmod", posix_lchmod
, METH_VARARGS
, posix_lchmod__doc__
},
8590 #endif /* HAVE_LCHMOD */
8592 {"fchown", posix_fchown
, METH_VARARGS
, posix_fchown__doc__
},
8593 #endif /* HAVE_FCHOWN */
8594 #ifdef HAVE_LCHFLAGS
8595 {"lchflags", posix_lchflags
, METH_VARARGS
, posix_lchflags__doc__
},
8596 #endif /* HAVE_LCHFLAGS */
8598 {"lchown", posix_lchown
, METH_VARARGS
, posix_lchown__doc__
},
8599 #endif /* HAVE_LCHOWN */
8601 {"chroot", posix_chroot
, METH_VARARGS
, posix_chroot__doc__
},
8604 {"ctermid", posix_ctermid
, METH_NOARGS
, posix_ctermid__doc__
},
8607 {"getcwd", posix_getcwd
, METH_NOARGS
, posix_getcwd__doc__
},
8608 #ifdef Py_USING_UNICODE
8609 {"getcwdu", posix_getcwdu
, METH_NOARGS
, posix_getcwdu__doc__
},
8613 {"link", posix_link
, METH_VARARGS
, posix_link__doc__
},
8614 #endif /* HAVE_LINK */
8615 {"listdir", posix_listdir
, METH_VARARGS
, posix_listdir__doc__
},
8616 {"lstat", posix_lstat
, METH_VARARGS
, posix_lstat__doc__
},
8617 {"mkdir", posix_mkdir
, METH_VARARGS
, posix_mkdir__doc__
},
8619 {"nice", posix_nice
, METH_VARARGS
, posix_nice__doc__
},
8620 #endif /* HAVE_NICE */
8621 #ifdef HAVE_READLINK
8622 {"readlink", posix_readlink
, METH_VARARGS
, posix_readlink__doc__
},
8623 #endif /* HAVE_READLINK */
8624 {"rename", posix_rename
, METH_VARARGS
, posix_rename__doc__
},
8625 {"rmdir", posix_rmdir
, METH_VARARGS
, posix_rmdir__doc__
},
8626 {"stat", posix_stat
, METH_VARARGS
, posix_stat__doc__
},
8627 {"stat_float_times", stat_float_times
, METH_VARARGS
, stat_float_times__doc__
},
8629 {"symlink", posix_symlink
, METH_VARARGS
, posix_symlink__doc__
},
8630 #endif /* HAVE_SYMLINK */
8632 {"system", posix_system
, METH_VARARGS
, posix_system__doc__
},
8634 {"umask", posix_umask
, METH_VARARGS
, posix_umask__doc__
},
8636 {"uname", posix_uname
, METH_NOARGS
, posix_uname__doc__
},
8637 #endif /* HAVE_UNAME */
8638 {"unlink", posix_unlink
, METH_VARARGS
, posix_unlink__doc__
},
8639 {"remove", posix_unlink
, METH_VARARGS
, posix_remove__doc__
},
8640 {"utime", posix_utime
, METH_VARARGS
, posix_utime__doc__
},
8642 {"times", posix_times
, METH_NOARGS
, posix_times__doc__
},
8643 #endif /* HAVE_TIMES */
8644 {"_exit", posix__exit
, METH_VARARGS
, posix__exit__doc__
},
8646 {"execv", posix_execv
, METH_VARARGS
, posix_execv__doc__
},
8647 {"execve", posix_execve
, METH_VARARGS
, posix_execve__doc__
},
8648 #endif /* HAVE_EXECV */
8650 {"spawnv", posix_spawnv
, METH_VARARGS
, posix_spawnv__doc__
},
8651 {"spawnve", posix_spawnve
, METH_VARARGS
, posix_spawnve__doc__
},
8652 #if defined(PYOS_OS2)
8653 {"spawnvp", posix_spawnvp
, METH_VARARGS
, posix_spawnvp__doc__
},
8654 {"spawnvpe", posix_spawnvpe
, METH_VARARGS
, posix_spawnvpe__doc__
},
8655 #endif /* PYOS_OS2 */
8656 #endif /* HAVE_SPAWNV */
8658 {"fork1", posix_fork1
, METH_NOARGS
, posix_fork1__doc__
},
8659 #endif /* HAVE_FORK1 */
8661 {"fork", posix_fork
, METH_NOARGS
, posix_fork__doc__
},
8662 #endif /* HAVE_FORK */
8663 #if defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX)
8664 {"openpty", posix_openpty
, METH_NOARGS
, posix_openpty__doc__
},
8665 #endif /* HAVE_OPENPTY || HAVE__GETPTY || HAVE_DEV_PTMX */
8667 {"forkpty", posix_forkpty
, METH_NOARGS
, posix_forkpty__doc__
},
8668 #endif /* HAVE_FORKPTY */
8670 {"getegid", posix_getegid
, METH_NOARGS
, posix_getegid__doc__
},
8671 #endif /* HAVE_GETEGID */
8673 {"geteuid", posix_geteuid
, METH_NOARGS
, posix_geteuid__doc__
},
8674 #endif /* HAVE_GETEUID */
8676 {"getgid", posix_getgid
, METH_NOARGS
, posix_getgid__doc__
},
8677 #endif /* HAVE_GETGID */
8678 #ifdef HAVE_GETGROUPS
8679 {"getgroups", posix_getgroups
, METH_NOARGS
, posix_getgroups__doc__
},
8681 {"getpid", posix_getpid
, METH_NOARGS
, posix_getpid__doc__
},
8683 {"getpgrp", posix_getpgrp
, METH_NOARGS
, posix_getpgrp__doc__
},
8684 #endif /* HAVE_GETPGRP */
8686 {"getppid", posix_getppid
, METH_NOARGS
, posix_getppid__doc__
},
8687 #endif /* HAVE_GETPPID */
8689 {"getuid", posix_getuid
, METH_NOARGS
, posix_getuid__doc__
},
8690 #endif /* HAVE_GETUID */
8691 #ifdef HAVE_GETLOGIN
8692 {"getlogin", posix_getlogin
, METH_NOARGS
, posix_getlogin__doc__
},
8695 {"kill", posix_kill
, METH_VARARGS
, posix_kill__doc__
},
8696 #endif /* HAVE_KILL */
8698 {"killpg", posix_killpg
, METH_VARARGS
, posix_killpg__doc__
},
8699 #endif /* HAVE_KILLPG */
8701 {"plock", posix_plock
, METH_VARARGS
, posix_plock__doc__
},
8702 #endif /* HAVE_PLOCK */
8704 {"popen", posix_popen
, METH_VARARGS
, posix_popen__doc__
},
8706 {"popen2", win32_popen2
, METH_VARARGS
},
8707 {"popen3", win32_popen3
, METH_VARARGS
},
8708 {"popen4", win32_popen4
, METH_VARARGS
},
8709 {"startfile", win32_startfile
, METH_VARARGS
, win32_startfile__doc__
},
8710 {"kill", win32_kill
, METH_VARARGS
, win32_kill__doc__
},
8712 #if defined(PYOS_OS2) && defined(PYCC_GCC)
8713 {"popen2", os2emx_popen2
, METH_VARARGS
},
8714 {"popen3", os2emx_popen3
, METH_VARARGS
},
8715 {"popen4", os2emx_popen4
, METH_VARARGS
},
8718 #endif /* HAVE_POPEN */
8720 {"setuid", posix_setuid
, METH_VARARGS
, posix_setuid__doc__
},
8721 #endif /* HAVE_SETUID */
8723 {"seteuid", posix_seteuid
, METH_VARARGS
, posix_seteuid__doc__
},
8724 #endif /* HAVE_SETEUID */
8726 {"setegid", posix_setegid
, METH_VARARGS
, posix_setegid__doc__
},
8727 #endif /* HAVE_SETEGID */
8728 #ifdef HAVE_SETREUID
8729 {"setreuid", posix_setreuid
, METH_VARARGS
, posix_setreuid__doc__
},
8730 #endif /* HAVE_SETREUID */
8731 #ifdef HAVE_SETREGID
8732 {"setregid", posix_setregid
, METH_VARARGS
, posix_setregid__doc__
},
8733 #endif /* HAVE_SETREGID */
8735 {"setgid", posix_setgid
, METH_VARARGS
, posix_setgid__doc__
},
8736 #endif /* HAVE_SETGID */
8737 #ifdef HAVE_SETGROUPS
8738 {"setgroups", posix_setgroups
, METH_O
, posix_setgroups__doc__
},
8739 #endif /* HAVE_SETGROUPS */
8740 #ifdef HAVE_INITGROUPS
8741 {"initgroups", posix_initgroups
, METH_VARARGS
, posix_initgroups__doc__
},
8742 #endif /* HAVE_INITGROUPS */
8744 {"getpgid", posix_getpgid
, METH_VARARGS
, posix_getpgid__doc__
},
8745 #endif /* HAVE_GETPGID */
8747 {"setpgrp", posix_setpgrp
, METH_NOARGS
, posix_setpgrp__doc__
},
8748 #endif /* HAVE_SETPGRP */
8750 {"wait", posix_wait
, METH_NOARGS
, posix_wait__doc__
},
8751 #endif /* HAVE_WAIT */
8753 {"wait3", posix_wait3
, METH_VARARGS
, posix_wait3__doc__
},
8754 #endif /* HAVE_WAIT3 */
8756 {"wait4", posix_wait4
, METH_VARARGS
, posix_wait4__doc__
},
8757 #endif /* HAVE_WAIT4 */
8758 #if defined(HAVE_WAITPID) || defined(HAVE_CWAIT)
8759 {"waitpid", posix_waitpid
, METH_VARARGS
, posix_waitpid__doc__
},
8760 #endif /* HAVE_WAITPID */
8762 {"getsid", posix_getsid
, METH_VARARGS
, posix_getsid__doc__
},
8763 #endif /* HAVE_GETSID */
8765 {"setsid", posix_setsid
, METH_NOARGS
, posix_setsid__doc__
},
8766 #endif /* HAVE_SETSID */
8768 {"setpgid", posix_setpgid
, METH_VARARGS
, posix_setpgid__doc__
},
8769 #endif /* HAVE_SETPGID */
8770 #ifdef HAVE_TCGETPGRP
8771 {"tcgetpgrp", posix_tcgetpgrp
, METH_VARARGS
, posix_tcgetpgrp__doc__
},
8772 #endif /* HAVE_TCGETPGRP */
8773 #ifdef HAVE_TCSETPGRP
8774 {"tcsetpgrp", posix_tcsetpgrp
, METH_VARARGS
, posix_tcsetpgrp__doc__
},
8775 #endif /* HAVE_TCSETPGRP */
8776 {"open", posix_open
, METH_VARARGS
, posix_open__doc__
},
8777 {"close", posix_close
, METH_VARARGS
, posix_close__doc__
},
8778 {"closerange", posix_closerange
, METH_VARARGS
, posix_closerange__doc__
},
8779 {"dup", posix_dup
, METH_VARARGS
, posix_dup__doc__
},
8780 {"dup2", posix_dup2
, METH_VARARGS
, posix_dup2__doc__
},
8781 {"lseek", posix_lseek
, METH_VARARGS
, posix_lseek__doc__
},
8782 {"read", posix_read
, METH_VARARGS
, posix_read__doc__
},
8783 {"write", posix_write
, METH_VARARGS
, posix_write__doc__
},
8784 {"fstat", posix_fstat
, METH_VARARGS
, posix_fstat__doc__
},
8785 {"fdopen", posix_fdopen
, METH_VARARGS
, posix_fdopen__doc__
},
8786 {"isatty", posix_isatty
, METH_VARARGS
, posix_isatty__doc__
},
8788 {"pipe", posix_pipe
, METH_NOARGS
, posix_pipe__doc__
},
8791 {"mkfifo", posix_mkfifo
, METH_VARARGS
, posix_mkfifo__doc__
},
8793 #if defined(HAVE_MKNOD) && defined(HAVE_MAKEDEV)
8794 {"mknod", posix_mknod
, METH_VARARGS
, posix_mknod__doc__
},
8796 #ifdef HAVE_DEVICE_MACROS
8797 {"major", posix_major
, METH_VARARGS
, posix_major__doc__
},
8798 {"minor", posix_minor
, METH_VARARGS
, posix_minor__doc__
},
8799 {"makedev", posix_makedev
, METH_VARARGS
, posix_makedev__doc__
},
8801 #ifdef HAVE_FTRUNCATE
8802 {"ftruncate", posix_ftruncate
, METH_VARARGS
, posix_ftruncate__doc__
},
8805 {"putenv", posix_putenv
, METH_VARARGS
, posix_putenv__doc__
},
8807 #ifdef HAVE_UNSETENV
8808 {"unsetenv", posix_unsetenv
, METH_VARARGS
, posix_unsetenv__doc__
},
8810 {"strerror", posix_strerror
, METH_VARARGS
, posix_strerror__doc__
},
8812 {"fchdir", posix_fchdir
, METH_O
, posix_fchdir__doc__
},
8815 {"fsync", posix_fsync
, METH_O
, posix_fsync__doc__
},
8817 #ifdef HAVE_FDATASYNC
8818 {"fdatasync", posix_fdatasync
, METH_O
, posix_fdatasync__doc__
},
8820 #ifdef HAVE_SYS_WAIT_H
8822 {"WCOREDUMP", posix_WCOREDUMP
, METH_VARARGS
, posix_WCOREDUMP__doc__
},
8823 #endif /* WCOREDUMP */
8825 {"WIFCONTINUED",posix_WIFCONTINUED
, METH_VARARGS
, posix_WIFCONTINUED__doc__
},
8826 #endif /* WIFCONTINUED */
8828 {"WIFSTOPPED", posix_WIFSTOPPED
, METH_VARARGS
, posix_WIFSTOPPED__doc__
},
8829 #endif /* WIFSTOPPED */
8831 {"WIFSIGNALED", posix_WIFSIGNALED
, METH_VARARGS
, posix_WIFSIGNALED__doc__
},
8832 #endif /* WIFSIGNALED */
8834 {"WIFEXITED", posix_WIFEXITED
, METH_VARARGS
, posix_WIFEXITED__doc__
},
8835 #endif /* WIFEXITED */
8837 {"WEXITSTATUS", posix_WEXITSTATUS
, METH_VARARGS
, posix_WEXITSTATUS__doc__
},
8838 #endif /* WEXITSTATUS */
8840 {"WTERMSIG", posix_WTERMSIG
, METH_VARARGS
, posix_WTERMSIG__doc__
},
8841 #endif /* WTERMSIG */
8843 {"WSTOPSIG", posix_WSTOPSIG
, METH_VARARGS
, posix_WSTOPSIG__doc__
},
8844 #endif /* WSTOPSIG */
8845 #endif /* HAVE_SYS_WAIT_H */
8846 #if defined(HAVE_FSTATVFS) && defined(HAVE_SYS_STATVFS_H)
8847 {"fstatvfs", posix_fstatvfs
, METH_VARARGS
, posix_fstatvfs__doc__
},
8849 #if defined(HAVE_STATVFS) && defined(HAVE_SYS_STATVFS_H)
8850 {"statvfs", posix_statvfs
, METH_VARARGS
, posix_statvfs__doc__
},
8853 {"tmpfile", posix_tmpfile
, METH_NOARGS
, posix_tmpfile__doc__
},
8856 {"tempnam", posix_tempnam
, METH_VARARGS
, posix_tempnam__doc__
},
8859 {"tmpnam", posix_tmpnam
, METH_NOARGS
, posix_tmpnam__doc__
},
8862 {"confstr", posix_confstr
, METH_VARARGS
, posix_confstr__doc__
},
8865 {"sysconf", posix_sysconf
, METH_VARARGS
, posix_sysconf__doc__
},
8867 #ifdef HAVE_FPATHCONF
8868 {"fpathconf", posix_fpathconf
, METH_VARARGS
, posix_fpathconf__doc__
},
8870 #ifdef HAVE_PATHCONF
8871 {"pathconf", posix_pathconf
, METH_VARARGS
, posix_pathconf__doc__
},
8873 {"abort", posix_abort
, METH_NOARGS
, posix_abort__doc__
},
8875 {"_getfullpathname", posix__getfullpathname
, METH_VARARGS
, NULL
},
8877 #ifdef HAVE_GETLOADAVG
8878 {"getloadavg", posix_getloadavg
, METH_NOARGS
, posix_getloadavg__doc__
},
8881 {"urandom", win32_urandom
, METH_VARARGS
, win32_urandom__doc__
},
8884 {"urandom", vms_urandom
, METH_VARARGS
, vms_urandom__doc__
},
8886 #ifdef HAVE_SETRESUID
8887 {"setresuid", posix_setresuid
, METH_VARARGS
, posix_setresuid__doc__
},
8889 #ifdef HAVE_SETRESGID
8890 {"setresgid", posix_setresgid
, METH_VARARGS
, posix_setresgid__doc__
},
8892 #ifdef HAVE_GETRESUID
8893 {"getresuid", posix_getresuid
, METH_NOARGS
, posix_getresuid__doc__
},
8895 #ifdef HAVE_GETRESGID
8896 {"getresgid", posix_getresgid
, METH_NOARGS
, posix_getresgid__doc__
},
8899 {NULL
, NULL
} /* Sentinel */
8904 ins(PyObject
*module
, char *symbol
, long value
)
8906 return PyModule_AddIntConstant(module
, symbol
, value
);
8909 #if defined(PYOS_OS2)
8910 /* Insert Platform-Specific Constant Values (Strings & Numbers) of Common Use */
8911 static int insertvalues(PyObject
*module
)
8914 ULONG values
[QSV_MAX
+1];
8918 Py_BEGIN_ALLOW_THREADS
8919 rc
= DosQuerySysInfo(1L, QSV_MAX
, &values
[1], sizeof(ULONG
) * QSV_MAX
);
8920 Py_END_ALLOW_THREADS
8922 if (rc
!= NO_ERROR
) {
8927 if (ins(module
, "meminstalled", values
[QSV_TOTPHYSMEM
])) return -1;
8928 if (ins(module
, "memkernel", values
[QSV_TOTRESMEM
])) return -1;
8929 if (ins(module
, "memvirtual", values
[QSV_TOTAVAILMEM
])) return -1;
8930 if (ins(module
, "maxpathlen", values
[QSV_MAX_PATH_LENGTH
])) return -1;
8931 if (ins(module
, "maxnamelen", values
[QSV_MAX_COMP_LENGTH
])) return -1;
8932 if (ins(module
, "revision", values
[QSV_VERSION_REVISION
])) return -1;
8933 if (ins(module
, "timeslice", values
[QSV_MIN_SLICE
])) return -1;
8935 switch (values
[QSV_VERSION_MINOR
]) {
8936 case 0: ver
= "2.00"; break;
8937 case 10: ver
= "2.10"; break;
8938 case 11: ver
= "2.11"; break;
8939 case 30: ver
= "3.00"; break;
8940 case 40: ver
= "4.00"; break;
8941 case 50: ver
= "5.00"; break;
8943 PyOS_snprintf(tmp
, sizeof(tmp
),
8944 "%d-%d", values
[QSV_VERSION_MAJOR
],
8945 values
[QSV_VERSION_MINOR
]);
8949 /* Add Indicator of the Version of the Operating System */
8950 if (PyModule_AddStringConstant(module
, "version", tmp
) < 0)
8953 /* Add Indicator of Which Drive was Used to Boot the System */
8954 tmp
[0] = 'A' + values
[QSV_BOOT_DRIVE
] - 1;
8958 return PyModule_AddStringConstant(module
, "bootdrive", tmp
);
8963 all_ins(PyObject
*d
)
8966 if (ins(d
, "F_OK", (long)F_OK
)) return -1;
8969 if (ins(d
, "R_OK", (long)R_OK
)) return -1;
8972 if (ins(d
, "W_OK", (long)W_OK
)) return -1;
8975 if (ins(d
, "X_OK", (long)X_OK
)) return -1;
8978 if (ins(d
, "NGROUPS_MAX", (long)NGROUPS_MAX
)) return -1;
8981 if (ins(d
, "TMP_MAX", (long)TMP_MAX
)) return -1;
8984 if (ins(d
, "WCONTINUED", (long)WCONTINUED
)) return -1;
8987 if (ins(d
, "WNOHANG", (long)WNOHANG
)) return -1;
8990 if (ins(d
, "WUNTRACED", (long)WUNTRACED
)) return -1;
8993 if (ins(d
, "O_RDONLY", (long)O_RDONLY
)) return -1;
8996 if (ins(d
, "O_WRONLY", (long)O_WRONLY
)) return -1;
8999 if (ins(d
, "O_RDWR", (long)O_RDWR
)) return -1;
9002 if (ins(d
, "O_NDELAY", (long)O_NDELAY
)) return -1;
9005 if (ins(d
, "O_NONBLOCK", (long)O_NONBLOCK
)) return -1;
9008 if (ins(d
, "O_APPEND", (long)O_APPEND
)) return -1;
9011 if (ins(d
, "O_DSYNC", (long)O_DSYNC
)) return -1;
9014 if (ins(d
, "O_RSYNC", (long)O_RSYNC
)) return -1;
9017 if (ins(d
, "O_SYNC", (long)O_SYNC
)) return -1;
9020 if (ins(d
, "O_NOCTTY", (long)O_NOCTTY
)) return -1;
9023 if (ins(d
, "O_CREAT", (long)O_CREAT
)) return -1;
9026 if (ins(d
, "O_EXCL", (long)O_EXCL
)) return -1;
9029 if (ins(d
, "O_TRUNC", (long)O_TRUNC
)) return -1;
9032 if (ins(d
, "O_BINARY", (long)O_BINARY
)) return -1;
9035 if (ins(d
, "O_TEXT", (long)O_TEXT
)) return -1;
9038 if (ins(d
, "O_LARGEFILE", (long)O_LARGEFILE
)) return -1;
9041 if (ins(d
, "O_SHLOCK", (long)O_SHLOCK
)) return -1;
9044 if (ins(d
, "O_EXLOCK", (long)O_EXLOCK
)) return -1;
9049 /* Don't inherit in child processes. */
9050 if (ins(d
, "O_NOINHERIT", (long)O_NOINHERIT
)) return -1;
9052 #ifdef _O_SHORT_LIVED
9053 /* Optimize for short life (keep in memory). */
9054 /* MS forgot to define this one with a non-underscore form too. */
9055 if (ins(d
, "O_SHORT_LIVED", (long)_O_SHORT_LIVED
)) return -1;
9058 /* Automatically delete when last handle is closed. */
9059 if (ins(d
, "O_TEMPORARY", (long)O_TEMPORARY
)) return -1;
9062 /* Optimize for random access. */
9063 if (ins(d
, "O_RANDOM", (long)O_RANDOM
)) return -1;
9066 /* Optimize for sequential access. */
9067 if (ins(d
, "O_SEQUENTIAL", (long)O_SEQUENTIAL
)) return -1;
9070 /* GNU extensions. */
9072 /* Send a SIGIO signal whenever input or output
9073 becomes available on file descriptor */
9074 if (ins(d
, "O_ASYNC", (long)O_ASYNC
)) return -1;
9077 /* Direct disk access. */
9078 if (ins(d
, "O_DIRECT", (long)O_DIRECT
)) return -1;
9081 /* Must be a directory. */
9082 if (ins(d
, "O_DIRECTORY", (long)O_DIRECTORY
)) return -1;
9085 /* Do not follow links. */
9086 if (ins(d
, "O_NOFOLLOW", (long)O_NOFOLLOW
)) return -1;
9089 /* Do not update the access time. */
9090 if (ins(d
, "O_NOATIME", (long)O_NOATIME
)) return -1;
9093 /* These come from sysexits.h */
9095 if (ins(d
, "EX_OK", (long)EX_OK
)) return -1;
9098 if (ins(d
, "EX_USAGE", (long)EX_USAGE
)) return -1;
9099 #endif /* EX_USAGE */
9101 if (ins(d
, "EX_DATAERR", (long)EX_DATAERR
)) return -1;
9102 #endif /* EX_DATAERR */
9104 if (ins(d
, "EX_NOINPUT", (long)EX_NOINPUT
)) return -1;
9105 #endif /* EX_NOINPUT */
9107 if (ins(d
, "EX_NOUSER", (long)EX_NOUSER
)) return -1;
9108 #endif /* EX_NOUSER */
9110 if (ins(d
, "EX_NOHOST", (long)EX_NOHOST
)) return -1;
9111 #endif /* EX_NOHOST */
9112 #ifdef EX_UNAVAILABLE
9113 if (ins(d
, "EX_UNAVAILABLE", (long)EX_UNAVAILABLE
)) return -1;
9114 #endif /* EX_UNAVAILABLE */
9116 if (ins(d
, "EX_SOFTWARE", (long)EX_SOFTWARE
)) return -1;
9117 #endif /* EX_SOFTWARE */
9119 if (ins(d
, "EX_OSERR", (long)EX_OSERR
)) return -1;
9120 #endif /* EX_OSERR */
9122 if (ins(d
, "EX_OSFILE", (long)EX_OSFILE
)) return -1;
9123 #endif /* EX_OSFILE */
9125 if (ins(d
, "EX_CANTCREAT", (long)EX_CANTCREAT
)) return -1;
9126 #endif /* EX_CANTCREAT */
9128 if (ins(d
, "EX_IOERR", (long)EX_IOERR
)) return -1;
9129 #endif /* EX_IOERR */
9131 if (ins(d
, "EX_TEMPFAIL", (long)EX_TEMPFAIL
)) return -1;
9132 #endif /* EX_TEMPFAIL */
9134 if (ins(d
, "EX_PROTOCOL", (long)EX_PROTOCOL
)) return -1;
9135 #endif /* EX_PROTOCOL */
9137 if (ins(d
, "EX_NOPERM", (long)EX_NOPERM
)) return -1;
9138 #endif /* EX_NOPERM */
9140 if (ins(d
, "EX_CONFIG", (long)EX_CONFIG
)) return -1;
9141 #endif /* EX_CONFIG */
9143 if (ins(d
, "EX_NOTFOUND", (long)EX_NOTFOUND
)) return -1;
9144 #endif /* EX_NOTFOUND */
9147 #if defined(PYOS_OS2) && defined(PYCC_GCC)
9148 if (ins(d
, "P_WAIT", (long)P_WAIT
)) return -1;
9149 if (ins(d
, "P_NOWAIT", (long)P_NOWAIT
)) return -1;
9150 if (ins(d
, "P_OVERLAY", (long)P_OVERLAY
)) return -1;
9151 if (ins(d
, "P_DEBUG", (long)P_DEBUG
)) return -1;
9152 if (ins(d
, "P_SESSION", (long)P_SESSION
)) return -1;
9153 if (ins(d
, "P_DETACH", (long)P_DETACH
)) return -1;
9154 if (ins(d
, "P_PM", (long)P_PM
)) return -1;
9155 if (ins(d
, "P_DEFAULT", (long)P_DEFAULT
)) return -1;
9156 if (ins(d
, "P_MINIMIZE", (long)P_MINIMIZE
)) return -1;
9157 if (ins(d
, "P_MAXIMIZE", (long)P_MAXIMIZE
)) return -1;
9158 if (ins(d
, "P_FULLSCREEN", (long)P_FULLSCREEN
)) return -1;
9159 if (ins(d
, "P_WINDOWED", (long)P_WINDOWED
)) return -1;
9160 if (ins(d
, "P_FOREGROUND", (long)P_FOREGROUND
)) return -1;
9161 if (ins(d
, "P_BACKGROUND", (long)P_BACKGROUND
)) return -1;
9162 if (ins(d
, "P_NOCLOSE", (long)P_NOCLOSE
)) return -1;
9163 if (ins(d
, "P_NOSESSION", (long)P_NOSESSION
)) return -1;
9164 if (ins(d
, "P_QUOTE", (long)P_QUOTE
)) return -1;
9165 if (ins(d
, "P_TILDE", (long)P_TILDE
)) return -1;
9166 if (ins(d
, "P_UNRELATED", (long)P_UNRELATED
)) return -1;
9167 if (ins(d
, "P_DEBUGDESC", (long)P_DEBUGDESC
)) return -1;
9169 if (ins(d
, "P_WAIT", (long)_P_WAIT
)) return -1;
9170 if (ins(d
, "P_NOWAIT", (long)_P_NOWAIT
)) return -1;
9171 if (ins(d
, "P_OVERLAY", (long)_OLD_P_OVERLAY
)) return -1;
9172 if (ins(d
, "P_NOWAITO", (long)_P_NOWAITO
)) return -1;
9173 if (ins(d
, "P_DETACH", (long)_P_DETACH
)) return -1;
9177 #if defined(PYOS_OS2)
9178 if (insertvalues(d
)) return -1;
9184 #if (defined(_MSC_VER) || defined(__WATCOMC__) || defined(__BORLANDC__)) && !defined(__QNX__)
9185 #define INITFUNC initnt
9186 #define MODNAME "nt"
9188 #elif defined(PYOS_OS2)
9189 #define INITFUNC initos2
9190 #define MODNAME "os2"
9193 #define INITFUNC initposix
9194 #define MODNAME "posix"
9202 m
= Py_InitModule3(MODNAME
,
9208 /* Initialize environ dictionary */
9209 v
= convertenviron();
9211 if (v
== NULL
|| PyModule_AddObject(m
, "environ", v
) != 0)
9218 if (setup_confname_tables(m
))
9221 Py_INCREF(PyExc_OSError
);
9222 PyModule_AddObject(m
, "error", PyExc_OSError
);
9225 if (posix_putenv_garbage
== NULL
)
9226 posix_putenv_garbage
= PyDict_New();
9230 stat_result_desc
.name
= MODNAME
".stat_result";
9231 stat_result_desc
.fields
[7].name
= PyStructSequence_UnnamedField
;
9232 stat_result_desc
.fields
[8].name
= PyStructSequence_UnnamedField
;
9233 stat_result_desc
.fields
[9].name
= PyStructSequence_UnnamedField
;
9234 PyStructSequence_InitType(&StatResultType
, &stat_result_desc
);
9235 structseq_new
= StatResultType
.tp_new
;
9236 StatResultType
.tp_new
= statresult_new
;
9238 statvfs_result_desc
.name
= MODNAME
".statvfs_result";
9239 PyStructSequence_InitType(&StatVFSResultType
, &statvfs_result_desc
);
9240 #ifdef NEED_TICKS_PER_SECOND
9241 # if defined(HAVE_SYSCONF) && defined(_SC_CLK_TCK)
9242 ticks_per_second
= sysconf(_SC_CLK_TCK
);
9244 ticks_per_second
= HZ
;
9246 ticks_per_second
= 60; /* magic fallback value; may be bogus */
9250 Py_INCREF((PyObject
*) &StatResultType
);
9251 PyModule_AddObject(m
, "stat_result", (PyObject
*) &StatResultType
);
9252 Py_INCREF((PyObject
*) &StatVFSResultType
);
9253 PyModule_AddObject(m
, "statvfs_result",
9254 (PyObject
*) &StatVFSResultType
);
9259 * Step 2 of weak-linking support on Mac OS X.
9261 * The code below removes functions that are not available on the
9262 * currently active platform.
9264 * This block allow one to use a python binary that was build on
9265 * OSX 10.4 on OSX 10.3, without loosing access to new APIs on
9268 #ifdef HAVE_FSTATVFS
9269 if (fstatvfs
== NULL
) {
9270 if (PyObject_DelAttrString(m
, "fstatvfs") == -1) {
9274 #endif /* HAVE_FSTATVFS */
9277 if (statvfs
== NULL
) {
9278 if (PyObject_DelAttrString(m
, "statvfs") == -1) {
9282 #endif /* HAVE_STATVFS */
9285 if (lchown
== NULL
) {
9286 if (PyObject_DelAttrString(m
, "lchown") == -1) {
9290 #endif /* HAVE_LCHOWN */
9293 #endif /* __APPLE__ */