blob: b1242ddf01837909125e7faf74f9ad25d02ffe59 [file] [log] [blame]
Guido van Rossumf70e43a1991-02-19 12:39:46 +00001
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002/* POSIX module implementation */
3
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004/* 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
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00007 assumes that for Windows NT, the macro 'MS_WINDOWS' is defined independent
Guido van Rossumad0ee831995-03-01 10:34:45 +00008 of the compiler used. Different compilers define their own feature
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00009 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. */
Guido van Rossumad0ee831995-03-01 10:34:45 +000013
Guido van Rossuma4916fa1996-05-23 22:58:55 +000014/* See also ../Dos/dosmodule.c */
Guido van Rossumad0ee831995-03-01 10:34:45 +000015
Ronald Oussorend06b6f22006-04-23 11:59:25 +000016#ifdef __APPLE__
17 /*
Victor Stinnerd6f85422010-05-05 23:33:33 +000018 * Step 1 of support for weak-linking a number of symbols existing on
Ronald Oussorend06b6f22006-04-23 11:59:25 +000019 * OSX 10.4 and later, see the comment in the #ifdef __APPLE__ block
20 * at the end of this file for more information.
21 */
22# pragma weak lchown
23# pragma weak statvfs
24# pragma weak fstatvfs
25
26#endif /* __APPLE__ */
27
Thomas Wouters68bc4f92006-03-01 01:05:10 +000028#define PY_SSIZE_T_CLEAN
29
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000030#include "Python.h"
31#include "structseq.h"
32
Martin v. Löwis79acb9e2002-12-06 12:48:53 +000033#if defined(__VMS)
Martin v. Löwis79acb9e2002-12-06 12:48:53 +000034# include <unixio.h>
Martin v. Löwis79acb9e2002-12-06 12:48:53 +000035#endif /* defined(__VMS) */
36
Anthony Baxterac6bd462006-04-13 02:06:09 +000037#ifdef __cplusplus
38extern "C" {
39#endif
40
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000041PyDoc_STRVAR(posix__doc__,
Guido van Rossumec4f4ac1997-06-02 22:20:51 +000042"This module provides access to operating system functionality that is\n\
43standardized by the C Standard and the POSIX standard (a thinly\n\
44disguised Unix interface). Refer to the library manual and\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000045corresponding Unix manual entries for more information on calls.");
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000046
Martin v. Löwis0073f2e2002-11-21 23:52:35 +000047#ifndef Py_USING_UNICODE
48/* This is used in signatures of functions. */
49#define Py_UNICODE void
50#endif
51
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +000052#if defined(PYOS_OS2)
53#define INCL_DOS
54#define INCL_DOSERRORS
55#define INCL_DOSPROCESS
56#define INCL_NOPMAPI
57#include <os2.h>
Andrew MacIntyre6c73af22002-03-03 03:07:07 +000058#if defined(PYCC_GCC)
59#include <ctype.h>
60#include <io.h>
61#include <stdio.h>
62#include <process.h>
Andrew MacIntyre6c73af22002-03-03 03:07:07 +000063#endif
Andrew MacIntyreda4d6cb2004-03-29 11:53:38 +000064#include "osdefs.h"
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +000065#endif
66
Martin v. Löwis0e8bd7e2006-06-10 12:23:46 +000067#ifdef HAVE_SYS_TYPES_H
Guido van Rossumb6775db1994-08-01 11:34:53 +000068#include <sys/types.h>
Martin v. Löwis0e8bd7e2006-06-10 12:23:46 +000069#endif /* HAVE_SYS_TYPES_H */
70
71#ifdef HAVE_SYS_STAT_H
Guido van Rossumb6775db1994-08-01 11:34:53 +000072#include <sys/stat.h>
Martin v. Löwis0e8bd7e2006-06-10 12:23:46 +000073#endif /* HAVE_SYS_STAT_H */
Guido van Rossuma6535fd2001-10-18 19:44:10 +000074
Guido van Rossum36bc6801995-06-14 22:54:23 +000075#ifdef HAVE_SYS_WAIT_H
Victor Stinnerd6f85422010-05-05 23:33:33 +000076#include <sys/wait.h> /* For WNOHANG */
Guido van Rossum36bc6801995-06-14 22:54:23 +000077#endif
Guido van Rossumb6775db1994-08-01 11:34:53 +000078
Martin v. Löwis0e8bd7e2006-06-10 12:23:46 +000079#ifdef HAVE_SIGNAL_H
Guido van Rossuma376cc51996-12-05 23:43:35 +000080#include <signal.h>
Martin v. Löwis0e8bd7e2006-06-10 12:23:46 +000081#endif
Guido van Rossuma376cc51996-12-05 23:43:35 +000082
Guido van Rossumb6775db1994-08-01 11:34:53 +000083#ifdef HAVE_FCNTL_H
84#include <fcntl.h>
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +000085#endif /* HAVE_FCNTL_H */
Guido van Rossumb6775db1994-08-01 11:34:53 +000086
Guido van Rossuma6535fd2001-10-18 19:44:10 +000087#ifdef HAVE_GRP_H
88#include <grp.h>
89#endif
90
Barry Warsaw5676bd12003-01-07 20:57:09 +000091#ifdef HAVE_SYSEXITS_H
92#include <sysexits.h>
93#endif /* HAVE_SYSEXITS_H */
94
Anthony Baxter8a560de2004-10-13 15:30:56 +000095#ifdef HAVE_SYS_LOADAVG_H
96#include <sys/loadavg.h>
97#endif
98
Guido van Rossuma4916fa1996-05-23 22:58:55 +000099/* Various compilers have only certain posix functions */
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000100/* XXX Gosh I wish these were all moved into pyconfig.h */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000101#if defined(PYCC_VACPP) && defined(PYOS_OS2)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000102#include <process.h>
103#else
Victor Stinnerd6f85422010-05-05 23:33:33 +0000104#if defined(__WATCOMC__) && !defined(__QNX__) /* Watcom compiler */
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000105#define HAVE_GETCWD 1
106#define HAVE_OPENDIR 1
Victor Stinnerd6f85422010-05-05 23:33:33 +0000107#define HAVE_SYSTEM 1
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000108#if defined(__OS2__)
109#define HAVE_EXECV 1
110#define HAVE_WAIT 1
Guido van Rossumad0ee831995-03-01 10:34:45 +0000111#endif
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000112#include <process.h>
113#else
Victor Stinnerd6f85422010-05-05 23:33:33 +0000114#ifdef __BORLANDC__ /* Borland compiler */
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000115#define HAVE_EXECV 1
116#define HAVE_GETCWD 1
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000117#define HAVE_OPENDIR 1
118#define HAVE_PIPE 1
119#define HAVE_POPEN 1
Victor Stinnerd6f85422010-05-05 23:33:33 +0000120#define HAVE_SYSTEM 1
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000121#define HAVE_WAIT 1
122#else
Victor Stinnerd6f85422010-05-05 23:33:33 +0000123#ifdef _MSC_VER /* Microsoft compiler */
Guido van Rossum8d665e61996-06-26 18:22:49 +0000124#define HAVE_GETCWD 1
Victor Stinnerd6f85422010-05-05 23:33:33 +0000125#define HAVE_SPAWNV 1
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000126#define HAVE_EXECV 1
127#define HAVE_PIPE 1
128#define HAVE_POPEN 1
Victor Stinnerd6f85422010-05-05 23:33:33 +0000129#define HAVE_SYSTEM 1
130#define HAVE_CWAIT 1
131#define HAVE_FSYNC 1
Tim Peters11b23062003-04-23 02:39:17 +0000132#define fsync _commit
Andrew MacIntyre6c73af22002-03-03 03:07:07 +0000133#else
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000134#if defined(PYOS_OS2) && defined(PYCC_GCC) || defined(__VMS)
135/* Everything needed is defined in PC/os2emx/pyconfig.h or vms/pyconfig.h */
Victor Stinnerd6f85422010-05-05 23:33:33 +0000136#else /* all other compilers */
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000137/* Unix functions that the configure script doesn't check for */
138#define HAVE_EXECV 1
139#define HAVE_FORK 1
Victor Stinnerd6f85422010-05-05 23:33:33 +0000140#if defined(__USLC__) && defined(__SCO_VERSION__) /* SCO UDK Compiler */
Guido van Rossum2242f2f2001-04-11 20:58:20 +0000141#define HAVE_FORK1 1
142#endif
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000143#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
149#define HAVE_KILL 1
150#define HAVE_OPENDIR 1
151#define HAVE_PIPE 1
Martin v. Löwis212ede62003-09-20 11:20:30 +0000152#ifndef __rtems__
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000153#define HAVE_POPEN 1
Martin v. Löwis212ede62003-09-20 11:20:30 +0000154#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +0000155#define HAVE_SYSTEM 1
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000156#define HAVE_WAIT 1
Victor Stinnerd6f85422010-05-05 23:33:33 +0000157#define HAVE_TTYNAME 1
Martin v. Löwis7a924e62003-03-05 14:15:21 +0000158#endif /* PYOS_OS2 && PYCC_GCC && __VMS */
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000159#endif /* _MSC_VER */
160#endif /* __BORLANDC__ */
Guido van Rossumc5a0f531997-12-02 20:36:02 +0000161#endif /* ! __WATCOMC__ || __QNX__ */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000162#endif /* ! __IBMC__ */
Guido van Rossumad0ee831995-03-01 10:34:45 +0000163
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000164#ifndef _MSC_VER
Guido van Rossum36bc6801995-06-14 22:54:23 +0000165
Martin v. Löwis8eb92a02002-09-19 08:03:21 +0000166#if defined(__sgi)&&_COMPILER_VERSION>=700
167/* declare ctermid_r if compiling with MIPSPro 7.x in ANSI C mode
168 (default) */
169extern char *ctermid_r(char *);
170#endif
171
Thomas Wouters1e0c2f42000-07-24 16:06:23 +0000172#ifndef HAVE_UNISTD_H
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000173#if defined(PYCC_VACPP)
Fredrik Lundhff7df9d2000-07-08 22:48:53 +0000174extern int mkdir(char *);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000175#else
Guido van Rossumc5a0f531997-12-02 20:36:02 +0000176#if ( defined(__WATCOMC__) || defined(_MSC_VER) ) && !defined(__QNX__)
Fredrik Lundhff7df9d2000-07-08 22:48:53 +0000177extern int mkdir(const char *);
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000178#else
Fredrik Lundhff7df9d2000-07-08 22:48:53 +0000179extern int mkdir(const char *, mode_t);
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000180#endif
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000181#endif
182#if defined(__IBMC__) || defined(__IBMCPP__)
Fredrik Lundhff7df9d2000-07-08 22:48:53 +0000183extern int chdir(char *);
184extern int rmdir(char *);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000185#else
Fredrik Lundhff7df9d2000-07-08 22:48:53 +0000186extern int chdir(const char *);
187extern int rmdir(const char *);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000188#endif
Tim Peters58e0a8c2001-05-14 22:32:33 +0000189#ifdef __BORLANDC__
190extern int chmod(const char *, int);
191#else
Fredrik Lundhff7df9d2000-07-08 22:48:53 +0000192extern int chmod(const char *, mode_t);
Tim Peters58e0a8c2001-05-14 22:32:33 +0000193#endif
Christian Heimes36281872007-11-30 21:11:28 +0000194/*#ifdef HAVE_FCHMOD
195extern int fchmod(int, mode_t);
196#endif*/
197/*#ifdef HAVE_LCHMOD
198extern int lchmod(const char *, mode_t);
199#endif*/
Fredrik Lundhff7df9d2000-07-08 22:48:53 +0000200extern int chown(const char *, uid_t, gid_t);
201extern char *getcwd(char *, int);
202extern char *strerror(int);
203extern int link(const char *, const char *);
204extern int rename(const char *, const char *);
205extern int stat(const char *, struct stat *);
206extern int unlink(const char *);
207extern int pclose(FILE *);
Guido van Rossumb6775db1994-08-01 11:34:53 +0000208#ifdef HAVE_SYMLINK
Fredrik Lundhff7df9d2000-07-08 22:48:53 +0000209extern int symlink(const char *, const char *);
Guido van Rossuma38a5031995-02-17 15:11:36 +0000210#endif /* HAVE_SYMLINK */
Guido van Rossumb6775db1994-08-01 11:34:53 +0000211#ifdef HAVE_LSTAT
Fredrik Lundhff7df9d2000-07-08 22:48:53 +0000212extern int lstat(const char *, struct stat *);
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +0000213#endif /* HAVE_LSTAT */
Guido van Rossumb6775db1994-08-01 11:34:53 +0000214#endif /* !HAVE_UNISTD_H */
Guido van Rossum36bc6801995-06-14 22:54:23 +0000215
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000216#endif /* !_MSC_VER */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000217
Guido van Rossumb6775db1994-08-01 11:34:53 +0000218#ifdef HAVE_UTIME_H
219#include <utime.h>
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +0000220#endif /* HAVE_UTIME_H */
Guido van Rossumb6775db1994-08-01 11:34:53 +0000221
Guido van Rossum14ed0b21994-09-29 09:50:09 +0000222#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 */
226
Guido van Rossumb6775db1994-08-01 11:34:53 +0000227#ifdef HAVE_SYS_TIMES_H
228#include <sys/times.h>
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +0000229#endif /* HAVE_SYS_TIMES_H */
Guido van Rossumb6775db1994-08-01 11:34:53 +0000230
231#ifdef HAVE_SYS_PARAM_H
232#include <sys/param.h>
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +0000233#endif /* HAVE_SYS_PARAM_H */
Guido van Rossumb6775db1994-08-01 11:34:53 +0000234
235#ifdef HAVE_SYS_UTSNAME_H
236#include <sys/utsname.h>
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +0000237#endif /* HAVE_SYS_UTSNAME_H */
Guido van Rossumb6775db1994-08-01 11:34:53 +0000238
Guido van Rossum3bbc62e1995-01-02 19:30:30 +0000239#ifdef HAVE_DIRENT_H
Guido van Rossumb6775db1994-08-01 11:34:53 +0000240#include <dirent.h>
Guido van Rossum3bbc62e1995-01-02 19:30:30 +0000241#define NAMLEN(dirent) strlen((dirent)->d_name)
242#else
Guido van Rossumc5a0f531997-12-02 20:36:02 +0000243#if defined(__WATCOMC__) && !defined(__QNX__)
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000244#include <direct.h>
245#define NAMLEN(dirent) strlen((dirent)->d_name)
246#else
Guido van Rossumb6775db1994-08-01 11:34:53 +0000247#define dirent direct
Guido van Rossum3bbc62e1995-01-02 19:30:30 +0000248#define NAMLEN(dirent) (dirent)->d_namlen
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000249#endif
Guido van Rossum3bbc62e1995-01-02 19:30:30 +0000250#ifdef HAVE_SYS_NDIR_H
Guido van Rossumb6775db1994-08-01 11:34:53 +0000251#include <sys/ndir.h>
Guido van Rossum3bbc62e1995-01-02 19:30:30 +0000252#endif
253#ifdef HAVE_SYS_DIR_H
Guido van Rossumb6775db1994-08-01 11:34:53 +0000254#include <sys/dir.h>
Guido van Rossum3bbc62e1995-01-02 19:30:30 +0000255#endif
256#ifdef HAVE_NDIR_H
Guido van Rossumb6775db1994-08-01 11:34:53 +0000257#include <ndir.h>
Guido van Rossum3bbc62e1995-01-02 19:30:30 +0000258#endif
259#endif
Guido van Rossumb6775db1994-08-01 11:34:53 +0000260
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000261#ifdef _MSC_VER
Martin v. Löwis0e8bd7e2006-06-10 12:23:46 +0000262#ifdef HAVE_DIRECT_H
Guido van Rossumb6775db1994-08-01 11:34:53 +0000263#include <direct.h>
Martin v. Löwis0e8bd7e2006-06-10 12:23:46 +0000264#endif
265#ifdef HAVE_IO_H
Guido van Rossumb6775db1994-08-01 11:34:53 +0000266#include <io.h>
Martin v. Löwis0e8bd7e2006-06-10 12:23:46 +0000267#endif
268#ifdef HAVE_PROCESS_H
Guido van Rossumb6775db1994-08-01 11:34:53 +0000269#include <process.h>
Martin v. Löwis0e8bd7e2006-06-10 12:23:46 +0000270#endif
Tim Petersbc2e10e2002-03-03 23:17:02 +0000271#include "osdefs.h"
Kristján Valur Jónssonfeab3342009-04-01 16:08:34 +0000272#include <malloc.h>
Guido van Rossumb6775db1994-08-01 11:34:53 +0000273#include <windows.h>
Victor Stinnerd6f85422010-05-05 23:33:33 +0000274#include <shellapi.h> /* for ShellExecute() */
275#define popen _popen
276#define pclose _pclose
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000277#endif /* _MSC_VER */
Guido van Rossumb6775db1994-08-01 11:34:53 +0000278
Guido van Rossumd48f2521997-12-05 22:19:34 +0000279#if defined(PYCC_VACPP) && defined(PYOS_OS2)
Guido van Rossumb6775db1994-08-01 11:34:53 +0000280#include <io.h>
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +0000281#endif /* OS2 */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000282
Tim Petersbc2e10e2002-03-03 23:17:02 +0000283#ifndef MAXPATHLEN
Thomas Wouters1ddba602006-04-25 15:29:46 +0000284#if defined(PATH_MAX) && PATH_MAX > 1024
285#define MAXPATHLEN PATH_MAX
286#else
Tim Petersbc2e10e2002-03-03 23:17:02 +0000287#define MAXPATHLEN 1024
Thomas Wouters1ddba602006-04-25 15:29:46 +0000288#endif
Tim Petersbc2e10e2002-03-03 23:17:02 +0000289#endif /* MAXPATHLEN */
290
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000291#ifdef UNION_WAIT
292/* Emulate some macros on systems that have a union instead of macros */
293
294#ifndef WIFEXITED
295#define WIFEXITED(u_wait) (!(u_wait).w_termsig && !(u_wait).w_coredump)
296#endif
297
298#ifndef WEXITSTATUS
299#define WEXITSTATUS(u_wait) (WIFEXITED(u_wait)?((u_wait).w_retcode):-1)
300#endif
301
302#ifndef WTERMSIG
303#define WTERMSIG(u_wait) ((u_wait).w_termsig)
304#endif
305
Neal Norwitzd5a37542006-03-20 06:48:34 +0000306#define WAIT_TYPE union wait
307#define WAIT_STATUS_INT(s) (s.w_status)
308
309#else /* !UNION_WAIT */
310#define WAIT_TYPE int
311#define WAIT_STATUS_INT(s) (s)
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000312#endif /* UNION_WAIT */
313
Antoine Pitrou5e858fe2009-05-23 15:37:45 +0000314/* Issue #1983: pid_t can be longer than a C long on some systems */
Antoine Pitrou4fe38582009-05-24 12:15:04 +0000315#if !defined(SIZEOF_PID_T) || SIZEOF_PID_T == SIZEOF_INT
Antoine Pitrou5e858fe2009-05-23 15:37:45 +0000316#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
327#else
328#error "sizeof(pid_t) is neither sizeof(int), sizeof(long) or sizeof(long long)"
Antoine Pitrou5e858fe2009-05-23 15:37:45 +0000329#endif /* SIZEOF_PID_T */
330
Greg Wardb48bc172000-03-01 21:51:56 +0000331/* 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
335#endif
336
337#if defined(HAVE_TMPNAM_R) && defined(WITH_THREAD)
338#define USE_TMPNAM_R
339#endif
340
Fred Drake699f3522000-06-29 21:12:41 +0000341/* choose the appropriate stat and fstat functions and return structs */
Guido van Rossum64529cd2000-06-30 22:45:12 +0000342#undef STAT
Martin v. Löwis6238d2b2002-06-30 15:26:10 +0000343#if defined(MS_WIN64) || defined(MS_WINDOWS)
Victor Stinnerd6f85422010-05-05 23:33:33 +0000344# define STAT win32_stat
345# define FSTAT win32_fstat
346# define STRUCT_STAT struct win32_stat
Fred Drake699f3522000-06-29 21:12:41 +0000347#else
Victor Stinnerd6f85422010-05-05 23:33:33 +0000348# define STAT stat
349# define FSTAT fstat
350# define STRUCT_STAT struct stat
Fred Drake699f3522000-06-29 21:12:41 +0000351#endif
352
Tim Peters11b23062003-04-23 02:39:17 +0000353#if defined(MAJOR_IN_MKDEV)
Martin v. Löwisdbe3f762002-10-10 14:27:30 +0000354#include <sys/mkdev.h>
355#else
356#if defined(MAJOR_IN_SYSMACROS)
357#include <sys/sysmacros.h>
358#endif
Neal Norwitz3d949422002-04-20 13:46:43 +0000359#if defined(HAVE_MKNOD) && defined(HAVE_SYS_MKDEV_H)
360#include <sys/mkdev.h>
361#endif
Martin v. Löwisdbe3f762002-10-10 14:27:30 +0000362#endif
Fred Drake699f3522000-06-29 21:12:41 +0000363
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +0000364#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
372 * writing."
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
Victor Stinnerd6f85422010-05-05 23:33:33 +0000377 * by using the exported __pinfo data member and knowledge of the
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +0000378 * 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())
384 */
Kristján Valur Jónssonfeab3342009-04-01 16:08:34 +0000385/* The actual size of the structure is determined at runtime.
386 * Only the first items must be present.
387 */
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +0000388typedef struct {
Victor Stinnerd6f85422010-05-05 23:33:33 +0000389 intptr_t osfhnd;
390 char osfile;
Kristján Valur Jónssonfeab3342009-04-01 16:08:34 +0000391} my_ioinfo;
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +0000392
Kristján Valur Jónssonfeab3342009-04-01 16:08:34 +0000393extern __declspec(dllimport) char * __pioinfo[];
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +0000394#define IOINFO_L2E 5
395#define IOINFO_ARRAY_ELTS (1 << IOINFO_L2E)
396#define IOINFO_ARRAYS 64
397#define _NHANDLE_ (IOINFO_ARRAYS * IOINFO_ARRAY_ELTS)
398#define FOPEN 0x01
399#define _NO_CONSOLE_FILENO (intptr_t)-2
400
401/* This function emulates what the windows CRT does to validate file handles */
402int
403_PyVerify_fd(int fd)
404{
Victor Stinnerd6f85422010-05-05 23:33:33 +0000405 const int i1 = fd >> IOINFO_L2E;
406 const int i2 = fd & ((1 << IOINFO_L2E) - 1);
Kristján Valur Jónssonfeab3342009-04-01 16:08:34 +0000407
Victor Stinnerd6f85422010-05-05 23:33:33 +0000408 static int sizeof_ioinfo = 0;
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +0000409
Victor Stinnerd6f85422010-05-05 23:33:33 +0000410 /* Determine the actual size of the ioinfo structure,
411 * as used by the CRT loaded in memory
412 */
413 if (sizeof_ioinfo == 0 && __pioinfo[0] != NULL) {
414 sizeof_ioinfo = _msize(__pioinfo[0]) / IOINFO_ARRAY_ELTS;
415 }
416 if (sizeof_ioinfo == 0) {
417 /* This should not happen... */
418 goto fail;
419 }
420
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
425 */
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) {
430 return 1;
431 }
432 }
433 }
Kristján Valur Jónssonfeab3342009-04-01 16:08:34 +0000434 fail:
Victor Stinnerd6f85422010-05-05 23:33:33 +0000435 errno = EBADF;
436 return 0;
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +0000437}
438
439/* the special case of checking dup2. The target fd must be in a sensible range */
440static int
441_PyVerify_fd_dup2(int fd1, int fd2)
442{
Victor Stinnerd6f85422010-05-05 23:33:33 +0000443 if (!_PyVerify_fd(fd1))
444 return 0;
445 if (fd2 == _NO_CONSOLE_FILENO)
446 return 0;
447 if ((unsigned)fd2 < _NHANDLE_)
448 return 1;
449 else
450 return 0;
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +0000451}
452#else
453/* dummy version. _PyVerify_fd() is already defined in fileobject.h */
454#define _PyVerify_fd_dup2(A, B) (1)
455#endif
456
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000457/* Return a dictionary corresponding to the POSIX environment table */
Jack Jansenea0c3822002-08-01 21:57:49 +0000458#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().
461*/
462#include <crt_externs.h>
463static char **environ;
464#elif !defined(_MSC_VER) && ( !defined(__WATCOMC__) || defined(__QNX__) )
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000465extern char **environ;
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000466#endif /* !_MSC_VER */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000467
Barry Warsaw53699e91996-12-10 23:23:01 +0000468static PyObject *
Thomas Woutersf3f33dc2000-07-21 06:00:07 +0000469convertenviron(void)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000470{
Victor Stinnerd6f85422010-05-05 23:33:33 +0000471 PyObject *d;
472 char **e;
Martin v. Löwisc16f3bd2003-05-03 09:14:54 +0000473#if defined(PYOS_OS2)
Victor Stinnerd6f85422010-05-05 23:33:33 +0000474 APIRET rc;
475 char buffer[1024]; /* OS/2 Provides a Documented Max of 1024 Chars */
476#endif
477 d = PyDict_New();
478 if (d == NULL)
479 return NULL;
480#ifdef WITH_NEXT_FRAMEWORK
481 if (environ == NULL)
482 environ = *_NSGetEnviron();
483#endif
484 if (environ == NULL)
485 return d;
486 /* This part ignores errors */
487 for (e = environ; *e != NULL; e++) {
488 PyObject *k;
489 PyObject *v;
490 char *p = strchr(*e, '=');
491 if (p == NULL)
492 continue;
493 k = PyString_FromStringAndSize(*e, (int)(p-*e));
494 if (k == NULL) {
495 PyErr_Clear();
496 continue;
Guido van Rossumd48f2521997-12-05 22:19:34 +0000497 }
Victor Stinnerd6f85422010-05-05 23:33:33 +0000498 v = PyString_FromString(p+1);
499 if (v == NULL) {
500 PyErr_Clear();
501 Py_DECREF(k);
502 continue;
Guido van Rossumd48f2521997-12-05 22:19:34 +0000503 }
Victor Stinnerd6f85422010-05-05 23:33:33 +0000504 if (PyDict_GetItem(d, k) == NULL) {
505 if (PyDict_SetItem(d, k, v) != 0)
506 PyErr_Clear();
507 }
508 Py_DECREF(k);
509 Py_DECREF(v);
510 }
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);
516 Py_DECREF(v);
517 }
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);
522 Py_DECREF(v);
Guido van Rossumd48f2521997-12-05 22:19:34 +0000523 }
524#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +0000525 return d;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000526}
527
528
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000529/* Set a POSIX-specific error from errno, and return NULL */
530
Barry Warsawd58d7641998-07-23 16:14:40 +0000531static PyObject *
Thomas Woutersf3f33dc2000-07-21 06:00:07 +0000532posix_error(void)
Guido van Rossumad0ee831995-03-01 10:34:45 +0000533{
Victor Stinnerd6f85422010-05-05 23:33:33 +0000534 return PyErr_SetFromErrno(PyExc_OSError);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000535}
Barry Warsawd58d7641998-07-23 16:14:40 +0000536static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +0000537posix_error_with_filename(char* name)
Barry Warsawd58d7641998-07-23 16:14:40 +0000538{
Victor Stinnerd6f85422010-05-05 23:33:33 +0000539 return PyErr_SetFromErrnoWithFilename(PyExc_OSError, name);
Barry Warsawd58d7641998-07-23 16:14:40 +0000540}
541
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +0000542#ifdef MS_WINDOWS
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000543static PyObject *
544posix_error_with_unicode_filename(Py_UNICODE* name)
545{
Victor Stinnerd6f85422010-05-05 23:33:33 +0000546 return PyErr_SetFromErrnoWithUnicodeFilename(PyExc_OSError, name);
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000547}
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +0000548#endif /* MS_WINDOWS */
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000549
550
Mark Hammondef8b6542001-05-13 08:04:26 +0000551static PyObject *
552posix_error_with_allocated_filename(char* name)
553{
Victor Stinnerd6f85422010-05-05 23:33:33 +0000554 PyObject *rc = PyErr_SetFromErrnoWithFilename(PyExc_OSError, name);
555 PyMem_Free(name);
556 return rc;
Mark Hammondef8b6542001-05-13 08:04:26 +0000557}
558
Martin v. Löwis6238d2b2002-06-30 15:26:10 +0000559#ifdef MS_WINDOWS
Fredrik Lundhffb9c772000-07-09 14:49:51 +0000560static PyObject *
561win32_error(char* function, char* filename)
562{
Victor Stinnerd6f85422010-05-05 23:33:33 +0000563 /* 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.
567 */
568 errno = GetLastError();
569 if (filename)
570 return PyErr_SetFromWindowsErrWithFilename(errno, filename);
571 else
572 return PyErr_SetFromWindowsErr(errno);
Fredrik Lundhffb9c772000-07-09 14:49:51 +0000573}
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000574
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000575static PyObject *
576win32_error_unicode(char* function, Py_UNICODE* filename)
577{
Victor Stinnerd6f85422010-05-05 23:33:33 +0000578 /* XXX - see win32_error for comments on 'function' */
579 errno = GetLastError();
580 if (filename)
581 return PyErr_SetFromWindowsErrWithUnicodeFilename(errno, filename);
582 else
583 return PyErr_SetFromWindowsErr(errno);
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000584}
585
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000586static int
Hirokazu Yamamotoa0fdd722008-08-17 09:19:52 +0000587convert_to_unicode(PyObject **param)
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000588{
Victor Stinnerd6f85422010-05-05 23:33:33 +0000589 if (PyUnicode_CheckExact(*param))
590 Py_INCREF(*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));
596 else
597 *param = PyUnicode_FromEncodedObject(*param,
598 Py_FileSystemDefaultEncoding,
599 "strict");
600 return (*param) != NULL;
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000601}
602
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +0000603#endif /* MS_WINDOWS */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000604
Guido van Rossumd48f2521997-12-05 22:19:34 +0000605#if defined(PYOS_OS2)
606/**********************************************************************
607 * Helper Function to Trim and Format OS/2 Messages
608 **********************************************************************/
Victor Stinnerd6f85422010-05-05 23:33:33 +0000609static void
Guido van Rossumd48f2521997-12-05 22:19:34 +0000610os2_formatmsg(char *msgbuf, int msglen, char *reason)
611{
612 msgbuf[msglen] = '\0'; /* OS/2 Doesn't Guarantee a Terminator */
613
614 if (strlen(msgbuf) > 0) { /* If Non-Empty Msg, Trim CRLF */
Victor Stinner862490a2010-05-06 00:03:44 +0000615 char *lastc = &msgbuf[ strlen(msgbuf)-1 ];
Guido van Rossumd48f2521997-12-05 22:19:34 +0000616
Victor Stinner862490a2010-05-06 00:03:44 +0000617 while (lastc > msgbuf && isspace(Py_CHARMASK(*lastc)))
618 *lastc-- = '\0'; /* Trim Trailing Whitespace (CRLF) */
Guido van Rossumd48f2521997-12-05 22:19:34 +0000619 }
620
621 /* Add Optional Reason Text */
622 if (reason) {
623 strcat(msgbuf, " : ");
624 strcat(msgbuf, reason);
625 }
626}
627
628/**********************************************************************
629 * Decode an OS/2 Operating System Error Code
630 *
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.
633 *
634 * Notes:
635 * The messages for errors returned from the OS/2 kernel reside in
636 * the file OSO001.MSG in the \OS2 directory hierarchy.
637 *
638 **********************************************************************/
Victor Stinnerd6f85422010-05-05 23:33:33 +0000639static char *
Guido van Rossumd48f2521997-12-05 22:19:34 +0000640os2_strerror(char *msgbuf, int msgbuflen, int errorcode, char *reason)
641{
642 APIRET rc;
643 ULONG msglen;
644
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);
649 Py_END_ALLOW_THREADS
650
651 if (rc == NO_ERROR)
652 os2_formatmsg(msgbuf, msglen, reason);
653 else
Tim Peters1ceb5fb2001-11-28 20:32:57 +0000654 PyOS_snprintf(msgbuf, msgbuflen,
Victor Stinnerd6f85422010-05-05 23:33:33 +0000655 "unknown OS error #%d", errorcode);
Guido van Rossumd48f2521997-12-05 22:19:34 +0000656
657 return msgbuf;
658}
659
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. */
663
Victor Stinnerd6f85422010-05-05 23:33:33 +0000664static PyObject *
665os2_error(int code)
Guido van Rossumd48f2521997-12-05 22:19:34 +0000666{
667 char text[1024];
668 PyObject *v;
669
670 os2_strerror(text, sizeof(text), code, "");
671
672 v = Py_BuildValue("(is)", code, text);
673 if (v != NULL) {
Barry Warsawca74da41999-02-09 19:31:45 +0000674 PyErr_SetObject(PyExc_OSError, v);
Guido van Rossumd48f2521997-12-05 22:19:34 +0000675 Py_DECREF(v);
676 }
677 return NULL; /* Signal to Python that an Exception is Pending */
678}
679
680#endif /* OS2 */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000681
682/* POSIX generic methods */
683
Barry Warsaw53699e91996-12-10 23:23:01 +0000684static PyObject *
Fred Drake4d1e64b2002-04-15 19:40:07 +0000685posix_fildes(PyObject *fdobj, int (*func)(int))
686{
Victor Stinnerd6f85422010-05-05 23:33:33 +0000687 int fd;
688 int res;
689 fd = PyObject_AsFileDescriptor(fdobj);
690 if (fd < 0)
691 return NULL;
692 if (!_PyVerify_fd(fd))
693 return posix_error();
694 Py_BEGIN_ALLOW_THREADS
695 res = (*func)(fd);
696 Py_END_ALLOW_THREADS
697 if (res < 0)
698 return posix_error();
699 Py_INCREF(Py_None);
700 return Py_None;
Fred Drake4d1e64b2002-04-15 19:40:07 +0000701}
Guido van Rossum21142a01999-01-08 21:05:37 +0000702
703static PyObject *
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000704posix_1str(PyObject *args, char *format, int (*func)(const char*))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000705{
Victor Stinnerd6f85422010-05-05 23:33:33 +0000706 char *path1 = NULL;
707 int res;
708 if (!PyArg_ParseTuple(args, format,
709 Py_FileSystemDefaultEncoding, &path1))
710 return NULL;
711 Py_BEGIN_ALLOW_THREADS
712 res = (*func)(path1);
713 Py_END_ALLOW_THREADS
714 if (res < 0)
715 return posix_error_with_allocated_filename(path1);
716 PyMem_Free(path1);
717 Py_INCREF(Py_None);
718 return Py_None;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000719}
720
Barry Warsaw53699e91996-12-10 23:23:01 +0000721static PyObject *
Tim Peters11b23062003-04-23 02:39:17 +0000722posix_2str(PyObject *args,
Victor Stinnerd6f85422010-05-05 23:33:33 +0000723 char *format,
724 int (*func)(const char *, const char *))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000725{
Victor Stinnerd6f85422010-05-05 23:33:33 +0000726 char *path1 = NULL, *path2 = NULL;
727 int res;
728 if (!PyArg_ParseTuple(args, format,
729 Py_FileSystemDefaultEncoding, &path1,
730 Py_FileSystemDefaultEncoding, &path2))
731 return NULL;
732 Py_BEGIN_ALLOW_THREADS
733 res = (*func)(path1, path2);
734 Py_END_ALLOW_THREADS
735 PyMem_Free(path1);
736 PyMem_Free(path2);
737 if (res != 0)
738 /* XXX how to report both path1 and path2??? */
739 return posix_error();
740 Py_INCREF(Py_None);
741 return Py_None;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000742}
743
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +0000744#ifdef MS_WINDOWS
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000745static PyObject*
Victor Stinnerd6f85422010-05-05 23:33:33 +0000746win32_1str(PyObject* args, char* func,
747 char* format, BOOL (__stdcall *funcA)(LPCSTR),
748 char* wformat, BOOL (__stdcall *funcW)(LPWSTR))
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000749{
Victor Stinnerd6f85422010-05-05 23:33:33 +0000750 PyObject *uni;
751 char *ansi;
752 BOOL result;
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +0000753
Victor Stinnerd6f85422010-05-05 23:33:33 +0000754 if (!PyArg_ParseTuple(args, wformat, &uni))
755 PyErr_Clear();
756 else {
757 Py_BEGIN_ALLOW_THREADS
758 result = funcW(PyUnicode_AsUnicode(uni));
759 Py_END_ALLOW_THREADS
760 if (!result)
761 return win32_error_unicode(func, PyUnicode_AsUnicode(uni));
762 Py_INCREF(Py_None);
763 return Py_None;
764 }
765 if (!PyArg_ParseTuple(args, format, &ansi))
766 return NULL;
767 Py_BEGIN_ALLOW_THREADS
768 result = funcA(ansi);
769 Py_END_ALLOW_THREADS
770 if (!result)
771 return win32_error(func, ansi);
772 Py_INCREF(Py_None);
773 return Py_None;
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000774
775}
776
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>: */
Hirokazu Yamamoto61376402008-10-16 06:25:25 +0000782static BOOL __stdcall
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000783win32_chdir(LPCSTR path)
784{
Victor Stinnerd6f85422010-05-05 23:33:33 +0000785 char new_path[MAX_PATH+1];
786 int result;
787 char env[4] = "=x:";
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000788
Victor Stinnerd6f85422010-05-05 23:33:33 +0000789 if(!SetCurrentDirectoryA(path))
790 return FALSE;
791 result = GetCurrentDirectoryA(MAX_PATH+1, new_path);
792 if (!result)
793 return FALSE;
794 /* In the ANSI API, there should not be any paths longer
795 than MAX_PATH. */
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. */
800 return TRUE;
801 env[1] = new_path[0];
802 return SetEnvironmentVariableA(env, new_path);
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000803}
804
805/* The Unicode version differs from the ANSI version
806 since the current directory might exceed MAX_PATH characters */
Hirokazu Yamamoto61376402008-10-16 06:25:25 +0000807static BOOL __stdcall
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000808win32_wchdir(LPCWSTR path)
809{
Victor Stinnerd6f85422010-05-05 23:33:33 +0000810 wchar_t _new_path[MAX_PATH+1], *new_path = _new_path;
811 int result;
812 wchar_t env[4] = L"=x:";
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000813
Victor Stinnerd6f85422010-05-05 23:33:33 +0000814 if(!SetCurrentDirectoryW(path))
815 return FALSE;
816 result = GetCurrentDirectoryW(MAX_PATH+1, new_path);
817 if (!result)
818 return FALSE;
819 if (result > MAX_PATH+1) {
820 new_path = malloc(result * sizeof(wchar_t));
821 if (!new_path) {
822 SetLastError(ERROR_OUTOFMEMORY);
823 return FALSE;
824 }
825 result = GetCurrentDirectoryW(result, new_path);
826 if (!result) {
827 free(new_path);
828 return FALSE;
829 }
830 }
831 if (wcsncmp(new_path, L"\\\\", 2) == 0 ||
832 wcsncmp(new_path, L"//", 2) == 0)
833 /* UNC path, nothing to do. */
834 return TRUE;
835 env[1] = new_path[0];
836 result = SetEnvironmentVariableW(env, new_path);
837 if (new_path != _new_path)
838 free(new_path);
839 return result;
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000840}
841#endif
842
Martin v. Löwis14694662006-02-03 12:54:16 +0000843#ifdef MS_WINDOWS
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
847 UTC and local time
848 Therefore, we implement our own stat, based on the Win32 API directly.
849*/
Victor Stinnerd6f85422010-05-05 23:33:33 +0000850#define HAVE_STAT_NSEC 1
Martin v. Löwis14694662006-02-03 12:54:16 +0000851
852struct win32_stat{
853 int st_dev;
854 __int64 st_ino;
855 unsigned short st_mode;
856 int st_nlink;
857 int st_uid;
858 int st_gid;
859 int st_rdev;
860 __int64 st_size;
861 int st_atime;
862 int st_atime_nsec;
863 int st_mtime;
864 int st_mtime_nsec;
865 int st_ctime;
866 int st_ctime_nsec;
867};
868
869static __int64 secs_between_epochs = 11644473600; /* Seconds between 1.1.1601 and 1.1.1970 */
870
871static void
872FILE_TIME_to_time_t_nsec(FILETIME *in_ptr, int *time_out, int* nsec_out)
873{
Victor Stinnerd6f85422010-05-05 23:33:33 +0000874 /* 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 */
877 __int64 in;
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);
Martin v. Löwis14694662006-02-03 12:54:16 +0000882}
883
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +0000884static void
885time_t_to_FILE_TIME(int time_in, int nsec_in, FILETIME *out_ptr)
886{
Victor Stinnerd6f85422010-05-05 23:33:33 +0000887 /* XXX endianness */
888 __int64 out;
889 out = time_in + secs_between_epochs;
890 out = out * 10000000 + nsec_in / 100;
891 memcpy(out_ptr, &out, sizeof(out));
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +0000892}
893
Martin v. Löwis14694662006-02-03 12:54:16 +0000894/* Below, we *know* that ugo+r is 0444 */
895#if _S_IREAD != 0400
896#error Unsupported C library
897#endif
898static int
899attributes_to_mode(DWORD attr)
900{
Victor Stinnerd6f85422010-05-05 23:33:33 +0000901 int m = 0;
902 if (attr & FILE_ATTRIBUTE_DIRECTORY)
903 m |= _S_IFDIR | 0111; /* IFEXEC for user,group,other */
904 else
905 m |= _S_IFREG;
906 if (attr & FILE_ATTRIBUTE_READONLY)
907 m |= 0444;
908 else
909 m |= 0666;
910 return m;
Martin v. Löwis14694662006-02-03 12:54:16 +0000911}
912
913static int
914attribute_data_to_stat(WIN32_FILE_ATTRIBUTE_DATA *info, struct win32_stat *result)
915{
Victor Stinnerd6f85422010-05-05 23:33:33 +0000916 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);
Martin v. Löwis14694662006-02-03 12:54:16 +0000922
Victor Stinnerd6f85422010-05-05 23:33:33 +0000923 return 0;
Martin v. Löwis14694662006-02-03 12:54:16 +0000924}
925
Martin v. Löwis3bf573f2007-04-04 18:30:36 +0000926static BOOL
927attributes_from_dir(LPCSTR pszFile, LPWIN32_FILE_ATTRIBUTE_DATA pfad)
928{
Victor Stinnerd6f85422010-05-05 23:33:33 +0000929 HANDLE hFindFile;
930 WIN32_FIND_DATAA FileData;
931 hFindFile = FindFirstFileA(pszFile, &FileData);
932 if (hFindFile == INVALID_HANDLE_VALUE)
933 return FALSE;
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;
941 return TRUE;
Martin v. Löwis3bf573f2007-04-04 18:30:36 +0000942}
943
944static BOOL
945attributes_from_dir_w(LPCWSTR pszFile, LPWIN32_FILE_ATTRIBUTE_DATA pfad)
946{
Victor Stinnerd6f85422010-05-05 23:33:33 +0000947 HANDLE hFindFile;
948 WIN32_FIND_DATAW FileData;
949 hFindFile = FindFirstFileW(pszFile, &FileData);
950 if (hFindFile == INVALID_HANDLE_VALUE)
951 return FALSE;
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;
959 return TRUE;
Martin v. Löwis3bf573f2007-04-04 18:30:36 +0000960}
961
Victor Stinnerd6f85422010-05-05 23:33:33 +0000962static int
Martin v. Löwis14694662006-02-03 12:54:16 +0000963win32_stat(const char* path, struct win32_stat *result)
964{
Victor Stinnerd6f85422010-05-05 23:33:33 +0000965 WIN32_FILE_ATTRIBUTE_DATA info;
966 int code;
967 char *dot;
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. */
972 errno = 0;
973 return -1;
974 } else {
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 */
979 errno = 0;
980 return -1;
981 }
982 }
983 }
984 code = attribute_data_to_stat(&info, result);
985 if (code != 0)
986 return code;
987 /* Set S_IFEXEC if it is an .exe, .bat, ... */
988 dot = strrchr(path, '.');
989 if (dot) {
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;
995 }
996 return code;
Martin v. Löwis14694662006-02-03 12:54:16 +0000997}
998
Victor Stinnerd6f85422010-05-05 23:33:33 +0000999static int
Martin v. Löwis14694662006-02-03 12:54:16 +00001000win32_wstat(const wchar_t* path, struct win32_stat *result)
1001{
Victor Stinnerd6f85422010-05-05 23:33:33 +00001002 int code;
1003 const wchar_t *dot;
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. */
1009 errno = 0;
1010 return -1;
1011 } else {
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 */
1016 errno = 0;
1017 return -1;
1018 }
1019 }
1020 }
1021 code = attribute_data_to_stat(&info, result);
1022 if (code < 0)
1023 return code;
1024 /* Set IFEXEC if it is an .exe, .bat, ... */
1025 dot = wcsrchr(path, '.');
1026 if (dot) {
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;
1032 }
1033 return code;
Martin v. Löwis14694662006-02-03 12:54:16 +00001034}
1035
1036static int
1037win32_fstat(int file_number, struct win32_stat *result)
1038{
Victor Stinnerd6f85422010-05-05 23:33:33 +00001039 BY_HANDLE_FILE_INFORMATION info;
1040 HANDLE h;
1041 int type;
Martin v. Löwis14694662006-02-03 12:54:16 +00001042
Victor Stinnerd6f85422010-05-05 23:33:33 +00001043 h = (HANDLE)_get_osfhandle(file_number);
Martin v. Löwis14694662006-02-03 12:54:16 +00001044
Victor Stinnerd6f85422010-05-05 23:33:33 +00001045 /* Protocol violation: we explicitly clear errno, instead of
1046 setting it to a POSIX error. Callers should use GetLastError. */
1047 errno = 0;
Martin v. Löwis14694662006-02-03 12:54:16 +00001048
Victor Stinnerd6f85422010-05-05 23:33:33 +00001049 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);
1053 return -1;
1054 }
1055 memset(result, 0, sizeof(*result));
Martin v. Löwis14694662006-02-03 12:54:16 +00001056
Victor Stinnerd6f85422010-05-05 23:33:33 +00001057 type = GetFileType(h);
1058 if (type == FILE_TYPE_UNKNOWN) {
1059 DWORD error = GetLastError();
1060 if (error != 0) {
1061 return -1;
1062 }
1063 /* else: valid but unknown file */
1064 }
Martin v. Löwis14694662006-02-03 12:54:16 +00001065
Victor Stinnerd6f85422010-05-05 23:33:33 +00001066 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;
1071 return 0;
1072 }
1073
1074 if (!GetFileInformationByHandle(h, &info)) {
1075 return -1;
1076 }
1077
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;
1087 return 0;
Martin v. Löwis14694662006-02-03 12:54:16 +00001088}
1089
1090#endif /* MS_WINDOWS */
1091
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001092PyDoc_STRVAR(stat_result__doc__,
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001093"stat_result: Result from stat or lstat.\n\n\
1094This object may be accessed either as a tuple of\n\
Fred Drakef7ce04d2002-06-20 18:31:21 +00001095 (mode, ino, dev, nlink, uid, gid, size, atime, mtime, ctime)\n\
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001096or via the attributes st_mode, st_ino, st_dev, st_nlink, st_uid, and so on.\n\
1097\n\
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001098Posix/windows: If your platform supports st_blksize, st_blocks, st_rdev,\n\
1099or st_flags, they are available as attributes only.\n\
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001100\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001101See os.stat for more information.");
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001102
1103static PyStructSequence_Field stat_result_fields[] = {
Victor Stinnerd6f85422010-05-05 23:33:33 +00001104 {"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"},
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001118#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
Victor Stinnerd6f85422010-05-05 23:33:33 +00001119 {"st_blksize", "blocksize for filesystem I/O"},
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001120#endif
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001121#ifdef HAVE_STRUCT_STAT_ST_BLOCKS
Victor Stinnerd6f85422010-05-05 23:33:33 +00001122 {"st_blocks", "number of blocks allocated"},
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001123#endif
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001124#ifdef HAVE_STRUCT_STAT_ST_RDEV
Victor Stinnerd6f85422010-05-05 23:33:33 +00001125 {"st_rdev", "device type (if inode device)"},
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001126#endif
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001127#ifdef HAVE_STRUCT_STAT_ST_FLAGS
Victor Stinnerd6f85422010-05-05 23:33:33 +00001128 {"st_flags", "user defined flags for file"},
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001129#endif
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001130#ifdef HAVE_STRUCT_STAT_ST_GEN
Victor Stinnerd6f85422010-05-05 23:33:33 +00001131 {"st_gen", "generation number"},
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001132#endif
1133#ifdef HAVE_STRUCT_STAT_ST_BIRTHTIME
Victor Stinnerd6f85422010-05-05 23:33:33 +00001134 {"st_birthtime", "time of creation"},
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001135#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00001136 {0}
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001137};
1138
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001139#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001140#define ST_BLKSIZE_IDX 13
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001141#else
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001142#define ST_BLKSIZE_IDX 12
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001143#endif
1144
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001145#ifdef HAVE_STRUCT_STAT_ST_BLOCKS
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001146#define ST_BLOCKS_IDX (ST_BLKSIZE_IDX+1)
1147#else
1148#define ST_BLOCKS_IDX ST_BLKSIZE_IDX
1149#endif
1150
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001151#ifdef HAVE_STRUCT_STAT_ST_RDEV
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001152#define ST_RDEV_IDX (ST_BLOCKS_IDX+1)
1153#else
1154#define ST_RDEV_IDX ST_BLOCKS_IDX
1155#endif
1156
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001157#ifdef HAVE_STRUCT_STAT_ST_FLAGS
1158#define ST_FLAGS_IDX (ST_RDEV_IDX+1)
1159#else
1160#define ST_FLAGS_IDX ST_RDEV_IDX
1161#endif
1162
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001163#ifdef HAVE_STRUCT_STAT_ST_GEN
Martin v. Löwisf09582e2005-08-14 21:42:34 +00001164#define ST_GEN_IDX (ST_FLAGS_IDX+1)
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001165#else
Martin v. Löwisf09582e2005-08-14 21:42:34 +00001166#define ST_GEN_IDX ST_FLAGS_IDX
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001167#endif
1168
1169#ifdef HAVE_STRUCT_STAT_ST_BIRTHTIME
1170#define ST_BIRTHTIME_IDX (ST_GEN_IDX+1)
1171#else
1172#define ST_BIRTHTIME_IDX ST_GEN_IDX
1173#endif
1174
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001175static PyStructSequence_Desc stat_result_desc = {
Victor Stinnerd6f85422010-05-05 23:33:33 +00001176 "stat_result", /* name */
1177 stat_result__doc__, /* doc */
1178 stat_result_fields,
1179 10
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001180};
1181
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001182PyDoc_STRVAR(statvfs_result__doc__,
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001183"statvfs_result: Result from statvfs or fstatvfs.\n\n\
1184This object may be accessed either as a tuple of\n\
Fred Drakef7ce04d2002-06-20 18:31:21 +00001185 (bsize, frsize, blocks, bfree, bavail, files, ffree, favail, flag, namemax),\n\
Guido van Rossuma4dc73e2001-10-18 20:53:15 +00001186or via the attributes f_bsize, f_frsize, f_blocks, f_bfree, and so on.\n\
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001187\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001188See os.statvfs for more information.");
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001189
1190static PyStructSequence_Field statvfs_result_fields[] = {
Victor Stinnerd6f85422010-05-05 23:33:33 +00001191 {"f_bsize", },
1192 {"f_frsize", },
1193 {"f_blocks", },
1194 {"f_bfree", },
1195 {"f_bavail", },
1196 {"f_files", },
1197 {"f_ffree", },
1198 {"f_favail", },
1199 {"f_flag", },
1200 {"f_namemax",},
1201 {0}
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001202};
1203
1204static PyStructSequence_Desc statvfs_result_desc = {
Victor Stinnerd6f85422010-05-05 23:33:33 +00001205 "statvfs_result", /* name */
1206 statvfs_result__doc__, /* doc */
1207 statvfs_result_fields,
1208 10
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001209};
1210
Martin v. Löwis19ab6c92006-04-16 18:55:50 +00001211static int initialized;
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001212static PyTypeObject StatResultType;
1213static PyTypeObject StatVFSResultType;
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001214static newfunc structseq_new;
1215
1216static PyObject *
1217statresult_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
1218{
Victor Stinnerd6f85422010-05-05 23:33:33 +00001219 PyStructSequence *result;
1220 int i;
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001221
Victor Stinnerd6f85422010-05-05 23:33:33 +00001222 result = (PyStructSequence*)structseq_new(type, args, kwds);
1223 if (!result)
1224 return NULL;
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) {
1230 Py_DECREF(Py_None);
1231 Py_INCREF(result->ob_item[i]);
1232 result->ob_item[i+3] = result->ob_item[i];
1233 }
1234 }
1235 return (PyObject*)result;
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001236}
1237
1238
1239
1240/* If true, st_?time is float. */
Martin v. Löwisfe33d0b2005-01-16 08:57:39 +00001241static int _stat_float_times = 1;
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001242
1243PyDoc_STRVAR(stat_float_times__doc__,
1244"stat_float_times([newval]) -> oldval\n\n\
1245Determine whether os.[lf]stat represents time stamps as float objects.\n\
1246If newval is True, future calls to stat() return floats, if it is False,\n\
1247future calls return ints. \n\
1248If newval is omitted, return the current setting.\n");
1249
1250static PyObject*
1251stat_float_times(PyObject* self, PyObject *args)
1252{
Victor Stinnerd6f85422010-05-05 23:33:33 +00001253 int newval = -1;
1254 if (!PyArg_ParseTuple(args, "|i:stat_float_times", &newval))
1255 return NULL;
1256 if (newval == -1)
1257 /* Return old value */
1258 return PyBool_FromLong(_stat_float_times);
1259 _stat_float_times = newval;
1260 Py_INCREF(Py_None);
1261 return Py_None;
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001262}
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001263
Martin v. Löwis94717ed2002-09-09 14:24:16 +00001264static void
1265fill_time(PyObject *v, int index, time_t sec, unsigned long nsec)
1266{
Victor Stinnerd6f85422010-05-05 23:33:33 +00001267 PyObject *fval,*ival;
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001268#if SIZEOF_TIME_T > SIZEOF_LONG
Victor Stinnerd6f85422010-05-05 23:33:33 +00001269 ival = PyLong_FromLongLong((PY_LONG_LONG)sec);
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001270#else
Victor Stinnerd6f85422010-05-05 23:33:33 +00001271 ival = PyInt_FromLong((long)sec);
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001272#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00001273 if (!ival)
1274 return;
1275 if (_stat_float_times) {
1276 fval = PyFloat_FromDouble(sec + 1e-9*nsec);
1277 } else {
1278 fval = ival;
1279 Py_INCREF(fval);
1280 }
1281 PyStructSequence_SET_ITEM(v, index, ival);
1282 PyStructSequence_SET_ITEM(v, index+3, fval);
Martin v. Löwis94717ed2002-09-09 14:24:16 +00001283}
1284
Tim Peters5aa91602002-01-30 05:46:57 +00001285/* pack a system stat C structure into the Python stat tuple
Fred Drake699f3522000-06-29 21:12:41 +00001286 (used by posix_stat() and posix_fstat()) */
1287static PyObject*
Martin v. Löwis14694662006-02-03 12:54:16 +00001288_pystat_fromstructstat(STRUCT_STAT *st)
Fred Drake699f3522000-06-29 21:12:41 +00001289{
Victor Stinnerd6f85422010-05-05 23:33:33 +00001290 unsigned long ansec, mnsec, cnsec;
1291 PyObject *v = PyStructSequence_New(&StatResultType);
1292 if (v == NULL)
1293 return NULL;
Fred Drake699f3522000-06-29 21:12:41 +00001294
Victor Stinnerd6f85422010-05-05 23:33:33 +00001295 PyStructSequence_SET_ITEM(v, 0, PyInt_FromLong((long)st->st_mode));
Fred Drake699f3522000-06-29 21:12:41 +00001296#ifdef HAVE_LARGEFILE_SUPPORT
Victor Stinnerd6f85422010-05-05 23:33:33 +00001297 PyStructSequence_SET_ITEM(v, 1,
1298 PyLong_FromLongLong((PY_LONG_LONG)st->st_ino));
Fred Drake699f3522000-06-29 21:12:41 +00001299#else
Victor Stinnerd6f85422010-05-05 23:33:33 +00001300 PyStructSequence_SET_ITEM(v, 1, PyInt_FromLong((long)st->st_ino));
Fred Drake699f3522000-06-29 21:12:41 +00001301#endif
1302#if defined(HAVE_LONG_LONG) && !defined(MS_WINDOWS)
Victor Stinnerd6f85422010-05-05 23:33:33 +00001303 PyStructSequence_SET_ITEM(v, 2,
1304 PyLong_FromLongLong((PY_LONG_LONG)st->st_dev));
Fred Drake699f3522000-06-29 21:12:41 +00001305#else
Victor Stinnerd6f85422010-05-05 23:33:33 +00001306 PyStructSequence_SET_ITEM(v, 2, PyInt_FromLong((long)st->st_dev));
Fred Drake699f3522000-06-29 21:12:41 +00001307#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00001308 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));
Fred Drake699f3522000-06-29 21:12:41 +00001311#ifdef HAVE_LARGEFILE_SUPPORT
Victor Stinnerd6f85422010-05-05 23:33:33 +00001312 PyStructSequence_SET_ITEM(v, 6,
1313 PyLong_FromLongLong((PY_LONG_LONG)st->st_size));
Fred Drake699f3522000-06-29 21:12:41 +00001314#else
Victor Stinnerd6f85422010-05-05 23:33:33 +00001315 PyStructSequence_SET_ITEM(v, 6, PyInt_FromLong(st->st_size));
Fred Drake699f3522000-06-29 21:12:41 +00001316#endif
Martin v. Löwis94717ed2002-09-09 14:24:16 +00001317
Martin v. Löwis14694662006-02-03 12:54:16 +00001318#if defined(HAVE_STAT_TV_NSEC)
Victor Stinnerd6f85422010-05-05 23:33:33 +00001319 ansec = st->st_atim.tv_nsec;
1320 mnsec = st->st_mtim.tv_nsec;
1321 cnsec = st->st_ctim.tv_nsec;
Martin v. Löwis14694662006-02-03 12:54:16 +00001322#elif defined(HAVE_STAT_TV_NSEC2)
Victor Stinnerd6f85422010-05-05 23:33:33 +00001323 ansec = st->st_atimespec.tv_nsec;
1324 mnsec = st->st_mtimespec.tv_nsec;
1325 cnsec = st->st_ctimespec.tv_nsec;
Martin v. Löwis14694662006-02-03 12:54:16 +00001326#elif defined(HAVE_STAT_NSEC)
Victor Stinnerd6f85422010-05-05 23:33:33 +00001327 ansec = st->st_atime_nsec;
1328 mnsec = st->st_mtime_nsec;
1329 cnsec = st->st_ctime_nsec;
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001330#else
Victor Stinnerd6f85422010-05-05 23:33:33 +00001331 ansec = mnsec = cnsec = 0;
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001332#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00001333 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);
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001336
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001337#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
Victor Stinnerd6f85422010-05-05 23:33:33 +00001338 PyStructSequence_SET_ITEM(v, ST_BLKSIZE_IDX,
1339 PyInt_FromLong((long)st->st_blksize));
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001340#endif
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001341#ifdef HAVE_STRUCT_STAT_ST_BLOCKS
Victor Stinnerd6f85422010-05-05 23:33:33 +00001342 PyStructSequence_SET_ITEM(v, ST_BLOCKS_IDX,
1343 PyInt_FromLong((long)st->st_blocks));
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001344#endif
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001345#ifdef HAVE_STRUCT_STAT_ST_RDEV
Victor Stinnerd6f85422010-05-05 23:33:33 +00001346 PyStructSequence_SET_ITEM(v, ST_RDEV_IDX,
1347 PyInt_FromLong((long)st->st_rdev));
Fred Drake699f3522000-06-29 21:12:41 +00001348#endif
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001349#ifdef HAVE_STRUCT_STAT_ST_GEN
Victor Stinnerd6f85422010-05-05 23:33:33 +00001350 PyStructSequence_SET_ITEM(v, ST_GEN_IDX,
1351 PyInt_FromLong((long)st->st_gen));
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001352#endif
1353#ifdef HAVE_STRUCT_STAT_ST_BIRTHTIME
Victor Stinnerd6f85422010-05-05 23:33:33 +00001354 {
1355 PyObject *val;
1356 unsigned long bsec,bnsec;
1357 bsec = (long)st->st_birthtime;
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001358#ifdef HAVE_STAT_TV_NSEC2
Victor Stinnerd6f85422010-05-05 23:33:33 +00001359 bnsec = st->st_birthtimespec.tv_nsec;
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001360#else
Victor Stinnerd6f85422010-05-05 23:33:33 +00001361 bnsec = 0;
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001362#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00001363 if (_stat_float_times) {
1364 val = PyFloat_FromDouble(bsec + 1e-9*bnsec);
1365 } else {
1366 val = PyInt_FromLong((long)bsec);
1367 }
1368 PyStructSequence_SET_ITEM(v, ST_BIRTHTIME_IDX,
1369 val);
1370 }
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001371#endif
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001372#ifdef HAVE_STRUCT_STAT_ST_FLAGS
Victor Stinnerd6f85422010-05-05 23:33:33 +00001373 PyStructSequence_SET_ITEM(v, ST_FLAGS_IDX,
1374 PyInt_FromLong((long)st->st_flags));
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001375#endif
Fred Drake699f3522000-06-29 21:12:41 +00001376
Victor Stinnerd6f85422010-05-05 23:33:33 +00001377 if (PyErr_Occurred()) {
1378 Py_DECREF(v);
1379 return NULL;
1380 }
Fred Drake699f3522000-06-29 21:12:41 +00001381
Victor Stinnerd6f85422010-05-05 23:33:33 +00001382 return v;
Fred Drake699f3522000-06-29 21:12:41 +00001383}
1384
Martin v. Löwisd8948722004-06-02 09:57:56 +00001385#ifdef MS_WINDOWS
1386
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.
1390*/
1391
1392#define ISSLASHA(c) ((c) == '\\' || (c) == '/')
1393#define ISSLASHW(c) ((c) == L'\\' || (c) == L'/')
Kristján Valur Jónssondbeaa692006-06-09 16:28:01 +00001394#ifndef ARRAYSIZE
Martin v. Löwisd8948722004-06-02 09:57:56 +00001395#define ARRAYSIZE(a) (sizeof(a) / sizeof(a[0]))
Kristján Valur Jónssondbeaa692006-06-09 16:28:01 +00001396#endif
Martin v. Löwisd8948722004-06-02 09:57:56 +00001397
Tim Peters4ad82172004-08-30 17:02:04 +00001398static BOOL
Martin v. Löwisd8948722004-06-02 09:57:56 +00001399IsUNCRootA(char *path, int pathlen)
1400{
Victor Stinnerd6f85422010-05-05 23:33:33 +00001401 #define ISSLASH ISSLASHA
Martin v. Löwisd8948722004-06-02 09:57:56 +00001402
Victor Stinnerd6f85422010-05-05 23:33:33 +00001403 int i, share;
Martin v. Löwisd8948722004-06-02 09:57:56 +00001404
Victor Stinnerd6f85422010-05-05 23:33:33 +00001405 if (pathlen < 5 || !ISSLASH(path[0]) || !ISSLASH(path[1]))
1406 /* minimum UNCRoot is \\x\y */
1407 return FALSE;
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 */
1412 return FALSE;
1413 share = i+1;
1414 for (i = share; i < pathlen; i++)
1415 if (ISSLASH(path[i])) break;
1416 return (i != share && (i == pathlen || i == pathlen-1));
Martin v. Löwisd8948722004-06-02 09:57:56 +00001417
Victor Stinnerd6f85422010-05-05 23:33:33 +00001418 #undef ISSLASH
Martin v. Löwisd8948722004-06-02 09:57:56 +00001419}
1420
Tim Peters4ad82172004-08-30 17:02:04 +00001421static BOOL
Martin v. Löwisd8948722004-06-02 09:57:56 +00001422IsUNCRootW(Py_UNICODE *path, int pathlen)
1423{
Victor Stinnerd6f85422010-05-05 23:33:33 +00001424 #define ISSLASH ISSLASHW
Martin v. Löwisd8948722004-06-02 09:57:56 +00001425
Victor Stinnerd6f85422010-05-05 23:33:33 +00001426 int i, share;
Martin v. Löwisd8948722004-06-02 09:57:56 +00001427
Victor Stinnerd6f85422010-05-05 23:33:33 +00001428 if (pathlen < 5 || !ISSLASH(path[0]) || !ISSLASH(path[1]))
1429 /* minimum UNCRoot is \\x\y */
1430 return FALSE;
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 */
1435 return FALSE;
1436 share = i+1;
1437 for (i = share; i < pathlen; i++)
1438 if (ISSLASH(path[i])) break;
1439 return (i != share && (i == pathlen || i == pathlen-1));
Martin v. Löwisd8948722004-06-02 09:57:56 +00001440
Victor Stinnerd6f85422010-05-05 23:33:33 +00001441 #undef ISSLASH
Martin v. Löwisd8948722004-06-02 09:57:56 +00001442}
Martin v. Löwisd8948722004-06-02 09:57:56 +00001443#endif /* MS_WINDOWS */
1444
Barry Warsaw53699e91996-12-10 23:23:01 +00001445static PyObject *
Tim Peters11b23062003-04-23 02:39:17 +00001446posix_do_stat(PyObject *self, PyObject *args,
Victor Stinnerd6f85422010-05-05 23:33:33 +00001447 char *format,
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001448#ifdef __VMS
Victor Stinnerd6f85422010-05-05 23:33:33 +00001449 int (*statfunc)(const char *, STRUCT_STAT *, ...),
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001450#else
Victor Stinnerd6f85422010-05-05 23:33:33 +00001451 int (*statfunc)(const char *, STRUCT_STAT *),
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001452#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00001453 char *wformat,
1454 int (*wstatfunc)(const Py_UNICODE *, STRUCT_STAT *))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001455{
Victor Stinnerd6f85422010-05-05 23:33:33 +00001456 STRUCT_STAT st;
1457 char *path = NULL; /* pass this to stat; do not free() it */
1458 char *pathfree = NULL; /* this memory must be free'd */
1459 int res;
1460 PyObject *result;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001461
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00001462#ifdef MS_WINDOWS
Victor Stinnerd6f85422010-05-05 23:33:33 +00001463 PyUnicodeObject *po;
1464 if (PyArg_ParseTuple(args, wformat, &po)) {
1465 Py_UNICODE *wpath = PyUnicode_AS_UNICODE(po);
Martin v. Löwis14694662006-02-03 12:54:16 +00001466
Victor Stinnerd6f85422010-05-05 23:33:33 +00001467 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
Martin v. Löwis14694662006-02-03 12:54:16 +00001472
Victor Stinnerd6f85422010-05-05 23:33:33 +00001473 if (res != 0)
1474 return win32_error_unicode("stat", wpath);
1475 return _pystat_fromstructstat(&st);
1476 }
1477 /* Drop the argument parsing error as narrow strings
1478 are also valid. */
1479 PyErr_Clear();
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001480#endif
1481
Victor Stinnerd6f85422010-05-05 23:33:33 +00001482 if (!PyArg_ParseTuple(args, format,
1483 Py_FileSystemDefaultEncoding, &path))
1484 return NULL;
1485 pathfree = path;
Guido van Rossumace88ae2000-04-21 18:54:45 +00001486
Victor Stinnerd6f85422010-05-05 23:33:33 +00001487 Py_BEGIN_ALLOW_THREADS
1488 res = (*statfunc)(path, &st);
1489 Py_END_ALLOW_THREADS
Martin v. Löwis14694662006-02-03 12:54:16 +00001490
Victor Stinnerd6f85422010-05-05 23:33:33 +00001491 if (res != 0) {
Martin v. Löwis14694662006-02-03 12:54:16 +00001492#ifdef MS_WINDOWS
Victor Stinnerd6f85422010-05-05 23:33:33 +00001493 result = win32_error("stat", pathfree);
Martin v. Löwis14694662006-02-03 12:54:16 +00001494#else
Victor Stinnerd6f85422010-05-05 23:33:33 +00001495 result = posix_error_with_filename(pathfree);
Martin v. Löwis14694662006-02-03 12:54:16 +00001496#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00001497 }
1498 else
1499 result = _pystat_fromstructstat(&st);
Fred Drake699f3522000-06-29 21:12:41 +00001500
Victor Stinnerd6f85422010-05-05 23:33:33 +00001501 PyMem_Free(pathfree);
1502 return result;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001503}
1504
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001505/* POSIX methods */
1506
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001507PyDoc_STRVAR(posix_access__doc__,
Georg Brandl7a284472007-01-27 19:38:50 +00001508"access(path, mode) -> True if granted, False otherwise\n\n\
Guido van Rossuma0b90752002-06-18 16:22:43 +00001509Use the real uid/gid to test for access to a path. Note that most\n\
1510operations will use the effective uid/gid, therefore this routine can\n\
1511be used in a suid/sgid environment to test if the invoking user has the\n\
1512specified access to the path. The mode argument can be F_OK to test\n\
1513existence, or the inclusive-OR of R_OK, W_OK, and X_OK.");
Guido van Rossum94f6f721999-01-06 18:42:14 +00001514
1515static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00001516posix_access(PyObject *self, PyObject *args)
Guido van Rossum94f6f721999-01-06 18:42:14 +00001517{
Victor Stinnerd6f85422010-05-05 23:33:33 +00001518 char *path;
1519 int mode;
1520
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00001521#ifdef MS_WINDOWS
Victor Stinnerd6f85422010-05-05 23:33:33 +00001522 DWORD attr;
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
1530 goto finish;
1531 }
1532 /* Drop the argument parsing error as narrow strings
1533 are also valid. */
1534 PyErr_Clear();
1535 if (!PyArg_ParseTuple(args, "eti:access",
1536 Py_FileSystemDefaultEncoding, &path, &mode))
1537 return NULL;
1538 Py_BEGIN_ALLOW_THREADS
1539 attr = GetFileAttributesA(path);
1540 Py_END_ALLOW_THREADS
1541 PyMem_Free(path);
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001542finish:
Victor Stinnerd6f85422010-05-05 23:33:33 +00001543 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));
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00001552#else /* MS_WINDOWS */
Victor Stinnerd6f85422010-05-05 23:33:33 +00001553 int res;
1554 if (!PyArg_ParseTuple(args, "eti:access",
1555 Py_FileSystemDefaultEncoding, &path, &mode))
1556 return NULL;
1557 Py_BEGIN_ALLOW_THREADS
1558 res = access(path, mode);
1559 Py_END_ALLOW_THREADS
1560 PyMem_Free(path);
1561 return PyBool_FromLong(res == 0);
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00001562#endif /* MS_WINDOWS */
Guido van Rossum94f6f721999-01-06 18:42:14 +00001563}
1564
Guido van Rossumd371ff11999-01-25 16:12:23 +00001565#ifndef F_OK
1566#define F_OK 0
1567#endif
1568#ifndef R_OK
1569#define R_OK 4
1570#endif
1571#ifndef W_OK
1572#define W_OK 2
1573#endif
1574#ifndef X_OK
1575#define X_OK 1
1576#endif
1577
1578#ifdef HAVE_TTYNAME
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001579PyDoc_STRVAR(posix_ttyname__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001580"ttyname(fd) -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001581Return the name of the terminal device connected to 'fd'.");
Guido van Rossum94f6f721999-01-06 18:42:14 +00001582
1583static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00001584posix_ttyname(PyObject *self, PyObject *args)
Guido van Rossum94f6f721999-01-06 18:42:14 +00001585{
Victor Stinnerd6f85422010-05-05 23:33:33 +00001586 int id;
1587 char *ret;
Guido van Rossum94f6f721999-01-06 18:42:14 +00001588
Victor Stinnerd6f85422010-05-05 23:33:33 +00001589 if (!PyArg_ParseTuple(args, "i:ttyname", &id))
1590 return NULL;
Guido van Rossum94f6f721999-01-06 18:42:14 +00001591
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001592#if defined(__VMS)
Victor Stinnerd6f85422010-05-05 23:33:33 +00001593 /* file descriptor 0 only, the default input device (stdin) */
1594 if (id == 0) {
1595 ret = ttyname();
1596 }
1597 else {
1598 ret = NULL;
1599 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001600#else
Victor Stinnerd6f85422010-05-05 23:33:33 +00001601 ret = ttyname(id);
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001602#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00001603 if (ret == NULL)
1604 return posix_error();
1605 return PyString_FromString(ret);
Guido van Rossum94f6f721999-01-06 18:42:14 +00001606}
Guido van Rossumd371ff11999-01-25 16:12:23 +00001607#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00001608
Fred Drake5ab8eaf1999-12-09 21:13:07 +00001609#ifdef HAVE_CTERMID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001610PyDoc_STRVAR(posix_ctermid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001611"ctermid() -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001612Return the name of the controlling terminal for this process.");
Fred Drake5ab8eaf1999-12-09 21:13:07 +00001613
1614static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00001615posix_ctermid(PyObject *self, PyObject *noargs)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00001616{
Victor Stinnerd6f85422010-05-05 23:33:33 +00001617 char *ret;
1618 char buffer[L_ctermid];
Fred Drake5ab8eaf1999-12-09 21:13:07 +00001619
Greg Wardb48bc172000-03-01 21:51:56 +00001620#ifdef USE_CTERMID_R
Victor Stinnerd6f85422010-05-05 23:33:33 +00001621 ret = ctermid_r(buffer);
Fred Drake5ab8eaf1999-12-09 21:13:07 +00001622#else
Victor Stinnerd6f85422010-05-05 23:33:33 +00001623 ret = ctermid(buffer);
Fred Drake5ab8eaf1999-12-09 21:13:07 +00001624#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00001625 if (ret == NULL)
1626 return posix_error();
1627 return PyString_FromString(buffer);
Fred Drake5ab8eaf1999-12-09 21:13:07 +00001628}
1629#endif
1630
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001631PyDoc_STRVAR(posix_chdir__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001632"chdir(path)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001633Change the current working directory to the specified path.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001634
Barry Warsaw53699e91996-12-10 23:23:01 +00001635static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00001636posix_chdir(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001637{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001638#ifdef MS_WINDOWS
Victor Stinnerd6f85422010-05-05 23:33:33 +00001639 return win32_1str(args, "chdir", "s:chdir", win32_chdir, "U:chdir", win32_wchdir);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001640#elif defined(PYOS_OS2) && defined(PYCC_GCC)
Victor Stinnerd6f85422010-05-05 23:33:33 +00001641 return posix_1str(args, "et:chdir", _chdir2);
Martin v. Löwis7a924e62003-03-05 14:15:21 +00001642#elif defined(__VMS)
Victor Stinnerd6f85422010-05-05 23:33:33 +00001643 return posix_1str(args, "et:chdir", (int (*)(const char *))chdir);
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001644#else
Victor Stinnerd6f85422010-05-05 23:33:33 +00001645 return posix_1str(args, "et:chdir", chdir);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00001646#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001647}
1648
Fred Drake4d1e64b2002-04-15 19:40:07 +00001649#ifdef HAVE_FCHDIR
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001650PyDoc_STRVAR(posix_fchdir__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001651"fchdir(fildes)\n\n\
Fred Drake4d1e64b2002-04-15 19:40:07 +00001652Change to the directory of the given file descriptor. fildes must be\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001653opened on a directory, not a file.");
Fred Drake4d1e64b2002-04-15 19:40:07 +00001654
1655static PyObject *
1656posix_fchdir(PyObject *self, PyObject *fdobj)
1657{
Victor Stinnerd6f85422010-05-05 23:33:33 +00001658 return posix_fildes(fdobj, fchdir);
Fred Drake4d1e64b2002-04-15 19:40:07 +00001659}
1660#endif /* HAVE_FCHDIR */
1661
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001662
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001663PyDoc_STRVAR(posix_chmod__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001664"chmod(path, mode)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001665Change the access permissions of a file.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001666
Barry Warsaw53699e91996-12-10 23:23:01 +00001667static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00001668posix_chmod(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001669{
Victor Stinnerd6f85422010-05-05 23:33:33 +00001670 char *path = NULL;
1671 int i;
1672 int res;
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00001673#ifdef MS_WINDOWS
Victor Stinnerd6f85422010-05-05 23:33:33 +00001674 DWORD attr;
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) {
1680 if (i & _S_IWRITE)
1681 attr &= ~FILE_ATTRIBUTE_READONLY;
1682 else
1683 attr |= FILE_ATTRIBUTE_READONLY;
1684 res = SetFileAttributesW(PyUnicode_AS_UNICODE(po), attr);
1685 }
1686 else
1687 res = 0;
1688 Py_END_ALLOW_THREADS
1689 if (!res)
1690 return win32_error_unicode("chmod",
1691 PyUnicode_AS_UNICODE(po));
1692 Py_INCREF(Py_None);
1693 return Py_None;
1694 }
1695 /* Drop the argument parsing error as narrow strings
1696 are also valid. */
1697 PyErr_Clear();
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00001698
Victor Stinnerd6f85422010-05-05 23:33:33 +00001699 if (!PyArg_ParseTuple(args, "eti:chmod", Py_FileSystemDefaultEncoding,
1700 &path, &i))
1701 return NULL;
1702 Py_BEGIN_ALLOW_THREADS
1703 attr = GetFileAttributesA(path);
1704 if (attr != 0xFFFFFFFF) {
1705 if (i & _S_IWRITE)
1706 attr &= ~FILE_ATTRIBUTE_READONLY;
1707 else
1708 attr |= FILE_ATTRIBUTE_READONLY;
1709 res = SetFileAttributesA(path, attr);
1710 }
1711 else
1712 res = 0;
1713 Py_END_ALLOW_THREADS
1714 if (!res) {
1715 win32_error("chmod", path);
1716 PyMem_Free(path);
1717 return NULL;
1718 }
1719 PyMem_Free(path);
1720 Py_INCREF(Py_None);
1721 return Py_None;
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00001722#else /* MS_WINDOWS */
Victor Stinnerd6f85422010-05-05 23:33:33 +00001723 if (!PyArg_ParseTuple(args, "eti:chmod", Py_FileSystemDefaultEncoding,
1724 &path, &i))
1725 return NULL;
1726 Py_BEGIN_ALLOW_THREADS
1727 res = chmod(path, i);
1728 Py_END_ALLOW_THREADS
1729 if (res < 0)
1730 return posix_error_with_allocated_filename(path);
1731 PyMem_Free(path);
1732 Py_INCREF(Py_None);
1733 return Py_None;
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001734#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001735}
1736
Christian Heimes36281872007-11-30 21:11:28 +00001737#ifdef HAVE_FCHMOD
1738PyDoc_STRVAR(posix_fchmod__doc__,
1739"fchmod(fd, mode)\n\n\
1740Change the access permissions of the file given by file\n\
1741descriptor fd.");
1742
1743static PyObject *
1744posix_fchmod(PyObject *self, PyObject *args)
1745{
Victor Stinnerd6f85422010-05-05 23:33:33 +00001746 int fd, mode, res;
1747 if (!PyArg_ParseTuple(args, "ii:fchmod", &fd, &mode))
1748 return NULL;
1749 Py_BEGIN_ALLOW_THREADS
1750 res = fchmod(fd, mode);
1751 Py_END_ALLOW_THREADS
1752 if (res < 0)
1753 return posix_error();
1754 Py_RETURN_NONE;
Christian Heimes36281872007-11-30 21:11:28 +00001755}
1756#endif /* HAVE_FCHMOD */
1757
1758#ifdef HAVE_LCHMOD
1759PyDoc_STRVAR(posix_lchmod__doc__,
1760"lchmod(path, mode)\n\n\
1761Change the access permissions of a file. If path is a symlink, this\n\
1762affects the link itself rather than the target.");
1763
1764static PyObject *
1765posix_lchmod(PyObject *self, PyObject *args)
1766{
Victor Stinnerd6f85422010-05-05 23:33:33 +00001767 char *path = NULL;
1768 int i;
1769 int res;
1770 if (!PyArg_ParseTuple(args, "eti:lchmod", Py_FileSystemDefaultEncoding,
1771 &path, &i))
1772 return NULL;
1773 Py_BEGIN_ALLOW_THREADS
1774 res = lchmod(path, i);
1775 Py_END_ALLOW_THREADS
1776 if (res < 0)
1777 return posix_error_with_allocated_filename(path);
1778 PyMem_Free(path);
1779 Py_RETURN_NONE;
Christian Heimes36281872007-11-30 21:11:28 +00001780}
1781#endif /* HAVE_LCHMOD */
1782
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001783
Martin v. Löwis382abef2007-02-19 10:55:19 +00001784#ifdef HAVE_CHFLAGS
1785PyDoc_STRVAR(posix_chflags__doc__,
1786"chflags(path, flags)\n\n\
1787Set file flags.");
1788
1789static PyObject *
1790posix_chflags(PyObject *self, PyObject *args)
1791{
Victor Stinnerd6f85422010-05-05 23:33:33 +00001792 char *path;
1793 unsigned long flags;
1794 int res;
1795 if (!PyArg_ParseTuple(args, "etk:chflags",
1796 Py_FileSystemDefaultEncoding, &path, &flags))
1797 return NULL;
1798 Py_BEGIN_ALLOW_THREADS
1799 res = chflags(path, flags);
1800 Py_END_ALLOW_THREADS
1801 if (res < 0)
1802 return posix_error_with_allocated_filename(path);
1803 PyMem_Free(path);
1804 Py_INCREF(Py_None);
1805 return Py_None;
Martin v. Löwis382abef2007-02-19 10:55:19 +00001806}
1807#endif /* HAVE_CHFLAGS */
1808
1809#ifdef HAVE_LCHFLAGS
1810PyDoc_STRVAR(posix_lchflags__doc__,
1811"lchflags(path, flags)\n\n\
1812Set file flags.\n\
1813This function will not follow symbolic links.");
1814
1815static PyObject *
1816posix_lchflags(PyObject *self, PyObject *args)
1817{
Victor Stinnerd6f85422010-05-05 23:33:33 +00001818 char *path;
1819 unsigned long flags;
1820 int res;
1821 if (!PyArg_ParseTuple(args, "etk:lchflags",
1822 Py_FileSystemDefaultEncoding, &path, &flags))
1823 return NULL;
1824 Py_BEGIN_ALLOW_THREADS
1825 res = lchflags(path, flags);
1826 Py_END_ALLOW_THREADS
1827 if (res < 0)
1828 return posix_error_with_allocated_filename(path);
1829 PyMem_Free(path);
1830 Py_INCREF(Py_None);
1831 return Py_None;
Martin v. Löwis382abef2007-02-19 10:55:19 +00001832}
1833#endif /* HAVE_LCHFLAGS */
1834
Martin v. Löwis244edc82001-10-04 22:44:26 +00001835#ifdef HAVE_CHROOT
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001836PyDoc_STRVAR(posix_chroot__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001837"chroot(path)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001838Change root directory to path.");
Martin v. Löwis244edc82001-10-04 22:44:26 +00001839
1840static PyObject *
1841posix_chroot(PyObject *self, PyObject *args)
1842{
Victor Stinnerd6f85422010-05-05 23:33:33 +00001843 return posix_1str(args, "et:chroot", chroot);
Martin v. Löwis244edc82001-10-04 22:44:26 +00001844}
1845#endif
1846
Guido van Rossum21142a01999-01-08 21:05:37 +00001847#ifdef HAVE_FSYNC
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001848PyDoc_STRVAR(posix_fsync__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001849"fsync(fildes)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001850force write of file with filedescriptor to disk.");
Guido van Rossum21142a01999-01-08 21:05:37 +00001851
1852static PyObject *
Fred Drake4d1e64b2002-04-15 19:40:07 +00001853posix_fsync(PyObject *self, PyObject *fdobj)
Guido van Rossum21142a01999-01-08 21:05:37 +00001854{
Stefan Krah93f7a322010-11-26 17:35:50 +00001855 return posix_fildes(fdobj, fsync);
Guido van Rossum21142a01999-01-08 21:05:37 +00001856}
1857#endif /* HAVE_FSYNC */
1858
1859#ifdef HAVE_FDATASYNC
Guido van Rossumecc23b02000-09-22 16:01:05 +00001860
Guido van Rossum7f58e2e2000-09-22 17:26:14 +00001861#ifdef __hpux
Guido van Rossumecc23b02000-09-22 16:01:05 +00001862extern int fdatasync(int); /* On HP-UX, in libc but not in unistd.h */
1863#endif
1864
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001865PyDoc_STRVAR(posix_fdatasync__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001866"fdatasync(fildes)\n\n\
Guido van Rossum21142a01999-01-08 21:05:37 +00001867force write of file with filedescriptor to disk.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001868 does not force update of metadata.");
Guido van Rossum21142a01999-01-08 21:05:37 +00001869
1870static PyObject *
Fred Drake4d1e64b2002-04-15 19:40:07 +00001871posix_fdatasync(PyObject *self, PyObject *fdobj)
Guido van Rossum21142a01999-01-08 21:05:37 +00001872{
Stefan Krah93f7a322010-11-26 17:35:50 +00001873 return posix_fildes(fdobj, fdatasync);
Guido van Rossum21142a01999-01-08 21:05:37 +00001874}
1875#endif /* HAVE_FDATASYNC */
1876
1877
Fredrik Lundh10723342000-07-10 16:38:09 +00001878#ifdef HAVE_CHOWN
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001879PyDoc_STRVAR(posix_chown__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001880"chown(path, uid, gid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001881Change the owner and group id of path to the numeric uid and gid.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001882
Barry Warsaw53699e91996-12-10 23:23:01 +00001883static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00001884posix_chown(PyObject *self, PyObject *args)
Guido van Rossumb6775db1994-08-01 11:34:53 +00001885{
Victor Stinnerd6f85422010-05-05 23:33:33 +00001886 char *path = NULL;
1887 long uid, gid;
1888 int res;
1889 if (!PyArg_ParseTuple(args, "etll:chown",
1890 Py_FileSystemDefaultEncoding, &path,
1891 &uid, &gid))
1892 return NULL;
1893 Py_BEGIN_ALLOW_THREADS
1894 res = chown(path, (uid_t) uid, (gid_t) gid);
1895 Py_END_ALLOW_THREADS
1896 if (res < 0)
1897 return posix_error_with_allocated_filename(path);
1898 PyMem_Free(path);
1899 Py_INCREF(Py_None);
1900 return Py_None;
Guido van Rossumb6775db1994-08-01 11:34:53 +00001901}
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00001902#endif /* HAVE_CHOWN */
Guido van Rossumb6775db1994-08-01 11:34:53 +00001903
Christian Heimes36281872007-11-30 21:11:28 +00001904#ifdef HAVE_FCHOWN
1905PyDoc_STRVAR(posix_fchown__doc__,
1906"fchown(fd, uid, gid)\n\n\
1907Change the owner and group id of the file given by file descriptor\n\
1908fd to the numeric uid and gid.");
1909
1910static PyObject *
1911posix_fchown(PyObject *self, PyObject *args)
1912{
Victor Stinnerd6f85422010-05-05 23:33:33 +00001913 int fd;
1914 long uid, gid;
1915 int res;
1916 if (!PyArg_ParseTuple(args, "ill:chown", &fd, &uid, &gid))
1917 return NULL;
1918 Py_BEGIN_ALLOW_THREADS
1919 res = fchown(fd, (uid_t) uid, (gid_t) gid);
1920 Py_END_ALLOW_THREADS
1921 if (res < 0)
1922 return posix_error();
1923 Py_RETURN_NONE;
Christian Heimes36281872007-11-30 21:11:28 +00001924}
1925#endif /* HAVE_FCHOWN */
1926
Martin v. Löwis0cec0ff2002-07-28 16:33:45 +00001927#ifdef HAVE_LCHOWN
1928PyDoc_STRVAR(posix_lchown__doc__,
1929"lchown(path, uid, gid)\n\n\
1930Change the owner and group id of path to the numeric uid and gid.\n\
1931This function will not follow symbolic links.");
1932
1933static PyObject *
1934posix_lchown(PyObject *self, PyObject *args)
1935{
Victor Stinnerd6f85422010-05-05 23:33:33 +00001936 char *path = NULL;
1937 long uid, gid;
1938 int res;
1939 if (!PyArg_ParseTuple(args, "etll:lchown",
1940 Py_FileSystemDefaultEncoding, &path,
1941 &uid, &gid))
1942 return NULL;
1943 Py_BEGIN_ALLOW_THREADS
1944 res = lchown(path, (uid_t) uid, (gid_t) gid);
1945 Py_END_ALLOW_THREADS
1946 if (res < 0)
1947 return posix_error_with_allocated_filename(path);
1948 PyMem_Free(path);
1949 Py_INCREF(Py_None);
1950 return Py_None;
Martin v. Löwis0cec0ff2002-07-28 16:33:45 +00001951}
1952#endif /* HAVE_LCHOWN */
1953
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001954
Guido van Rossum36bc6801995-06-14 22:54:23 +00001955#ifdef HAVE_GETCWD
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001956PyDoc_STRVAR(posix_getcwd__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001957"getcwd() -> path\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001958Return a string representing the current working directory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001959
Stefan Krah182ae642010-07-13 19:17:08 +00001960#if (defined(__sun) && defined(__SVR4)) || defined(__OpenBSD__)
1961/* Issue 9185: getcwd() returns NULL/ERANGE indefinitely. */
1962static PyObject *
1963posix_getcwd(PyObject *self, PyObject *noargs)
1964{
1965 char buf[PATH_MAX+2];
1966 char *res;
1967
1968 Py_BEGIN_ALLOW_THREADS
Stefan Krah8cb9f032010-07-13 19:40:00 +00001969 res = getcwd(buf, sizeof buf);
Stefan Krah182ae642010-07-13 19:17:08 +00001970 Py_END_ALLOW_THREADS
1971
1972 if (res == NULL)
1973 return posix_error();
1974
1975 return PyString_FromString(buf);
1976}
1977#else
Barry Warsaw53699e91996-12-10 23:23:01 +00001978static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00001979posix_getcwd(PyObject *self, PyObject *noargs)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001980{
Victor Stinnerd6f85422010-05-05 23:33:33 +00001981 int bufsize_incr = 1024;
1982 int bufsize = 0;
1983 char *tmpbuf = NULL;
1984 char *res = NULL;
1985 PyObject *dynamic_return;
Neal Norwitze241ce82003-02-17 18:17:05 +00001986
Victor Stinnerd6f85422010-05-05 23:33:33 +00001987 Py_BEGIN_ALLOW_THREADS
1988 do {
1989 bufsize = bufsize + bufsize_incr;
1990 tmpbuf = malloc(bufsize);
1991 if (tmpbuf == NULL) {
1992 break;
1993 }
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00001994#if defined(PYOS_OS2) && defined(PYCC_GCC)
Victor Stinnerd6f85422010-05-05 23:33:33 +00001995 res = _getcwd2(tmpbuf, bufsize);
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001996#else
Victor Stinnerd6f85422010-05-05 23:33:33 +00001997 res = getcwd(tmpbuf, bufsize);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00001998#endif
Facundo Batista5596b0c2008-06-22 13:36:20 +00001999
Victor Stinnerd6f85422010-05-05 23:33:33 +00002000 if (res == NULL) {
2001 free(tmpbuf);
2002 }
2003 } while ((res == NULL) && (errno == ERANGE));
2004 Py_END_ALLOW_THREADS
Facundo Batista5596b0c2008-06-22 13:36:20 +00002005
Victor Stinnerd6f85422010-05-05 23:33:33 +00002006 if (res == NULL)
2007 return posix_error();
Facundo Batista5596b0c2008-06-22 13:36:20 +00002008
Victor Stinnerd6f85422010-05-05 23:33:33 +00002009 dynamic_return = PyString_FromString(tmpbuf);
2010 free(tmpbuf);
Facundo Batista5596b0c2008-06-22 13:36:20 +00002011
Victor Stinnerd6f85422010-05-05 23:33:33 +00002012 return dynamic_return;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002013}
Stefan Krah182ae642010-07-13 19:17:08 +00002014#endif /* getcwd() NULL/ERANGE workaround. */
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002015
Walter Dörwald3b918c32002-11-21 20:18:46 +00002016#ifdef Py_USING_UNICODE
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002017PyDoc_STRVAR(posix_getcwdu__doc__,
2018"getcwdu() -> path\n\n\
2019Return a unicode string representing the current working directory.");
2020
2021static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00002022posix_getcwdu(PyObject *self, PyObject *noargs)
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002023{
Victor Stinnerd6f85422010-05-05 23:33:33 +00002024 char buf[1026];
2025 char *res;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002026
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002027#ifdef MS_WINDOWS
Victor Stinnerd6f85422010-05-05 23:33:33 +00002028 DWORD len;
2029 wchar_t wbuf[1026];
2030 wchar_t *wbuf2 = wbuf;
2031 PyObject *resobj;
2032 Py_BEGIN_ALLOW_THREADS
2033 len = GetCurrentDirectoryW(sizeof wbuf/ sizeof wbuf[0], wbuf);
2034 /* If the buffer is large enough, len does not include the
2035 terminating \0. If the buffer is too small, len includes
2036 the space needed for the terminator. */
2037 if (len >= sizeof wbuf/ sizeof wbuf[0]) {
2038 wbuf2 = malloc(len * sizeof(wchar_t));
2039 if (wbuf2)
2040 len = GetCurrentDirectoryW(len, wbuf2);
2041 }
2042 Py_END_ALLOW_THREADS
2043 if (!wbuf2) {
2044 PyErr_NoMemory();
2045 return NULL;
2046 }
2047 if (!len) {
2048 if (wbuf2 != wbuf) free(wbuf2);
2049 return win32_error("getcwdu", NULL);
2050 }
2051 resobj = PyUnicode_FromWideChar(wbuf2, len);
2052 if (wbuf2 != wbuf) free(wbuf2);
2053 return resobj;
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002054#endif /* MS_WINDOWS */
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002055
Victor Stinnerd6f85422010-05-05 23:33:33 +00002056 Py_BEGIN_ALLOW_THREADS
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002057#if defined(PYOS_OS2) && defined(PYCC_GCC)
Victor Stinnerd6f85422010-05-05 23:33:33 +00002058 res = _getcwd2(buf, sizeof buf);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002059#else
Victor Stinnerd6f85422010-05-05 23:33:33 +00002060 res = getcwd(buf, sizeof buf);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002061#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00002062 Py_END_ALLOW_THREADS
2063 if (res == NULL)
2064 return posix_error();
2065 return PyUnicode_Decode(buf, strlen(buf), Py_FileSystemDefaultEncoding,"strict");
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002066}
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002067#endif /* Py_USING_UNICODE */
2068#endif /* HAVE_GETCWD */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002069
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002070
Guido van Rossumb6775db1994-08-01 11:34:53 +00002071#ifdef HAVE_LINK
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002072PyDoc_STRVAR(posix_link__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002073"link(src, dst)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002074Create a hard link to a file.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002075
Barry Warsaw53699e91996-12-10 23:23:01 +00002076static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002077posix_link(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002078{
Victor Stinnerd6f85422010-05-05 23:33:33 +00002079 return posix_2str(args, "etet:link", link);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002080}
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002081#endif /* HAVE_LINK */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002082
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002083
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002084PyDoc_STRVAR(posix_listdir__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002085"listdir(path) -> list_of_strings\n\n\
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002086Return a list containing the names of the entries in the directory.\n\
2087\n\
Victor Stinnerd6f85422010-05-05 23:33:33 +00002088 path: path of directory to list\n\
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002089\n\
2090The list is in arbitrary order. It does not include the special\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002091entries '.' and '..' even if they are present in the directory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002092
Barry Warsaw53699e91996-12-10 23:23:01 +00002093static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002094posix_listdir(PyObject *self, PyObject *args)
Guido van Rossumb6775db1994-08-01 11:34:53 +00002095{
Victor Stinnerd6f85422010-05-05 23:33:33 +00002096 /* XXX Should redo this putting the (now four) versions of opendir
2097 in separate files instead of having them all here... */
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00002098#if defined(MS_WINDOWS) && !defined(HAVE_OPENDIR)
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002099
Victor Stinnerd6f85422010-05-05 23:33:33 +00002100 PyObject *d, *v;
2101 HANDLE hFindFile;
2102 BOOL result;
2103 WIN32_FIND_DATA FileData;
2104 char namebuf[MAX_PATH+5]; /* Overallocate for \\*.*\0 */
2105 char *bufptr = namebuf;
2106 Py_ssize_t len = sizeof(namebuf)-5; /* only claim to have space for MAX_PATH */
Guido van Rossumb6775db1994-08-01 11:34:53 +00002107
Victor Stinnerd6f85422010-05-05 23:33:33 +00002108 PyObject *po;
2109 if (PyArg_ParseTuple(args, "U:listdir", &po)) {
2110 WIN32_FIND_DATAW wFileData;
2111 Py_UNICODE *wnamebuf;
2112 /* Overallocate for \\*.*\0 */
2113 len = PyUnicode_GET_SIZE(po);
2114 wnamebuf = malloc((len + 5) * sizeof(wchar_t));
2115 if (!wnamebuf) {
2116 PyErr_NoMemory();
2117 return NULL;
2118 }
2119 wcscpy(wnamebuf, PyUnicode_AS_UNICODE(po));
2120 if (len > 0) {
2121 Py_UNICODE wch = wnamebuf[len-1];
2122 if (wch != L'/' && wch != L'\\' && wch != L':')
2123 wnamebuf[len++] = L'\\';
2124 wcscpy(wnamebuf + len, L"*.*");
2125 }
2126 if ((d = PyList_New(0)) == NULL) {
2127 free(wnamebuf);
2128 return NULL;
2129 }
Antoine Pitrou8cdede42010-08-10 00:04:13 +00002130 Py_BEGIN_ALLOW_THREADS
Victor Stinnerd6f85422010-05-05 23:33:33 +00002131 hFindFile = FindFirstFileW(wnamebuf, &wFileData);
Antoine Pitrou8cdede42010-08-10 00:04:13 +00002132 Py_END_ALLOW_THREADS
Victor Stinnerd6f85422010-05-05 23:33:33 +00002133 if (hFindFile == INVALID_HANDLE_VALUE) {
2134 int error = GetLastError();
2135 if (error == ERROR_FILE_NOT_FOUND) {
2136 free(wnamebuf);
2137 return d;
2138 }
2139 Py_DECREF(d);
2140 win32_error_unicode("FindFirstFileW", wnamebuf);
2141 free(wnamebuf);
2142 return NULL;
2143 }
2144 do {
2145 /* Skip over . and .. */
2146 if (wcscmp(wFileData.cFileName, L".") != 0 &&
2147 wcscmp(wFileData.cFileName, L"..") != 0) {
2148 v = PyUnicode_FromUnicode(wFileData.cFileName, wcslen(wFileData.cFileName));
2149 if (v == NULL) {
2150 Py_DECREF(d);
2151 d = NULL;
2152 break;
2153 }
2154 if (PyList_Append(d, v) != 0) {
2155 Py_DECREF(v);
2156 Py_DECREF(d);
2157 d = NULL;
2158 break;
2159 }
2160 Py_DECREF(v);
2161 }
2162 Py_BEGIN_ALLOW_THREADS
2163 result = FindNextFileW(hFindFile, &wFileData);
2164 Py_END_ALLOW_THREADS
2165 /* FindNextFile sets error to ERROR_NO_MORE_FILES if
2166 it got to the end of the directory. */
2167 if (!result && GetLastError() != ERROR_NO_MORE_FILES) {
2168 Py_DECREF(d);
2169 win32_error_unicode("FindNextFileW", wnamebuf);
2170 FindClose(hFindFile);
2171 free(wnamebuf);
2172 return NULL;
2173 }
2174 } while (result == TRUE);
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00002175
Victor Stinnerd6f85422010-05-05 23:33:33 +00002176 if (FindClose(hFindFile) == FALSE) {
2177 Py_DECREF(d);
2178 win32_error_unicode("FindClose", wnamebuf);
2179 free(wnamebuf);
2180 return NULL;
2181 }
2182 free(wnamebuf);
2183 return d;
2184 }
2185 /* Drop the argument parsing error as narrow strings
2186 are also valid. */
2187 PyErr_Clear();
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002188
Victor Stinnerd6f85422010-05-05 23:33:33 +00002189 if (!PyArg_ParseTuple(args, "et#:listdir",
2190 Py_FileSystemDefaultEncoding, &bufptr, &len))
2191 return NULL;
2192 if (len > 0) {
2193 char ch = namebuf[len-1];
2194 if (ch != SEP && ch != ALTSEP && ch != ':')
2195 namebuf[len++] = '/';
2196 strcpy(namebuf + len, "*.*");
2197 }
Guido van Rossumb6775db1994-08-01 11:34:53 +00002198
Victor Stinnerd6f85422010-05-05 23:33:33 +00002199 if ((d = PyList_New(0)) == NULL)
2200 return NULL;
Guido van Rossumb6775db1994-08-01 11:34:53 +00002201
Antoine Pitrou8cdede42010-08-10 00:04:13 +00002202 Py_BEGIN_ALLOW_THREADS
Victor Stinnerd6f85422010-05-05 23:33:33 +00002203 hFindFile = FindFirstFile(namebuf, &FileData);
Antoine Pitrou8cdede42010-08-10 00:04:13 +00002204 Py_END_ALLOW_THREADS
Victor Stinnerd6f85422010-05-05 23:33:33 +00002205 if (hFindFile == INVALID_HANDLE_VALUE) {
2206 int error = GetLastError();
2207 if (error == ERROR_FILE_NOT_FOUND)
2208 return d;
2209 Py_DECREF(d);
2210 return win32_error("FindFirstFile", namebuf);
2211 }
2212 do {
2213 /* Skip over . and .. */
2214 if (strcmp(FileData.cFileName, ".") != 0 &&
2215 strcmp(FileData.cFileName, "..") != 0) {
2216 v = PyString_FromString(FileData.cFileName);
2217 if (v == NULL) {
2218 Py_DECREF(d);
2219 d = NULL;
2220 break;
2221 }
2222 if (PyList_Append(d, v) != 0) {
2223 Py_DECREF(v);
2224 Py_DECREF(d);
2225 d = NULL;
2226 break;
2227 }
2228 Py_DECREF(v);
2229 }
2230 Py_BEGIN_ALLOW_THREADS
2231 result = FindNextFile(hFindFile, &FileData);
2232 Py_END_ALLOW_THREADS
2233 /* FindNextFile sets error to ERROR_NO_MORE_FILES if
2234 it got to the end of the directory. */
2235 if (!result && GetLastError() != ERROR_NO_MORE_FILES) {
2236 Py_DECREF(d);
2237 win32_error("FindNextFile", namebuf);
2238 FindClose(hFindFile);
2239 return NULL;
2240 }
2241 } while (result == TRUE);
Guido van Rossumb6775db1994-08-01 11:34:53 +00002242
Victor Stinnerd6f85422010-05-05 23:33:33 +00002243 if (FindClose(hFindFile) == FALSE) {
2244 Py_DECREF(d);
2245 return win32_error("FindClose", namebuf);
2246 }
Guido van Rossumb6775db1994-08-01 11:34:53 +00002247
Victor Stinnerd6f85422010-05-05 23:33:33 +00002248 return d;
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002249
Tim Peters0bb44a42000-09-15 07:44:49 +00002250#elif defined(PYOS_OS2)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002251
2252#ifndef MAX_PATH
2253#define MAX_PATH CCHMAXPATH
2254#endif
2255 char *name, *pt;
Thomas Wouters68bc4f92006-03-01 01:05:10 +00002256 Py_ssize_t len;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002257 PyObject *d, *v;
2258 char namebuf[MAX_PATH+5];
2259 HDIR hdir = 1;
2260 ULONG srchcnt = 1;
2261 FILEFINDBUF3 ep;
2262 APIRET rc;
2263
Fred Drake5ab8eaf1999-12-09 21:13:07 +00002264 if (!PyArg_ParseTuple(args, "t#:listdir", &name, &len))
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002265 return NULL;
2266 if (len >= MAX_PATH) {
Victor Stinnerd6f85422010-05-05 23:33:33 +00002267 PyErr_SetString(PyExc_ValueError, "path too long");
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002268 return NULL;
2269 }
2270 strcpy(namebuf, name);
2271 for (pt = namebuf; *pt; pt++)
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00002272 if (*pt == ALTSEP)
2273 *pt = SEP;
2274 if (namebuf[len-1] != SEP)
2275 namebuf[len++] = SEP;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002276 strcpy(namebuf + len, "*.*");
2277
Victor Stinnerd6f85422010-05-05 23:33:33 +00002278 if ((d = PyList_New(0)) == NULL)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002279 return NULL;
2280
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002281 rc = DosFindFirst(namebuf, /* Wildcard Pattern to Match */
2282 &hdir, /* Handle to Use While Search Directory */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002283 FILE_READONLY | FILE_HIDDEN | FILE_SYSTEM | FILE_DIRECTORY,
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002284 &ep, sizeof(ep), /* Structure to Receive Directory Entry */
2285 &srchcnt, /* Max and Actual Count of Entries Per Iteration */
2286 FIL_STANDARD); /* Format of Entry (EAs or Not) */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002287
2288 if (rc != NO_ERROR) {
2289 errno = ENOENT;
Barry Warsawf63b8cc1999-05-27 23:13:21 +00002290 return posix_error_with_filename(name);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002291 }
2292
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002293 if (srchcnt > 0) { /* If Directory is NOT Totally Empty, */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002294 do {
2295 if (ep.achName[0] == '.'
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00002296 && (ep.achName[1] == '\0' || (ep.achName[1] == '.' && ep.achName[2] == '\0')))
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002297 continue; /* Skip Over "." and ".." Names */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002298
2299 strcpy(namebuf, ep.achName);
2300
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002301 /* Leave Case of Name Alone -- In Native Form */
2302 /* (Removed Forced Lowercasing Code) */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002303
Gregory P. Smithdd96db62008-06-09 04:58:54 +00002304 v = PyString_FromString(namebuf);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002305 if (v == NULL) {
2306 Py_DECREF(d);
2307 d = NULL;
2308 break;
2309 }
2310 if (PyList_Append(d, v) != 0) {
2311 Py_DECREF(v);
2312 Py_DECREF(d);
2313 d = NULL;
2314 break;
2315 }
2316 Py_DECREF(v);
2317 } while (DosFindNext(hdir, &ep, sizeof(ep), &srchcnt) == NO_ERROR && srchcnt > 0);
2318 }
2319
2320 return d;
2321#else
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002322
Victor Stinnerd6f85422010-05-05 23:33:33 +00002323 char *name = NULL;
2324 PyObject *d, *v;
2325 DIR *dirp;
2326 struct dirent *ep;
2327 int arg_is_unicode = 1;
Just van Rossum96b1c902003-03-03 17:32:15 +00002328
Victor Stinnerd6f85422010-05-05 23:33:33 +00002329 errno = 0;
2330 if (!PyArg_ParseTuple(args, "U:listdir", &v)) {
2331 arg_is_unicode = 0;
2332 PyErr_Clear();
2333 }
2334 if (!PyArg_ParseTuple(args, "et:listdir", Py_FileSystemDefaultEncoding, &name))
2335 return NULL;
Antoine Pitrou247e2fd2010-09-04 17:27:10 +00002336 Py_BEGIN_ALLOW_THREADS
2337 dirp = opendir(name);
2338 Py_END_ALLOW_THREADS
2339 if (dirp == NULL) {
Victor Stinnerd6f85422010-05-05 23:33:33 +00002340 return posix_error_with_allocated_filename(name);
2341 }
2342 if ((d = PyList_New(0)) == NULL) {
Antoine Pitrou247e2fd2010-09-04 17:27:10 +00002343 Py_BEGIN_ALLOW_THREADS
Victor Stinnerd6f85422010-05-05 23:33:33 +00002344 closedir(dirp);
Antoine Pitrou247e2fd2010-09-04 17:27:10 +00002345 Py_END_ALLOW_THREADS
Victor Stinnerd6f85422010-05-05 23:33:33 +00002346 PyMem_Free(name);
2347 return NULL;
2348 }
2349 for (;;) {
2350 errno = 0;
2351 Py_BEGIN_ALLOW_THREADS
2352 ep = readdir(dirp);
2353 Py_END_ALLOW_THREADS
2354 if (ep == NULL) {
2355 if (errno == 0) {
2356 break;
2357 } else {
Antoine Pitrou247e2fd2010-09-04 17:27:10 +00002358 Py_BEGIN_ALLOW_THREADS
Victor Stinnerd6f85422010-05-05 23:33:33 +00002359 closedir(dirp);
Antoine Pitrou247e2fd2010-09-04 17:27:10 +00002360 Py_END_ALLOW_THREADS
Victor Stinnerd6f85422010-05-05 23:33:33 +00002361 Py_DECREF(d);
2362 return posix_error_with_allocated_filename(name);
2363 }
2364 }
2365 if (ep->d_name[0] == '.' &&
2366 (NAMLEN(ep) == 1 ||
2367 (ep->d_name[1] == '.' && NAMLEN(ep) == 2)))
2368 continue;
2369 v = PyString_FromStringAndSize(ep->d_name, NAMLEN(ep));
2370 if (v == NULL) {
2371 Py_DECREF(d);
2372 d = NULL;
2373 break;
2374 }
Just van Rossum46c97842003-02-25 21:42:15 +00002375#ifdef Py_USING_UNICODE
Victor Stinnerd6f85422010-05-05 23:33:33 +00002376 if (arg_is_unicode) {
2377 PyObject *w;
Just van Rossum46c97842003-02-25 21:42:15 +00002378
Victor Stinnerd6f85422010-05-05 23:33:33 +00002379 w = PyUnicode_FromEncodedObject(v,
2380 Py_FileSystemDefaultEncoding,
2381 "strict");
2382 if (w != NULL) {
2383 Py_DECREF(v);
2384 v = w;
2385 }
2386 else {
2387 /* fall back to the original byte string, as
2388 discussed in patch #683592 */
2389 PyErr_Clear();
2390 }
2391 }
Just van Rossum46c97842003-02-25 21:42:15 +00002392#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00002393 if (PyList_Append(d, v) != 0) {
2394 Py_DECREF(v);
2395 Py_DECREF(d);
2396 d = NULL;
2397 break;
2398 }
2399 Py_DECREF(v);
2400 }
Antoine Pitrou247e2fd2010-09-04 17:27:10 +00002401 Py_BEGIN_ALLOW_THREADS
Victor Stinnerd6f85422010-05-05 23:33:33 +00002402 closedir(dirp);
Antoine Pitrou247e2fd2010-09-04 17:27:10 +00002403 Py_END_ALLOW_THREADS
Victor Stinnerd6f85422010-05-05 23:33:33 +00002404 PyMem_Free(name);
Guido van Rossum0ee42cd1991-04-08 21:01:03 +00002405
Victor Stinnerd6f85422010-05-05 23:33:33 +00002406 return d;
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002407
Tim Peters0bb44a42000-09-15 07:44:49 +00002408#endif /* which OS */
2409} /* end of posix_listdir */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002410
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00002411#ifdef MS_WINDOWS
Mark Hammondef8b6542001-05-13 08:04:26 +00002412/* A helper function for abspath on win32 */
2413static PyObject *
2414posix__getfullpathname(PyObject *self, PyObject *args)
2415{
Victor Stinnerd6f85422010-05-05 23:33:33 +00002416 /* assume encoded strings won't more than double no of chars */
2417 char inbuf[MAX_PATH*2];
2418 char *inbufp = inbuf;
2419 Py_ssize_t insize = sizeof(inbuf);
2420 char outbuf[MAX_PATH*2];
2421 char *temp;
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002422
Victor Stinnerd6f85422010-05-05 23:33:33 +00002423 PyUnicodeObject *po;
2424 if (PyArg_ParseTuple(args, "U|:_getfullpathname", &po)) {
2425 Py_UNICODE *wpath = PyUnicode_AS_UNICODE(po);
2426 Py_UNICODE woutbuf[MAX_PATH*2], *woutbufp = woutbuf;
2427 Py_UNICODE *wtemp;
2428 DWORD result;
2429 PyObject *v;
2430 result = GetFullPathNameW(wpath,
2431 sizeof(woutbuf)/sizeof(woutbuf[0]),
2432 woutbuf, &wtemp);
2433 if (result > sizeof(woutbuf)/sizeof(woutbuf[0])) {
2434 woutbufp = malloc(result * sizeof(Py_UNICODE));
2435 if (!woutbufp)
2436 return PyErr_NoMemory();
2437 result = GetFullPathNameW(wpath, result, woutbufp, &wtemp);
2438 }
2439 if (result)
2440 v = PyUnicode_FromUnicode(woutbufp, wcslen(woutbufp));
2441 else
2442 v = win32_error_unicode("GetFullPathNameW", wpath);
2443 if (woutbufp != woutbuf)
2444 free(woutbufp);
2445 return v;
2446 }
2447 /* Drop the argument parsing error as narrow strings
2448 are also valid. */
2449 PyErr_Clear();
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002450
Victor Stinnerd6f85422010-05-05 23:33:33 +00002451 if (!PyArg_ParseTuple (args, "et#:_getfullpathname",
2452 Py_FileSystemDefaultEncoding, &inbufp,
2453 &insize))
2454 return NULL;
2455 if (!GetFullPathName(inbuf, sizeof(outbuf)/sizeof(outbuf[0]),
2456 outbuf, &temp))
2457 return win32_error("GetFullPathName", inbuf);
2458 if (PyUnicode_Check(PyTuple_GetItem(args, 0))) {
2459 return PyUnicode_Decode(outbuf, strlen(outbuf),
2460 Py_FileSystemDefaultEncoding, NULL);
2461 }
2462 return PyString_FromString(outbuf);
Mark Hammondef8b6542001-05-13 08:04:26 +00002463} /* end of posix__getfullpathname */
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00002464#endif /* MS_WINDOWS */
Mark Hammondef8b6542001-05-13 08:04:26 +00002465
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002466PyDoc_STRVAR(posix_mkdir__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002467"mkdir(path [, mode=0777])\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002468Create a directory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002469
Barry Warsaw53699e91996-12-10 23:23:01 +00002470static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002471posix_mkdir(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002472{
Victor Stinnerd6f85422010-05-05 23:33:33 +00002473 int res;
2474 char *path = NULL;
2475 int mode = 0777;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002476
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002477#ifdef MS_WINDOWS
Victor Stinnerd6f85422010-05-05 23:33:33 +00002478 PyUnicodeObject *po;
2479 if (PyArg_ParseTuple(args, "U|i:mkdir", &po, &mode)) {
2480 Py_BEGIN_ALLOW_THREADS
2481 /* PyUnicode_AS_UNICODE OK without thread lock as
2482 it is a simple dereference. */
2483 res = CreateDirectoryW(PyUnicode_AS_UNICODE(po), NULL);
2484 Py_END_ALLOW_THREADS
2485 if (!res)
2486 return win32_error_unicode("mkdir", PyUnicode_AS_UNICODE(po));
2487 Py_INCREF(Py_None);
2488 return Py_None;
2489 }
2490 /* Drop the argument parsing error as narrow strings
2491 are also valid. */
2492 PyErr_Clear();
2493 if (!PyArg_ParseTuple(args, "et|i:mkdir",
2494 Py_FileSystemDefaultEncoding, &path, &mode))
2495 return NULL;
2496 Py_BEGIN_ALLOW_THREADS
2497 /* PyUnicode_AS_UNICODE OK without thread lock as
2498 it is a simple dereference. */
2499 res = CreateDirectoryA(path, NULL);
2500 Py_END_ALLOW_THREADS
2501 if (!res) {
2502 win32_error("mkdir", path);
2503 PyMem_Free(path);
2504 return NULL;
2505 }
2506 PyMem_Free(path);
2507 Py_INCREF(Py_None);
2508 return Py_None;
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002509#else /* MS_WINDOWS */
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002510
Victor Stinnerd6f85422010-05-05 23:33:33 +00002511 if (!PyArg_ParseTuple(args, "et|i:mkdir",
2512 Py_FileSystemDefaultEncoding, &path, &mode))
2513 return NULL;
2514 Py_BEGIN_ALLOW_THREADS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002515#if ( defined(__WATCOMC__) || defined(PYCC_VACPP) ) && !defined(__QNX__)
Victor Stinnerd6f85422010-05-05 23:33:33 +00002516 res = mkdir(path);
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002517#else
Victor Stinnerd6f85422010-05-05 23:33:33 +00002518 res = mkdir(path, mode);
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002519#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00002520 Py_END_ALLOW_THREADS
2521 if (res < 0)
2522 return posix_error_with_allocated_filename(path);
2523 PyMem_Free(path);
2524 Py_INCREF(Py_None);
2525 return Py_None;
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002526#endif /* MS_WINDOWS */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002527}
2528
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002529
Neal Norwitz1818ed72006-03-26 00:29:48 +00002530/* sys/resource.h is needed for at least: wait3(), wait4(), broken nice. */
2531#if defined(HAVE_SYS_RESOURCE_H)
Thomas Wouterse38b2f12001-07-11 22:35:31 +00002532#include <sys/resource.h>
2533#endif
Thomas Wouterse38b2f12001-07-11 22:35:31 +00002534
Neal Norwitz1818ed72006-03-26 00:29:48 +00002535
2536#ifdef HAVE_NICE
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002537PyDoc_STRVAR(posix_nice__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002538"nice(inc) -> new_priority\n\n\
2539Decrease the priority of process by inc and return the new priority.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002540
Barry Warsaw53699e91996-12-10 23:23:01 +00002541static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002542posix_nice(PyObject *self, PyObject *args)
Guido van Rossum775f4da1993-01-09 17:18:52 +00002543{
Victor Stinnerd6f85422010-05-05 23:33:33 +00002544 int increment, value;
Guido van Rossum775f4da1993-01-09 17:18:52 +00002545
Victor Stinnerd6f85422010-05-05 23:33:33 +00002546 if (!PyArg_ParseTuple(args, "i:nice", &increment))
2547 return NULL;
Thomas Woutersc2c12dc2001-07-11 14:45:34 +00002548
Victor Stinnerd6f85422010-05-05 23:33:33 +00002549 /* There are two flavours of 'nice': one that returns the new
2550 priority (as required by almost all standards out there) and the
2551 Linux/FreeBSD/BSDI one, which returns '0' on success and advices
2552 the use of getpriority() to get the new priority.
Tim Peters5aa91602002-01-30 05:46:57 +00002553
Victor Stinnerd6f85422010-05-05 23:33:33 +00002554 If we are of the nice family that returns the new priority, we
2555 need to clear errno before the call, and check if errno is filled
2556 before calling posix_error() on a returnvalue of -1, because the
2557 -1 may be the actual new priority! */
Thomas Woutersc2c12dc2001-07-11 14:45:34 +00002558
Victor Stinnerd6f85422010-05-05 23:33:33 +00002559 errno = 0;
2560 value = nice(increment);
Thomas Wouterse38b2f12001-07-11 22:35:31 +00002561#if defined(HAVE_BROKEN_NICE) && defined(HAVE_GETPRIORITY)
Victor Stinnerd6f85422010-05-05 23:33:33 +00002562 if (value == 0)
2563 value = getpriority(PRIO_PROCESS, 0);
Thomas Woutersc2c12dc2001-07-11 14:45:34 +00002564#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00002565 if (value == -1 && errno != 0)
2566 /* either nice() or getpriority() returned an error */
2567 return posix_error();
2568 return PyInt_FromLong((long) value);
Guido van Rossum775f4da1993-01-09 17:18:52 +00002569}
Guido van Rossumb6775db1994-08-01 11:34:53 +00002570#endif /* HAVE_NICE */
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002571
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002572PyDoc_STRVAR(posix_rename__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002573"rename(old, new)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002574Rename a file or directory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002575
Barry Warsaw53699e91996-12-10 23:23:01 +00002576static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002577posix_rename(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002578{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002579#ifdef MS_WINDOWS
Victor Stinnerd6f85422010-05-05 23:33:33 +00002580 PyObject *o1, *o2;
2581 char *p1, *p2;
2582 BOOL result;
2583 if (!PyArg_ParseTuple(args, "OO:rename", &o1, &o2))
2584 goto error;
2585 if (!convert_to_unicode(&o1))
2586 goto error;
2587 if (!convert_to_unicode(&o2)) {
2588 Py_DECREF(o1);
2589 goto error;
2590 }
2591 Py_BEGIN_ALLOW_THREADS
2592 result = MoveFileW(PyUnicode_AsUnicode(o1),
2593 PyUnicode_AsUnicode(o2));
2594 Py_END_ALLOW_THREADS
2595 Py_DECREF(o1);
2596 Py_DECREF(o2);
2597 if (!result)
2598 return win32_error("rename", NULL);
2599 Py_INCREF(Py_None);
2600 return Py_None;
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00002601error:
Victor Stinnerd6f85422010-05-05 23:33:33 +00002602 PyErr_Clear();
2603 if (!PyArg_ParseTuple(args, "ss:rename", &p1, &p2))
2604 return NULL;
2605 Py_BEGIN_ALLOW_THREADS
2606 result = MoveFileA(p1, p2);
2607 Py_END_ALLOW_THREADS
2608 if (!result)
2609 return win32_error("rename", NULL);
2610 Py_INCREF(Py_None);
2611 return Py_None;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002612#else
Victor Stinnerd6f85422010-05-05 23:33:33 +00002613 return posix_2str(args, "etet:rename", rename);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002614#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002615}
2616
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002617
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002618PyDoc_STRVAR(posix_rmdir__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002619"rmdir(path)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002620Remove a directory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002621
Barry Warsaw53699e91996-12-10 23:23:01 +00002622static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002623posix_rmdir(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002624{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002625#ifdef MS_WINDOWS
Victor Stinnerd6f85422010-05-05 23:33:33 +00002626 return win32_1str(args, "rmdir", "s:rmdir", RemoveDirectoryA, "U:rmdir", RemoveDirectoryW);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002627#else
Victor Stinnerd6f85422010-05-05 23:33:33 +00002628 return posix_1str(args, "et:rmdir", rmdir);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002629#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002630}
2631
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002632
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002633PyDoc_STRVAR(posix_stat__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002634"stat(path) -> stat result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002635Perform a stat system call on the given path.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002636
Barry Warsaw53699e91996-12-10 23:23:01 +00002637static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002638posix_stat(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002639{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002640#ifdef MS_WINDOWS
Victor Stinnerd6f85422010-05-05 23:33:33 +00002641 return posix_do_stat(self, args, "et:stat", STAT, "U:stat", win32_wstat);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002642#else
Victor Stinnerd6f85422010-05-05 23:33:33 +00002643 return posix_do_stat(self, args, "et:stat", STAT, NULL, NULL);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002644#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002645}
2646
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002647
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002648#ifdef HAVE_SYSTEM
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002649PyDoc_STRVAR(posix_system__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002650"system(command) -> exit_status\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002651Execute the command (a string) in a subshell.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002652
Barry Warsaw53699e91996-12-10 23:23:01 +00002653static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002654posix_system(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002655{
Victor Stinnerd6f85422010-05-05 23:33:33 +00002656 char *command;
2657 long sts;
2658 if (!PyArg_ParseTuple(args, "s:system", &command))
2659 return NULL;
2660 Py_BEGIN_ALLOW_THREADS
2661 sts = system(command);
2662 Py_END_ALLOW_THREADS
2663 return PyInt_FromLong(sts);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002664}
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002665#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002666
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002667
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002668PyDoc_STRVAR(posix_umask__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002669"umask(new_mask) -> old_mask\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002670Set the current numeric umask and return the previous umask.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002671
Barry Warsaw53699e91996-12-10 23:23:01 +00002672static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002673posix_umask(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002674{
Victor Stinnerd6f85422010-05-05 23:33:33 +00002675 int i;
2676 if (!PyArg_ParseTuple(args, "i:umask", &i))
2677 return NULL;
2678 i = (int)umask(i);
2679 if (i < 0)
2680 return posix_error();
2681 return PyInt_FromLong((long)i);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002682}
2683
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002684
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002685PyDoc_STRVAR(posix_unlink__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002686"unlink(path)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002687Remove a file (same as remove(path)).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002688
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002689PyDoc_STRVAR(posix_remove__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002690"remove(path)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002691Remove a file (same as unlink(path)).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002692
Barry Warsaw53699e91996-12-10 23:23:01 +00002693static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002694posix_unlink(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002695{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002696#ifdef MS_WINDOWS
Victor Stinnerd6f85422010-05-05 23:33:33 +00002697 return win32_1str(args, "remove", "s:remove", DeleteFileA, "U:remove", DeleteFileW);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002698#else
Victor Stinnerd6f85422010-05-05 23:33:33 +00002699 return posix_1str(args, "et:remove", unlink);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002700#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002701}
2702
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002703
Guido van Rossumb6775db1994-08-01 11:34:53 +00002704#ifdef HAVE_UNAME
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002705PyDoc_STRVAR(posix_uname__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002706"uname() -> (sysname, nodename, release, version, machine)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002707Return a tuple identifying the current operating system.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002708
Barry Warsaw53699e91996-12-10 23:23:01 +00002709static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00002710posix_uname(PyObject *self, PyObject *noargs)
Guido van Rossumc39de5f1992-02-05 11:15:54 +00002711{
Victor Stinnerd6f85422010-05-05 23:33:33 +00002712 struct utsname u;
2713 int res;
Neal Norwitze241ce82003-02-17 18:17:05 +00002714
Victor Stinnerd6f85422010-05-05 23:33:33 +00002715 Py_BEGIN_ALLOW_THREADS
2716 res = uname(&u);
2717 Py_END_ALLOW_THREADS
2718 if (res < 0)
2719 return posix_error();
2720 return Py_BuildValue("(sssss)",
2721 u.sysname,
2722 u.nodename,
2723 u.release,
2724 u.version,
2725 u.machine);
Guido van Rossumc39de5f1992-02-05 11:15:54 +00002726}
Guido van Rossumb6775db1994-08-01 11:34:53 +00002727#endif /* HAVE_UNAME */
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002728
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002729static int
2730extract_time(PyObject *t, long* sec, long* usec)
2731{
Victor Stinnerd6f85422010-05-05 23:33:33 +00002732 long intval;
2733 if (PyFloat_Check(t)) {
2734 double tval = PyFloat_AsDouble(t);
2735 PyObject *intobj = Py_TYPE(t)->tp_as_number->nb_int(t);
2736 if (!intobj)
2737 return -1;
2738 intval = PyInt_AsLong(intobj);
2739 Py_DECREF(intobj);
2740 if (intval == -1 && PyErr_Occurred())
2741 return -1;
2742 *sec = intval;
2743 *usec = (long)((tval - intval) * 1e6); /* can't exceed 1000000 */
2744 if (*usec < 0)
2745 /* If rounding gave us a negative number,
2746 truncate. */
2747 *usec = 0;
Martin v. Löwis076b2092002-09-10 15:04:41 +00002748 return 0;
Victor Stinnerd6f85422010-05-05 23:33:33 +00002749 }
2750 intval = PyInt_AsLong(t);
2751 if (intval == -1 && PyErr_Occurred())
2752 return -1;
2753 *sec = intval;
2754 *usec = 0;
2755 return 0;
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002756}
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002757
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002758PyDoc_STRVAR(posix_utime__doc__,
Georg Brandl9e5b5e42006-05-17 14:18:20 +00002759"utime(path, (atime, mtime))\n\
Fred Drakef7ce04d2002-06-20 18:31:21 +00002760utime(path, None)\n\n\
Barry Warsaw3cef8562000-05-01 16:17:24 +00002761Set the access and modified time of the file to the given values. If the\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002762second form is used, set the access and modified times to the current time.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002763
Barry Warsaw53699e91996-12-10 23:23:01 +00002764static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002765posix_utime(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002766{
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002767#ifdef MS_WINDOWS
Victor Stinnerd6f85422010-05-05 23:33:33 +00002768 PyObject *arg;
2769 PyUnicodeObject *obwpath;
2770 wchar_t *wpath = NULL;
2771 char *apath = NULL;
2772 HANDLE hFile;
2773 long atimesec, mtimesec, ausec, musec;
2774 FILETIME atime, mtime;
2775 PyObject *result = NULL;
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002776
Victor Stinnerd6f85422010-05-05 23:33:33 +00002777 if (PyArg_ParseTuple(args, "UO|:utime", &obwpath, &arg)) {
2778 wpath = PyUnicode_AS_UNICODE(obwpath);
2779 Py_BEGIN_ALLOW_THREADS
2780 hFile = CreateFileW(wpath, FILE_WRITE_ATTRIBUTES, 0,
2781 NULL, OPEN_EXISTING,
2782 FILE_FLAG_BACKUP_SEMANTICS, NULL);
2783 Py_END_ALLOW_THREADS
2784 if (hFile == INVALID_HANDLE_VALUE)
2785 return win32_error_unicode("utime", wpath);
2786 } else
2787 /* Drop the argument parsing error as narrow strings
2788 are also valid. */
2789 PyErr_Clear();
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00002790
Victor Stinnerd6f85422010-05-05 23:33:33 +00002791 if (!wpath) {
2792 if (!PyArg_ParseTuple(args, "etO:utime",
2793 Py_FileSystemDefaultEncoding, &apath, &arg))
2794 return NULL;
2795 Py_BEGIN_ALLOW_THREADS
2796 hFile = CreateFileA(apath, FILE_WRITE_ATTRIBUTES, 0,
2797 NULL, OPEN_EXISTING,
2798 FILE_FLAG_BACKUP_SEMANTICS, NULL);
2799 Py_END_ALLOW_THREADS
2800 if (hFile == INVALID_HANDLE_VALUE) {
2801 win32_error("utime", apath);
2802 PyMem_Free(apath);
2803 return NULL;
2804 }
2805 PyMem_Free(apath);
2806 }
2807
2808 if (arg == Py_None) {
2809 SYSTEMTIME now;
2810 GetSystemTime(&now);
2811 if (!SystemTimeToFileTime(&now, &mtime) ||
2812 !SystemTimeToFileTime(&now, &atime)) {
2813 win32_error("utime", NULL);
2814 goto done;
Stefan Krah93f7a322010-11-26 17:35:50 +00002815 }
Victor Stinnerd6f85422010-05-05 23:33:33 +00002816 }
2817 else if (!PyTuple_Check(arg) || PyTuple_Size(arg) != 2) {
2818 PyErr_SetString(PyExc_TypeError,
2819 "utime() arg 2 must be a tuple (atime, mtime)");
2820 goto done;
2821 }
2822 else {
2823 if (extract_time(PyTuple_GET_ITEM(arg, 0),
2824 &atimesec, &ausec) == -1)
2825 goto done;
2826 time_t_to_FILE_TIME(atimesec, 1000*ausec, &atime);
2827 if (extract_time(PyTuple_GET_ITEM(arg, 1),
2828 &mtimesec, &musec) == -1)
2829 goto done;
2830 time_t_to_FILE_TIME(mtimesec, 1000*musec, &mtime);
2831 }
2832 if (!SetFileTime(hFile, NULL, &atime, &mtime)) {
2833 /* Avoid putting the file name into the error here,
2834 as that may confuse the user into believing that
2835 something is wrong with the file, when it also
2836 could be the time stamp that gives a problem. */
2837 win32_error("utime", NULL);
2838 }
2839 Py_INCREF(Py_None);
2840 result = Py_None;
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002841done:
Victor Stinnerd6f85422010-05-05 23:33:33 +00002842 CloseHandle(hFile);
2843 return result;
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002844#else /* MS_WINDOWS */
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002845
Victor Stinnerd6f85422010-05-05 23:33:33 +00002846 char *path = NULL;
2847 long atime, mtime, ausec, musec;
2848 int res;
2849 PyObject* arg;
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002850
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002851#if defined(HAVE_UTIMES)
Victor Stinnerd6f85422010-05-05 23:33:33 +00002852 struct timeval buf[2];
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002853#define ATIME buf[0].tv_sec
2854#define MTIME buf[1].tv_sec
2855#elif defined(HAVE_UTIME_H)
Guido van Rossum6d8841c1997-08-14 19:57:39 +00002856/* XXX should define struct utimbuf instead, above */
Victor Stinnerd6f85422010-05-05 23:33:33 +00002857 struct utimbuf buf;
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002858#define ATIME buf.actime
2859#define MTIME buf.modtime
2860#define UTIME_ARG &buf
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002861#else /* HAVE_UTIMES */
Victor Stinnerd6f85422010-05-05 23:33:33 +00002862 time_t buf[2];
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002863#define ATIME buf[0]
2864#define MTIME buf[1]
2865#define UTIME_ARG buf
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002866#endif /* HAVE_UTIMES */
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002867
Mark Hammond817c9292003-12-03 01:22:38 +00002868
Victor Stinnerd6f85422010-05-05 23:33:33 +00002869 if (!PyArg_ParseTuple(args, "etO:utime",
2870 Py_FileSystemDefaultEncoding, &path, &arg))
2871 return NULL;
2872 if (arg == Py_None) {
2873 /* optional time values not given */
2874 Py_BEGIN_ALLOW_THREADS
2875 res = utime(path, NULL);
2876 Py_END_ALLOW_THREADS
2877 }
2878 else if (!PyTuple_Check(arg) || PyTuple_Size(arg) != 2) {
2879 PyErr_SetString(PyExc_TypeError,
2880 "utime() arg 2 must be a tuple (atime, mtime)");
2881 PyMem_Free(path);
2882 return NULL;
2883 }
2884 else {
2885 if (extract_time(PyTuple_GET_ITEM(arg, 0),
2886 &atime, &ausec) == -1) {
2887 PyMem_Free(path);
2888 return NULL;
2889 }
2890 if (extract_time(PyTuple_GET_ITEM(arg, 1),
2891 &mtime, &musec) == -1) {
2892 PyMem_Free(path);
2893 return NULL;
2894 }
2895 ATIME = atime;
2896 MTIME = mtime;
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002897#ifdef HAVE_UTIMES
Victor Stinnerd6f85422010-05-05 23:33:33 +00002898 buf[0].tv_usec = ausec;
2899 buf[1].tv_usec = musec;
2900 Py_BEGIN_ALLOW_THREADS
2901 res = utimes(path, buf);
2902 Py_END_ALLOW_THREADS
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002903#else
Victor Stinnerd6f85422010-05-05 23:33:33 +00002904 Py_BEGIN_ALLOW_THREADS
2905 res = utime(path, UTIME_ARG);
2906 Py_END_ALLOW_THREADS
Mark Hammond817c9292003-12-03 01:22:38 +00002907#endif /* HAVE_UTIMES */
Victor Stinnerd6f85422010-05-05 23:33:33 +00002908 }
2909 if (res < 0) {
2910 return posix_error_with_allocated_filename(path);
2911 }
2912 PyMem_Free(path);
2913 Py_INCREF(Py_None);
2914 return Py_None;
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002915#undef UTIME_ARG
2916#undef ATIME
2917#undef MTIME
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002918#endif /* MS_WINDOWS */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002919}
2920
Guido van Rossum85e3b011991-06-03 12:42:10 +00002921
Guido van Rossum3b066191991-06-04 19:40:25 +00002922/* Process operations */
Guido van Rossum85e3b011991-06-03 12:42:10 +00002923
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002924PyDoc_STRVAR(posix__exit__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002925"_exit(status)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002926Exit to the system with specified status, without normal exit processing.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002927
Barry Warsaw53699e91996-12-10 23:23:01 +00002928static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002929posix__exit(PyObject *self, PyObject *args)
Guido van Rossum85e3b011991-06-03 12:42:10 +00002930{
Victor Stinnerd6f85422010-05-05 23:33:33 +00002931 int sts;
2932 if (!PyArg_ParseTuple(args, "i:_exit", &sts))
2933 return NULL;
2934 _exit(sts);
2935 return NULL; /* Make gcc -Wall happy */
Guido van Rossum85e3b011991-06-03 12:42:10 +00002936}
2937
Martin v. Löwis114619e2002-10-07 06:44:21 +00002938#if defined(HAVE_EXECV) || defined(HAVE_SPAWNV)
2939static void
Martin v. Löwis725507b2006-03-07 12:08:51 +00002940free_string_array(char **array, Py_ssize_t count)
Martin v. Löwis114619e2002-10-07 06:44:21 +00002941{
Victor Stinnerd6f85422010-05-05 23:33:33 +00002942 Py_ssize_t i;
2943 for (i = 0; i < count; i++)
2944 PyMem_Free(array[i]);
2945 PyMem_DEL(array);
Martin v. Löwis114619e2002-10-07 06:44:21 +00002946}
2947#endif
2948
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002949
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002950#ifdef HAVE_EXECV
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002951PyDoc_STRVAR(posix_execv__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002952"execv(path, args)\n\n\
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002953Execute an executable path with arguments, replacing current process.\n\
2954\n\
Victor Stinnerd6f85422010-05-05 23:33:33 +00002955 path: path of executable file\n\
2956 args: tuple or list of strings");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002957
Barry Warsaw53699e91996-12-10 23:23:01 +00002958static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002959posix_execv(PyObject *self, PyObject *args)
Guido van Rossum85e3b011991-06-03 12:42:10 +00002960{
Victor Stinnerd6f85422010-05-05 23:33:33 +00002961 char *path;
2962 PyObject *argv;
2963 char **argvlist;
2964 Py_ssize_t i, argc;
2965 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Guido van Rossum85e3b011991-06-03 12:42:10 +00002966
Victor Stinnerd6f85422010-05-05 23:33:33 +00002967 /* execv has two arguments: (path, argv), where
2968 argv is a list or tuple of strings. */
Guido van Rossum85e3b011991-06-03 12:42:10 +00002969
Victor Stinnerd6f85422010-05-05 23:33:33 +00002970 if (!PyArg_ParseTuple(args, "etO:execv",
2971 Py_FileSystemDefaultEncoding,
2972 &path, &argv))
2973 return NULL;
2974 if (PyList_Check(argv)) {
2975 argc = PyList_Size(argv);
2976 getitem = PyList_GetItem;
2977 }
2978 else if (PyTuple_Check(argv)) {
2979 argc = PyTuple_Size(argv);
2980 getitem = PyTuple_GetItem;
2981 }
2982 else {
2983 PyErr_SetString(PyExc_TypeError, "execv() arg 2 must be a tuple or list");
2984 PyMem_Free(path);
2985 return NULL;
2986 }
2987 if (argc < 1) {
2988 PyErr_SetString(PyExc_ValueError, "execv() arg 2 must not be empty");
2989 PyMem_Free(path);
2990 return NULL;
2991 }
Guido van Rossum50422b42000-04-26 20:34:28 +00002992
Victor Stinnerd6f85422010-05-05 23:33:33 +00002993 argvlist = PyMem_NEW(char *, argc+1);
2994 if (argvlist == NULL) {
2995 PyMem_Free(path);
2996 return PyErr_NoMemory();
2997 }
2998 for (i = 0; i < argc; i++) {
2999 if (!PyArg_Parse((*getitem)(argv, i), "et",
3000 Py_FileSystemDefaultEncoding,
3001 &argvlist[i])) {
3002 free_string_array(argvlist, i);
3003 PyErr_SetString(PyExc_TypeError,
3004 "execv() arg 2 must contain only strings");
3005 PyMem_Free(path);
3006 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00003007
Victor Stinnerd6f85422010-05-05 23:33:33 +00003008 }
3009 }
3010 argvlist[argc] = NULL;
Guido van Rossum85e3b011991-06-03 12:42:10 +00003011
Victor Stinnerd6f85422010-05-05 23:33:33 +00003012 execv(path, argvlist);
Guido van Rossumb6775db1994-08-01 11:34:53 +00003013
Victor Stinnerd6f85422010-05-05 23:33:33 +00003014 /* If we get here it's definitely an error */
Guido van Rossum85e3b011991-06-03 12:42:10 +00003015
Victor Stinnerd6f85422010-05-05 23:33:33 +00003016 free_string_array(argvlist, argc);
3017 PyMem_Free(path);
3018 return posix_error();
Guido van Rossum85e3b011991-06-03 12:42:10 +00003019}
3020
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003021
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003022PyDoc_STRVAR(posix_execve__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003023"execve(path, args, env)\n\n\
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003024Execute a path with arguments and environment, replacing current process.\n\
3025\n\
Victor Stinnerd6f85422010-05-05 23:33:33 +00003026 path: path of executable file\n\
3027 args: tuple or list of arguments\n\
3028 env: dictionary of strings mapping to strings");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003029
Barry Warsaw53699e91996-12-10 23:23:01 +00003030static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00003031posix_execve(PyObject *self, PyObject *args)
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003032{
Victor Stinnerd6f85422010-05-05 23:33:33 +00003033 char *path;
3034 PyObject *argv, *env;
3035 char **argvlist;
3036 char **envlist;
3037 PyObject *key, *val, *keys=NULL, *vals=NULL;
3038 Py_ssize_t i, pos, argc, envc;
3039 PyObject *(*getitem)(PyObject *, Py_ssize_t);
3040 Py_ssize_t lastarg = 0;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003041
Victor Stinnerd6f85422010-05-05 23:33:33 +00003042 /* execve has three arguments: (path, argv, env), where
3043 argv is a list or tuple of strings and env is a dictionary
3044 like posix.environ. */
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003045
Victor Stinnerd6f85422010-05-05 23:33:33 +00003046 if (!PyArg_ParseTuple(args, "etOO:execve",
3047 Py_FileSystemDefaultEncoding,
3048 &path, &argv, &env))
3049 return NULL;
3050 if (PyList_Check(argv)) {
3051 argc = PyList_Size(argv);
3052 getitem = PyList_GetItem;
3053 }
3054 else if (PyTuple_Check(argv)) {
3055 argc = PyTuple_Size(argv);
3056 getitem = PyTuple_GetItem;
3057 }
3058 else {
3059 PyErr_SetString(PyExc_TypeError,
3060 "execve() arg 2 must be a tuple or list");
3061 goto fail_0;
3062 }
3063 if (!PyMapping_Check(env)) {
3064 PyErr_SetString(PyExc_TypeError,
3065 "execve() arg 3 must be a mapping object");
3066 goto fail_0;
3067 }
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003068
Victor Stinnerd6f85422010-05-05 23:33:33 +00003069 argvlist = PyMem_NEW(char *, argc+1);
3070 if (argvlist == NULL) {
3071 PyErr_NoMemory();
3072 goto fail_0;
3073 }
3074 for (i = 0; i < argc; i++) {
3075 if (!PyArg_Parse((*getitem)(argv, i),
3076 "et;execve() arg 2 must contain only strings",
3077 Py_FileSystemDefaultEncoding,
3078 &argvlist[i]))
3079 {
3080 lastarg = i;
3081 goto fail_1;
3082 }
3083 }
3084 lastarg = argc;
3085 argvlist[argc] = NULL;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003086
Victor Stinnerd6f85422010-05-05 23:33:33 +00003087 i = PyMapping_Size(env);
3088 if (i < 0)
3089 goto fail_1;
3090 envlist = PyMem_NEW(char *, i + 1);
3091 if (envlist == NULL) {
3092 PyErr_NoMemory();
3093 goto fail_1;
3094 }
3095 envc = 0;
3096 keys = PyMapping_Keys(env);
3097 vals = PyMapping_Values(env);
3098 if (!keys || !vals)
3099 goto fail_2;
3100 if (!PyList_Check(keys) || !PyList_Check(vals)) {
3101 PyErr_SetString(PyExc_TypeError,
3102 "execve(): env.keys() or env.values() is not a list");
3103 goto fail_2;
3104 }
Tim Peters5aa91602002-01-30 05:46:57 +00003105
Victor Stinnerd6f85422010-05-05 23:33:33 +00003106 for (pos = 0; pos < i; pos++) {
3107 char *p, *k, *v;
3108 size_t len;
Barry Warsaw5ed19dc1997-01-29 15:08:24 +00003109
Victor Stinnerd6f85422010-05-05 23:33:33 +00003110 key = PyList_GetItem(keys, pos);
3111 val = PyList_GetItem(vals, pos);
3112 if (!key || !val)
3113 goto fail_2;
Tim Peters5aa91602002-01-30 05:46:57 +00003114
Victor Stinnerd6f85422010-05-05 23:33:33 +00003115 if (!PyArg_Parse(
3116 key,
3117 "s;execve() arg 3 contains a non-string key",
3118 &k) ||
3119 !PyArg_Parse(
3120 val,
3121 "s;execve() arg 3 contains a non-string value",
3122 &v))
3123 {
3124 goto fail_2;
3125 }
Guido van Rossumd48f2521997-12-05 22:19:34 +00003126
3127#if defined(PYOS_OS2)
3128 /* Omit Pseudo-Env Vars that Would Confuse Programs if Passed On */
3129 if (stricmp(k, "BEGINLIBPATH") != 0 && stricmp(k, "ENDLIBPATH") != 0) {
3130#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00003131 len = PyString_Size(key) + PyString_Size(val) + 2;
3132 p = PyMem_NEW(char, len);
3133 if (p == NULL) {
3134 PyErr_NoMemory();
3135 goto fail_2;
3136 }
3137 PyOS_snprintf(p, len, "%s=%s", k, v);
3138 envlist[envc++] = p;
Guido van Rossumd48f2521997-12-05 22:19:34 +00003139#if defined(PYOS_OS2)
Victor Stinnerd6f85422010-05-05 23:33:33 +00003140 }
Guido van Rossumd48f2521997-12-05 22:19:34 +00003141#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00003142 }
3143 envlist[envc] = 0;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003144
Victor Stinnerd6f85422010-05-05 23:33:33 +00003145 execve(path, argvlist, envlist);
Tim Peters5aa91602002-01-30 05:46:57 +00003146
Victor Stinnerd6f85422010-05-05 23:33:33 +00003147 /* If we get here it's definitely an error */
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003148
Victor Stinnerd6f85422010-05-05 23:33:33 +00003149 (void) posix_error();
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003150
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003151 fail_2:
Victor Stinnerd6f85422010-05-05 23:33:33 +00003152 while (--envc >= 0)
3153 PyMem_DEL(envlist[envc]);
3154 PyMem_DEL(envlist);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003155 fail_1:
Victor Stinnerd6f85422010-05-05 23:33:33 +00003156 free_string_array(argvlist, lastarg);
3157 Py_XDECREF(vals);
3158 Py_XDECREF(keys);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003159 fail_0:
Victor Stinnerd6f85422010-05-05 23:33:33 +00003160 PyMem_Free(path);
3161 return NULL;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003162}
Guido van Rossuma4916fa1996-05-23 22:58:55 +00003163#endif /* HAVE_EXECV */
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003164
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003165
Guido van Rossuma1065681999-01-25 23:20:23 +00003166#ifdef HAVE_SPAWNV
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003167PyDoc_STRVAR(posix_spawnv__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003168"spawnv(mode, path, args)\n\n\
Tim Peters25059d32001-12-07 20:35:43 +00003169Execute the program 'path' in a new process.\n\
Guido van Rossuma1065681999-01-25 23:20:23 +00003170\n\
Victor Stinnerd6f85422010-05-05 23:33:33 +00003171 mode: mode of process creation\n\
3172 path: path of executable file\n\
3173 args: tuple or list of strings");
Guido van Rossuma1065681999-01-25 23:20:23 +00003174
3175static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00003176posix_spawnv(PyObject *self, PyObject *args)
Guido van Rossuma1065681999-01-25 23:20:23 +00003177{
Victor Stinnerd6f85422010-05-05 23:33:33 +00003178 char *path;
3179 PyObject *argv;
3180 char **argvlist;
3181 int mode, i;
3182 Py_ssize_t argc;
3183 Py_intptr_t spawnval;
3184 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Guido van Rossuma1065681999-01-25 23:20:23 +00003185
Victor Stinnerd6f85422010-05-05 23:33:33 +00003186 /* spawnv has three arguments: (mode, path, argv), where
3187 argv is a list or tuple of strings. */
Guido van Rossuma1065681999-01-25 23:20:23 +00003188
Victor Stinnerd6f85422010-05-05 23:33:33 +00003189 if (!PyArg_ParseTuple(args, "ietO:spawnv", &mode,
3190 Py_FileSystemDefaultEncoding,
3191 &path, &argv))
3192 return NULL;
3193 if (PyList_Check(argv)) {
3194 argc = PyList_Size(argv);
3195 getitem = PyList_GetItem;
3196 }
3197 else if (PyTuple_Check(argv)) {
3198 argc = PyTuple_Size(argv);
3199 getitem = PyTuple_GetItem;
3200 }
3201 else {
3202 PyErr_SetString(PyExc_TypeError,
3203 "spawnv() arg 2 must be a tuple or list");
3204 PyMem_Free(path);
3205 return NULL;
3206 }
Guido van Rossuma1065681999-01-25 23:20:23 +00003207
Victor Stinnerd6f85422010-05-05 23:33:33 +00003208 argvlist = PyMem_NEW(char *, argc+1);
3209 if (argvlist == NULL) {
3210 PyMem_Free(path);
3211 return PyErr_NoMemory();
3212 }
3213 for (i = 0; i < argc; i++) {
3214 if (!PyArg_Parse((*getitem)(argv, i), "et",
3215 Py_FileSystemDefaultEncoding,
3216 &argvlist[i])) {
3217 free_string_array(argvlist, i);
3218 PyErr_SetString(
3219 PyExc_TypeError,
3220 "spawnv() arg 2 must contain only strings");
3221 PyMem_Free(path);
3222 return NULL;
3223 }
3224 }
3225 argvlist[argc] = NULL;
Guido van Rossuma1065681999-01-25 23:20:23 +00003226
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00003227#if defined(PYOS_OS2) && defined(PYCC_GCC)
Victor Stinnerd6f85422010-05-05 23:33:33 +00003228 Py_BEGIN_ALLOW_THREADS
3229 spawnval = spawnv(mode, path, argvlist);
3230 Py_END_ALLOW_THREADS
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00003231#else
Victor Stinnerd6f85422010-05-05 23:33:33 +00003232 if (mode == _OLD_P_OVERLAY)
3233 mode = _P_OVERLAY;
Tim Peters5aa91602002-01-30 05:46:57 +00003234
Victor Stinnerd6f85422010-05-05 23:33:33 +00003235 Py_BEGIN_ALLOW_THREADS
3236 spawnval = _spawnv(mode, path, argvlist);
3237 Py_END_ALLOW_THREADS
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00003238#endif
Tim Peters5aa91602002-01-30 05:46:57 +00003239
Victor Stinnerd6f85422010-05-05 23:33:33 +00003240 free_string_array(argvlist, argc);
3241 PyMem_Free(path);
Guido van Rossuma1065681999-01-25 23:20:23 +00003242
Victor Stinnerd6f85422010-05-05 23:33:33 +00003243 if (spawnval == -1)
3244 return posix_error();
3245 else
Fredrik Lundhe25cfd82000-07-09 13:10:40 +00003246#if SIZEOF_LONG == SIZEOF_VOID_P
Victor Stinnerd6f85422010-05-05 23:33:33 +00003247 return Py_BuildValue("l", (long) spawnval);
Fred Drake699f3522000-06-29 21:12:41 +00003248#else
Victor Stinnerd6f85422010-05-05 23:33:33 +00003249 return Py_BuildValue("L", (PY_LONG_LONG) spawnval);
Fred Drake699f3522000-06-29 21:12:41 +00003250#endif
Guido van Rossuma1065681999-01-25 23:20:23 +00003251}
3252
3253
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003254PyDoc_STRVAR(posix_spawnve__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003255"spawnve(mode, path, args, env)\n\n\
Tim Peters25059d32001-12-07 20:35:43 +00003256Execute the program 'path' in a new process.\n\
Guido van Rossuma1065681999-01-25 23:20:23 +00003257\n\
Victor Stinnerd6f85422010-05-05 23:33:33 +00003258 mode: mode of process creation\n\
3259 path: path of executable file\n\
3260 args: tuple or list of arguments\n\
3261 env: dictionary of strings mapping to strings");
Guido van Rossuma1065681999-01-25 23:20:23 +00003262
3263static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00003264posix_spawnve(PyObject *self, PyObject *args)
Guido van Rossuma1065681999-01-25 23:20:23 +00003265{
Victor Stinnerd6f85422010-05-05 23:33:33 +00003266 char *path;
3267 PyObject *argv, *env;
3268 char **argvlist;
3269 char **envlist;
3270 PyObject *key, *val, *keys=NULL, *vals=NULL, *res=NULL;
3271 int mode, pos, envc;
3272 Py_ssize_t argc, i;
3273 Py_intptr_t spawnval;
3274 PyObject *(*getitem)(PyObject *, Py_ssize_t);
3275 Py_ssize_t lastarg = 0;
Guido van Rossuma1065681999-01-25 23:20:23 +00003276
Victor Stinnerd6f85422010-05-05 23:33:33 +00003277 /* spawnve has four arguments: (mode, path, argv, env), where
3278 argv is a list or tuple of strings and env is a dictionary
3279 like posix.environ. */
Guido van Rossuma1065681999-01-25 23:20:23 +00003280
Victor Stinnerd6f85422010-05-05 23:33:33 +00003281 if (!PyArg_ParseTuple(args, "ietOO:spawnve", &mode,
3282 Py_FileSystemDefaultEncoding,
3283 &path, &argv, &env))
3284 return NULL;
3285 if (PyList_Check(argv)) {
3286 argc = PyList_Size(argv);
3287 getitem = PyList_GetItem;
3288 }
3289 else if (PyTuple_Check(argv)) {
3290 argc = PyTuple_Size(argv);
3291 getitem = PyTuple_GetItem;
3292 }
3293 else {
3294 PyErr_SetString(PyExc_TypeError,
3295 "spawnve() arg 2 must be a tuple or list");
3296 goto fail_0;
3297 }
3298 if (!PyMapping_Check(env)) {
3299 PyErr_SetString(PyExc_TypeError,
3300 "spawnve() arg 3 must be a mapping object");
3301 goto fail_0;
3302 }
Guido van Rossuma1065681999-01-25 23:20:23 +00003303
Victor Stinnerd6f85422010-05-05 23:33:33 +00003304 argvlist = PyMem_NEW(char *, argc+1);
3305 if (argvlist == NULL) {
3306 PyErr_NoMemory();
3307 goto fail_0;
3308 }
3309 for (i = 0; i < argc; i++) {
3310 if (!PyArg_Parse((*getitem)(argv, i),
3311 "et;spawnve() arg 2 must contain only strings",
3312 Py_FileSystemDefaultEncoding,
3313 &argvlist[i]))
3314 {
3315 lastarg = i;
3316 goto fail_1;
3317 }
3318 }
3319 lastarg = argc;
3320 argvlist[argc] = NULL;
Guido van Rossuma1065681999-01-25 23:20:23 +00003321
Victor Stinnerd6f85422010-05-05 23:33:33 +00003322 i = PyMapping_Size(env);
3323 if (i < 0)
3324 goto fail_1;
3325 envlist = PyMem_NEW(char *, i + 1);
3326 if (envlist == NULL) {
3327 PyErr_NoMemory();
3328 goto fail_1;
3329 }
3330 envc = 0;
3331 keys = PyMapping_Keys(env);
3332 vals = PyMapping_Values(env);
3333 if (!keys || !vals)
3334 goto fail_2;
3335 if (!PyList_Check(keys) || !PyList_Check(vals)) {
3336 PyErr_SetString(PyExc_TypeError,
3337 "spawnve(): env.keys() or env.values() is not a list");
3338 goto fail_2;
3339 }
Tim Peters5aa91602002-01-30 05:46:57 +00003340
Victor Stinnerd6f85422010-05-05 23:33:33 +00003341 for (pos = 0; pos < i; pos++) {
3342 char *p, *k, *v;
3343 size_t len;
Guido van Rossuma1065681999-01-25 23:20:23 +00003344
Victor Stinnerd6f85422010-05-05 23:33:33 +00003345 key = PyList_GetItem(keys, pos);
3346 val = PyList_GetItem(vals, pos);
3347 if (!key || !val)
3348 goto fail_2;
Tim Peters5aa91602002-01-30 05:46:57 +00003349
Victor Stinnerd6f85422010-05-05 23:33:33 +00003350 if (!PyArg_Parse(
3351 key,
3352 "s;spawnve() arg 3 contains a non-string key",
3353 &k) ||
3354 !PyArg_Parse(
3355 val,
3356 "s;spawnve() arg 3 contains a non-string value",
3357 &v))
3358 {
3359 goto fail_2;
3360 }
3361 len = PyString_Size(key) + PyString_Size(val) + 2;
3362 p = PyMem_NEW(char, len);
3363 if (p == NULL) {
3364 PyErr_NoMemory();
3365 goto fail_2;
3366 }
3367 PyOS_snprintf(p, len, "%s=%s", k, v);
3368 envlist[envc++] = p;
3369 }
3370 envlist[envc] = 0;
Guido van Rossuma1065681999-01-25 23:20:23 +00003371
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00003372#if defined(PYOS_OS2) && defined(PYCC_GCC)
Victor Stinnerd6f85422010-05-05 23:33:33 +00003373 Py_BEGIN_ALLOW_THREADS
3374 spawnval = spawnve(mode, path, argvlist, envlist);
3375 Py_END_ALLOW_THREADS
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00003376#else
Victor Stinnerd6f85422010-05-05 23:33:33 +00003377 if (mode == _OLD_P_OVERLAY)
3378 mode = _P_OVERLAY;
Tim Peters25059d32001-12-07 20:35:43 +00003379
Victor Stinnerd6f85422010-05-05 23:33:33 +00003380 Py_BEGIN_ALLOW_THREADS
3381 spawnval = _spawnve(mode, path, argvlist, envlist);
3382 Py_END_ALLOW_THREADS
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00003383#endif
Tim Peters25059d32001-12-07 20:35:43 +00003384
Victor Stinnerd6f85422010-05-05 23:33:33 +00003385 if (spawnval == -1)
3386 (void) posix_error();
3387 else
Fredrik Lundhe25cfd82000-07-09 13:10:40 +00003388#if SIZEOF_LONG == SIZEOF_VOID_P
Victor Stinnerd6f85422010-05-05 23:33:33 +00003389 res = Py_BuildValue("l", (long) spawnval);
Fred Drake699f3522000-06-29 21:12:41 +00003390#else
Victor Stinnerd6f85422010-05-05 23:33:33 +00003391 res = Py_BuildValue("L", (PY_LONG_LONG) spawnval);
Fred Drake699f3522000-06-29 21:12:41 +00003392#endif
Guido van Rossuma1065681999-01-25 23:20:23 +00003393
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003394 fail_2:
Victor Stinnerd6f85422010-05-05 23:33:33 +00003395 while (--envc >= 0)
3396 PyMem_DEL(envlist[envc]);
3397 PyMem_DEL(envlist);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003398 fail_1:
Victor Stinnerd6f85422010-05-05 23:33:33 +00003399 free_string_array(argvlist, lastarg);
3400 Py_XDECREF(vals);
3401 Py_XDECREF(keys);
Martin v. Löwis114619e2002-10-07 06:44:21 +00003402 fail_0:
Victor Stinnerd6f85422010-05-05 23:33:33 +00003403 PyMem_Free(path);
3404 return res;
Guido van Rossuma1065681999-01-25 23:20:23 +00003405}
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003406
3407/* OS/2 supports spawnvp & spawnvpe natively */
3408#if defined(PYOS_OS2)
3409PyDoc_STRVAR(posix_spawnvp__doc__,
3410"spawnvp(mode, file, args)\n\n\
3411Execute the program 'file' in a new process, using the environment\n\
3412search path to find the file.\n\
3413\n\
Victor Stinnerd6f85422010-05-05 23:33:33 +00003414 mode: mode of process creation\n\
3415 file: executable file name\n\
3416 args: tuple or list of strings");
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003417
3418static PyObject *
3419posix_spawnvp(PyObject *self, PyObject *args)
3420{
Victor Stinnerd6f85422010-05-05 23:33:33 +00003421 char *path;
3422 PyObject *argv;
3423 char **argvlist;
3424 int mode, i, argc;
3425 Py_intptr_t spawnval;
3426 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003427
Victor Stinnerd6f85422010-05-05 23:33:33 +00003428 /* spawnvp has three arguments: (mode, path, argv), where
3429 argv is a list or tuple of strings. */
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003430
Victor Stinnerd6f85422010-05-05 23:33:33 +00003431 if (!PyArg_ParseTuple(args, "ietO:spawnvp", &mode,
3432 Py_FileSystemDefaultEncoding,
3433 &path, &argv))
3434 return NULL;
3435 if (PyList_Check(argv)) {
3436 argc = PyList_Size(argv);
3437 getitem = PyList_GetItem;
3438 }
3439 else if (PyTuple_Check(argv)) {
3440 argc = PyTuple_Size(argv);
3441 getitem = PyTuple_GetItem;
3442 }
3443 else {
3444 PyErr_SetString(PyExc_TypeError,
3445 "spawnvp() arg 2 must be a tuple or list");
3446 PyMem_Free(path);
3447 return NULL;
3448 }
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003449
Victor Stinnerd6f85422010-05-05 23:33:33 +00003450 argvlist = PyMem_NEW(char *, argc+1);
3451 if (argvlist == NULL) {
3452 PyMem_Free(path);
3453 return PyErr_NoMemory();
3454 }
3455 for (i = 0; i < argc; i++) {
3456 if (!PyArg_Parse((*getitem)(argv, i), "et",
3457 Py_FileSystemDefaultEncoding,
3458 &argvlist[i])) {
3459 free_string_array(argvlist, i);
3460 PyErr_SetString(
3461 PyExc_TypeError,
3462 "spawnvp() arg 2 must contain only strings");
3463 PyMem_Free(path);
3464 return NULL;
3465 }
3466 }
3467 argvlist[argc] = NULL;
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003468
Victor Stinnerd6f85422010-05-05 23:33:33 +00003469 Py_BEGIN_ALLOW_THREADS
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003470#if defined(PYCC_GCC)
Victor Stinnerd6f85422010-05-05 23:33:33 +00003471 spawnval = spawnvp(mode, path, argvlist);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003472#else
Victor Stinnerd6f85422010-05-05 23:33:33 +00003473 spawnval = _spawnvp(mode, path, argvlist);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003474#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00003475 Py_END_ALLOW_THREADS
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003476
Victor Stinnerd6f85422010-05-05 23:33:33 +00003477 free_string_array(argvlist, argc);
3478 PyMem_Free(path);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003479
Victor Stinnerd6f85422010-05-05 23:33:33 +00003480 if (spawnval == -1)
3481 return posix_error();
3482 else
3483 return Py_BuildValue("l", (long) spawnval);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003484}
3485
3486
3487PyDoc_STRVAR(posix_spawnvpe__doc__,
3488"spawnvpe(mode, file, args, env)\n\n\
3489Execute the program 'file' in a new process, using the environment\n\
3490search path to find the file.\n\
3491\n\
Victor Stinnerd6f85422010-05-05 23:33:33 +00003492 mode: mode of process creation\n\
3493 file: executable file name\n\
3494 args: tuple or list of arguments\n\
3495 env: dictionary of strings mapping to strings");
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003496
3497static PyObject *
3498posix_spawnvpe(PyObject *self, PyObject *args)
3499{
Victor Stinnerd6f85422010-05-05 23:33:33 +00003500 char *path;
3501 PyObject *argv, *env;
3502 char **argvlist;
3503 char **envlist;
3504 PyObject *key, *val, *keys=NULL, *vals=NULL, *res=NULL;
3505 int mode, i, pos, argc, envc;
3506 Py_intptr_t spawnval;
3507 PyObject *(*getitem)(PyObject *, Py_ssize_t);
3508 int lastarg = 0;
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003509
Victor Stinnerd6f85422010-05-05 23:33:33 +00003510 /* spawnvpe has four arguments: (mode, path, argv, env), where
3511 argv is a list or tuple of strings and env is a dictionary
3512 like posix.environ. */
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003513
Victor Stinnerd6f85422010-05-05 23:33:33 +00003514 if (!PyArg_ParseTuple(args, "ietOO:spawnvpe", &mode,
3515 Py_FileSystemDefaultEncoding,
3516 &path, &argv, &env))
3517 return NULL;
3518 if (PyList_Check(argv)) {
3519 argc = PyList_Size(argv);
3520 getitem = PyList_GetItem;
3521 }
3522 else if (PyTuple_Check(argv)) {
3523 argc = PyTuple_Size(argv);
3524 getitem = PyTuple_GetItem;
3525 }
3526 else {
3527 PyErr_SetString(PyExc_TypeError,
3528 "spawnvpe() arg 2 must be a tuple or list");
3529 goto fail_0;
3530 }
3531 if (!PyMapping_Check(env)) {
3532 PyErr_SetString(PyExc_TypeError,
3533 "spawnvpe() arg 3 must be a mapping object");
3534 goto fail_0;
3535 }
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003536
Victor Stinnerd6f85422010-05-05 23:33:33 +00003537 argvlist = PyMem_NEW(char *, argc+1);
3538 if (argvlist == NULL) {
3539 PyErr_NoMemory();
3540 goto fail_0;
3541 }
3542 for (i = 0; i < argc; i++) {
3543 if (!PyArg_Parse((*getitem)(argv, i),
3544 "et;spawnvpe() arg 2 must contain only strings",
3545 Py_FileSystemDefaultEncoding,
3546 &argvlist[i]))
3547 {
3548 lastarg = i;
3549 goto fail_1;
3550 }
3551 }
3552 lastarg = argc;
3553 argvlist[argc] = NULL;
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003554
Victor Stinnerd6f85422010-05-05 23:33:33 +00003555 i = PyMapping_Size(env);
3556 if (i < 0)
3557 goto fail_1;
3558 envlist = PyMem_NEW(char *, i + 1);
3559 if (envlist == NULL) {
3560 PyErr_NoMemory();
3561 goto fail_1;
3562 }
3563 envc = 0;
3564 keys = PyMapping_Keys(env);
3565 vals = PyMapping_Values(env);
3566 if (!keys || !vals)
3567 goto fail_2;
3568 if (!PyList_Check(keys) || !PyList_Check(vals)) {
3569 PyErr_SetString(PyExc_TypeError,
3570 "spawnvpe(): env.keys() or env.values() is not a list");
3571 goto fail_2;
3572 }
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003573
Victor Stinnerd6f85422010-05-05 23:33:33 +00003574 for (pos = 0; pos < i; pos++) {
3575 char *p, *k, *v;
3576 size_t len;
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003577
Victor Stinnerd6f85422010-05-05 23:33:33 +00003578 key = PyList_GetItem(keys, pos);
3579 val = PyList_GetItem(vals, pos);
3580 if (!key || !val)
3581 goto fail_2;
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003582
Victor Stinnerd6f85422010-05-05 23:33:33 +00003583 if (!PyArg_Parse(
3584 key,
3585 "s;spawnvpe() arg 3 contains a non-string key",
3586 &k) ||
3587 !PyArg_Parse(
3588 val,
3589 "s;spawnvpe() arg 3 contains a non-string value",
3590 &v))
3591 {
3592 goto fail_2;
3593 }
3594 len = PyString_Size(key) + PyString_Size(val) + 2;
3595 p = PyMem_NEW(char, len);
3596 if (p == NULL) {
3597 PyErr_NoMemory();
3598 goto fail_2;
3599 }
3600 PyOS_snprintf(p, len, "%s=%s", k, v);
3601 envlist[envc++] = p;
3602 }
3603 envlist[envc] = 0;
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003604
Victor Stinnerd6f85422010-05-05 23:33:33 +00003605 Py_BEGIN_ALLOW_THREADS
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003606#if defined(PYCC_GCC)
Victor Stinnerd6f85422010-05-05 23:33:33 +00003607 spawnval = spawnvpe(mode, path, argvlist, envlist);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003608#else
Victor Stinnerd6f85422010-05-05 23:33:33 +00003609 spawnval = _spawnvpe(mode, path, argvlist, envlist);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003610#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00003611 Py_END_ALLOW_THREADS
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003612
Victor Stinnerd6f85422010-05-05 23:33:33 +00003613 if (spawnval == -1)
3614 (void) posix_error();
3615 else
3616 res = Py_BuildValue("l", (long) spawnval);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003617
3618 fail_2:
Victor Stinnerd6f85422010-05-05 23:33:33 +00003619 while (--envc >= 0)
3620 PyMem_DEL(envlist[envc]);
3621 PyMem_DEL(envlist);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003622 fail_1:
Victor Stinnerd6f85422010-05-05 23:33:33 +00003623 free_string_array(argvlist, lastarg);
3624 Py_XDECREF(vals);
3625 Py_XDECREF(keys);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003626 fail_0:
Victor Stinnerd6f85422010-05-05 23:33:33 +00003627 PyMem_Free(path);
3628 return res;
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003629}
3630#endif /* PYOS_OS2 */
Guido van Rossuma1065681999-01-25 23:20:23 +00003631#endif /* HAVE_SPAWNV */
3632
3633
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003634#ifdef HAVE_FORK1
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003635PyDoc_STRVAR(posix_fork1__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003636"fork1() -> pid\n\n\
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003637Fork a child process with a single multiplexed (i.e., not bound) thread.\n\
3638\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003639Return 0 to child process and PID of child to parent process.");
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003640
3641static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003642posix_fork1(PyObject *self, PyObject *noargs)
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003643{
Victor Stinnerd6f85422010-05-05 23:33:33 +00003644 pid_t pid;
3645 int result = 0;
3646 _PyImport_AcquireLock();
3647 pid = fork1();
3648 if (pid == 0) {
3649 /* child: this clobbers and resets the import lock. */
3650 PyOS_AfterFork();
3651 } else {
3652 /* parent: release the import lock. */
3653 result = _PyImport_ReleaseLock();
3654 }
3655 if (pid == -1)
3656 return posix_error();
3657 if (result < 0) {
3658 /* Don't clobber the OSError if the fork failed. */
3659 PyErr_SetString(PyExc_RuntimeError,
3660 "not holding the import lock");
3661 return NULL;
3662 }
3663 return PyLong_FromPid(pid);
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003664}
3665#endif
3666
3667
Guido van Rossumad0ee831995-03-01 10:34:45 +00003668#ifdef HAVE_FORK
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003669PyDoc_STRVAR(posix_fork__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003670"fork() -> pid\n\n\
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003671Fork a child process.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003672Return 0 to child process and PID of child to parent process.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003673
Barry Warsaw53699e91996-12-10 23:23:01 +00003674static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003675posix_fork(PyObject *self, PyObject *noargs)
Guido van Rossum85e3b011991-06-03 12:42:10 +00003676{
Victor Stinnerd6f85422010-05-05 23:33:33 +00003677 pid_t pid;
3678 int result = 0;
3679 _PyImport_AcquireLock();
3680 pid = fork();
3681 if (pid == 0) {
3682 /* child: this clobbers and resets the import lock. */
3683 PyOS_AfterFork();
3684 } else {
3685 /* parent: release the import lock. */
3686 result = _PyImport_ReleaseLock();
3687 }
3688 if (pid == -1)
3689 return posix_error();
3690 if (result < 0) {
3691 /* Don't clobber the OSError if the fork failed. */
3692 PyErr_SetString(PyExc_RuntimeError,
3693 "not holding the import lock");
3694 return NULL;
3695 }
3696 return PyLong_FromPid(pid);
Guido van Rossum85e3b011991-06-03 12:42:10 +00003697}
Guido van Rossumad0ee831995-03-01 10:34:45 +00003698#endif
Guido van Rossum85e3b011991-06-03 12:42:10 +00003699
Neal Norwitzb59798b2003-03-21 01:43:31 +00003700/* AIX uses /dev/ptc but is otherwise the same as /dev/ptmx */
Neal Norwitz2deaddb2003-03-21 03:08:31 +00003701/* IRIX has both /dev/ptc and /dev/ptmx, use ptmx */
3702#if defined(HAVE_DEV_PTC) && !defined(HAVE_DEV_PTMX)
Neal Norwitzb59798b2003-03-21 01:43:31 +00003703#define DEV_PTY_FILE "/dev/ptc"
3704#define HAVE_DEV_PTMX
3705#else
3706#define DEV_PTY_FILE "/dev/ptmx"
3707#endif
3708
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003709#if defined(HAVE_OPENPTY) || defined(HAVE_FORKPTY) || defined(HAVE_DEV_PTMX)
Fred Drake8cef4cf2000-06-28 16:40:38 +00003710#ifdef HAVE_PTY_H
3711#include <pty.h>
3712#else
3713#ifdef HAVE_LIBUTIL_H
3714#include <libutil.h>
Ronald Oussorena55af9a2010-01-17 16:25:57 +00003715#else
3716#ifdef HAVE_UTIL_H
3717#include <util.h>
3718#endif /* HAVE_UTIL_H */
Fred Drake8cef4cf2000-06-28 16:40:38 +00003719#endif /* HAVE_LIBUTIL_H */
3720#endif /* HAVE_PTY_H */
Martin v. Löwis14e73b12003-01-01 09:51:12 +00003721#ifdef HAVE_STROPTS_H
3722#include <stropts.h>
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003723#endif
3724#endif /* defined(HAVE_OPENPTY) || defined(HAVE_FORKPTY) || defined(HAVE_DEV_PTMX */
Fred Drake8cef4cf2000-06-28 16:40:38 +00003725
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003726#if defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX)
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003727PyDoc_STRVAR(posix_openpty__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003728"openpty() -> (master_fd, slave_fd)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003729Open a pseudo-terminal, returning open fd's for both master and slave end.\n");
Fred Drake8cef4cf2000-06-28 16:40:38 +00003730
3731static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003732posix_openpty(PyObject *self, PyObject *noargs)
Fred Drake8cef4cf2000-06-28 16:40:38 +00003733{
Victor Stinnerd6f85422010-05-05 23:33:33 +00003734 int master_fd, slave_fd;
Thomas Wouters70c21a12000-07-14 14:28:33 +00003735#ifndef HAVE_OPENPTY
Victor Stinnerd6f85422010-05-05 23:33:33 +00003736 char * slave_name;
Thomas Wouters70c21a12000-07-14 14:28:33 +00003737#endif
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003738#if defined(HAVE_DEV_PTMX) && !defined(HAVE_OPENPTY) && !defined(HAVE__GETPTY)
Victor Stinnerd6f85422010-05-05 23:33:33 +00003739 PyOS_sighandler_t sig_saved;
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003740#ifdef sun
Victor Stinnerd6f85422010-05-05 23:33:33 +00003741 extern char *ptsname(int fildes);
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003742#endif
3743#endif
Thomas Wouters70c21a12000-07-14 14:28:33 +00003744
Thomas Wouters70c21a12000-07-14 14:28:33 +00003745#ifdef HAVE_OPENPTY
Victor Stinnerd6f85422010-05-05 23:33:33 +00003746 if (openpty(&master_fd, &slave_fd, NULL, NULL, NULL) != 0)
3747 return posix_error();
Neal Norwitzb59798b2003-03-21 01:43:31 +00003748#elif defined(HAVE__GETPTY)
Victor Stinnerd6f85422010-05-05 23:33:33 +00003749 slave_name = _getpty(&master_fd, O_RDWR, 0666, 0);
3750 if (slave_name == NULL)
3751 return posix_error();
Thomas Wouters70c21a12000-07-14 14:28:33 +00003752
Victor Stinnerd6f85422010-05-05 23:33:33 +00003753 slave_fd = open(slave_name, O_RDWR);
3754 if (slave_fd < 0)
3755 return posix_error();
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003756#else
Victor Stinnerd6f85422010-05-05 23:33:33 +00003757 master_fd = open(DEV_PTY_FILE, O_RDWR | O_NOCTTY); /* open master */
3758 if (master_fd < 0)
3759 return posix_error();
3760 sig_saved = PyOS_setsig(SIGCHLD, SIG_DFL);
3761 /* change permission of slave */
3762 if (grantpt(master_fd) < 0) {
3763 PyOS_setsig(SIGCHLD, sig_saved);
3764 return posix_error();
3765 }
3766 /* unlock slave */
3767 if (unlockpt(master_fd) < 0) {
3768 PyOS_setsig(SIGCHLD, sig_saved);
3769 return posix_error();
3770 }
3771 PyOS_setsig(SIGCHLD, sig_saved);
3772 slave_name = ptsname(master_fd); /* get name of slave */
3773 if (slave_name == NULL)
3774 return posix_error();
3775 slave_fd = open(slave_name, O_RDWR | O_NOCTTY); /* open slave */
3776 if (slave_fd < 0)
3777 return posix_error();
Neal Norwitzb59798b2003-03-21 01:43:31 +00003778#if !defined(__CYGWIN__) && !defined(HAVE_DEV_PTC)
Victor Stinnerd6f85422010-05-05 23:33:33 +00003779 ioctl(slave_fd, I_PUSH, "ptem"); /* push ptem */
3780 ioctl(slave_fd, I_PUSH, "ldterm"); /* push ldterm */
Neal Norwitz6700e472002-12-31 16:16:07 +00003781#ifndef __hpux
Victor Stinnerd6f85422010-05-05 23:33:33 +00003782 ioctl(slave_fd, I_PUSH, "ttcompat"); /* push ttcompat */
Neal Norwitz6700e472002-12-31 16:16:07 +00003783#endif /* __hpux */
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003784#endif /* HAVE_CYGWIN */
Thomas Wouters1e0c2f42000-07-24 16:06:23 +00003785#endif /* HAVE_OPENPTY */
Thomas Wouters70c21a12000-07-14 14:28:33 +00003786
Victor Stinnerd6f85422010-05-05 23:33:33 +00003787 return Py_BuildValue("(ii)", master_fd, slave_fd);
Thomas Wouters70c21a12000-07-14 14:28:33 +00003788
Fred Drake8cef4cf2000-06-28 16:40:38 +00003789}
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003790#endif /* defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX) */
Fred Drake8cef4cf2000-06-28 16:40:38 +00003791
3792#ifdef HAVE_FORKPTY
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003793PyDoc_STRVAR(posix_forkpty__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003794"forkpty() -> (pid, master_fd)\n\n\
Fred Drake8cef4cf2000-06-28 16:40:38 +00003795Fork a new process with a new pseudo-terminal as controlling tty.\n\n\
3796Like fork(), return 0 as pid to child process, and PID of child to parent.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003797To both, return fd of newly opened pseudo-terminal.\n");
Fred Drake8cef4cf2000-06-28 16:40:38 +00003798
3799static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003800posix_forkpty(PyObject *self, PyObject *noargs)
Fred Drake8cef4cf2000-06-28 16:40:38 +00003801{
Victor Stinnerd6f85422010-05-05 23:33:33 +00003802 int master_fd = -1, result = 0;
3803 pid_t pid;
Tim Peters5aa91602002-01-30 05:46:57 +00003804
Victor Stinnerd6f85422010-05-05 23:33:33 +00003805 _PyImport_AcquireLock();
3806 pid = forkpty(&master_fd, NULL, NULL, NULL);
3807 if (pid == 0) {
3808 /* child: this clobbers and resets the import lock. */
3809 PyOS_AfterFork();
3810 } else {
3811 /* parent: release the import lock. */
3812 result = _PyImport_ReleaseLock();
3813 }
3814 if (pid == -1)
3815 return posix_error();
3816 if (result < 0) {
3817 /* Don't clobber the OSError if the fork failed. */
3818 PyErr_SetString(PyExc_RuntimeError,
3819 "not holding the import lock");
3820 return NULL;
3821 }
3822 return Py_BuildValue("(Ni)", PyLong_FromPid(pid), master_fd);
Fred Drake8cef4cf2000-06-28 16:40:38 +00003823}
3824#endif
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003825
Guido van Rossumad0ee831995-03-01 10:34:45 +00003826#ifdef HAVE_GETEGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003827PyDoc_STRVAR(posix_getegid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003828"getegid() -> egid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003829Return the current process's effective group id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003830
Barry Warsaw53699e91996-12-10 23:23:01 +00003831static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003832posix_getegid(PyObject *self, PyObject *noargs)
Guido van Rossum46003ff1992-05-15 11:05:24 +00003833{
Victor Stinnerd6f85422010-05-05 23:33:33 +00003834 return PyInt_FromLong((long)getegid());
Guido van Rossum46003ff1992-05-15 11:05:24 +00003835}
Guido van Rossumad0ee831995-03-01 10:34:45 +00003836#endif
Guido van Rossum46003ff1992-05-15 11:05:24 +00003837
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003838
Guido van Rossumad0ee831995-03-01 10:34:45 +00003839#ifdef HAVE_GETEUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003840PyDoc_STRVAR(posix_geteuid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003841"geteuid() -> euid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003842Return the current process's effective user id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003843
Barry Warsaw53699e91996-12-10 23:23:01 +00003844static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003845posix_geteuid(PyObject *self, PyObject *noargs)
Guido van Rossum46003ff1992-05-15 11:05:24 +00003846{
Victor Stinnerd6f85422010-05-05 23:33:33 +00003847 return PyInt_FromLong((long)geteuid());
Guido van Rossum46003ff1992-05-15 11:05:24 +00003848}
Guido van Rossumad0ee831995-03-01 10:34:45 +00003849#endif
Guido van Rossum46003ff1992-05-15 11:05:24 +00003850
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003851
Guido van Rossumad0ee831995-03-01 10:34:45 +00003852#ifdef HAVE_GETGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003853PyDoc_STRVAR(posix_getgid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003854"getgid() -> gid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003855Return the current process's group id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003856
Barry Warsaw53699e91996-12-10 23:23:01 +00003857static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003858posix_getgid(PyObject *self, PyObject *noargs)
Guido van Rossum46003ff1992-05-15 11:05:24 +00003859{
Victor Stinnerd6f85422010-05-05 23:33:33 +00003860 return PyInt_FromLong((long)getgid());
Guido van Rossum46003ff1992-05-15 11:05:24 +00003861}
Guido van Rossumad0ee831995-03-01 10:34:45 +00003862#endif
Guido van Rossum46003ff1992-05-15 11:05:24 +00003863
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003864
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003865PyDoc_STRVAR(posix_getpid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003866"getpid() -> pid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003867Return the current process id");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003868
Barry Warsaw53699e91996-12-10 23:23:01 +00003869static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003870posix_getpid(PyObject *self, PyObject *noargs)
Guido van Rossum85e3b011991-06-03 12:42:10 +00003871{
Victor Stinnerd6f85422010-05-05 23:33:33 +00003872 return PyLong_FromPid(getpid());
Guido van Rossum85e3b011991-06-03 12:42:10 +00003873}
3874
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003875
Fred Drakec9680921999-12-13 16:37:25 +00003876#ifdef HAVE_GETGROUPS
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003877PyDoc_STRVAR(posix_getgroups__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003878"getgroups() -> list of group IDs\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003879Return list of supplemental group IDs for the process.");
Fred Drakec9680921999-12-13 16:37:25 +00003880
3881static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003882posix_getgroups(PyObject *self, PyObject *noargs)
Fred Drakec9680921999-12-13 16:37:25 +00003883{
3884 PyObject *result = NULL;
3885
Fred Drakec9680921999-12-13 16:37:25 +00003886#ifdef NGROUPS_MAX
3887#define MAX_GROUPS NGROUPS_MAX
3888#else
Victor Stinnerd6f85422010-05-05 23:33:33 +00003889 /* defined to be 16 on Solaris7, so this should be a small number */
Fred Drakec9680921999-12-13 16:37:25 +00003890#define MAX_GROUPS 64
3891#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00003892 gid_t grouplist[MAX_GROUPS];
Ronald Oussoren9e7ffae2010-07-24 09:46:41 +00003893
3894 /* On MacOSX getgroups(2) can return more than MAX_GROUPS results
3895 * This is a helper variable to store the intermediate result when
3896 * that happens.
3897 *
3898 * To keep the code readable the OSX behaviour is unconditional,
3899 * according to the POSIX spec this should be safe on all unix-y
3900 * systems.
3901 */
3902 gid_t* alt_grouplist = grouplist;
Victor Stinnerd6f85422010-05-05 23:33:33 +00003903 int n;
Fred Drakec9680921999-12-13 16:37:25 +00003904
Victor Stinnerd6f85422010-05-05 23:33:33 +00003905 n = getgroups(MAX_GROUPS, grouplist);
Ronald Oussoren9e7ffae2010-07-24 09:46:41 +00003906 if (n < 0) {
3907 if (errno == EINVAL) {
3908 n = getgroups(0, NULL);
3909 if (n == -1) {
3910 return posix_error();
3911 }
3912 if (n == 0) {
3913 /* Avoid malloc(0) */
3914 alt_grouplist = grouplist;
3915 } else {
3916 alt_grouplist = PyMem_Malloc(n * sizeof(gid_t));
3917 if (alt_grouplist == NULL) {
3918 errno = EINVAL;
3919 return posix_error();
3920 }
3921 n = getgroups(n, alt_grouplist);
3922 if (n == -1) {
3923 PyMem_Free(alt_grouplist);
3924 return posix_error();
3925 }
3926 }
3927 } else {
3928 return posix_error();
3929 }
3930 }
3931 result = PyList_New(n);
3932 if (result != NULL) {
Victor Stinnerd6f85422010-05-05 23:33:33 +00003933 int i;
3934 for (i = 0; i < n; ++i) {
Ronald Oussoren9e7ffae2010-07-24 09:46:41 +00003935 PyObject *o = PyInt_FromLong((long)alt_grouplist[i]);
Victor Stinnerd6f85422010-05-05 23:33:33 +00003936 if (o == NULL) {
Stefan Krah93f7a322010-11-26 17:35:50 +00003937 Py_DECREF(result);
3938 result = NULL;
3939 break;
Fred Drakec9680921999-12-13 16:37:25 +00003940 }
Victor Stinnerd6f85422010-05-05 23:33:33 +00003941 PyList_SET_ITEM(result, i, o);
Fred Drakec9680921999-12-13 16:37:25 +00003942 }
Ronald Oussoren9e7ffae2010-07-24 09:46:41 +00003943 }
3944
3945 if (alt_grouplist != grouplist) {
3946 PyMem_Free(alt_grouplist);
Victor Stinnerd6f85422010-05-05 23:33:33 +00003947 }
Neal Norwitze241ce82003-02-17 18:17:05 +00003948
Fred Drakec9680921999-12-13 16:37:25 +00003949 return result;
3950}
3951#endif
3952
Antoine Pitrou30b3b352009-12-02 20:37:54 +00003953#ifdef HAVE_INITGROUPS
3954PyDoc_STRVAR(posix_initgroups__doc__,
3955"initgroups(username, gid) -> None\n\n\
3956Call the system initgroups() to initialize the group access list with all of\n\
3957the groups of which the specified username is a member, plus the specified\n\
3958group id.");
3959
3960static PyObject *
3961posix_initgroups(PyObject *self, PyObject *args)
3962{
Victor Stinnerd6f85422010-05-05 23:33:33 +00003963 char *username;
3964 long gid;
Antoine Pitrou30b3b352009-12-02 20:37:54 +00003965
Victor Stinnerd6f85422010-05-05 23:33:33 +00003966 if (!PyArg_ParseTuple(args, "sl:initgroups", &username, &gid))
3967 return NULL;
Antoine Pitrou30b3b352009-12-02 20:37:54 +00003968
Victor Stinnerd6f85422010-05-05 23:33:33 +00003969 if (initgroups(username, (gid_t) gid) == -1)
3970 return PyErr_SetFromErrno(PyExc_OSError);
Antoine Pitrou30b3b352009-12-02 20:37:54 +00003971
Victor Stinnerd6f85422010-05-05 23:33:33 +00003972 Py_INCREF(Py_None);
3973 return Py_None;
Antoine Pitrou30b3b352009-12-02 20:37:54 +00003974}
3975#endif
3976
Martin v. Löwis606edc12002-06-13 21:09:11 +00003977#ifdef HAVE_GETPGID
Neal Norwitz0c2c17c2002-06-13 21:22:11 +00003978PyDoc_STRVAR(posix_getpgid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003979"getpgid(pid) -> pgid\n\n\
Neal Norwitz0c2c17c2002-06-13 21:22:11 +00003980Call the system call getpgid().");
Martin v. Löwis606edc12002-06-13 21:09:11 +00003981
3982static PyObject *
3983posix_getpgid(PyObject *self, PyObject *args)
3984{
Victor Stinnerd6f85422010-05-05 23:33:33 +00003985 pid_t pid, pgid;
3986 if (!PyArg_ParseTuple(args, PARSE_PID ":getpgid", &pid))
3987 return NULL;
3988 pgid = getpgid(pid);
3989 if (pgid < 0)
3990 return posix_error();
3991 return PyLong_FromPid(pgid);
Martin v. Löwis606edc12002-06-13 21:09:11 +00003992}
3993#endif /* HAVE_GETPGID */
3994
3995
Guido van Rossumb6775db1994-08-01 11:34:53 +00003996#ifdef HAVE_GETPGRP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003997PyDoc_STRVAR(posix_getpgrp__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003998"getpgrp() -> pgrp\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003999Return the current process group id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004000
Barry Warsaw53699e91996-12-10 23:23:01 +00004001static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00004002posix_getpgrp(PyObject *self, PyObject *noargs)
Guido van Rossum04814471991-06-04 20:23:49 +00004003{
Guido van Rossumb6775db1994-08-01 11:34:53 +00004004#ifdef GETPGRP_HAVE_ARG
Victor Stinnerd6f85422010-05-05 23:33:33 +00004005 return PyLong_FromPid(getpgrp(0));
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00004006#else /* GETPGRP_HAVE_ARG */
Victor Stinnerd6f85422010-05-05 23:33:33 +00004007 return PyLong_FromPid(getpgrp());
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00004008#endif /* GETPGRP_HAVE_ARG */
Guido van Rossum04814471991-06-04 20:23:49 +00004009}
Guido van Rossumb6775db1994-08-01 11:34:53 +00004010#endif /* HAVE_GETPGRP */
Guido van Rossum04814471991-06-04 20:23:49 +00004011
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004012
Guido van Rossumb6775db1994-08-01 11:34:53 +00004013#ifdef HAVE_SETPGRP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004014PyDoc_STRVAR(posix_setpgrp__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00004015"setpgrp()\n\n\
Senthil Kumaran0d6908b2010-06-17 16:38:34 +00004016Make this process the process group leader.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004017
Barry Warsaw53699e91996-12-10 23:23:01 +00004018static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00004019posix_setpgrp(PyObject *self, PyObject *noargs)
Guido van Rossumc2670a01992-09-13 20:07:29 +00004020{
Guido van Rossum64933891994-10-20 21:56:42 +00004021#ifdef SETPGRP_HAVE_ARG
Victor Stinnerd6f85422010-05-05 23:33:33 +00004022 if (setpgrp(0, 0) < 0)
Guido van Rossum64933891994-10-20 21:56:42 +00004023#else /* SETPGRP_HAVE_ARG */
Victor Stinnerd6f85422010-05-05 23:33:33 +00004024 if (setpgrp() < 0)
Guido van Rossum64933891994-10-20 21:56:42 +00004025#endif /* SETPGRP_HAVE_ARG */
Victor Stinnerd6f85422010-05-05 23:33:33 +00004026 return posix_error();
4027 Py_INCREF(Py_None);
4028 return Py_None;
Guido van Rossumc2670a01992-09-13 20:07:29 +00004029}
4030
Guido van Rossumb6775db1994-08-01 11:34:53 +00004031#endif /* HAVE_SETPGRP */
4032
Guido van Rossumad0ee831995-03-01 10:34:45 +00004033#ifdef HAVE_GETPPID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004034PyDoc_STRVAR(posix_getppid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00004035"getppid() -> ppid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004036Return the parent's process id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004037
Barry Warsaw53699e91996-12-10 23:23:01 +00004038static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00004039posix_getppid(PyObject *self, PyObject *noargs)
Guido van Rossum85e3b011991-06-03 12:42:10 +00004040{
Victor Stinnerd6f85422010-05-05 23:33:33 +00004041 return PyLong_FromPid(getppid());
Guido van Rossum85e3b011991-06-03 12:42:10 +00004042}
Guido van Rossumad0ee831995-03-01 10:34:45 +00004043#endif
Guido van Rossum85e3b011991-06-03 12:42:10 +00004044
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004045
Fred Drake12c6e2d1999-12-14 21:25:03 +00004046#ifdef HAVE_GETLOGIN
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004047PyDoc_STRVAR(posix_getlogin__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00004048"getlogin() -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004049Return the actual login name.");
Fred Drake12c6e2d1999-12-14 21:25:03 +00004050
4051static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00004052posix_getlogin(PyObject *self, PyObject *noargs)
Fred Drake12c6e2d1999-12-14 21:25:03 +00004053{
Victor Stinnerd6f85422010-05-05 23:33:33 +00004054 PyObject *result = NULL;
4055 char *name;
4056 int old_errno = errno;
Fred Drake12c6e2d1999-12-14 21:25:03 +00004057
Victor Stinnerd6f85422010-05-05 23:33:33 +00004058 errno = 0;
4059 name = getlogin();
4060 if (name == NULL) {
4061 if (errno)
4062 posix_error();
Fred Drake12c6e2d1999-12-14 21:25:03 +00004063 else
Victor Stinnerd6f85422010-05-05 23:33:33 +00004064 PyErr_SetString(PyExc_OSError,
4065 "unable to determine login name");
4066 }
4067 else
4068 result = PyString_FromString(name);
4069 errno = old_errno;
Neal Norwitze241ce82003-02-17 18:17:05 +00004070
Fred Drake12c6e2d1999-12-14 21:25:03 +00004071 return result;
4072}
4073#endif
4074
Guido van Rossumad0ee831995-03-01 10:34:45 +00004075#ifdef HAVE_GETUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004076PyDoc_STRVAR(posix_getuid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00004077"getuid() -> uid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004078Return the current process's user id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004079
Barry Warsaw53699e91996-12-10 23:23:01 +00004080static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00004081posix_getuid(PyObject *self, PyObject *noargs)
Guido van Rossum46003ff1992-05-15 11:05:24 +00004082{
Victor Stinnerd6f85422010-05-05 23:33:33 +00004083 return PyInt_FromLong((long)getuid());
Guido van Rossum46003ff1992-05-15 11:05:24 +00004084}
Guido van Rossumad0ee831995-03-01 10:34:45 +00004085#endif
Guido van Rossum46003ff1992-05-15 11:05:24 +00004086
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004087
Guido van Rossumad0ee831995-03-01 10:34:45 +00004088#ifdef HAVE_KILL
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004089PyDoc_STRVAR(posix_kill__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00004090"kill(pid, sig)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004091Kill a process with a signal.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004092
Barry Warsaw53699e91996-12-10 23:23:01 +00004093static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00004094posix_kill(PyObject *self, PyObject *args)
Guido van Rossum85e3b011991-06-03 12:42:10 +00004095{
Victor Stinnerd6f85422010-05-05 23:33:33 +00004096 pid_t pid;
4097 int sig;
4098 if (!PyArg_ParseTuple(args, PARSE_PID "i:kill", &pid, &sig))
4099 return NULL;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004100#if defined(PYOS_OS2) && !defined(PYCC_GCC)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004101 if (sig == XCPT_SIGNAL_INTR || sig == XCPT_SIGNAL_BREAK) {
4102 APIRET rc;
4103 if ((rc = DosSendSignalException(pid, sig)) != NO_ERROR)
Guido van Rossumd48f2521997-12-05 22:19:34 +00004104 return os2_error(rc);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004105
4106 } else if (sig == XCPT_SIGNAL_KILLPROC) {
4107 APIRET rc;
4108 if ((rc = DosKillProcess(DKP_PROCESS, pid)) != NO_ERROR)
Guido van Rossumd48f2521997-12-05 22:19:34 +00004109 return os2_error(rc);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004110
4111 } else
Guido van Rossumc5a0f531997-12-02 20:36:02 +00004112 return NULL; /* Unrecognized Signal Requested */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004113#else
Victor Stinnerd6f85422010-05-05 23:33:33 +00004114 if (kill(pid, sig) == -1)
4115 return posix_error();
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004116#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00004117 Py_INCREF(Py_None);
4118 return Py_None;
Guido van Rossum85e3b011991-06-03 12:42:10 +00004119}
Guido van Rossumad0ee831995-03-01 10:34:45 +00004120#endif
Guido van Rossum85e3b011991-06-03 12:42:10 +00004121
Martin v. Löwisb2c92f42002-02-16 23:35:41 +00004122#ifdef HAVE_KILLPG
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004123PyDoc_STRVAR(posix_killpg__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00004124"killpg(pgid, sig)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004125Kill a process group with a signal.");
Martin v. Löwisb2c92f42002-02-16 23:35:41 +00004126
4127static PyObject *
4128posix_killpg(PyObject *self, PyObject *args)
4129{
Victor Stinnerd6f85422010-05-05 23:33:33 +00004130 int sig;
4131 pid_t pgid;
4132 /* XXX some man pages make the `pgid` parameter an int, others
4133 a pid_t. Since getpgrp() returns a pid_t, we assume killpg should
4134 take the same type. Moreover, pid_t is always at least as wide as
4135 int (else compilation of this module fails), which is safe. */
4136 if (!PyArg_ParseTuple(args, PARSE_PID "i:killpg", &pgid, &sig))
4137 return NULL;
4138 if (killpg(pgid, sig) == -1)
4139 return posix_error();
4140 Py_INCREF(Py_None);
4141 return Py_None;
Martin v. Löwisb2c92f42002-02-16 23:35:41 +00004142}
4143#endif
4144
Brian Curtine5aa8862010-04-02 23:26:06 +00004145#ifdef MS_WINDOWS
4146PyDoc_STRVAR(win32_kill__doc__,
4147"kill(pid, sig)\n\n\
4148Kill a process with a signal.");
4149
4150static PyObject *
4151win32_kill(PyObject *self, PyObject *args)
4152{
Amaury Forgeot d'Arc03acec22010-05-15 21:45:30 +00004153 PyObject *result;
Victor Stinnerd6f85422010-05-05 23:33:33 +00004154 DWORD pid, sig, err;
4155 HANDLE handle;
Brian Curtine5aa8862010-04-02 23:26:06 +00004156
Victor Stinnerd6f85422010-05-05 23:33:33 +00004157 if (!PyArg_ParseTuple(args, "kk:kill", &pid, &sig))
4158 return NULL;
Brian Curtine5aa8862010-04-02 23:26:06 +00004159
Victor Stinnerd6f85422010-05-05 23:33:33 +00004160 /* Console processes which share a common console can be sent CTRL+C or
4161 CTRL+BREAK events, provided they handle said events. */
4162 if (sig == CTRL_C_EVENT || sig == CTRL_BREAK_EVENT) {
4163 if (GenerateConsoleCtrlEvent(sig, pid) == 0) {
4164 err = GetLastError();
4165 return PyErr_SetFromWindowsErr(err);
4166 }
4167 else
4168 Py_RETURN_NONE;
4169 }
Brian Curtine5aa8862010-04-02 23:26:06 +00004170
Victor Stinnerd6f85422010-05-05 23:33:33 +00004171 /* If the signal is outside of what GenerateConsoleCtrlEvent can use,
4172 attempt to open and terminate the process. */
4173 handle = OpenProcess(PROCESS_ALL_ACCESS, FALSE, pid);
4174 if (handle == NULL) {
4175 err = GetLastError();
4176 return PyErr_SetFromWindowsErr(err);
4177 }
Brian Curtine5aa8862010-04-02 23:26:06 +00004178
Victor Stinnerd6f85422010-05-05 23:33:33 +00004179 if (TerminateProcess(handle, sig) == 0) {
4180 err = GetLastError();
4181 result = PyErr_SetFromWindowsErr(err);
4182 } else {
4183 Py_INCREF(Py_None);
4184 result = Py_None;
4185 }
Brian Curtine5aa8862010-04-02 23:26:06 +00004186
Victor Stinnerd6f85422010-05-05 23:33:33 +00004187 CloseHandle(handle);
4188 return result;
Brian Curtine5aa8862010-04-02 23:26:06 +00004189}
4190#endif /* MS_WINDOWS */
4191
Guido van Rossumc0125471996-06-28 18:55:32 +00004192#ifdef HAVE_PLOCK
4193
4194#ifdef HAVE_SYS_LOCK_H
4195#include <sys/lock.h>
4196#endif
4197
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004198PyDoc_STRVAR(posix_plock__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00004199"plock(op)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004200Lock program segments into memory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004201
Barry Warsaw53699e91996-12-10 23:23:01 +00004202static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00004203posix_plock(PyObject *self, PyObject *args)
Guido van Rossumc0125471996-06-28 18:55:32 +00004204{
Victor Stinnerd6f85422010-05-05 23:33:33 +00004205 int op;
4206 if (!PyArg_ParseTuple(args, "i:plock", &op))
4207 return NULL;
4208 if (plock(op) == -1)
4209 return posix_error();
4210 Py_INCREF(Py_None);
4211 return Py_None;
Guido van Rossumc0125471996-06-28 18:55:32 +00004212}
4213#endif
4214
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004215
Guido van Rossuma4916fa1996-05-23 22:58:55 +00004216#ifdef HAVE_POPEN
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004217PyDoc_STRVAR(posix_popen__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00004218"popen(command [, mode='r' [, bufsize]]) -> pipe\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004219Open a pipe to/from a command returning a file object.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004220
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004221#if defined(PYOS_OS2)
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004222#if defined(PYCC_VACPP)
Guido van Rossumd48f2521997-12-05 22:19:34 +00004223static int
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004224async_system(const char *command)
4225{
Victor Stinnerd6f85422010-05-05 23:33:33 +00004226 char errormsg[256], args[1024];
4227 RESULTCODES rcodes;
4228 APIRET rc;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004229
Victor Stinnerd6f85422010-05-05 23:33:33 +00004230 char *shell = getenv("COMSPEC");
4231 if (!shell)
4232 shell = "cmd";
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004233
Victor Stinnerd6f85422010-05-05 23:33:33 +00004234 /* avoid overflowing the argument buffer */
4235 if (strlen(shell) + 3 + strlen(command) >= 1024)
4236 return ERROR_NOT_ENOUGH_MEMORY
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004237
Victor Stinnerd6f85422010-05-05 23:33:33 +00004238 args[0] = '\0';
4239 strcat(args, shell);
4240 strcat(args, "/c ");
4241 strcat(args, command);
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004242
Victor Stinnerd6f85422010-05-05 23:33:33 +00004243 /* execute asynchronously, inheriting the environment */
4244 rc = DosExecPgm(errormsg,
4245 sizeof(errormsg),
4246 EXEC_ASYNC,
4247 args,
4248 NULL,
4249 &rcodes,
4250 shell);
4251 return rc;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004252}
4253
Guido van Rossumd48f2521997-12-05 22:19:34 +00004254static FILE *
4255popen(const char *command, const char *mode, int pipesize, int *err)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004256{
Victor Stinnerd6f85422010-05-05 23:33:33 +00004257 int oldfd, tgtfd;
4258 HFILE pipeh[2];
4259 APIRET rc;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004260
Victor Stinnerd6f85422010-05-05 23:33:33 +00004261 /* mode determines which of stdin or stdout is reconnected to
4262 * the pipe to the child
4263 */
4264 if (strchr(mode, 'r') != NULL) {
4265 tgt_fd = 1; /* stdout */
4266 } else if (strchr(mode, 'w')) {
4267 tgt_fd = 0; /* stdin */
4268 } else {
4269 *err = ERROR_INVALID_ACCESS;
4270 return NULL;
4271 }
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004272
Victor Stinnerd6f85422010-05-05 23:33:33 +00004273 /* setup the pipe */
4274 if ((rc = DosCreatePipe(&pipeh[0], &pipeh[1], pipesize)) != NO_ERROR) {
4275 *err = rc;
4276 return NULL;
4277 }
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004278
Victor Stinnerd6f85422010-05-05 23:33:33 +00004279 /* prevent other threads accessing stdio */
4280 DosEnterCritSec();
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004281
Victor Stinnerd6f85422010-05-05 23:33:33 +00004282 /* reconnect stdio and execute child */
4283 oldfd = dup(tgtfd);
4284 close(tgtfd);
4285 if (dup2(pipeh[tgtfd], tgtfd) == 0) {
4286 DosClose(pipeh[tgtfd]);
4287 rc = async_system(command);
4288 }
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004289
Victor Stinnerd6f85422010-05-05 23:33:33 +00004290 /* restore stdio */
4291 dup2(oldfd, tgtfd);
4292 close(oldfd);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004293
Victor Stinnerd6f85422010-05-05 23:33:33 +00004294 /* allow other threads access to stdio */
4295 DosExitCritSec();
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004296
Victor Stinnerd6f85422010-05-05 23:33:33 +00004297 /* if execution of child was successful return file stream */
4298 if (rc == NO_ERROR)
4299 return fdopen(pipeh[1 - tgtfd], mode);
4300 else {
4301 DosClose(pipeh[1 - tgtfd]);
4302 *err = rc;
4303 return NULL;
4304 }
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004305}
4306
4307static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00004308posix_popen(PyObject *self, PyObject *args)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004309{
Victor Stinnerd6f85422010-05-05 23:33:33 +00004310 char *name;
4311 char *mode = "r";
4312 int err, bufsize = -1;
4313 FILE *fp;
4314 PyObject *f;
4315 if (!PyArg_ParseTuple(args, "s|si:popen", &name, &mode, &bufsize))
4316 return NULL;
4317 Py_BEGIN_ALLOW_THREADS
4318 fp = popen(name, mode, (bufsize > 0) ? bufsize : 4096, &err);
4319 Py_END_ALLOW_THREADS
4320 if (fp == NULL)
4321 return os2_error(err);
Guido van Rossumd48f2521997-12-05 22:19:34 +00004322
Victor Stinnerd6f85422010-05-05 23:33:33 +00004323 f = PyFile_FromFile(fp, name, mode, fclose);
4324 if (f != NULL)
4325 PyFile_SetBufSize(f, bufsize);
4326 return f;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004327}
4328
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004329#elif defined(PYCC_GCC)
4330
4331/* standard posix version of popen() support */
4332static PyObject *
4333posix_popen(PyObject *self, PyObject *args)
4334{
Victor Stinnerd6f85422010-05-05 23:33:33 +00004335 char *name;
4336 char *mode = "r";
4337 int bufsize = -1;
4338 FILE *fp;
4339 PyObject *f;
4340 if (!PyArg_ParseTuple(args, "s|si:popen", &name, &mode, &bufsize))
4341 return NULL;
4342 Py_BEGIN_ALLOW_THREADS
4343 fp = popen(name, mode);
4344 Py_END_ALLOW_THREADS
4345 if (fp == NULL)
4346 return posix_error();
4347 f = PyFile_FromFile(fp, name, mode, pclose);
4348 if (f != NULL)
4349 PyFile_SetBufSize(f, bufsize);
4350 return f;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004351}
4352
4353/* fork() under OS/2 has lots'o'warts
4354 * EMX supports pipe() and spawn*() so we can synthesize popen[234]()
4355 * most of this code is a ripoff of the win32 code, but using the
4356 * capabilities of EMX's C library routines
4357 */
4358
4359/* These tell _PyPopen() whether to return 1, 2, or 3 file objects. */
4360#define POPEN_1 1
4361#define POPEN_2 2
4362#define POPEN_3 3
4363#define POPEN_4 4
4364
4365static PyObject *_PyPopen(char *, int, int, int);
4366static int _PyPclose(FILE *file);
4367
4368/*
4369 * Internal dictionary mapping popen* file pointers to process handles,
4370 * for use when retrieving the process exit code. See _PyPclose() below
4371 * for more information on this dictionary's use.
4372 */
4373static PyObject *_PyPopenProcs = NULL;
4374
4375/* os2emx version of popen2()
4376 *
4377 * The result of this function is a pipe (file) connected to the
4378 * process's stdin, and a pipe connected to the process's stdout.
4379 */
4380
4381static PyObject *
4382os2emx_popen2(PyObject *self, PyObject *args)
4383{
Victor Stinnerd6f85422010-05-05 23:33:33 +00004384 PyObject *f;
4385 int tm=0;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004386
Victor Stinnerd6f85422010-05-05 23:33:33 +00004387 char *cmdstring;
4388 char *mode = "t";
4389 int bufsize = -1;
4390 if (!PyArg_ParseTuple(args, "s|si:popen2", &cmdstring, &mode, &bufsize))
4391 return NULL;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004392
Victor Stinnerd6f85422010-05-05 23:33:33 +00004393 if (*mode == 't')
4394 tm = O_TEXT;
4395 else if (*mode != 'b') {
4396 PyErr_SetString(PyExc_ValueError, "mode must be 't' or 'b'");
4397 return NULL;
4398 } else
4399 tm = O_BINARY;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004400
Victor Stinnerd6f85422010-05-05 23:33:33 +00004401 f = _PyPopen(cmdstring, tm, POPEN_2, bufsize);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004402
Victor Stinnerd6f85422010-05-05 23:33:33 +00004403 return f;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004404}
4405
4406/*
4407 * Variation on os2emx.popen2
4408 *
4409 * The result of this function is 3 pipes - the process's stdin,
4410 * stdout and stderr
4411 */
4412
4413static PyObject *
4414os2emx_popen3(PyObject *self, PyObject *args)
4415{
Victor Stinnerd6f85422010-05-05 23:33:33 +00004416 PyObject *f;
4417 int tm = 0;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004418
Victor Stinnerd6f85422010-05-05 23:33:33 +00004419 char *cmdstring;
4420 char *mode = "t";
4421 int bufsize = -1;
4422 if (!PyArg_ParseTuple(args, "s|si:popen3", &cmdstring, &mode, &bufsize))
4423 return NULL;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004424
Victor Stinnerd6f85422010-05-05 23:33:33 +00004425 if (*mode == 't')
4426 tm = O_TEXT;
4427 else if (*mode != 'b') {
4428 PyErr_SetString(PyExc_ValueError, "mode must be 't' or 'b'");
4429 return NULL;
4430 } else
4431 tm = O_BINARY;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004432
Victor Stinnerd6f85422010-05-05 23:33:33 +00004433 f = _PyPopen(cmdstring, tm, POPEN_3, bufsize);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004434
Victor Stinnerd6f85422010-05-05 23:33:33 +00004435 return f;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004436}
4437
4438/*
4439 * Variation on os2emx.popen2
4440 *
Tim Peters11b23062003-04-23 02:39:17 +00004441 * The result of this function is 2 pipes - the processes stdin,
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004442 * and stdout+stderr combined as a single pipe.
4443 */
4444
4445static PyObject *
4446os2emx_popen4(PyObject *self, PyObject *args)
4447{
Victor Stinnerd6f85422010-05-05 23:33:33 +00004448 PyObject *f;
4449 int tm = 0;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004450
Victor Stinnerd6f85422010-05-05 23:33:33 +00004451 char *cmdstring;
4452 char *mode = "t";
4453 int bufsize = -1;
4454 if (!PyArg_ParseTuple(args, "s|si:popen4", &cmdstring, &mode, &bufsize))
4455 return NULL;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004456
Victor Stinnerd6f85422010-05-05 23:33:33 +00004457 if (*mode == 't')
4458 tm = O_TEXT;
4459 else if (*mode != 'b') {
4460 PyErr_SetString(PyExc_ValueError, "mode must be 't' or 'b'");
4461 return NULL;
4462 } else
4463 tm = O_BINARY;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004464
Victor Stinnerd6f85422010-05-05 23:33:33 +00004465 f = _PyPopen(cmdstring, tm, POPEN_4, bufsize);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004466
Victor Stinnerd6f85422010-05-05 23:33:33 +00004467 return f;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004468}
4469
4470/* a couple of structures for convenient handling of multiple
4471 * file handles and pipes
4472 */
4473struct file_ref
4474{
Victor Stinnerd6f85422010-05-05 23:33:33 +00004475 int handle;
4476 int flags;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004477};
4478
4479struct pipe_ref
4480{
Victor Stinnerd6f85422010-05-05 23:33:33 +00004481 int rd;
4482 int wr;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004483};
4484
4485/* The following code is derived from the win32 code */
4486
4487static PyObject *
4488_PyPopen(char *cmdstring, int mode, int n, int bufsize)
4489{
Victor Stinnerd6f85422010-05-05 23:33:33 +00004490 struct file_ref stdio[3];
4491 struct pipe_ref p_fd[3];
4492 FILE *p_s[3];
4493 int file_count, i, pipe_err;
4494 pid_t pipe_pid;
4495 char *shell, *sh_name, *opt, *rd_mode, *wr_mode;
4496 PyObject *f, *p_f[3];
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004497
Victor Stinnerd6f85422010-05-05 23:33:33 +00004498 /* file modes for subsequent fdopen's on pipe handles */
4499 if (mode == O_TEXT)
4500 {
4501 rd_mode = "rt";
4502 wr_mode = "wt";
4503 }
4504 else
4505 {
4506 rd_mode = "rb";
4507 wr_mode = "wb";
4508 }
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004509
Victor Stinnerd6f85422010-05-05 23:33:33 +00004510 /* prepare shell references */
4511 if ((shell = getenv("EMXSHELL")) == NULL)
4512 if ((shell = getenv("COMSPEC")) == NULL)
4513 {
4514 errno = ENOENT;
4515 return posix_error();
4516 }
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004517
Victor Stinnerd6f85422010-05-05 23:33:33 +00004518 sh_name = _getname(shell);
4519 if (stricmp(sh_name, "cmd.exe") == 0 || stricmp(sh_name, "4os2.exe") == 0)
4520 opt = "/c";
4521 else
4522 opt = "-c";
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004523
Victor Stinnerd6f85422010-05-05 23:33:33 +00004524 /* save current stdio fds + their flags, and set not inheritable */
4525 i = pipe_err = 0;
4526 while (pipe_err >= 0 && i < 3)
4527 {
4528 pipe_err = stdio[i].handle = dup(i);
4529 stdio[i].flags = fcntl(i, F_GETFD, 0);
4530 fcntl(stdio[i].handle, F_SETFD, stdio[i].flags | FD_CLOEXEC);
4531 i++;
4532 }
4533 if (pipe_err < 0)
4534 {
4535 /* didn't get them all saved - clean up and bail out */
4536 int saved_err = errno;
4537 while (i-- > 0)
4538 {
4539 close(stdio[i].handle);
4540 }
4541 errno = saved_err;
4542 return posix_error();
4543 }
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004544
Victor Stinnerd6f85422010-05-05 23:33:33 +00004545 /* create pipe ends */
4546 file_count = 2;
4547 if (n == POPEN_3)
4548 file_count = 3;
4549 i = pipe_err = 0;
4550 while ((pipe_err == 0) && (i < file_count))
4551 pipe_err = pipe((int *)&p_fd[i++]);
4552 if (pipe_err < 0)
4553 {
4554 /* didn't get them all made - clean up and bail out */
4555 while (i-- > 0)
4556 {
4557 close(p_fd[i].wr);
4558 close(p_fd[i].rd);
4559 }
4560 errno = EPIPE;
4561 return posix_error();
4562 }
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004563
Victor Stinnerd6f85422010-05-05 23:33:33 +00004564 /* change the actual standard IO streams over temporarily,
4565 * making the retained pipe ends non-inheritable
4566 */
4567 pipe_err = 0;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004568
Victor Stinnerd6f85422010-05-05 23:33:33 +00004569 /* - stdin */
4570 if (dup2(p_fd[0].rd, 0) == 0)
4571 {
4572 close(p_fd[0].rd);
4573 i = fcntl(p_fd[0].wr, F_GETFD, 0);
4574 fcntl(p_fd[0].wr, F_SETFD, i | FD_CLOEXEC);
4575 if ((p_s[0] = fdopen(p_fd[0].wr, wr_mode)) == NULL)
4576 {
4577 close(p_fd[0].wr);
4578 pipe_err = -1;
4579 }
4580 }
4581 else
4582 {
4583 pipe_err = -1;
4584 }
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004585
Victor Stinnerd6f85422010-05-05 23:33:33 +00004586 /* - stdout */
4587 if (pipe_err == 0)
4588 {
4589 if (dup2(p_fd[1].wr, 1) == 1)
4590 {
4591 close(p_fd[1].wr);
4592 i = fcntl(p_fd[1].rd, F_GETFD, 0);
4593 fcntl(p_fd[1].rd, F_SETFD, i | FD_CLOEXEC);
4594 if ((p_s[1] = fdopen(p_fd[1].rd, rd_mode)) == NULL)
4595 {
4596 close(p_fd[1].rd);
4597 pipe_err = -1;
4598 }
4599 }
4600 else
4601 {
4602 pipe_err = -1;
4603 }
4604 }
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004605
Victor Stinnerd6f85422010-05-05 23:33:33 +00004606 /* - stderr, as required */
4607 if (pipe_err == 0)
4608 switch (n)
4609 {
4610 case POPEN_3:
4611 {
4612 if (dup2(p_fd[2].wr, 2) == 2)
4613 {
4614 close(p_fd[2].wr);
4615 i = fcntl(p_fd[2].rd, F_GETFD, 0);
4616 fcntl(p_fd[2].rd, F_SETFD, i | FD_CLOEXEC);
4617 if ((p_s[2] = fdopen(p_fd[2].rd, rd_mode)) == NULL)
4618 {
4619 close(p_fd[2].rd);
4620 pipe_err = -1;
4621 }
4622 }
4623 else
4624 {
4625 pipe_err = -1;
4626 }
4627 break;
4628 }
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004629
Victor Stinnerd6f85422010-05-05 23:33:33 +00004630 case POPEN_4:
4631 {
4632 if (dup2(1, 2) != 2)
4633 {
4634 pipe_err = -1;
4635 }
4636 break;
4637 }
4638 }
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004639
Victor Stinnerd6f85422010-05-05 23:33:33 +00004640 /* spawn the child process */
4641 if (pipe_err == 0)
4642 {
4643 pipe_pid = spawnlp(P_NOWAIT, shell, shell, opt, cmdstring, (char *)0);
4644 if (pipe_pid == -1)
4645 {
4646 pipe_err = -1;
4647 }
4648 else
4649 {
4650 /* save the PID into the FILE structure
4651 * NOTE: this implementation doesn't actually
4652 * take advantage of this, but do it for
4653 * completeness - AIM Apr01
4654 */
4655 for (i = 0; i < file_count; i++)
4656 p_s[i]->_pid = pipe_pid;
4657 }
4658 }
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004659
Victor Stinnerd6f85422010-05-05 23:33:33 +00004660 /* reset standard IO to normal */
4661 for (i = 0; i < 3; i++)
4662 {
4663 dup2(stdio[i].handle, i);
4664 fcntl(i, F_SETFD, stdio[i].flags);
4665 close(stdio[i].handle);
4666 }
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004667
Victor Stinnerd6f85422010-05-05 23:33:33 +00004668 /* if any remnant problems, clean up and bail out */
4669 if (pipe_err < 0)
4670 {
4671 for (i = 0; i < 3; i++)
4672 {
4673 close(p_fd[i].rd);
4674 close(p_fd[i].wr);
4675 }
4676 errno = EPIPE;
4677 return posix_error_with_filename(cmdstring);
4678 }
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004679
Victor Stinnerd6f85422010-05-05 23:33:33 +00004680 /* build tuple of file objects to return */
4681 if ((p_f[0] = PyFile_FromFile(p_s[0], cmdstring, wr_mode, _PyPclose)) != NULL)
4682 PyFile_SetBufSize(p_f[0], bufsize);
4683 if ((p_f[1] = PyFile_FromFile(p_s[1], cmdstring, rd_mode, _PyPclose)) != NULL)
4684 PyFile_SetBufSize(p_f[1], bufsize);
4685 if (n == POPEN_3)
4686 {
4687 if ((p_f[2] = PyFile_FromFile(p_s[2], cmdstring, rd_mode, _PyPclose)) != NULL)
4688 PyFile_SetBufSize(p_f[0], bufsize);
4689 f = PyTuple_Pack(3, p_f[0], p_f[1], p_f[2]);
4690 }
4691 else
4692 f = PyTuple_Pack(2, p_f[0], p_f[1]);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004693
Victor Stinnerd6f85422010-05-05 23:33:33 +00004694 /*
4695 * Insert the files we've created into the process dictionary
4696 * all referencing the list with the process handle and the
4697 * initial number of files (see description below in _PyPclose).
4698 * Since if _PyPclose later tried to wait on a process when all
4699 * handles weren't closed, it could create a deadlock with the
4700 * child, we spend some energy here to try to ensure that we
4701 * either insert all file handles into the dictionary or none
4702 * at all. It's a little clumsy with the various popen modes
4703 * and variable number of files involved.
4704 */
4705 if (!_PyPopenProcs)
4706 {
4707 _PyPopenProcs = PyDict_New();
4708 }
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004709
Victor Stinnerd6f85422010-05-05 23:33:33 +00004710 if (_PyPopenProcs)
4711 {
4712 PyObject *procObj, *pidObj, *intObj, *fileObj[3];
4713 int ins_rc[3];
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004714
Victor Stinnerd6f85422010-05-05 23:33:33 +00004715 fileObj[0] = fileObj[1] = fileObj[2] = NULL;
4716 ins_rc[0] = ins_rc[1] = ins_rc[2] = 0;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004717
Victor Stinnerd6f85422010-05-05 23:33:33 +00004718 procObj = PyList_New(2);
4719 pidObj = PyLong_FromPid(pipe_pid);
4720 intObj = PyInt_FromLong((long) file_count);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004721
Victor Stinnerd6f85422010-05-05 23:33:33 +00004722 if (procObj && pidObj && intObj)
4723 {
4724 PyList_SetItem(procObj, 0, pidObj);
4725 PyList_SetItem(procObj, 1, intObj);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004726
Victor Stinnerd6f85422010-05-05 23:33:33 +00004727 fileObj[0] = PyLong_FromVoidPtr(p_s[0]);
4728 if (fileObj[0])
4729 {
4730 ins_rc[0] = PyDict_SetItem(_PyPopenProcs,
4731 fileObj[0],
4732 procObj);
4733 }
4734 fileObj[1] = PyLong_FromVoidPtr(p_s[1]);
4735 if (fileObj[1])
4736 {
4737 ins_rc[1] = PyDict_SetItem(_PyPopenProcs,
4738 fileObj[1],
4739 procObj);
4740 }
4741 if (file_count >= 3)
4742 {
4743 fileObj[2] = PyLong_FromVoidPtr(p_s[2]);
4744 if (fileObj[2])
4745 {
4746 ins_rc[2] = PyDict_SetItem(_PyPopenProcs,
4747 fileObj[2],
4748 procObj);
4749 }
4750 }
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004751
Victor Stinnerd6f85422010-05-05 23:33:33 +00004752 if (ins_rc[0] < 0 || !fileObj[0] ||
4753 ins_rc[1] < 0 || (file_count > 1 && !fileObj[1]) ||
4754 ins_rc[2] < 0 || (file_count > 2 && !fileObj[2]))
4755 {
4756 /* Something failed - remove any dictionary
4757 * entries that did make it.
4758 */
4759 if (!ins_rc[0] && fileObj[0])
4760 {
4761 PyDict_DelItem(_PyPopenProcs,
4762 fileObj[0]);
4763 }
4764 if (!ins_rc[1] && fileObj[1])
4765 {
4766 PyDict_DelItem(_PyPopenProcs,
4767 fileObj[1]);
4768 }
4769 if (!ins_rc[2] && fileObj[2])
4770 {
4771 PyDict_DelItem(_PyPopenProcs,
4772 fileObj[2]);
4773 }
4774 }
4775 }
Tim Peters11b23062003-04-23 02:39:17 +00004776
Victor Stinnerd6f85422010-05-05 23:33:33 +00004777 /*
4778 * Clean up our localized references for the dictionary keys
4779 * and value since PyDict_SetItem will Py_INCREF any copies
4780 * that got placed in the dictionary.
4781 */
4782 Py_XDECREF(procObj);
4783 Py_XDECREF(fileObj[0]);
4784 Py_XDECREF(fileObj[1]);
4785 Py_XDECREF(fileObj[2]);
4786 }
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004787
Victor Stinnerd6f85422010-05-05 23:33:33 +00004788 /* Child is launched. */
4789 return f;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004790}
4791
4792/*
4793 * Wrapper for fclose() to use for popen* files, so we can retrieve the
4794 * exit code for the child process and return as a result of the close.
4795 *
4796 * This function uses the _PyPopenProcs dictionary in order to map the
4797 * input file pointer to information about the process that was
4798 * originally created by the popen* call that created the file pointer.
4799 * The dictionary uses the file pointer as a key (with one entry
4800 * inserted for each file returned by the original popen* call) and a
4801 * single list object as the value for all files from a single call.
4802 * The list object contains the Win32 process handle at [0], and a file
4803 * count at [1], which is initialized to the total number of file
4804 * handles using that list.
4805 *
4806 * This function closes whichever handle it is passed, and decrements
4807 * the file count in the dictionary for the process handle pointed to
4808 * by this file. On the last close (when the file count reaches zero),
4809 * this function will wait for the child process and then return its
4810 * exit code as the result of the close() operation. This permits the
4811 * files to be closed in any order - it is always the close() of the
4812 * final handle that will return the exit code.
Andrew MacIntyrebaf25b02003-04-21 14:22:36 +00004813 *
4814 * NOTE: This function is currently called with the GIL released.
4815 * hence we use the GILState API to manage our state.
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004816 */
4817
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004818static int _PyPclose(FILE *file)
4819{
Victor Stinnerd6f85422010-05-05 23:33:33 +00004820 int result;
4821 int exit_code;
4822 pid_t pipe_pid;
4823 PyObject *procObj, *pidObj, *intObj, *fileObj;
4824 int file_count;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004825#ifdef WITH_THREAD
Victor Stinnerd6f85422010-05-05 23:33:33 +00004826 PyGILState_STATE state;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004827#endif
4828
Victor Stinnerd6f85422010-05-05 23:33:33 +00004829 /* Close the file handle first, to ensure it can't block the
4830 * child from exiting if it's the last handle.
4831 */
4832 result = fclose(file);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004833
4834#ifdef WITH_THREAD
Victor Stinnerd6f85422010-05-05 23:33:33 +00004835 state = PyGILState_Ensure();
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004836#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00004837 if (_PyPopenProcs)
4838 {
4839 if ((fileObj = PyLong_FromVoidPtr(file)) != NULL &&
4840 (procObj = PyDict_GetItem(_PyPopenProcs,
4841 fileObj)) != NULL &&
4842 (pidObj = PyList_GetItem(procObj,0)) != NULL &&
4843 (intObj = PyList_GetItem(procObj,1)) != NULL)
4844 {
4845 pipe_pid = (pid_t) PyLong_AsPid(pidObj);
4846 file_count = (int) PyInt_AsLong(intObj);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004847
Victor Stinnerd6f85422010-05-05 23:33:33 +00004848 if (file_count > 1)
4849 {
4850 /* Still other files referencing process */
4851 file_count--;
4852 PyList_SetItem(procObj,1,
4853 PyInt_FromLong((long) file_count));
4854 }
4855 else
4856 {
4857 /* Last file for this process */
4858 if (result != EOF &&
4859 waitpid(pipe_pid, &exit_code, 0) == pipe_pid)
4860 {
4861 /* extract exit status */
4862 if (WIFEXITED(exit_code))
4863 {
4864 result = WEXITSTATUS(exit_code);
4865 }
4866 else
4867 {
4868 errno = EPIPE;
4869 result = -1;
4870 }
4871 }
4872 else
4873 {
4874 /* Indicate failure - this will cause the file object
4875 * to raise an I/O error and translate the last
4876 * error code from errno. We do have a problem with
4877 * last errors that overlap the normal errno table,
4878 * but that's a consistent problem with the file object.
4879 */
4880 result = -1;
4881 }
4882 }
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004883
Victor Stinnerd6f85422010-05-05 23:33:33 +00004884 /* Remove this file pointer from dictionary */
4885 PyDict_DelItem(_PyPopenProcs, fileObj);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004886
Victor Stinnerd6f85422010-05-05 23:33:33 +00004887 if (PyDict_Size(_PyPopenProcs) == 0)
4888 {
4889 Py_DECREF(_PyPopenProcs);
4890 _PyPopenProcs = NULL;
4891 }
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004892
Victor Stinnerd6f85422010-05-05 23:33:33 +00004893 } /* if object retrieval ok */
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004894
Victor Stinnerd6f85422010-05-05 23:33:33 +00004895 Py_XDECREF(fileObj);
4896 } /* if _PyPopenProcs */
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004897
4898#ifdef WITH_THREAD
Victor Stinnerd6f85422010-05-05 23:33:33 +00004899 PyGILState_Release(state);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004900#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00004901 return result;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004902}
4903
4904#endif /* PYCC_??? */
4905
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00004906#elif defined(MS_WINDOWS)
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004907
4908/*
4909 * Portable 'popen' replacement for Win32.
4910 *
4911 * Written by Bill Tutt <billtut@microsoft.com>. Minor tweaks
4912 * and 2.0 integration by Fredrik Lundh <fredrik@pythonware.com>
Mark Hammondb37a3732000-08-14 04:47:33 +00004913 * Return code handling by David Bolen <db3l@fitlinxx.com>.
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004914 */
4915
4916#include <malloc.h>
4917#include <io.h>
4918#include <fcntl.h>
4919
4920/* These tell _PyPopen() wether to return 1, 2, or 3 file objects. */
4921#define POPEN_1 1
4922#define POPEN_2 2
4923#define POPEN_3 3
4924#define POPEN_4 4
4925
4926static PyObject *_PyPopen(char *, int, int);
Fredrik Lundh56055a42000-07-23 19:47:12 +00004927static int _PyPclose(FILE *file);
4928
4929/*
4930 * Internal dictionary mapping popen* file pointers to process handles,
Mark Hammondb37a3732000-08-14 04:47:33 +00004931 * for use when retrieving the process exit code. See _PyPclose() below
4932 * for more information on this dictionary's use.
Fredrik Lundh56055a42000-07-23 19:47:12 +00004933 */
4934static PyObject *_PyPopenProcs = NULL;
4935
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004936
4937/* popen that works from a GUI.
4938 *
4939 * The result of this function is a pipe (file) connected to the
4940 * processes stdin or stdout, depending on the requested mode.
4941 */
4942
4943static PyObject *
4944posix_popen(PyObject *self, PyObject *args)
4945{
Victor Stinnerd6f85422010-05-05 23:33:33 +00004946 PyObject *f;
4947 int tm = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00004948
Victor Stinnerd6f85422010-05-05 23:33:33 +00004949 char *cmdstring;
4950 char *mode = "r";
4951 int bufsize = -1;
4952 if (!PyArg_ParseTuple(args, "s|si:popen", &cmdstring, &mode, &bufsize))
4953 return NULL;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004954
Victor Stinnerd6f85422010-05-05 23:33:33 +00004955 if (*mode == 'r')
4956 tm = _O_RDONLY;
4957 else if (*mode != 'w') {
4958 PyErr_SetString(PyExc_ValueError, "popen() arg 2 must be 'r' or 'w'");
4959 return NULL;
4960 } else
4961 tm = _O_WRONLY;
Tim Peters5aa91602002-01-30 05:46:57 +00004962
Victor Stinnerd6f85422010-05-05 23:33:33 +00004963 if (bufsize != -1) {
4964 PyErr_SetString(PyExc_ValueError, "popen() arg 3 must be -1");
4965 return NULL;
4966 }
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004967
Victor Stinnerd6f85422010-05-05 23:33:33 +00004968 if (*(mode+1) == 't')
4969 f = _PyPopen(cmdstring, tm | _O_TEXT, POPEN_1);
4970 else if (*(mode+1) == 'b')
4971 f = _PyPopen(cmdstring, tm | _O_BINARY, POPEN_1);
4972 else
4973 f = _PyPopen(cmdstring, tm | _O_TEXT, POPEN_1);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004974
Victor Stinnerd6f85422010-05-05 23:33:33 +00004975 return f;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004976}
4977
4978/* Variation on win32pipe.popen
4979 *
4980 * The result of this function is a pipe (file) connected to the
4981 * process's stdin, and a pipe connected to the process's stdout.
4982 */
4983
4984static PyObject *
4985win32_popen2(PyObject *self, PyObject *args)
4986{
Victor Stinnerd6f85422010-05-05 23:33:33 +00004987 PyObject *f;
4988 int tm=0;
Tim Peters5aa91602002-01-30 05:46:57 +00004989
Victor Stinnerd6f85422010-05-05 23:33:33 +00004990 char *cmdstring;
4991 char *mode = "t";
4992 int bufsize = -1;
4993 if (!PyArg_ParseTuple(args, "s|si:popen2", &cmdstring, &mode, &bufsize))
4994 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00004995
Victor Stinnerd6f85422010-05-05 23:33:33 +00004996 if (*mode == 't')
4997 tm = _O_TEXT;
4998 else if (*mode != 'b') {
4999 PyErr_SetString(PyExc_ValueError, "popen2() arg 2 must be 't' or 'b'");
5000 return NULL;
5001 } else
5002 tm = _O_BINARY;
Tim Peters5aa91602002-01-30 05:46:57 +00005003
Victor Stinnerd6f85422010-05-05 23:33:33 +00005004 if (bufsize != -1) {
5005 PyErr_SetString(PyExc_ValueError, "popen2() arg 3 must be -1");
5006 return NULL;
5007 }
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00005008
Victor Stinnerd6f85422010-05-05 23:33:33 +00005009 f = _PyPopen(cmdstring, tm, POPEN_2);
Tim Peters5aa91602002-01-30 05:46:57 +00005010
Victor Stinnerd6f85422010-05-05 23:33:33 +00005011 return f;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005012}
5013
5014/*
5015 * Variation on <om win32pipe.popen>
Fredrik Lundhbb7eeff2000-07-09 17:59:32 +00005016 *
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005017 * The result of this function is 3 pipes - the process's stdin,
5018 * stdout and stderr
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005019 */
5020
5021static PyObject *
5022win32_popen3(PyObject *self, PyObject *args)
5023{
Victor Stinnerd6f85422010-05-05 23:33:33 +00005024 PyObject *f;
5025 int tm = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00005026
Victor Stinnerd6f85422010-05-05 23:33:33 +00005027 char *cmdstring;
5028 char *mode = "t";
5029 int bufsize = -1;
5030 if (!PyArg_ParseTuple(args, "s|si:popen3", &cmdstring, &mode, &bufsize))
5031 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00005032
Victor Stinnerd6f85422010-05-05 23:33:33 +00005033 if (*mode == 't')
5034 tm = _O_TEXT;
5035 else if (*mode != 'b') {
5036 PyErr_SetString(PyExc_ValueError, "popen3() arg 2 must be 't' or 'b'");
5037 return NULL;
5038 } else
5039 tm = _O_BINARY;
Tim Peters5aa91602002-01-30 05:46:57 +00005040
Victor Stinnerd6f85422010-05-05 23:33:33 +00005041 if (bufsize != -1) {
5042 PyErr_SetString(PyExc_ValueError, "popen3() arg 3 must be -1");
5043 return NULL;
5044 }
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00005045
Victor Stinnerd6f85422010-05-05 23:33:33 +00005046 f = _PyPopen(cmdstring, tm, POPEN_3);
Tim Peters5aa91602002-01-30 05:46:57 +00005047
Victor Stinnerd6f85422010-05-05 23:33:33 +00005048 return f;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005049}
5050
5051/*
5052 * Variation on win32pipe.popen
5053 *
Tim Peters5aa91602002-01-30 05:46:57 +00005054 * The result of this function is 2 pipes - the processes stdin,
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005055 * and stdout+stderr combined as a single pipe.
5056 */
5057
5058static PyObject *
5059win32_popen4(PyObject *self, PyObject *args)
5060{
Victor Stinnerd6f85422010-05-05 23:33:33 +00005061 PyObject *f;
5062 int tm = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00005063
Victor Stinnerd6f85422010-05-05 23:33:33 +00005064 char *cmdstring;
5065 char *mode = "t";
5066 int bufsize = -1;
5067 if (!PyArg_ParseTuple(args, "s|si:popen4", &cmdstring, &mode, &bufsize))
5068 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00005069
Victor Stinnerd6f85422010-05-05 23:33:33 +00005070 if (*mode == 't')
5071 tm = _O_TEXT;
5072 else if (*mode != 'b') {
5073 PyErr_SetString(PyExc_ValueError, "popen4() arg 2 must be 't' or 'b'");
5074 return NULL;
5075 } else
5076 tm = _O_BINARY;
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00005077
Victor Stinnerd6f85422010-05-05 23:33:33 +00005078 if (bufsize != -1) {
5079 PyErr_SetString(PyExc_ValueError, "popen4() arg 3 must be -1");
5080 return NULL;
5081 }
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00005082
Victor Stinnerd6f85422010-05-05 23:33:33 +00005083 f = _PyPopen(cmdstring, tm, POPEN_4);
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00005084
Victor Stinnerd6f85422010-05-05 23:33:33 +00005085 return f;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005086}
5087
Mark Hammond08501372001-01-31 07:30:29 +00005088static BOOL
Mark Hammondb37a3732000-08-14 04:47:33 +00005089_PyPopenCreateProcess(char *cmdstring,
Victor Stinnerd6f85422010-05-05 23:33:33 +00005090 HANDLE hStdin,
5091 HANDLE hStdout,
5092 HANDLE hStderr,
5093 HANDLE *hProcess)
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005094{
Victor Stinnerd6f85422010-05-05 23:33:33 +00005095 PROCESS_INFORMATION piProcInfo;
5096 STARTUPINFO siStartInfo;
5097 DWORD dwProcessFlags = 0; /* no NEW_CONSOLE by default for Ctrl+C handling */
5098 char *s1,*s2, *s3 = " /c ";
5099 const char *szConsoleSpawn = "w9xpopen.exe";
5100 int i;
5101 Py_ssize_t x;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005102
Victor Stinnerd6f85422010-05-05 23:33:33 +00005103 if (i = GetEnvironmentVariable("COMSPEC",NULL,0)) {
5104 char *comshell;
Tim Peters402d5982001-08-27 06:37:48 +00005105
Victor Stinnerd6f85422010-05-05 23:33:33 +00005106 s1 = (char *)alloca(i);
5107 if (!(x = GetEnvironmentVariable("COMSPEC", s1, i)))
5108 /* x < i, so x fits into an integer */
5109 return (int)x;
Tim Peters402d5982001-08-27 06:37:48 +00005110
Victor Stinnerd6f85422010-05-05 23:33:33 +00005111 /* Explicitly check if we are using COMMAND.COM. If we are
5112 * then use the w9xpopen hack.
5113 */
5114 comshell = s1 + x;
5115 while (comshell >= s1 && *comshell != '\\')
5116 --comshell;
5117 ++comshell;
Tim Peters402d5982001-08-27 06:37:48 +00005118
Victor Stinnerd6f85422010-05-05 23:33:33 +00005119 if (GetVersion() < 0x80000000 &&
5120 _stricmp(comshell, "command.com") != 0) {
5121 /* NT/2000 and not using command.com. */
5122 x = i + strlen(s3) + strlen(cmdstring) + 1;
5123 s2 = (char *)alloca(x);
5124 ZeroMemory(s2, x);
5125 PyOS_snprintf(s2, x, "%s%s%s", s1, s3, cmdstring);
5126 }
5127 else {
5128 /*
5129 * Oh gag, we're on Win9x or using COMMAND.COM. Use
5130 * the workaround listed in KB: Q150956
5131 */
5132 char modulepath[_MAX_PATH];
5133 struct stat statinfo;
5134 GetModuleFileName(NULL, modulepath, sizeof(modulepath));
5135 for (x = i = 0; modulepath[i]; i++)
5136 if (modulepath[i] == SEP)
5137 x = i+1;
5138 modulepath[x] = '\0';
5139 /* Create the full-name to w9xpopen, so we can test it exists */
5140 strncat(modulepath,
5141 szConsoleSpawn,
5142 (sizeof(modulepath)/sizeof(modulepath[0]))
5143 -strlen(modulepath));
5144 if (stat(modulepath, &statinfo) != 0) {
5145 size_t mplen = sizeof(modulepath)/sizeof(modulepath[0]);
5146 /* Eeek - file-not-found - possibly an embedding
5147 situation - see if we can locate it in sys.prefix
5148 */
5149 strncpy(modulepath,
5150 Py_GetExecPrefix(),
5151 mplen);
5152 modulepath[mplen-1] = '\0';
5153 if (modulepath[strlen(modulepath)-1] != '\\')
5154 strcat(modulepath, "\\");
5155 strncat(modulepath,
5156 szConsoleSpawn,
5157 mplen-strlen(modulepath));
5158 /* No where else to look - raise an easily identifiable
5159 error, rather than leaving Windows to report
5160 "file not found" - as the user is probably blissfully
5161 unaware this shim EXE is used, and it will confuse them.
5162 (well, it confused me for a while ;-)
5163 */
5164 if (stat(modulepath, &statinfo) != 0) {
5165 PyErr_Format(PyExc_RuntimeError,
5166 "Can not locate '%s' which is needed "
5167 "for popen to work with your shell "
5168 "or platform.",
5169 szConsoleSpawn);
5170 return FALSE;
5171 }
5172 }
5173 x = i + strlen(s3) + strlen(cmdstring) + 1 +
5174 strlen(modulepath) +
5175 strlen(szConsoleSpawn) + 1;
Mark Hammond08501372001-01-31 07:30:29 +00005176
Victor Stinnerd6f85422010-05-05 23:33:33 +00005177 s2 = (char *)alloca(x);
5178 ZeroMemory(s2, x);
5179 /* To maintain correct argument passing semantics,
5180 we pass the command-line as it stands, and allow
5181 quoting to be applied. w9xpopen.exe will then
5182 use its argv vector, and re-quote the necessary
5183 args for the ultimate child process.
5184 */
5185 PyOS_snprintf(
5186 s2, x,
5187 "\"%s\" %s%s%s",
5188 modulepath,
5189 s1,
5190 s3,
5191 cmdstring);
5192 /* Not passing CREATE_NEW_CONSOLE has been known to
5193 cause random failures on win9x. Specifically a
5194 dialog:
5195 "Your program accessed mem currently in use at xxx"
5196 and a hopeful warning about the stability of your
5197 system.
5198 Cost is Ctrl+C won't kill children, but anyone
5199 who cares can have a go!
5200 */
5201 dwProcessFlags |= CREATE_NEW_CONSOLE;
5202 }
5203 }
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005204
Victor Stinnerd6f85422010-05-05 23:33:33 +00005205 /* Could be an else here to try cmd.exe / command.com in the path
5206 Now we'll just error out.. */
5207 else {
5208 PyErr_SetString(PyExc_RuntimeError,
5209 "Cannot locate a COMSPEC environment variable to "
5210 "use as the shell");
5211 return FALSE;
5212 }
Tim Peters5aa91602002-01-30 05:46:57 +00005213
Victor Stinnerd6f85422010-05-05 23:33:33 +00005214 ZeroMemory(&siStartInfo, sizeof(STARTUPINFO));
5215 siStartInfo.cb = sizeof(STARTUPINFO);
5216 siStartInfo.dwFlags = STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW;
5217 siStartInfo.hStdInput = hStdin;
5218 siStartInfo.hStdOutput = hStdout;
5219 siStartInfo.hStdError = hStderr;
5220 siStartInfo.wShowWindow = SW_HIDE;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005221
Victor Stinnerd6f85422010-05-05 23:33:33 +00005222 if (CreateProcess(NULL,
5223 s2,
5224 NULL,
5225 NULL,
5226 TRUE,
5227 dwProcessFlags,
5228 NULL,
5229 NULL,
5230 &siStartInfo,
5231 &piProcInfo) ) {
5232 /* Close the handles now so anyone waiting is woken. */
5233 CloseHandle(piProcInfo.hThread);
Fredrik Lundh56055a42000-07-23 19:47:12 +00005234
Victor Stinnerd6f85422010-05-05 23:33:33 +00005235 /* Return process handle */
5236 *hProcess = piProcInfo.hProcess;
5237 return TRUE;
5238 }
5239 win32_error("CreateProcess", s2);
5240 return FALSE;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005241}
5242
5243/* The following code is based off of KB: Q190351 */
5244
5245static PyObject *
5246_PyPopen(char *cmdstring, int mode, int n)
5247{
Victor Stinnerd6f85422010-05-05 23:33:33 +00005248 HANDLE hChildStdinRd, hChildStdinWr, hChildStdoutRd, hChildStdoutWr,
5249 hChildStderrRd, hChildStderrWr, hChildStdinWrDup, hChildStdoutRdDup,
5250 hChildStderrRdDup, hProcess; /* hChildStdoutWrDup; */
Tim Peters5aa91602002-01-30 05:46:57 +00005251
Victor Stinnerd6f85422010-05-05 23:33:33 +00005252 SECURITY_ATTRIBUTES saAttr;
5253 BOOL fSuccess;
5254 int fd1, fd2, fd3;
5255 FILE *f1, *f2, *f3;
5256 long file_count;
5257 PyObject *f;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005258
Victor Stinnerd6f85422010-05-05 23:33:33 +00005259 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
5260 saAttr.bInheritHandle = TRUE;
5261 saAttr.lpSecurityDescriptor = NULL;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005262
Victor Stinnerd6f85422010-05-05 23:33:33 +00005263 if (!CreatePipe(&hChildStdinRd, &hChildStdinWr, &saAttr, 0))
5264 return win32_error("CreatePipe", NULL);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005265
Victor Stinnerd6f85422010-05-05 23:33:33 +00005266 /* Create new output read handle and the input write handle. Set
5267 * the inheritance properties to FALSE. Otherwise, the child inherits
5268 * these handles; resulting in non-closeable handles to the pipes
5269 * being created. */
5270 fSuccess = DuplicateHandle(GetCurrentProcess(), hChildStdinWr,
5271 GetCurrentProcess(), &hChildStdinWrDup, 0,
5272 FALSE,
5273 DUPLICATE_SAME_ACCESS);
5274 if (!fSuccess)
5275 return win32_error("DuplicateHandle", NULL);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005276
Victor Stinnerd6f85422010-05-05 23:33:33 +00005277 /* Close the inheritable version of ChildStdin
5278 that we're using. */
5279 CloseHandle(hChildStdinWr);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005280
Victor Stinnerd6f85422010-05-05 23:33:33 +00005281 if (!CreatePipe(&hChildStdoutRd, &hChildStdoutWr, &saAttr, 0))
5282 return win32_error("CreatePipe", NULL);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005283
Victor Stinnerd6f85422010-05-05 23:33:33 +00005284 fSuccess = DuplicateHandle(GetCurrentProcess(), hChildStdoutRd,
5285 GetCurrentProcess(), &hChildStdoutRdDup, 0,
5286 FALSE, DUPLICATE_SAME_ACCESS);
5287 if (!fSuccess)
5288 return win32_error("DuplicateHandle", NULL);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005289
Victor Stinnerd6f85422010-05-05 23:33:33 +00005290 /* Close the inheritable version of ChildStdout
5291 that we're using. */
5292 CloseHandle(hChildStdoutRd);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005293
Victor Stinnerd6f85422010-05-05 23:33:33 +00005294 if (n != POPEN_4) {
5295 if (!CreatePipe(&hChildStderrRd, &hChildStderrWr, &saAttr, 0))
5296 return win32_error("CreatePipe", NULL);
5297 fSuccess = DuplicateHandle(GetCurrentProcess(),
5298 hChildStderrRd,
5299 GetCurrentProcess(),
5300 &hChildStderrRdDup, 0,
5301 FALSE, DUPLICATE_SAME_ACCESS);
5302 if (!fSuccess)
5303 return win32_error("DuplicateHandle", NULL);
5304 /* Close the inheritable version of ChildStdErr that we're using. */
5305 CloseHandle(hChildStderrRd);
5306 }
Tim Peters5aa91602002-01-30 05:46:57 +00005307
Victor Stinnerd6f85422010-05-05 23:33:33 +00005308 switch (n) {
5309 case POPEN_1:
5310 switch (mode & (_O_RDONLY | _O_TEXT | _O_BINARY | _O_WRONLY)) {
5311 case _O_WRONLY | _O_TEXT:
5312 /* Case for writing to child Stdin in text mode. */
5313 fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode);
5314 f1 = _fdopen(fd1, "w");
5315 f = PyFile_FromFile(f1, cmdstring, "w", _PyPclose);
5316 PyFile_SetBufSize(f, 0);
5317 /* We don't care about these pipes anymore, so close them. */
5318 CloseHandle(hChildStdoutRdDup);
5319 CloseHandle(hChildStderrRdDup);
5320 break;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005321
Victor Stinnerd6f85422010-05-05 23:33:33 +00005322 case _O_RDONLY | _O_TEXT:
5323 /* Case for reading from child Stdout in text mode. */
5324 fd1 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode);
5325 f1 = _fdopen(fd1, "r");
5326 f = PyFile_FromFile(f1, cmdstring, "r", _PyPclose);
5327 PyFile_SetBufSize(f, 0);
5328 /* We don't care about these pipes anymore, so close them. */
5329 CloseHandle(hChildStdinWrDup);
5330 CloseHandle(hChildStderrRdDup);
5331 break;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005332
Victor Stinnerd6f85422010-05-05 23:33:33 +00005333 case _O_RDONLY | _O_BINARY:
5334 /* Case for readinig from child Stdout in binary mode. */
5335 fd1 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode);
5336 f1 = _fdopen(fd1, "rb");
5337 f = PyFile_FromFile(f1, cmdstring, "rb", _PyPclose);
5338 PyFile_SetBufSize(f, 0);
5339 /* We don't care about these pipes anymore, so close them. */
5340 CloseHandle(hChildStdinWrDup);
5341 CloseHandle(hChildStderrRdDup);
5342 break;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005343
Victor Stinnerd6f85422010-05-05 23:33:33 +00005344 case _O_WRONLY | _O_BINARY:
5345 /* Case for writing to child Stdin in binary mode. */
5346 fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode);
5347 f1 = _fdopen(fd1, "wb");
5348 f = PyFile_FromFile(f1, cmdstring, "wb", _PyPclose);
5349 PyFile_SetBufSize(f, 0);
5350 /* We don't care about these pipes anymore, so close them. */
5351 CloseHandle(hChildStdoutRdDup);
5352 CloseHandle(hChildStderrRdDup);
5353 break;
5354 }
5355 file_count = 1;
5356 break;
Tim Peters5aa91602002-01-30 05:46:57 +00005357
Victor Stinnerd6f85422010-05-05 23:33:33 +00005358 case POPEN_2:
5359 case POPEN_4:
5360 {
5361 char *m1, *m2;
5362 PyObject *p1, *p2;
Tim Peters5aa91602002-01-30 05:46:57 +00005363
Victor Stinnerd6f85422010-05-05 23:33:33 +00005364 if (mode & _O_TEXT) {
5365 m1 = "r";
5366 m2 = "w";
5367 } else {
5368 m1 = "rb";
5369 m2 = "wb";
5370 }
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005371
Victor Stinnerd6f85422010-05-05 23:33:33 +00005372 fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode);
5373 f1 = _fdopen(fd1, m2);
5374 fd2 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode);
5375 f2 = _fdopen(fd2, m1);
5376 p1 = PyFile_FromFile(f1, cmdstring, m2, _PyPclose);
5377 PyFile_SetBufSize(p1, 0);
5378 p2 = PyFile_FromFile(f2, cmdstring, m1, _PyPclose);
5379 PyFile_SetBufSize(p2, 0);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005380
Victor Stinnerd6f85422010-05-05 23:33:33 +00005381 if (n != 4)
5382 CloseHandle(hChildStderrRdDup);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005383
Victor Stinnerd6f85422010-05-05 23:33:33 +00005384 f = PyTuple_Pack(2,p1,p2);
5385 Py_XDECREF(p1);
5386 Py_XDECREF(p2);
5387 file_count = 2;
5388 break;
5389 }
Tim Peters5aa91602002-01-30 05:46:57 +00005390
Victor Stinnerd6f85422010-05-05 23:33:33 +00005391 case POPEN_3:
5392 {
5393 char *m1, *m2;
5394 PyObject *p1, *p2, *p3;
Tim Peters5aa91602002-01-30 05:46:57 +00005395
Victor Stinnerd6f85422010-05-05 23:33:33 +00005396 if (mode & _O_TEXT) {
5397 m1 = "r";
5398 m2 = "w";
5399 } else {
5400 m1 = "rb";
5401 m2 = "wb";
5402 }
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005403
Victor Stinnerd6f85422010-05-05 23:33:33 +00005404 fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode);
5405 f1 = _fdopen(fd1, m2);
5406 fd2 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode);
5407 f2 = _fdopen(fd2, m1);
5408 fd3 = _open_osfhandle((Py_intptr_t)hChildStderrRdDup, mode);
5409 f3 = _fdopen(fd3, m1);
5410 p1 = PyFile_FromFile(f1, cmdstring, m2, _PyPclose);
5411 p2 = PyFile_FromFile(f2, cmdstring, m1, _PyPclose);
5412 p3 = PyFile_FromFile(f3, cmdstring, m1, _PyPclose);
5413 PyFile_SetBufSize(p1, 0);
5414 PyFile_SetBufSize(p2, 0);
5415 PyFile_SetBufSize(p3, 0);
5416 f = PyTuple_Pack(3,p1,p2,p3);
5417 Py_XDECREF(p1);
5418 Py_XDECREF(p2);
5419 Py_XDECREF(p3);
5420 file_count = 3;
5421 break;
5422 }
5423 }
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005424
Victor Stinnerd6f85422010-05-05 23:33:33 +00005425 if (n == POPEN_4) {
5426 if (!_PyPopenCreateProcess(cmdstring,
5427 hChildStdinRd,
5428 hChildStdoutWr,
5429 hChildStdoutWr,
5430 &hProcess))
5431 return NULL;
5432 }
5433 else {
5434 if (!_PyPopenCreateProcess(cmdstring,
5435 hChildStdinRd,
5436 hChildStdoutWr,
5437 hChildStderrWr,
5438 &hProcess))
5439 return NULL;
5440 }
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005441
Victor Stinnerd6f85422010-05-05 23:33:33 +00005442 /*
5443 * Insert the files we've created into the process dictionary
5444 * all referencing the list with the process handle and the
5445 * initial number of files (see description below in _PyPclose).
5446 * Since if _PyPclose later tried to wait on a process when all
5447 * handles weren't closed, it could create a deadlock with the
5448 * child, we spend some energy here to try to ensure that we
5449 * either insert all file handles into the dictionary or none
5450 * at all. It's a little clumsy with the various popen modes
5451 * and variable number of files involved.
5452 */
5453 if (!_PyPopenProcs) {
5454 _PyPopenProcs = PyDict_New();
5455 }
Mark Hammondb37a3732000-08-14 04:47:33 +00005456
Victor Stinnerd6f85422010-05-05 23:33:33 +00005457 if (_PyPopenProcs) {
5458 PyObject *procObj, *hProcessObj, *intObj, *fileObj[3];
5459 int ins_rc[3];
Mark Hammondb37a3732000-08-14 04:47:33 +00005460
Victor Stinnerd6f85422010-05-05 23:33:33 +00005461 fileObj[0] = fileObj[1] = fileObj[2] = NULL;
5462 ins_rc[0] = ins_rc[1] = ins_rc[2] = 0;
Mark Hammondb37a3732000-08-14 04:47:33 +00005463
Victor Stinnerd6f85422010-05-05 23:33:33 +00005464 procObj = PyList_New(2);
5465 hProcessObj = PyLong_FromVoidPtr(hProcess);
5466 intObj = PyInt_FromLong(file_count);
Mark Hammondb37a3732000-08-14 04:47:33 +00005467
Victor Stinnerd6f85422010-05-05 23:33:33 +00005468 if (procObj && hProcessObj && intObj) {
5469 PyList_SetItem(procObj,0,hProcessObj);
5470 PyList_SetItem(procObj,1,intObj);
Mark Hammondb37a3732000-08-14 04:47:33 +00005471
Victor Stinnerd6f85422010-05-05 23:33:33 +00005472 fileObj[0] = PyLong_FromVoidPtr(f1);
5473 if (fileObj[0]) {
5474 ins_rc[0] = PyDict_SetItem(_PyPopenProcs,
5475 fileObj[0],
5476 procObj);
5477 }
5478 if (file_count >= 2) {
5479 fileObj[1] = PyLong_FromVoidPtr(f2);
5480 if (fileObj[1]) {
5481 ins_rc[1] = PyDict_SetItem(_PyPopenProcs,
5482 fileObj[1],
5483 procObj);
5484 }
5485 }
5486 if (file_count >= 3) {
5487 fileObj[2] = PyLong_FromVoidPtr(f3);
5488 if (fileObj[2]) {
5489 ins_rc[2] = PyDict_SetItem(_PyPopenProcs,
5490 fileObj[2],
5491 procObj);
5492 }
5493 }
Mark Hammondb37a3732000-08-14 04:47:33 +00005494
Victor Stinnerd6f85422010-05-05 23:33:33 +00005495 if (ins_rc[0] < 0 || !fileObj[0] ||
5496 ins_rc[1] < 0 || (file_count > 1 && !fileObj[1]) ||
5497 ins_rc[2] < 0 || (file_count > 2 && !fileObj[2])) {
5498 /* Something failed - remove any dictionary
5499 * entries that did make it.
5500 */
5501 if (!ins_rc[0] && fileObj[0]) {
5502 PyDict_DelItem(_PyPopenProcs,
5503 fileObj[0]);
5504 }
5505 if (!ins_rc[1] && fileObj[1]) {
5506 PyDict_DelItem(_PyPopenProcs,
5507 fileObj[1]);
5508 }
5509 if (!ins_rc[2] && fileObj[2]) {
5510 PyDict_DelItem(_PyPopenProcs,
5511 fileObj[2]);
5512 }
5513 }
5514 }
Tim Peters5aa91602002-01-30 05:46:57 +00005515
Victor Stinnerd6f85422010-05-05 23:33:33 +00005516 /*
5517 * Clean up our localized references for the dictionary keys
5518 * and value since PyDict_SetItem will Py_INCREF any copies
5519 * that got placed in the dictionary.
5520 */
5521 Py_XDECREF(procObj);
5522 Py_XDECREF(fileObj[0]);
5523 Py_XDECREF(fileObj[1]);
5524 Py_XDECREF(fileObj[2]);
5525 }
Mark Hammondb37a3732000-08-14 04:47:33 +00005526
Victor Stinnerd6f85422010-05-05 23:33:33 +00005527 /* Child is launched. Close the parents copy of those pipe
5528 * handles that only the child should have open. You need to
5529 * make sure that no handles to the write end of the output pipe
5530 * are maintained in this process or else the pipe will not close
5531 * when the child process exits and the ReadFile will hang. */
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005532
Victor Stinnerd6f85422010-05-05 23:33:33 +00005533 if (!CloseHandle(hChildStdinRd))
5534 return win32_error("CloseHandle", NULL);
Tim Peters5aa91602002-01-30 05:46:57 +00005535
Victor Stinnerd6f85422010-05-05 23:33:33 +00005536 if (!CloseHandle(hChildStdoutWr))
5537 return win32_error("CloseHandle", NULL);
Tim Peters5aa91602002-01-30 05:46:57 +00005538
Victor Stinnerd6f85422010-05-05 23:33:33 +00005539 if ((n != 4) && (!CloseHandle(hChildStderrWr)))
5540 return win32_error("CloseHandle", NULL);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005541
Victor Stinnerd6f85422010-05-05 23:33:33 +00005542 return f;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005543}
Fredrik Lundh56055a42000-07-23 19:47:12 +00005544
5545/*
5546 * Wrapper for fclose() to use for popen* files, so we can retrieve the
5547 * exit code for the child process and return as a result of the close.
Mark Hammondb37a3732000-08-14 04:47:33 +00005548 *
5549 * This function uses the _PyPopenProcs dictionary in order to map the
5550 * input file pointer to information about the process that was
5551 * originally created by the popen* call that created the file pointer.
5552 * The dictionary uses the file pointer as a key (with one entry
5553 * inserted for each file returned by the original popen* call) and a
5554 * single list object as the value for all files from a single call.
5555 * The list object contains the Win32 process handle at [0], and a file
5556 * count at [1], which is initialized to the total number of file
5557 * handles using that list.
5558 *
5559 * This function closes whichever handle it is passed, and decrements
5560 * the file count in the dictionary for the process handle pointed to
5561 * by this file. On the last close (when the file count reaches zero),
5562 * this function will wait for the child process and then return its
5563 * exit code as the result of the close() operation. This permits the
5564 * files to be closed in any order - it is always the close() of the
5565 * final handle that will return the exit code.
Mark Hammond8d98d2c2003-04-19 15:41:53 +00005566 *
5567 * NOTE: This function is currently called with the GIL released.
5568 * hence we use the GILState API to manage our state.
Fredrik Lundh56055a42000-07-23 19:47:12 +00005569 */
Tim Peters736aa322000-09-01 06:51:24 +00005570
Fredrik Lundh56055a42000-07-23 19:47:12 +00005571static int _PyPclose(FILE *file)
5572{
Victor Stinnerd6f85422010-05-05 23:33:33 +00005573 int result;
5574 DWORD exit_code;
5575 HANDLE hProcess;
5576 PyObject *procObj, *hProcessObj, *intObj, *fileObj;
5577 long file_count;
Tim Peters736aa322000-09-01 06:51:24 +00005578#ifdef WITH_THREAD
Victor Stinnerd6f85422010-05-05 23:33:33 +00005579 PyGILState_STATE state;
Tim Peters736aa322000-09-01 06:51:24 +00005580#endif
5581
Victor Stinnerd6f85422010-05-05 23:33:33 +00005582 /* Close the file handle first, to ensure it can't block the
5583 * child from exiting if it's the last handle.
5584 */
5585 result = fclose(file);
Tim Peters736aa322000-09-01 06:51:24 +00005586#ifdef WITH_THREAD
Victor Stinnerd6f85422010-05-05 23:33:33 +00005587 state = PyGILState_Ensure();
Tim Peters736aa322000-09-01 06:51:24 +00005588#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00005589 if (_PyPopenProcs) {
5590 if ((fileObj = PyLong_FromVoidPtr(file)) != NULL &&
5591 (procObj = PyDict_GetItem(_PyPopenProcs,
5592 fileObj)) != NULL &&
5593 (hProcessObj = PyList_GetItem(procObj,0)) != NULL &&
5594 (intObj = PyList_GetItem(procObj,1)) != NULL) {
Mark Hammondb37a3732000-08-14 04:47:33 +00005595
Victor Stinnerd6f85422010-05-05 23:33:33 +00005596 hProcess = PyLong_AsVoidPtr(hProcessObj);
5597 file_count = PyInt_AsLong(intObj);
Mark Hammondb37a3732000-08-14 04:47:33 +00005598
Victor Stinnerd6f85422010-05-05 23:33:33 +00005599 if (file_count > 1) {
5600 /* Still other files referencing process */
5601 file_count--;
5602 PyList_SetItem(procObj,1,
5603 PyInt_FromLong(file_count));
5604 } else {
5605 /* Last file for this process */
5606 if (result != EOF &&
5607 WaitForSingleObject(hProcess, INFINITE) != WAIT_FAILED &&
5608 GetExitCodeProcess(hProcess, &exit_code)) {
5609 /* Possible truncation here in 16-bit environments, but
5610 * real exit codes are just the lower byte in any event.
5611 */
5612 result = exit_code;
5613 } else {
5614 /* Indicate failure - this will cause the file object
5615 * to raise an I/O error and translate the last Win32
5616 * error code from errno. We do have a problem with
5617 * last errors that overlap the normal errno table,
5618 * but that's a consistent problem with the file object.
5619 */
5620 if (result != EOF) {
5621 /* If the error wasn't from the fclose(), then
5622 * set errno for the file object error handling.
5623 */
5624 errno = GetLastError();
5625 }
5626 result = -1;
5627 }
Fredrik Lundh56055a42000-07-23 19:47:12 +00005628
Victor Stinnerd6f85422010-05-05 23:33:33 +00005629 /* Free up the native handle at this point */
5630 CloseHandle(hProcess);
5631 }
Fredrik Lundh56055a42000-07-23 19:47:12 +00005632
Victor Stinnerd6f85422010-05-05 23:33:33 +00005633 /* Remove this file pointer from dictionary */
5634 PyDict_DelItem(_PyPopenProcs, fileObj);
Mark Hammondb37a3732000-08-14 04:47:33 +00005635
Victor Stinnerd6f85422010-05-05 23:33:33 +00005636 if (PyDict_Size(_PyPopenProcs) == 0) {
5637 Py_DECREF(_PyPopenProcs);
5638 _PyPopenProcs = NULL;
5639 }
Mark Hammondb37a3732000-08-14 04:47:33 +00005640
Victor Stinnerd6f85422010-05-05 23:33:33 +00005641 } /* if object retrieval ok */
Mark Hammondb37a3732000-08-14 04:47:33 +00005642
Victor Stinnerd6f85422010-05-05 23:33:33 +00005643 Py_XDECREF(fileObj);
5644 } /* if _PyPopenProcs */
Fredrik Lundh56055a42000-07-23 19:47:12 +00005645
Tim Peters736aa322000-09-01 06:51:24 +00005646#ifdef WITH_THREAD
Victor Stinnerd6f85422010-05-05 23:33:33 +00005647 PyGILState_Release(state);
Tim Peters736aa322000-09-01 06:51:24 +00005648#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00005649 return result;
Fredrik Lundh56055a42000-07-23 19:47:12 +00005650}
Tim Peters9acdd3a2000-09-01 19:26:36 +00005651
5652#else /* which OS? */
Barry Warsaw53699e91996-12-10 23:23:01 +00005653static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005654posix_popen(PyObject *self, PyObject *args)
Guido van Rossum3b066191991-06-04 19:40:25 +00005655{
Victor Stinnerd6f85422010-05-05 23:33:33 +00005656 char *name;
5657 char *mode = "r";
5658 int bufsize = -1;
5659 FILE *fp;
5660 PyObject *f;
5661 if (!PyArg_ParseTuple(args, "s|si:popen", &name, &mode, &bufsize))
5662 return NULL;
5663 /* Strip mode of binary or text modifiers */
5664 if (strcmp(mode, "rb") == 0 || strcmp(mode, "rt") == 0)
5665 mode = "r";
5666 else if (strcmp(mode, "wb") == 0 || strcmp(mode, "wt") == 0)
5667 mode = "w";
5668 Py_BEGIN_ALLOW_THREADS
5669 fp = popen(name, mode);
5670 Py_END_ALLOW_THREADS
5671 if (fp == NULL)
5672 return posix_error();
5673 f = PyFile_FromFile(fp, name, mode, pclose);
5674 if (f != NULL)
5675 PyFile_SetBufSize(f, bufsize);
5676 return f;
Guido van Rossum3b066191991-06-04 19:40:25 +00005677}
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00005678
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00005679#endif /* PYOS_??? */
Guido van Rossuma4916fa1996-05-23 22:58:55 +00005680#endif /* HAVE_POPEN */
Guido van Rossum3b066191991-06-04 19:40:25 +00005681
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005682
Guido van Rossumb6775db1994-08-01 11:34:53 +00005683#ifdef HAVE_SETUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005684PyDoc_STRVAR(posix_setuid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005685"setuid(uid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005686Set the current process's user id.");
5687
Barry Warsaw53699e91996-12-10 23:23:01 +00005688static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005689posix_setuid(PyObject *self, PyObject *args)
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005690{
Victor Stinnerd6f85422010-05-05 23:33:33 +00005691 long uid_arg;
5692 uid_t uid;
5693 if (!PyArg_ParseTuple(args, "l:setuid", &uid_arg))
5694 return NULL;
5695 uid = uid_arg;
5696 if (uid != uid_arg) {
5697 PyErr_SetString(PyExc_OverflowError, "user id too big");
5698 return NULL;
5699 }
5700 if (setuid(uid) < 0)
5701 return posix_error();
5702 Py_INCREF(Py_None);
5703 return Py_None;
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005704}
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00005705#endif /* HAVE_SETUID */
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005706
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005707
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005708#ifdef HAVE_SETEUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005709PyDoc_STRVAR(posix_seteuid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005710"seteuid(uid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005711Set the current process's effective user id.");
5712
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005713static PyObject *
5714posix_seteuid (PyObject *self, PyObject *args)
5715{
Victor Stinnerd6f85422010-05-05 23:33:33 +00005716 long euid_arg;
5717 uid_t euid;
5718 if (!PyArg_ParseTuple(args, "l", &euid_arg))
5719 return NULL;
5720 euid = euid_arg;
5721 if (euid != euid_arg) {
5722 PyErr_SetString(PyExc_OverflowError, "user id too big");
5723 return NULL;
5724 }
5725 if (seteuid(euid) < 0) {
5726 return posix_error();
5727 } else {
5728 Py_INCREF(Py_None);
5729 return Py_None;
5730 }
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005731}
5732#endif /* HAVE_SETEUID */
5733
5734#ifdef HAVE_SETEGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005735PyDoc_STRVAR(posix_setegid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005736"setegid(gid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005737Set the current process's effective group id.");
5738
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005739static PyObject *
5740posix_setegid (PyObject *self, PyObject *args)
5741{
Victor Stinnerd6f85422010-05-05 23:33:33 +00005742 long egid_arg;
5743 gid_t egid;
5744 if (!PyArg_ParseTuple(args, "l", &egid_arg))
5745 return NULL;
5746 egid = egid_arg;
5747 if (egid != egid_arg) {
5748 PyErr_SetString(PyExc_OverflowError, "group id too big");
5749 return NULL;
5750 }
5751 if (setegid(egid) < 0) {
5752 return posix_error();
5753 } else {
5754 Py_INCREF(Py_None);
5755 return Py_None;
5756 }
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005757}
5758#endif /* HAVE_SETEGID */
5759
5760#ifdef HAVE_SETREUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005761PyDoc_STRVAR(posix_setreuid__doc__,
Neal Norwitz94f1d712004-02-16 01:26:34 +00005762"setreuid(ruid, euid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005763Set the current process's real and effective user ids.");
5764
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005765static PyObject *
5766posix_setreuid (PyObject *self, PyObject *args)
5767{
Victor Stinnerd6f85422010-05-05 23:33:33 +00005768 long ruid_arg, euid_arg;
5769 uid_t ruid, euid;
5770 if (!PyArg_ParseTuple(args, "ll", &ruid_arg, &euid_arg))
5771 return NULL;
5772 if (ruid_arg == -1)
5773 ruid = (uid_t)-1; /* let the compiler choose how -1 fits */
5774 else
5775 ruid = ruid_arg; /* otherwise, assign from our long */
5776 if (euid_arg == -1)
5777 euid = (uid_t)-1;
5778 else
5779 euid = euid_arg;
5780 if ((euid_arg != -1 && euid != euid_arg) ||
5781 (ruid_arg != -1 && ruid != ruid_arg)) {
5782 PyErr_SetString(PyExc_OverflowError, "user id too big");
5783 return NULL;
5784 }
5785 if (setreuid(ruid, euid) < 0) {
5786 return posix_error();
5787 } else {
5788 Py_INCREF(Py_None);
5789 return Py_None;
5790 }
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005791}
5792#endif /* HAVE_SETREUID */
5793
5794#ifdef HAVE_SETREGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005795PyDoc_STRVAR(posix_setregid__doc__,
Neal Norwitz94f1d712004-02-16 01:26:34 +00005796"setregid(rgid, egid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005797Set the current process's real and effective group ids.");
5798
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005799static PyObject *
5800posix_setregid (PyObject *self, PyObject *args)
5801{
Victor Stinnerd6f85422010-05-05 23:33:33 +00005802 long rgid_arg, egid_arg;
5803 gid_t rgid, egid;
5804 if (!PyArg_ParseTuple(args, "ll", &rgid_arg, &egid_arg))
5805 return NULL;
5806 if (rgid_arg == -1)
5807 rgid = (gid_t)-1; /* let the compiler choose how -1 fits */
5808 else
5809 rgid = rgid_arg; /* otherwise, assign from our long */
5810 if (egid_arg == -1)
5811 egid = (gid_t)-1;
5812 else
5813 egid = egid_arg;
5814 if ((egid_arg != -1 && egid != egid_arg) ||
5815 (rgid_arg != -1 && rgid != rgid_arg)) {
5816 PyErr_SetString(PyExc_OverflowError, "group id too big");
5817 return NULL;
5818 }
5819 if (setregid(rgid, egid) < 0) {
5820 return posix_error();
5821 } else {
5822 Py_INCREF(Py_None);
5823 return Py_None;
5824 }
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005825}
5826#endif /* HAVE_SETREGID */
5827
Guido van Rossumb6775db1994-08-01 11:34:53 +00005828#ifdef HAVE_SETGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005829PyDoc_STRVAR(posix_setgid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005830"setgid(gid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005831Set the current process's group id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005832
Barry Warsaw53699e91996-12-10 23:23:01 +00005833static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005834posix_setgid(PyObject *self, PyObject *args)
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005835{
Victor Stinnerd6f85422010-05-05 23:33:33 +00005836 long gid_arg;
5837 gid_t gid;
5838 if (!PyArg_ParseTuple(args, "l:setgid", &gid_arg))
5839 return NULL;
5840 gid = gid_arg;
5841 if (gid != gid_arg) {
5842 PyErr_SetString(PyExc_OverflowError, "group id too big");
5843 return NULL;
5844 }
5845 if (setgid(gid) < 0)
5846 return posix_error();
5847 Py_INCREF(Py_None);
5848 return Py_None;
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005849}
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00005850#endif /* HAVE_SETGID */
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005851
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005852#ifdef HAVE_SETGROUPS
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005853PyDoc_STRVAR(posix_setgroups__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005854"setgroups(list)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005855Set the groups of the current process to list.");
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005856
5857static PyObject *
Georg Brandl96a8c392006-05-29 21:04:52 +00005858posix_setgroups(PyObject *self, PyObject *groups)
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005859{
Victor Stinnerd6f85422010-05-05 23:33:33 +00005860 int i, len;
5861 gid_t grouplist[MAX_GROUPS];
Tim Peters5aa91602002-01-30 05:46:57 +00005862
Victor Stinnerd6f85422010-05-05 23:33:33 +00005863 if (!PySequence_Check(groups)) {
5864 PyErr_SetString(PyExc_TypeError, "setgroups argument must be a sequence");
5865 return NULL;
5866 }
5867 len = PySequence_Size(groups);
5868 if (len > MAX_GROUPS) {
5869 PyErr_SetString(PyExc_ValueError, "too many groups");
5870 return NULL;
5871 }
5872 for(i = 0; i < len; i++) {
5873 PyObject *elem;
5874 elem = PySequence_GetItem(groups, i);
5875 if (!elem)
5876 return NULL;
5877 if (!PyInt_Check(elem)) {
5878 if (!PyLong_Check(elem)) {
5879 PyErr_SetString(PyExc_TypeError,
5880 "groups must be integers");
5881 Py_DECREF(elem);
5882 return NULL;
5883 } else {
5884 unsigned long x = PyLong_AsUnsignedLong(elem);
5885 if (PyErr_Occurred()) {
5886 PyErr_SetString(PyExc_TypeError,
5887 "group id too big");
5888 Py_DECREF(elem);
5889 return NULL;
5890 }
5891 grouplist[i] = x;
5892 /* read back to see if it fits in gid_t */
5893 if (grouplist[i] != x) {
5894 PyErr_SetString(PyExc_TypeError,
5895 "group id too big");
5896 Py_DECREF(elem);
5897 return NULL;
5898 }
5899 }
5900 } else {
5901 long x = PyInt_AsLong(elem);
5902 grouplist[i] = x;
5903 if (grouplist[i] != x) {
5904 PyErr_SetString(PyExc_TypeError,
5905 "group id too big");
5906 Py_DECREF(elem);
5907 return NULL;
5908 }
5909 }
5910 Py_DECREF(elem);
5911 }
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005912
Victor Stinnerd6f85422010-05-05 23:33:33 +00005913 if (setgroups(len, grouplist) < 0)
5914 return posix_error();
5915 Py_INCREF(Py_None);
5916 return Py_None;
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005917}
5918#endif /* HAVE_SETGROUPS */
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005919
Neal Norwitz6c2f9132006-03-20 07:25:26 +00005920#if defined(HAVE_WAIT3) || defined(HAVE_WAIT4)
Neal Norwitz05a45592006-03-20 06:30:08 +00005921static PyObject *
Christian Heimesd491d712008-02-01 18:49:26 +00005922wait_helper(pid_t pid, int status, struct rusage *ru)
Neal Norwitz05a45592006-03-20 06:30:08 +00005923{
Victor Stinnerd6f85422010-05-05 23:33:33 +00005924 PyObject *result;
5925 static PyObject *struct_rusage;
Neal Norwitz05a45592006-03-20 06:30:08 +00005926
Victor Stinnerd6f85422010-05-05 23:33:33 +00005927 if (pid == -1)
5928 return posix_error();
Neal Norwitz05a45592006-03-20 06:30:08 +00005929
Victor Stinnerd6f85422010-05-05 23:33:33 +00005930 if (struct_rusage == NULL) {
5931 PyObject *m = PyImport_ImportModuleNoBlock("resource");
5932 if (m == NULL)
5933 return NULL;
5934 struct_rusage = PyObject_GetAttrString(m, "struct_rusage");
5935 Py_DECREF(m);
5936 if (struct_rusage == NULL)
5937 return NULL;
5938 }
Neal Norwitz05a45592006-03-20 06:30:08 +00005939
Victor Stinnerd6f85422010-05-05 23:33:33 +00005940 /* XXX(nnorwitz): Copied (w/mods) from resource.c, there should be only one. */
5941 result = PyStructSequence_New((PyTypeObject*) struct_rusage);
5942 if (!result)
5943 return NULL;
Neal Norwitz05a45592006-03-20 06:30:08 +00005944
5945#ifndef doubletime
5946#define doubletime(TV) ((double)(TV).tv_sec + (TV).tv_usec * 0.000001)
5947#endif
5948
Victor Stinnerd6f85422010-05-05 23:33:33 +00005949 PyStructSequence_SET_ITEM(result, 0,
5950 PyFloat_FromDouble(doubletime(ru->ru_utime)));
5951 PyStructSequence_SET_ITEM(result, 1,
5952 PyFloat_FromDouble(doubletime(ru->ru_stime)));
Neal Norwitz05a45592006-03-20 06:30:08 +00005953#define SET_INT(result, index, value)\
Victor Stinnerd6f85422010-05-05 23:33:33 +00005954 PyStructSequence_SET_ITEM(result, index, PyInt_FromLong(value))
5955 SET_INT(result, 2, ru->ru_maxrss);
5956 SET_INT(result, 3, ru->ru_ixrss);
5957 SET_INT(result, 4, ru->ru_idrss);
5958 SET_INT(result, 5, ru->ru_isrss);
5959 SET_INT(result, 6, ru->ru_minflt);
5960 SET_INT(result, 7, ru->ru_majflt);
5961 SET_INT(result, 8, ru->ru_nswap);
5962 SET_INT(result, 9, ru->ru_inblock);
5963 SET_INT(result, 10, ru->ru_oublock);
5964 SET_INT(result, 11, ru->ru_msgsnd);
5965 SET_INT(result, 12, ru->ru_msgrcv);
5966 SET_INT(result, 13, ru->ru_nsignals);
5967 SET_INT(result, 14, ru->ru_nvcsw);
5968 SET_INT(result, 15, ru->ru_nivcsw);
Neal Norwitz05a45592006-03-20 06:30:08 +00005969#undef SET_INT
5970
Victor Stinnerd6f85422010-05-05 23:33:33 +00005971 if (PyErr_Occurred()) {
5972 Py_DECREF(result);
5973 return NULL;
5974 }
Neal Norwitz05a45592006-03-20 06:30:08 +00005975
Victor Stinnerd6f85422010-05-05 23:33:33 +00005976 return Py_BuildValue("NiN", PyLong_FromPid(pid), status, result);
Neal Norwitz05a45592006-03-20 06:30:08 +00005977}
Neal Norwitz6c2f9132006-03-20 07:25:26 +00005978#endif /* HAVE_WAIT3 || HAVE_WAIT4 */
Neal Norwitz05a45592006-03-20 06:30:08 +00005979
5980#ifdef HAVE_WAIT3
5981PyDoc_STRVAR(posix_wait3__doc__,
5982"wait3(options) -> (pid, status, rusage)\n\n\
5983Wait for completion of a child process.");
5984
5985static PyObject *
5986posix_wait3(PyObject *self, PyObject *args)
5987{
Victor Stinnerd6f85422010-05-05 23:33:33 +00005988 pid_t pid;
5989 int options;
5990 struct rusage ru;
5991 WAIT_TYPE status;
5992 WAIT_STATUS_INT(status) = 0;
Neal Norwitz05a45592006-03-20 06:30:08 +00005993
Victor Stinnerd6f85422010-05-05 23:33:33 +00005994 if (!PyArg_ParseTuple(args, "i:wait3", &options))
5995 return NULL;
Neal Norwitz05a45592006-03-20 06:30:08 +00005996
Victor Stinnerd6f85422010-05-05 23:33:33 +00005997 Py_BEGIN_ALLOW_THREADS
5998 pid = wait3(&status, options, &ru);
5999 Py_END_ALLOW_THREADS
Neal Norwitz05a45592006-03-20 06:30:08 +00006000
Victor Stinnerd6f85422010-05-05 23:33:33 +00006001 return wait_helper(pid, WAIT_STATUS_INT(status), &ru);
Neal Norwitz05a45592006-03-20 06:30:08 +00006002}
6003#endif /* HAVE_WAIT3 */
6004
6005#ifdef HAVE_WAIT4
6006PyDoc_STRVAR(posix_wait4__doc__,
6007"wait4(pid, options) -> (pid, status, rusage)\n\n\
6008Wait for completion of a given child process.");
6009
6010static PyObject *
6011posix_wait4(PyObject *self, PyObject *args)
6012{
Victor Stinnerd6f85422010-05-05 23:33:33 +00006013 pid_t pid;
6014 int options;
6015 struct rusage ru;
6016 WAIT_TYPE status;
6017 WAIT_STATUS_INT(status) = 0;
Neal Norwitz05a45592006-03-20 06:30:08 +00006018
Victor Stinnerd6f85422010-05-05 23:33:33 +00006019 if (!PyArg_ParseTuple(args, PARSE_PID "i:wait4", &pid, &options))
6020 return NULL;
Neal Norwitz05a45592006-03-20 06:30:08 +00006021
Victor Stinnerd6f85422010-05-05 23:33:33 +00006022 Py_BEGIN_ALLOW_THREADS
6023 pid = wait4(pid, &status, options, &ru);
6024 Py_END_ALLOW_THREADS
Neal Norwitz05a45592006-03-20 06:30:08 +00006025
Victor Stinnerd6f85422010-05-05 23:33:33 +00006026 return wait_helper(pid, WAIT_STATUS_INT(status), &ru);
Neal Norwitz05a45592006-03-20 06:30:08 +00006027}
6028#endif /* HAVE_WAIT4 */
6029
Guido van Rossumb6775db1994-08-01 11:34:53 +00006030#ifdef HAVE_WAITPID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006031PyDoc_STRVAR(posix_waitpid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006032"waitpid(pid, options) -> (pid, status)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006033Wait for completion of a given child process.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006034
Barry Warsaw53699e91996-12-10 23:23:01 +00006035static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006036posix_waitpid(PyObject *self, PyObject *args)
Guido van Rossum85e3b011991-06-03 12:42:10 +00006037{
Victor Stinnerd6f85422010-05-05 23:33:33 +00006038 pid_t pid;
6039 int options;
6040 WAIT_TYPE status;
6041 WAIT_STATUS_INT(status) = 0;
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00006042
Victor Stinnerd6f85422010-05-05 23:33:33 +00006043 if (!PyArg_ParseTuple(args, PARSE_PID "i:waitpid", &pid, &options))
6044 return NULL;
6045 Py_BEGIN_ALLOW_THREADS
6046 pid = waitpid(pid, &status, options);
6047 Py_END_ALLOW_THREADS
6048 if (pid == -1)
6049 return posix_error();
Neal Norwitzd5a37542006-03-20 06:48:34 +00006050
Victor Stinnerd6f85422010-05-05 23:33:33 +00006051 return Py_BuildValue("Ni", PyLong_FromPid(pid), WAIT_STATUS_INT(status));
Guido van Rossum21803b81992-08-09 12:55:27 +00006052}
6053
Tim Petersab034fa2002-02-01 11:27:43 +00006054#elif defined(HAVE_CWAIT)
6055
6056/* MS C has a variant of waitpid() that's usable for most purposes. */
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006057PyDoc_STRVAR(posix_waitpid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006058"waitpid(pid, options) -> (pid, status << 8)\n\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006059"Wait for completion of a given process. options is ignored on Windows.");
Tim Petersab034fa2002-02-01 11:27:43 +00006060
6061static PyObject *
6062posix_waitpid(PyObject *self, PyObject *args)
6063{
Victor Stinnerd6f85422010-05-05 23:33:33 +00006064 Py_intptr_t pid;
6065 int status, options;
Tim Petersab034fa2002-02-01 11:27:43 +00006066
Victor Stinnerd6f85422010-05-05 23:33:33 +00006067 if (!PyArg_ParseTuple(args, PARSE_PID "i:waitpid", &pid, &options))
6068 return NULL;
6069 Py_BEGIN_ALLOW_THREADS
6070 pid = _cwait(&status, pid, options);
6071 Py_END_ALLOW_THREADS
6072 if (pid == -1)
6073 return posix_error();
Neal Norwitzd5a37542006-03-20 06:48:34 +00006074
Victor Stinnerd6f85422010-05-05 23:33:33 +00006075 /* shift the status left a byte so this is more like the POSIX waitpid */
6076 return Py_BuildValue("Ni", PyLong_FromPid(pid), status << 8);
Tim Petersab034fa2002-02-01 11:27:43 +00006077}
6078#endif /* HAVE_WAITPID || HAVE_CWAIT */
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006079
Guido van Rossumad0ee831995-03-01 10:34:45 +00006080#ifdef HAVE_WAIT
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006081PyDoc_STRVAR(posix_wait__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006082"wait() -> (pid, status)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006083Wait for completion of a child process.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006084
Barry Warsaw53699e91996-12-10 23:23:01 +00006085static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00006086posix_wait(PyObject *self, PyObject *noargs)
Guido van Rossum21803b81992-08-09 12:55:27 +00006087{
Victor Stinnerd6f85422010-05-05 23:33:33 +00006088 pid_t pid;
6089 WAIT_TYPE status;
6090 WAIT_STATUS_INT(status) = 0;
Neal Norwitze241ce82003-02-17 18:17:05 +00006091
Victor Stinnerd6f85422010-05-05 23:33:33 +00006092 Py_BEGIN_ALLOW_THREADS
6093 pid = wait(&status);
6094 Py_END_ALLOW_THREADS
6095 if (pid == -1)
6096 return posix_error();
Neal Norwitzd5a37542006-03-20 06:48:34 +00006097
Victor Stinnerd6f85422010-05-05 23:33:33 +00006098 return Py_BuildValue("Ni", PyLong_FromPid(pid), WAIT_STATUS_INT(status));
Guido van Rossum85e3b011991-06-03 12:42:10 +00006099}
Guido van Rossumad0ee831995-03-01 10:34:45 +00006100#endif
Guido van Rossum85e3b011991-06-03 12:42:10 +00006101
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006102
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006103PyDoc_STRVAR(posix_lstat__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006104"lstat(path) -> stat result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006105Like stat(path), but do not follow symbolic links.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006106
Barry Warsaw53699e91996-12-10 23:23:01 +00006107static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006108posix_lstat(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00006109{
Guido van Rossumb6775db1994-08-01 11:34:53 +00006110#ifdef HAVE_LSTAT
Victor Stinnerd6f85422010-05-05 23:33:33 +00006111 return posix_do_stat(self, args, "et:lstat", lstat, NULL, NULL);
Guido van Rossumb6775db1994-08-01 11:34:53 +00006112#else /* !HAVE_LSTAT */
Mark Hammondc2e85bd2002-10-03 05:10:39 +00006113#ifdef MS_WINDOWS
Victor Stinnerd6f85422010-05-05 23:33:33 +00006114 return posix_do_stat(self, args, "et:lstat", STAT, "U:lstat", win32_wstat);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00006115#else
Victor Stinnerd6f85422010-05-05 23:33:33 +00006116 return posix_do_stat(self, args, "et:lstat", STAT, NULL, NULL);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00006117#endif
Guido van Rossumb6775db1994-08-01 11:34:53 +00006118#endif /* !HAVE_LSTAT */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00006119}
6120
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006121
Guido van Rossumb6775db1994-08-01 11:34:53 +00006122#ifdef HAVE_READLINK
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006123PyDoc_STRVAR(posix_readlink__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006124"readlink(path) -> path\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006125Return a string representing the path to which the symbolic link points.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006126
Barry Warsaw53699e91996-12-10 23:23:01 +00006127static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006128posix_readlink(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00006129{
Victor Stinnerd6f85422010-05-05 23:33:33 +00006130 PyObject* v;
6131 char buf[MAXPATHLEN];
6132 char *path;
6133 int n;
Ronald Oussoren10168f22006-10-22 10:45:18 +00006134#ifdef Py_USING_UNICODE
Victor Stinnerd6f85422010-05-05 23:33:33 +00006135 int arg_is_unicode = 0;
Ronald Oussoren10168f22006-10-22 10:45:18 +00006136#endif
6137
Victor Stinnerd6f85422010-05-05 23:33:33 +00006138 if (!PyArg_ParseTuple(args, "et:readlink",
6139 Py_FileSystemDefaultEncoding, &path))
6140 return NULL;
Ronald Oussoren10168f22006-10-22 10:45:18 +00006141#ifdef Py_USING_UNICODE
Victor Stinnerd6f85422010-05-05 23:33:33 +00006142 v = PySequence_GetItem(args, 0);
6143 if (v == NULL) {
6144 PyMem_Free(path);
6145 return NULL;
6146 }
Ronald Oussoren10168f22006-10-22 10:45:18 +00006147
Victor Stinnerd6f85422010-05-05 23:33:33 +00006148 if (PyUnicode_Check(v)) {
6149 arg_is_unicode = 1;
6150 }
6151 Py_DECREF(v);
Ronald Oussoren10168f22006-10-22 10:45:18 +00006152#endif
6153
Victor Stinnerd6f85422010-05-05 23:33:33 +00006154 Py_BEGIN_ALLOW_THREADS
6155 n = readlink(path, buf, (int) sizeof buf);
6156 Py_END_ALLOW_THREADS
6157 if (n < 0)
6158 return posix_error_with_allocated_filename(path);
Ronald Oussoren10168f22006-10-22 10:45:18 +00006159
Victor Stinnerd6f85422010-05-05 23:33:33 +00006160 PyMem_Free(path);
6161 v = PyString_FromStringAndSize(buf, n);
Ronald Oussoren10168f22006-10-22 10:45:18 +00006162#ifdef Py_USING_UNICODE
Victor Stinnerd6f85422010-05-05 23:33:33 +00006163 if (arg_is_unicode) {
6164 PyObject *w;
Ronald Oussoren10168f22006-10-22 10:45:18 +00006165
Victor Stinnerd6f85422010-05-05 23:33:33 +00006166 w = PyUnicode_FromEncodedObject(v,
6167 Py_FileSystemDefaultEncoding,
6168 "strict");
6169 if (w != NULL) {
6170 Py_DECREF(v);
6171 v = w;
6172 }
6173 else {
6174 /* fall back to the original byte string, as
6175 discussed in patch #683592 */
6176 PyErr_Clear();
6177 }
6178 }
Ronald Oussoren10168f22006-10-22 10:45:18 +00006179#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00006180 return v;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00006181}
Guido van Rossumb6775db1994-08-01 11:34:53 +00006182#endif /* HAVE_READLINK */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00006183
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006184
Guido van Rossumb6775db1994-08-01 11:34:53 +00006185#ifdef HAVE_SYMLINK
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006186PyDoc_STRVAR(posix_symlink__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006187"symlink(src, dst)\n\n\
Brett Cannon807413d2003-06-11 00:18:09 +00006188Create a symbolic link pointing to src named dst.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006189
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006190static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006191posix_symlink(PyObject *self, PyObject *args)
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006192{
Victor Stinnerd6f85422010-05-05 23:33:33 +00006193 return posix_2str(args, "etet:symlink", symlink);
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006194}
6195#endif /* HAVE_SYMLINK */
6196
6197
6198#ifdef HAVE_TIMES
Guido van Rossumd48f2521997-12-05 22:19:34 +00006199#if defined(PYCC_VACPP) && defined(PYOS_OS2)
6200static long
Thomas Woutersf3f33dc2000-07-21 06:00:07 +00006201system_uptime(void)
Guido van Rossumd48f2521997-12-05 22:19:34 +00006202{
6203 ULONG value = 0;
6204
6205 Py_BEGIN_ALLOW_THREADS
6206 DosQuerySysInfo(QSV_MS_COUNT, QSV_MS_COUNT, &value, sizeof(value));
6207 Py_END_ALLOW_THREADS
6208
6209 return value;
6210}
6211
6212static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00006213posix_times(PyObject *self, PyObject *noargs)
Guido van Rossumd48f2521997-12-05 22:19:34 +00006214{
Guido van Rossumd48f2521997-12-05 22:19:34 +00006215 /* Currently Only Uptime is Provided -- Others Later */
Victor Stinnerd6f85422010-05-05 23:33:33 +00006216 return Py_BuildValue("ddddd",
6217 (double)0 /* t.tms_utime / HZ */,
6218 (double)0 /* t.tms_stime / HZ */,
6219 (double)0 /* t.tms_cutime / HZ */,
6220 (double)0 /* t.tms_cstime / HZ */,
6221 (double)system_uptime() / 1000);
Guido van Rossumd48f2521997-12-05 22:19:34 +00006222}
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006223#else /* not OS2 */
Martin v. Löwis03824e42008-12-29 18:17:34 +00006224#define NEED_TICKS_PER_SECOND
6225static long ticks_per_second = -1;
Barry Warsaw53699e91996-12-10 23:23:01 +00006226static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00006227posix_times(PyObject *self, PyObject *noargs)
Guido van Rossum22db57e1992-04-05 14:25:30 +00006228{
Victor Stinnerd6f85422010-05-05 23:33:33 +00006229 struct tms t;
6230 clock_t c;
6231 errno = 0;
6232 c = times(&t);
6233 if (c == (clock_t) -1)
6234 return posix_error();
6235 return Py_BuildValue("ddddd",
6236 (double)t.tms_utime / ticks_per_second,
6237 (double)t.tms_stime / ticks_per_second,
6238 (double)t.tms_cutime / ticks_per_second,
6239 (double)t.tms_cstime / ticks_per_second,
6240 (double)c / ticks_per_second);
Guido van Rossum22db57e1992-04-05 14:25:30 +00006241}
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006242#endif /* not OS2 */
Guido van Rossumb6775db1994-08-01 11:34:53 +00006243#endif /* HAVE_TIMES */
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006244
6245
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006246#ifdef MS_WINDOWS
Victor Stinnerd6f85422010-05-05 23:33:33 +00006247#define HAVE_TIMES /* so the method table will pick it up */
Barry Warsaw53699e91996-12-10 23:23:01 +00006248static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00006249posix_times(PyObject *self, PyObject *noargs)
Guido van Rossum14ed0b21994-09-29 09:50:09 +00006250{
Victor Stinnerd6f85422010-05-05 23:33:33 +00006251 FILETIME create, exit, kernel, user;
6252 HANDLE hProc;
6253 hProc = GetCurrentProcess();
6254 GetProcessTimes(hProc, &create, &exit, &kernel, &user);
6255 /* The fields of a FILETIME structure are the hi and lo part
6256 of a 64-bit value expressed in 100 nanosecond units.
6257 1e7 is one second in such units; 1e-7 the inverse.
6258 429.4967296 is 2**32 / 1e7 or 2**32 * 1e-7.
6259 */
6260 return Py_BuildValue(
6261 "ddddd",
6262 (double)(user.dwHighDateTime*429.4967296 +
6263 user.dwLowDateTime*1e-7),
6264 (double)(kernel.dwHighDateTime*429.4967296 +
6265 kernel.dwLowDateTime*1e-7),
6266 (double)0,
6267 (double)0,
6268 (double)0);
Guido van Rossum14ed0b21994-09-29 09:50:09 +00006269}
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006270#endif /* MS_WINDOWS */
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006271
6272#ifdef HAVE_TIMES
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006273PyDoc_STRVAR(posix_times__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006274"times() -> (utime, stime, cutime, cstime, elapsed_time)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006275Return a tuple of floating point numbers indicating process times.");
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006276#endif
Guido van Rossum22db57e1992-04-05 14:25:30 +00006277
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006278
Martin v. Löwis49ee14d2003-11-10 06:35:36 +00006279#ifdef HAVE_GETSID
6280PyDoc_STRVAR(posix_getsid__doc__,
6281"getsid(pid) -> sid\n\n\
6282Call the system call getsid().");
6283
6284static PyObject *
6285posix_getsid(PyObject *self, PyObject *args)
6286{
Victor Stinnerd6f85422010-05-05 23:33:33 +00006287 pid_t pid;
6288 int sid;
6289 if (!PyArg_ParseTuple(args, PARSE_PID ":getsid", &pid))
6290 return NULL;
6291 sid = getsid(pid);
6292 if (sid < 0)
6293 return posix_error();
6294 return PyInt_FromLong((long)sid);
Martin v. Löwis49ee14d2003-11-10 06:35:36 +00006295}
6296#endif /* HAVE_GETSID */
6297
6298
Guido van Rossumb6775db1994-08-01 11:34:53 +00006299#ifdef HAVE_SETSID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006300PyDoc_STRVAR(posix_setsid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006301"setsid()\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006302Call the system call setsid().");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006303
Barry Warsaw53699e91996-12-10 23:23:01 +00006304static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00006305posix_setsid(PyObject *self, PyObject *noargs)
Guido van Rossumc2670a01992-09-13 20:07:29 +00006306{
Victor Stinnerd6f85422010-05-05 23:33:33 +00006307 if (setsid() < 0)
6308 return posix_error();
6309 Py_INCREF(Py_None);
6310 return Py_None;
Guido van Rossumc2670a01992-09-13 20:07:29 +00006311}
Guido van Rossumb6775db1994-08-01 11:34:53 +00006312#endif /* HAVE_SETSID */
Guido van Rossumc2670a01992-09-13 20:07:29 +00006313
Guido van Rossumb6775db1994-08-01 11:34:53 +00006314#ifdef HAVE_SETPGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006315PyDoc_STRVAR(posix_setpgid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006316"setpgid(pid, pgrp)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006317Call the system call setpgid().");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006318
Barry Warsaw53699e91996-12-10 23:23:01 +00006319static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006320posix_setpgid(PyObject *self, PyObject *args)
Guido van Rossumc2670a01992-09-13 20:07:29 +00006321{
Victor Stinnerd6f85422010-05-05 23:33:33 +00006322 pid_t pid;
6323 int pgrp;
6324 if (!PyArg_ParseTuple(args, PARSE_PID "i:setpgid", &pid, &pgrp))
6325 return NULL;
6326 if (setpgid(pid, pgrp) < 0)
6327 return posix_error();
6328 Py_INCREF(Py_None);
6329 return Py_None;
Guido van Rossumc2670a01992-09-13 20:07:29 +00006330}
Guido van Rossumb6775db1994-08-01 11:34:53 +00006331#endif /* HAVE_SETPGID */
Guido van Rossumc2670a01992-09-13 20:07:29 +00006332
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006333
Guido van Rossumb6775db1994-08-01 11:34:53 +00006334#ifdef HAVE_TCGETPGRP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006335PyDoc_STRVAR(posix_tcgetpgrp__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006336"tcgetpgrp(fd) -> pgid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006337Return the process group associated with the terminal given by a fd.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006338
Barry Warsaw53699e91996-12-10 23:23:01 +00006339static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006340posix_tcgetpgrp(PyObject *self, PyObject *args)
Guido van Rossum7066dd71992-09-17 17:54:56 +00006341{
Victor Stinnerd6f85422010-05-05 23:33:33 +00006342 int fd;
6343 pid_t pgid;
6344 if (!PyArg_ParseTuple(args, "i:tcgetpgrp", &fd))
6345 return NULL;
6346 pgid = tcgetpgrp(fd);
6347 if (pgid < 0)
6348 return posix_error();
6349 return PyLong_FromPid(pgid);
Guido van Rossum7066dd71992-09-17 17:54:56 +00006350}
Guido van Rossumb6775db1994-08-01 11:34:53 +00006351#endif /* HAVE_TCGETPGRP */
Guido van Rossum7066dd71992-09-17 17:54:56 +00006352
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006353
Guido van Rossumb6775db1994-08-01 11:34:53 +00006354#ifdef HAVE_TCSETPGRP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006355PyDoc_STRVAR(posix_tcsetpgrp__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006356"tcsetpgrp(fd, pgid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006357Set the process group associated with the terminal given by a fd.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006358
Barry Warsaw53699e91996-12-10 23:23:01 +00006359static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006360posix_tcsetpgrp(PyObject *self, PyObject *args)
Guido van Rossum7066dd71992-09-17 17:54:56 +00006361{
Victor Stinnerd6f85422010-05-05 23:33:33 +00006362 int fd;
6363 pid_t pgid;
6364 if (!PyArg_ParseTuple(args, "i" PARSE_PID ":tcsetpgrp", &fd, &pgid))
6365 return NULL;
6366 if (tcsetpgrp(fd, pgid) < 0)
6367 return posix_error();
6368 Py_INCREF(Py_None);
6369 return Py_None;
Guido van Rossum7066dd71992-09-17 17:54:56 +00006370}
Guido van Rossumb6775db1994-08-01 11:34:53 +00006371#endif /* HAVE_TCSETPGRP */
Guido van Rossum22db57e1992-04-05 14:25:30 +00006372
Guido van Rossum687dd131993-05-17 08:34:16 +00006373/* Functions acting on file descriptors */
6374
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006375PyDoc_STRVAR(posix_open__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006376"open(filename, flag [, mode=0777]) -> fd\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006377Open a file (for low level IO).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006378
Barry Warsaw53699e91996-12-10 23:23:01 +00006379static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006380posix_open(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006381{
Victor Stinnerd6f85422010-05-05 23:33:33 +00006382 char *file = NULL;
6383 int flag;
6384 int mode = 0777;
6385 int fd;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00006386
6387#ifdef MS_WINDOWS
Victor Stinnerd6f85422010-05-05 23:33:33 +00006388 PyUnicodeObject *po;
6389 if (PyArg_ParseTuple(args, "Ui|i:mkdir", &po, &flag, &mode)) {
6390 Py_BEGIN_ALLOW_THREADS
6391 /* PyUnicode_AS_UNICODE OK without thread
6392 lock as it is a simple dereference. */
6393 fd = _wopen(PyUnicode_AS_UNICODE(po), flag, mode);
6394 Py_END_ALLOW_THREADS
6395 if (fd < 0)
6396 return posix_error();
6397 return PyInt_FromLong((long)fd);
6398 }
6399 /* Drop the argument parsing error as narrow strings
6400 are also valid. */
6401 PyErr_Clear();
Mark Hammondc2e85bd2002-10-03 05:10:39 +00006402#endif
6403
Victor Stinnerd6f85422010-05-05 23:33:33 +00006404 if (!PyArg_ParseTuple(args, "eti|i",
6405 Py_FileSystemDefaultEncoding, &file,
6406 &flag, &mode))
6407 return NULL;
Barry Warsaw43d68b81996-12-19 22:10:44 +00006408
Victor Stinnerd6f85422010-05-05 23:33:33 +00006409 Py_BEGIN_ALLOW_THREADS
6410 fd = open(file, flag, mode);
6411 Py_END_ALLOW_THREADS
6412 if (fd < 0)
6413 return posix_error_with_allocated_filename(file);
6414 PyMem_Free(file);
6415 return PyInt_FromLong((long)fd);
Guido van Rossum687dd131993-05-17 08:34:16 +00006416}
6417
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006418
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006419PyDoc_STRVAR(posix_close__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006420"close(fd)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006421Close a file descriptor (for low level IO).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006422
Barry Warsaw53699e91996-12-10 23:23:01 +00006423static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006424posix_close(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006425{
Victor Stinnerd6f85422010-05-05 23:33:33 +00006426 int fd, res;
6427 if (!PyArg_ParseTuple(args, "i:close", &fd))
6428 return NULL;
6429 if (!_PyVerify_fd(fd))
6430 return posix_error();
6431 Py_BEGIN_ALLOW_THREADS
6432 res = close(fd);
6433 Py_END_ALLOW_THREADS
6434 if (res < 0)
6435 return posix_error();
6436 Py_INCREF(Py_None);
6437 return Py_None;
Guido van Rossum687dd131993-05-17 08:34:16 +00006438}
6439
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006440
Victor Stinnerd6f85422010-05-05 23:33:33 +00006441PyDoc_STRVAR(posix_closerange__doc__,
Georg Brandl309501a2008-01-19 20:22:13 +00006442"closerange(fd_low, fd_high)\n\n\
6443Closes all file descriptors in [fd_low, fd_high), ignoring errors.");
6444
6445static PyObject *
6446posix_closerange(PyObject *self, PyObject *args)
6447{
Victor Stinnerd6f85422010-05-05 23:33:33 +00006448 int fd_from, fd_to, i;
6449 if (!PyArg_ParseTuple(args, "ii:closerange", &fd_from, &fd_to))
6450 return NULL;
6451 Py_BEGIN_ALLOW_THREADS
6452 for (i = fd_from; i < fd_to; i++)
6453 if (_PyVerify_fd(i))
6454 close(i);
6455 Py_END_ALLOW_THREADS
6456 Py_RETURN_NONE;
Georg Brandl309501a2008-01-19 20:22:13 +00006457}
6458
6459
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006460PyDoc_STRVAR(posix_dup__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006461"dup(fd) -> fd2\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006462Return a duplicate of a file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006463
Barry Warsaw53699e91996-12-10 23:23:01 +00006464static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006465posix_dup(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006466{
Victor Stinnerd6f85422010-05-05 23:33:33 +00006467 int fd;
6468 if (!PyArg_ParseTuple(args, "i:dup", &fd))
6469 return NULL;
6470 if (!_PyVerify_fd(fd))
6471 return posix_error();
6472 Py_BEGIN_ALLOW_THREADS
6473 fd = dup(fd);
6474 Py_END_ALLOW_THREADS
6475 if (fd < 0)
6476 return posix_error();
6477 return PyInt_FromLong((long)fd);
Guido van Rossum687dd131993-05-17 08:34:16 +00006478}
6479
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006480
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006481PyDoc_STRVAR(posix_dup2__doc__,
Andrew M. Kuchling8135fd52004-01-16 13:18:42 +00006482"dup2(old_fd, new_fd)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006483Duplicate file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006484
Barry Warsaw53699e91996-12-10 23:23:01 +00006485static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006486posix_dup2(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006487{
Victor Stinnerd6f85422010-05-05 23:33:33 +00006488 int fd, fd2, res;
6489 if (!PyArg_ParseTuple(args, "ii:dup2", &fd, &fd2))
6490 return NULL;
6491 if (!_PyVerify_fd_dup2(fd, fd2))
6492 return posix_error();
6493 Py_BEGIN_ALLOW_THREADS
6494 res = dup2(fd, fd2);
6495 Py_END_ALLOW_THREADS
6496 if (res < 0)
6497 return posix_error();
6498 Py_INCREF(Py_None);
6499 return Py_None;
Guido van Rossum687dd131993-05-17 08:34:16 +00006500}
6501
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006502
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006503PyDoc_STRVAR(posix_lseek__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006504"lseek(fd, pos, how) -> newpos\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006505Set the current position of a file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006506
Barry Warsaw53699e91996-12-10 23:23:01 +00006507static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006508posix_lseek(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006509{
Victor Stinnerd6f85422010-05-05 23:33:33 +00006510 int fd, how;
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006511#if defined(MS_WIN64) || defined(MS_WINDOWS)
Victor Stinnerd6f85422010-05-05 23:33:33 +00006512 PY_LONG_LONG pos, res;
Fred Drake699f3522000-06-29 21:12:41 +00006513#else
Victor Stinnerd6f85422010-05-05 23:33:33 +00006514 off_t pos, res;
Fred Drake699f3522000-06-29 21:12:41 +00006515#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00006516 PyObject *posobj;
6517 if (!PyArg_ParseTuple(args, "iOi:lseek", &fd, &posobj, &how))
6518 return NULL;
Guido van Rossum687dd131993-05-17 08:34:16 +00006519#ifdef SEEK_SET
Victor Stinnerd6f85422010-05-05 23:33:33 +00006520 /* Turn 0, 1, 2 into SEEK_{SET,CUR,END} */
6521 switch (how) {
6522 case 0: how = SEEK_SET; break;
6523 case 1: how = SEEK_CUR; break;
6524 case 2: how = SEEK_END; break;
6525 }
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00006526#endif /* SEEK_END */
Guido van Rossum94f6f721999-01-06 18:42:14 +00006527
6528#if !defined(HAVE_LARGEFILE_SUPPORT)
Victor Stinnerd6f85422010-05-05 23:33:33 +00006529 pos = PyInt_AsLong(posobj);
Guido van Rossum94f6f721999-01-06 18:42:14 +00006530#else
Victor Stinnerd6f85422010-05-05 23:33:33 +00006531 pos = PyLong_Check(posobj) ?
6532 PyLong_AsLongLong(posobj) : PyInt_AsLong(posobj);
Guido van Rossum94f6f721999-01-06 18:42:14 +00006533#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00006534 if (PyErr_Occurred())
6535 return NULL;
Guido van Rossum94f6f721999-01-06 18:42:14 +00006536
Victor Stinnerd6f85422010-05-05 23:33:33 +00006537 if (!_PyVerify_fd(fd))
6538 return posix_error();
6539 Py_BEGIN_ALLOW_THREADS
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006540#if defined(MS_WIN64) || defined(MS_WINDOWS)
Victor Stinnerd6f85422010-05-05 23:33:33 +00006541 res = _lseeki64(fd, pos, how);
Fred Drake699f3522000-06-29 21:12:41 +00006542#else
Victor Stinnerd6f85422010-05-05 23:33:33 +00006543 res = lseek(fd, pos, how);
Fred Drake699f3522000-06-29 21:12:41 +00006544#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00006545 Py_END_ALLOW_THREADS
6546 if (res < 0)
6547 return posix_error();
Guido van Rossum94f6f721999-01-06 18:42:14 +00006548
6549#if !defined(HAVE_LARGEFILE_SUPPORT)
Victor Stinnerd6f85422010-05-05 23:33:33 +00006550 return PyInt_FromLong(res);
Guido van Rossum94f6f721999-01-06 18:42:14 +00006551#else
Victor Stinnerd6f85422010-05-05 23:33:33 +00006552 return PyLong_FromLongLong(res);
Guido van Rossum94f6f721999-01-06 18:42:14 +00006553#endif
Guido van Rossum687dd131993-05-17 08:34:16 +00006554}
6555
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006556
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006557PyDoc_STRVAR(posix_read__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006558"read(fd, buffersize) -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006559Read a file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006560
Barry Warsaw53699e91996-12-10 23:23:01 +00006561static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006562posix_read(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006563{
Victor Stinnerd6f85422010-05-05 23:33:33 +00006564 int fd, size, n;
6565 PyObject *buffer;
6566 if (!PyArg_ParseTuple(args, "ii:read", &fd, &size))
6567 return NULL;
6568 if (size < 0) {
6569 errno = EINVAL;
6570 return posix_error();
6571 }
6572 buffer = PyString_FromStringAndSize((char *)NULL, size);
6573 if (buffer == NULL)
6574 return NULL;
Stefan Krahacaab2a2010-11-26 15:06:27 +00006575 if (!_PyVerify_fd(fd)) {
6576 Py_DECREF(buffer);
Victor Stinnerd6f85422010-05-05 23:33:33 +00006577 return posix_error();
Stefan Krahacaab2a2010-11-26 15:06:27 +00006578 }
Victor Stinnerd6f85422010-05-05 23:33:33 +00006579 Py_BEGIN_ALLOW_THREADS
6580 n = read(fd, PyString_AsString(buffer), size);
6581 Py_END_ALLOW_THREADS
6582 if (n < 0) {
6583 Py_DECREF(buffer);
6584 return posix_error();
6585 }
6586 if (n != size)
6587 _PyString_Resize(&buffer, n);
6588 return buffer;
Guido van Rossum687dd131993-05-17 08:34:16 +00006589}
6590
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006591
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006592PyDoc_STRVAR(posix_write__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006593"write(fd, string) -> byteswritten\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006594Write a string to a file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006595
Barry Warsaw53699e91996-12-10 23:23:01 +00006596static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006597posix_write(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006598{
Victor Stinnerd6f85422010-05-05 23:33:33 +00006599 Py_buffer pbuf;
6600 int fd;
6601 Py_ssize_t size;
Thomas Wouters68bc4f92006-03-01 01:05:10 +00006602
Victor Stinnerd6f85422010-05-05 23:33:33 +00006603 if (!PyArg_ParseTuple(args, "is*:write", &fd, &pbuf))
6604 return NULL;
Stefan Krahacaab2a2010-11-26 15:06:27 +00006605 if (!_PyVerify_fd(fd)) {
6606 PyBuffer_Release(&pbuf);
Victor Stinnerd6f85422010-05-05 23:33:33 +00006607 return posix_error();
Stefan Krahacaab2a2010-11-26 15:06:27 +00006608 }
Victor Stinnerd6f85422010-05-05 23:33:33 +00006609 Py_BEGIN_ALLOW_THREADS
6610 size = write(fd, pbuf.buf, (size_t)pbuf.len);
6611 Py_END_ALLOW_THREADS
Stefan Krahacaab2a2010-11-26 15:06:27 +00006612 PyBuffer_Release(&pbuf);
Victor Stinnerd6f85422010-05-05 23:33:33 +00006613 if (size < 0)
6614 return posix_error();
6615 return PyInt_FromSsize_t(size);
Guido van Rossum687dd131993-05-17 08:34:16 +00006616}
6617
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006618
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006619PyDoc_STRVAR(posix_fstat__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006620"fstat(fd) -> stat result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006621Like stat(), but for an open file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006622
Barry Warsaw53699e91996-12-10 23:23:01 +00006623static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006624posix_fstat(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006625{
Victor Stinnerd6f85422010-05-05 23:33:33 +00006626 int fd;
6627 STRUCT_STAT st;
6628 int res;
6629 if (!PyArg_ParseTuple(args, "i:fstat", &fd))
6630 return NULL;
Martin v. Löwis7a924e62003-03-05 14:15:21 +00006631#ifdef __VMS
Victor Stinnerd6f85422010-05-05 23:33:33 +00006632 /* on OpenVMS we must ensure that all bytes are written to the file */
6633 fsync(fd);
Martin v. Löwis7a924e62003-03-05 14:15:21 +00006634#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00006635 if (!_PyVerify_fd(fd))
6636 return posix_error();
6637 Py_BEGIN_ALLOW_THREADS
6638 res = FSTAT(fd, &st);
6639 Py_END_ALLOW_THREADS
6640 if (res != 0) {
Martin v. Löwis14694662006-02-03 12:54:16 +00006641#ifdef MS_WINDOWS
Victor Stinnerd6f85422010-05-05 23:33:33 +00006642 return win32_error("fstat", NULL);
Martin v. Löwis14694662006-02-03 12:54:16 +00006643#else
Victor Stinnerd6f85422010-05-05 23:33:33 +00006644 return posix_error();
Martin v. Löwis14694662006-02-03 12:54:16 +00006645#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00006646 }
Tim Peters5aa91602002-01-30 05:46:57 +00006647
Victor Stinnerd6f85422010-05-05 23:33:33 +00006648 return _pystat_fromstructstat(&st);
Guido van Rossum687dd131993-05-17 08:34:16 +00006649}
6650
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006651
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006652PyDoc_STRVAR(posix_fdopen__doc__,
Neal Norwitzc18b3082002-10-11 22:19:42 +00006653"fdopen(fd [, mode='r' [, bufsize]]) -> file_object\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006654Return an open file object connected to a file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006655
Barry Warsaw53699e91996-12-10 23:23:01 +00006656static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006657posix_fdopen(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006658{
Victor Stinnerd6f85422010-05-05 23:33:33 +00006659 int fd;
6660 char *orgmode = "r";
6661 int bufsize = -1;
6662 FILE *fp;
6663 PyObject *f;
6664 char *mode;
6665 if (!PyArg_ParseTuple(args, "i|si", &fd, &orgmode, &bufsize))
6666 return NULL;
Barry Warsaw43d68b81996-12-19 22:10:44 +00006667
Victor Stinnerd6f85422010-05-05 23:33:33 +00006668 /* Sanitize mode. See fileobject.c */
6669 mode = PyMem_MALLOC(strlen(orgmode)+3);
6670 if (!mode) {
6671 PyErr_NoMemory();
6672 return NULL;
6673 }
6674 strcpy(mode, orgmode);
6675 if (_PyFile_SanitizeMode(mode)) {
6676 PyMem_FREE(mode);
6677 return NULL;
6678 }
6679 if (!_PyVerify_fd(fd))
6680 return posix_error();
6681 Py_BEGIN_ALLOW_THREADS
Georg Brandl644b1e72006-03-31 20:27:22 +00006682#if !defined(MS_WINDOWS) && defined(HAVE_FCNTL_H)
Victor Stinnerd6f85422010-05-05 23:33:33 +00006683 if (mode[0] == 'a') {
6684 /* try to make sure the O_APPEND flag is set */
6685 int flags;
6686 flags = fcntl(fd, F_GETFL);
6687 if (flags != -1)
6688 fcntl(fd, F_SETFL, flags | O_APPEND);
6689 fp = fdopen(fd, mode);
6690 if (fp == NULL && flags != -1)
6691 /* restore old mode if fdopen failed */
6692 fcntl(fd, F_SETFL, flags);
6693 } else {
6694 fp = fdopen(fd, mode);
6695 }
Georg Brandl644b1e72006-03-31 20:27:22 +00006696#else
Victor Stinnerd6f85422010-05-05 23:33:33 +00006697 fp = fdopen(fd, mode);
Georg Brandl644b1e72006-03-31 20:27:22 +00006698#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00006699 Py_END_ALLOW_THREADS
6700 PyMem_FREE(mode);
6701 if (fp == NULL)
6702 return posix_error();
6703 f = PyFile_FromFile(fp, "<fdopen>", orgmode, fclose);
6704 if (f != NULL)
6705 PyFile_SetBufSize(f, bufsize);
6706 return f;
Guido van Rossum687dd131993-05-17 08:34:16 +00006707}
6708
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006709PyDoc_STRVAR(posix_isatty__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006710"isatty(fd) -> bool\n\n\
Fred Drake106c1a02002-04-23 15:58:02 +00006711Return True if the file descriptor 'fd' is an open file descriptor\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006712connected to the slave end of a terminal.");
Skip Montanaro1517d842000-07-19 14:34:14 +00006713
6714static PyObject *
Thomas Wouters616607a2000-07-19 14:45:40 +00006715posix_isatty(PyObject *self, PyObject *args)
Skip Montanaro1517d842000-07-19 14:34:14 +00006716{
Victor Stinnerd6f85422010-05-05 23:33:33 +00006717 int fd;
6718 if (!PyArg_ParseTuple(args, "i:isatty", &fd))
6719 return NULL;
6720 if (!_PyVerify_fd(fd))
6721 return PyBool_FromLong(0);
6722 return PyBool_FromLong(isatty(fd));
Skip Montanaro1517d842000-07-19 14:34:14 +00006723}
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006724
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006725#ifdef HAVE_PIPE
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006726PyDoc_STRVAR(posix_pipe__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006727"pipe() -> (read_end, write_end)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006728Create a pipe.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006729
Barry Warsaw53699e91996-12-10 23:23:01 +00006730static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00006731posix_pipe(PyObject *self, PyObject *noargs)
Guido van Rossum687dd131993-05-17 08:34:16 +00006732{
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00006733#if defined(PYOS_OS2)
6734 HFILE read, write;
6735 APIRET rc;
6736
Victor Stinnerd6f85422010-05-05 23:33:33 +00006737 Py_BEGIN_ALLOW_THREADS
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00006738 rc = DosCreatePipe( &read, &write, 4096);
Victor Stinnerd6f85422010-05-05 23:33:33 +00006739 Py_END_ALLOW_THREADS
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00006740 if (rc != NO_ERROR)
Guido van Rossumd48f2521997-12-05 22:19:34 +00006741 return os2_error(rc);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00006742
6743 return Py_BuildValue("(ii)", read, write);
6744#else
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006745#if !defined(MS_WINDOWS)
Victor Stinnerd6f85422010-05-05 23:33:33 +00006746 int fds[2];
6747 int res;
6748 Py_BEGIN_ALLOW_THREADS
6749 res = pipe(fds);
6750 Py_END_ALLOW_THREADS
6751 if (res != 0)
6752 return posix_error();
6753 return Py_BuildValue("(ii)", fds[0], fds[1]);
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006754#else /* MS_WINDOWS */
Victor Stinnerd6f85422010-05-05 23:33:33 +00006755 HANDLE read, write;
6756 int read_fd, write_fd;
6757 BOOL ok;
6758 Py_BEGIN_ALLOW_THREADS
6759 ok = CreatePipe(&read, &write, NULL, 0);
6760 Py_END_ALLOW_THREADS
6761 if (!ok)
6762 return win32_error("CreatePipe", NULL);
6763 read_fd = _open_osfhandle((Py_intptr_t)read, 0);
6764 write_fd = _open_osfhandle((Py_intptr_t)write, 1);
6765 return Py_BuildValue("(ii)", read_fd, write_fd);
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006766#endif /* MS_WINDOWS */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00006767#endif
Guido van Rossum687dd131993-05-17 08:34:16 +00006768}
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006769#endif /* HAVE_PIPE */
6770
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006771
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006772#ifdef HAVE_MKFIFO
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006773PyDoc_STRVAR(posix_mkfifo__doc__,
Neal Norwitzc18b3082002-10-11 22:19:42 +00006774"mkfifo(filename [, mode=0666])\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006775Create a FIFO (a POSIX named pipe).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006776
Barry Warsaw53699e91996-12-10 23:23:01 +00006777static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006778posix_mkfifo(PyObject *self, PyObject *args)
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006779{
Victor Stinnerd6f85422010-05-05 23:33:33 +00006780 char *filename;
6781 int mode = 0666;
6782 int res;
6783 if (!PyArg_ParseTuple(args, "s|i:mkfifo", &filename, &mode))
6784 return NULL;
6785 Py_BEGIN_ALLOW_THREADS
6786 res = mkfifo(filename, mode);
6787 Py_END_ALLOW_THREADS
6788 if (res < 0)
6789 return posix_error();
6790 Py_INCREF(Py_None);
6791 return Py_None;
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006792}
6793#endif
6794
6795
Neal Norwitz11690112002-07-30 01:08:28 +00006796#if defined(HAVE_MKNOD) && defined(HAVE_MAKEDEV)
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006797PyDoc_STRVAR(posix_mknod__doc__,
Neal Norwitzc18b3082002-10-11 22:19:42 +00006798"mknod(filename [, mode=0600, device])\n\n\
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006799Create a filesystem node (file, device special file or named pipe)\n\
6800named filename. mode specifies both the permissions to use and the\n\
6801type of node to be created, being combined (bitwise OR) with one of\n\
6802S_IFREG, S_IFCHR, S_IFBLK, and S_IFIFO. For S_IFCHR and S_IFBLK,\n\
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00006803device defines the newly created device special file (probably using\n\
6804os.makedev()), otherwise it is ignored.");
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006805
6806
6807static PyObject *
6808posix_mknod(PyObject *self, PyObject *args)
6809{
Victor Stinnerd6f85422010-05-05 23:33:33 +00006810 char *filename;
6811 int mode = 0600;
6812 int device = 0;
6813 int res;
6814 if (!PyArg_ParseTuple(args, "s|ii:mknod", &filename, &mode, &device))
6815 return NULL;
6816 Py_BEGIN_ALLOW_THREADS
6817 res = mknod(filename, mode, device);
6818 Py_END_ALLOW_THREADS
6819 if (res < 0)
6820 return posix_error();
6821 Py_INCREF(Py_None);
6822 return Py_None;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006823}
6824#endif
6825
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00006826#ifdef HAVE_DEVICE_MACROS
6827PyDoc_STRVAR(posix_major__doc__,
6828"major(device) -> major number\n\
6829Extracts a device major number from a raw device number.");
6830
6831static PyObject *
6832posix_major(PyObject *self, PyObject *args)
6833{
Victor Stinnerd6f85422010-05-05 23:33:33 +00006834 int device;
6835 if (!PyArg_ParseTuple(args, "i:major", &device))
6836 return NULL;
6837 return PyInt_FromLong((long)major(device));
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00006838}
6839
6840PyDoc_STRVAR(posix_minor__doc__,
6841"minor(device) -> minor number\n\
6842Extracts a device minor number from a raw device number.");
6843
6844static PyObject *
6845posix_minor(PyObject *self, PyObject *args)
6846{
Victor Stinnerd6f85422010-05-05 23:33:33 +00006847 int device;
6848 if (!PyArg_ParseTuple(args, "i:minor", &device))
6849 return NULL;
6850 return PyInt_FromLong((long)minor(device));
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00006851}
6852
6853PyDoc_STRVAR(posix_makedev__doc__,
6854"makedev(major, minor) -> device number\n\
6855Composes a raw device number from the major and minor device numbers.");
6856
6857static PyObject *
6858posix_makedev(PyObject *self, PyObject *args)
6859{
Victor Stinnerd6f85422010-05-05 23:33:33 +00006860 int major, minor;
6861 if (!PyArg_ParseTuple(args, "ii:makedev", &major, &minor))
6862 return NULL;
6863 return PyInt_FromLong((long)makedev(major, minor));
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00006864}
6865#endif /* device macros */
6866
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006867
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006868#ifdef HAVE_FTRUNCATE
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006869PyDoc_STRVAR(posix_ftruncate__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006870"ftruncate(fd, length)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006871Truncate a file to a specified length.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006872
Barry Warsaw53699e91996-12-10 23:23:01 +00006873static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006874posix_ftruncate(PyObject *self, PyObject *args)
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006875{
Victor Stinnerd6f85422010-05-05 23:33:33 +00006876 int fd;
6877 off_t length;
6878 int res;
6879 PyObject *lenobj;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006880
Victor Stinnerd6f85422010-05-05 23:33:33 +00006881 if (!PyArg_ParseTuple(args, "iO:ftruncate", &fd, &lenobj))
6882 return NULL;
Guido van Rossum94f6f721999-01-06 18:42:14 +00006883
6884#if !defined(HAVE_LARGEFILE_SUPPORT)
Victor Stinnerd6f85422010-05-05 23:33:33 +00006885 length = PyInt_AsLong(lenobj);
Guido van Rossum94f6f721999-01-06 18:42:14 +00006886#else
Victor Stinnerd6f85422010-05-05 23:33:33 +00006887 length = PyLong_Check(lenobj) ?
6888 PyLong_AsLongLong(lenobj) : PyInt_AsLong(lenobj);
Guido van Rossum94f6f721999-01-06 18:42:14 +00006889#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00006890 if (PyErr_Occurred())
6891 return NULL;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006892
Victor Stinnerd6f85422010-05-05 23:33:33 +00006893 Py_BEGIN_ALLOW_THREADS
6894 res = ftruncate(fd, length);
6895 Py_END_ALLOW_THREADS
6896 if (res < 0)
6897 return posix_error();
6898 Py_INCREF(Py_None);
6899 return Py_None;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006900}
6901#endif
Guido van Rossum22db57e1992-04-05 14:25:30 +00006902
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006903#ifdef HAVE_PUTENV
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006904PyDoc_STRVAR(posix_putenv__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006905"putenv(key, value)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006906Change or add an environment variable.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006907
Fred Drake762e2061999-08-26 17:23:54 +00006908/* Save putenv() parameters as values here, so we can collect them when they
6909 * get re-set with another call for the same key. */
6910static PyObject *posix_putenv_garbage;
6911
Tim Peters5aa91602002-01-30 05:46:57 +00006912static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006913posix_putenv(PyObject *self, PyObject *args)
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006914{
Victor Stinnerd6f85422010-05-05 23:33:33 +00006915 char *s1, *s2;
6916 char *newenv;
6917 PyObject *newstr;
6918 size_t len;
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006919
Victor Stinnerd6f85422010-05-05 23:33:33 +00006920 if (!PyArg_ParseTuple(args, "ss:putenv", &s1, &s2))
6921 return NULL;
Guido van Rossumd48f2521997-12-05 22:19:34 +00006922
6923#if defined(PYOS_OS2)
6924 if (stricmp(s1, "BEGINLIBPATH") == 0) {
6925 APIRET rc;
6926
Guido van Rossumd48f2521997-12-05 22:19:34 +00006927 rc = DosSetExtLIBPATH(s2, BEGIN_LIBPATH);
6928 if (rc != NO_ERROR)
6929 return os2_error(rc);
6930
6931 } else if (stricmp(s1, "ENDLIBPATH") == 0) {
6932 APIRET rc;
6933
Guido van Rossumd48f2521997-12-05 22:19:34 +00006934 rc = DosSetExtLIBPATH(s2, END_LIBPATH);
6935 if (rc != NO_ERROR)
6936 return os2_error(rc);
6937 } else {
6938#endif
6939
Victor Stinnerd6f85422010-05-05 23:33:33 +00006940 /* XXX This can leak memory -- not easy to fix :-( */
6941 len = strlen(s1) + strlen(s2) + 2;
6942 /* len includes space for a trailing \0; the size arg to
6943 PyString_FromStringAndSize does not count that */
6944 newstr = PyString_FromStringAndSize(NULL, (int)len - 1);
6945 if (newstr == NULL)
6946 return PyErr_NoMemory();
6947 newenv = PyString_AS_STRING(newstr);
6948 PyOS_snprintf(newenv, len, "%s=%s", s1, s2);
6949 if (putenv(newenv)) {
6950 Py_DECREF(newstr);
6951 posix_error();
6952 return NULL;
6953 }
6954 /* Install the first arg and newstr in posix_putenv_garbage;
6955 * this will cause previous value to be collected. This has to
6956 * happen after the real putenv() call because the old value
6957 * was still accessible until then. */
6958 if (PyDict_SetItem(posix_putenv_garbage,
6959 PyTuple_GET_ITEM(args, 0), newstr)) {
6960 /* really not much we can do; just leak */
6961 PyErr_Clear();
6962 }
6963 else {
6964 Py_DECREF(newstr);
6965 }
Guido van Rossumd48f2521997-12-05 22:19:34 +00006966
6967#if defined(PYOS_OS2)
6968 }
6969#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00006970 Py_INCREF(Py_None);
6971 return Py_None;
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006972}
Guido van Rossumb6a47161997-09-15 22:54:34 +00006973#endif /* putenv */
6974
Guido van Rossumc524d952001-10-19 01:31:59 +00006975#ifdef HAVE_UNSETENV
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006976PyDoc_STRVAR(posix_unsetenv__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006977"unsetenv(key)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006978Delete an environment variable.");
Guido van Rossumc524d952001-10-19 01:31:59 +00006979
6980static PyObject *
6981posix_unsetenv(PyObject *self, PyObject *args)
6982{
Victor Stinnerd6f85422010-05-05 23:33:33 +00006983 char *s1;
Guido van Rossumc524d952001-10-19 01:31:59 +00006984
Victor Stinnerd6f85422010-05-05 23:33:33 +00006985 if (!PyArg_ParseTuple(args, "s:unsetenv", &s1))
6986 return NULL;
Guido van Rossumc524d952001-10-19 01:31:59 +00006987
Victor Stinnerd6f85422010-05-05 23:33:33 +00006988 unsetenv(s1);
Guido van Rossumc524d952001-10-19 01:31:59 +00006989
Victor Stinnerd6f85422010-05-05 23:33:33 +00006990 /* Remove the key from posix_putenv_garbage;
6991 * this will cause it to be collected. This has to
6992 * happen after the real unsetenv() call because the
6993 * old value was still accessible until then.
6994 */
6995 if (PyDict_DelItem(posix_putenv_garbage,
6996 PyTuple_GET_ITEM(args, 0))) {
6997 /* really not much we can do; just leak */
6998 PyErr_Clear();
6999 }
Guido van Rossumc524d952001-10-19 01:31:59 +00007000
Victor Stinnerd6f85422010-05-05 23:33:33 +00007001 Py_INCREF(Py_None);
7002 return Py_None;
Guido van Rossumc524d952001-10-19 01:31:59 +00007003}
7004#endif /* unsetenv */
7005
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007006PyDoc_STRVAR(posix_strerror__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007007"strerror(code) -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007008Translate an error code to a message string.");
Guido van Rossumb6a47161997-09-15 22:54:34 +00007009
Guido van Rossumf68d8e52001-04-14 17:55:09 +00007010static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007011posix_strerror(PyObject *self, PyObject *args)
Guido van Rossumb6a47161997-09-15 22:54:34 +00007012{
Victor Stinnerd6f85422010-05-05 23:33:33 +00007013 int code;
7014 char *message;
7015 if (!PyArg_ParseTuple(args, "i:strerror", &code))
7016 return NULL;
7017 message = strerror(code);
7018 if (message == NULL) {
7019 PyErr_SetString(PyExc_ValueError,
7020 "strerror() argument out of range");
7021 return NULL;
7022 }
7023 return PyString_FromString(message);
Guido van Rossumb6a47161997-09-15 22:54:34 +00007024}
Guido van Rossumb6a47161997-09-15 22:54:34 +00007025
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00007026
Guido van Rossumc9641791998-08-04 15:26:23 +00007027#ifdef HAVE_SYS_WAIT_H
7028
Fred Drake106c1a02002-04-23 15:58:02 +00007029#ifdef WCOREDUMP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007030PyDoc_STRVAR(posix_WCOREDUMP__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007031"WCOREDUMP(status) -> bool\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007032Return True if the process returning 'status' was dumped to a core file.");
Fred Drake106c1a02002-04-23 15:58:02 +00007033
7034static PyObject *
7035posix_WCOREDUMP(PyObject *self, PyObject *args)
7036{
Victor Stinnerd6f85422010-05-05 23:33:33 +00007037 WAIT_TYPE status;
7038 WAIT_STATUS_INT(status) = 0;
Fred Drake106c1a02002-04-23 15:58:02 +00007039
Victor Stinnerd6f85422010-05-05 23:33:33 +00007040 if (!PyArg_ParseTuple(args, "i:WCOREDUMP", &WAIT_STATUS_INT(status)))
7041 return NULL;
Fred Drake106c1a02002-04-23 15:58:02 +00007042
Victor Stinnerd6f85422010-05-05 23:33:33 +00007043 return PyBool_FromLong(WCOREDUMP(status));
Fred Drake106c1a02002-04-23 15:58:02 +00007044}
7045#endif /* WCOREDUMP */
7046
7047#ifdef WIFCONTINUED
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007048PyDoc_STRVAR(posix_WIFCONTINUED__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007049"WIFCONTINUED(status) -> bool\n\n\
Fred Drake106c1a02002-04-23 15:58:02 +00007050Return True if the process returning 'status' was continued from a\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007051job control stop.");
Fred Drake106c1a02002-04-23 15:58:02 +00007052
7053static PyObject *
Martin v. Löwis2b41b0d2002-05-04 13:13:41 +00007054posix_WIFCONTINUED(PyObject *self, PyObject *args)
Fred Drake106c1a02002-04-23 15:58:02 +00007055{
Victor Stinnerd6f85422010-05-05 23:33:33 +00007056 WAIT_TYPE status;
7057 WAIT_STATUS_INT(status) = 0;
Fred Drake106c1a02002-04-23 15:58:02 +00007058
Victor Stinnerd6f85422010-05-05 23:33:33 +00007059 if (!PyArg_ParseTuple(args, "i:WCONTINUED", &WAIT_STATUS_INT(status)))
7060 return NULL;
Fred Drake106c1a02002-04-23 15:58:02 +00007061
Victor Stinnerd6f85422010-05-05 23:33:33 +00007062 return PyBool_FromLong(WIFCONTINUED(status));
Fred Drake106c1a02002-04-23 15:58:02 +00007063}
7064#endif /* WIFCONTINUED */
7065
Guido van Rossumc9641791998-08-04 15:26:23 +00007066#ifdef WIFSTOPPED
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007067PyDoc_STRVAR(posix_WIFSTOPPED__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007068"WIFSTOPPED(status) -> bool\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007069Return True if the process returning 'status' was stopped.");
Guido van Rossumc9641791998-08-04 15:26:23 +00007070
7071static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007072posix_WIFSTOPPED(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00007073{
Victor Stinnerd6f85422010-05-05 23:33:33 +00007074 WAIT_TYPE status;
7075 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00007076
Victor Stinnerd6f85422010-05-05 23:33:33 +00007077 if (!PyArg_ParseTuple(args, "i:WIFSTOPPED", &WAIT_STATUS_INT(status)))
7078 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00007079
Victor Stinnerd6f85422010-05-05 23:33:33 +00007080 return PyBool_FromLong(WIFSTOPPED(status));
Guido van Rossumc9641791998-08-04 15:26:23 +00007081}
7082#endif /* WIFSTOPPED */
7083
7084#ifdef WIFSIGNALED
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007085PyDoc_STRVAR(posix_WIFSIGNALED__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007086"WIFSIGNALED(status) -> bool\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007087Return True if the process returning 'status' was terminated by a signal.");
Guido van Rossumc9641791998-08-04 15:26:23 +00007088
7089static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007090posix_WIFSIGNALED(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00007091{
Victor Stinnerd6f85422010-05-05 23:33:33 +00007092 WAIT_TYPE status;
7093 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00007094
Victor Stinnerd6f85422010-05-05 23:33:33 +00007095 if (!PyArg_ParseTuple(args, "i:WIFSIGNALED", &WAIT_STATUS_INT(status)))
7096 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00007097
Victor Stinnerd6f85422010-05-05 23:33:33 +00007098 return PyBool_FromLong(WIFSIGNALED(status));
Guido van Rossumc9641791998-08-04 15:26:23 +00007099}
7100#endif /* WIFSIGNALED */
7101
7102#ifdef WIFEXITED
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007103PyDoc_STRVAR(posix_WIFEXITED__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007104"WIFEXITED(status) -> bool\n\n\
Fred Drake7e3535c1999-02-02 16:37:11 +00007105Return true if the process returning 'status' exited using the exit()\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007106system call.");
Guido van Rossumc9641791998-08-04 15:26:23 +00007107
7108static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007109posix_WIFEXITED(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00007110{
Victor Stinnerd6f85422010-05-05 23:33:33 +00007111 WAIT_TYPE status;
7112 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00007113
Victor Stinnerd6f85422010-05-05 23:33:33 +00007114 if (!PyArg_ParseTuple(args, "i:WIFEXITED", &WAIT_STATUS_INT(status)))
7115 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00007116
Victor Stinnerd6f85422010-05-05 23:33:33 +00007117 return PyBool_FromLong(WIFEXITED(status));
Guido van Rossumc9641791998-08-04 15:26:23 +00007118}
7119#endif /* WIFEXITED */
7120
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00007121#ifdef WEXITSTATUS
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007122PyDoc_STRVAR(posix_WEXITSTATUS__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007123"WEXITSTATUS(status) -> integer\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007124Return the process return code from 'status'.");
Guido van Rossumc9641791998-08-04 15:26:23 +00007125
7126static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007127posix_WEXITSTATUS(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00007128{
Victor Stinnerd6f85422010-05-05 23:33:33 +00007129 WAIT_TYPE status;
7130 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00007131
Victor Stinnerd6f85422010-05-05 23:33:33 +00007132 if (!PyArg_ParseTuple(args, "i:WEXITSTATUS", &WAIT_STATUS_INT(status)))
7133 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00007134
Victor Stinnerd6f85422010-05-05 23:33:33 +00007135 return Py_BuildValue("i", WEXITSTATUS(status));
Guido van Rossumc9641791998-08-04 15:26:23 +00007136}
7137#endif /* WEXITSTATUS */
7138
7139#ifdef WTERMSIG
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007140PyDoc_STRVAR(posix_WTERMSIG__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007141"WTERMSIG(status) -> integer\n\n\
Fred Drake7e3535c1999-02-02 16:37:11 +00007142Return the signal that terminated the process that provided the 'status'\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007143value.");
Guido van Rossumc9641791998-08-04 15:26:23 +00007144
7145static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007146posix_WTERMSIG(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00007147{
Victor Stinnerd6f85422010-05-05 23:33:33 +00007148 WAIT_TYPE status;
7149 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00007150
Victor Stinnerd6f85422010-05-05 23:33:33 +00007151 if (!PyArg_ParseTuple(args, "i:WTERMSIG", &WAIT_STATUS_INT(status)))
7152 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00007153
Victor Stinnerd6f85422010-05-05 23:33:33 +00007154 return Py_BuildValue("i", WTERMSIG(status));
Guido van Rossumc9641791998-08-04 15:26:23 +00007155}
7156#endif /* WTERMSIG */
7157
7158#ifdef WSTOPSIG
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007159PyDoc_STRVAR(posix_WSTOPSIG__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007160"WSTOPSIG(status) -> integer\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007161Return the signal that stopped the process that provided\n\
7162the 'status' value.");
Guido van Rossumc9641791998-08-04 15:26:23 +00007163
7164static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007165posix_WSTOPSIG(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00007166{
Victor Stinnerd6f85422010-05-05 23:33:33 +00007167 WAIT_TYPE status;
7168 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00007169
Victor Stinnerd6f85422010-05-05 23:33:33 +00007170 if (!PyArg_ParseTuple(args, "i:WSTOPSIG", &WAIT_STATUS_INT(status)))
7171 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00007172
Victor Stinnerd6f85422010-05-05 23:33:33 +00007173 return Py_BuildValue("i", WSTOPSIG(status));
Guido van Rossumc9641791998-08-04 15:26:23 +00007174}
7175#endif /* WSTOPSIG */
7176
7177#endif /* HAVE_SYS_WAIT_H */
7178
7179
Martin v. Löwis5f5d99c2006-05-16 07:05:37 +00007180#if defined(HAVE_FSTATVFS) && defined(HAVE_SYS_STATVFS_H)
Guido van Rossumd5753e11999-10-19 13:29:23 +00007181#ifdef _SCO_DS
7182/* SCO OpenServer 5.0 and later requires _SVID3 before it reveals the
7183 needed definitions in sys/statvfs.h */
7184#define _SVID3
7185#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00007186#include <sys/statvfs.h>
7187
Guido van Rossum98bf58f2001-10-18 20:34:25 +00007188static PyObject*
7189_pystatvfs_fromstructstatvfs(struct statvfs st) {
Victor Stinnerd6f85422010-05-05 23:33:33 +00007190 PyObject *v = PyStructSequence_New(&StatVFSResultType);
7191 if (v == NULL)
7192 return NULL;
Guido van Rossum98bf58f2001-10-18 20:34:25 +00007193
7194#if !defined(HAVE_LARGEFILE_SUPPORT)
Victor Stinnerd6f85422010-05-05 23:33:33 +00007195 PyStructSequence_SET_ITEM(v, 0, PyInt_FromLong((long) st.f_bsize));
7196 PyStructSequence_SET_ITEM(v, 1, PyInt_FromLong((long) st.f_frsize));
7197 PyStructSequence_SET_ITEM(v, 2, PyInt_FromLong((long) st.f_blocks));
7198 PyStructSequence_SET_ITEM(v, 3, PyInt_FromLong((long) st.f_bfree));
7199 PyStructSequence_SET_ITEM(v, 4, PyInt_FromLong((long) st.f_bavail));
7200 PyStructSequence_SET_ITEM(v, 5, PyInt_FromLong((long) st.f_files));
7201 PyStructSequence_SET_ITEM(v, 6, PyInt_FromLong((long) st.f_ffree));
7202 PyStructSequence_SET_ITEM(v, 7, PyInt_FromLong((long) st.f_favail));
7203 PyStructSequence_SET_ITEM(v, 8, PyInt_FromLong((long) st.f_flag));
7204 PyStructSequence_SET_ITEM(v, 9, PyInt_FromLong((long) st.f_namemax));
Guido van Rossum98bf58f2001-10-18 20:34:25 +00007205#else
Victor Stinnerd6f85422010-05-05 23:33:33 +00007206 PyStructSequence_SET_ITEM(v, 0, PyInt_FromLong((long) st.f_bsize));
7207 PyStructSequence_SET_ITEM(v, 1, PyInt_FromLong((long) st.f_frsize));
7208 PyStructSequence_SET_ITEM(v, 2,
7209 PyLong_FromLongLong((PY_LONG_LONG) st.f_blocks));
7210 PyStructSequence_SET_ITEM(v, 3,
7211 PyLong_FromLongLong((PY_LONG_LONG) st.f_bfree));
7212 PyStructSequence_SET_ITEM(v, 4,
7213 PyLong_FromLongLong((PY_LONG_LONG) st.f_bavail));
7214 PyStructSequence_SET_ITEM(v, 5,
7215 PyLong_FromLongLong((PY_LONG_LONG) st.f_files));
7216 PyStructSequence_SET_ITEM(v, 6,
7217 PyLong_FromLongLong((PY_LONG_LONG) st.f_ffree));
7218 PyStructSequence_SET_ITEM(v, 7,
7219 PyLong_FromLongLong((PY_LONG_LONG) st.f_favail));
7220 PyStructSequence_SET_ITEM(v, 8, PyInt_FromLong((long) st.f_flag));
7221 PyStructSequence_SET_ITEM(v, 9, PyInt_FromLong((long) st.f_namemax));
Guido van Rossum98bf58f2001-10-18 20:34:25 +00007222#endif
7223
Victor Stinnerd6f85422010-05-05 23:33:33 +00007224 return v;
Guido van Rossum98bf58f2001-10-18 20:34:25 +00007225}
7226
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007227PyDoc_STRVAR(posix_fstatvfs__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007228"fstatvfs(fd) -> statvfs result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007229Perform an fstatvfs system call on the given fd.");
Guido van Rossum94f6f721999-01-06 18:42:14 +00007230
7231static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007232posix_fstatvfs(PyObject *self, PyObject *args)
Guido van Rossum94f6f721999-01-06 18:42:14 +00007233{
Victor Stinnerd6f85422010-05-05 23:33:33 +00007234 int fd, res;
7235 struct statvfs st;
Guido van Rossum98bf58f2001-10-18 20:34:25 +00007236
Victor Stinnerd6f85422010-05-05 23:33:33 +00007237 if (!PyArg_ParseTuple(args, "i:fstatvfs", &fd))
7238 return NULL;
7239 Py_BEGIN_ALLOW_THREADS
7240 res = fstatvfs(fd, &st);
7241 Py_END_ALLOW_THREADS
7242 if (res != 0)
7243 return posix_error();
Guido van Rossum98bf58f2001-10-18 20:34:25 +00007244
Victor Stinnerd6f85422010-05-05 23:33:33 +00007245 return _pystatvfs_fromstructstatvfs(st);
Guido van Rossum94f6f721999-01-06 18:42:14 +00007246}
Martin v. Löwis5f5d99c2006-05-16 07:05:37 +00007247#endif /* HAVE_FSTATVFS && HAVE_SYS_STATVFS_H */
Guido van Rossum94f6f721999-01-06 18:42:14 +00007248
7249
Martin v. Löwis5f5d99c2006-05-16 07:05:37 +00007250#if defined(HAVE_STATVFS) && defined(HAVE_SYS_STATVFS_H)
Guido van Rossum94f6f721999-01-06 18:42:14 +00007251#include <sys/statvfs.h>
7252
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007253PyDoc_STRVAR(posix_statvfs__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007254"statvfs(path) -> statvfs result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007255Perform a statvfs system call on the given path.");
Guido van Rossum94f6f721999-01-06 18:42:14 +00007256
7257static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007258posix_statvfs(PyObject *self, PyObject *args)
Guido van Rossum94f6f721999-01-06 18:42:14 +00007259{
Victor Stinnerd6f85422010-05-05 23:33:33 +00007260 char *path;
7261 int res;
7262 struct statvfs st;
7263 if (!PyArg_ParseTuple(args, "s:statvfs", &path))
7264 return NULL;
7265 Py_BEGIN_ALLOW_THREADS
7266 res = statvfs(path, &st);
7267 Py_END_ALLOW_THREADS
7268 if (res != 0)
7269 return posix_error_with_filename(path);
Guido van Rossum98bf58f2001-10-18 20:34:25 +00007270
Victor Stinnerd6f85422010-05-05 23:33:33 +00007271 return _pystatvfs_fromstructstatvfs(st);
Guido van Rossum94f6f721999-01-06 18:42:14 +00007272}
7273#endif /* HAVE_STATVFS */
7274
7275
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007276#ifdef HAVE_TEMPNAM
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007277PyDoc_STRVAR(posix_tempnam__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007278"tempnam([dir[, prefix]]) -> string\n\n\
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007279Return a unique name for a temporary file.\n\
Neal Norwitz50d5d4f2002-07-30 01:17:43 +00007280The directory and a prefix may be specified as strings; they may be omitted\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007281or None if not needed.");
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007282
7283static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007284posix_tempnam(PyObject *self, PyObject *args)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007285{
7286 PyObject *result = NULL;
7287 char *dir = NULL;
7288 char *pfx = NULL;
7289 char *name;
7290
7291 if (!PyArg_ParseTuple(args, "|zz:tempnam", &dir, &pfx))
Victor Stinnerd6f85422010-05-05 23:33:33 +00007292 return NULL;
Skip Montanaro95618b52001-08-18 18:52:10 +00007293
7294 if (PyErr_Warn(PyExc_RuntimeWarning,
Victor Stinnerd6f85422010-05-05 23:33:33 +00007295 "tempnam is a potential security risk to your program") < 0)
7296 return NULL;
Skip Montanaro95618b52001-08-18 18:52:10 +00007297
Antoine Pitroub0614612011-01-02 20:04:52 +00007298 if (PyErr_WarnPy3k("tempnam has been removed in 3.x; "
7299 "use the tempfile module", 1) < 0)
7300 return NULL;
7301
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00007302#ifdef MS_WINDOWS
Fred Drake78b71c22001-07-17 20:37:36 +00007303 name = _tempnam(dir, pfx);
7304#else
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007305 name = tempnam(dir, pfx);
Fred Drake78b71c22001-07-17 20:37:36 +00007306#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007307 if (name == NULL)
Antoine Pitrouda4a5f02011-01-02 20:06:12 +00007308 return PyErr_NoMemory();
Gregory P. Smithdd96db62008-06-09 04:58:54 +00007309 result = PyString_FromString(name);
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007310 free(name);
7311 return result;
7312}
Guido van Rossumd371ff11999-01-25 16:12:23 +00007313#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007314
7315
7316#ifdef HAVE_TMPFILE
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007317PyDoc_STRVAR(posix_tmpfile__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007318"tmpfile() -> file object\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007319Create a temporary file with no directory entries.");
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007320
7321static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00007322posix_tmpfile(PyObject *self, PyObject *noargs)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007323{
7324 FILE *fp;
7325
Antoine Pitroub0614612011-01-02 20:04:52 +00007326 if (PyErr_WarnPy3k("tmpfile has been removed in 3.x; "
7327 "use the tempfile module", 1) < 0)
7328 return NULL;
7329
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007330 fp = tmpfile();
7331 if (fp == NULL)
Antoine Pitrouda4a5f02011-01-02 20:06:12 +00007332 return posix_error();
Guido van Rossumdb9198a2002-06-10 19:23:22 +00007333 return PyFile_FromFile(fp, "<tmpfile>", "w+b", fclose);
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007334}
7335#endif
7336
7337
7338#ifdef HAVE_TMPNAM
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007339PyDoc_STRVAR(posix_tmpnam__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007340"tmpnam() -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007341Return a unique name for a temporary file.");
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007342
7343static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00007344posix_tmpnam(PyObject *self, PyObject *noargs)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007345{
7346 char buffer[L_tmpnam];
7347 char *name;
7348
Skip Montanaro95618b52001-08-18 18:52:10 +00007349 if (PyErr_Warn(PyExc_RuntimeWarning,
Victor Stinnerd6f85422010-05-05 23:33:33 +00007350 "tmpnam is a potential security risk to your program") < 0)
7351 return NULL;
Skip Montanaro95618b52001-08-18 18:52:10 +00007352
Antoine Pitroub0614612011-01-02 20:04:52 +00007353 if (PyErr_WarnPy3k("tmpnam has been removed in 3.x; "
7354 "use the tempfile module", 1) < 0)
7355 return NULL;
7356
Greg Wardb48bc172000-03-01 21:51:56 +00007357#ifdef USE_TMPNAM_R
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007358 name = tmpnam_r(buffer);
7359#else
7360 name = tmpnam(buffer);
7361#endif
7362 if (name == NULL) {
Antoine Pitrouda4a5f02011-01-02 20:06:12 +00007363 PyObject *err = Py_BuildValue("is", 0,
Greg Wardb48bc172000-03-01 21:51:56 +00007364#ifdef USE_TMPNAM_R
Antoine Pitrouda4a5f02011-01-02 20:06:12 +00007365 "unexpected NULL from tmpnam_r"
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007366#else
Antoine Pitrouda4a5f02011-01-02 20:06:12 +00007367 "unexpected NULL from tmpnam"
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007368#endif
Antoine Pitrouda4a5f02011-01-02 20:06:12 +00007369 );
7370 PyErr_SetObject(PyExc_OSError, err);
7371 Py_XDECREF(err);
7372 return NULL;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007373 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00007374 return PyString_FromString(buffer);
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007375}
7376#endif
7377
7378
Fred Drakec9680921999-12-13 16:37:25 +00007379/* This is used for fpathconf(), pathconf(), confstr() and sysconf().
7380 * It maps strings representing configuration variable names to
7381 * integer values, allowing those functions to be called with the
Thomas Wouters7e474022000-07-16 12:04:32 +00007382 * magic names instead of polluting the module's namespace with tons of
Fred Drake12c6e2d1999-12-14 21:25:03 +00007383 * rarely-used constants. There are three separate tables that use
7384 * these definitions.
Fred Drakebec628d1999-12-15 18:31:10 +00007385 *
7386 * This code is always included, even if none of the interfaces that
7387 * need it are included. The #if hackery needed to avoid it would be
7388 * sufficiently pervasive that it's not worth the loss of readability.
Fred Drakec9680921999-12-13 16:37:25 +00007389 */
7390struct constdef {
7391 char *name;
7392 long value;
7393};
7394
Fred Drake12c6e2d1999-12-14 21:25:03 +00007395static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007396conv_confname(PyObject *arg, int *valuep, struct constdef *table,
Victor Stinnerd6f85422010-05-05 23:33:33 +00007397 size_t tablesize)
Fred Drake12c6e2d1999-12-14 21:25:03 +00007398{
7399 if (PyInt_Check(arg)) {
Stefan Krah93f7a322010-11-26 17:35:50 +00007400 *valuep = PyInt_AS_LONG(arg);
7401 return 1;
Fred Drake12c6e2d1999-12-14 21:25:03 +00007402 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00007403 if (PyString_Check(arg)) {
Stefan Krah93f7a322010-11-26 17:35:50 +00007404 /* look up the value in the table using a binary search */
7405 size_t lo = 0;
Victor Stinnerd6f85422010-05-05 23:33:33 +00007406 size_t mid;
Stefan Krah93f7a322010-11-26 17:35:50 +00007407 size_t hi = tablesize;
7408 int cmp;
7409 char *confname = PyString_AS_STRING(arg);
7410 while (lo < hi) {
7411 mid = (lo + hi) / 2;
7412 cmp = strcmp(confname, table[mid].name);
7413 if (cmp < 0)
7414 hi = mid;
7415 else if (cmp > 0)
7416 lo = mid + 1;
7417 else {
7418 *valuep = table[mid].value;
7419 return 1;
7420 }
Fred Drake12c6e2d1999-12-14 21:25:03 +00007421 }
Stefan Krah93f7a322010-11-26 17:35:50 +00007422 PyErr_SetString(PyExc_ValueError, "unrecognized configuration name");
Fred Drake12c6e2d1999-12-14 21:25:03 +00007423 }
7424 else
Stefan Krah93f7a322010-11-26 17:35:50 +00007425 PyErr_SetString(PyExc_TypeError,
7426 "configuration names must be strings or integers");
Fred Drake12c6e2d1999-12-14 21:25:03 +00007427 return 0;
7428}
7429
7430
7431#if defined(HAVE_FPATHCONF) || defined(HAVE_PATHCONF)
7432static struct constdef posix_constants_pathconf[] = {
Fred Draked86ed291999-12-15 15:34:33 +00007433#ifdef _PC_ABI_AIO_XFER_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00007434 {"PC_ABI_AIO_XFER_MAX", _PC_ABI_AIO_XFER_MAX},
Fred Draked86ed291999-12-15 15:34:33 +00007435#endif
7436#ifdef _PC_ABI_ASYNC_IO
Victor Stinnerd6f85422010-05-05 23:33:33 +00007437 {"PC_ABI_ASYNC_IO", _PC_ABI_ASYNC_IO},
Fred Draked86ed291999-12-15 15:34:33 +00007438#endif
Fred Drakec9680921999-12-13 16:37:25 +00007439#ifdef _PC_ASYNC_IO
Victor Stinnerd6f85422010-05-05 23:33:33 +00007440 {"PC_ASYNC_IO", _PC_ASYNC_IO},
Fred Drakec9680921999-12-13 16:37:25 +00007441#endif
7442#ifdef _PC_CHOWN_RESTRICTED
Victor Stinnerd6f85422010-05-05 23:33:33 +00007443 {"PC_CHOWN_RESTRICTED", _PC_CHOWN_RESTRICTED},
Fred Drakec9680921999-12-13 16:37:25 +00007444#endif
7445#ifdef _PC_FILESIZEBITS
Victor Stinnerd6f85422010-05-05 23:33:33 +00007446 {"PC_FILESIZEBITS", _PC_FILESIZEBITS},
Fred Drakec9680921999-12-13 16:37:25 +00007447#endif
7448#ifdef _PC_LAST
Victor Stinnerd6f85422010-05-05 23:33:33 +00007449 {"PC_LAST", _PC_LAST},
Fred Drakec9680921999-12-13 16:37:25 +00007450#endif
7451#ifdef _PC_LINK_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00007452 {"PC_LINK_MAX", _PC_LINK_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00007453#endif
7454#ifdef _PC_MAX_CANON
Victor Stinnerd6f85422010-05-05 23:33:33 +00007455 {"PC_MAX_CANON", _PC_MAX_CANON},
Fred Drakec9680921999-12-13 16:37:25 +00007456#endif
7457#ifdef _PC_MAX_INPUT
Victor Stinnerd6f85422010-05-05 23:33:33 +00007458 {"PC_MAX_INPUT", _PC_MAX_INPUT},
Fred Drakec9680921999-12-13 16:37:25 +00007459#endif
7460#ifdef _PC_NAME_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00007461 {"PC_NAME_MAX", _PC_NAME_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00007462#endif
7463#ifdef _PC_NO_TRUNC
Victor Stinnerd6f85422010-05-05 23:33:33 +00007464 {"PC_NO_TRUNC", _PC_NO_TRUNC},
Fred Drakec9680921999-12-13 16:37:25 +00007465#endif
7466#ifdef _PC_PATH_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00007467 {"PC_PATH_MAX", _PC_PATH_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00007468#endif
7469#ifdef _PC_PIPE_BUF
Victor Stinnerd6f85422010-05-05 23:33:33 +00007470 {"PC_PIPE_BUF", _PC_PIPE_BUF},
Fred Drakec9680921999-12-13 16:37:25 +00007471#endif
7472#ifdef _PC_PRIO_IO
Victor Stinnerd6f85422010-05-05 23:33:33 +00007473 {"PC_PRIO_IO", _PC_PRIO_IO},
Fred Drakec9680921999-12-13 16:37:25 +00007474#endif
7475#ifdef _PC_SOCK_MAXBUF
Victor Stinnerd6f85422010-05-05 23:33:33 +00007476 {"PC_SOCK_MAXBUF", _PC_SOCK_MAXBUF},
Fred Drakec9680921999-12-13 16:37:25 +00007477#endif
7478#ifdef _PC_SYNC_IO
Victor Stinnerd6f85422010-05-05 23:33:33 +00007479 {"PC_SYNC_IO", _PC_SYNC_IO},
Fred Drakec9680921999-12-13 16:37:25 +00007480#endif
7481#ifdef _PC_VDISABLE
Victor Stinnerd6f85422010-05-05 23:33:33 +00007482 {"PC_VDISABLE", _PC_VDISABLE},
Fred Drakec9680921999-12-13 16:37:25 +00007483#endif
7484};
7485
Fred Drakec9680921999-12-13 16:37:25 +00007486static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007487conv_path_confname(PyObject *arg, int *valuep)
Fred Drakec9680921999-12-13 16:37:25 +00007488{
7489 return conv_confname(arg, valuep, posix_constants_pathconf,
7490 sizeof(posix_constants_pathconf)
7491 / sizeof(struct constdef));
7492}
7493#endif
7494
7495#ifdef HAVE_FPATHCONF
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007496PyDoc_STRVAR(posix_fpathconf__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007497"fpathconf(fd, name) -> integer\n\n\
Fred Drakec9680921999-12-13 16:37:25 +00007498Return the configuration limit name for the file descriptor fd.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007499If there is no limit, return -1.");
Fred Drakec9680921999-12-13 16:37:25 +00007500
7501static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007502posix_fpathconf(PyObject *self, PyObject *args)
Fred Drakec9680921999-12-13 16:37:25 +00007503{
7504 PyObject *result = NULL;
7505 int name, fd;
7506
Fred Drake12c6e2d1999-12-14 21:25:03 +00007507 if (PyArg_ParseTuple(args, "iO&:fpathconf", &fd,
7508 conv_path_confname, &name)) {
Stefan Krah93f7a322010-11-26 17:35:50 +00007509 long limit;
Fred Drakec9680921999-12-13 16:37:25 +00007510
Stefan Krah93f7a322010-11-26 17:35:50 +00007511 errno = 0;
7512 limit = fpathconf(fd, name);
7513 if (limit == -1 && errno != 0)
7514 posix_error();
7515 else
7516 result = PyInt_FromLong(limit);
Fred Drakec9680921999-12-13 16:37:25 +00007517 }
7518 return result;
7519}
7520#endif
7521
7522
7523#ifdef HAVE_PATHCONF
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007524PyDoc_STRVAR(posix_pathconf__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007525"pathconf(path, name) -> integer\n\n\
Fred Drakec9680921999-12-13 16:37:25 +00007526Return the configuration limit name for the file or directory path.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007527If there is no limit, return -1.");
Fred Drakec9680921999-12-13 16:37:25 +00007528
7529static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007530posix_pathconf(PyObject *self, PyObject *args)
Fred Drakec9680921999-12-13 16:37:25 +00007531{
7532 PyObject *result = NULL;
7533 int name;
7534 char *path;
7535
7536 if (PyArg_ParseTuple(args, "sO&:pathconf", &path,
7537 conv_path_confname, &name)) {
Victor Stinnerd6f85422010-05-05 23:33:33 +00007538 long limit;
Fred Drakec9680921999-12-13 16:37:25 +00007539
Victor Stinnerd6f85422010-05-05 23:33:33 +00007540 errno = 0;
7541 limit = pathconf(path, name);
7542 if (limit == -1 && errno != 0) {
7543 if (errno == EINVAL)
Stefan Krahacaab2a2010-11-26 15:06:27 +00007544 /* could be a path or name problem */
7545 posix_error();
Fred Drakec9680921999-12-13 16:37:25 +00007546 else
Stefan Krahacaab2a2010-11-26 15:06:27 +00007547 posix_error_with_filename(path);
Victor Stinnerd6f85422010-05-05 23:33:33 +00007548 }
7549 else
7550 result = PyInt_FromLong(limit);
Fred Drakec9680921999-12-13 16:37:25 +00007551 }
7552 return result;
7553}
7554#endif
7555
7556#ifdef HAVE_CONFSTR
7557static struct constdef posix_constants_confstr[] = {
Fred Draked86ed291999-12-15 15:34:33 +00007558#ifdef _CS_ARCHITECTURE
Victor Stinnerd6f85422010-05-05 23:33:33 +00007559 {"CS_ARCHITECTURE", _CS_ARCHITECTURE},
Fred Draked86ed291999-12-15 15:34:33 +00007560#endif
7561#ifdef _CS_HOSTNAME
Victor Stinnerd6f85422010-05-05 23:33:33 +00007562 {"CS_HOSTNAME", _CS_HOSTNAME},
Fred Draked86ed291999-12-15 15:34:33 +00007563#endif
7564#ifdef _CS_HW_PROVIDER
Victor Stinnerd6f85422010-05-05 23:33:33 +00007565 {"CS_HW_PROVIDER", _CS_HW_PROVIDER},
Fred Draked86ed291999-12-15 15:34:33 +00007566#endif
7567#ifdef _CS_HW_SERIAL
Victor Stinnerd6f85422010-05-05 23:33:33 +00007568 {"CS_HW_SERIAL", _CS_HW_SERIAL},
Fred Draked86ed291999-12-15 15:34:33 +00007569#endif
7570#ifdef _CS_INITTAB_NAME
Victor Stinnerd6f85422010-05-05 23:33:33 +00007571 {"CS_INITTAB_NAME", _CS_INITTAB_NAME},
Fred Draked86ed291999-12-15 15:34:33 +00007572#endif
Fred Drakec9680921999-12-13 16:37:25 +00007573#ifdef _CS_LFS64_CFLAGS
Victor Stinnerd6f85422010-05-05 23:33:33 +00007574 {"CS_LFS64_CFLAGS", _CS_LFS64_CFLAGS},
Fred Drakec9680921999-12-13 16:37:25 +00007575#endif
7576#ifdef _CS_LFS64_LDFLAGS
Victor Stinnerd6f85422010-05-05 23:33:33 +00007577 {"CS_LFS64_LDFLAGS", _CS_LFS64_LDFLAGS},
Fred Drakec9680921999-12-13 16:37:25 +00007578#endif
7579#ifdef _CS_LFS64_LIBS
Victor Stinnerd6f85422010-05-05 23:33:33 +00007580 {"CS_LFS64_LIBS", _CS_LFS64_LIBS},
Fred Drakec9680921999-12-13 16:37:25 +00007581#endif
7582#ifdef _CS_LFS64_LINTFLAGS
Victor Stinnerd6f85422010-05-05 23:33:33 +00007583 {"CS_LFS64_LINTFLAGS", _CS_LFS64_LINTFLAGS},
Fred Drakec9680921999-12-13 16:37:25 +00007584#endif
7585#ifdef _CS_LFS_CFLAGS
Victor Stinnerd6f85422010-05-05 23:33:33 +00007586 {"CS_LFS_CFLAGS", _CS_LFS_CFLAGS},
Fred Drakec9680921999-12-13 16:37:25 +00007587#endif
7588#ifdef _CS_LFS_LDFLAGS
Victor Stinnerd6f85422010-05-05 23:33:33 +00007589 {"CS_LFS_LDFLAGS", _CS_LFS_LDFLAGS},
Fred Drakec9680921999-12-13 16:37:25 +00007590#endif
7591#ifdef _CS_LFS_LIBS
Victor Stinnerd6f85422010-05-05 23:33:33 +00007592 {"CS_LFS_LIBS", _CS_LFS_LIBS},
Fred Drakec9680921999-12-13 16:37:25 +00007593#endif
7594#ifdef _CS_LFS_LINTFLAGS
Victor Stinnerd6f85422010-05-05 23:33:33 +00007595 {"CS_LFS_LINTFLAGS", _CS_LFS_LINTFLAGS},
Fred Drakec9680921999-12-13 16:37:25 +00007596#endif
Fred Draked86ed291999-12-15 15:34:33 +00007597#ifdef _CS_MACHINE
Victor Stinnerd6f85422010-05-05 23:33:33 +00007598 {"CS_MACHINE", _CS_MACHINE},
Fred Draked86ed291999-12-15 15:34:33 +00007599#endif
Fred Drakec9680921999-12-13 16:37:25 +00007600#ifdef _CS_PATH
Victor Stinnerd6f85422010-05-05 23:33:33 +00007601 {"CS_PATH", _CS_PATH},
Fred Drakec9680921999-12-13 16:37:25 +00007602#endif
Fred Draked86ed291999-12-15 15:34:33 +00007603#ifdef _CS_RELEASE
Victor Stinnerd6f85422010-05-05 23:33:33 +00007604 {"CS_RELEASE", _CS_RELEASE},
Fred Draked86ed291999-12-15 15:34:33 +00007605#endif
7606#ifdef _CS_SRPC_DOMAIN
Victor Stinnerd6f85422010-05-05 23:33:33 +00007607 {"CS_SRPC_DOMAIN", _CS_SRPC_DOMAIN},
Fred Draked86ed291999-12-15 15:34:33 +00007608#endif
7609#ifdef _CS_SYSNAME
Victor Stinnerd6f85422010-05-05 23:33:33 +00007610 {"CS_SYSNAME", _CS_SYSNAME},
Fred Draked86ed291999-12-15 15:34:33 +00007611#endif
7612#ifdef _CS_VERSION
Victor Stinnerd6f85422010-05-05 23:33:33 +00007613 {"CS_VERSION", _CS_VERSION},
Fred Draked86ed291999-12-15 15:34:33 +00007614#endif
Fred Drakec9680921999-12-13 16:37:25 +00007615#ifdef _CS_XBS5_ILP32_OFF32_CFLAGS
Victor Stinnerd6f85422010-05-05 23:33:33 +00007616 {"CS_XBS5_ILP32_OFF32_CFLAGS", _CS_XBS5_ILP32_OFF32_CFLAGS},
Fred Drakec9680921999-12-13 16:37:25 +00007617#endif
7618#ifdef _CS_XBS5_ILP32_OFF32_LDFLAGS
Victor Stinnerd6f85422010-05-05 23:33:33 +00007619 {"CS_XBS5_ILP32_OFF32_LDFLAGS", _CS_XBS5_ILP32_OFF32_LDFLAGS},
Fred Drakec9680921999-12-13 16:37:25 +00007620#endif
7621#ifdef _CS_XBS5_ILP32_OFF32_LIBS
Victor Stinnerd6f85422010-05-05 23:33:33 +00007622 {"CS_XBS5_ILP32_OFF32_LIBS", _CS_XBS5_ILP32_OFF32_LIBS},
Fred Drakec9680921999-12-13 16:37:25 +00007623#endif
7624#ifdef _CS_XBS5_ILP32_OFF32_LINTFLAGS
Victor Stinnerd6f85422010-05-05 23:33:33 +00007625 {"CS_XBS5_ILP32_OFF32_LINTFLAGS", _CS_XBS5_ILP32_OFF32_LINTFLAGS},
Fred Drakec9680921999-12-13 16:37:25 +00007626#endif
7627#ifdef _CS_XBS5_ILP32_OFFBIG_CFLAGS
Victor Stinnerd6f85422010-05-05 23:33:33 +00007628 {"CS_XBS5_ILP32_OFFBIG_CFLAGS", _CS_XBS5_ILP32_OFFBIG_CFLAGS},
Fred Drakec9680921999-12-13 16:37:25 +00007629#endif
7630#ifdef _CS_XBS5_ILP32_OFFBIG_LDFLAGS
Victor Stinnerd6f85422010-05-05 23:33:33 +00007631 {"CS_XBS5_ILP32_OFFBIG_LDFLAGS", _CS_XBS5_ILP32_OFFBIG_LDFLAGS},
Fred Drakec9680921999-12-13 16:37:25 +00007632#endif
7633#ifdef _CS_XBS5_ILP32_OFFBIG_LIBS
Victor Stinnerd6f85422010-05-05 23:33:33 +00007634 {"CS_XBS5_ILP32_OFFBIG_LIBS", _CS_XBS5_ILP32_OFFBIG_LIBS},
Fred Drakec9680921999-12-13 16:37:25 +00007635#endif
7636#ifdef _CS_XBS5_ILP32_OFFBIG_LINTFLAGS
Victor Stinnerd6f85422010-05-05 23:33:33 +00007637 {"CS_XBS5_ILP32_OFFBIG_LINTFLAGS", _CS_XBS5_ILP32_OFFBIG_LINTFLAGS},
Fred Drakec9680921999-12-13 16:37:25 +00007638#endif
7639#ifdef _CS_XBS5_LP64_OFF64_CFLAGS
Victor Stinnerd6f85422010-05-05 23:33:33 +00007640 {"CS_XBS5_LP64_OFF64_CFLAGS", _CS_XBS5_LP64_OFF64_CFLAGS},
Fred Drakec9680921999-12-13 16:37:25 +00007641#endif
7642#ifdef _CS_XBS5_LP64_OFF64_LDFLAGS
Victor Stinnerd6f85422010-05-05 23:33:33 +00007643 {"CS_XBS5_LP64_OFF64_LDFLAGS", _CS_XBS5_LP64_OFF64_LDFLAGS},
Fred Drakec9680921999-12-13 16:37:25 +00007644#endif
7645#ifdef _CS_XBS5_LP64_OFF64_LIBS
Victor Stinnerd6f85422010-05-05 23:33:33 +00007646 {"CS_XBS5_LP64_OFF64_LIBS", _CS_XBS5_LP64_OFF64_LIBS},
Fred Drakec9680921999-12-13 16:37:25 +00007647#endif
7648#ifdef _CS_XBS5_LP64_OFF64_LINTFLAGS
Victor Stinnerd6f85422010-05-05 23:33:33 +00007649 {"CS_XBS5_LP64_OFF64_LINTFLAGS", _CS_XBS5_LP64_OFF64_LINTFLAGS},
Fred Drakec9680921999-12-13 16:37:25 +00007650#endif
7651#ifdef _CS_XBS5_LPBIG_OFFBIG_CFLAGS
Victor Stinnerd6f85422010-05-05 23:33:33 +00007652 {"CS_XBS5_LPBIG_OFFBIG_CFLAGS", _CS_XBS5_LPBIG_OFFBIG_CFLAGS},
Fred Drakec9680921999-12-13 16:37:25 +00007653#endif
7654#ifdef _CS_XBS5_LPBIG_OFFBIG_LDFLAGS
Victor Stinnerd6f85422010-05-05 23:33:33 +00007655 {"CS_XBS5_LPBIG_OFFBIG_LDFLAGS", _CS_XBS5_LPBIG_OFFBIG_LDFLAGS},
Fred Drakec9680921999-12-13 16:37:25 +00007656#endif
7657#ifdef _CS_XBS5_LPBIG_OFFBIG_LIBS
Victor Stinnerd6f85422010-05-05 23:33:33 +00007658 {"CS_XBS5_LPBIG_OFFBIG_LIBS", _CS_XBS5_LPBIG_OFFBIG_LIBS},
Fred Drakec9680921999-12-13 16:37:25 +00007659#endif
7660#ifdef _CS_XBS5_LPBIG_OFFBIG_LINTFLAGS
Victor Stinnerd6f85422010-05-05 23:33:33 +00007661 {"CS_XBS5_LPBIG_OFFBIG_LINTFLAGS", _CS_XBS5_LPBIG_OFFBIG_LINTFLAGS},
Fred Drakec9680921999-12-13 16:37:25 +00007662#endif
Fred Draked86ed291999-12-15 15:34:33 +00007663#ifdef _MIPS_CS_AVAIL_PROCESSORS
Victor Stinnerd6f85422010-05-05 23:33:33 +00007664 {"MIPS_CS_AVAIL_PROCESSORS", _MIPS_CS_AVAIL_PROCESSORS},
Fred Draked86ed291999-12-15 15:34:33 +00007665#endif
7666#ifdef _MIPS_CS_BASE
Victor Stinnerd6f85422010-05-05 23:33:33 +00007667 {"MIPS_CS_BASE", _MIPS_CS_BASE},
Fred Draked86ed291999-12-15 15:34:33 +00007668#endif
7669#ifdef _MIPS_CS_HOSTID
Victor Stinnerd6f85422010-05-05 23:33:33 +00007670 {"MIPS_CS_HOSTID", _MIPS_CS_HOSTID},
Fred Draked86ed291999-12-15 15:34:33 +00007671#endif
7672#ifdef _MIPS_CS_HW_NAME
Victor Stinnerd6f85422010-05-05 23:33:33 +00007673 {"MIPS_CS_HW_NAME", _MIPS_CS_HW_NAME},
Fred Draked86ed291999-12-15 15:34:33 +00007674#endif
7675#ifdef _MIPS_CS_NUM_PROCESSORS
Victor Stinnerd6f85422010-05-05 23:33:33 +00007676 {"MIPS_CS_NUM_PROCESSORS", _MIPS_CS_NUM_PROCESSORS},
Fred Draked86ed291999-12-15 15:34:33 +00007677#endif
7678#ifdef _MIPS_CS_OSREL_MAJ
Victor Stinnerd6f85422010-05-05 23:33:33 +00007679 {"MIPS_CS_OSREL_MAJ", _MIPS_CS_OSREL_MAJ},
Fred Draked86ed291999-12-15 15:34:33 +00007680#endif
7681#ifdef _MIPS_CS_OSREL_MIN
Victor Stinnerd6f85422010-05-05 23:33:33 +00007682 {"MIPS_CS_OSREL_MIN", _MIPS_CS_OSREL_MIN},
Fred Draked86ed291999-12-15 15:34:33 +00007683#endif
7684#ifdef _MIPS_CS_OSREL_PATCH
Victor Stinnerd6f85422010-05-05 23:33:33 +00007685 {"MIPS_CS_OSREL_PATCH", _MIPS_CS_OSREL_PATCH},
Fred Draked86ed291999-12-15 15:34:33 +00007686#endif
7687#ifdef _MIPS_CS_OS_NAME
Victor Stinnerd6f85422010-05-05 23:33:33 +00007688 {"MIPS_CS_OS_NAME", _MIPS_CS_OS_NAME},
Fred Draked86ed291999-12-15 15:34:33 +00007689#endif
7690#ifdef _MIPS_CS_OS_PROVIDER
Victor Stinnerd6f85422010-05-05 23:33:33 +00007691 {"MIPS_CS_OS_PROVIDER", _MIPS_CS_OS_PROVIDER},
Fred Draked86ed291999-12-15 15:34:33 +00007692#endif
7693#ifdef _MIPS_CS_PROCESSORS
Victor Stinnerd6f85422010-05-05 23:33:33 +00007694 {"MIPS_CS_PROCESSORS", _MIPS_CS_PROCESSORS},
Fred Draked86ed291999-12-15 15:34:33 +00007695#endif
7696#ifdef _MIPS_CS_SERIAL
Victor Stinnerd6f85422010-05-05 23:33:33 +00007697 {"MIPS_CS_SERIAL", _MIPS_CS_SERIAL},
Fred Draked86ed291999-12-15 15:34:33 +00007698#endif
7699#ifdef _MIPS_CS_VENDOR
Victor Stinnerd6f85422010-05-05 23:33:33 +00007700 {"MIPS_CS_VENDOR", _MIPS_CS_VENDOR},
Fred Draked86ed291999-12-15 15:34:33 +00007701#endif
Fred Drakec9680921999-12-13 16:37:25 +00007702};
7703
7704static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007705conv_confstr_confname(PyObject *arg, int *valuep)
Fred Drakec9680921999-12-13 16:37:25 +00007706{
7707 return conv_confname(arg, valuep, posix_constants_confstr,
7708 sizeof(posix_constants_confstr)
7709 / sizeof(struct constdef));
7710}
7711
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007712PyDoc_STRVAR(posix_confstr__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007713"confstr(name) -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007714Return a string-valued system configuration variable.");
Fred Drakec9680921999-12-13 16:37:25 +00007715
7716static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007717posix_confstr(PyObject *self, PyObject *args)
Fred Drakec9680921999-12-13 16:37:25 +00007718{
7719 PyObject *result = NULL;
7720 int name;
Neal Norwitz449b24e2006-04-20 06:56:05 +00007721 char buffer[256];
Fred Drakec9680921999-12-13 16:37:25 +00007722
7723 if (PyArg_ParseTuple(args, "O&:confstr", conv_confstr_confname, &name)) {
Victor Stinnerd6f85422010-05-05 23:33:33 +00007724 int len;
Fred Drakec9680921999-12-13 16:37:25 +00007725
Victor Stinnerd6f85422010-05-05 23:33:33 +00007726 errno = 0;
7727 len = confstr(name, buffer, sizeof(buffer));
7728 if (len == 0) {
7729 if (errno) {
7730 posix_error();
Fred Drakec9680921999-12-13 16:37:25 +00007731 }
7732 else {
Victor Stinnerd6f85422010-05-05 23:33:33 +00007733 result = Py_None;
7734 Py_INCREF(Py_None);
Fred Drakec9680921999-12-13 16:37:25 +00007735 }
7736 }
Victor Stinnerd6f85422010-05-05 23:33:33 +00007737 else {
7738 if ((unsigned int)len >= sizeof(buffer)) {
7739 result = PyString_FromStringAndSize(NULL, len-1);
7740 if (result != NULL)
7741 confstr(name, PyString_AS_STRING(result), len);
7742 }
7743 else
7744 result = PyString_FromStringAndSize(buffer, len-1);
7745 }
7746 }
Fred Drakec9680921999-12-13 16:37:25 +00007747 return result;
7748}
7749#endif
7750
7751
7752#ifdef HAVE_SYSCONF
7753static struct constdef posix_constants_sysconf[] = {
7754#ifdef _SC_2_CHAR_TERM
Victor Stinnerd6f85422010-05-05 23:33:33 +00007755 {"SC_2_CHAR_TERM", _SC_2_CHAR_TERM},
Fred Drakec9680921999-12-13 16:37:25 +00007756#endif
7757#ifdef _SC_2_C_BIND
Victor Stinnerd6f85422010-05-05 23:33:33 +00007758 {"SC_2_C_BIND", _SC_2_C_BIND},
Fred Drakec9680921999-12-13 16:37:25 +00007759#endif
7760#ifdef _SC_2_C_DEV
Victor Stinnerd6f85422010-05-05 23:33:33 +00007761 {"SC_2_C_DEV", _SC_2_C_DEV},
Fred Drakec9680921999-12-13 16:37:25 +00007762#endif
7763#ifdef _SC_2_C_VERSION
Victor Stinnerd6f85422010-05-05 23:33:33 +00007764 {"SC_2_C_VERSION", _SC_2_C_VERSION},
Fred Drakec9680921999-12-13 16:37:25 +00007765#endif
7766#ifdef _SC_2_FORT_DEV
Victor Stinnerd6f85422010-05-05 23:33:33 +00007767 {"SC_2_FORT_DEV", _SC_2_FORT_DEV},
Fred Drakec9680921999-12-13 16:37:25 +00007768#endif
7769#ifdef _SC_2_FORT_RUN
Victor Stinnerd6f85422010-05-05 23:33:33 +00007770 {"SC_2_FORT_RUN", _SC_2_FORT_RUN},
Fred Drakec9680921999-12-13 16:37:25 +00007771#endif
7772#ifdef _SC_2_LOCALEDEF
Victor Stinnerd6f85422010-05-05 23:33:33 +00007773 {"SC_2_LOCALEDEF", _SC_2_LOCALEDEF},
Fred Drakec9680921999-12-13 16:37:25 +00007774#endif
7775#ifdef _SC_2_SW_DEV
Victor Stinnerd6f85422010-05-05 23:33:33 +00007776 {"SC_2_SW_DEV", _SC_2_SW_DEV},
Fred Drakec9680921999-12-13 16:37:25 +00007777#endif
7778#ifdef _SC_2_UPE
Victor Stinnerd6f85422010-05-05 23:33:33 +00007779 {"SC_2_UPE", _SC_2_UPE},
Fred Drakec9680921999-12-13 16:37:25 +00007780#endif
7781#ifdef _SC_2_VERSION
Victor Stinnerd6f85422010-05-05 23:33:33 +00007782 {"SC_2_VERSION", _SC_2_VERSION},
Fred Drakec9680921999-12-13 16:37:25 +00007783#endif
Fred Draked86ed291999-12-15 15:34:33 +00007784#ifdef _SC_ABI_ASYNCHRONOUS_IO
Victor Stinnerd6f85422010-05-05 23:33:33 +00007785 {"SC_ABI_ASYNCHRONOUS_IO", _SC_ABI_ASYNCHRONOUS_IO},
Fred Draked86ed291999-12-15 15:34:33 +00007786#endif
7787#ifdef _SC_ACL
Victor Stinnerd6f85422010-05-05 23:33:33 +00007788 {"SC_ACL", _SC_ACL},
Fred Draked86ed291999-12-15 15:34:33 +00007789#endif
Fred Drakec9680921999-12-13 16:37:25 +00007790#ifdef _SC_AIO_LISTIO_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00007791 {"SC_AIO_LISTIO_MAX", _SC_AIO_LISTIO_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00007792#endif
Fred Drakec9680921999-12-13 16:37:25 +00007793#ifdef _SC_AIO_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00007794 {"SC_AIO_MAX", _SC_AIO_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00007795#endif
7796#ifdef _SC_AIO_PRIO_DELTA_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00007797 {"SC_AIO_PRIO_DELTA_MAX", _SC_AIO_PRIO_DELTA_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00007798#endif
7799#ifdef _SC_ARG_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00007800 {"SC_ARG_MAX", _SC_ARG_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00007801#endif
7802#ifdef _SC_ASYNCHRONOUS_IO
Victor Stinnerd6f85422010-05-05 23:33:33 +00007803 {"SC_ASYNCHRONOUS_IO", _SC_ASYNCHRONOUS_IO},
Fred Drakec9680921999-12-13 16:37:25 +00007804#endif
7805#ifdef _SC_ATEXIT_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00007806 {"SC_ATEXIT_MAX", _SC_ATEXIT_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00007807#endif
Fred Draked86ed291999-12-15 15:34:33 +00007808#ifdef _SC_AUDIT
Victor Stinnerd6f85422010-05-05 23:33:33 +00007809 {"SC_AUDIT", _SC_AUDIT},
Fred Draked86ed291999-12-15 15:34:33 +00007810#endif
Fred Drakec9680921999-12-13 16:37:25 +00007811#ifdef _SC_AVPHYS_PAGES
Victor Stinnerd6f85422010-05-05 23:33:33 +00007812 {"SC_AVPHYS_PAGES", _SC_AVPHYS_PAGES},
Fred Drakec9680921999-12-13 16:37:25 +00007813#endif
7814#ifdef _SC_BC_BASE_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00007815 {"SC_BC_BASE_MAX", _SC_BC_BASE_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00007816#endif
7817#ifdef _SC_BC_DIM_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00007818 {"SC_BC_DIM_MAX", _SC_BC_DIM_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00007819#endif
7820#ifdef _SC_BC_SCALE_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00007821 {"SC_BC_SCALE_MAX", _SC_BC_SCALE_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00007822#endif
7823#ifdef _SC_BC_STRING_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00007824 {"SC_BC_STRING_MAX", _SC_BC_STRING_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00007825#endif
Fred Draked86ed291999-12-15 15:34:33 +00007826#ifdef _SC_CAP
Victor Stinnerd6f85422010-05-05 23:33:33 +00007827 {"SC_CAP", _SC_CAP},
Fred Draked86ed291999-12-15 15:34:33 +00007828#endif
Fred Drakec9680921999-12-13 16:37:25 +00007829#ifdef _SC_CHARCLASS_NAME_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00007830 {"SC_CHARCLASS_NAME_MAX", _SC_CHARCLASS_NAME_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00007831#endif
7832#ifdef _SC_CHAR_BIT
Victor Stinnerd6f85422010-05-05 23:33:33 +00007833 {"SC_CHAR_BIT", _SC_CHAR_BIT},
Fred Drakec9680921999-12-13 16:37:25 +00007834#endif
7835#ifdef _SC_CHAR_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00007836 {"SC_CHAR_MAX", _SC_CHAR_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00007837#endif
7838#ifdef _SC_CHAR_MIN
Victor Stinnerd6f85422010-05-05 23:33:33 +00007839 {"SC_CHAR_MIN", _SC_CHAR_MIN},
Fred Drakec9680921999-12-13 16:37:25 +00007840#endif
7841#ifdef _SC_CHILD_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00007842 {"SC_CHILD_MAX", _SC_CHILD_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00007843#endif
7844#ifdef _SC_CLK_TCK
Victor Stinnerd6f85422010-05-05 23:33:33 +00007845 {"SC_CLK_TCK", _SC_CLK_TCK},
Fred Drakec9680921999-12-13 16:37:25 +00007846#endif
7847#ifdef _SC_COHER_BLKSZ
Victor Stinnerd6f85422010-05-05 23:33:33 +00007848 {"SC_COHER_BLKSZ", _SC_COHER_BLKSZ},
Fred Drakec9680921999-12-13 16:37:25 +00007849#endif
7850#ifdef _SC_COLL_WEIGHTS_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00007851 {"SC_COLL_WEIGHTS_MAX", _SC_COLL_WEIGHTS_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00007852#endif
7853#ifdef _SC_DCACHE_ASSOC
Victor Stinnerd6f85422010-05-05 23:33:33 +00007854 {"SC_DCACHE_ASSOC", _SC_DCACHE_ASSOC},
Fred Drakec9680921999-12-13 16:37:25 +00007855#endif
7856#ifdef _SC_DCACHE_BLKSZ
Victor Stinnerd6f85422010-05-05 23:33:33 +00007857 {"SC_DCACHE_BLKSZ", _SC_DCACHE_BLKSZ},
Fred Drakec9680921999-12-13 16:37:25 +00007858#endif
7859#ifdef _SC_DCACHE_LINESZ
Victor Stinnerd6f85422010-05-05 23:33:33 +00007860 {"SC_DCACHE_LINESZ", _SC_DCACHE_LINESZ},
Fred Drakec9680921999-12-13 16:37:25 +00007861#endif
7862#ifdef _SC_DCACHE_SZ
Victor Stinnerd6f85422010-05-05 23:33:33 +00007863 {"SC_DCACHE_SZ", _SC_DCACHE_SZ},
Fred Drakec9680921999-12-13 16:37:25 +00007864#endif
7865#ifdef _SC_DCACHE_TBLKSZ
Victor Stinnerd6f85422010-05-05 23:33:33 +00007866 {"SC_DCACHE_TBLKSZ", _SC_DCACHE_TBLKSZ},
Fred Drakec9680921999-12-13 16:37:25 +00007867#endif
7868#ifdef _SC_DELAYTIMER_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00007869 {"SC_DELAYTIMER_MAX", _SC_DELAYTIMER_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00007870#endif
7871#ifdef _SC_EQUIV_CLASS_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00007872 {"SC_EQUIV_CLASS_MAX", _SC_EQUIV_CLASS_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00007873#endif
7874#ifdef _SC_EXPR_NEST_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00007875 {"SC_EXPR_NEST_MAX", _SC_EXPR_NEST_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00007876#endif
7877#ifdef _SC_FSYNC
Victor Stinnerd6f85422010-05-05 23:33:33 +00007878 {"SC_FSYNC", _SC_FSYNC},
Fred Drakec9680921999-12-13 16:37:25 +00007879#endif
7880#ifdef _SC_GETGR_R_SIZE_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00007881 {"SC_GETGR_R_SIZE_MAX", _SC_GETGR_R_SIZE_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00007882#endif
7883#ifdef _SC_GETPW_R_SIZE_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00007884 {"SC_GETPW_R_SIZE_MAX", _SC_GETPW_R_SIZE_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00007885#endif
7886#ifdef _SC_ICACHE_ASSOC
Victor Stinnerd6f85422010-05-05 23:33:33 +00007887 {"SC_ICACHE_ASSOC", _SC_ICACHE_ASSOC},
Fred Drakec9680921999-12-13 16:37:25 +00007888#endif
7889#ifdef _SC_ICACHE_BLKSZ
Victor Stinnerd6f85422010-05-05 23:33:33 +00007890 {"SC_ICACHE_BLKSZ", _SC_ICACHE_BLKSZ},
Fred Drakec9680921999-12-13 16:37:25 +00007891#endif
7892#ifdef _SC_ICACHE_LINESZ
Victor Stinnerd6f85422010-05-05 23:33:33 +00007893 {"SC_ICACHE_LINESZ", _SC_ICACHE_LINESZ},
Fred Drakec9680921999-12-13 16:37:25 +00007894#endif
7895#ifdef _SC_ICACHE_SZ
Victor Stinnerd6f85422010-05-05 23:33:33 +00007896 {"SC_ICACHE_SZ", _SC_ICACHE_SZ},
Fred Drakec9680921999-12-13 16:37:25 +00007897#endif
Fred Draked86ed291999-12-15 15:34:33 +00007898#ifdef _SC_INF
Victor Stinnerd6f85422010-05-05 23:33:33 +00007899 {"SC_INF", _SC_INF},
Fred Draked86ed291999-12-15 15:34:33 +00007900#endif
Fred Drakec9680921999-12-13 16:37:25 +00007901#ifdef _SC_INT_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00007902 {"SC_INT_MAX", _SC_INT_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00007903#endif
7904#ifdef _SC_INT_MIN
Victor Stinnerd6f85422010-05-05 23:33:33 +00007905 {"SC_INT_MIN", _SC_INT_MIN},
Fred Drakec9680921999-12-13 16:37:25 +00007906#endif
7907#ifdef _SC_IOV_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00007908 {"SC_IOV_MAX", _SC_IOV_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00007909#endif
Fred Draked86ed291999-12-15 15:34:33 +00007910#ifdef _SC_IP_SECOPTS
Victor Stinnerd6f85422010-05-05 23:33:33 +00007911 {"SC_IP_SECOPTS", _SC_IP_SECOPTS},
Fred Draked86ed291999-12-15 15:34:33 +00007912#endif
Fred Drakec9680921999-12-13 16:37:25 +00007913#ifdef _SC_JOB_CONTROL
Victor Stinnerd6f85422010-05-05 23:33:33 +00007914 {"SC_JOB_CONTROL", _SC_JOB_CONTROL},
Fred Drakec9680921999-12-13 16:37:25 +00007915#endif
Fred Draked86ed291999-12-15 15:34:33 +00007916#ifdef _SC_KERN_POINTERS
Victor Stinnerd6f85422010-05-05 23:33:33 +00007917 {"SC_KERN_POINTERS", _SC_KERN_POINTERS},
Fred Draked86ed291999-12-15 15:34:33 +00007918#endif
7919#ifdef _SC_KERN_SIM
Victor Stinnerd6f85422010-05-05 23:33:33 +00007920 {"SC_KERN_SIM", _SC_KERN_SIM},
Fred Draked86ed291999-12-15 15:34:33 +00007921#endif
Fred Drakec9680921999-12-13 16:37:25 +00007922#ifdef _SC_LINE_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00007923 {"SC_LINE_MAX", _SC_LINE_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00007924#endif
7925#ifdef _SC_LOGIN_NAME_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00007926 {"SC_LOGIN_NAME_MAX", _SC_LOGIN_NAME_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00007927#endif
7928#ifdef _SC_LOGNAME_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00007929 {"SC_LOGNAME_MAX", _SC_LOGNAME_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00007930#endif
7931#ifdef _SC_LONG_BIT
Victor Stinnerd6f85422010-05-05 23:33:33 +00007932 {"SC_LONG_BIT", _SC_LONG_BIT},
Fred Drakec9680921999-12-13 16:37:25 +00007933#endif
Fred Draked86ed291999-12-15 15:34:33 +00007934#ifdef _SC_MAC
Victor Stinnerd6f85422010-05-05 23:33:33 +00007935 {"SC_MAC", _SC_MAC},
Fred Draked86ed291999-12-15 15:34:33 +00007936#endif
Fred Drakec9680921999-12-13 16:37:25 +00007937#ifdef _SC_MAPPED_FILES
Victor Stinnerd6f85422010-05-05 23:33:33 +00007938 {"SC_MAPPED_FILES", _SC_MAPPED_FILES},
Fred Drakec9680921999-12-13 16:37:25 +00007939#endif
7940#ifdef _SC_MAXPID
Victor Stinnerd6f85422010-05-05 23:33:33 +00007941 {"SC_MAXPID", _SC_MAXPID},
Fred Drakec9680921999-12-13 16:37:25 +00007942#endif
7943#ifdef _SC_MB_LEN_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00007944 {"SC_MB_LEN_MAX", _SC_MB_LEN_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00007945#endif
7946#ifdef _SC_MEMLOCK
Victor Stinnerd6f85422010-05-05 23:33:33 +00007947 {"SC_MEMLOCK", _SC_MEMLOCK},
Fred Drakec9680921999-12-13 16:37:25 +00007948#endif
7949#ifdef _SC_MEMLOCK_RANGE
Victor Stinnerd6f85422010-05-05 23:33:33 +00007950 {"SC_MEMLOCK_RANGE", _SC_MEMLOCK_RANGE},
Fred Drakec9680921999-12-13 16:37:25 +00007951#endif
7952#ifdef _SC_MEMORY_PROTECTION
Victor Stinnerd6f85422010-05-05 23:33:33 +00007953 {"SC_MEMORY_PROTECTION", _SC_MEMORY_PROTECTION},
Fred Drakec9680921999-12-13 16:37:25 +00007954#endif
7955#ifdef _SC_MESSAGE_PASSING
Victor Stinnerd6f85422010-05-05 23:33:33 +00007956 {"SC_MESSAGE_PASSING", _SC_MESSAGE_PASSING},
Fred Drakec9680921999-12-13 16:37:25 +00007957#endif
Fred Draked86ed291999-12-15 15:34:33 +00007958#ifdef _SC_MMAP_FIXED_ALIGNMENT
Victor Stinnerd6f85422010-05-05 23:33:33 +00007959 {"SC_MMAP_FIXED_ALIGNMENT", _SC_MMAP_FIXED_ALIGNMENT},
Fred Draked86ed291999-12-15 15:34:33 +00007960#endif
Fred Drakec9680921999-12-13 16:37:25 +00007961#ifdef _SC_MQ_OPEN_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00007962 {"SC_MQ_OPEN_MAX", _SC_MQ_OPEN_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00007963#endif
7964#ifdef _SC_MQ_PRIO_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00007965 {"SC_MQ_PRIO_MAX", _SC_MQ_PRIO_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00007966#endif
Fred Draked86ed291999-12-15 15:34:33 +00007967#ifdef _SC_NACLS_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00007968 {"SC_NACLS_MAX", _SC_NACLS_MAX},
Fred Draked86ed291999-12-15 15:34:33 +00007969#endif
Fred Drakec9680921999-12-13 16:37:25 +00007970#ifdef _SC_NGROUPS_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00007971 {"SC_NGROUPS_MAX", _SC_NGROUPS_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00007972#endif
7973#ifdef _SC_NL_ARGMAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00007974 {"SC_NL_ARGMAX", _SC_NL_ARGMAX},
Fred Drakec9680921999-12-13 16:37:25 +00007975#endif
7976#ifdef _SC_NL_LANGMAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00007977 {"SC_NL_LANGMAX", _SC_NL_LANGMAX},
Fred Drakec9680921999-12-13 16:37:25 +00007978#endif
7979#ifdef _SC_NL_MSGMAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00007980 {"SC_NL_MSGMAX", _SC_NL_MSGMAX},
Fred Drakec9680921999-12-13 16:37:25 +00007981#endif
7982#ifdef _SC_NL_NMAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00007983 {"SC_NL_NMAX", _SC_NL_NMAX},
Fred Drakec9680921999-12-13 16:37:25 +00007984#endif
7985#ifdef _SC_NL_SETMAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00007986 {"SC_NL_SETMAX", _SC_NL_SETMAX},
Fred Drakec9680921999-12-13 16:37:25 +00007987#endif
7988#ifdef _SC_NL_TEXTMAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00007989 {"SC_NL_TEXTMAX", _SC_NL_TEXTMAX},
Fred Drakec9680921999-12-13 16:37:25 +00007990#endif
7991#ifdef _SC_NPROCESSORS_CONF
Victor Stinnerd6f85422010-05-05 23:33:33 +00007992 {"SC_NPROCESSORS_CONF", _SC_NPROCESSORS_CONF},
Fred Drakec9680921999-12-13 16:37:25 +00007993#endif
7994#ifdef _SC_NPROCESSORS_ONLN
Victor Stinnerd6f85422010-05-05 23:33:33 +00007995 {"SC_NPROCESSORS_ONLN", _SC_NPROCESSORS_ONLN},
Fred Drakec9680921999-12-13 16:37:25 +00007996#endif
Fred Draked86ed291999-12-15 15:34:33 +00007997#ifdef _SC_NPROC_CONF
Victor Stinnerd6f85422010-05-05 23:33:33 +00007998 {"SC_NPROC_CONF", _SC_NPROC_CONF},
Fred Draked86ed291999-12-15 15:34:33 +00007999#endif
8000#ifdef _SC_NPROC_ONLN
Victor Stinnerd6f85422010-05-05 23:33:33 +00008001 {"SC_NPROC_ONLN", _SC_NPROC_ONLN},
Fred Draked86ed291999-12-15 15:34:33 +00008002#endif
Fred Drakec9680921999-12-13 16:37:25 +00008003#ifdef _SC_NZERO
Victor Stinnerd6f85422010-05-05 23:33:33 +00008004 {"SC_NZERO", _SC_NZERO},
Fred Drakec9680921999-12-13 16:37:25 +00008005#endif
8006#ifdef _SC_OPEN_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00008007 {"SC_OPEN_MAX", _SC_OPEN_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008008#endif
8009#ifdef _SC_PAGESIZE
Victor Stinnerd6f85422010-05-05 23:33:33 +00008010 {"SC_PAGESIZE", _SC_PAGESIZE},
Fred Drakec9680921999-12-13 16:37:25 +00008011#endif
8012#ifdef _SC_PAGE_SIZE
Victor Stinnerd6f85422010-05-05 23:33:33 +00008013 {"SC_PAGE_SIZE", _SC_PAGE_SIZE},
Fred Drakec9680921999-12-13 16:37:25 +00008014#endif
8015#ifdef _SC_PASS_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00008016 {"SC_PASS_MAX", _SC_PASS_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008017#endif
8018#ifdef _SC_PHYS_PAGES
Victor Stinnerd6f85422010-05-05 23:33:33 +00008019 {"SC_PHYS_PAGES", _SC_PHYS_PAGES},
Fred Drakec9680921999-12-13 16:37:25 +00008020#endif
8021#ifdef _SC_PII
Victor Stinnerd6f85422010-05-05 23:33:33 +00008022 {"SC_PII", _SC_PII},
Fred Drakec9680921999-12-13 16:37:25 +00008023#endif
8024#ifdef _SC_PII_INTERNET
Victor Stinnerd6f85422010-05-05 23:33:33 +00008025 {"SC_PII_INTERNET", _SC_PII_INTERNET},
Fred Drakec9680921999-12-13 16:37:25 +00008026#endif
8027#ifdef _SC_PII_INTERNET_DGRAM
Victor Stinnerd6f85422010-05-05 23:33:33 +00008028 {"SC_PII_INTERNET_DGRAM", _SC_PII_INTERNET_DGRAM},
Fred Drakec9680921999-12-13 16:37:25 +00008029#endif
8030#ifdef _SC_PII_INTERNET_STREAM
Victor Stinnerd6f85422010-05-05 23:33:33 +00008031 {"SC_PII_INTERNET_STREAM", _SC_PII_INTERNET_STREAM},
Fred Drakec9680921999-12-13 16:37:25 +00008032#endif
8033#ifdef _SC_PII_OSI
Victor Stinnerd6f85422010-05-05 23:33:33 +00008034 {"SC_PII_OSI", _SC_PII_OSI},
Fred Drakec9680921999-12-13 16:37:25 +00008035#endif
8036#ifdef _SC_PII_OSI_CLTS
Victor Stinnerd6f85422010-05-05 23:33:33 +00008037 {"SC_PII_OSI_CLTS", _SC_PII_OSI_CLTS},
Fred Drakec9680921999-12-13 16:37:25 +00008038#endif
8039#ifdef _SC_PII_OSI_COTS
Victor Stinnerd6f85422010-05-05 23:33:33 +00008040 {"SC_PII_OSI_COTS", _SC_PII_OSI_COTS},
Fred Drakec9680921999-12-13 16:37:25 +00008041#endif
8042#ifdef _SC_PII_OSI_M
Victor Stinnerd6f85422010-05-05 23:33:33 +00008043 {"SC_PII_OSI_M", _SC_PII_OSI_M},
Fred Drakec9680921999-12-13 16:37:25 +00008044#endif
8045#ifdef _SC_PII_SOCKET
Victor Stinnerd6f85422010-05-05 23:33:33 +00008046 {"SC_PII_SOCKET", _SC_PII_SOCKET},
Fred Drakec9680921999-12-13 16:37:25 +00008047#endif
8048#ifdef _SC_PII_XTI
Victor Stinnerd6f85422010-05-05 23:33:33 +00008049 {"SC_PII_XTI", _SC_PII_XTI},
Fred Drakec9680921999-12-13 16:37:25 +00008050#endif
8051#ifdef _SC_POLL
Victor Stinnerd6f85422010-05-05 23:33:33 +00008052 {"SC_POLL", _SC_POLL},
Fred Drakec9680921999-12-13 16:37:25 +00008053#endif
8054#ifdef _SC_PRIORITIZED_IO
Victor Stinnerd6f85422010-05-05 23:33:33 +00008055 {"SC_PRIORITIZED_IO", _SC_PRIORITIZED_IO},
Fred Drakec9680921999-12-13 16:37:25 +00008056#endif
8057#ifdef _SC_PRIORITY_SCHEDULING
Victor Stinnerd6f85422010-05-05 23:33:33 +00008058 {"SC_PRIORITY_SCHEDULING", _SC_PRIORITY_SCHEDULING},
Fred Drakec9680921999-12-13 16:37:25 +00008059#endif
8060#ifdef _SC_REALTIME_SIGNALS
Victor Stinnerd6f85422010-05-05 23:33:33 +00008061 {"SC_REALTIME_SIGNALS", _SC_REALTIME_SIGNALS},
Fred Drakec9680921999-12-13 16:37:25 +00008062#endif
8063#ifdef _SC_RE_DUP_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00008064 {"SC_RE_DUP_MAX", _SC_RE_DUP_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008065#endif
8066#ifdef _SC_RTSIG_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00008067 {"SC_RTSIG_MAX", _SC_RTSIG_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008068#endif
8069#ifdef _SC_SAVED_IDS
Victor Stinnerd6f85422010-05-05 23:33:33 +00008070 {"SC_SAVED_IDS", _SC_SAVED_IDS},
Fred Drakec9680921999-12-13 16:37:25 +00008071#endif
8072#ifdef _SC_SCHAR_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00008073 {"SC_SCHAR_MAX", _SC_SCHAR_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008074#endif
8075#ifdef _SC_SCHAR_MIN
Victor Stinnerd6f85422010-05-05 23:33:33 +00008076 {"SC_SCHAR_MIN", _SC_SCHAR_MIN},
Fred Drakec9680921999-12-13 16:37:25 +00008077#endif
8078#ifdef _SC_SELECT
Victor Stinnerd6f85422010-05-05 23:33:33 +00008079 {"SC_SELECT", _SC_SELECT},
Fred Drakec9680921999-12-13 16:37:25 +00008080#endif
8081#ifdef _SC_SEMAPHORES
Victor Stinnerd6f85422010-05-05 23:33:33 +00008082 {"SC_SEMAPHORES", _SC_SEMAPHORES},
Fred Drakec9680921999-12-13 16:37:25 +00008083#endif
8084#ifdef _SC_SEM_NSEMS_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00008085 {"SC_SEM_NSEMS_MAX", _SC_SEM_NSEMS_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008086#endif
8087#ifdef _SC_SEM_VALUE_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00008088 {"SC_SEM_VALUE_MAX", _SC_SEM_VALUE_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008089#endif
8090#ifdef _SC_SHARED_MEMORY_OBJECTS
Victor Stinnerd6f85422010-05-05 23:33:33 +00008091 {"SC_SHARED_MEMORY_OBJECTS", _SC_SHARED_MEMORY_OBJECTS},
Fred Drakec9680921999-12-13 16:37:25 +00008092#endif
8093#ifdef _SC_SHRT_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00008094 {"SC_SHRT_MAX", _SC_SHRT_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008095#endif
8096#ifdef _SC_SHRT_MIN
Victor Stinnerd6f85422010-05-05 23:33:33 +00008097 {"SC_SHRT_MIN", _SC_SHRT_MIN},
Fred Drakec9680921999-12-13 16:37:25 +00008098#endif
8099#ifdef _SC_SIGQUEUE_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00008100 {"SC_SIGQUEUE_MAX", _SC_SIGQUEUE_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008101#endif
8102#ifdef _SC_SIGRT_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00008103 {"SC_SIGRT_MAX", _SC_SIGRT_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008104#endif
8105#ifdef _SC_SIGRT_MIN
Victor Stinnerd6f85422010-05-05 23:33:33 +00008106 {"SC_SIGRT_MIN", _SC_SIGRT_MIN},
Fred Drakec9680921999-12-13 16:37:25 +00008107#endif
Fred Draked86ed291999-12-15 15:34:33 +00008108#ifdef _SC_SOFTPOWER
Victor Stinnerd6f85422010-05-05 23:33:33 +00008109 {"SC_SOFTPOWER", _SC_SOFTPOWER},
Fred Draked86ed291999-12-15 15:34:33 +00008110#endif
Fred Drakec9680921999-12-13 16:37:25 +00008111#ifdef _SC_SPLIT_CACHE
Victor Stinnerd6f85422010-05-05 23:33:33 +00008112 {"SC_SPLIT_CACHE", _SC_SPLIT_CACHE},
Fred Drakec9680921999-12-13 16:37:25 +00008113#endif
8114#ifdef _SC_SSIZE_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00008115 {"SC_SSIZE_MAX", _SC_SSIZE_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008116#endif
8117#ifdef _SC_STACK_PROT
Victor Stinnerd6f85422010-05-05 23:33:33 +00008118 {"SC_STACK_PROT", _SC_STACK_PROT},
Fred Drakec9680921999-12-13 16:37:25 +00008119#endif
8120#ifdef _SC_STREAM_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00008121 {"SC_STREAM_MAX", _SC_STREAM_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008122#endif
8123#ifdef _SC_SYNCHRONIZED_IO
Victor Stinnerd6f85422010-05-05 23:33:33 +00008124 {"SC_SYNCHRONIZED_IO", _SC_SYNCHRONIZED_IO},
Fred Drakec9680921999-12-13 16:37:25 +00008125#endif
8126#ifdef _SC_THREADS
Victor Stinnerd6f85422010-05-05 23:33:33 +00008127 {"SC_THREADS", _SC_THREADS},
Fred Drakec9680921999-12-13 16:37:25 +00008128#endif
8129#ifdef _SC_THREAD_ATTR_STACKADDR
Victor Stinnerd6f85422010-05-05 23:33:33 +00008130 {"SC_THREAD_ATTR_STACKADDR", _SC_THREAD_ATTR_STACKADDR},
Fred Drakec9680921999-12-13 16:37:25 +00008131#endif
8132#ifdef _SC_THREAD_ATTR_STACKSIZE
Victor Stinnerd6f85422010-05-05 23:33:33 +00008133 {"SC_THREAD_ATTR_STACKSIZE", _SC_THREAD_ATTR_STACKSIZE},
Fred Drakec9680921999-12-13 16:37:25 +00008134#endif
8135#ifdef _SC_THREAD_DESTRUCTOR_ITERATIONS
Victor Stinnerd6f85422010-05-05 23:33:33 +00008136 {"SC_THREAD_DESTRUCTOR_ITERATIONS", _SC_THREAD_DESTRUCTOR_ITERATIONS},
Fred Drakec9680921999-12-13 16:37:25 +00008137#endif
8138#ifdef _SC_THREAD_KEYS_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00008139 {"SC_THREAD_KEYS_MAX", _SC_THREAD_KEYS_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008140#endif
8141#ifdef _SC_THREAD_PRIORITY_SCHEDULING
Victor Stinnerd6f85422010-05-05 23:33:33 +00008142 {"SC_THREAD_PRIORITY_SCHEDULING", _SC_THREAD_PRIORITY_SCHEDULING},
Fred Drakec9680921999-12-13 16:37:25 +00008143#endif
8144#ifdef _SC_THREAD_PRIO_INHERIT
Victor Stinnerd6f85422010-05-05 23:33:33 +00008145 {"SC_THREAD_PRIO_INHERIT", _SC_THREAD_PRIO_INHERIT},
Fred Drakec9680921999-12-13 16:37:25 +00008146#endif
8147#ifdef _SC_THREAD_PRIO_PROTECT
Victor Stinnerd6f85422010-05-05 23:33:33 +00008148 {"SC_THREAD_PRIO_PROTECT", _SC_THREAD_PRIO_PROTECT},
Fred Drakec9680921999-12-13 16:37:25 +00008149#endif
8150#ifdef _SC_THREAD_PROCESS_SHARED
Victor Stinnerd6f85422010-05-05 23:33:33 +00008151 {"SC_THREAD_PROCESS_SHARED", _SC_THREAD_PROCESS_SHARED},
Fred Drakec9680921999-12-13 16:37:25 +00008152#endif
8153#ifdef _SC_THREAD_SAFE_FUNCTIONS
Victor Stinnerd6f85422010-05-05 23:33:33 +00008154 {"SC_THREAD_SAFE_FUNCTIONS", _SC_THREAD_SAFE_FUNCTIONS},
Fred Drakec9680921999-12-13 16:37:25 +00008155#endif
8156#ifdef _SC_THREAD_STACK_MIN
Victor Stinnerd6f85422010-05-05 23:33:33 +00008157 {"SC_THREAD_STACK_MIN", _SC_THREAD_STACK_MIN},
Fred Drakec9680921999-12-13 16:37:25 +00008158#endif
8159#ifdef _SC_THREAD_THREADS_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00008160 {"SC_THREAD_THREADS_MAX", _SC_THREAD_THREADS_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008161#endif
8162#ifdef _SC_TIMERS
Victor Stinnerd6f85422010-05-05 23:33:33 +00008163 {"SC_TIMERS", _SC_TIMERS},
Fred Drakec9680921999-12-13 16:37:25 +00008164#endif
8165#ifdef _SC_TIMER_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00008166 {"SC_TIMER_MAX", _SC_TIMER_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008167#endif
8168#ifdef _SC_TTY_NAME_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00008169 {"SC_TTY_NAME_MAX", _SC_TTY_NAME_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008170#endif
8171#ifdef _SC_TZNAME_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00008172 {"SC_TZNAME_MAX", _SC_TZNAME_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008173#endif
8174#ifdef _SC_T_IOV_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00008175 {"SC_T_IOV_MAX", _SC_T_IOV_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008176#endif
8177#ifdef _SC_UCHAR_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00008178 {"SC_UCHAR_MAX", _SC_UCHAR_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008179#endif
8180#ifdef _SC_UINT_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00008181 {"SC_UINT_MAX", _SC_UINT_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008182#endif
8183#ifdef _SC_UIO_MAXIOV
Victor Stinnerd6f85422010-05-05 23:33:33 +00008184 {"SC_UIO_MAXIOV", _SC_UIO_MAXIOV},
Fred Drakec9680921999-12-13 16:37:25 +00008185#endif
8186#ifdef _SC_ULONG_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00008187 {"SC_ULONG_MAX", _SC_ULONG_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008188#endif
8189#ifdef _SC_USHRT_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00008190 {"SC_USHRT_MAX", _SC_USHRT_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008191#endif
8192#ifdef _SC_VERSION
Victor Stinnerd6f85422010-05-05 23:33:33 +00008193 {"SC_VERSION", _SC_VERSION},
Fred Drakec9680921999-12-13 16:37:25 +00008194#endif
8195#ifdef _SC_WORD_BIT
Victor Stinnerd6f85422010-05-05 23:33:33 +00008196 {"SC_WORD_BIT", _SC_WORD_BIT},
Fred Drakec9680921999-12-13 16:37:25 +00008197#endif
8198#ifdef _SC_XBS5_ILP32_OFF32
Victor Stinnerd6f85422010-05-05 23:33:33 +00008199 {"SC_XBS5_ILP32_OFF32", _SC_XBS5_ILP32_OFF32},
Fred Drakec9680921999-12-13 16:37:25 +00008200#endif
8201#ifdef _SC_XBS5_ILP32_OFFBIG
Victor Stinnerd6f85422010-05-05 23:33:33 +00008202 {"SC_XBS5_ILP32_OFFBIG", _SC_XBS5_ILP32_OFFBIG},
Fred Drakec9680921999-12-13 16:37:25 +00008203#endif
8204#ifdef _SC_XBS5_LP64_OFF64
Victor Stinnerd6f85422010-05-05 23:33:33 +00008205 {"SC_XBS5_LP64_OFF64", _SC_XBS5_LP64_OFF64},
Fred Drakec9680921999-12-13 16:37:25 +00008206#endif
8207#ifdef _SC_XBS5_LPBIG_OFFBIG
Victor Stinnerd6f85422010-05-05 23:33:33 +00008208 {"SC_XBS5_LPBIG_OFFBIG", _SC_XBS5_LPBIG_OFFBIG},
Fred Drakec9680921999-12-13 16:37:25 +00008209#endif
8210#ifdef _SC_XOPEN_CRYPT
Victor Stinnerd6f85422010-05-05 23:33:33 +00008211 {"SC_XOPEN_CRYPT", _SC_XOPEN_CRYPT},
Fred Drakec9680921999-12-13 16:37:25 +00008212#endif
8213#ifdef _SC_XOPEN_ENH_I18N
Victor Stinnerd6f85422010-05-05 23:33:33 +00008214 {"SC_XOPEN_ENH_I18N", _SC_XOPEN_ENH_I18N},
Fred Drakec9680921999-12-13 16:37:25 +00008215#endif
8216#ifdef _SC_XOPEN_LEGACY
Victor Stinnerd6f85422010-05-05 23:33:33 +00008217 {"SC_XOPEN_LEGACY", _SC_XOPEN_LEGACY},
Fred Drakec9680921999-12-13 16:37:25 +00008218#endif
8219#ifdef _SC_XOPEN_REALTIME
Victor Stinnerd6f85422010-05-05 23:33:33 +00008220 {"SC_XOPEN_REALTIME", _SC_XOPEN_REALTIME},
Fred Drakec9680921999-12-13 16:37:25 +00008221#endif
8222#ifdef _SC_XOPEN_REALTIME_THREADS
Victor Stinnerd6f85422010-05-05 23:33:33 +00008223 {"SC_XOPEN_REALTIME_THREADS", _SC_XOPEN_REALTIME_THREADS},
Fred Drakec9680921999-12-13 16:37:25 +00008224#endif
8225#ifdef _SC_XOPEN_SHM
Victor Stinnerd6f85422010-05-05 23:33:33 +00008226 {"SC_XOPEN_SHM", _SC_XOPEN_SHM},
Fred Drakec9680921999-12-13 16:37:25 +00008227#endif
8228#ifdef _SC_XOPEN_UNIX
Victor Stinnerd6f85422010-05-05 23:33:33 +00008229 {"SC_XOPEN_UNIX", _SC_XOPEN_UNIX},
Fred Drakec9680921999-12-13 16:37:25 +00008230#endif
8231#ifdef _SC_XOPEN_VERSION
Victor Stinnerd6f85422010-05-05 23:33:33 +00008232 {"SC_XOPEN_VERSION", _SC_XOPEN_VERSION},
Fred Drakec9680921999-12-13 16:37:25 +00008233#endif
8234#ifdef _SC_XOPEN_XCU_VERSION
Victor Stinnerd6f85422010-05-05 23:33:33 +00008235 {"SC_XOPEN_XCU_VERSION", _SC_XOPEN_XCU_VERSION},
Fred Drakec9680921999-12-13 16:37:25 +00008236#endif
8237#ifdef _SC_XOPEN_XPG2
Victor Stinnerd6f85422010-05-05 23:33:33 +00008238 {"SC_XOPEN_XPG2", _SC_XOPEN_XPG2},
Fred Drakec9680921999-12-13 16:37:25 +00008239#endif
8240#ifdef _SC_XOPEN_XPG3
Victor Stinnerd6f85422010-05-05 23:33:33 +00008241 {"SC_XOPEN_XPG3", _SC_XOPEN_XPG3},
Fred Drakec9680921999-12-13 16:37:25 +00008242#endif
8243#ifdef _SC_XOPEN_XPG4
Victor Stinnerd6f85422010-05-05 23:33:33 +00008244 {"SC_XOPEN_XPG4", _SC_XOPEN_XPG4},
Fred Drakec9680921999-12-13 16:37:25 +00008245#endif
8246};
8247
8248static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00008249conv_sysconf_confname(PyObject *arg, int *valuep)
Fred Drakec9680921999-12-13 16:37:25 +00008250{
8251 return conv_confname(arg, valuep, posix_constants_sysconf,
8252 sizeof(posix_constants_sysconf)
8253 / sizeof(struct constdef));
8254}
8255
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008256PyDoc_STRVAR(posix_sysconf__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00008257"sysconf(name) -> integer\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008258Return an integer-valued system configuration variable.");
Fred Drakec9680921999-12-13 16:37:25 +00008259
8260static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00008261posix_sysconf(PyObject *self, PyObject *args)
Fred Drakec9680921999-12-13 16:37:25 +00008262{
8263 PyObject *result = NULL;
8264 int name;
8265
8266 if (PyArg_ParseTuple(args, "O&:sysconf", conv_sysconf_confname, &name)) {
Victor Stinner862490a2010-05-06 00:03:44 +00008267 int value;
Fred Drakec9680921999-12-13 16:37:25 +00008268
Victor Stinner862490a2010-05-06 00:03:44 +00008269 errno = 0;
8270 value = sysconf(name);
8271 if (value == -1 && errno != 0)
8272 posix_error();
8273 else
8274 result = PyInt_FromLong(value);
Fred Drakec9680921999-12-13 16:37:25 +00008275 }
8276 return result;
8277}
8278#endif
8279
8280
Fred Drakebec628d1999-12-15 18:31:10 +00008281/* This code is used to ensure that the tables of configuration value names
8282 * are in sorted order as required by conv_confname(), and also to build the
8283 * the exported dictionaries that are used to publish information about the
8284 * names available on the host platform.
8285 *
8286 * Sorting the table at runtime ensures that the table is properly ordered
8287 * when used, even for platforms we're not able to test on. It also makes
8288 * it easier to add additional entries to the tables.
Fred Draked86ed291999-12-15 15:34:33 +00008289 */
Fred Drakebec628d1999-12-15 18:31:10 +00008290
8291static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00008292cmp_constdefs(const void *v1, const void *v2)
Fred Drakebec628d1999-12-15 18:31:10 +00008293{
8294 const struct constdef *c1 =
Victor Stinnerd6f85422010-05-05 23:33:33 +00008295 (const struct constdef *) v1;
Fred Drakebec628d1999-12-15 18:31:10 +00008296 const struct constdef *c2 =
Victor Stinnerd6f85422010-05-05 23:33:33 +00008297 (const struct constdef *) v2;
Fred Drakebec628d1999-12-15 18:31:10 +00008298
8299 return strcmp(c1->name, c2->name);
8300}
8301
8302static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00008303setup_confname_table(struct constdef *table, size_t tablesize,
Victor Stinnerd6f85422010-05-05 23:33:33 +00008304 char *tablename, PyObject *module)
Fred Draked86ed291999-12-15 15:34:33 +00008305{
Fred Drakebec628d1999-12-15 18:31:10 +00008306 PyObject *d = NULL;
Barry Warsaw3155db32000-04-13 15:20:40 +00008307 size_t i;
Fred Drakebec628d1999-12-15 18:31:10 +00008308
8309 qsort(table, tablesize, sizeof(struct constdef), cmp_constdefs);
8310 d = PyDict_New();
Barry Warsaw3155db32000-04-13 15:20:40 +00008311 if (d == NULL)
Victor Stinnerd6f85422010-05-05 23:33:33 +00008312 return -1;
Fred Draked86ed291999-12-15 15:34:33 +00008313
Barry Warsaw3155db32000-04-13 15:20:40 +00008314 for (i=0; i < tablesize; ++i) {
Victor Stinnerd6f85422010-05-05 23:33:33 +00008315 PyObject *o = PyInt_FromLong(table[i].value);
8316 if (o == NULL || PyDict_SetItemString(d, table[i].name, o) == -1) {
8317 Py_XDECREF(o);
8318 Py_DECREF(d);
8319 return -1;
8320 }
8321 Py_DECREF(o);
Fred Draked86ed291999-12-15 15:34:33 +00008322 }
Fred Drake4d1e64b2002-04-15 19:40:07 +00008323 return PyModule_AddObject(module, tablename, d);
Fred Draked86ed291999-12-15 15:34:33 +00008324}
8325
Fred Drakebec628d1999-12-15 18:31:10 +00008326/* Return -1 on failure, 0 on success. */
8327static int
Fred Drake4d1e64b2002-04-15 19:40:07 +00008328setup_confname_tables(PyObject *module)
Fred Draked86ed291999-12-15 15:34:33 +00008329{
8330#if defined(HAVE_FPATHCONF) || defined(HAVE_PATHCONF)
Fred Drakebec628d1999-12-15 18:31:10 +00008331 if (setup_confname_table(posix_constants_pathconf,
Fred Draked86ed291999-12-15 15:34:33 +00008332 sizeof(posix_constants_pathconf)
8333 / sizeof(struct constdef),
Fred Drake4d1e64b2002-04-15 19:40:07 +00008334 "pathconf_names", module))
Stefan Krah93f7a322010-11-26 17:35:50 +00008335 return -1;
Fred Draked86ed291999-12-15 15:34:33 +00008336#endif
8337#ifdef HAVE_CONFSTR
Fred Drakebec628d1999-12-15 18:31:10 +00008338 if (setup_confname_table(posix_constants_confstr,
Fred Draked86ed291999-12-15 15:34:33 +00008339 sizeof(posix_constants_confstr)
8340 / sizeof(struct constdef),
Fred Drake4d1e64b2002-04-15 19:40:07 +00008341 "confstr_names", module))
Stefan Krah93f7a322010-11-26 17:35:50 +00008342 return -1;
Fred Draked86ed291999-12-15 15:34:33 +00008343#endif
8344#ifdef HAVE_SYSCONF
Fred Drakebec628d1999-12-15 18:31:10 +00008345 if (setup_confname_table(posix_constants_sysconf,
Fred Draked86ed291999-12-15 15:34:33 +00008346 sizeof(posix_constants_sysconf)
8347 / sizeof(struct constdef),
Fred Drake4d1e64b2002-04-15 19:40:07 +00008348 "sysconf_names", module))
Stefan Krah93f7a322010-11-26 17:35:50 +00008349 return -1;
Fred Draked86ed291999-12-15 15:34:33 +00008350#endif
Fred Drakebec628d1999-12-15 18:31:10 +00008351 return 0;
Fred Draked86ed291999-12-15 15:34:33 +00008352}
Fred Draked86ed291999-12-15 15:34:33 +00008353
8354
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008355PyDoc_STRVAR(posix_abort__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00008356"abort() -> does not return!\n\n\
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008357Abort the interpreter immediately. This 'dumps core' or otherwise fails\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008358in the hardest way possible on the hosting operating system.");
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008359
8360static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00008361posix_abort(PyObject *self, PyObject *noargs)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008362{
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008363 abort();
8364 /*NOTREACHED*/
8365 Py_FatalError("abort() called from Python code didn't abort!");
8366 return NULL;
8367}
Fred Drakebec628d1999-12-15 18:31:10 +00008368
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00008369#ifdef MS_WINDOWS
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008370PyDoc_STRVAR(win32_startfile__doc__,
Georg Brandlf4f44152006-02-18 22:29:33 +00008371"startfile(filepath [, operation]) - Start a file with its associated\n\
8372application.\n\
Tim Petersf58a7aa2000-09-22 10:05:54 +00008373\n\
Georg Brandlf4f44152006-02-18 22:29:33 +00008374When \"operation\" is not specified or \"open\", this acts like\n\
8375double-clicking the file in Explorer, or giving the file name as an\n\
8376argument to the DOS \"start\" command: the file is opened with whatever\n\
8377application (if any) its extension is associated.\n\
8378When another \"operation\" is given, it specifies what should be done with\n\
8379the file. A typical operation is \"print\".\n\
Tim Petersf58a7aa2000-09-22 10:05:54 +00008380\n\
8381startfile returns as soon as the associated application is launched.\n\
8382There is no option to wait for the application to close, and no way\n\
8383to retrieve the application's exit status.\n\
8384\n\
8385The filepath is relative to the current directory. If you want to use\n\
8386an absolute path, make sure the first character is not a slash (\"/\");\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008387the underlying Win32 ShellExecute function doesn't work if it is.");
Tim Petersf58a7aa2000-09-22 10:05:54 +00008388
8389static PyObject *
8390win32_startfile(PyObject *self, PyObject *args)
8391{
Victor Stinnerd6f85422010-05-05 23:33:33 +00008392 char *filepath;
8393 char *operation = NULL;
8394 HINSTANCE rc;
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00008395
Victor Stinnerd6f85422010-05-05 23:33:33 +00008396 PyObject *unipath, *woperation = NULL;
8397 if (!PyArg_ParseTuple(args, "U|s:startfile",
8398 &unipath, &operation)) {
8399 PyErr_Clear();
8400 goto normal;
8401 }
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00008402
Victor Stinnerd6f85422010-05-05 23:33:33 +00008403 if (operation) {
8404 woperation = PyUnicode_DecodeASCII(operation,
8405 strlen(operation), NULL);
8406 if (!woperation) {
8407 PyErr_Clear();
8408 operation = NULL;
8409 goto normal;
8410 }
8411 }
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00008412
Victor Stinnerd6f85422010-05-05 23:33:33 +00008413 Py_BEGIN_ALLOW_THREADS
8414 rc = ShellExecuteW((HWND)0, woperation ? PyUnicode_AS_UNICODE(woperation) : 0,
8415 PyUnicode_AS_UNICODE(unipath),
8416 NULL, NULL, SW_SHOWNORMAL);
8417 Py_END_ALLOW_THREADS
8418
8419 Py_XDECREF(woperation);
8420 if (rc <= (HINSTANCE)32) {
8421 PyObject *errval = win32_error_unicode("startfile",
8422 PyUnicode_AS_UNICODE(unipath));
8423 return errval;
8424 }
8425 Py_INCREF(Py_None);
8426 return Py_None;
Georg Brandlad89dc82006-04-03 12:26:26 +00008427
8428normal:
Victor Stinnerd6f85422010-05-05 23:33:33 +00008429 if (!PyArg_ParseTuple(args, "et|s:startfile",
8430 Py_FileSystemDefaultEncoding, &filepath,
8431 &operation))
8432 return NULL;
8433 Py_BEGIN_ALLOW_THREADS
8434 rc = ShellExecute((HWND)0, operation, filepath,
8435 NULL, NULL, SW_SHOWNORMAL);
8436 Py_END_ALLOW_THREADS
8437 if (rc <= (HINSTANCE)32) {
8438 PyObject *errval = win32_error("startfile", filepath);
8439 PyMem_Free(filepath);
8440 return errval;
8441 }
8442 PyMem_Free(filepath);
8443 Py_INCREF(Py_None);
8444 return Py_None;
Tim Petersf58a7aa2000-09-22 10:05:54 +00008445}
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00008446#endif /* MS_WINDOWS */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008447
Martin v. Löwis438b5342002-12-27 10:16:42 +00008448#ifdef HAVE_GETLOADAVG
8449PyDoc_STRVAR(posix_getloadavg__doc__,
8450"getloadavg() -> (float, float, float)\n\n\
8451Return the number of processes in the system run queue averaged over\n\
8452the last 1, 5, and 15 minutes or raises OSError if the load average\n\
8453was unobtainable");
8454
8455static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00008456posix_getloadavg(PyObject *self, PyObject *noargs)
Martin v. Löwis438b5342002-12-27 10:16:42 +00008457{
8458 double loadavg[3];
Martin v. Löwis438b5342002-12-27 10:16:42 +00008459 if (getloadavg(loadavg, 3)!=3) {
Stefan Krah93f7a322010-11-26 17:35:50 +00008460 PyErr_SetString(PyExc_OSError, "Load averages are unobtainable");
8461 return NULL;
Martin v. Löwis438b5342002-12-27 10:16:42 +00008462 } else
Stefan Krah93f7a322010-11-26 17:35:50 +00008463 return Py_BuildValue("ddd", loadavg[0], loadavg[1], loadavg[2]);
Martin v. Löwis438b5342002-12-27 10:16:42 +00008464}
8465#endif
8466
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008467#ifdef MS_WINDOWS
8468
8469PyDoc_STRVAR(win32_urandom__doc__,
8470"urandom(n) -> str\n\n\
8471Return a string of n random bytes suitable for cryptographic use.");
8472
8473typedef BOOL (WINAPI *CRYPTACQUIRECONTEXTA)(HCRYPTPROV *phProv,\
8474 LPCSTR pszContainer, LPCSTR pszProvider, DWORD dwProvType,\
8475 DWORD dwFlags );
8476typedef BOOL (WINAPI *CRYPTGENRANDOM)(HCRYPTPROV hProv, DWORD dwLen,\
8477 BYTE *pbBuffer );
8478
8479static CRYPTGENRANDOM pCryptGenRandom = NULL;
Martin v. Löwisaf699dd2007-09-04 09:51:57 +00008480/* This handle is never explicitly released. Instead, the operating
8481 system will release it when the process terminates. */
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008482static HCRYPTPROV hCryptProv = 0;
8483
Tim Peters4ad82172004-08-30 17:02:04 +00008484static PyObject*
8485win32_urandom(PyObject *self, PyObject *args)
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008486{
Victor Stinnerd6f85422010-05-05 23:33:33 +00008487 int howMany;
8488 PyObject* result;
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008489
Victor Stinnerd6f85422010-05-05 23:33:33 +00008490 /* Read arguments */
8491 if (! PyArg_ParseTuple(args, "i:urandom", &howMany))
8492 return NULL;
8493 if (howMany < 0)
8494 return PyErr_Format(PyExc_ValueError,
8495 "negative argument not allowed");
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008496
Victor Stinnerd6f85422010-05-05 23:33:33 +00008497 if (hCryptProv == 0) {
8498 HINSTANCE hAdvAPI32 = NULL;
8499 CRYPTACQUIRECONTEXTA pCryptAcquireContext = NULL;
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008500
Victor Stinnerd6f85422010-05-05 23:33:33 +00008501 /* Obtain handle to the DLL containing CryptoAPI
8502 This should not fail */
8503 hAdvAPI32 = GetModuleHandle("advapi32.dll");
8504 if(hAdvAPI32 == NULL)
8505 return win32_error("GetModuleHandle", NULL);
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008506
Victor Stinnerd6f85422010-05-05 23:33:33 +00008507 /* Obtain pointers to the CryptoAPI functions
8508 This will fail on some early versions of Win95 */
8509 pCryptAcquireContext = (CRYPTACQUIRECONTEXTA)GetProcAddress(
8510 hAdvAPI32,
8511 "CryptAcquireContextA");
8512 if (pCryptAcquireContext == NULL)
8513 return PyErr_Format(PyExc_NotImplementedError,
8514 "CryptAcquireContextA not found");
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008515
Victor Stinnerd6f85422010-05-05 23:33:33 +00008516 pCryptGenRandom = (CRYPTGENRANDOM)GetProcAddress(
8517 hAdvAPI32, "CryptGenRandom");
8518 if (pCryptGenRandom == NULL)
8519 return PyErr_Format(PyExc_NotImplementedError,
8520 "CryptGenRandom not found");
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008521
Victor Stinnerd6f85422010-05-05 23:33:33 +00008522 /* Acquire context */
8523 if (! pCryptAcquireContext(&hCryptProv, NULL, NULL,
8524 PROV_RSA_FULL, CRYPT_VERIFYCONTEXT))
8525 return win32_error("CryptAcquireContext", NULL);
8526 }
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008527
Victor Stinnerd6f85422010-05-05 23:33:33 +00008528 /* Allocate bytes */
8529 result = PyString_FromStringAndSize(NULL, howMany);
8530 if (result != NULL) {
8531 /* Get random data */
8532 memset(PyString_AS_STRING(result), 0, howMany); /* zero seed */
8533 if (! pCryptGenRandom(hCryptProv, howMany, (unsigned char*)
8534 PyString_AS_STRING(result))) {
8535 Py_DECREF(result);
8536 return win32_error("CryptGenRandom", NULL);
8537 }
8538 }
8539 return result;
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008540}
8541#endif
Martin v. Löwis438b5342002-12-27 10:16:42 +00008542
Neal Norwitz2a30cd02006-07-10 01:18:57 +00008543#ifdef __VMS
8544/* Use openssl random routine */
8545#include <openssl/rand.h>
8546PyDoc_STRVAR(vms_urandom__doc__,
8547"urandom(n) -> str\n\n\
8548Return a string of n random bytes suitable for cryptographic use.");
8549
8550static PyObject*
8551vms_urandom(PyObject *self, PyObject *args)
8552{
Victor Stinnerd6f85422010-05-05 23:33:33 +00008553 int howMany;
8554 PyObject* result;
Neal Norwitz2a30cd02006-07-10 01:18:57 +00008555
Victor Stinnerd6f85422010-05-05 23:33:33 +00008556 /* Read arguments */
8557 if (! PyArg_ParseTuple(args, "i:urandom", &howMany))
8558 return NULL;
8559 if (howMany < 0)
8560 return PyErr_Format(PyExc_ValueError,
8561 "negative argument not allowed");
Neal Norwitz2a30cd02006-07-10 01:18:57 +00008562
Victor Stinnerd6f85422010-05-05 23:33:33 +00008563 /* Allocate bytes */
8564 result = PyString_FromStringAndSize(NULL, howMany);
8565 if (result != NULL) {
8566 /* Get random data */
8567 if (RAND_pseudo_bytes((unsigned char*)
8568 PyString_AS_STRING(result),
8569 howMany) < 0) {
8570 Py_DECREF(result);
8571 return PyErr_Format(PyExc_ValueError,
8572 "RAND_pseudo_bytes");
8573 }
8574 }
8575 return result;
Neal Norwitz2a30cd02006-07-10 01:18:57 +00008576}
8577#endif
8578
Martin v. Löwis50ea4562009-11-27 13:56:01 +00008579#ifdef HAVE_SETRESUID
8580PyDoc_STRVAR(posix_setresuid__doc__,
8581"setresuid(ruid, euid, suid)\n\n\
8582Set the current process's real, effective, and saved user ids.");
8583
8584static PyObject*
8585posix_setresuid (PyObject *self, PyObject *args)
8586{
Victor Stinnerd6f85422010-05-05 23:33:33 +00008587 /* We assume uid_t is no larger than a long. */
8588 long ruid, euid, suid;
8589 if (!PyArg_ParseTuple(args, "lll", &ruid, &euid, &suid))
8590 return NULL;
8591 if (setresuid(ruid, euid, suid) < 0)
8592 return posix_error();
8593 Py_RETURN_NONE;
Martin v. Löwis50ea4562009-11-27 13:56:01 +00008594}
8595#endif
8596
8597#ifdef HAVE_SETRESGID
8598PyDoc_STRVAR(posix_setresgid__doc__,
8599"setresgid(rgid, egid, sgid)\n\n\
8600Set the current process's real, effective, and saved group ids.");
8601
8602static PyObject*
8603posix_setresgid (PyObject *self, PyObject *args)
8604{
Victor Stinnerd6f85422010-05-05 23:33:33 +00008605 /* We assume uid_t is no larger than a long. */
8606 long rgid, egid, sgid;
8607 if (!PyArg_ParseTuple(args, "lll", &rgid, &egid, &sgid))
8608 return NULL;
8609 if (setresgid(rgid, egid, sgid) < 0)
8610 return posix_error();
8611 Py_RETURN_NONE;
Martin v. Löwis50ea4562009-11-27 13:56:01 +00008612}
8613#endif
8614
8615#ifdef HAVE_GETRESUID
8616PyDoc_STRVAR(posix_getresuid__doc__,
8617"getresuid() -> (ruid, euid, suid)\n\n\
8618Get tuple of the current process's real, effective, and saved user ids.");
8619
8620static PyObject*
8621posix_getresuid (PyObject *self, PyObject *noargs)
8622{
Victor Stinnerd6f85422010-05-05 23:33:33 +00008623 uid_t ruid, euid, suid;
8624 long l_ruid, l_euid, l_suid;
8625 if (getresuid(&ruid, &euid, &suid) < 0)
8626 return posix_error();
8627 /* Force the values into long's as we don't know the size of uid_t. */
8628 l_ruid = ruid;
8629 l_euid = euid;
8630 l_suid = suid;
8631 return Py_BuildValue("(lll)", l_ruid, l_euid, l_suid);
Martin v. Löwis50ea4562009-11-27 13:56:01 +00008632}
8633#endif
8634
8635#ifdef HAVE_GETRESGID
8636PyDoc_STRVAR(posix_getresgid__doc__,
8637"getresgid() -> (rgid, egid, sgid)\n\n\
Georg Brandl21946af2010-10-06 09:28:45 +00008638Get tuple of the current process's real, effective, and saved group ids.");
Martin v. Löwis50ea4562009-11-27 13:56:01 +00008639
8640static PyObject*
8641posix_getresgid (PyObject *self, PyObject *noargs)
8642{
Victor Stinnerd6f85422010-05-05 23:33:33 +00008643 uid_t rgid, egid, sgid;
8644 long l_rgid, l_egid, l_sgid;
8645 if (getresgid(&rgid, &egid, &sgid) < 0)
8646 return posix_error();
8647 /* Force the values into long's as we don't know the size of uid_t. */
8648 l_rgid = rgid;
8649 l_egid = egid;
8650 l_sgid = sgid;
8651 return Py_BuildValue("(lll)", l_rgid, l_egid, l_sgid);
Martin v. Löwis50ea4562009-11-27 13:56:01 +00008652}
8653#endif
8654
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008655static PyMethodDef posix_methods[] = {
Victor Stinnerd6f85422010-05-05 23:33:33 +00008656 {"access", posix_access, METH_VARARGS, posix_access__doc__},
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008657#ifdef HAVE_TTYNAME
Victor Stinnerd6f85422010-05-05 23:33:33 +00008658 {"ttyname", posix_ttyname, METH_VARARGS, posix_ttyname__doc__},
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008659#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00008660 {"chdir", posix_chdir, METH_VARARGS, posix_chdir__doc__},
Martin v. Löwis382abef2007-02-19 10:55:19 +00008661#ifdef HAVE_CHFLAGS
Victor Stinnerd6f85422010-05-05 23:33:33 +00008662 {"chflags", posix_chflags, METH_VARARGS, posix_chflags__doc__},
Martin v. Löwis382abef2007-02-19 10:55:19 +00008663#endif /* HAVE_CHFLAGS */
Victor Stinnerd6f85422010-05-05 23:33:33 +00008664 {"chmod", posix_chmod, METH_VARARGS, posix_chmod__doc__},
Christian Heimes36281872007-11-30 21:11:28 +00008665#ifdef HAVE_FCHMOD
Victor Stinnerd6f85422010-05-05 23:33:33 +00008666 {"fchmod", posix_fchmod, METH_VARARGS, posix_fchmod__doc__},
Christian Heimes36281872007-11-30 21:11:28 +00008667#endif /* HAVE_FCHMOD */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008668#ifdef HAVE_CHOWN
Victor Stinnerd6f85422010-05-05 23:33:33 +00008669 {"chown", posix_chown, METH_VARARGS, posix_chown__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008670#endif /* HAVE_CHOWN */
Christian Heimes36281872007-11-30 21:11:28 +00008671#ifdef HAVE_LCHMOD
Victor Stinnerd6f85422010-05-05 23:33:33 +00008672 {"lchmod", posix_lchmod, METH_VARARGS, posix_lchmod__doc__},
Christian Heimes36281872007-11-30 21:11:28 +00008673#endif /* HAVE_LCHMOD */
8674#ifdef HAVE_FCHOWN
Victor Stinnerd6f85422010-05-05 23:33:33 +00008675 {"fchown", posix_fchown, METH_VARARGS, posix_fchown__doc__},
Christian Heimes36281872007-11-30 21:11:28 +00008676#endif /* HAVE_FCHOWN */
Martin v. Löwis382abef2007-02-19 10:55:19 +00008677#ifdef HAVE_LCHFLAGS
Victor Stinnerd6f85422010-05-05 23:33:33 +00008678 {"lchflags", posix_lchflags, METH_VARARGS, posix_lchflags__doc__},
Martin v. Löwis382abef2007-02-19 10:55:19 +00008679#endif /* HAVE_LCHFLAGS */
Martin v. Löwis0cec0ff2002-07-28 16:33:45 +00008680#ifdef HAVE_LCHOWN
Victor Stinnerd6f85422010-05-05 23:33:33 +00008681 {"lchown", posix_lchown, METH_VARARGS, posix_lchown__doc__},
Martin v. Löwis0cec0ff2002-07-28 16:33:45 +00008682#endif /* HAVE_LCHOWN */
Martin v. Löwis244edc82001-10-04 22:44:26 +00008683#ifdef HAVE_CHROOT
Victor Stinnerd6f85422010-05-05 23:33:33 +00008684 {"chroot", posix_chroot, METH_VARARGS, posix_chroot__doc__},
Martin v. Löwis244edc82001-10-04 22:44:26 +00008685#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008686#ifdef HAVE_CTERMID
Victor Stinnerd6f85422010-05-05 23:33:33 +00008687 {"ctermid", posix_ctermid, METH_NOARGS, posix_ctermid__doc__},
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008688#endif
Guido van Rossum36bc6801995-06-14 22:54:23 +00008689#ifdef HAVE_GETCWD
Victor Stinnerd6f85422010-05-05 23:33:33 +00008690 {"getcwd", posix_getcwd, METH_NOARGS, posix_getcwd__doc__},
Walter Dörwald3b918c32002-11-21 20:18:46 +00008691#ifdef Py_USING_UNICODE
Victor Stinnerd6f85422010-05-05 23:33:33 +00008692 {"getcwdu", posix_getcwdu, METH_NOARGS, posix_getcwdu__doc__},
Guido van Rossum36bc6801995-06-14 22:54:23 +00008693#endif
Walter Dörwald3b918c32002-11-21 20:18:46 +00008694#endif
Guido van Rossumb6775db1994-08-01 11:34:53 +00008695#ifdef HAVE_LINK
Victor Stinnerd6f85422010-05-05 23:33:33 +00008696 {"link", posix_link, METH_VARARGS, posix_link__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008697#endif /* HAVE_LINK */
Victor Stinnerd6f85422010-05-05 23:33:33 +00008698 {"listdir", posix_listdir, METH_VARARGS, posix_listdir__doc__},
8699 {"lstat", posix_lstat, METH_VARARGS, posix_lstat__doc__},
8700 {"mkdir", posix_mkdir, METH_VARARGS, posix_mkdir__doc__},
Guido van Rossumb6775db1994-08-01 11:34:53 +00008701#ifdef HAVE_NICE
Victor Stinnerd6f85422010-05-05 23:33:33 +00008702 {"nice", posix_nice, METH_VARARGS, posix_nice__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008703#endif /* HAVE_NICE */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008704#ifdef HAVE_READLINK
Victor Stinnerd6f85422010-05-05 23:33:33 +00008705 {"readlink", posix_readlink, METH_VARARGS, posix_readlink__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008706#endif /* HAVE_READLINK */
Victor Stinnerd6f85422010-05-05 23:33:33 +00008707 {"rename", posix_rename, METH_VARARGS, posix_rename__doc__},
8708 {"rmdir", posix_rmdir, METH_VARARGS, posix_rmdir__doc__},
8709 {"stat", posix_stat, METH_VARARGS, posix_stat__doc__},
8710 {"stat_float_times", stat_float_times, METH_VARARGS, stat_float_times__doc__},
Guido van Rossumb6775db1994-08-01 11:34:53 +00008711#ifdef HAVE_SYMLINK
Victor Stinnerd6f85422010-05-05 23:33:33 +00008712 {"symlink", posix_symlink, METH_VARARGS, posix_symlink__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008713#endif /* HAVE_SYMLINK */
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008714#ifdef HAVE_SYSTEM
Victor Stinnerd6f85422010-05-05 23:33:33 +00008715 {"system", posix_system, METH_VARARGS, posix_system__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008716#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00008717 {"umask", posix_umask, METH_VARARGS, posix_umask__doc__},
Guido van Rossumb6775db1994-08-01 11:34:53 +00008718#ifdef HAVE_UNAME
Victor Stinnerd6f85422010-05-05 23:33:33 +00008719 {"uname", posix_uname, METH_NOARGS, posix_uname__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008720#endif /* HAVE_UNAME */
Victor Stinnerd6f85422010-05-05 23:33:33 +00008721 {"unlink", posix_unlink, METH_VARARGS, posix_unlink__doc__},
8722 {"remove", posix_unlink, METH_VARARGS, posix_remove__doc__},
8723 {"utime", posix_utime, METH_VARARGS, posix_utime__doc__},
Guido van Rossumb6775db1994-08-01 11:34:53 +00008724#ifdef HAVE_TIMES
Victor Stinnerd6f85422010-05-05 23:33:33 +00008725 {"times", posix_times, METH_NOARGS, posix_times__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008726#endif /* HAVE_TIMES */
Victor Stinnerd6f85422010-05-05 23:33:33 +00008727 {"_exit", posix__exit, METH_VARARGS, posix__exit__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008728#ifdef HAVE_EXECV
Victor Stinnerd6f85422010-05-05 23:33:33 +00008729 {"execv", posix_execv, METH_VARARGS, posix_execv__doc__},
8730 {"execve", posix_execve, METH_VARARGS, posix_execve__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008731#endif /* HAVE_EXECV */
Guido van Rossuma1065681999-01-25 23:20:23 +00008732#ifdef HAVE_SPAWNV
Victor Stinnerd6f85422010-05-05 23:33:33 +00008733 {"spawnv", posix_spawnv, METH_VARARGS, posix_spawnv__doc__},
8734 {"spawnve", posix_spawnve, METH_VARARGS, posix_spawnve__doc__},
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00008735#if defined(PYOS_OS2)
Victor Stinnerd6f85422010-05-05 23:33:33 +00008736 {"spawnvp", posix_spawnvp, METH_VARARGS, posix_spawnvp__doc__},
8737 {"spawnvpe", posix_spawnvpe, METH_VARARGS, posix_spawnvpe__doc__},
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00008738#endif /* PYOS_OS2 */
Guido van Rossuma1065681999-01-25 23:20:23 +00008739#endif /* HAVE_SPAWNV */
Guido van Rossum2242f2f2001-04-11 20:58:20 +00008740#ifdef HAVE_FORK1
Victor Stinnerd6f85422010-05-05 23:33:33 +00008741 {"fork1", posix_fork1, METH_NOARGS, posix_fork1__doc__},
Guido van Rossum2242f2f2001-04-11 20:58:20 +00008742#endif /* HAVE_FORK1 */
Guido van Rossumad0ee831995-03-01 10:34:45 +00008743#ifdef HAVE_FORK
Victor Stinnerd6f85422010-05-05 23:33:33 +00008744 {"fork", posix_fork, METH_NOARGS, posix_fork__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008745#endif /* HAVE_FORK */
Martin v. Löwis24a880b2002-12-31 12:55:15 +00008746#if defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX)
Victor Stinnerd6f85422010-05-05 23:33:33 +00008747 {"openpty", posix_openpty, METH_NOARGS, posix_openpty__doc__},
Martin v. Löwis24a880b2002-12-31 12:55:15 +00008748#endif /* HAVE_OPENPTY || HAVE__GETPTY || HAVE_DEV_PTMX */
Fred Drake8cef4cf2000-06-28 16:40:38 +00008749#ifdef HAVE_FORKPTY
Victor Stinnerd6f85422010-05-05 23:33:33 +00008750 {"forkpty", posix_forkpty, METH_NOARGS, posix_forkpty__doc__},
Fred Drake8cef4cf2000-06-28 16:40:38 +00008751#endif /* HAVE_FORKPTY */
Guido van Rossumad0ee831995-03-01 10:34:45 +00008752#ifdef HAVE_GETEGID
Victor Stinnerd6f85422010-05-05 23:33:33 +00008753 {"getegid", posix_getegid, METH_NOARGS, posix_getegid__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008754#endif /* HAVE_GETEGID */
8755#ifdef HAVE_GETEUID
Victor Stinnerd6f85422010-05-05 23:33:33 +00008756 {"geteuid", posix_geteuid, METH_NOARGS, posix_geteuid__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008757#endif /* HAVE_GETEUID */
8758#ifdef HAVE_GETGID
Victor Stinnerd6f85422010-05-05 23:33:33 +00008759 {"getgid", posix_getgid, METH_NOARGS, posix_getgid__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008760#endif /* HAVE_GETGID */
Fred Drakec9680921999-12-13 16:37:25 +00008761#ifdef HAVE_GETGROUPS
Victor Stinnerd6f85422010-05-05 23:33:33 +00008762 {"getgroups", posix_getgroups, METH_NOARGS, posix_getgroups__doc__},
Fred Drakec9680921999-12-13 16:37:25 +00008763#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00008764 {"getpid", posix_getpid, METH_NOARGS, posix_getpid__doc__},
Guido van Rossumb6775db1994-08-01 11:34:53 +00008765#ifdef HAVE_GETPGRP
Victor Stinnerd6f85422010-05-05 23:33:33 +00008766 {"getpgrp", posix_getpgrp, METH_NOARGS, posix_getpgrp__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008767#endif /* HAVE_GETPGRP */
Guido van Rossumad0ee831995-03-01 10:34:45 +00008768#ifdef HAVE_GETPPID
Victor Stinnerd6f85422010-05-05 23:33:33 +00008769 {"getppid", posix_getppid, METH_NOARGS, posix_getppid__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008770#endif /* HAVE_GETPPID */
8771#ifdef HAVE_GETUID
Victor Stinnerd6f85422010-05-05 23:33:33 +00008772 {"getuid", posix_getuid, METH_NOARGS, posix_getuid__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008773#endif /* HAVE_GETUID */
Fred Drake12c6e2d1999-12-14 21:25:03 +00008774#ifdef HAVE_GETLOGIN
Victor Stinnerd6f85422010-05-05 23:33:33 +00008775 {"getlogin", posix_getlogin, METH_NOARGS, posix_getlogin__doc__},
Fred Drake12c6e2d1999-12-14 21:25:03 +00008776#endif
Guido van Rossumad0ee831995-03-01 10:34:45 +00008777#ifdef HAVE_KILL
Victor Stinnerd6f85422010-05-05 23:33:33 +00008778 {"kill", posix_kill, METH_VARARGS, posix_kill__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008779#endif /* HAVE_KILL */
Martin v. Löwisb2c92f42002-02-16 23:35:41 +00008780#ifdef HAVE_KILLPG
Victor Stinnerd6f85422010-05-05 23:33:33 +00008781 {"killpg", posix_killpg, METH_VARARGS, posix_killpg__doc__},
Martin v. Löwisb2c92f42002-02-16 23:35:41 +00008782#endif /* HAVE_KILLPG */
Guido van Rossumc0125471996-06-28 18:55:32 +00008783#ifdef HAVE_PLOCK
Victor Stinnerd6f85422010-05-05 23:33:33 +00008784 {"plock", posix_plock, METH_VARARGS, posix_plock__doc__},
Guido van Rossumc0125471996-06-28 18:55:32 +00008785#endif /* HAVE_PLOCK */
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008786#ifdef HAVE_POPEN
Victor Stinnerd6f85422010-05-05 23:33:33 +00008787 {"popen", posix_popen, METH_VARARGS, posix_popen__doc__},
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00008788#ifdef MS_WINDOWS
Victor Stinnerd6f85422010-05-05 23:33:33 +00008789 {"popen2", win32_popen2, METH_VARARGS},
8790 {"popen3", win32_popen3, METH_VARARGS},
8791 {"popen4", win32_popen4, METH_VARARGS},
8792 {"startfile", win32_startfile, METH_VARARGS, win32_startfile__doc__},
8793 {"kill", win32_kill, METH_VARARGS, win32_kill__doc__},
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00008794#else
8795#if defined(PYOS_OS2) && defined(PYCC_GCC)
Victor Stinnerd6f85422010-05-05 23:33:33 +00008796 {"popen2", os2emx_popen2, METH_VARARGS},
8797 {"popen3", os2emx_popen3, METH_VARARGS},
8798 {"popen4", os2emx_popen4, METH_VARARGS},
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00008799#endif
Fredrik Lundhffb9c772000-07-09 14:49:51 +00008800#endif
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008801#endif /* HAVE_POPEN */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008802#ifdef HAVE_SETUID
Victor Stinnerd6f85422010-05-05 23:33:33 +00008803 {"setuid", posix_setuid, METH_VARARGS, posix_setuid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008804#endif /* HAVE_SETUID */
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00008805#ifdef HAVE_SETEUID
Victor Stinnerd6f85422010-05-05 23:33:33 +00008806 {"seteuid", posix_seteuid, METH_VARARGS, posix_seteuid__doc__},
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00008807#endif /* HAVE_SETEUID */
8808#ifdef HAVE_SETEGID
Victor Stinnerd6f85422010-05-05 23:33:33 +00008809 {"setegid", posix_setegid, METH_VARARGS, posix_setegid__doc__},
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00008810#endif /* HAVE_SETEGID */
8811#ifdef HAVE_SETREUID
Victor Stinnerd6f85422010-05-05 23:33:33 +00008812 {"setreuid", posix_setreuid, METH_VARARGS, posix_setreuid__doc__},
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00008813#endif /* HAVE_SETREUID */
8814#ifdef HAVE_SETREGID
Victor Stinnerd6f85422010-05-05 23:33:33 +00008815 {"setregid", posix_setregid, METH_VARARGS, posix_setregid__doc__},
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00008816#endif /* HAVE_SETREGID */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008817#ifdef HAVE_SETGID
Victor Stinnerd6f85422010-05-05 23:33:33 +00008818 {"setgid", posix_setgid, METH_VARARGS, posix_setgid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008819#endif /* HAVE_SETGID */
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00008820#ifdef HAVE_SETGROUPS
Victor Stinnerd6f85422010-05-05 23:33:33 +00008821 {"setgroups", posix_setgroups, METH_O, posix_setgroups__doc__},
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00008822#endif /* HAVE_SETGROUPS */
Antoine Pitrou30b3b352009-12-02 20:37:54 +00008823#ifdef HAVE_INITGROUPS
Victor Stinnerd6f85422010-05-05 23:33:33 +00008824 {"initgroups", posix_initgroups, METH_VARARGS, posix_initgroups__doc__},
Antoine Pitrou30b3b352009-12-02 20:37:54 +00008825#endif /* HAVE_INITGROUPS */
Martin v. Löwis606edc12002-06-13 21:09:11 +00008826#ifdef HAVE_GETPGID
Victor Stinnerd6f85422010-05-05 23:33:33 +00008827 {"getpgid", posix_getpgid, METH_VARARGS, posix_getpgid__doc__},
Martin v. Löwis606edc12002-06-13 21:09:11 +00008828#endif /* HAVE_GETPGID */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008829#ifdef HAVE_SETPGRP
Victor Stinnerd6f85422010-05-05 23:33:33 +00008830 {"setpgrp", posix_setpgrp, METH_NOARGS, posix_setpgrp__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008831#endif /* HAVE_SETPGRP */
Guido van Rossumad0ee831995-03-01 10:34:45 +00008832#ifdef HAVE_WAIT
Victor Stinnerd6f85422010-05-05 23:33:33 +00008833 {"wait", posix_wait, METH_NOARGS, posix_wait__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008834#endif /* HAVE_WAIT */
Neal Norwitz05a45592006-03-20 06:30:08 +00008835#ifdef HAVE_WAIT3
Victor Stinnerd6f85422010-05-05 23:33:33 +00008836 {"wait3", posix_wait3, METH_VARARGS, posix_wait3__doc__},
Neal Norwitz05a45592006-03-20 06:30:08 +00008837#endif /* HAVE_WAIT3 */
8838#ifdef HAVE_WAIT4
Victor Stinnerd6f85422010-05-05 23:33:33 +00008839 {"wait4", posix_wait4, METH_VARARGS, posix_wait4__doc__},
Neal Norwitz05a45592006-03-20 06:30:08 +00008840#endif /* HAVE_WAIT4 */
Tim Petersab034fa2002-02-01 11:27:43 +00008841#if defined(HAVE_WAITPID) || defined(HAVE_CWAIT)
Victor Stinnerd6f85422010-05-05 23:33:33 +00008842 {"waitpid", posix_waitpid, METH_VARARGS, posix_waitpid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008843#endif /* HAVE_WAITPID */
Martin v. Löwis49ee14d2003-11-10 06:35:36 +00008844#ifdef HAVE_GETSID
Victor Stinnerd6f85422010-05-05 23:33:33 +00008845 {"getsid", posix_getsid, METH_VARARGS, posix_getsid__doc__},
Martin v. Löwis49ee14d2003-11-10 06:35:36 +00008846#endif /* HAVE_GETSID */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008847#ifdef HAVE_SETSID
Victor Stinnerd6f85422010-05-05 23:33:33 +00008848 {"setsid", posix_setsid, METH_NOARGS, posix_setsid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008849#endif /* HAVE_SETSID */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008850#ifdef HAVE_SETPGID
Victor Stinnerd6f85422010-05-05 23:33:33 +00008851 {"setpgid", posix_setpgid, METH_VARARGS, posix_setpgid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008852#endif /* HAVE_SETPGID */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008853#ifdef HAVE_TCGETPGRP
Victor Stinnerd6f85422010-05-05 23:33:33 +00008854 {"tcgetpgrp", posix_tcgetpgrp, METH_VARARGS, posix_tcgetpgrp__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008855#endif /* HAVE_TCGETPGRP */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008856#ifdef HAVE_TCSETPGRP
Victor Stinnerd6f85422010-05-05 23:33:33 +00008857 {"tcsetpgrp", posix_tcsetpgrp, METH_VARARGS, posix_tcsetpgrp__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008858#endif /* HAVE_TCSETPGRP */
Victor Stinnerd6f85422010-05-05 23:33:33 +00008859 {"open", posix_open, METH_VARARGS, posix_open__doc__},
8860 {"close", posix_close, METH_VARARGS, posix_close__doc__},
8861 {"closerange", posix_closerange, METH_VARARGS, posix_closerange__doc__},
8862 {"dup", posix_dup, METH_VARARGS, posix_dup__doc__},
8863 {"dup2", posix_dup2, METH_VARARGS, posix_dup2__doc__},
8864 {"lseek", posix_lseek, METH_VARARGS, posix_lseek__doc__},
8865 {"read", posix_read, METH_VARARGS, posix_read__doc__},
8866 {"write", posix_write, METH_VARARGS, posix_write__doc__},
8867 {"fstat", posix_fstat, METH_VARARGS, posix_fstat__doc__},
8868 {"fdopen", posix_fdopen, METH_VARARGS, posix_fdopen__doc__},
8869 {"isatty", posix_isatty, METH_VARARGS, posix_isatty__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008870#ifdef HAVE_PIPE
Victor Stinnerd6f85422010-05-05 23:33:33 +00008871 {"pipe", posix_pipe, METH_NOARGS, posix_pipe__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008872#endif
8873#ifdef HAVE_MKFIFO
Victor Stinnerd6f85422010-05-05 23:33:33 +00008874 {"mkfifo", posix_mkfifo, METH_VARARGS, posix_mkfifo__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008875#endif
Neal Norwitz11690112002-07-30 01:08:28 +00008876#if defined(HAVE_MKNOD) && defined(HAVE_MAKEDEV)
Victor Stinnerd6f85422010-05-05 23:33:33 +00008877 {"mknod", posix_mknod, METH_VARARGS, posix_mknod__doc__},
Martin v. Löwis06a83e92002-04-14 10:19:44 +00008878#endif
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00008879#ifdef HAVE_DEVICE_MACROS
Victor Stinnerd6f85422010-05-05 23:33:33 +00008880 {"major", posix_major, METH_VARARGS, posix_major__doc__},
8881 {"minor", posix_minor, METH_VARARGS, posix_minor__doc__},
8882 {"makedev", posix_makedev, METH_VARARGS, posix_makedev__doc__},
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00008883#endif
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008884#ifdef HAVE_FTRUNCATE
Victor Stinnerd6f85422010-05-05 23:33:33 +00008885 {"ftruncate", posix_ftruncate, METH_VARARGS, posix_ftruncate__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008886#endif
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00008887#ifdef HAVE_PUTENV
Victor Stinnerd6f85422010-05-05 23:33:33 +00008888 {"putenv", posix_putenv, METH_VARARGS, posix_putenv__doc__},
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00008889#endif
Guido van Rossumc524d952001-10-19 01:31:59 +00008890#ifdef HAVE_UNSETENV
Victor Stinnerd6f85422010-05-05 23:33:33 +00008891 {"unsetenv", posix_unsetenv, METH_VARARGS, posix_unsetenv__doc__},
Guido van Rossumc524d952001-10-19 01:31:59 +00008892#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00008893 {"strerror", posix_strerror, METH_VARARGS, posix_strerror__doc__},
Fred Drake4d1e64b2002-04-15 19:40:07 +00008894#ifdef HAVE_FCHDIR
Victor Stinnerd6f85422010-05-05 23:33:33 +00008895 {"fchdir", posix_fchdir, METH_O, posix_fchdir__doc__},
Fred Drake4d1e64b2002-04-15 19:40:07 +00008896#endif
Guido van Rossum21142a01999-01-08 21:05:37 +00008897#ifdef HAVE_FSYNC
Victor Stinnerd6f85422010-05-05 23:33:33 +00008898 {"fsync", posix_fsync, METH_O, posix_fsync__doc__},
Guido van Rossum21142a01999-01-08 21:05:37 +00008899#endif
8900#ifdef HAVE_FDATASYNC
Victor Stinnerd6f85422010-05-05 23:33:33 +00008901 {"fdatasync", posix_fdatasync, METH_O, posix_fdatasync__doc__},
Guido van Rossum21142a01999-01-08 21:05:37 +00008902#endif
Guido van Rossumc9641791998-08-04 15:26:23 +00008903#ifdef HAVE_SYS_WAIT_H
Fred Drake106c1a02002-04-23 15:58:02 +00008904#ifdef WCOREDUMP
Victor Stinnerd6f85422010-05-05 23:33:33 +00008905 {"WCOREDUMP", posix_WCOREDUMP, METH_VARARGS, posix_WCOREDUMP__doc__},
Fred Drake106c1a02002-04-23 15:58:02 +00008906#endif /* WCOREDUMP */
Martin v. Löwis2b41b0d2002-05-04 13:13:41 +00008907#ifdef WIFCONTINUED
Victor Stinnerd6f85422010-05-05 23:33:33 +00008908 {"WIFCONTINUED",posix_WIFCONTINUED, METH_VARARGS, posix_WIFCONTINUED__doc__},
Martin v. Löwis2b41b0d2002-05-04 13:13:41 +00008909#endif /* WIFCONTINUED */
Guido van Rossumc9641791998-08-04 15:26:23 +00008910#ifdef WIFSTOPPED
Victor Stinnerd6f85422010-05-05 23:33:33 +00008911 {"WIFSTOPPED", posix_WIFSTOPPED, METH_VARARGS, posix_WIFSTOPPED__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008912#endif /* WIFSTOPPED */
8913#ifdef WIFSIGNALED
Victor Stinnerd6f85422010-05-05 23:33:33 +00008914 {"WIFSIGNALED", posix_WIFSIGNALED, METH_VARARGS, posix_WIFSIGNALED__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008915#endif /* WIFSIGNALED */
8916#ifdef WIFEXITED
Victor Stinnerd6f85422010-05-05 23:33:33 +00008917 {"WIFEXITED", posix_WIFEXITED, METH_VARARGS, posix_WIFEXITED__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008918#endif /* WIFEXITED */
8919#ifdef WEXITSTATUS
Victor Stinnerd6f85422010-05-05 23:33:33 +00008920 {"WEXITSTATUS", posix_WEXITSTATUS, METH_VARARGS, posix_WEXITSTATUS__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008921#endif /* WEXITSTATUS */
8922#ifdef WTERMSIG
Victor Stinnerd6f85422010-05-05 23:33:33 +00008923 {"WTERMSIG", posix_WTERMSIG, METH_VARARGS, posix_WTERMSIG__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008924#endif /* WTERMSIG */
8925#ifdef WSTOPSIG
Victor Stinnerd6f85422010-05-05 23:33:33 +00008926 {"WSTOPSIG", posix_WSTOPSIG, METH_VARARGS, posix_WSTOPSIG__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008927#endif /* WSTOPSIG */
8928#endif /* HAVE_SYS_WAIT_H */
Martin v. Löwis5f5d99c2006-05-16 07:05:37 +00008929#if defined(HAVE_FSTATVFS) && defined(HAVE_SYS_STATVFS_H)
Victor Stinnerd6f85422010-05-05 23:33:33 +00008930 {"fstatvfs", posix_fstatvfs, METH_VARARGS, posix_fstatvfs__doc__},
Guido van Rossum94f6f721999-01-06 18:42:14 +00008931#endif
Martin v. Löwis5f5d99c2006-05-16 07:05:37 +00008932#if defined(HAVE_STATVFS) && defined(HAVE_SYS_STATVFS_H)
Victor Stinnerd6f85422010-05-05 23:33:33 +00008933 {"statvfs", posix_statvfs, METH_VARARGS, posix_statvfs__doc__},
Guido van Rossum94f6f721999-01-06 18:42:14 +00008934#endif
Guido van Rossume2ad6332001-01-08 17:51:55 +00008935#ifdef HAVE_TMPFILE
Victor Stinnerd6f85422010-05-05 23:33:33 +00008936 {"tmpfile", posix_tmpfile, METH_NOARGS, posix_tmpfile__doc__},
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008937#endif
8938#ifdef HAVE_TEMPNAM
Victor Stinnerd6f85422010-05-05 23:33:33 +00008939 {"tempnam", posix_tempnam, METH_VARARGS, posix_tempnam__doc__},
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008940#endif
8941#ifdef HAVE_TMPNAM
Victor Stinnerd6f85422010-05-05 23:33:33 +00008942 {"tmpnam", posix_tmpnam, METH_NOARGS, posix_tmpnam__doc__},
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008943#endif
Fred Drakec9680921999-12-13 16:37:25 +00008944#ifdef HAVE_CONFSTR
Victor Stinnerd6f85422010-05-05 23:33:33 +00008945 {"confstr", posix_confstr, METH_VARARGS, posix_confstr__doc__},
Fred Drakec9680921999-12-13 16:37:25 +00008946#endif
8947#ifdef HAVE_SYSCONF
Victor Stinnerd6f85422010-05-05 23:33:33 +00008948 {"sysconf", posix_sysconf, METH_VARARGS, posix_sysconf__doc__},
Fred Drakec9680921999-12-13 16:37:25 +00008949#endif
8950#ifdef HAVE_FPATHCONF
Victor Stinnerd6f85422010-05-05 23:33:33 +00008951 {"fpathconf", posix_fpathconf, METH_VARARGS, posix_fpathconf__doc__},
Fred Drakec9680921999-12-13 16:37:25 +00008952#endif
8953#ifdef HAVE_PATHCONF
Victor Stinnerd6f85422010-05-05 23:33:33 +00008954 {"pathconf", posix_pathconf, METH_VARARGS, posix_pathconf__doc__},
Fred Drakec9680921999-12-13 16:37:25 +00008955#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00008956 {"abort", posix_abort, METH_NOARGS, posix_abort__doc__},
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00008957#ifdef MS_WINDOWS
Victor Stinnerd6f85422010-05-05 23:33:33 +00008958 {"_getfullpathname", posix__getfullpathname, METH_VARARGS, NULL},
Mark Hammondef8b6542001-05-13 08:04:26 +00008959#endif
Martin v. Löwis438b5342002-12-27 10:16:42 +00008960#ifdef HAVE_GETLOADAVG
Victor Stinnerd6f85422010-05-05 23:33:33 +00008961 {"getloadavg", posix_getloadavg, METH_NOARGS, posix_getloadavg__doc__},
Martin v. Löwis438b5342002-12-27 10:16:42 +00008962#endif
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008963 #ifdef MS_WINDOWS
Victor Stinnerd6f85422010-05-05 23:33:33 +00008964 {"urandom", win32_urandom, METH_VARARGS, win32_urandom__doc__},
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008965 #endif
Neal Norwitz2a30cd02006-07-10 01:18:57 +00008966 #ifdef __VMS
Victor Stinnerd6f85422010-05-05 23:33:33 +00008967 {"urandom", vms_urandom, METH_VARARGS, vms_urandom__doc__},
Neal Norwitz2a30cd02006-07-10 01:18:57 +00008968 #endif
Martin v. Löwis50ea4562009-11-27 13:56:01 +00008969#ifdef HAVE_SETRESUID
Victor Stinnerd6f85422010-05-05 23:33:33 +00008970 {"setresuid", posix_setresuid, METH_VARARGS, posix_setresuid__doc__},
Martin v. Löwis50ea4562009-11-27 13:56:01 +00008971#endif
8972#ifdef HAVE_SETRESGID
Victor Stinnerd6f85422010-05-05 23:33:33 +00008973 {"setresgid", posix_setresgid, METH_VARARGS, posix_setresgid__doc__},
Martin v. Löwis50ea4562009-11-27 13:56:01 +00008974#endif
8975#ifdef HAVE_GETRESUID
Victor Stinnerd6f85422010-05-05 23:33:33 +00008976 {"getresuid", posix_getresuid, METH_NOARGS, posix_getresuid__doc__},
Martin v. Löwis50ea4562009-11-27 13:56:01 +00008977#endif
8978#ifdef HAVE_GETRESGID
Victor Stinnerd6f85422010-05-05 23:33:33 +00008979 {"getresgid", posix_getresgid, METH_NOARGS, posix_getresgid__doc__},
Martin v. Löwis50ea4562009-11-27 13:56:01 +00008980#endif
8981
Victor Stinnerd6f85422010-05-05 23:33:33 +00008982 {NULL, NULL} /* Sentinel */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00008983};
8984
8985
Barry Warsaw4a342091996-12-19 23:50:02 +00008986static int
Fred Drake4d1e64b2002-04-15 19:40:07 +00008987ins(PyObject *module, char *symbol, long value)
Barry Warsaw4a342091996-12-19 23:50:02 +00008988{
Victor Stinnerd6f85422010-05-05 23:33:33 +00008989 return PyModule_AddIntConstant(module, symbol, value);
Barry Warsaw4a342091996-12-19 23:50:02 +00008990}
8991
Guido van Rossumd48f2521997-12-05 22:19:34 +00008992#if defined(PYOS_OS2)
8993/* Insert Platform-Specific Constant Values (Strings & Numbers) of Common Use */
Fred Drake4d1e64b2002-04-15 19:40:07 +00008994static int insertvalues(PyObject *module)
Guido van Rossumd48f2521997-12-05 22:19:34 +00008995{
8996 APIRET rc;
8997 ULONG values[QSV_MAX+1];
8998 PyObject *v;
Marc-André Lemburgd4c0a9c2001-11-28 11:47:00 +00008999 char *ver, tmp[50];
Guido van Rossumd48f2521997-12-05 22:19:34 +00009000
9001 Py_BEGIN_ALLOW_THREADS
Andrew MacIntyre75e01452003-04-21 14:19:51 +00009002 rc = DosQuerySysInfo(1L, QSV_MAX, &values[1], sizeof(ULONG) * QSV_MAX);
Guido van Rossumd48f2521997-12-05 22:19:34 +00009003 Py_END_ALLOW_THREADS
9004
9005 if (rc != NO_ERROR) {
9006 os2_error(rc);
9007 return -1;
9008 }
9009
Fred Drake4d1e64b2002-04-15 19:40:07 +00009010 if (ins(module, "meminstalled", values[QSV_TOTPHYSMEM])) return -1;
9011 if (ins(module, "memkernel", values[QSV_TOTRESMEM])) return -1;
9012 if (ins(module, "memvirtual", values[QSV_TOTAVAILMEM])) return -1;
9013 if (ins(module, "maxpathlen", values[QSV_MAX_PATH_LENGTH])) return -1;
9014 if (ins(module, "maxnamelen", values[QSV_MAX_COMP_LENGTH])) return -1;
9015 if (ins(module, "revision", values[QSV_VERSION_REVISION])) return -1;
9016 if (ins(module, "timeslice", values[QSV_MIN_SLICE])) return -1;
Guido van Rossumd48f2521997-12-05 22:19:34 +00009017
9018 switch (values[QSV_VERSION_MINOR]) {
9019 case 0: ver = "2.00"; break;
9020 case 10: ver = "2.10"; break;
9021 case 11: ver = "2.11"; break;
9022 case 30: ver = "3.00"; break;
9023 case 40: ver = "4.00"; break;
9024 case 50: ver = "5.00"; break;
9025 default:
Tim Peters885d4572001-11-28 20:27:42 +00009026 PyOS_snprintf(tmp, sizeof(tmp),
Victor Stinnerd6f85422010-05-05 23:33:33 +00009027 "%d-%d", values[QSV_VERSION_MAJOR],
Tim Peters885d4572001-11-28 20:27:42 +00009028 values[QSV_VERSION_MINOR]);
Guido van Rossumd48f2521997-12-05 22:19:34 +00009029 ver = &tmp[0];
9030 }
9031
9032 /* Add Indicator of the Version of the Operating System */
Fred Drake4d1e64b2002-04-15 19:40:07 +00009033 if (PyModule_AddStringConstant(module, "version", tmp) < 0)
Guido van Rossumd48f2521997-12-05 22:19:34 +00009034 return -1;
Guido van Rossumd48f2521997-12-05 22:19:34 +00009035
9036 /* Add Indicator of Which Drive was Used to Boot the System */
9037 tmp[0] = 'A' + values[QSV_BOOT_DRIVE] - 1;
9038 tmp[1] = ':';
9039 tmp[2] = '\0';
9040
Fred Drake4d1e64b2002-04-15 19:40:07 +00009041 return PyModule_AddStringConstant(module, "bootdrive", tmp);
Guido van Rossumd48f2521997-12-05 22:19:34 +00009042}
9043#endif
9044
Barry Warsaw4a342091996-12-19 23:50:02 +00009045static int
Thomas Woutersf3f33dc2000-07-21 06:00:07 +00009046all_ins(PyObject *d)
Barry Warsaw4a342091996-12-19 23:50:02 +00009047{
Guido van Rossum94f6f721999-01-06 18:42:14 +00009048#ifdef F_OK
Victor Stinnerd6f85422010-05-05 23:33:33 +00009049 if (ins(d, "F_OK", (long)F_OK)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00009050#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00009051#ifdef R_OK
Victor Stinnerd6f85422010-05-05 23:33:33 +00009052 if (ins(d, "R_OK", (long)R_OK)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00009053#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00009054#ifdef W_OK
Victor Stinnerd6f85422010-05-05 23:33:33 +00009055 if (ins(d, "W_OK", (long)W_OK)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00009056#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00009057#ifdef X_OK
Victor Stinnerd6f85422010-05-05 23:33:33 +00009058 if (ins(d, "X_OK", (long)X_OK)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00009059#endif
Fred Drakec9680921999-12-13 16:37:25 +00009060#ifdef NGROUPS_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00009061 if (ins(d, "NGROUPS_MAX", (long)NGROUPS_MAX)) return -1;
Fred Drakec9680921999-12-13 16:37:25 +00009062#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00009063#ifdef TMP_MAX
Victor Stinnerd6f85422010-05-05 23:33:33 +00009064 if (ins(d, "TMP_MAX", (long)TMP_MAX)) return -1;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00009065#endif
Fred Drake106c1a02002-04-23 15:58:02 +00009066#ifdef WCONTINUED
Victor Stinnerd6f85422010-05-05 23:33:33 +00009067 if (ins(d, "WCONTINUED", (long)WCONTINUED)) return -1;
Fred Drake106c1a02002-04-23 15:58:02 +00009068#endif
Barry Warsaw4a342091996-12-19 23:50:02 +00009069#ifdef WNOHANG
Victor Stinnerd6f85422010-05-05 23:33:33 +00009070 if (ins(d, "WNOHANG", (long)WNOHANG)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00009071#endif
Fred Drake106c1a02002-04-23 15:58:02 +00009072#ifdef WUNTRACED
Victor Stinnerd6f85422010-05-05 23:33:33 +00009073 if (ins(d, "WUNTRACED", (long)WUNTRACED)) return -1;
Fred Drake106c1a02002-04-23 15:58:02 +00009074#endif
Barry Warsaw4a342091996-12-19 23:50:02 +00009075#ifdef O_RDONLY
Victor Stinnerd6f85422010-05-05 23:33:33 +00009076 if (ins(d, "O_RDONLY", (long)O_RDONLY)) return -1;
Barry Warsaw4a342091996-12-19 23:50:02 +00009077#endif
9078#ifdef O_WRONLY
Victor Stinnerd6f85422010-05-05 23:33:33 +00009079 if (ins(d, "O_WRONLY", (long)O_WRONLY)) return -1;
Barry Warsaw4a342091996-12-19 23:50:02 +00009080#endif
9081#ifdef O_RDWR
Victor Stinnerd6f85422010-05-05 23:33:33 +00009082 if (ins(d, "O_RDWR", (long)O_RDWR)) return -1;
Barry Warsaw4a342091996-12-19 23:50:02 +00009083#endif
9084#ifdef O_NDELAY
Victor Stinnerd6f85422010-05-05 23:33:33 +00009085 if (ins(d, "O_NDELAY", (long)O_NDELAY)) return -1;
Barry Warsaw4a342091996-12-19 23:50:02 +00009086#endif
9087#ifdef O_NONBLOCK
Victor Stinnerd6f85422010-05-05 23:33:33 +00009088 if (ins(d, "O_NONBLOCK", (long)O_NONBLOCK)) return -1;
Barry Warsaw4a342091996-12-19 23:50:02 +00009089#endif
9090#ifdef O_APPEND
Victor Stinnerd6f85422010-05-05 23:33:33 +00009091 if (ins(d, "O_APPEND", (long)O_APPEND)) return -1;
Barry Warsaw4a342091996-12-19 23:50:02 +00009092#endif
9093#ifdef O_DSYNC
Victor Stinnerd6f85422010-05-05 23:33:33 +00009094 if (ins(d, "O_DSYNC", (long)O_DSYNC)) return -1;
Barry Warsaw4a342091996-12-19 23:50:02 +00009095#endif
9096#ifdef O_RSYNC
Victor Stinnerd6f85422010-05-05 23:33:33 +00009097 if (ins(d, "O_RSYNC", (long)O_RSYNC)) return -1;
Barry Warsaw4a342091996-12-19 23:50:02 +00009098#endif
9099#ifdef O_SYNC
Victor Stinnerd6f85422010-05-05 23:33:33 +00009100 if (ins(d, "O_SYNC", (long)O_SYNC)) return -1;
Barry Warsaw4a342091996-12-19 23:50:02 +00009101#endif
9102#ifdef O_NOCTTY
Victor Stinnerd6f85422010-05-05 23:33:33 +00009103 if (ins(d, "O_NOCTTY", (long)O_NOCTTY)) return -1;
Barry Warsaw4a342091996-12-19 23:50:02 +00009104#endif
9105#ifdef O_CREAT
Victor Stinnerd6f85422010-05-05 23:33:33 +00009106 if (ins(d, "O_CREAT", (long)O_CREAT)) return -1;
Barry Warsaw4a342091996-12-19 23:50:02 +00009107#endif
9108#ifdef O_EXCL
Victor Stinnerd6f85422010-05-05 23:33:33 +00009109 if (ins(d, "O_EXCL", (long)O_EXCL)) return -1;
Barry Warsaw4a342091996-12-19 23:50:02 +00009110#endif
9111#ifdef O_TRUNC
Victor Stinnerd6f85422010-05-05 23:33:33 +00009112 if (ins(d, "O_TRUNC", (long)O_TRUNC)) return -1;
Barry Warsaw4a342091996-12-19 23:50:02 +00009113#endif
Guido van Rossum98d9d091997-08-08 21:48:51 +00009114#ifdef O_BINARY
Victor Stinnerd6f85422010-05-05 23:33:33 +00009115 if (ins(d, "O_BINARY", (long)O_BINARY)) return -1;
Guido van Rossum98d9d091997-08-08 21:48:51 +00009116#endif
9117#ifdef O_TEXT
Victor Stinnerd6f85422010-05-05 23:33:33 +00009118 if (ins(d, "O_TEXT", (long)O_TEXT)) return -1;
Guido van Rossum98d9d091997-08-08 21:48:51 +00009119#endif
Martin v. Löwis4fe3c272001-10-18 22:05:36 +00009120#ifdef O_LARGEFILE
Victor Stinnerd6f85422010-05-05 23:33:33 +00009121 if (ins(d, "O_LARGEFILE", (long)O_LARGEFILE)) return -1;
Martin v. Löwis4fe3c272001-10-18 22:05:36 +00009122#endif
Skip Montanaro5ff14922005-05-16 02:42:22 +00009123#ifdef O_SHLOCK
Victor Stinnerd6f85422010-05-05 23:33:33 +00009124 if (ins(d, "O_SHLOCK", (long)O_SHLOCK)) return -1;
Skip Montanaro5ff14922005-05-16 02:42:22 +00009125#endif
9126#ifdef O_EXLOCK
Victor Stinnerd6f85422010-05-05 23:33:33 +00009127 if (ins(d, "O_EXLOCK", (long)O_EXLOCK)) return -1;
Skip Montanaro5ff14922005-05-16 02:42:22 +00009128#endif
Martin v. Löwis4fe3c272001-10-18 22:05:36 +00009129
Tim Peters5aa91602002-01-30 05:46:57 +00009130/* MS Windows */
9131#ifdef O_NOINHERIT
Victor Stinnerd6f85422010-05-05 23:33:33 +00009132 /* Don't inherit in child processes. */
9133 if (ins(d, "O_NOINHERIT", (long)O_NOINHERIT)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00009134#endif
9135#ifdef _O_SHORT_LIVED
Victor Stinnerd6f85422010-05-05 23:33:33 +00009136 /* Optimize for short life (keep in memory). */
9137 /* MS forgot to define this one with a non-underscore form too. */
9138 if (ins(d, "O_SHORT_LIVED", (long)_O_SHORT_LIVED)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00009139#endif
9140#ifdef O_TEMPORARY
Victor Stinnerd6f85422010-05-05 23:33:33 +00009141 /* Automatically delete when last handle is closed. */
9142 if (ins(d, "O_TEMPORARY", (long)O_TEMPORARY)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00009143#endif
9144#ifdef O_RANDOM
Victor Stinnerd6f85422010-05-05 23:33:33 +00009145 /* Optimize for random access. */
9146 if (ins(d, "O_RANDOM", (long)O_RANDOM)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00009147#endif
9148#ifdef O_SEQUENTIAL
Victor Stinnerd6f85422010-05-05 23:33:33 +00009149 /* Optimize for sequential access. */
9150 if (ins(d, "O_SEQUENTIAL", (long)O_SEQUENTIAL)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00009151#endif
9152
Martin v. Löwis4fe3c272001-10-18 22:05:36 +00009153/* GNU extensions. */
Georg Brandl5049a852008-05-16 13:10:15 +00009154#ifdef O_ASYNC
Victor Stinnerd6f85422010-05-05 23:33:33 +00009155 /* Send a SIGIO signal whenever input or output
9156 becomes available on file descriptor */
9157 if (ins(d, "O_ASYNC", (long)O_ASYNC)) return -1;
Georg Brandl5049a852008-05-16 13:10:15 +00009158#endif
Martin v. Löwis4fe3c272001-10-18 22:05:36 +00009159#ifdef O_DIRECT
Victor Stinnerd6f85422010-05-05 23:33:33 +00009160 /* Direct disk access. */
9161 if (ins(d, "O_DIRECT", (long)O_DIRECT)) return -1;
Martin v. Löwis4fe3c272001-10-18 22:05:36 +00009162#endif
9163#ifdef O_DIRECTORY
Victor Stinnerd6f85422010-05-05 23:33:33 +00009164 /* Must be a directory. */
9165 if (ins(d, "O_DIRECTORY", (long)O_DIRECTORY)) return -1;
Martin v. Löwis4fe3c272001-10-18 22:05:36 +00009166#endif
9167#ifdef O_NOFOLLOW
Victor Stinnerd6f85422010-05-05 23:33:33 +00009168 /* Do not follow links. */
9169 if (ins(d, "O_NOFOLLOW", (long)O_NOFOLLOW)) return -1;
Martin v. Löwis4fe3c272001-10-18 22:05:36 +00009170#endif
Georg Brandlb67da6e2007-11-24 13:56:09 +00009171#ifdef O_NOATIME
Victor Stinnerd6f85422010-05-05 23:33:33 +00009172 /* Do not update the access time. */
9173 if (ins(d, "O_NOATIME", (long)O_NOATIME)) return -1;
Georg Brandlb67da6e2007-11-24 13:56:09 +00009174#endif
Guido van Rossumd48f2521997-12-05 22:19:34 +00009175
Victor Stinnerd6f85422010-05-05 23:33:33 +00009176 /* These come from sysexits.h */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009177#ifdef EX_OK
Victor Stinnerd6f85422010-05-05 23:33:33 +00009178 if (ins(d, "EX_OK", (long)EX_OK)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009179#endif /* EX_OK */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009180#ifdef EX_USAGE
Victor Stinnerd6f85422010-05-05 23:33:33 +00009181 if (ins(d, "EX_USAGE", (long)EX_USAGE)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009182#endif /* EX_USAGE */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009183#ifdef EX_DATAERR
Victor Stinnerd6f85422010-05-05 23:33:33 +00009184 if (ins(d, "EX_DATAERR", (long)EX_DATAERR)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009185#endif /* EX_DATAERR */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009186#ifdef EX_NOINPUT
Victor Stinnerd6f85422010-05-05 23:33:33 +00009187 if (ins(d, "EX_NOINPUT", (long)EX_NOINPUT)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009188#endif /* EX_NOINPUT */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009189#ifdef EX_NOUSER
Victor Stinnerd6f85422010-05-05 23:33:33 +00009190 if (ins(d, "EX_NOUSER", (long)EX_NOUSER)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009191#endif /* EX_NOUSER */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009192#ifdef EX_NOHOST
Victor Stinnerd6f85422010-05-05 23:33:33 +00009193 if (ins(d, "EX_NOHOST", (long)EX_NOHOST)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009194#endif /* EX_NOHOST */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009195#ifdef EX_UNAVAILABLE
Victor Stinnerd6f85422010-05-05 23:33:33 +00009196 if (ins(d, "EX_UNAVAILABLE", (long)EX_UNAVAILABLE)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009197#endif /* EX_UNAVAILABLE */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009198#ifdef EX_SOFTWARE
Victor Stinnerd6f85422010-05-05 23:33:33 +00009199 if (ins(d, "EX_SOFTWARE", (long)EX_SOFTWARE)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009200#endif /* EX_SOFTWARE */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009201#ifdef EX_OSERR
Victor Stinnerd6f85422010-05-05 23:33:33 +00009202 if (ins(d, "EX_OSERR", (long)EX_OSERR)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009203#endif /* EX_OSERR */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009204#ifdef EX_OSFILE
Victor Stinnerd6f85422010-05-05 23:33:33 +00009205 if (ins(d, "EX_OSFILE", (long)EX_OSFILE)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009206#endif /* EX_OSFILE */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009207#ifdef EX_CANTCREAT
Victor Stinnerd6f85422010-05-05 23:33:33 +00009208 if (ins(d, "EX_CANTCREAT", (long)EX_CANTCREAT)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009209#endif /* EX_CANTCREAT */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009210#ifdef EX_IOERR
Victor Stinnerd6f85422010-05-05 23:33:33 +00009211 if (ins(d, "EX_IOERR", (long)EX_IOERR)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009212#endif /* EX_IOERR */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009213#ifdef EX_TEMPFAIL
Victor Stinnerd6f85422010-05-05 23:33:33 +00009214 if (ins(d, "EX_TEMPFAIL", (long)EX_TEMPFAIL)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009215#endif /* EX_TEMPFAIL */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009216#ifdef EX_PROTOCOL
Victor Stinnerd6f85422010-05-05 23:33:33 +00009217 if (ins(d, "EX_PROTOCOL", (long)EX_PROTOCOL)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009218#endif /* EX_PROTOCOL */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009219#ifdef EX_NOPERM
Victor Stinnerd6f85422010-05-05 23:33:33 +00009220 if (ins(d, "EX_NOPERM", (long)EX_NOPERM)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009221#endif /* EX_NOPERM */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009222#ifdef EX_CONFIG
Victor Stinnerd6f85422010-05-05 23:33:33 +00009223 if (ins(d, "EX_CONFIG", (long)EX_CONFIG)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009224#endif /* EX_CONFIG */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009225#ifdef EX_NOTFOUND
Victor Stinnerd6f85422010-05-05 23:33:33 +00009226 if (ins(d, "EX_NOTFOUND", (long)EX_NOTFOUND)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009227#endif /* EX_NOTFOUND */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009228
Guido van Rossum246bc171999-02-01 23:54:31 +00009229#ifdef HAVE_SPAWNV
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00009230#if defined(PYOS_OS2) && defined(PYCC_GCC)
Victor Stinnerd6f85422010-05-05 23:33:33 +00009231 if (ins(d, "P_WAIT", (long)P_WAIT)) return -1;
9232 if (ins(d, "P_NOWAIT", (long)P_NOWAIT)) return -1;
9233 if (ins(d, "P_OVERLAY", (long)P_OVERLAY)) return -1;
9234 if (ins(d, "P_DEBUG", (long)P_DEBUG)) return -1;
9235 if (ins(d, "P_SESSION", (long)P_SESSION)) return -1;
9236 if (ins(d, "P_DETACH", (long)P_DETACH)) return -1;
9237 if (ins(d, "P_PM", (long)P_PM)) return -1;
9238 if (ins(d, "P_DEFAULT", (long)P_DEFAULT)) return -1;
9239 if (ins(d, "P_MINIMIZE", (long)P_MINIMIZE)) return -1;
9240 if (ins(d, "P_MAXIMIZE", (long)P_MAXIMIZE)) return -1;
9241 if (ins(d, "P_FULLSCREEN", (long)P_FULLSCREEN)) return -1;
9242 if (ins(d, "P_WINDOWED", (long)P_WINDOWED)) return -1;
9243 if (ins(d, "P_FOREGROUND", (long)P_FOREGROUND)) return -1;
9244 if (ins(d, "P_BACKGROUND", (long)P_BACKGROUND)) return -1;
9245 if (ins(d, "P_NOCLOSE", (long)P_NOCLOSE)) return -1;
9246 if (ins(d, "P_NOSESSION", (long)P_NOSESSION)) return -1;
9247 if (ins(d, "P_QUOTE", (long)P_QUOTE)) return -1;
9248 if (ins(d, "P_TILDE", (long)P_TILDE)) return -1;
9249 if (ins(d, "P_UNRELATED", (long)P_UNRELATED)) return -1;
9250 if (ins(d, "P_DEBUGDESC", (long)P_DEBUGDESC)) return -1;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00009251#else
Victor Stinnerd6f85422010-05-05 23:33:33 +00009252 if (ins(d, "P_WAIT", (long)_P_WAIT)) return -1;
9253 if (ins(d, "P_NOWAIT", (long)_P_NOWAIT)) return -1;
9254 if (ins(d, "P_OVERLAY", (long)_OLD_P_OVERLAY)) return -1;
9255 if (ins(d, "P_NOWAITO", (long)_P_NOWAITO)) return -1;
9256 if (ins(d, "P_DETACH", (long)_P_DETACH)) return -1;
Guido van Rossum246bc171999-02-01 23:54:31 +00009257#endif
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00009258#endif
Guido van Rossum246bc171999-02-01 23:54:31 +00009259
Guido van Rossumd48f2521997-12-05 22:19:34 +00009260#if defined(PYOS_OS2)
Victor Stinnerd6f85422010-05-05 23:33:33 +00009261 if (insertvalues(d)) return -1;
Guido van Rossumd48f2521997-12-05 22:19:34 +00009262#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00009263 return 0;
Barry Warsaw4a342091996-12-19 23:50:02 +00009264}
9265
9266
Tim Peters5aa91602002-01-30 05:46:57 +00009267#if (defined(_MSC_VER) || defined(__WATCOMC__) || defined(__BORLANDC__)) && !defined(__QNX__)
Guido van Rossum0cb96de1997-10-01 04:29:29 +00009268#define INITFUNC initnt
9269#define MODNAME "nt"
Tim Peters58e0a8c2001-05-14 22:32:33 +00009270
9271#elif defined(PYOS_OS2)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00009272#define INITFUNC initos2
9273#define MODNAME "os2"
Tim Peters58e0a8c2001-05-14 22:32:33 +00009274
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00009275#else
Guido van Rossum0cb96de1997-10-01 04:29:29 +00009276#define INITFUNC initposix
9277#define MODNAME "posix"
9278#endif
9279
Mark Hammondfe51c6d2002-08-02 02:27:13 +00009280PyMODINIT_FUNC
Thomas Woutersf3f33dc2000-07-21 06:00:07 +00009281INITFUNC(void)
Guido van Rossumb6775db1994-08-01 11:34:53 +00009282{
Victor Stinnerd6f85422010-05-05 23:33:33 +00009283 PyObject *m, *v;
Tim Peters5aa91602002-01-30 05:46:57 +00009284
Victor Stinnerd6f85422010-05-05 23:33:33 +00009285 m = Py_InitModule3(MODNAME,
9286 posix_methods,
9287 posix__doc__);
9288 if (m == NULL)
9289 return;
Tim Peters5aa91602002-01-30 05:46:57 +00009290
Victor Stinnerd6f85422010-05-05 23:33:33 +00009291 /* Initialize environ dictionary */
9292 v = convertenviron();
9293 Py_XINCREF(v);
9294 if (v == NULL || PyModule_AddObject(m, "environ", v) != 0)
9295 return;
9296 Py_DECREF(v);
Fred Drakec9680921999-12-13 16:37:25 +00009297
Victor Stinnerd6f85422010-05-05 23:33:33 +00009298 if (all_ins(m))
9299 return;
Barry Warsaw4a342091996-12-19 23:50:02 +00009300
Victor Stinnerd6f85422010-05-05 23:33:33 +00009301 if (setup_confname_tables(m))
9302 return;
Fred Drakebec628d1999-12-15 18:31:10 +00009303
Victor Stinnerd6f85422010-05-05 23:33:33 +00009304 Py_INCREF(PyExc_OSError);
9305 PyModule_AddObject(m, "error", PyExc_OSError);
Fred Drake762e2061999-08-26 17:23:54 +00009306
Guido van Rossumb3d39562000-01-31 18:41:26 +00009307#ifdef HAVE_PUTENV
Victor Stinnerd6f85422010-05-05 23:33:33 +00009308 if (posix_putenv_garbage == NULL)
9309 posix_putenv_garbage = PyDict_New();
Guido van Rossumb3d39562000-01-31 18:41:26 +00009310#endif
Guido van Rossum98bf58f2001-10-18 20:34:25 +00009311
Victor Stinnerd6f85422010-05-05 23:33:33 +00009312 if (!initialized) {
9313 stat_result_desc.name = MODNAME ".stat_result";
9314 stat_result_desc.fields[7].name = PyStructSequence_UnnamedField;
9315 stat_result_desc.fields[8].name = PyStructSequence_UnnamedField;
9316 stat_result_desc.fields[9].name = PyStructSequence_UnnamedField;
9317 PyStructSequence_InitType(&StatResultType, &stat_result_desc);
9318 structseq_new = StatResultType.tp_new;
9319 StatResultType.tp_new = statresult_new;
Martin v. Löwis19ab6c92006-04-16 18:55:50 +00009320
Victor Stinnerd6f85422010-05-05 23:33:33 +00009321 statvfs_result_desc.name = MODNAME ".statvfs_result";
9322 PyStructSequence_InitType(&StatVFSResultType, &statvfs_result_desc);
Martin v. Löwis03824e42008-12-29 18:17:34 +00009323#ifdef NEED_TICKS_PER_SECOND
9324# if defined(HAVE_SYSCONF) && defined(_SC_CLK_TCK)
Victor Stinnerd6f85422010-05-05 23:33:33 +00009325 ticks_per_second = sysconf(_SC_CLK_TCK);
Martin v. Löwis03824e42008-12-29 18:17:34 +00009326# elif defined(HZ)
Victor Stinnerd6f85422010-05-05 23:33:33 +00009327 ticks_per_second = HZ;
Martin v. Löwis03824e42008-12-29 18:17:34 +00009328# else
Victor Stinnerd6f85422010-05-05 23:33:33 +00009329 ticks_per_second = 60; /* magic fallback value; may be bogus */
Martin v. Löwis03824e42008-12-29 18:17:34 +00009330# endif
9331#endif
Victor Stinnerd6f85422010-05-05 23:33:33 +00009332 }
9333 Py_INCREF((PyObject*) &StatResultType);
9334 PyModule_AddObject(m, "stat_result", (PyObject*) &StatResultType);
9335 Py_INCREF((PyObject*) &StatVFSResultType);
9336 PyModule_AddObject(m, "statvfs_result",
9337 (PyObject*) &StatVFSResultType);
9338 initialized = 1;
Ronald Oussorend06b6f22006-04-23 11:59:25 +00009339
9340#ifdef __APPLE__
Victor Stinnerd6f85422010-05-05 23:33:33 +00009341 /*
9342 * Step 2 of weak-linking support on Mac OS X.
9343 *
9344 * The code below removes functions that are not available on the
9345 * currently active platform.
9346 *
9347 * This block allow one to use a python binary that was build on
9348 * OSX 10.4 on OSX 10.3, without loosing access to new APIs on
9349 * OSX 10.4.
9350 */
Ronald Oussorend06b6f22006-04-23 11:59:25 +00009351#ifdef HAVE_FSTATVFS
Victor Stinnerd6f85422010-05-05 23:33:33 +00009352 if (fstatvfs == NULL) {
9353 if (PyObject_DelAttrString(m, "fstatvfs") == -1) {
9354 return;
9355 }
9356 }
Ronald Oussorend06b6f22006-04-23 11:59:25 +00009357#endif /* HAVE_FSTATVFS */
9358
9359#ifdef HAVE_STATVFS
Victor Stinnerd6f85422010-05-05 23:33:33 +00009360 if (statvfs == NULL) {
9361 if (PyObject_DelAttrString(m, "statvfs") == -1) {
9362 return;
9363 }
9364 }
Ronald Oussorend06b6f22006-04-23 11:59:25 +00009365#endif /* HAVE_STATVFS */
9366
9367# ifdef HAVE_LCHOWN
Victor Stinnerd6f85422010-05-05 23:33:33 +00009368 if (lchown == NULL) {
9369 if (PyObject_DelAttrString(m, "lchown") == -1) {
9370 return;
9371 }
9372 }
Ronald Oussorend06b6f22006-04-23 11:59:25 +00009373#endif /* HAVE_LCHOWN */
9374
9375
9376#endif /* __APPLE__ */
9377
Guido van Rossumb6775db1994-08-01 11:34:53 +00009378}
Anthony Baxterac6bd462006-04-13 02:06:09 +00009379
9380#ifdef __cplusplus
9381}
9382#endif
9383
Martin v. Löwis18aaa562006-10-15 08:43:33 +00009384