blob: 4f27cd1c6006e2e2385fbc5414e4b6875a60259e [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 /*
18 * Step 1 of support for weak-linking a number of symbols existing on
19 * OSX 10.4 and later, see the comment in the #ifdef __APPLE__ block
20 * at the end of this file for more information.
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
76#include <sys/wait.h> /* For WNOHANG */
77#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
Guido van Rossumc5a0f531997-12-02 20:36:02 +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
107#define HAVE_SYSTEM 1
108#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
114#ifdef __BORLANDC__ /* Borland compiler */
115#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
120#define HAVE_SYSTEM 1
121#define HAVE_WAIT 1
122#else
123#ifdef _MSC_VER /* Microsoft compiler */
Guido van Rossum8d665e61996-06-26 18:22:49 +0000124#define HAVE_GETCWD 1
Guido van Rossuma1065681999-01-25 23:20:23 +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
129#define HAVE_SYSTEM 1
Tim Petersab034fa2002-02-01 11:27:43 +0000130#define HAVE_CWAIT 1
Tim Peters11b23062003-04-23 02:39:17 +0000131#define HAVE_FSYNC 1
132#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 */
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000136#else /* all other compilers */
137/* Unix functions that the configure script doesn't check for */
138#define HAVE_EXECV 1
139#define HAVE_FORK 1
Guido van Rossum2242f2f2001-04-11 20:58:20 +0000140#if defined(__USLC__) && defined(__SCO_VERSION__) /* SCO UDK Compiler */
141#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
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000155#define HAVE_SYSTEM 1
156#define HAVE_WAIT 1
Guido van Rossumd371ff11999-01-25 16:12:23 +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"
Guido van Rossumb6775db1994-08-01 11:34:53 +0000272#include <windows.h>
Tim Petersee66d0c2002-07-15 16:10:55 +0000273#include <shellapi.h> /* for ShellExecute() */
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000274#define popen _popen
Guido van Rossum794d8131994-08-23 13:48:48 +0000275#define pclose _pclose
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000276#endif /* _MSC_VER */
Guido van Rossumb6775db1994-08-01 11:34:53 +0000277
Guido van Rossumd48f2521997-12-05 22:19:34 +0000278#if defined(PYCC_VACPP) && defined(PYOS_OS2)
Guido van Rossumb6775db1994-08-01 11:34:53 +0000279#include <io.h>
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +0000280#endif /* OS2 */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000281
Tim Petersbc2e10e2002-03-03 23:17:02 +0000282#ifndef MAXPATHLEN
Thomas Wouters1ddba602006-04-25 15:29:46 +0000283#if defined(PATH_MAX) && PATH_MAX > 1024
284#define MAXPATHLEN PATH_MAX
285#else
Tim Petersbc2e10e2002-03-03 23:17:02 +0000286#define MAXPATHLEN 1024
Thomas Wouters1ddba602006-04-25 15:29:46 +0000287#endif
Tim Petersbc2e10e2002-03-03 23:17:02 +0000288#endif /* MAXPATHLEN */
289
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000290#ifdef UNION_WAIT
291/* Emulate some macros on systems that have a union instead of macros */
292
293#ifndef WIFEXITED
294#define WIFEXITED(u_wait) (!(u_wait).w_termsig && !(u_wait).w_coredump)
295#endif
296
297#ifndef WEXITSTATUS
298#define WEXITSTATUS(u_wait) (WIFEXITED(u_wait)?((u_wait).w_retcode):-1)
299#endif
300
301#ifndef WTERMSIG
302#define WTERMSIG(u_wait) ((u_wait).w_termsig)
303#endif
304
Neal Norwitzd5a37542006-03-20 06:48:34 +0000305#define WAIT_TYPE union wait
306#define WAIT_STATUS_INT(s) (s.w_status)
307
308#else /* !UNION_WAIT */
309#define WAIT_TYPE int
310#define WAIT_STATUS_INT(s) (s)
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000311#endif /* UNION_WAIT */
312
Greg Wardb48bc172000-03-01 21:51:56 +0000313/* Don't use the "_r" form if we don't need it (also, won't have a
314 prototype for it, at least on Solaris -- maybe others as well?). */
315#if defined(HAVE_CTERMID_R) && defined(WITH_THREAD)
316#define USE_CTERMID_R
317#endif
318
319#if defined(HAVE_TMPNAM_R) && defined(WITH_THREAD)
320#define USE_TMPNAM_R
321#endif
322
Fred Drake699f3522000-06-29 21:12:41 +0000323/* choose the appropriate stat and fstat functions and return structs */
Guido van Rossum64529cd2000-06-30 22:45:12 +0000324#undef STAT
Martin v. Löwis6238d2b2002-06-30 15:26:10 +0000325#if defined(MS_WIN64) || defined(MS_WINDOWS)
Martin v. Löwis14694662006-02-03 12:54:16 +0000326# define STAT win32_stat
327# define FSTAT win32_fstat
328# define STRUCT_STAT struct win32_stat
Fred Drake699f3522000-06-29 21:12:41 +0000329#else
330# define STAT stat
331# define FSTAT fstat
332# define STRUCT_STAT struct stat
333#endif
334
Tim Peters11b23062003-04-23 02:39:17 +0000335#if defined(MAJOR_IN_MKDEV)
Martin v. Löwisdbe3f762002-10-10 14:27:30 +0000336#include <sys/mkdev.h>
337#else
338#if defined(MAJOR_IN_SYSMACROS)
339#include <sys/sysmacros.h>
340#endif
Neal Norwitz3d949422002-04-20 13:46:43 +0000341#if defined(HAVE_MKNOD) && defined(HAVE_SYS_MKDEV_H)
342#include <sys/mkdev.h>
343#endif
Martin v. Löwisdbe3f762002-10-10 14:27:30 +0000344#endif
Fred Drake699f3522000-06-29 21:12:41 +0000345
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +0000346#if defined _MSC_VER && _MSC_VER >= 1400
347/* Microsoft CRT in VS2005 and higher will verify that a filehandle is
348 * valid and throw an assertion if it isn't.
349 * Normally, an invalid fd is likely to be a C program error and therefore
350 * an assertion can be useful, but it does contradict the POSIX standard
351 * which for write(2) states:
352 * "Otherwise, -1 shall be returned and errno set to indicate the error."
353 * "[EBADF] The fildes argument is not a valid file descriptor open for
354 * writing."
355 * Furthermore, python allows the user to enter any old integer
356 * as a fd and should merely raise a python exception on error.
357 * The Microsoft CRT doesn't provide an official way to check for the
358 * validity of a file descriptor, but we can emulate its internal behaviour
359 * by using the exported __pinfo data member and knowledge of the
360 * internal structures involved.
361 * The structures below must be updated for each version of visual studio
362 * according to the file internal.h in the CRT source, until MS comes
363 * up with a less hacky way to do this.
364 * (all of this is to avoid globally modifying the CRT behaviour using
365 * _set_invalid_parameter_handler() and _CrtSetReportMode())
366 */
367#if _MSC_VER >= 1500 /* VS 2008 */
368typedef struct {
369 intptr_t osfhnd;
370 char osfile;
371 char pipech;
372 int lockinitflag;
373 CRITICAL_SECTION lock;
374#ifndef _SAFECRT_IMPL
375 char textmode : 7;
376 char unicode : 1;
377 char pipech2[2];
378 __int64 startpos;
379 BOOL utf8translations;
380 char dbcsBuffer;
381 BOOL dbcsBufferUsed;
382#endif /* _SAFECRT_IMPL */
383 } ioinfo;
384#elif _MSC_VER >= 1400 /* VS 2005 */
385typedef struct {
386 intptr_t osfhnd;
387 char osfile;
388 char pipech;
389 int lockinitflag;
390 CRITICAL_SECTION lock;
391#ifndef _SAFECRT_IMPL
392 char textmode : 7;
393 char unicode : 1;
394 char pipech2[2];
395 __int64 startpos;
396 BOOL utf8translations;
397#endif /* _SAFECRT_IMPL */
398 } ioinfo;
399#endif
400
401extern __declspec(dllimport) ioinfo * __pioinfo[];
402#define IOINFO_L2E 5
403#define IOINFO_ARRAY_ELTS (1 << IOINFO_L2E)
404#define IOINFO_ARRAYS 64
405#define _NHANDLE_ (IOINFO_ARRAYS * IOINFO_ARRAY_ELTS)
406#define FOPEN 0x01
407#define _NO_CONSOLE_FILENO (intptr_t)-2
408
409/* This function emulates what the windows CRT does to validate file handles */
410int
411_PyVerify_fd(int fd)
412{
413 const int i1 = fd >> IOINFO_L2E;
414 const int i2 = fd & ((1 << IOINFO_L2E) - 1);
415
416 /* See that it isn't a special CLEAR fileno */
417 if (fd != _NO_CONSOLE_FILENO) {
418 /* Microsoft CRT would check that 0<=fd<_nhandle but we can't do that. Instead
419 * we check pointer validity and other info
420 */
421 if (0 <= i1 && i1 < IOINFO_ARRAYS && __pioinfo[i1] != NULL) {
422 /* finally, check that the file is open */
423 if (__pioinfo[i1][i2].osfile & FOPEN)
424 return 1;
425 }
426 }
427 errno = EBADF;
428 return 0;
429}
430
431/* the special case of checking dup2. The target fd must be in a sensible range */
432static int
433_PyVerify_fd_dup2(int fd1, int fd2)
434{
435 if (!_PyVerify_fd(fd1))
436 return 0;
437 if (fd2 == _NO_CONSOLE_FILENO)
438 return 0;
439 if ((unsigned)fd2 < _NHANDLE_)
440 return 1;
441 else
442 return 0;
443}
444#else
445/* dummy version. _PyVerify_fd() is already defined in fileobject.h */
446#define _PyVerify_fd_dup2(A, B) (1)
447#endif
448
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000449/* Return a dictionary corresponding to the POSIX environment table */
Jack Jansenea0c3822002-08-01 21:57:49 +0000450#ifdef WITH_NEXT_FRAMEWORK
451/* On Darwin/MacOSX a shared library or framework has no access to
452** environ directly, we must obtain it with _NSGetEnviron().
453*/
454#include <crt_externs.h>
455static char **environ;
456#elif !defined(_MSC_VER) && ( !defined(__WATCOMC__) || defined(__QNX__) )
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000457extern char **environ;
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000458#endif /* !_MSC_VER */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000459
Barry Warsaw53699e91996-12-10 23:23:01 +0000460static PyObject *
Thomas Woutersf3f33dc2000-07-21 06:00:07 +0000461convertenviron(void)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000462{
Barry Warsaw53699e91996-12-10 23:23:01 +0000463 PyObject *d;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000464 char **e;
Barry Warsaw53699e91996-12-10 23:23:01 +0000465 d = PyDict_New();
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000466 if (d == NULL)
467 return NULL;
Jack Jansenea0c3822002-08-01 21:57:49 +0000468#ifdef WITH_NEXT_FRAMEWORK
469 if (environ == NULL)
470 environ = *_NSGetEnviron();
471#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000472 if (environ == NULL)
473 return d;
Guido van Rossum6a619f41999-08-03 19:41:10 +0000474 /* This part ignores errors */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000475 for (e = environ; *e != NULL; e++) {
Guido van Rossum6a619f41999-08-03 19:41:10 +0000476 PyObject *k;
Barry Warsaw53699e91996-12-10 23:23:01 +0000477 PyObject *v;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000478 char *p = strchr(*e, '=');
479 if (p == NULL)
480 continue;
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000481 k = PyString_FromStringAndSize(*e, (int)(p-*e));
Guido van Rossum6a619f41999-08-03 19:41:10 +0000482 if (k == NULL) {
483 PyErr_Clear();
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000484 continue;
Guido van Rossum6a619f41999-08-03 19:41:10 +0000485 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000486 v = PyString_FromString(p+1);
Guido van Rossum6a619f41999-08-03 19:41:10 +0000487 if (v == NULL) {
488 PyErr_Clear();
489 Py_DECREF(k);
490 continue;
491 }
492 if (PyDict_GetItem(d, k) == NULL) {
493 if (PyDict_SetItem(d, k, v) != 0)
494 PyErr_Clear();
495 }
496 Py_DECREF(k);
Barry Warsaw53699e91996-12-10 23:23:01 +0000497 Py_DECREF(v);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000498 }
Martin v. Löwisc16f3bd2003-05-03 09:14:54 +0000499#if defined(PYOS_OS2)
Guido van Rossumd48f2521997-12-05 22:19:34 +0000500 {
501 APIRET rc;
502 char buffer[1024]; /* OS/2 Provides a Documented Max of 1024 Chars */
503
504 rc = DosQueryExtLIBPATH(buffer, BEGIN_LIBPATH);
Fredrik Lundhff7df9d2000-07-08 22:48:53 +0000505 if (rc == NO_ERROR) { /* (not a type, envname is NOT 'BEGIN_LIBPATH') */
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000506 PyObject *v = PyString_FromString(buffer);
Guido van Rossumd48f2521997-12-05 22:19:34 +0000507 PyDict_SetItemString(d, "BEGINLIBPATH", v);
508 Py_DECREF(v);
509 }
510 rc = DosQueryExtLIBPATH(buffer, END_LIBPATH);
511 if (rc == NO_ERROR) { /* (not a typo, envname is NOT 'END_LIBPATH') */
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000512 PyObject *v = PyString_FromString(buffer);
Guido van Rossumd48f2521997-12-05 22:19:34 +0000513 PyDict_SetItemString(d, "ENDLIBPATH", v);
514 Py_DECREF(v);
515 }
516 }
517#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000518 return d;
519}
520
521
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000522/* Set a POSIX-specific error from errno, and return NULL */
523
Barry Warsawd58d7641998-07-23 16:14:40 +0000524static PyObject *
Thomas Woutersf3f33dc2000-07-21 06:00:07 +0000525posix_error(void)
Guido van Rossumad0ee831995-03-01 10:34:45 +0000526{
Barry Warsawca74da41999-02-09 19:31:45 +0000527 return PyErr_SetFromErrno(PyExc_OSError);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000528}
Barry Warsawd58d7641998-07-23 16:14:40 +0000529static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +0000530posix_error_with_filename(char* name)
Barry Warsawd58d7641998-07-23 16:14:40 +0000531{
Barry Warsawca74da41999-02-09 19:31:45 +0000532 return PyErr_SetFromErrnoWithFilename(PyExc_OSError, name);
Barry Warsawd58d7641998-07-23 16:14:40 +0000533}
534
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000535#ifdef Py_WIN_WIDE_FILENAMES
536static PyObject *
537posix_error_with_unicode_filename(Py_UNICODE* name)
538{
539 return PyErr_SetFromErrnoWithUnicodeFilename(PyExc_OSError, name);
540}
541#endif /* Py_WIN_WIDE_FILENAMES */
542
543
Mark Hammondef8b6542001-05-13 08:04:26 +0000544static PyObject *
545posix_error_with_allocated_filename(char* name)
546{
547 PyObject *rc = PyErr_SetFromErrnoWithFilename(PyExc_OSError, name);
548 PyMem_Free(name);
549 return rc;
550}
551
Martin v. Löwis6238d2b2002-06-30 15:26:10 +0000552#ifdef MS_WINDOWS
Fredrik Lundhffb9c772000-07-09 14:49:51 +0000553static PyObject *
554win32_error(char* function, char* filename)
555{
Mark Hammond33a6da92000-08-15 00:46:38 +0000556 /* XXX We should pass the function name along in the future.
557 (_winreg.c also wants to pass the function name.)
Tim Peters5aa91602002-01-30 05:46:57 +0000558 This would however require an additional param to the
Mark Hammond33a6da92000-08-15 00:46:38 +0000559 Windows error object, which is non-trivial.
560 */
Fredrik Lundhffb9c772000-07-09 14:49:51 +0000561 errno = GetLastError();
562 if (filename)
Mark Hammond33a6da92000-08-15 00:46:38 +0000563 return PyErr_SetFromWindowsErrWithFilename(errno, filename);
Fredrik Lundhffb9c772000-07-09 14:49:51 +0000564 else
Mark Hammond33a6da92000-08-15 00:46:38 +0000565 return PyErr_SetFromWindowsErr(errno);
Fredrik Lundhffb9c772000-07-09 14:49:51 +0000566}
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000567
568#ifdef Py_WIN_WIDE_FILENAMES
569static PyObject *
570win32_error_unicode(char* function, Py_UNICODE* filename)
571{
572 /* XXX - see win32_error for comments on 'function' */
573 errno = GetLastError();
574 if (filename)
575 return PyErr_SetFromWindowsErrWithUnicodeFilename(errno, filename);
576 else
577 return PyErr_SetFromWindowsErr(errno);
578}
579
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000580static int
Hirokazu Yamamotoa0fdd722008-08-17 09:19:52 +0000581convert_to_unicode(PyObject **param)
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000582{
Hirokazu Yamamotoa0fdd722008-08-17 09:19:52 +0000583 if (PyUnicode_CheckExact(*param))
584 Py_INCREF(*param);
585 else if (PyUnicode_Check(*param))
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000586 /* For a Unicode subtype that's not a Unicode object,
587 return a true Unicode object with the same data. */
Hirokazu Yamamotoa0fdd722008-08-17 09:19:52 +0000588 *param = PyUnicode_FromUnicode(PyUnicode_AS_UNICODE(*param),
589 PyUnicode_GET_SIZE(*param));
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000590 else
Hirokazu Yamamotoa0fdd722008-08-17 09:19:52 +0000591 *param = PyUnicode_FromEncodedObject(*param,
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000592 Py_FileSystemDefaultEncoding,
593 "strict");
594 return (*param) != NULL;
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000595}
596
597#endif /* Py_WIN_WIDE_FILENAMES */
598
Fredrik Lundhffb9c772000-07-09 14:49:51 +0000599#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000600
Guido van Rossumd48f2521997-12-05 22:19:34 +0000601#if defined(PYOS_OS2)
602/**********************************************************************
603 * Helper Function to Trim and Format OS/2 Messages
604 **********************************************************************/
605 static void
606os2_formatmsg(char *msgbuf, int msglen, char *reason)
607{
608 msgbuf[msglen] = '\0'; /* OS/2 Doesn't Guarantee a Terminator */
609
610 if (strlen(msgbuf) > 0) { /* If Non-Empty Msg, Trim CRLF */
611 char *lastc = &msgbuf[ strlen(msgbuf)-1 ];
612
Neal Norwitz30b5c5d2005-12-19 06:05:18 +0000613 while (lastc > msgbuf && isspace(Py_CHARMASK(*lastc)))
Guido van Rossumd48f2521997-12-05 22:19:34 +0000614 *lastc-- = '\0'; /* Trim Trailing Whitespace (CRLF) */
615 }
616
617 /* Add Optional Reason Text */
618 if (reason) {
619 strcat(msgbuf, " : ");
620 strcat(msgbuf, reason);
621 }
622}
623
624/**********************************************************************
625 * Decode an OS/2 Operating System Error Code
626 *
627 * A convenience function to lookup an OS/2 error code and return a
628 * text message we can use to raise a Python exception.
629 *
630 * Notes:
631 * The messages for errors returned from the OS/2 kernel reside in
632 * the file OSO001.MSG in the \OS2 directory hierarchy.
633 *
634 **********************************************************************/
635 static char *
636os2_strerror(char *msgbuf, int msgbuflen, int errorcode, char *reason)
637{
638 APIRET rc;
639 ULONG msglen;
640
641 /* Retrieve Kernel-Related Error Message from OSO001.MSG File */
642 Py_BEGIN_ALLOW_THREADS
643 rc = DosGetMessage(NULL, 0, msgbuf, msgbuflen,
644 errorcode, "oso001.msg", &msglen);
645 Py_END_ALLOW_THREADS
646
647 if (rc == NO_ERROR)
648 os2_formatmsg(msgbuf, msglen, reason);
649 else
Tim Peters1ceb5fb2001-11-28 20:32:57 +0000650 PyOS_snprintf(msgbuf, msgbuflen,
Tim Peters885d4572001-11-28 20:27:42 +0000651 "unknown OS error #%d", errorcode);
Guido van Rossumd48f2521997-12-05 22:19:34 +0000652
653 return msgbuf;
654}
655
656/* Set an OS/2-specific error and return NULL. OS/2 kernel
657 errors are not in a global variable e.g. 'errno' nor are
658 they congruent with posix error numbers. */
659
660static PyObject * os2_error(int code)
661{
662 char text[1024];
663 PyObject *v;
664
665 os2_strerror(text, sizeof(text), code, "");
666
667 v = Py_BuildValue("(is)", code, text);
668 if (v != NULL) {
Barry Warsawca74da41999-02-09 19:31:45 +0000669 PyErr_SetObject(PyExc_OSError, v);
Guido van Rossumd48f2521997-12-05 22:19:34 +0000670 Py_DECREF(v);
671 }
672 return NULL; /* Signal to Python that an Exception is Pending */
673}
674
675#endif /* OS2 */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000676
677/* POSIX generic methods */
678
Barry Warsaw53699e91996-12-10 23:23:01 +0000679static PyObject *
Fred Drake4d1e64b2002-04-15 19:40:07 +0000680posix_fildes(PyObject *fdobj, int (*func)(int))
681{
682 int fd;
683 int res;
684 fd = PyObject_AsFileDescriptor(fdobj);
685 if (fd < 0)
686 return NULL;
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +0000687 if (!_PyVerify_fd(fd))
688 return posix_error();
Fred Drake4d1e64b2002-04-15 19:40:07 +0000689 Py_BEGIN_ALLOW_THREADS
690 res = (*func)(fd);
691 Py_END_ALLOW_THREADS
692 if (res < 0)
693 return posix_error();
694 Py_INCREF(Py_None);
695 return Py_None;
696}
Guido van Rossum21142a01999-01-08 21:05:37 +0000697
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000698#ifdef Py_WIN_WIDE_FILENAMES
Tim Peters11b23062003-04-23 02:39:17 +0000699static int
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000700unicode_file_names(void)
701{
702 static int canusewide = -1;
703 if (canusewide == -1) {
Tim Peters11b23062003-04-23 02:39:17 +0000704 /* As per doc for ::GetVersion(), this is the correct test for
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000705 the Windows NT family. */
706 canusewide = (GetVersion() < 0x80000000) ? 1 : 0;
707 }
708 return canusewide;
709}
710#endif
Tim Peters11b23062003-04-23 02:39:17 +0000711
Guido van Rossum21142a01999-01-08 21:05:37 +0000712static PyObject *
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000713posix_1str(PyObject *args, char *format, int (*func)(const char*))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000714{
Mark Hammondef8b6542001-05-13 08:04:26 +0000715 char *path1 = NULL;
Guido van Rossumff4949e1992-08-05 19:58:53 +0000716 int res;
Tim Peters5aa91602002-01-30 05:46:57 +0000717 if (!PyArg_ParseTuple(args, format,
Mark Hammondef8b6542001-05-13 08:04:26 +0000718 Py_FileSystemDefaultEncoding, &path1))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000719 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +0000720 Py_BEGIN_ALLOW_THREADS
Guido van Rossumff4949e1992-08-05 19:58:53 +0000721 res = (*func)(path1);
Barry Warsaw53699e91996-12-10 23:23:01 +0000722 Py_END_ALLOW_THREADS
Guido van Rossumff4949e1992-08-05 19:58:53 +0000723 if (res < 0)
Mark Hammondef8b6542001-05-13 08:04:26 +0000724 return posix_error_with_allocated_filename(path1);
725 PyMem_Free(path1);
Barry Warsaw53699e91996-12-10 23:23:01 +0000726 Py_INCREF(Py_None);
727 return Py_None;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000728}
729
Barry Warsaw53699e91996-12-10 23:23:01 +0000730static PyObject *
Tim Peters11b23062003-04-23 02:39:17 +0000731posix_2str(PyObject *args,
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000732 char *format,
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000733 int (*func)(const char *, const char *))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000734{
Mark Hammondef8b6542001-05-13 08:04:26 +0000735 char *path1 = NULL, *path2 = NULL;
Guido van Rossumff4949e1992-08-05 19:58:53 +0000736 int res;
Mark Hammondef8b6542001-05-13 08:04:26 +0000737 if (!PyArg_ParseTuple(args, format,
Tim Peters5aa91602002-01-30 05:46:57 +0000738 Py_FileSystemDefaultEncoding, &path1,
Mark Hammondef8b6542001-05-13 08:04:26 +0000739 Py_FileSystemDefaultEncoding, &path2))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000740 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +0000741 Py_BEGIN_ALLOW_THREADS
Guido van Rossumff4949e1992-08-05 19:58:53 +0000742 res = (*func)(path1, path2);
Barry Warsaw53699e91996-12-10 23:23:01 +0000743 Py_END_ALLOW_THREADS
Mark Hammondef8b6542001-05-13 08:04:26 +0000744 PyMem_Free(path1);
745 PyMem_Free(path2);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000746 if (res != 0)
Barry Warsawd58d7641998-07-23 16:14:40 +0000747 /* XXX how to report both path1 and path2??? */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000748 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +0000749 Py_INCREF(Py_None);
750 return Py_None;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000751}
752
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000753#ifdef Py_WIN_WIDE_FILENAMES
754static PyObject*
755win32_1str(PyObject* args, char* func,
756 char* format, BOOL (__stdcall *funcA)(LPCSTR),
757 char* wformat, BOOL (__stdcall *funcW)(LPWSTR))
758{
759 PyObject *uni;
760 char *ansi;
761 BOOL result;
762 if (unicode_file_names()) {
763 if (!PyArg_ParseTuple(args, wformat, &uni))
764 PyErr_Clear();
765 else {
766 Py_BEGIN_ALLOW_THREADS
767 result = funcW(PyUnicode_AsUnicode(uni));
768 Py_END_ALLOW_THREADS
769 if (!result)
770 return win32_error_unicode(func, PyUnicode_AsUnicode(uni));
771 Py_INCREF(Py_None);
772 return Py_None;
773 }
774 }
775 if (!PyArg_ParseTuple(args, format, &ansi))
776 return NULL;
777 Py_BEGIN_ALLOW_THREADS
778 result = funcA(ansi);
779 Py_END_ALLOW_THREADS
780 if (!result)
781 return win32_error(func, ansi);
782 Py_INCREF(Py_None);
783 return Py_None;
784
785}
786
787/* This is a reimplementation of the C library's chdir function,
788 but one that produces Win32 errors instead of DOS error codes.
789 chdir is essentially a wrapper around SetCurrentDirectory; however,
790 it also needs to set "magic" environment variables indicating
791 the per-drive current directory, which are of the form =<drive>: */
Hirokazu Yamamoto61376402008-10-16 06:25:25 +0000792static BOOL __stdcall
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000793win32_chdir(LPCSTR path)
794{
795 char new_path[MAX_PATH+1];
796 int result;
797 char env[4] = "=x:";
798
799 if(!SetCurrentDirectoryA(path))
800 return FALSE;
801 result = GetCurrentDirectoryA(MAX_PATH+1, new_path);
802 if (!result)
803 return FALSE;
804 /* In the ANSI API, there should not be any paths longer
805 than MAX_PATH. */
806 assert(result <= MAX_PATH+1);
807 if (strncmp(new_path, "\\\\", 2) == 0 ||
808 strncmp(new_path, "//", 2) == 0)
809 /* UNC path, nothing to do. */
810 return TRUE;
811 env[1] = new_path[0];
812 return SetEnvironmentVariableA(env, new_path);
813}
814
815/* The Unicode version differs from the ANSI version
816 since the current directory might exceed MAX_PATH characters */
Hirokazu Yamamoto61376402008-10-16 06:25:25 +0000817static BOOL __stdcall
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000818win32_wchdir(LPCWSTR path)
819{
820 wchar_t _new_path[MAX_PATH+1], *new_path = _new_path;
821 int result;
822 wchar_t env[4] = L"=x:";
823
824 if(!SetCurrentDirectoryW(path))
825 return FALSE;
826 result = GetCurrentDirectoryW(MAX_PATH+1, new_path);
827 if (!result)
828 return FALSE;
829 if (result > MAX_PATH+1) {
Hirokazu Yamamoto10a018c2008-10-09 10:00:30 +0000830 new_path = malloc(result * sizeof(wchar_t));
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000831 if (!new_path) {
832 SetLastError(ERROR_OUTOFMEMORY);
833 return FALSE;
834 }
Hirokazu Yamamoto10a018c2008-10-09 10:00:30 +0000835 result = GetCurrentDirectoryW(result, new_path);
Hirokazu Yamamoto6c75a302008-10-09 10:11:21 +0000836 if (!result) {
837 free(new_path);
Hirokazu Yamamoto10a018c2008-10-09 10:00:30 +0000838 return FALSE;
Hirokazu Yamamoto6c75a302008-10-09 10:11:21 +0000839 }
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000840 }
841 if (wcsncmp(new_path, L"\\\\", 2) == 0 ||
842 wcsncmp(new_path, L"//", 2) == 0)
843 /* UNC path, nothing to do. */
844 return TRUE;
845 env[1] = new_path[0];
846 result = SetEnvironmentVariableW(env, new_path);
847 if (new_path != _new_path)
848 free(new_path);
849 return result;
850}
851#endif
852
Martin v. Löwis14694662006-02-03 12:54:16 +0000853#ifdef MS_WINDOWS
854/* The CRT of Windows has a number of flaws wrt. its stat() implementation:
855 - time stamps are restricted to second resolution
856 - file modification times suffer from forth-and-back conversions between
857 UTC and local time
858 Therefore, we implement our own stat, based on the Win32 API directly.
859*/
860#define HAVE_STAT_NSEC 1
861
862struct win32_stat{
863 int st_dev;
864 __int64 st_ino;
865 unsigned short st_mode;
866 int st_nlink;
867 int st_uid;
868 int st_gid;
869 int st_rdev;
870 __int64 st_size;
871 int st_atime;
872 int st_atime_nsec;
873 int st_mtime;
874 int st_mtime_nsec;
875 int st_ctime;
876 int st_ctime_nsec;
877};
878
879static __int64 secs_between_epochs = 11644473600; /* Seconds between 1.1.1601 and 1.1.1970 */
880
881static void
882FILE_TIME_to_time_t_nsec(FILETIME *in_ptr, int *time_out, int* nsec_out)
883{
Martin v. Löwis77c176d2006-05-12 17:22:04 +0000884 /* XXX endianness. Shouldn't matter, as all Windows implementations are little-endian */
885 /* Cannot simply cast and dereference in_ptr,
886 since it might not be aligned properly */
887 __int64 in;
888 memcpy(&in, in_ptr, sizeof(in));
Martin v. Löwis14694662006-02-03 12:54:16 +0000889 *nsec_out = (int)(in % 10000000) * 100; /* FILETIME is in units of 100 nsec. */
890 /* XXX Win32 supports time stamps past 2038; we currently don't */
891 *time_out = Py_SAFE_DOWNCAST((in / 10000000) - secs_between_epochs, __int64, int);
892}
893
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +0000894static void
895time_t_to_FILE_TIME(int time_in, int nsec_in, FILETIME *out_ptr)
896{
897 /* XXX endianness */
898 __int64 out;
899 out = time_in + secs_between_epochs;
Martin v. Löwisf43893a2006-10-09 20:44:25 +0000900 out = out * 10000000 + nsec_in / 100;
Martin v. Löwis77c176d2006-05-12 17:22:04 +0000901 memcpy(out_ptr, &out, sizeof(out));
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +0000902}
903
Martin v. Löwis14694662006-02-03 12:54:16 +0000904/* Below, we *know* that ugo+r is 0444 */
905#if _S_IREAD != 0400
906#error Unsupported C library
907#endif
908static int
909attributes_to_mode(DWORD attr)
910{
911 int m = 0;
912 if (attr & FILE_ATTRIBUTE_DIRECTORY)
913 m |= _S_IFDIR | 0111; /* IFEXEC for user,group,other */
914 else
915 m |= _S_IFREG;
916 if (attr & FILE_ATTRIBUTE_READONLY)
917 m |= 0444;
918 else
919 m |= 0666;
920 return m;
921}
922
923static int
924attribute_data_to_stat(WIN32_FILE_ATTRIBUTE_DATA *info, struct win32_stat *result)
925{
926 memset(result, 0, sizeof(*result));
927 result->st_mode = attributes_to_mode(info->dwFileAttributes);
928 result->st_size = (((__int64)info->nFileSizeHigh)<<32) + info->nFileSizeLow;
929 FILE_TIME_to_time_t_nsec(&info->ftCreationTime, &result->st_ctime, &result->st_ctime_nsec);
930 FILE_TIME_to_time_t_nsec(&info->ftLastWriteTime, &result->st_mtime, &result->st_mtime_nsec);
931 FILE_TIME_to_time_t_nsec(&info->ftLastAccessTime, &result->st_atime, &result->st_atime_nsec);
932
933 return 0;
934}
935
Martin v. Löwis012bc722006-10-15 09:43:39 +0000936/* Emulate GetFileAttributesEx[AW] on Windows 95 */
937static int checked = 0;
938static BOOL (CALLBACK *gfaxa)(LPCSTR, GET_FILEEX_INFO_LEVELS, LPVOID);
939static BOOL (CALLBACK *gfaxw)(LPCWSTR, GET_FILEEX_INFO_LEVELS, LPVOID);
940static void
941check_gfax()
942{
943 HINSTANCE hKernel32;
944 if (checked)
945 return;
946 checked = 1;
947 hKernel32 = GetModuleHandle("KERNEL32");
948 *(FARPROC*)&gfaxa = GetProcAddress(hKernel32, "GetFileAttributesExA");
949 *(FARPROC*)&gfaxw = GetProcAddress(hKernel32, "GetFileAttributesExW");
950}
951
Martin v. Löwis3bf573f2007-04-04 18:30:36 +0000952static BOOL
953attributes_from_dir(LPCSTR pszFile, LPWIN32_FILE_ATTRIBUTE_DATA pfad)
954{
955 HANDLE hFindFile;
956 WIN32_FIND_DATAA FileData;
957 hFindFile = FindFirstFileA(pszFile, &FileData);
958 if (hFindFile == INVALID_HANDLE_VALUE)
959 return FALSE;
960 FindClose(hFindFile);
961 pfad->dwFileAttributes = FileData.dwFileAttributes;
962 pfad->ftCreationTime = FileData.ftCreationTime;
963 pfad->ftLastAccessTime = FileData.ftLastAccessTime;
964 pfad->ftLastWriteTime = FileData.ftLastWriteTime;
965 pfad->nFileSizeHigh = FileData.nFileSizeHigh;
966 pfad->nFileSizeLow = FileData.nFileSizeLow;
967 return TRUE;
968}
969
970static BOOL
971attributes_from_dir_w(LPCWSTR pszFile, LPWIN32_FILE_ATTRIBUTE_DATA pfad)
972{
973 HANDLE hFindFile;
974 WIN32_FIND_DATAW FileData;
975 hFindFile = FindFirstFileW(pszFile, &FileData);
976 if (hFindFile == INVALID_HANDLE_VALUE)
977 return FALSE;
978 FindClose(hFindFile);
979 pfad->dwFileAttributes = FileData.dwFileAttributes;
980 pfad->ftCreationTime = FileData.ftCreationTime;
981 pfad->ftLastAccessTime = FileData.ftLastAccessTime;
982 pfad->ftLastWriteTime = FileData.ftLastWriteTime;
983 pfad->nFileSizeHigh = FileData.nFileSizeHigh;
984 pfad->nFileSizeLow = FileData.nFileSizeLow;
985 return TRUE;
986}
987
Martin v. Löwis012bc722006-10-15 09:43:39 +0000988static BOOL WINAPI
989Py_GetFileAttributesExA(LPCSTR pszFile,
990 GET_FILEEX_INFO_LEVELS level,
991 LPVOID pv)
992{
993 BOOL result;
Martin v. Löwis012bc722006-10-15 09:43:39 +0000994 LPWIN32_FILE_ATTRIBUTE_DATA pfad = pv;
995 /* First try to use the system's implementation, if that is
996 available and either succeeds to gives an error other than
997 that it isn't implemented. */
998 check_gfax();
999 if (gfaxa) {
1000 result = gfaxa(pszFile, level, pv);
1001 if (result || GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
1002 return result;
1003 }
1004 /* It's either not present, or not implemented.
1005 Emulate using FindFirstFile. */
1006 if (level != GetFileExInfoStandard) {
1007 SetLastError(ERROR_INVALID_PARAMETER);
1008 return FALSE;
1009 }
1010 /* Use GetFileAttributes to validate that the file name
1011 does not contain wildcards (which FindFirstFile would
1012 accept). */
1013 if (GetFileAttributesA(pszFile) == 0xFFFFFFFF)
1014 return FALSE;
Martin v. Löwis3bf573f2007-04-04 18:30:36 +00001015 return attributes_from_dir(pszFile, pfad);
Martin v. Löwis012bc722006-10-15 09:43:39 +00001016}
1017
1018static BOOL WINAPI
1019Py_GetFileAttributesExW(LPCWSTR pszFile,
1020 GET_FILEEX_INFO_LEVELS level,
1021 LPVOID pv)
1022{
1023 BOOL result;
Martin v. Löwis012bc722006-10-15 09:43:39 +00001024 LPWIN32_FILE_ATTRIBUTE_DATA pfad = pv;
1025 /* First try to use the system's implementation, if that is
1026 available and either succeeds to gives an error other than
1027 that it isn't implemented. */
1028 check_gfax();
1029 if (gfaxa) {
1030 result = gfaxw(pszFile, level, pv);
1031 if (result || GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
1032 return result;
1033 }
1034 /* It's either not present, or not implemented.
1035 Emulate using FindFirstFile. */
1036 if (level != GetFileExInfoStandard) {
1037 SetLastError(ERROR_INVALID_PARAMETER);
1038 return FALSE;
1039 }
1040 /* Use GetFileAttributes to validate that the file name
1041 does not contain wildcards (which FindFirstFile would
1042 accept). */
1043 if (GetFileAttributesW(pszFile) == 0xFFFFFFFF)
1044 return FALSE;
Martin v. Löwis3bf573f2007-04-04 18:30:36 +00001045 return attributes_from_dir_w(pszFile, pfad);
Martin v. Löwis012bc722006-10-15 09:43:39 +00001046}
1047
Martin v. Löwis14694662006-02-03 12:54:16 +00001048static int
1049win32_stat(const char* path, struct win32_stat *result)
1050{
1051 WIN32_FILE_ATTRIBUTE_DATA info;
1052 int code;
1053 char *dot;
1054 /* XXX not supported on Win95 and NT 3.x */
Martin v. Löwis012bc722006-10-15 09:43:39 +00001055 if (!Py_GetFileAttributesExA(path, GetFileExInfoStandard, &info)) {
Martin v. Löwis3bf573f2007-04-04 18:30:36 +00001056 if (GetLastError() != ERROR_SHARING_VIOLATION) {
1057 /* Protocol violation: we explicitly clear errno, instead of
1058 setting it to a POSIX error. Callers should use GetLastError. */
1059 errno = 0;
1060 return -1;
1061 } else {
1062 /* Could not get attributes on open file. Fall back to
1063 reading the directory. */
1064 if (!attributes_from_dir(path, &info)) {
1065 /* Very strange. This should not fail now */
1066 errno = 0;
1067 return -1;
1068 }
1069 }
Martin v. Löwis14694662006-02-03 12:54:16 +00001070 }
1071 code = attribute_data_to_stat(&info, result);
1072 if (code != 0)
1073 return code;
1074 /* Set S_IFEXEC if it is an .exe, .bat, ... */
1075 dot = strrchr(path, '.');
1076 if (dot) {
1077 if (stricmp(dot, ".bat") == 0 ||
1078 stricmp(dot, ".cmd") == 0 ||
1079 stricmp(dot, ".exe") == 0 ||
1080 stricmp(dot, ".com") == 0)
1081 result->st_mode |= 0111;
1082 }
1083 return code;
1084}
1085
1086static int
1087win32_wstat(const wchar_t* path, struct win32_stat *result)
1088{
1089 int code;
1090 const wchar_t *dot;
1091 WIN32_FILE_ATTRIBUTE_DATA info;
1092 /* XXX not supported on Win95 and NT 3.x */
Martin v. Löwis012bc722006-10-15 09:43:39 +00001093 if (!Py_GetFileAttributesExW(path, GetFileExInfoStandard, &info)) {
Martin v. Löwis3bf573f2007-04-04 18:30:36 +00001094 if (GetLastError() != ERROR_SHARING_VIOLATION) {
1095 /* Protocol violation: we explicitly clear errno, instead of
1096 setting it to a POSIX error. Callers should use GetLastError. */
1097 errno = 0;
1098 return -1;
1099 } else {
1100 /* Could not get attributes on open file. Fall back to
1101 reading the directory. */
1102 if (!attributes_from_dir_w(path, &info)) {
1103 /* Very strange. This should not fail now */
1104 errno = 0;
1105 return -1;
1106 }
1107 }
Martin v. Löwis14694662006-02-03 12:54:16 +00001108 }
1109 code = attribute_data_to_stat(&info, result);
1110 if (code < 0)
1111 return code;
1112 /* Set IFEXEC if it is an .exe, .bat, ... */
1113 dot = wcsrchr(path, '.');
1114 if (dot) {
1115 if (_wcsicmp(dot, L".bat") == 0 ||
1116 _wcsicmp(dot, L".cmd") == 0 ||
1117 _wcsicmp(dot, L".exe") == 0 ||
1118 _wcsicmp(dot, L".com") == 0)
1119 result->st_mode |= 0111;
1120 }
1121 return code;
1122}
1123
1124static int
1125win32_fstat(int file_number, struct win32_stat *result)
1126{
1127 BY_HANDLE_FILE_INFORMATION info;
1128 HANDLE h;
1129 int type;
1130
1131 h = (HANDLE)_get_osfhandle(file_number);
1132
1133 /* Protocol violation: we explicitly clear errno, instead of
1134 setting it to a POSIX error. Callers should use GetLastError. */
1135 errno = 0;
1136
1137 if (h == INVALID_HANDLE_VALUE) {
1138 /* This is really a C library error (invalid file handle).
1139 We set the Win32 error to the closes one matching. */
1140 SetLastError(ERROR_INVALID_HANDLE);
1141 return -1;
1142 }
1143 memset(result, 0, sizeof(*result));
1144
1145 type = GetFileType(h);
1146 if (type == FILE_TYPE_UNKNOWN) {
1147 DWORD error = GetLastError();
1148 if (error != 0) {
1149 return -1;
1150 }
1151 /* else: valid but unknown file */
1152 }
1153
1154 if (type != FILE_TYPE_DISK) {
1155 if (type == FILE_TYPE_CHAR)
1156 result->st_mode = _S_IFCHR;
1157 else if (type == FILE_TYPE_PIPE)
1158 result->st_mode = _S_IFIFO;
1159 return 0;
1160 }
1161
1162 if (!GetFileInformationByHandle(h, &info)) {
1163 return -1;
1164 }
1165
1166 /* similar to stat() */
1167 result->st_mode = attributes_to_mode(info.dwFileAttributes);
1168 result->st_size = (((__int64)info.nFileSizeHigh)<<32) + info.nFileSizeLow;
1169 FILE_TIME_to_time_t_nsec(&info.ftCreationTime, &result->st_ctime, &result->st_ctime_nsec);
1170 FILE_TIME_to_time_t_nsec(&info.ftLastWriteTime, &result->st_mtime, &result->st_mtime_nsec);
1171 FILE_TIME_to_time_t_nsec(&info.ftLastAccessTime, &result->st_atime, &result->st_atime_nsec);
1172 /* specific to fstat() */
1173 result->st_nlink = info.nNumberOfLinks;
1174 result->st_ino = (((__int64)info.nFileIndexHigh)<<32) + info.nFileIndexLow;
1175 return 0;
1176}
1177
1178#endif /* MS_WINDOWS */
1179
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001180PyDoc_STRVAR(stat_result__doc__,
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001181"stat_result: Result from stat or lstat.\n\n\
1182This object may be accessed either as a tuple of\n\
Fred Drakef7ce04d2002-06-20 18:31:21 +00001183 (mode, ino, dev, nlink, uid, gid, size, atime, mtime, ctime)\n\
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001184or via the attributes st_mode, st_ino, st_dev, st_nlink, st_uid, and so on.\n\
1185\n\
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001186Posix/windows: If your platform supports st_blksize, st_blocks, st_rdev,\n\
1187or st_flags, they are available as attributes only.\n\
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001188\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001189See os.stat for more information.");
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001190
1191static PyStructSequence_Field stat_result_fields[] = {
1192 {"st_mode", "protection bits"},
1193 {"st_ino", "inode"},
1194 {"st_dev", "device"},
1195 {"st_nlink", "number of hard links"},
1196 {"st_uid", "user ID of owner"},
1197 {"st_gid", "group ID of owner"},
1198 {"st_size", "total size, in bytes"},
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001199 /* The NULL is replaced with PyStructSequence_UnnamedField later. */
1200 {NULL, "integer time of last access"},
1201 {NULL, "integer time of last modification"},
1202 {NULL, "integer time of last change"},
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001203 {"st_atime", "time of last access"},
1204 {"st_mtime", "time of last modification"},
1205 {"st_ctime", "time of last change"},
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001206#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001207 {"st_blksize", "blocksize for filesystem I/O"},
1208#endif
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001209#ifdef HAVE_STRUCT_STAT_ST_BLOCKS
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001210 {"st_blocks", "number of blocks allocated"},
1211#endif
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001212#ifdef HAVE_STRUCT_STAT_ST_RDEV
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001213 {"st_rdev", "device type (if inode device)"},
1214#endif
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001215#ifdef HAVE_STRUCT_STAT_ST_FLAGS
1216 {"st_flags", "user defined flags for file"},
1217#endif
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001218#ifdef HAVE_STRUCT_STAT_ST_GEN
1219 {"st_gen", "generation number"},
1220#endif
1221#ifdef HAVE_STRUCT_STAT_ST_BIRTHTIME
1222 {"st_birthtime", "time of creation"},
1223#endif
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001224 {0}
1225};
1226
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001227#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001228#define ST_BLKSIZE_IDX 13
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001229#else
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001230#define ST_BLKSIZE_IDX 12
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001231#endif
1232
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001233#ifdef HAVE_STRUCT_STAT_ST_BLOCKS
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001234#define ST_BLOCKS_IDX (ST_BLKSIZE_IDX+1)
1235#else
1236#define ST_BLOCKS_IDX ST_BLKSIZE_IDX
1237#endif
1238
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001239#ifdef HAVE_STRUCT_STAT_ST_RDEV
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001240#define ST_RDEV_IDX (ST_BLOCKS_IDX+1)
1241#else
1242#define ST_RDEV_IDX ST_BLOCKS_IDX
1243#endif
1244
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001245#ifdef HAVE_STRUCT_STAT_ST_FLAGS
1246#define ST_FLAGS_IDX (ST_RDEV_IDX+1)
1247#else
1248#define ST_FLAGS_IDX ST_RDEV_IDX
1249#endif
1250
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001251#ifdef HAVE_STRUCT_STAT_ST_GEN
Martin v. Löwisf09582e2005-08-14 21:42:34 +00001252#define ST_GEN_IDX (ST_FLAGS_IDX+1)
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001253#else
Martin v. Löwisf09582e2005-08-14 21:42:34 +00001254#define ST_GEN_IDX ST_FLAGS_IDX
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001255#endif
1256
1257#ifdef HAVE_STRUCT_STAT_ST_BIRTHTIME
1258#define ST_BIRTHTIME_IDX (ST_GEN_IDX+1)
1259#else
1260#define ST_BIRTHTIME_IDX ST_GEN_IDX
1261#endif
1262
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001263static PyStructSequence_Desc stat_result_desc = {
1264 "stat_result", /* name */
1265 stat_result__doc__, /* doc */
1266 stat_result_fields,
1267 10
1268};
1269
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001270PyDoc_STRVAR(statvfs_result__doc__,
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001271"statvfs_result: Result from statvfs or fstatvfs.\n\n\
1272This object may be accessed either as a tuple of\n\
Fred Drakef7ce04d2002-06-20 18:31:21 +00001273 (bsize, frsize, blocks, bfree, bavail, files, ffree, favail, flag, namemax),\n\
Guido van Rossuma4dc73e2001-10-18 20:53:15 +00001274or via the attributes f_bsize, f_frsize, f_blocks, f_bfree, and so on.\n\
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001275\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001276See os.statvfs for more information.");
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001277
1278static PyStructSequence_Field statvfs_result_fields[] = {
1279 {"f_bsize", },
1280 {"f_frsize", },
1281 {"f_blocks", },
1282 {"f_bfree", },
1283 {"f_bavail", },
1284 {"f_files", },
1285 {"f_ffree", },
1286 {"f_favail", },
1287 {"f_flag", },
1288 {"f_namemax",},
1289 {0}
1290};
1291
1292static PyStructSequence_Desc statvfs_result_desc = {
1293 "statvfs_result", /* name */
1294 statvfs_result__doc__, /* doc */
1295 statvfs_result_fields,
1296 10
1297};
1298
Martin v. Löwis19ab6c92006-04-16 18:55:50 +00001299static int initialized;
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001300static PyTypeObject StatResultType;
1301static PyTypeObject StatVFSResultType;
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001302static newfunc structseq_new;
1303
1304static PyObject *
1305statresult_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
1306{
1307 PyStructSequence *result;
1308 int i;
1309
1310 result = (PyStructSequence*)structseq_new(type, args, kwds);
1311 if (!result)
1312 return NULL;
1313 /* If we have been initialized from a tuple,
1314 st_?time might be set to None. Initialize it
1315 from the int slots. */
1316 for (i = 7; i <= 9; i++) {
1317 if (result->ob_item[i+3] == Py_None) {
1318 Py_DECREF(Py_None);
1319 Py_INCREF(result->ob_item[i]);
1320 result->ob_item[i+3] = result->ob_item[i];
1321 }
1322 }
1323 return (PyObject*)result;
1324}
1325
1326
1327
1328/* If true, st_?time is float. */
Martin v. Löwisfe33d0b2005-01-16 08:57:39 +00001329static int _stat_float_times = 1;
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001330
1331PyDoc_STRVAR(stat_float_times__doc__,
1332"stat_float_times([newval]) -> oldval\n\n\
1333Determine whether os.[lf]stat represents time stamps as float objects.\n\
1334If newval is True, future calls to stat() return floats, if it is False,\n\
1335future calls return ints. \n\
1336If newval is omitted, return the current setting.\n");
1337
1338static PyObject*
1339stat_float_times(PyObject* self, PyObject *args)
1340{
1341 int newval = -1;
1342 if (!PyArg_ParseTuple(args, "|i:stat_float_times", &newval))
1343 return NULL;
1344 if (newval == -1)
1345 /* Return old value */
1346 return PyBool_FromLong(_stat_float_times);
1347 _stat_float_times = newval;
1348 Py_INCREF(Py_None);
1349 return Py_None;
1350}
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001351
Martin v. Löwis94717ed2002-09-09 14:24:16 +00001352static void
1353fill_time(PyObject *v, int index, time_t sec, unsigned long nsec)
1354{
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001355 PyObject *fval,*ival;
1356#if SIZEOF_TIME_T > SIZEOF_LONG
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00001357 ival = PyLong_FromLongLong((PY_LONG_LONG)sec);
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001358#else
1359 ival = PyInt_FromLong((long)sec);
1360#endif
Neal Norwitze0a81af2006-08-12 01:50:38 +00001361 if (!ival)
1362 return;
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001363 if (_stat_float_times) {
1364 fval = PyFloat_FromDouble(sec + 1e-9*nsec);
1365 } else {
1366 fval = ival;
1367 Py_INCREF(fval);
1368 }
1369 PyStructSequence_SET_ITEM(v, index, ival);
1370 PyStructSequence_SET_ITEM(v, index+3, fval);
Martin v. Löwis94717ed2002-09-09 14:24:16 +00001371}
1372
Tim Peters5aa91602002-01-30 05:46:57 +00001373/* pack a system stat C structure into the Python stat tuple
Fred Drake699f3522000-06-29 21:12:41 +00001374 (used by posix_stat() and posix_fstat()) */
1375static PyObject*
Martin v. Löwis14694662006-02-03 12:54:16 +00001376_pystat_fromstructstat(STRUCT_STAT *st)
Fred Drake699f3522000-06-29 21:12:41 +00001377{
Martin v. Löwis94717ed2002-09-09 14:24:16 +00001378 unsigned long ansec, mnsec, cnsec;
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001379 PyObject *v = PyStructSequence_New(&StatResultType);
Fred Drake699f3522000-06-29 21:12:41 +00001380 if (v == NULL)
1381 return NULL;
1382
Martin v. Löwis14694662006-02-03 12:54:16 +00001383 PyStructSequence_SET_ITEM(v, 0, PyInt_FromLong((long)st->st_mode));
Fred Drake699f3522000-06-29 21:12:41 +00001384#ifdef HAVE_LARGEFILE_SUPPORT
Tim Peters5aa91602002-01-30 05:46:57 +00001385 PyStructSequence_SET_ITEM(v, 1,
Martin v. Löwis14694662006-02-03 12:54:16 +00001386 PyLong_FromLongLong((PY_LONG_LONG)st->st_ino));
Fred Drake699f3522000-06-29 21:12:41 +00001387#else
Martin v. Löwis14694662006-02-03 12:54:16 +00001388 PyStructSequence_SET_ITEM(v, 1, PyInt_FromLong((long)st->st_ino));
Fred Drake699f3522000-06-29 21:12:41 +00001389#endif
1390#if defined(HAVE_LONG_LONG) && !defined(MS_WINDOWS)
Tim Peters5aa91602002-01-30 05:46:57 +00001391 PyStructSequence_SET_ITEM(v, 2,
Martin v. Löwis14694662006-02-03 12:54:16 +00001392 PyLong_FromLongLong((PY_LONG_LONG)st->st_dev));
Fred Drake699f3522000-06-29 21:12:41 +00001393#else
Martin v. Löwis14694662006-02-03 12:54:16 +00001394 PyStructSequence_SET_ITEM(v, 2, PyInt_FromLong((long)st->st_dev));
Fred Drake699f3522000-06-29 21:12:41 +00001395#endif
Martin v. Löwis14694662006-02-03 12:54:16 +00001396 PyStructSequence_SET_ITEM(v, 3, PyInt_FromLong((long)st->st_nlink));
1397 PyStructSequence_SET_ITEM(v, 4, PyInt_FromLong((long)st->st_uid));
1398 PyStructSequence_SET_ITEM(v, 5, PyInt_FromLong((long)st->st_gid));
Fred Drake699f3522000-06-29 21:12:41 +00001399#ifdef HAVE_LARGEFILE_SUPPORT
Tim Peters5aa91602002-01-30 05:46:57 +00001400 PyStructSequence_SET_ITEM(v, 6,
Martin v. Löwis14694662006-02-03 12:54:16 +00001401 PyLong_FromLongLong((PY_LONG_LONG)st->st_size));
Fred Drake699f3522000-06-29 21:12:41 +00001402#else
Martin v. Löwis14694662006-02-03 12:54:16 +00001403 PyStructSequence_SET_ITEM(v, 6, PyInt_FromLong(st->st_size));
Fred Drake699f3522000-06-29 21:12:41 +00001404#endif
Martin v. Löwis94717ed2002-09-09 14:24:16 +00001405
Martin v. Löwis14694662006-02-03 12:54:16 +00001406#if defined(HAVE_STAT_TV_NSEC)
1407 ansec = st->st_atim.tv_nsec;
1408 mnsec = st->st_mtim.tv_nsec;
1409 cnsec = st->st_ctim.tv_nsec;
1410#elif defined(HAVE_STAT_TV_NSEC2)
1411 ansec = st->st_atimespec.tv_nsec;
1412 mnsec = st->st_mtimespec.tv_nsec;
1413 cnsec = st->st_ctimespec.tv_nsec;
1414#elif defined(HAVE_STAT_NSEC)
1415 ansec = st->st_atime_nsec;
1416 mnsec = st->st_mtime_nsec;
1417 cnsec = st->st_ctime_nsec;
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001418#else
Martin v. Löwis94717ed2002-09-09 14:24:16 +00001419 ansec = mnsec = cnsec = 0;
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001420#endif
Martin v. Löwis14694662006-02-03 12:54:16 +00001421 fill_time(v, 7, st->st_atime, ansec);
1422 fill_time(v, 8, st->st_mtime, mnsec);
1423 fill_time(v, 9, st->st_ctime, cnsec);
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001424
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001425#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
Tim Peters5aa91602002-01-30 05:46:57 +00001426 PyStructSequence_SET_ITEM(v, ST_BLKSIZE_IDX,
Martin v. Löwis14694662006-02-03 12:54:16 +00001427 PyInt_FromLong((long)st->st_blksize));
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001428#endif
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001429#ifdef HAVE_STRUCT_STAT_ST_BLOCKS
Tim Peters5aa91602002-01-30 05:46:57 +00001430 PyStructSequence_SET_ITEM(v, ST_BLOCKS_IDX,
Martin v. Löwis14694662006-02-03 12:54:16 +00001431 PyInt_FromLong((long)st->st_blocks));
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001432#endif
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001433#ifdef HAVE_STRUCT_STAT_ST_RDEV
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001434 PyStructSequence_SET_ITEM(v, ST_RDEV_IDX,
Martin v. Löwis14694662006-02-03 12:54:16 +00001435 PyInt_FromLong((long)st->st_rdev));
Fred Drake699f3522000-06-29 21:12:41 +00001436#endif
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001437#ifdef HAVE_STRUCT_STAT_ST_GEN
1438 PyStructSequence_SET_ITEM(v, ST_GEN_IDX,
Martin v. Löwis14694662006-02-03 12:54:16 +00001439 PyInt_FromLong((long)st->st_gen));
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001440#endif
1441#ifdef HAVE_STRUCT_STAT_ST_BIRTHTIME
1442 {
1443 PyObject *val;
1444 unsigned long bsec,bnsec;
Martin v. Löwis14694662006-02-03 12:54:16 +00001445 bsec = (long)st->st_birthtime;
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001446#ifdef HAVE_STAT_TV_NSEC2
Hye-Shik Changd69e0342006-02-19 16:22:22 +00001447 bnsec = st->st_birthtimespec.tv_nsec;
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001448#else
1449 bnsec = 0;
1450#endif
1451 if (_stat_float_times) {
1452 val = PyFloat_FromDouble(bsec + 1e-9*bnsec);
1453 } else {
1454 val = PyInt_FromLong((long)bsec);
1455 }
1456 PyStructSequence_SET_ITEM(v, ST_BIRTHTIME_IDX,
1457 val);
1458 }
1459#endif
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001460#ifdef HAVE_STRUCT_STAT_ST_FLAGS
1461 PyStructSequence_SET_ITEM(v, ST_FLAGS_IDX,
Martin v. Löwis14694662006-02-03 12:54:16 +00001462 PyInt_FromLong((long)st->st_flags));
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001463#endif
Fred Drake699f3522000-06-29 21:12:41 +00001464
1465 if (PyErr_Occurred()) {
1466 Py_DECREF(v);
1467 return NULL;
1468 }
1469
1470 return v;
1471}
1472
Martin v. Löwisd8948722004-06-02 09:57:56 +00001473#ifdef MS_WINDOWS
1474
1475/* IsUNCRoot -- test whether the supplied path is of the form \\SERVER\SHARE\,
1476 where / can be used in place of \ and the trailing slash is optional.
1477 Both SERVER and SHARE must have at least one character.
1478*/
1479
1480#define ISSLASHA(c) ((c) == '\\' || (c) == '/')
1481#define ISSLASHW(c) ((c) == L'\\' || (c) == L'/')
Kristján Valur Jónssondbeaa692006-06-09 16:28:01 +00001482#ifndef ARRAYSIZE
Martin v. Löwisd8948722004-06-02 09:57:56 +00001483#define ARRAYSIZE(a) (sizeof(a) / sizeof(a[0]))
Kristján Valur Jónssondbeaa692006-06-09 16:28:01 +00001484#endif
Martin v. Löwisd8948722004-06-02 09:57:56 +00001485
Tim Peters4ad82172004-08-30 17:02:04 +00001486static BOOL
Martin v. Löwisd8948722004-06-02 09:57:56 +00001487IsUNCRootA(char *path, int pathlen)
1488{
1489 #define ISSLASH ISSLASHA
1490
1491 int i, share;
1492
1493 if (pathlen < 5 || !ISSLASH(path[0]) || !ISSLASH(path[1]))
1494 /* minimum UNCRoot is \\x\y */
1495 return FALSE;
1496 for (i = 2; i < pathlen ; i++)
1497 if (ISSLASH(path[i])) break;
1498 if (i == 2 || i == pathlen)
1499 /* do not allow \\\SHARE or \\SERVER */
1500 return FALSE;
1501 share = i+1;
1502 for (i = share; i < pathlen; i++)
1503 if (ISSLASH(path[i])) break;
1504 return (i != share && (i == pathlen || i == pathlen-1));
1505
1506 #undef ISSLASH
1507}
1508
1509#ifdef Py_WIN_WIDE_FILENAMES
Tim Peters4ad82172004-08-30 17:02:04 +00001510static BOOL
Martin v. Löwisd8948722004-06-02 09:57:56 +00001511IsUNCRootW(Py_UNICODE *path, int pathlen)
1512{
1513 #define ISSLASH ISSLASHW
1514
1515 int i, share;
1516
1517 if (pathlen < 5 || !ISSLASH(path[0]) || !ISSLASH(path[1]))
1518 /* minimum UNCRoot is \\x\y */
1519 return FALSE;
1520 for (i = 2; i < pathlen ; i++)
1521 if (ISSLASH(path[i])) break;
1522 if (i == 2 || i == pathlen)
1523 /* do not allow \\\SHARE or \\SERVER */
1524 return FALSE;
1525 share = i+1;
1526 for (i = share; i < pathlen; i++)
1527 if (ISSLASH(path[i])) break;
1528 return (i != share && (i == pathlen || i == pathlen-1));
1529
1530 #undef ISSLASH
1531}
1532#endif /* Py_WIN_WIDE_FILENAMES */
1533#endif /* MS_WINDOWS */
1534
Barry Warsaw53699e91996-12-10 23:23:01 +00001535static PyObject *
Tim Peters11b23062003-04-23 02:39:17 +00001536posix_do_stat(PyObject *self, PyObject *args,
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001537 char *format,
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001538#ifdef __VMS
1539 int (*statfunc)(const char *, STRUCT_STAT *, ...),
1540#else
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001541 int (*statfunc)(const char *, STRUCT_STAT *),
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001542#endif
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001543 char *wformat,
1544 int (*wstatfunc)(const Py_UNICODE *, STRUCT_STAT *))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001545{
Fred Drake699f3522000-06-29 21:12:41 +00001546 STRUCT_STAT st;
Tim Peters500bd032001-12-19 19:05:01 +00001547 char *path = NULL; /* pass this to stat; do not free() it */
1548 char *pathfree = NULL; /* this memory must be free'd */
Guido van Rossumff4949e1992-08-05 19:58:53 +00001549 int res;
Martin v. Löwis14694662006-02-03 12:54:16 +00001550 PyObject *result;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001551
1552#ifdef Py_WIN_WIDE_FILENAMES
1553 /* If on wide-character-capable OS see if argument
1554 is Unicode and if so use wide API. */
1555 if (unicode_file_names()) {
1556 PyUnicodeObject *po;
1557 if (PyArg_ParseTuple(args, wformat, &po)) {
Martin v. Löwis14694662006-02-03 12:54:16 +00001558 Py_UNICODE *wpath = PyUnicode_AS_UNICODE(po);
1559
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001560 Py_BEGIN_ALLOW_THREADS
1561 /* PyUnicode_AS_UNICODE result OK without
1562 thread lock as it is a simple dereference. */
1563 res = wstatfunc(wpath, &st);
1564 Py_END_ALLOW_THREADS
Martin v. Löwis14694662006-02-03 12:54:16 +00001565
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001566 if (res != 0)
Martin v. Löwis14694662006-02-03 12:54:16 +00001567 return win32_error_unicode("stat", wpath);
1568 return _pystat_fromstructstat(&st);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001569 }
1570 /* Drop the argument parsing error as narrow strings
1571 are also valid. */
1572 PyErr_Clear();
1573 }
1574#endif
1575
Tim Peters5aa91602002-01-30 05:46:57 +00001576 if (!PyArg_ParseTuple(args, format,
Mark Hammondef8b6542001-05-13 08:04:26 +00001577 Py_FileSystemDefaultEncoding, &path))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001578 return NULL;
Tim Peters500bd032001-12-19 19:05:01 +00001579 pathfree = path;
Guido van Rossumace88ae2000-04-21 18:54:45 +00001580
Barry Warsaw53699e91996-12-10 23:23:01 +00001581 Py_BEGIN_ALLOW_THREADS
Guido van Rossumff4949e1992-08-05 19:58:53 +00001582 res = (*statfunc)(path, &st);
Barry Warsaw53699e91996-12-10 23:23:01 +00001583 Py_END_ALLOW_THREADS
Martin v. Löwis14694662006-02-03 12:54:16 +00001584
1585 if (res != 0) {
1586#ifdef MS_WINDOWS
1587 result = win32_error("stat", pathfree);
1588#else
1589 result = posix_error_with_filename(pathfree);
1590#endif
1591 }
1592 else
1593 result = _pystat_fromstructstat(&st);
Fred Drake699f3522000-06-29 21:12:41 +00001594
Tim Peters500bd032001-12-19 19:05:01 +00001595 PyMem_Free(pathfree);
Martin v. Löwis14694662006-02-03 12:54:16 +00001596 return result;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001597}
1598
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001599/* POSIX methods */
1600
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001601PyDoc_STRVAR(posix_access__doc__,
Georg Brandl7a284472007-01-27 19:38:50 +00001602"access(path, mode) -> True if granted, False otherwise\n\n\
Guido van Rossuma0b90752002-06-18 16:22:43 +00001603Use the real uid/gid to test for access to a path. Note that most\n\
1604operations will use the effective uid/gid, therefore this routine can\n\
1605be used in a suid/sgid environment to test if the invoking user has the\n\
1606specified access to the path. The mode argument can be F_OK to test\n\
1607existence, or the inclusive-OR of R_OK, W_OK, and X_OK.");
Guido van Rossum94f6f721999-01-06 18:42:14 +00001608
1609static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00001610posix_access(PyObject *self, PyObject *args)
Guido van Rossum94f6f721999-01-06 18:42:14 +00001611{
Guido van Rossum015f22a1999-01-06 22:52:38 +00001612 char *path;
1613 int mode;
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001614
Martin v. Löwis1b699a52003-09-12 16:25:38 +00001615#ifdef Py_WIN_WIDE_FILENAMES
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001616 DWORD attr;
Martin v. Löwis1b699a52003-09-12 16:25:38 +00001617 if (unicode_file_names()) {
1618 PyUnicodeObject *po;
1619 if (PyArg_ParseTuple(args, "Ui:access", &po, &mode)) {
1620 Py_BEGIN_ALLOW_THREADS
1621 /* PyUnicode_AS_UNICODE OK without thread lock as
1622 it is a simple dereference. */
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001623 attr = GetFileAttributesW(PyUnicode_AS_UNICODE(po));
Martin v. Löwis1b699a52003-09-12 16:25:38 +00001624 Py_END_ALLOW_THREADS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001625 goto finish;
Martin v. Löwis1b699a52003-09-12 16:25:38 +00001626 }
1627 /* Drop the argument parsing error as narrow strings
1628 are also valid. */
1629 PyErr_Clear();
1630 }
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001631 if (!PyArg_ParseTuple(args, "eti:access",
1632 Py_FileSystemDefaultEncoding, &path, &mode))
1633 return 0;
1634 Py_BEGIN_ALLOW_THREADS
1635 attr = GetFileAttributesA(path);
1636 Py_END_ALLOW_THREADS
1637 PyMem_Free(path);
1638finish:
1639 if (attr == 0xFFFFFFFF)
1640 /* File does not exist, or cannot read attributes */
1641 return PyBool_FromLong(0);
1642 /* Access is possible if either write access wasn't requested, or
Martin v. Löwis7b3cc062007-12-03 23:09:04 +00001643 the file isn't read-only, or if it's a directory, as there are
1644 no read-only directories on Windows. */
1645 return PyBool_FromLong(!(mode & 2)
1646 || !(attr & FILE_ATTRIBUTE_READONLY)
1647 || (attr & FILE_ATTRIBUTE_DIRECTORY));
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001648#else
1649 int res;
Martin v. Löwisb60ae992005-03-08 09:10:29 +00001650 if (!PyArg_ParseTuple(args, "eti:access",
1651 Py_FileSystemDefaultEncoding, &path, &mode))
Guido van Rossum015f22a1999-01-06 22:52:38 +00001652 return NULL;
1653 Py_BEGIN_ALLOW_THREADS
1654 res = access(path, mode);
1655 Py_END_ALLOW_THREADS
Neal Norwitz24b3c222005-09-19 06:43:44 +00001656 PyMem_Free(path);
Neal Norwitz3efd0a12005-09-19 06:45:53 +00001657 return PyBool_FromLong(res == 0);
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001658#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00001659}
1660
Guido van Rossumd371ff11999-01-25 16:12:23 +00001661#ifndef F_OK
1662#define F_OK 0
1663#endif
1664#ifndef R_OK
1665#define R_OK 4
1666#endif
1667#ifndef W_OK
1668#define W_OK 2
1669#endif
1670#ifndef X_OK
1671#define X_OK 1
1672#endif
1673
1674#ifdef HAVE_TTYNAME
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001675PyDoc_STRVAR(posix_ttyname__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001676"ttyname(fd) -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001677Return the name of the terminal device connected to 'fd'.");
Guido van Rossum94f6f721999-01-06 18:42:14 +00001678
1679static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00001680posix_ttyname(PyObject *self, PyObject *args)
Guido van Rossum94f6f721999-01-06 18:42:14 +00001681{
Guido van Rossum94f6f721999-01-06 18:42:14 +00001682 int id;
1683 char *ret;
1684
Fred Drake5ab8eaf1999-12-09 21:13:07 +00001685 if (!PyArg_ParseTuple(args, "i:ttyname", &id))
Guido van Rossum94f6f721999-01-06 18:42:14 +00001686 return NULL;
1687
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001688#if defined(__VMS)
Martin v. Löwisc16f3bd2003-05-03 09:14:54 +00001689 /* file descriptor 0 only, the default input device (stdin) */
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001690 if (id == 0) {
1691 ret = ttyname();
1692 }
1693 else {
1694 ret = NULL;
1695 }
1696#else
Guido van Rossum94f6f721999-01-06 18:42:14 +00001697 ret = ttyname(id);
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001698#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00001699 if (ret == NULL)
Neal Norwitz3efd0a12005-09-19 06:45:53 +00001700 return posix_error();
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001701 return PyString_FromString(ret);
Guido van Rossum94f6f721999-01-06 18:42:14 +00001702}
Guido van Rossumd371ff11999-01-25 16:12:23 +00001703#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00001704
Fred Drake5ab8eaf1999-12-09 21:13:07 +00001705#ifdef HAVE_CTERMID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001706PyDoc_STRVAR(posix_ctermid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001707"ctermid() -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001708Return the name of the controlling terminal for this process.");
Fred Drake5ab8eaf1999-12-09 21:13:07 +00001709
1710static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00001711posix_ctermid(PyObject *self, PyObject *noargs)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00001712{
1713 char *ret;
1714 char buffer[L_ctermid];
1715
Greg Wardb48bc172000-03-01 21:51:56 +00001716#ifdef USE_CTERMID_R
Fred Drake5ab8eaf1999-12-09 21:13:07 +00001717 ret = ctermid_r(buffer);
1718#else
1719 ret = ctermid(buffer);
1720#endif
1721 if (ret == NULL)
Neal Norwitz3efd0a12005-09-19 06:45:53 +00001722 return posix_error();
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001723 return PyString_FromString(buffer);
Fred Drake5ab8eaf1999-12-09 21:13:07 +00001724}
1725#endif
1726
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001727PyDoc_STRVAR(posix_chdir__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001728"chdir(path)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001729Change the current working directory to the specified path.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001730
Barry Warsaw53699e91996-12-10 23:23:01 +00001731static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00001732posix_chdir(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001733{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001734#ifdef MS_WINDOWS
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00001735 return win32_1str(args, "chdir", "s:chdir", win32_chdir, "U:chdir", win32_wchdir);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001736#elif defined(PYOS_OS2) && defined(PYCC_GCC)
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00001737 return posix_1str(args, "et:chdir", _chdir2);
Martin v. Löwis7a924e62003-03-05 14:15:21 +00001738#elif defined(__VMS)
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00001739 return posix_1str(args, "et:chdir", (int (*)(const char *))chdir);
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001740#else
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00001741 return posix_1str(args, "et:chdir", chdir);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00001742#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001743}
1744
Fred Drake4d1e64b2002-04-15 19:40:07 +00001745#ifdef HAVE_FCHDIR
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001746PyDoc_STRVAR(posix_fchdir__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001747"fchdir(fildes)\n\n\
Fred Drake4d1e64b2002-04-15 19:40:07 +00001748Change to the directory of the given file descriptor. fildes must be\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001749opened on a directory, not a file.");
Fred Drake4d1e64b2002-04-15 19:40:07 +00001750
1751static PyObject *
1752posix_fchdir(PyObject *self, PyObject *fdobj)
1753{
1754 return posix_fildes(fdobj, fchdir);
1755}
1756#endif /* HAVE_FCHDIR */
1757
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001758
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001759PyDoc_STRVAR(posix_chmod__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001760"chmod(path, mode)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001761Change the access permissions of a file.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001762
Barry Warsaw53699e91996-12-10 23:23:01 +00001763static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00001764posix_chmod(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001765{
Mark Hammondef8b6542001-05-13 08:04:26 +00001766 char *path = NULL;
Guido van Rossumffd15f52000-03-31 00:47:28 +00001767 int i;
1768 int res;
Mark Hammond817c9292003-12-03 01:22:38 +00001769#ifdef Py_WIN_WIDE_FILENAMES
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001770 DWORD attr;
Mark Hammond817c9292003-12-03 01:22:38 +00001771 if (unicode_file_names()) {
1772 PyUnicodeObject *po;
1773 if (PyArg_ParseTuple(args, "Ui|:chmod", &po, &i)) {
1774 Py_BEGIN_ALLOW_THREADS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001775 attr = GetFileAttributesW(PyUnicode_AS_UNICODE(po));
1776 if (attr != 0xFFFFFFFF) {
1777 if (i & _S_IWRITE)
1778 attr &= ~FILE_ATTRIBUTE_READONLY;
1779 else
1780 attr |= FILE_ATTRIBUTE_READONLY;
1781 res = SetFileAttributesW(PyUnicode_AS_UNICODE(po), attr);
1782 }
1783 else
1784 res = 0;
Mark Hammond817c9292003-12-03 01:22:38 +00001785 Py_END_ALLOW_THREADS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001786 if (!res)
1787 return win32_error_unicode("chmod",
Mark Hammond817c9292003-12-03 01:22:38 +00001788 PyUnicode_AS_UNICODE(po));
1789 Py_INCREF(Py_None);
1790 return Py_None;
1791 }
1792 /* Drop the argument parsing error as narrow strings
1793 are also valid. */
1794 PyErr_Clear();
1795 }
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001796 if (!PyArg_ParseTuple(args, "eti:chmod", Py_FileSystemDefaultEncoding,
1797 &path, &i))
1798 return NULL;
1799 Py_BEGIN_ALLOW_THREADS
1800 attr = GetFileAttributesA(path);
1801 if (attr != 0xFFFFFFFF) {
1802 if (i & _S_IWRITE)
1803 attr &= ~FILE_ATTRIBUTE_READONLY;
1804 else
1805 attr |= FILE_ATTRIBUTE_READONLY;
1806 res = SetFileAttributesA(path, attr);
1807 }
1808 else
1809 res = 0;
1810 Py_END_ALLOW_THREADS
1811 if (!res) {
1812 win32_error("chmod", path);
1813 PyMem_Free(path);
1814 return NULL;
1815 }
Martin v. Löwis9f485bc2006-05-08 05:25:56 +00001816 PyMem_Free(path);
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001817 Py_INCREF(Py_None);
1818 return Py_None;
1819#else /* Py_WIN_WIDE_FILENAMES */
Mark Hammond817c9292003-12-03 01:22:38 +00001820 if (!PyArg_ParseTuple(args, "eti:chmod", Py_FileSystemDefaultEncoding,
Mark Hammondef8b6542001-05-13 08:04:26 +00001821 &path, &i))
Guido van Rossumffd15f52000-03-31 00:47:28 +00001822 return NULL;
1823 Py_BEGIN_ALLOW_THREADS
Guido van Rossumef40e772000-03-31 01:26:23 +00001824 res = chmod(path, i);
Guido van Rossumffd15f52000-03-31 00:47:28 +00001825 Py_END_ALLOW_THREADS
1826 if (res < 0)
Mark Hammondef8b6542001-05-13 08:04:26 +00001827 return posix_error_with_allocated_filename(path);
1828 PyMem_Free(path);
Guido van Rossumffd15f52000-03-31 00:47:28 +00001829 Py_INCREF(Py_None);
1830 return Py_None;
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001831#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001832}
1833
Christian Heimes36281872007-11-30 21:11:28 +00001834#ifdef HAVE_FCHMOD
1835PyDoc_STRVAR(posix_fchmod__doc__,
1836"fchmod(fd, mode)\n\n\
1837Change the access permissions of the file given by file\n\
1838descriptor fd.");
1839
1840static PyObject *
1841posix_fchmod(PyObject *self, PyObject *args)
1842{
1843 int fd, mode, res;
1844 if (!PyArg_ParseTuple(args, "ii:fchmod", &fd, &mode))
1845 return NULL;
1846 Py_BEGIN_ALLOW_THREADS
1847 res = fchmod(fd, mode);
1848 Py_END_ALLOW_THREADS
1849 if (res < 0)
1850 return posix_error();
1851 Py_RETURN_NONE;
1852}
1853#endif /* HAVE_FCHMOD */
1854
1855#ifdef HAVE_LCHMOD
1856PyDoc_STRVAR(posix_lchmod__doc__,
1857"lchmod(path, mode)\n\n\
1858Change the access permissions of a file. If path is a symlink, this\n\
1859affects the link itself rather than the target.");
1860
1861static PyObject *
1862posix_lchmod(PyObject *self, PyObject *args)
1863{
1864 char *path = NULL;
1865 int i;
1866 int res;
1867 if (!PyArg_ParseTuple(args, "eti:lchmod", Py_FileSystemDefaultEncoding,
1868 &path, &i))
1869 return NULL;
1870 Py_BEGIN_ALLOW_THREADS
1871 res = lchmod(path, i);
1872 Py_END_ALLOW_THREADS
1873 if (res < 0)
1874 return posix_error_with_allocated_filename(path);
1875 PyMem_Free(path);
1876 Py_RETURN_NONE;
1877}
1878#endif /* HAVE_LCHMOD */
1879
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001880
Martin v. Löwis382abef2007-02-19 10:55:19 +00001881#ifdef HAVE_CHFLAGS
1882PyDoc_STRVAR(posix_chflags__doc__,
1883"chflags(path, flags)\n\n\
1884Set file flags.");
1885
1886static PyObject *
1887posix_chflags(PyObject *self, PyObject *args)
1888{
1889 char *path;
1890 unsigned long flags;
1891 int res;
1892 if (!PyArg_ParseTuple(args, "etk:chflags",
1893 Py_FileSystemDefaultEncoding, &path, &flags))
1894 return NULL;
1895 Py_BEGIN_ALLOW_THREADS
1896 res = chflags(path, flags);
1897 Py_END_ALLOW_THREADS
1898 if (res < 0)
1899 return posix_error_with_allocated_filename(path);
1900 PyMem_Free(path);
1901 Py_INCREF(Py_None);
1902 return Py_None;
1903}
1904#endif /* HAVE_CHFLAGS */
1905
1906#ifdef HAVE_LCHFLAGS
1907PyDoc_STRVAR(posix_lchflags__doc__,
1908"lchflags(path, flags)\n\n\
1909Set file flags.\n\
1910This function will not follow symbolic links.");
1911
1912static PyObject *
1913posix_lchflags(PyObject *self, PyObject *args)
1914{
1915 char *path;
1916 unsigned long flags;
1917 int res;
1918 if (!PyArg_ParseTuple(args, "etk:lchflags",
1919 Py_FileSystemDefaultEncoding, &path, &flags))
1920 return NULL;
1921 Py_BEGIN_ALLOW_THREADS
1922 res = lchflags(path, flags);
1923 Py_END_ALLOW_THREADS
1924 if (res < 0)
1925 return posix_error_with_allocated_filename(path);
1926 PyMem_Free(path);
1927 Py_INCREF(Py_None);
1928 return Py_None;
1929}
1930#endif /* HAVE_LCHFLAGS */
1931
Martin v. Löwis244edc82001-10-04 22:44:26 +00001932#ifdef HAVE_CHROOT
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001933PyDoc_STRVAR(posix_chroot__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001934"chroot(path)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001935Change root directory to path.");
Martin v. Löwis244edc82001-10-04 22:44:26 +00001936
1937static PyObject *
1938posix_chroot(PyObject *self, PyObject *args)
1939{
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00001940 return posix_1str(args, "et:chroot", chroot);
Martin v. Löwis244edc82001-10-04 22:44:26 +00001941}
1942#endif
1943
Guido van Rossum21142a01999-01-08 21:05:37 +00001944#ifdef HAVE_FSYNC
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001945PyDoc_STRVAR(posix_fsync__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001946"fsync(fildes)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001947force write of file with filedescriptor to disk.");
Guido van Rossum21142a01999-01-08 21:05:37 +00001948
1949static PyObject *
Fred Drake4d1e64b2002-04-15 19:40:07 +00001950posix_fsync(PyObject *self, PyObject *fdobj)
Guido van Rossum21142a01999-01-08 21:05:37 +00001951{
Fred Drake4d1e64b2002-04-15 19:40:07 +00001952 return posix_fildes(fdobj, fsync);
Guido van Rossum21142a01999-01-08 21:05:37 +00001953}
1954#endif /* HAVE_FSYNC */
1955
1956#ifdef HAVE_FDATASYNC
Guido van Rossumecc23b02000-09-22 16:01:05 +00001957
Guido van Rossum7f58e2e2000-09-22 17:26:14 +00001958#ifdef __hpux
Guido van Rossumecc23b02000-09-22 16:01:05 +00001959extern int fdatasync(int); /* On HP-UX, in libc but not in unistd.h */
1960#endif
1961
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001962PyDoc_STRVAR(posix_fdatasync__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001963"fdatasync(fildes)\n\n\
Guido van Rossum21142a01999-01-08 21:05:37 +00001964force write of file with filedescriptor to disk.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001965 does not force update of metadata.");
Guido van Rossum21142a01999-01-08 21:05:37 +00001966
1967static PyObject *
Fred Drake4d1e64b2002-04-15 19:40:07 +00001968posix_fdatasync(PyObject *self, PyObject *fdobj)
Guido van Rossum21142a01999-01-08 21:05:37 +00001969{
Fred Drake4d1e64b2002-04-15 19:40:07 +00001970 return posix_fildes(fdobj, fdatasync);
Guido van Rossum21142a01999-01-08 21:05:37 +00001971}
1972#endif /* HAVE_FDATASYNC */
1973
1974
Fredrik Lundh10723342000-07-10 16:38:09 +00001975#ifdef HAVE_CHOWN
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001976PyDoc_STRVAR(posix_chown__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001977"chown(path, uid, gid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001978Change the owner and group id of path to the numeric uid and gid.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001979
Barry Warsaw53699e91996-12-10 23:23:01 +00001980static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00001981posix_chown(PyObject *self, PyObject *args)
Guido van Rossumb6775db1994-08-01 11:34:53 +00001982{
Mark Hammondef8b6542001-05-13 08:04:26 +00001983 char *path = NULL;
Gregory P. Smithf48da8f2008-03-18 19:05:32 +00001984 long uid, gid;
Fredrik Lundh44328e62000-07-10 15:59:30 +00001985 int res;
Gregory P. Smithf48da8f2008-03-18 19:05:32 +00001986 if (!PyArg_ParseTuple(args, "etll:chown",
Tim Peters5aa91602002-01-30 05:46:57 +00001987 Py_FileSystemDefaultEncoding, &path,
Mark Hammondef8b6542001-05-13 08:04:26 +00001988 &uid, &gid))
Fredrik Lundh44328e62000-07-10 15:59:30 +00001989 return NULL;
1990 Py_BEGIN_ALLOW_THREADS
1991 res = chown(path, (uid_t) uid, (gid_t) gid);
1992 Py_END_ALLOW_THREADS
1993 if (res < 0)
Mark Hammondef8b6542001-05-13 08:04:26 +00001994 return posix_error_with_allocated_filename(path);
1995 PyMem_Free(path);
Fredrik Lundh44328e62000-07-10 15:59:30 +00001996 Py_INCREF(Py_None);
1997 return Py_None;
Guido van Rossumb6775db1994-08-01 11:34:53 +00001998}
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00001999#endif /* HAVE_CHOWN */
Guido van Rossumb6775db1994-08-01 11:34:53 +00002000
Christian Heimes36281872007-11-30 21:11:28 +00002001#ifdef HAVE_FCHOWN
2002PyDoc_STRVAR(posix_fchown__doc__,
2003"fchown(fd, uid, gid)\n\n\
2004Change the owner and group id of the file given by file descriptor\n\
2005fd to the numeric uid and gid.");
2006
2007static PyObject *
2008posix_fchown(PyObject *self, PyObject *args)
2009{
2010 int fd, uid, gid;
2011 int res;
2012 if (!PyArg_ParseTuple(args, "iii:chown", &fd, &uid, &gid))
2013 return NULL;
2014 Py_BEGIN_ALLOW_THREADS
2015 res = fchown(fd, (uid_t) uid, (gid_t) gid);
2016 Py_END_ALLOW_THREADS
2017 if (res < 0)
2018 return posix_error();
2019 Py_RETURN_NONE;
2020}
2021#endif /* HAVE_FCHOWN */
2022
Martin v. Löwis0cec0ff2002-07-28 16:33:45 +00002023#ifdef HAVE_LCHOWN
2024PyDoc_STRVAR(posix_lchown__doc__,
2025"lchown(path, uid, gid)\n\n\
2026Change the owner and group id of path to the numeric uid and gid.\n\
2027This function will not follow symbolic links.");
2028
2029static PyObject *
2030posix_lchown(PyObject *self, PyObject *args)
2031{
2032 char *path = NULL;
2033 int uid, gid;
2034 int res;
2035 if (!PyArg_ParseTuple(args, "etii:lchown",
2036 Py_FileSystemDefaultEncoding, &path,
2037 &uid, &gid))
2038 return NULL;
2039 Py_BEGIN_ALLOW_THREADS
2040 res = lchown(path, (uid_t) uid, (gid_t) gid);
2041 Py_END_ALLOW_THREADS
Tim Peters11b23062003-04-23 02:39:17 +00002042 if (res < 0)
Martin v. Löwis0cec0ff2002-07-28 16:33:45 +00002043 return posix_error_with_allocated_filename(path);
2044 PyMem_Free(path);
2045 Py_INCREF(Py_None);
2046 return Py_None;
2047}
2048#endif /* HAVE_LCHOWN */
2049
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002050
Guido van Rossum36bc6801995-06-14 22:54:23 +00002051#ifdef HAVE_GETCWD
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002052PyDoc_STRVAR(posix_getcwd__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002053"getcwd() -> path\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002054Return a string representing the current working directory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002055
Barry Warsaw53699e91996-12-10 23:23:01 +00002056static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00002057posix_getcwd(PyObject *self, PyObject *noargs)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002058{
Facundo Batista5596b0c2008-06-22 13:36:20 +00002059 int bufsize_incr = 1024;
2060 int bufsize = 0;
2061 char *tmpbuf = NULL;
2062 char *res = NULL;
2063 PyObject *dynamic_return;
Neal Norwitze241ce82003-02-17 18:17:05 +00002064
Barry Warsaw53699e91996-12-10 23:23:01 +00002065 Py_BEGIN_ALLOW_THREADS
Facundo Batista5596b0c2008-06-22 13:36:20 +00002066 do {
2067 bufsize = bufsize + bufsize_incr;
2068 tmpbuf = malloc(bufsize);
2069 if (tmpbuf == NULL) {
2070 break;
2071 }
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00002072#if defined(PYOS_OS2) && defined(PYCC_GCC)
Facundo Batista5596b0c2008-06-22 13:36:20 +00002073 res = _getcwd2(tmpbuf, bufsize);
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00002074#else
Facundo Batista5596b0c2008-06-22 13:36:20 +00002075 res = getcwd(tmpbuf, bufsize);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00002076#endif
Facundo Batista5596b0c2008-06-22 13:36:20 +00002077
2078 if (res == NULL) {
2079 free(tmpbuf);
2080 }
2081 } while ((res == NULL) && (errno == ERANGE));
Barry Warsaw53699e91996-12-10 23:23:01 +00002082 Py_END_ALLOW_THREADS
Facundo Batista5596b0c2008-06-22 13:36:20 +00002083
Guido van Rossumff4949e1992-08-05 19:58:53 +00002084 if (res == NULL)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002085 return posix_error();
Facundo Batista5596b0c2008-06-22 13:36:20 +00002086
2087 dynamic_return = PyString_FromString(tmpbuf);
2088 free(tmpbuf);
2089
2090 return dynamic_return;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002091}
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002092
Walter Dörwald3b918c32002-11-21 20:18:46 +00002093#ifdef Py_USING_UNICODE
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002094PyDoc_STRVAR(posix_getcwdu__doc__,
2095"getcwdu() -> path\n\n\
2096Return a unicode string representing the current working directory.");
2097
2098static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00002099posix_getcwdu(PyObject *self, PyObject *noargs)
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002100{
2101 char buf[1026];
2102 char *res;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002103
2104#ifdef Py_WIN_WIDE_FILENAMES
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002105 DWORD len;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002106 if (unicode_file_names()) {
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002107 wchar_t wbuf[1026];
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002108 wchar_t *wbuf2 = wbuf;
2109 PyObject *resobj;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002110 Py_BEGIN_ALLOW_THREADS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002111 len = GetCurrentDirectoryW(sizeof wbuf/ sizeof wbuf[0], wbuf);
2112 /* If the buffer is large enough, len does not include the
2113 terminating \0. If the buffer is too small, len includes
2114 the space needed for the terminator. */
2115 if (len >= sizeof wbuf/ sizeof wbuf[0]) {
2116 wbuf2 = malloc(len * sizeof(wchar_t));
2117 if (wbuf2)
2118 len = GetCurrentDirectoryW(len, wbuf2);
2119 }
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002120 Py_END_ALLOW_THREADS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002121 if (!wbuf2) {
2122 PyErr_NoMemory();
2123 return NULL;
2124 }
2125 if (!len) {
2126 if (wbuf2 != wbuf) free(wbuf2);
2127 return win32_error("getcwdu", NULL);
2128 }
2129 resobj = PyUnicode_FromWideChar(wbuf2, len);
2130 if (wbuf2 != wbuf) free(wbuf2);
2131 return resobj;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002132 }
2133#endif
2134
2135 Py_BEGIN_ALLOW_THREADS
2136#if defined(PYOS_OS2) && defined(PYCC_GCC)
2137 res = _getcwd2(buf, sizeof buf);
2138#else
2139 res = getcwd(buf, sizeof buf);
2140#endif
2141 Py_END_ALLOW_THREADS
2142 if (res == NULL)
2143 return posix_error();
2144 return PyUnicode_Decode(buf, strlen(buf), Py_FileSystemDefaultEncoding,"strict");
2145}
Guido van Rossum36bc6801995-06-14 22:54:23 +00002146#endif
Walter Dörwald3b918c32002-11-21 20:18:46 +00002147#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002148
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002149
Guido van Rossumb6775db1994-08-01 11:34:53 +00002150#ifdef HAVE_LINK
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002151PyDoc_STRVAR(posix_link__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002152"link(src, dst)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002153Create a hard link to a file.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002154
Barry Warsaw53699e91996-12-10 23:23:01 +00002155static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002156posix_link(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002157{
Martin v. Löwis4fc2bda2006-05-04 12:04:27 +00002158 return posix_2str(args, "etet:link", link);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002159}
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002160#endif /* HAVE_LINK */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002161
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002162
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002163PyDoc_STRVAR(posix_listdir__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002164"listdir(path) -> list_of_strings\n\n\
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002165Return a list containing the names of the entries in the directory.\n\
2166\n\
2167 path: path of directory to list\n\
2168\n\
2169The list is in arbitrary order. It does not include the special\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002170entries '.' and '..' even if they are present in the directory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002171
Barry Warsaw53699e91996-12-10 23:23:01 +00002172static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002173posix_listdir(PyObject *self, PyObject *args)
Guido van Rossumb6775db1994-08-01 11:34:53 +00002174{
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002175 /* XXX Should redo this putting the (now four) versions of opendir
Guido van Rossum6d8841c1997-08-14 19:57:39 +00002176 in separate files instead of having them all here... */
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00002177#if defined(MS_WINDOWS) && !defined(HAVE_OPENDIR)
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002178
Barry Warsaw53699e91996-12-10 23:23:01 +00002179 PyObject *d, *v;
Guido van Rossumb6775db1994-08-01 11:34:53 +00002180 HANDLE hFindFile;
Martin v. Löwise920f0d2006-03-07 23:59:33 +00002181 BOOL result;
Guido van Rossumb6775db1994-08-01 11:34:53 +00002182 WIN32_FIND_DATA FileData;
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002183 char namebuf[MAX_PATH+5]; /* Overallocate for \\*.*\0 */
Mark Hammondef8b6542001-05-13 08:04:26 +00002184 char *bufptr = namebuf;
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002185 Py_ssize_t len = sizeof(namebuf)-5; /* only claim to have space for MAX_PATH */
Guido van Rossumb6775db1994-08-01 11:34:53 +00002186
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002187#ifdef Py_WIN_WIDE_FILENAMES
2188 /* If on wide-character-capable OS see if argument
2189 is Unicode and if so use wide API. */
2190 if (unicode_file_names()) {
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002191 PyObject *po;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002192 if (PyArg_ParseTuple(args, "U:listdir", &po)) {
2193 WIN32_FIND_DATAW wFileData;
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002194 Py_UNICODE *wnamebuf;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002195 Py_UNICODE wch;
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002196 /* Overallocate for \\*.*\0 */
2197 len = PyUnicode_GET_SIZE(po);
2198 wnamebuf = malloc((len + 5) * sizeof(wchar_t));
2199 if (!wnamebuf) {
2200 PyErr_NoMemory();
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002201 return NULL;
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002202 }
2203 wcscpy(wnamebuf, PyUnicode_AS_UNICODE(po));
2204 wch = len > 0 ? wnamebuf[len-1] : '\0';
2205 if (wch != L'/' && wch != L'\\' && wch != L':')
2206 wnamebuf[len++] = L'\\';
2207 wcscpy(wnamebuf + len, L"*.*");
2208 if ((d = PyList_New(0)) == NULL) {
2209 free(wnamebuf);
2210 return NULL;
2211 }
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002212 hFindFile = FindFirstFileW(wnamebuf, &wFileData);
2213 if (hFindFile == INVALID_HANDLE_VALUE) {
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002214 int error = GetLastError();
2215 if (error == ERROR_FILE_NOT_FOUND) {
2216 free(wnamebuf);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002217 return d;
2218 }
2219 Py_DECREF(d);
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002220 win32_error_unicode("FindFirstFileW", wnamebuf);
2221 free(wnamebuf);
2222 return NULL;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002223 }
2224 do {
Martin v. Löwise920f0d2006-03-07 23:59:33 +00002225 /* Skip over . and .. */
2226 if (wcscmp(wFileData.cFileName, L".") != 0 &&
2227 wcscmp(wFileData.cFileName, L"..") != 0) {
2228 v = PyUnicode_FromUnicode(wFileData.cFileName, wcslen(wFileData.cFileName));
2229 if (v == NULL) {
2230 Py_DECREF(d);
2231 d = NULL;
2232 break;
2233 }
2234 if (PyList_Append(d, v) != 0) {
2235 Py_DECREF(v);
2236 Py_DECREF(d);
2237 d = NULL;
2238 break;
2239 }
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002240 Py_DECREF(v);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002241 }
Georg Brandl622927b2006-03-07 12:48:03 +00002242 Py_BEGIN_ALLOW_THREADS
2243 result = FindNextFileW(hFindFile, &wFileData);
2244 Py_END_ALLOW_THREADS
Martin v. Löwis982e9fe2006-07-24 12:54:17 +00002245 /* FindNextFile sets error to ERROR_NO_MORE_FILES if
2246 it got to the end of the directory. */
2247 if (!result && GetLastError() != ERROR_NO_MORE_FILES) {
2248 Py_DECREF(d);
2249 win32_error_unicode("FindNextFileW", wnamebuf);
2250 FindClose(hFindFile);
2251 free(wnamebuf);
2252 return NULL;
2253 }
Georg Brandl622927b2006-03-07 12:48:03 +00002254 } while (result == TRUE);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002255
2256 if (FindClose(hFindFile) == FALSE) {
2257 Py_DECREF(d);
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002258 win32_error_unicode("FindClose", wnamebuf);
2259 free(wnamebuf);
2260 return NULL;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002261 }
Martin v. Löwise3edaea2006-05-15 05:51:36 +00002262 free(wnamebuf);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002263 return d;
2264 }
2265 /* Drop the argument parsing error as narrow strings
2266 are also valid. */
2267 PyErr_Clear();
2268 }
2269#endif
2270
Tim Peters5aa91602002-01-30 05:46:57 +00002271 if (!PyArg_ParseTuple(args, "et#:listdir",
Mark Hammondef8b6542001-05-13 08:04:26 +00002272 Py_FileSystemDefaultEncoding, &bufptr, &len))
Guido van Rossumb6775db1994-08-01 11:34:53 +00002273 return NULL;
Neil Schemenauer94b866a2002-03-22 20:51:58 +00002274 if (len > 0) {
2275 char ch = namebuf[len-1];
2276 if (ch != SEP && ch != ALTSEP && ch != ':')
2277 namebuf[len++] = '/';
2278 }
Guido van Rossumb6775db1994-08-01 11:34:53 +00002279 strcpy(namebuf + len, "*.*");
2280
Barry Warsaw53699e91996-12-10 23:23:01 +00002281 if ((d = PyList_New(0)) == NULL)
Guido van Rossumb6775db1994-08-01 11:34:53 +00002282 return NULL;
2283
2284 hFindFile = FindFirstFile(namebuf, &FileData);
2285 if (hFindFile == INVALID_HANDLE_VALUE) {
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002286 int error = GetLastError();
2287 if (error == ERROR_FILE_NOT_FOUND)
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002288 return d;
2289 Py_DECREF(d);
Mark Hammondef8b6542001-05-13 08:04:26 +00002290 return win32_error("FindFirstFile", namebuf);
Guido van Rossumb6775db1994-08-01 11:34:53 +00002291 }
2292 do {
Martin v. Löwise920f0d2006-03-07 23:59:33 +00002293 /* Skip over . and .. */
2294 if (strcmp(FileData.cFileName, ".") != 0 &&
2295 strcmp(FileData.cFileName, "..") != 0) {
Gregory P. Smithdd96db62008-06-09 04:58:54 +00002296 v = PyString_FromString(FileData.cFileName);
Martin v. Löwise920f0d2006-03-07 23:59:33 +00002297 if (v == NULL) {
2298 Py_DECREF(d);
2299 d = NULL;
2300 break;
2301 }
2302 if (PyList_Append(d, v) != 0) {
2303 Py_DECREF(v);
2304 Py_DECREF(d);
2305 d = NULL;
2306 break;
2307 }
Barry Warsaw53699e91996-12-10 23:23:01 +00002308 Py_DECREF(v);
Guido van Rossumb6775db1994-08-01 11:34:53 +00002309 }
Georg Brandl622927b2006-03-07 12:48:03 +00002310 Py_BEGIN_ALLOW_THREADS
2311 result = FindNextFile(hFindFile, &FileData);
2312 Py_END_ALLOW_THREADS
Martin v. Löwis982e9fe2006-07-24 12:54:17 +00002313 /* FindNextFile sets error to ERROR_NO_MORE_FILES if
2314 it got to the end of the directory. */
2315 if (!result && GetLastError() != ERROR_NO_MORE_FILES) {
2316 Py_DECREF(d);
2317 win32_error("FindNextFile", namebuf);
2318 FindClose(hFindFile);
2319 return NULL;
2320 }
Georg Brandl622927b2006-03-07 12:48:03 +00002321 } while (result == TRUE);
Guido van Rossumb6775db1994-08-01 11:34:53 +00002322
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002323 if (FindClose(hFindFile) == FALSE) {
2324 Py_DECREF(d);
Mark Hammondef8b6542001-05-13 08:04:26 +00002325 return win32_error("FindClose", namebuf);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002326 }
Guido van Rossumb6775db1994-08-01 11:34:53 +00002327
2328 return d;
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002329
Tim Peters0bb44a42000-09-15 07:44:49 +00002330#elif defined(PYOS_OS2)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002331
2332#ifndef MAX_PATH
2333#define MAX_PATH CCHMAXPATH
2334#endif
2335 char *name, *pt;
Thomas Wouters68bc4f92006-03-01 01:05:10 +00002336 Py_ssize_t len;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002337 PyObject *d, *v;
2338 char namebuf[MAX_PATH+5];
2339 HDIR hdir = 1;
2340 ULONG srchcnt = 1;
2341 FILEFINDBUF3 ep;
2342 APIRET rc;
2343
Fred Drake5ab8eaf1999-12-09 21:13:07 +00002344 if (!PyArg_ParseTuple(args, "t#:listdir", &name, &len))
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002345 return NULL;
2346 if (len >= MAX_PATH) {
2347 PyErr_SetString(PyExc_ValueError, "path too long");
2348 return NULL;
2349 }
2350 strcpy(namebuf, name);
2351 for (pt = namebuf; *pt; pt++)
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00002352 if (*pt == ALTSEP)
2353 *pt = SEP;
2354 if (namebuf[len-1] != SEP)
2355 namebuf[len++] = SEP;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002356 strcpy(namebuf + len, "*.*");
2357
2358 if ((d = PyList_New(0)) == NULL)
2359 return NULL;
2360
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002361 rc = DosFindFirst(namebuf, /* Wildcard Pattern to Match */
2362 &hdir, /* Handle to Use While Search Directory */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002363 FILE_READONLY | FILE_HIDDEN | FILE_SYSTEM | FILE_DIRECTORY,
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002364 &ep, sizeof(ep), /* Structure to Receive Directory Entry */
2365 &srchcnt, /* Max and Actual Count of Entries Per Iteration */
2366 FIL_STANDARD); /* Format of Entry (EAs or Not) */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002367
2368 if (rc != NO_ERROR) {
2369 errno = ENOENT;
Barry Warsawf63b8cc1999-05-27 23:13:21 +00002370 return posix_error_with_filename(name);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002371 }
2372
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002373 if (srchcnt > 0) { /* If Directory is NOT Totally Empty, */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002374 do {
2375 if (ep.achName[0] == '.'
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00002376 && (ep.achName[1] == '\0' || (ep.achName[1] == '.' && ep.achName[2] == '\0')))
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002377 continue; /* Skip Over "." and ".." Names */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002378
2379 strcpy(namebuf, ep.achName);
2380
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002381 /* Leave Case of Name Alone -- In Native Form */
2382 /* (Removed Forced Lowercasing Code) */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002383
Gregory P. Smithdd96db62008-06-09 04:58:54 +00002384 v = PyString_FromString(namebuf);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002385 if (v == NULL) {
2386 Py_DECREF(d);
2387 d = NULL;
2388 break;
2389 }
2390 if (PyList_Append(d, v) != 0) {
2391 Py_DECREF(v);
2392 Py_DECREF(d);
2393 d = NULL;
2394 break;
2395 }
2396 Py_DECREF(v);
2397 } while (DosFindNext(hdir, &ep, sizeof(ep), &srchcnt) == NO_ERROR && srchcnt > 0);
2398 }
2399
2400 return d;
2401#else
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002402
Just van Rossum2fe07fd2003-03-03 19:07:13 +00002403 char *name = NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00002404 PyObject *d, *v;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002405 DIR *dirp;
Guido van Rossumb6775db1994-08-01 11:34:53 +00002406 struct dirent *ep;
Just van Rossum96b1c902003-03-03 17:32:15 +00002407 int arg_is_unicode = 1;
2408
Georg Brandl05e89b82006-04-11 07:04:06 +00002409 errno = 0;
Just van Rossum96b1c902003-03-03 17:32:15 +00002410 if (!PyArg_ParseTuple(args, "U:listdir", &v)) {
2411 arg_is_unicode = 0;
2412 PyErr_Clear();
2413 }
2414 if (!PyArg_ParseTuple(args, "et:listdir", Py_FileSystemDefaultEncoding, &name))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002415 return NULL;
Guido van Rossumff4949e1992-08-05 19:58:53 +00002416 if ((dirp = opendir(name)) == NULL) {
Just van Rossum2fe07fd2003-03-03 19:07:13 +00002417 return posix_error_with_allocated_filename(name);
Guido van Rossumff4949e1992-08-05 19:58:53 +00002418 }
Barry Warsaw53699e91996-12-10 23:23:01 +00002419 if ((d = PyList_New(0)) == NULL) {
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002420 closedir(dirp);
Just van Rossum2fe07fd2003-03-03 19:07:13 +00002421 PyMem_Free(name);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002422 return NULL;
2423 }
Georg Brandl622927b2006-03-07 12:48:03 +00002424 for (;;) {
Georg Brandl86cbf812008-07-16 21:31:41 +00002425 errno = 0;
Georg Brandl622927b2006-03-07 12:48:03 +00002426 Py_BEGIN_ALLOW_THREADS
2427 ep = readdir(dirp);
2428 Py_END_ALLOW_THREADS
Georg Brandl86cbf812008-07-16 21:31:41 +00002429 if (ep == NULL) {
2430 if (errno == 0) {
2431 break;
2432 } else {
2433 closedir(dirp);
2434 Py_DECREF(d);
2435 return posix_error_with_allocated_filename(name);
2436 }
2437 }
Guido van Rossum24f42ac1995-07-18 18:16:52 +00002438 if (ep->d_name[0] == '.' &&
2439 (NAMLEN(ep) == 1 ||
Guido van Rossuma376cc51996-12-05 23:43:35 +00002440 (ep->d_name[1] == '.' && NAMLEN(ep) == 2)))
Guido van Rossum24f42ac1995-07-18 18:16:52 +00002441 continue;
Gregory P. Smithdd96db62008-06-09 04:58:54 +00002442 v = PyString_FromStringAndSize(ep->d_name, NAMLEN(ep));
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002443 if (v == NULL) {
Barry Warsaw53699e91996-12-10 23:23:01 +00002444 Py_DECREF(d);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002445 d = NULL;
2446 break;
2447 }
Just van Rossum46c97842003-02-25 21:42:15 +00002448#ifdef Py_USING_UNICODE
Just van Rossum96b1c902003-03-03 17:32:15 +00002449 if (arg_is_unicode) {
Just van Rossum46c97842003-02-25 21:42:15 +00002450 PyObject *w;
2451
2452 w = PyUnicode_FromEncodedObject(v,
Tim Peters11b23062003-04-23 02:39:17 +00002453 Py_FileSystemDefaultEncoding,
Just van Rossum46c97842003-02-25 21:42:15 +00002454 "strict");
Just van Rossum6a421832003-03-04 19:30:44 +00002455 if (w != NULL) {
2456 Py_DECREF(v);
2457 v = w;
2458 }
2459 else {
2460 /* fall back to the original byte string, as
2461 discussed in patch #683592 */
2462 PyErr_Clear();
Just van Rossum46c97842003-02-25 21:42:15 +00002463 }
Just van Rossum46c97842003-02-25 21:42:15 +00002464 }
2465#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00002466 if (PyList_Append(d, v) != 0) {
2467 Py_DECREF(v);
2468 Py_DECREF(d);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002469 d = NULL;
2470 break;
2471 }
Barry Warsaw53699e91996-12-10 23:23:01 +00002472 Py_DECREF(v);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002473 }
2474 closedir(dirp);
Just van Rossum2fe07fd2003-03-03 19:07:13 +00002475 PyMem_Free(name);
Guido van Rossum0ee42cd1991-04-08 21:01:03 +00002476
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002477 return d;
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002478
Tim Peters0bb44a42000-09-15 07:44:49 +00002479#endif /* which OS */
2480} /* end of posix_listdir */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002481
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00002482#ifdef MS_WINDOWS
Mark Hammondef8b6542001-05-13 08:04:26 +00002483/* A helper function for abspath on win32 */
2484static PyObject *
2485posix__getfullpathname(PyObject *self, PyObject *args)
2486{
2487 /* assume encoded strings wont more than double no of chars */
2488 char inbuf[MAX_PATH*2];
2489 char *inbufp = inbuf;
Tim Peters67d70eb2006-03-01 04:35:45 +00002490 Py_ssize_t insize = sizeof(inbuf);
Mark Hammondef8b6542001-05-13 08:04:26 +00002491 char outbuf[MAX_PATH*2];
2492 char *temp;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002493#ifdef Py_WIN_WIDE_FILENAMES
2494 if (unicode_file_names()) {
2495 PyUnicodeObject *po;
2496 if (PyArg_ParseTuple(args, "U|:_getfullpathname", &po)) {
Hirokazu Yamamotoed29bb42008-11-08 03:46:17 +00002497 Py_UNICODE *wpath = PyUnicode_AS_UNICODE(po);
2498 Py_UNICODE woutbuf[MAX_PATH*2], *woutbufp = woutbuf;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002499 Py_UNICODE *wtemp;
Hirokazu Yamamotoed29bb42008-11-08 03:46:17 +00002500 DWORD result;
2501 PyObject *v;
2502 result = GetFullPathNameW(wpath,
2503 sizeof(woutbuf)/sizeof(woutbuf[0]),
2504 woutbuf, &wtemp);
2505 if (result > sizeof(woutbuf)/sizeof(woutbuf[0])) {
2506 woutbufp = malloc(result * sizeof(Py_UNICODE));
2507 if (!woutbufp)
2508 return PyErr_NoMemory();
2509 result = GetFullPathNameW(wpath, result, woutbufp, &wtemp);
2510 }
2511 if (result)
2512 v = PyUnicode_FromUnicode(woutbufp, wcslen(woutbufp));
2513 else
2514 v = win32_error_unicode("GetFullPathNameW", wpath);
2515 if (woutbufp != woutbuf)
2516 free(woutbufp);
2517 return v;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002518 }
2519 /* Drop the argument parsing error as narrow strings
2520 are also valid. */
2521 PyErr_Clear();
2522 }
2523#endif
Tim Peters5aa91602002-01-30 05:46:57 +00002524 if (!PyArg_ParseTuple (args, "et#:_getfullpathname",
2525 Py_FileSystemDefaultEncoding, &inbufp,
Mark Hammondef8b6542001-05-13 08:04:26 +00002526 &insize))
2527 return NULL;
2528 if (!GetFullPathName(inbuf, sizeof(outbuf)/sizeof(outbuf[0]),
2529 outbuf, &temp))
2530 return win32_error("GetFullPathName", inbuf);
Martin v. Löwis969297f2004-06-15 18:49:58 +00002531 if (PyUnicode_Check(PyTuple_GetItem(args, 0))) {
2532 return PyUnicode_Decode(outbuf, strlen(outbuf),
2533 Py_FileSystemDefaultEncoding, NULL);
2534 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00002535 return PyString_FromString(outbuf);
Mark Hammondef8b6542001-05-13 08:04:26 +00002536} /* end of posix__getfullpathname */
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00002537#endif /* MS_WINDOWS */
Mark Hammondef8b6542001-05-13 08:04:26 +00002538
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002539PyDoc_STRVAR(posix_mkdir__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002540"mkdir(path [, mode=0777])\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002541Create a directory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002542
Barry Warsaw53699e91996-12-10 23:23:01 +00002543static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002544posix_mkdir(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002545{
Guido van Rossumb0824db1996-02-25 04:50:32 +00002546 int res;
Mark Hammondef8b6542001-05-13 08:04:26 +00002547 char *path = NULL;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002548 int mode = 0777;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002549
2550#ifdef Py_WIN_WIDE_FILENAMES
2551 if (unicode_file_names()) {
2552 PyUnicodeObject *po;
Mark Hammond05107b62003-02-19 04:08:27 +00002553 if (PyArg_ParseTuple(args, "U|i:mkdir", &po, &mode)) {
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002554 Py_BEGIN_ALLOW_THREADS
2555 /* PyUnicode_AS_UNICODE OK without thread lock as
2556 it is a simple dereference. */
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002557 res = CreateDirectoryW(PyUnicode_AS_UNICODE(po), NULL);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002558 Py_END_ALLOW_THREADS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002559 if (!res)
2560 return win32_error_unicode("mkdir", PyUnicode_AS_UNICODE(po));
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002561 Py_INCREF(Py_None);
2562 return Py_None;
2563 }
2564 /* Drop the argument parsing error as narrow strings
2565 are also valid. */
2566 PyErr_Clear();
2567 }
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002568 if (!PyArg_ParseTuple(args, "et|i:mkdir",
2569 Py_FileSystemDefaultEncoding, &path, &mode))
2570 return NULL;
2571 Py_BEGIN_ALLOW_THREADS
2572 /* PyUnicode_AS_UNICODE OK without thread lock as
2573 it is a simple dereference. */
2574 res = CreateDirectoryA(path, NULL);
2575 Py_END_ALLOW_THREADS
2576 if (!res) {
2577 win32_error("mkdir", path);
2578 PyMem_Free(path);
2579 return NULL;
2580 }
2581 PyMem_Free(path);
2582 Py_INCREF(Py_None);
2583 return Py_None;
2584#else
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002585
Tim Peters5aa91602002-01-30 05:46:57 +00002586 if (!PyArg_ParseTuple(args, "et|i:mkdir",
Mark Hammondef8b6542001-05-13 08:04:26 +00002587 Py_FileSystemDefaultEncoding, &path, &mode))
Guido van Rossumb0824db1996-02-25 04:50:32 +00002588 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00002589 Py_BEGIN_ALLOW_THREADS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002590#if ( defined(__WATCOMC__) || defined(PYCC_VACPP) ) && !defined(__QNX__)
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002591 res = mkdir(path);
2592#else
Guido van Rossumb0824db1996-02-25 04:50:32 +00002593 res = mkdir(path, mode);
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002594#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00002595 Py_END_ALLOW_THREADS
Guido van Rossumb0824db1996-02-25 04:50:32 +00002596 if (res < 0)
Mark Hammondef8b6542001-05-13 08:04:26 +00002597 return posix_error_with_allocated_filename(path);
2598 PyMem_Free(path);
Barry Warsaw53699e91996-12-10 23:23:01 +00002599 Py_INCREF(Py_None);
2600 return Py_None;
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002601#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002602}
2603
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002604
Neal Norwitz1818ed72006-03-26 00:29:48 +00002605/* sys/resource.h is needed for at least: wait3(), wait4(), broken nice. */
2606#if defined(HAVE_SYS_RESOURCE_H)
Thomas Wouterse38b2f12001-07-11 22:35:31 +00002607#include <sys/resource.h>
2608#endif
Thomas Wouterse38b2f12001-07-11 22:35:31 +00002609
Neal Norwitz1818ed72006-03-26 00:29:48 +00002610
2611#ifdef HAVE_NICE
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002612PyDoc_STRVAR(posix_nice__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002613"nice(inc) -> new_priority\n\n\
2614Decrease the priority of process by inc and return the new priority.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002615
Barry Warsaw53699e91996-12-10 23:23:01 +00002616static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002617posix_nice(PyObject *self, PyObject *args)
Guido van Rossum775f4da1993-01-09 17:18:52 +00002618{
2619 int increment, value;
2620
Fred Drake5ab8eaf1999-12-09 21:13:07 +00002621 if (!PyArg_ParseTuple(args, "i:nice", &increment))
Guido van Rossum775f4da1993-01-09 17:18:52 +00002622 return NULL;
Thomas Woutersc2c12dc2001-07-11 14:45:34 +00002623
2624 /* There are two flavours of 'nice': one that returns the new
2625 priority (as required by almost all standards out there) and the
Thomas Wouterse38b2f12001-07-11 22:35:31 +00002626 Linux/FreeBSD/BSDI one, which returns '0' on success and advices
2627 the use of getpriority() to get the new priority.
Tim Peters5aa91602002-01-30 05:46:57 +00002628
Thomas Woutersc2c12dc2001-07-11 14:45:34 +00002629 If we are of the nice family that returns the new priority, we
2630 need to clear errno before the call, and check if errno is filled
2631 before calling posix_error() on a returnvalue of -1, because the
2632 -1 may be the actual new priority! */
2633
2634 errno = 0;
Guido van Rossum775f4da1993-01-09 17:18:52 +00002635 value = nice(increment);
Thomas Wouterse38b2f12001-07-11 22:35:31 +00002636#if defined(HAVE_BROKEN_NICE) && defined(HAVE_GETPRIORITY)
Thomas Woutersc2c12dc2001-07-11 14:45:34 +00002637 if (value == 0)
2638 value = getpriority(PRIO_PROCESS, 0);
2639#endif
2640 if (value == -1 && errno != 0)
2641 /* either nice() or getpriority() returned an error */
Guido van Rossum775f4da1993-01-09 17:18:52 +00002642 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00002643 return PyInt_FromLong((long) value);
Guido van Rossum775f4da1993-01-09 17:18:52 +00002644}
Guido van Rossumb6775db1994-08-01 11:34:53 +00002645#endif /* HAVE_NICE */
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002646
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002647PyDoc_STRVAR(posix_rename__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002648"rename(old, new)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002649Rename a file or directory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002650
Barry Warsaw53699e91996-12-10 23:23:01 +00002651static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002652posix_rename(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002653{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002654#ifdef MS_WINDOWS
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002655 PyObject *o1, *o2;
2656 char *p1, *p2;
2657 BOOL result;
2658 if (unicode_file_names()) {
Hirokazu Yamamotoa0fdd722008-08-17 09:19:52 +00002659 if (!PyArg_ParseTuple(args, "OO:rename", &o1, &o2))
2660 goto error;
2661 if (!convert_to_unicode(&o1))
2662 goto error;
2663 if (!convert_to_unicode(&o2)) {
2664 Py_DECREF(o1);
2665 goto error;
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002666 }
Hirokazu Yamamotoa0fdd722008-08-17 09:19:52 +00002667 Py_BEGIN_ALLOW_THREADS
2668 result = MoveFileW(PyUnicode_AsUnicode(o1),
2669 PyUnicode_AsUnicode(o2));
2670 Py_END_ALLOW_THREADS
2671 Py_DECREF(o1);
2672 Py_DECREF(o2);
2673 if (!result)
2674 return win32_error("rename", NULL);
2675 Py_INCREF(Py_None);
2676 return Py_None;
2677error:
2678 PyErr_Clear();
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002679 }
2680 if (!PyArg_ParseTuple(args, "ss:rename", &p1, &p2))
2681 return NULL;
2682 Py_BEGIN_ALLOW_THREADS
2683 result = MoveFileA(p1, p2);
2684 Py_END_ALLOW_THREADS
2685 if (!result)
2686 return win32_error("rename", NULL);
2687 Py_INCREF(Py_None);
2688 return Py_None;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002689#else
Martin v. Löwis4fc2bda2006-05-04 12:04:27 +00002690 return posix_2str(args, "etet:rename", rename);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002691#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002692}
2693
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002694
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002695PyDoc_STRVAR(posix_rmdir__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002696"rmdir(path)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002697Remove a directory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002698
Barry Warsaw53699e91996-12-10 23:23:01 +00002699static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002700posix_rmdir(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002701{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002702#ifdef MS_WINDOWS
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002703 return win32_1str(args, "rmdir", "s:rmdir", RemoveDirectoryA, "U:rmdir", RemoveDirectoryW);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002704#else
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002705 return posix_1str(args, "et:rmdir", rmdir);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002706#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002707}
2708
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002709
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002710PyDoc_STRVAR(posix_stat__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002711"stat(path) -> stat result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002712Perform a stat system call on the given path.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002713
Barry Warsaw53699e91996-12-10 23:23:01 +00002714static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002715posix_stat(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002716{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002717#ifdef MS_WINDOWS
Martin v. Löwis14694662006-02-03 12:54:16 +00002718 return posix_do_stat(self, args, "et:stat", STAT, "U:stat", win32_wstat);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002719#else
2720 return posix_do_stat(self, args, "et:stat", STAT, NULL, NULL);
2721#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002722}
2723
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002724
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002725#ifdef HAVE_SYSTEM
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002726PyDoc_STRVAR(posix_system__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002727"system(command) -> exit_status\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002728Execute the command (a string) in a subshell.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002729
Barry Warsaw53699e91996-12-10 23:23:01 +00002730static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002731posix_system(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002732{
Guido van Rossumef0a00e1992-01-27 16:51:30 +00002733 char *command;
Guido van Rossumff4949e1992-08-05 19:58:53 +00002734 long sts;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00002735 if (!PyArg_ParseTuple(args, "s:system", &command))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002736 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00002737 Py_BEGIN_ALLOW_THREADS
Guido van Rossumef0a00e1992-01-27 16:51:30 +00002738 sts = system(command);
Barry Warsaw53699e91996-12-10 23:23:01 +00002739 Py_END_ALLOW_THREADS
2740 return PyInt_FromLong(sts);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002741}
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002742#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002743
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002744
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002745PyDoc_STRVAR(posix_umask__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002746"umask(new_mask) -> old_mask\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002747Set the current numeric umask and return the previous umask.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002748
Barry Warsaw53699e91996-12-10 23:23:01 +00002749static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002750posix_umask(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002751{
2752 int i;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00002753 if (!PyArg_ParseTuple(args, "i:umask", &i))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002754 return NULL;
Fred Drake0368bc42001-07-19 20:48:32 +00002755 i = (int)umask(i);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002756 if (i < 0)
2757 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00002758 return PyInt_FromLong((long)i);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002759}
2760
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002761
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002762PyDoc_STRVAR(posix_unlink__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002763"unlink(path)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002764Remove a file (same as remove(path)).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002765
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002766PyDoc_STRVAR(posix_remove__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002767"remove(path)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002768Remove a file (same as unlink(path)).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002769
Barry Warsaw53699e91996-12-10 23:23:01 +00002770static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002771posix_unlink(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002772{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002773#ifdef MS_WINDOWS
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002774 return win32_1str(args, "remove", "s:remove", DeleteFileA, "U:remove", DeleteFileW);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002775#else
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002776 return posix_1str(args, "et:remove", unlink);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002777#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002778}
2779
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002780
Guido van Rossumb6775db1994-08-01 11:34:53 +00002781#ifdef HAVE_UNAME
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002782PyDoc_STRVAR(posix_uname__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002783"uname() -> (sysname, nodename, release, version, machine)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002784Return a tuple identifying the current operating system.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002785
Barry Warsaw53699e91996-12-10 23:23:01 +00002786static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00002787posix_uname(PyObject *self, PyObject *noargs)
Guido van Rossumc39de5f1992-02-05 11:15:54 +00002788{
Guido van Rossumc39de5f1992-02-05 11:15:54 +00002789 struct utsname u;
Guido van Rossumff4949e1992-08-05 19:58:53 +00002790 int res;
Neal Norwitze241ce82003-02-17 18:17:05 +00002791
Barry Warsaw53699e91996-12-10 23:23:01 +00002792 Py_BEGIN_ALLOW_THREADS
Guido van Rossumff4949e1992-08-05 19:58:53 +00002793 res = uname(&u);
Barry Warsaw53699e91996-12-10 23:23:01 +00002794 Py_END_ALLOW_THREADS
Guido van Rossumff4949e1992-08-05 19:58:53 +00002795 if (res < 0)
Guido van Rossumc39de5f1992-02-05 11:15:54 +00002796 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00002797 return Py_BuildValue("(sssss)",
Barry Warsaw43d68b81996-12-19 22:10:44 +00002798 u.sysname,
2799 u.nodename,
2800 u.release,
2801 u.version,
2802 u.machine);
Guido van Rossumc39de5f1992-02-05 11:15:54 +00002803}
Guido van Rossumb6775db1994-08-01 11:34:53 +00002804#endif /* HAVE_UNAME */
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002805
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002806static int
2807extract_time(PyObject *t, long* sec, long* usec)
2808{
2809 long intval;
2810 if (PyFloat_Check(t)) {
2811 double tval = PyFloat_AsDouble(t);
Christian Heimese93237d2007-12-19 02:37:44 +00002812 PyObject *intobj = Py_TYPE(t)->tp_as_number->nb_int(t);
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002813 if (!intobj)
2814 return -1;
2815 intval = PyInt_AsLong(intobj);
2816 Py_DECREF(intobj);
Michael W. Hudsonb8963812005-07-05 15:21:58 +00002817 if (intval == -1 && PyErr_Occurred())
2818 return -1;
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002819 *sec = intval;
Tim Peters96940cf2002-09-10 15:37:28 +00002820 *usec = (long)((tval - intval) * 1e6); /* can't exceed 1000000 */
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002821 if (*usec < 0)
2822 /* If rounding gave us a negative number,
2823 truncate. */
2824 *usec = 0;
2825 return 0;
2826 }
2827 intval = PyInt_AsLong(t);
2828 if (intval == -1 && PyErr_Occurred())
2829 return -1;
2830 *sec = intval;
2831 *usec = 0;
Martin v. Löwis076b2092002-09-10 15:04:41 +00002832 return 0;
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002833}
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002834
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002835PyDoc_STRVAR(posix_utime__doc__,
Georg Brandl9e5b5e42006-05-17 14:18:20 +00002836"utime(path, (atime, mtime))\n\
Fred Drakef7ce04d2002-06-20 18:31:21 +00002837utime(path, None)\n\n\
Barry Warsaw3cef8562000-05-01 16:17:24 +00002838Set the access and modified time of the file to the given values. If the\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002839second form is used, set the access and modified times to the current time.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002840
Barry Warsaw53699e91996-12-10 23:23:01 +00002841static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002842posix_utime(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002843{
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002844#ifdef Py_WIN_WIDE_FILENAMES
2845 PyObject *arg;
2846 PyUnicodeObject *obwpath;
2847 wchar_t *wpath = NULL;
2848 char *apath = NULL;
2849 HANDLE hFile;
2850 long atimesec, mtimesec, ausec, musec;
2851 FILETIME atime, mtime;
2852 PyObject *result = NULL;
2853
2854 if (unicode_file_names()) {
2855 if (PyArg_ParseTuple(args, "UO|:utime", &obwpath, &arg)) {
2856 wpath = PyUnicode_AS_UNICODE(obwpath);
2857 Py_BEGIN_ALLOW_THREADS
2858 hFile = CreateFileW(wpath, FILE_WRITE_ATTRIBUTES, 0,
Martin v. Löwis18aaa562006-10-15 08:43:33 +00002859 NULL, OPEN_EXISTING,
2860 FILE_FLAG_BACKUP_SEMANTICS, NULL);
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002861 Py_END_ALLOW_THREADS
2862 if (hFile == INVALID_HANDLE_VALUE)
2863 return win32_error_unicode("utime", wpath);
2864 } else
2865 /* Drop the argument parsing error as narrow strings
2866 are also valid. */
2867 PyErr_Clear();
2868 }
2869 if (!wpath) {
2870 if (!PyArg_ParseTuple(args, "etO:utime",
2871 Py_FileSystemDefaultEncoding, &apath, &arg))
2872 return NULL;
2873 Py_BEGIN_ALLOW_THREADS
2874 hFile = CreateFileA(apath, FILE_WRITE_ATTRIBUTES, 0,
Martin v. Löwis18aaa562006-10-15 08:43:33 +00002875 NULL, OPEN_EXISTING,
2876 FILE_FLAG_BACKUP_SEMANTICS, NULL);
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002877 Py_END_ALLOW_THREADS
2878 if (hFile == INVALID_HANDLE_VALUE) {
2879 win32_error("utime", apath);
2880 PyMem_Free(apath);
2881 return NULL;
2882 }
2883 PyMem_Free(apath);
2884 }
2885
2886 if (arg == Py_None) {
2887 SYSTEMTIME now;
2888 GetSystemTime(&now);
2889 if (!SystemTimeToFileTime(&now, &mtime) ||
2890 !SystemTimeToFileTime(&now, &atime)) {
2891 win32_error("utime", NULL);
2892 goto done;
2893 }
2894 }
2895 else if (!PyTuple_Check(arg) || PyTuple_Size(arg) != 2) {
2896 PyErr_SetString(PyExc_TypeError,
2897 "utime() arg 2 must be a tuple (atime, mtime)");
2898 goto done;
2899 }
2900 else {
2901 if (extract_time(PyTuple_GET_ITEM(arg, 0),
2902 &atimesec, &ausec) == -1)
2903 goto done;
Martin v. Löwisf43893a2006-10-09 20:44:25 +00002904 time_t_to_FILE_TIME(atimesec, 1000*ausec, &atime);
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002905 if (extract_time(PyTuple_GET_ITEM(arg, 1),
2906 &mtimesec, &musec) == -1)
2907 goto done;
Martin v. Löwisf43893a2006-10-09 20:44:25 +00002908 time_t_to_FILE_TIME(mtimesec, 1000*musec, &mtime);
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002909 }
2910 if (!SetFileTime(hFile, NULL, &atime, &mtime)) {
2911 /* Avoid putting the file name into the error here,
2912 as that may confuse the user into believing that
2913 something is wrong with the file, when it also
2914 could be the time stamp that gives a problem. */
2915 win32_error("utime", NULL);
2916 }
2917 Py_INCREF(Py_None);
2918 result = Py_None;
2919done:
2920 CloseHandle(hFile);
2921 return result;
2922#else /* Py_WIN_WIDE_FILENAMES */
2923
Neal Norwitz2adf2102004-06-09 01:46:02 +00002924 char *path = NULL;
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002925 long atime, mtime, ausec, musec;
Guido van Rossumff4949e1992-08-05 19:58:53 +00002926 int res;
Barry Warsaw3cef8562000-05-01 16:17:24 +00002927 PyObject* arg;
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002928
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002929#if defined(HAVE_UTIMES)
2930 struct timeval buf[2];
2931#define ATIME buf[0].tv_sec
2932#define MTIME buf[1].tv_sec
2933#elif defined(HAVE_UTIME_H)
Guido van Rossum6d8841c1997-08-14 19:57:39 +00002934/* XXX should define struct utimbuf instead, above */
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002935 struct utimbuf buf;
2936#define ATIME buf.actime
2937#define MTIME buf.modtime
2938#define UTIME_ARG &buf
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002939#else /* HAVE_UTIMES */
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002940 time_t buf[2];
2941#define ATIME buf[0]
2942#define MTIME buf[1]
2943#define UTIME_ARG buf
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002944#endif /* HAVE_UTIMES */
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002945
Mark Hammond817c9292003-12-03 01:22:38 +00002946
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002947 if (!PyArg_ParseTuple(args, "etO:utime",
Hye-Shik Chang2b2c9732004-01-04 13:54:25 +00002948 Py_FileSystemDefaultEncoding, &path, &arg))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002949 return NULL;
Barry Warsaw3cef8562000-05-01 16:17:24 +00002950 if (arg == Py_None) {
2951 /* optional time values not given */
2952 Py_BEGIN_ALLOW_THREADS
2953 res = utime(path, NULL);
2954 Py_END_ALLOW_THREADS
2955 }
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002956 else if (!PyTuple_Check(arg) || PyTuple_Size(arg) != 2) {
Barry Warsaw3cef8562000-05-01 16:17:24 +00002957 PyErr_SetString(PyExc_TypeError,
Fred Drake661ea262000-10-24 19:57:45 +00002958 "utime() arg 2 must be a tuple (atime, mtime)");
Neal Norwitz96652712004-06-06 20:40:27 +00002959 PyMem_Free(path);
Barry Warsaw3cef8562000-05-01 16:17:24 +00002960 return NULL;
2961 }
2962 else {
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002963 if (extract_time(PyTuple_GET_ITEM(arg, 0),
Neal Norwitz96652712004-06-06 20:40:27 +00002964 &atime, &ausec) == -1) {
2965 PyMem_Free(path);
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002966 return NULL;
Neal Norwitz96652712004-06-06 20:40:27 +00002967 }
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002968 if (extract_time(PyTuple_GET_ITEM(arg, 1),
Neal Norwitz96652712004-06-06 20:40:27 +00002969 &mtime, &musec) == -1) {
2970 PyMem_Free(path);
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002971 return NULL;
Neal Norwitz96652712004-06-06 20:40:27 +00002972 }
Barry Warsaw3cef8562000-05-01 16:17:24 +00002973 ATIME = atime;
2974 MTIME = mtime;
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002975#ifdef HAVE_UTIMES
2976 buf[0].tv_usec = ausec;
2977 buf[1].tv_usec = musec;
2978 Py_BEGIN_ALLOW_THREADS
2979 res = utimes(path, buf);
2980 Py_END_ALLOW_THREADS
2981#else
Barry Warsaw3cef8562000-05-01 16:17:24 +00002982 Py_BEGIN_ALLOW_THREADS
2983 res = utime(path, UTIME_ARG);
2984 Py_END_ALLOW_THREADS
Mark Hammond817c9292003-12-03 01:22:38 +00002985#endif /* HAVE_UTIMES */
Barry Warsaw3cef8562000-05-01 16:17:24 +00002986 }
Mark Hammond2d5914b2004-05-04 08:10:37 +00002987 if (res < 0) {
Neal Norwitz96652712004-06-06 20:40:27 +00002988 return posix_error_with_allocated_filename(path);
Mark Hammond2d5914b2004-05-04 08:10:37 +00002989 }
Neal Norwitz96652712004-06-06 20:40:27 +00002990 PyMem_Free(path);
Barry Warsaw53699e91996-12-10 23:23:01 +00002991 Py_INCREF(Py_None);
2992 return Py_None;
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002993#undef UTIME_ARG
2994#undef ATIME
2995#undef MTIME
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002996#endif /* Py_WIN_WIDE_FILENAMES */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002997}
2998
Guido van Rossum85e3b011991-06-03 12:42:10 +00002999
Guido van Rossum3b066191991-06-04 19:40:25 +00003000/* Process operations */
Guido van Rossum85e3b011991-06-03 12:42:10 +00003001
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003002PyDoc_STRVAR(posix__exit__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003003"_exit(status)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003004Exit to the system with specified status, without normal exit processing.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003005
Barry Warsaw53699e91996-12-10 23:23:01 +00003006static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00003007posix__exit(PyObject *self, PyObject *args)
Guido van Rossum85e3b011991-06-03 12:42:10 +00003008{
3009 int sts;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00003010 if (!PyArg_ParseTuple(args, "i:_exit", &sts))
Guido van Rossum85e3b011991-06-03 12:42:10 +00003011 return NULL;
3012 _exit(sts);
Guido van Rossuma376cc51996-12-05 23:43:35 +00003013 return NULL; /* Make gcc -Wall happy */
Guido van Rossum85e3b011991-06-03 12:42:10 +00003014}
3015
Martin v. Löwis114619e2002-10-07 06:44:21 +00003016#if defined(HAVE_EXECV) || defined(HAVE_SPAWNV)
3017static void
Martin v. Löwis725507b2006-03-07 12:08:51 +00003018free_string_array(char **array, Py_ssize_t count)
Martin v. Löwis114619e2002-10-07 06:44:21 +00003019{
Martin v. Löwis725507b2006-03-07 12:08:51 +00003020 Py_ssize_t i;
Martin v. Löwis114619e2002-10-07 06:44:21 +00003021 for (i = 0; i < count; i++)
3022 PyMem_Free(array[i]);
3023 PyMem_DEL(array);
3024}
3025#endif
3026
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003027
Guido van Rossuma4916fa1996-05-23 22:58:55 +00003028#ifdef HAVE_EXECV
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003029PyDoc_STRVAR(posix_execv__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003030"execv(path, args)\n\n\
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003031Execute an executable path with arguments, replacing current process.\n\
3032\n\
3033 path: path of executable file\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003034 args: tuple or list of strings");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003035
Barry Warsaw53699e91996-12-10 23:23:01 +00003036static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00003037posix_execv(PyObject *self, PyObject *args)
Guido van Rossum85e3b011991-06-03 12:42:10 +00003038{
Guido van Rossumef0a00e1992-01-27 16:51:30 +00003039 char *path;
Barry Warsaw53699e91996-12-10 23:23:01 +00003040 PyObject *argv;
Guido van Rossum85e3b011991-06-03 12:42:10 +00003041 char **argvlist;
Martin v. Löwis725507b2006-03-07 12:08:51 +00003042 Py_ssize_t i, argc;
Martin v. Löwis18e16552006-02-15 17:27:45 +00003043 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Guido van Rossum85e3b011991-06-03 12:42:10 +00003044
Guido van Rossum89b33251993-10-22 14:26:06 +00003045 /* execv has two arguments: (path, argv), where
Guido van Rossum85e3b011991-06-03 12:42:10 +00003046 argv is a list or tuple of strings. */
3047
Martin v. Löwis114619e2002-10-07 06:44:21 +00003048 if (!PyArg_ParseTuple(args, "etO:execv",
3049 Py_FileSystemDefaultEncoding,
3050 &path, &argv))
Guido van Rossum85e3b011991-06-03 12:42:10 +00003051 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00003052 if (PyList_Check(argv)) {
3053 argc = PyList_Size(argv);
3054 getitem = PyList_GetItem;
Guido van Rossum85e3b011991-06-03 12:42:10 +00003055 }
Barry Warsaw53699e91996-12-10 23:23:01 +00003056 else if (PyTuple_Check(argv)) {
3057 argc = PyTuple_Size(argv);
3058 getitem = PyTuple_GetItem;
Guido van Rossum85e3b011991-06-03 12:42:10 +00003059 }
Guido van Rossumef0a00e1992-01-27 16:51:30 +00003060 else {
Fred Drake661ea262000-10-24 19:57:45 +00003061 PyErr_SetString(PyExc_TypeError, "execv() arg 2 must be a tuple or list");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003062 PyMem_Free(path);
Guido van Rossum50422b42000-04-26 20:34:28 +00003063 return NULL;
3064 }
3065
Barry Warsaw53699e91996-12-10 23:23:01 +00003066 argvlist = PyMem_NEW(char *, argc+1);
Martin v. Löwis114619e2002-10-07 06:44:21 +00003067 if (argvlist == NULL) {
3068 PyMem_Free(path);
Neal Norwitzec74f2f2003-02-11 23:05:40 +00003069 return PyErr_NoMemory();
Martin v. Löwis114619e2002-10-07 06:44:21 +00003070 }
Guido van Rossum85e3b011991-06-03 12:42:10 +00003071 for (i = 0; i < argc; i++) {
Martin v. Löwis114619e2002-10-07 06:44:21 +00003072 if (!PyArg_Parse((*getitem)(argv, i), "et",
3073 Py_FileSystemDefaultEncoding,
3074 &argvlist[i])) {
3075 free_string_array(argvlist, i);
Tim Peters5aa91602002-01-30 05:46:57 +00003076 PyErr_SetString(PyExc_TypeError,
Fred Drake661ea262000-10-24 19:57:45 +00003077 "execv() arg 2 must contain only strings");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003078 PyMem_Free(path);
Guido van Rossum50422b42000-04-26 20:34:28 +00003079 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00003080
Guido van Rossum85e3b011991-06-03 12:42:10 +00003081 }
Guido van Rossum85e3b011991-06-03 12:42:10 +00003082 }
3083 argvlist[argc] = NULL;
3084
Guido van Rossumef0a00e1992-01-27 16:51:30 +00003085 execv(path, argvlist);
Guido van Rossumb6775db1994-08-01 11:34:53 +00003086
Guido van Rossum85e3b011991-06-03 12:42:10 +00003087 /* If we get here it's definitely an error */
3088
Martin v. Löwis114619e2002-10-07 06:44:21 +00003089 free_string_array(argvlist, argc);
3090 PyMem_Free(path);
Guido van Rossum85e3b011991-06-03 12:42:10 +00003091 return posix_error();
3092}
3093
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003094
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003095PyDoc_STRVAR(posix_execve__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003096"execve(path, args, env)\n\n\
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003097Execute a path with arguments and environment, replacing current process.\n\
3098\n\
3099 path: path of executable file\n\
3100 args: tuple or list of arguments\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003101 env: dictionary of strings mapping to strings");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003102
Barry Warsaw53699e91996-12-10 23:23:01 +00003103static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00003104posix_execve(PyObject *self, PyObject *args)
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003105{
3106 char *path;
Barry Warsaw53699e91996-12-10 23:23:01 +00003107 PyObject *argv, *env;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003108 char **argvlist;
3109 char **envlist;
Barry Warsaw5ed19dc1997-01-29 15:08:24 +00003110 PyObject *key, *val, *keys=NULL, *vals=NULL;
Martin v. Löwis725507b2006-03-07 12:08:51 +00003111 Py_ssize_t i, pos, argc, envc;
Martin v. Löwis18e16552006-02-15 17:27:45 +00003112 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Martin v. Löwis26fd9602006-04-22 11:15:41 +00003113 Py_ssize_t lastarg = 0;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003114
3115 /* execve has three arguments: (path, argv, env), where
3116 argv is a list or tuple of strings and env is a dictionary
3117 like posix.environ. */
3118
Martin v. Löwis114619e2002-10-07 06:44:21 +00003119 if (!PyArg_ParseTuple(args, "etOO:execve",
3120 Py_FileSystemDefaultEncoding,
3121 &path, &argv, &env))
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003122 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00003123 if (PyList_Check(argv)) {
3124 argc = PyList_Size(argv);
3125 getitem = PyList_GetItem;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003126 }
Barry Warsaw53699e91996-12-10 23:23:01 +00003127 else if (PyTuple_Check(argv)) {
3128 argc = PyTuple_Size(argv);
3129 getitem = PyTuple_GetItem;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003130 }
3131 else {
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003132 PyErr_SetString(PyExc_TypeError,
3133 "execve() arg 2 must be a tuple or list");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003134 goto fail_0;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003135 }
Barry Warsaw5ed19dc1997-01-29 15:08:24 +00003136 if (!PyMapping_Check(env)) {
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003137 PyErr_SetString(PyExc_TypeError,
3138 "execve() arg 3 must be a mapping object");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003139 goto fail_0;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003140 }
3141
Barry Warsaw53699e91996-12-10 23:23:01 +00003142 argvlist = PyMem_NEW(char *, argc+1);
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003143 if (argvlist == NULL) {
Barry Warsaw53699e91996-12-10 23:23:01 +00003144 PyErr_NoMemory();
Martin v. Löwis114619e2002-10-07 06:44:21 +00003145 goto fail_0;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003146 }
3147 for (i = 0; i < argc; i++) {
Barry Warsaw53699e91996-12-10 23:23:01 +00003148 if (!PyArg_Parse((*getitem)(argv, i),
Martin v. Löwis114619e2002-10-07 06:44:21 +00003149 "et;execve() arg 2 must contain only strings",
Guido van Rossum1e700d22002-10-16 16:52:11 +00003150 Py_FileSystemDefaultEncoding,
Barry Warsaw43d68b81996-12-19 22:10:44 +00003151 &argvlist[i]))
3152 {
Martin v. Löwis114619e2002-10-07 06:44:21 +00003153 lastarg = i;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003154 goto fail_1;
3155 }
3156 }
Martin v. Löwis114619e2002-10-07 06:44:21 +00003157 lastarg = argc;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003158 argvlist[argc] = NULL;
3159
Jeremy Hylton03657cf2000-07-12 13:05:33 +00003160 i = PyMapping_Size(env);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003161 if (i < 0)
3162 goto fail_1;
Barry Warsaw53699e91996-12-10 23:23:01 +00003163 envlist = PyMem_NEW(char *, i + 1);
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003164 if (envlist == NULL) {
Barry Warsaw53699e91996-12-10 23:23:01 +00003165 PyErr_NoMemory();
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003166 goto fail_1;
3167 }
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003168 envc = 0;
Barry Warsaw5ed19dc1997-01-29 15:08:24 +00003169 keys = PyMapping_Keys(env);
3170 vals = PyMapping_Values(env);
3171 if (!keys || !vals)
3172 goto fail_2;
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003173 if (!PyList_Check(keys) || !PyList_Check(vals)) {
3174 PyErr_SetString(PyExc_TypeError,
3175 "execve(): env.keys() or env.values() is not a list");
3176 goto fail_2;
3177 }
Tim Peters5aa91602002-01-30 05:46:57 +00003178
Barry Warsaw5ed19dc1997-01-29 15:08:24 +00003179 for (pos = 0; pos < i; pos++) {
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003180 char *p, *k, *v;
Tim Petersc8996f52001-12-03 20:41:00 +00003181 size_t len;
Barry Warsaw5ed19dc1997-01-29 15:08:24 +00003182
3183 key = PyList_GetItem(keys, pos);
3184 val = PyList_GetItem(vals, pos);
3185 if (!key || !val)
3186 goto fail_2;
Tim Peters5aa91602002-01-30 05:46:57 +00003187
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003188 if (!PyArg_Parse(
3189 key,
3190 "s;execve() arg 3 contains a non-string key",
3191 &k) ||
3192 !PyArg_Parse(
3193 val,
3194 "s;execve() arg 3 contains a non-string value",
3195 &v))
Barry Warsaw43d68b81996-12-19 22:10:44 +00003196 {
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003197 goto fail_2;
3198 }
Guido van Rossumd48f2521997-12-05 22:19:34 +00003199
3200#if defined(PYOS_OS2)
3201 /* Omit Pseudo-Env Vars that Would Confuse Programs if Passed On */
3202 if (stricmp(k, "BEGINLIBPATH") != 0 && stricmp(k, "ENDLIBPATH") != 0) {
3203#endif
Gregory P. Smithdd96db62008-06-09 04:58:54 +00003204 len = PyString_Size(key) + PyString_Size(val) + 2;
Tim Petersc8996f52001-12-03 20:41:00 +00003205 p = PyMem_NEW(char, len);
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003206 if (p == NULL) {
Barry Warsaw53699e91996-12-10 23:23:01 +00003207 PyErr_NoMemory();
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003208 goto fail_2;
3209 }
Tim Petersc8996f52001-12-03 20:41:00 +00003210 PyOS_snprintf(p, len, "%s=%s", k, v);
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003211 envlist[envc++] = p;
Guido van Rossumd48f2521997-12-05 22:19:34 +00003212#if defined(PYOS_OS2)
3213 }
3214#endif
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003215 }
3216 envlist[envc] = 0;
3217
3218 execve(path, argvlist, envlist);
Tim Peters5aa91602002-01-30 05:46:57 +00003219
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003220 /* If we get here it's definitely an error */
3221
3222 (void) posix_error();
3223
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003224 fail_2:
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003225 while (--envc >= 0)
Barry Warsaw53699e91996-12-10 23:23:01 +00003226 PyMem_DEL(envlist[envc]);
3227 PyMem_DEL(envlist);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003228 fail_1:
3229 free_string_array(argvlist, lastarg);
Barry Warsaw5ed19dc1997-01-29 15:08:24 +00003230 Py_XDECREF(vals);
3231 Py_XDECREF(keys);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003232 fail_0:
Martin v. Löwis114619e2002-10-07 06:44:21 +00003233 PyMem_Free(path);
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003234 return NULL;
3235}
Guido van Rossuma4916fa1996-05-23 22:58:55 +00003236#endif /* HAVE_EXECV */
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003237
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003238
Guido van Rossuma1065681999-01-25 23:20:23 +00003239#ifdef HAVE_SPAWNV
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003240PyDoc_STRVAR(posix_spawnv__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003241"spawnv(mode, path, args)\n\n\
Tim Peters25059d32001-12-07 20:35:43 +00003242Execute the program 'path' in a new process.\n\
Guido van Rossuma1065681999-01-25 23:20:23 +00003243\n\
Fred Drakea6dff3e1999-02-01 22:24:40 +00003244 mode: mode of process creation\n\
Guido van Rossuma1065681999-01-25 23:20:23 +00003245 path: path of executable file\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003246 args: tuple or list of strings");
Guido van Rossuma1065681999-01-25 23:20:23 +00003247
3248static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00003249posix_spawnv(PyObject *self, PyObject *args)
Guido van Rossuma1065681999-01-25 23:20:23 +00003250{
3251 char *path;
3252 PyObject *argv;
3253 char **argvlist;
Martin v. Löwis26fd9602006-04-22 11:15:41 +00003254 int mode, i;
3255 Py_ssize_t argc;
Tim Peters79248aa2001-08-29 21:37:10 +00003256 Py_intptr_t spawnval;
Martin v. Löwis18e16552006-02-15 17:27:45 +00003257 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Guido van Rossuma1065681999-01-25 23:20:23 +00003258
3259 /* spawnv has three arguments: (mode, path, argv), where
3260 argv is a list or tuple of strings. */
3261
Martin v. Löwis114619e2002-10-07 06:44:21 +00003262 if (!PyArg_ParseTuple(args, "ietO:spawnv", &mode,
3263 Py_FileSystemDefaultEncoding,
3264 &path, &argv))
Guido van Rossuma1065681999-01-25 23:20:23 +00003265 return NULL;
3266 if (PyList_Check(argv)) {
3267 argc = PyList_Size(argv);
3268 getitem = PyList_GetItem;
3269 }
3270 else if (PyTuple_Check(argv)) {
3271 argc = PyTuple_Size(argv);
3272 getitem = PyTuple_GetItem;
3273 }
3274 else {
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003275 PyErr_SetString(PyExc_TypeError,
3276 "spawnv() arg 2 must be a tuple or list");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003277 PyMem_Free(path);
Guido van Rossuma1065681999-01-25 23:20:23 +00003278 return NULL;
3279 }
3280
3281 argvlist = PyMem_NEW(char *, argc+1);
Martin v. Löwis114619e2002-10-07 06:44:21 +00003282 if (argvlist == NULL) {
3283 PyMem_Free(path);
Neal Norwitzec74f2f2003-02-11 23:05:40 +00003284 return PyErr_NoMemory();
Martin v. Löwis114619e2002-10-07 06:44:21 +00003285 }
Guido van Rossuma1065681999-01-25 23:20:23 +00003286 for (i = 0; i < argc; i++) {
Martin v. Löwis114619e2002-10-07 06:44:21 +00003287 if (!PyArg_Parse((*getitem)(argv, i), "et",
3288 Py_FileSystemDefaultEncoding,
3289 &argvlist[i])) {
3290 free_string_array(argvlist, i);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003291 PyErr_SetString(
3292 PyExc_TypeError,
3293 "spawnv() arg 2 must contain only strings");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003294 PyMem_Free(path);
Fred Drake137507e2000-06-01 02:02:46 +00003295 return NULL;
Guido van Rossuma1065681999-01-25 23:20:23 +00003296 }
3297 }
3298 argvlist[argc] = NULL;
3299
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00003300#if defined(PYOS_OS2) && defined(PYCC_GCC)
3301 Py_BEGIN_ALLOW_THREADS
3302 spawnval = spawnv(mode, path, argvlist);
3303 Py_END_ALLOW_THREADS
3304#else
Guido van Rossum246bc171999-02-01 23:54:31 +00003305 if (mode == _OLD_P_OVERLAY)
3306 mode = _P_OVERLAY;
Tim Peters5aa91602002-01-30 05:46:57 +00003307
Tim Peters25059d32001-12-07 20:35:43 +00003308 Py_BEGIN_ALLOW_THREADS
Fred Drake699f3522000-06-29 21:12:41 +00003309 spawnval = _spawnv(mode, path, argvlist);
Tim Peters25059d32001-12-07 20:35:43 +00003310 Py_END_ALLOW_THREADS
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00003311#endif
Tim Peters5aa91602002-01-30 05:46:57 +00003312
Martin v. Löwis114619e2002-10-07 06:44:21 +00003313 free_string_array(argvlist, argc);
3314 PyMem_Free(path);
Guido van Rossuma1065681999-01-25 23:20:23 +00003315
Fred Drake699f3522000-06-29 21:12:41 +00003316 if (spawnval == -1)
Guido van Rossuma1065681999-01-25 23:20:23 +00003317 return posix_error();
3318 else
Fredrik Lundhe25cfd82000-07-09 13:10:40 +00003319#if SIZEOF_LONG == SIZEOF_VOID_P
3320 return Py_BuildValue("l", (long) spawnval);
Fred Drake699f3522000-06-29 21:12:41 +00003321#else
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00003322 return Py_BuildValue("L", (PY_LONG_LONG) spawnval);
Fred Drake699f3522000-06-29 21:12:41 +00003323#endif
Guido van Rossuma1065681999-01-25 23:20:23 +00003324}
3325
3326
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003327PyDoc_STRVAR(posix_spawnve__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003328"spawnve(mode, path, args, env)\n\n\
Tim Peters25059d32001-12-07 20:35:43 +00003329Execute the program 'path' in a new process.\n\
Guido van Rossuma1065681999-01-25 23:20:23 +00003330\n\
Fred Drakea6dff3e1999-02-01 22:24:40 +00003331 mode: mode of process creation\n\
Guido van Rossuma1065681999-01-25 23:20:23 +00003332 path: path of executable file\n\
3333 args: tuple or list of arguments\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003334 env: dictionary of strings mapping to strings");
Guido van Rossuma1065681999-01-25 23:20:23 +00003335
3336static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00003337posix_spawnve(PyObject *self, PyObject *args)
Guido van Rossuma1065681999-01-25 23:20:23 +00003338{
3339 char *path;
3340 PyObject *argv, *env;
3341 char **argvlist;
3342 char **envlist;
3343 PyObject *key, *val, *keys=NULL, *vals=NULL, *res=NULL;
Martin v. Löwis26fd9602006-04-22 11:15:41 +00003344 int mode, pos, envc;
3345 Py_ssize_t argc, i;
Tim Peters79248aa2001-08-29 21:37:10 +00003346 Py_intptr_t spawnval;
Martin v. Löwis18e16552006-02-15 17:27:45 +00003347 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Martin v. Löwis26fd9602006-04-22 11:15:41 +00003348 Py_ssize_t lastarg = 0;
Guido van Rossuma1065681999-01-25 23:20:23 +00003349
3350 /* spawnve has four arguments: (mode, path, argv, env), where
3351 argv is a list or tuple of strings and env is a dictionary
3352 like posix.environ. */
3353
Martin v. Löwis114619e2002-10-07 06:44:21 +00003354 if (!PyArg_ParseTuple(args, "ietOO:spawnve", &mode,
3355 Py_FileSystemDefaultEncoding,
3356 &path, &argv, &env))
Guido van Rossuma1065681999-01-25 23:20:23 +00003357 return NULL;
3358 if (PyList_Check(argv)) {
3359 argc = PyList_Size(argv);
3360 getitem = PyList_GetItem;
3361 }
3362 else if (PyTuple_Check(argv)) {
3363 argc = PyTuple_Size(argv);
3364 getitem = PyTuple_GetItem;
3365 }
3366 else {
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003367 PyErr_SetString(PyExc_TypeError,
3368 "spawnve() arg 2 must be a tuple or list");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003369 goto fail_0;
Guido van Rossuma1065681999-01-25 23:20:23 +00003370 }
3371 if (!PyMapping_Check(env)) {
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003372 PyErr_SetString(PyExc_TypeError,
3373 "spawnve() arg 3 must be a mapping object");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003374 goto fail_0;
Guido van Rossuma1065681999-01-25 23:20:23 +00003375 }
3376
3377 argvlist = PyMem_NEW(char *, argc+1);
3378 if (argvlist == NULL) {
3379 PyErr_NoMemory();
Martin v. Löwis114619e2002-10-07 06:44:21 +00003380 goto fail_0;
Guido van Rossuma1065681999-01-25 23:20:23 +00003381 }
3382 for (i = 0; i < argc; i++) {
3383 if (!PyArg_Parse((*getitem)(argv, i),
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003384 "et;spawnve() arg 2 must contain only strings",
Martin v. Löwis114619e2002-10-07 06:44:21 +00003385 Py_FileSystemDefaultEncoding,
Guido van Rossuma1065681999-01-25 23:20:23 +00003386 &argvlist[i]))
3387 {
Martin v. Löwis114619e2002-10-07 06:44:21 +00003388 lastarg = i;
Guido van Rossuma1065681999-01-25 23:20:23 +00003389 goto fail_1;
3390 }
3391 }
Martin v. Löwis114619e2002-10-07 06:44:21 +00003392 lastarg = argc;
Guido van Rossuma1065681999-01-25 23:20:23 +00003393 argvlist[argc] = NULL;
3394
Jeremy Hylton03657cf2000-07-12 13:05:33 +00003395 i = PyMapping_Size(env);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003396 if (i < 0)
3397 goto fail_1;
Guido van Rossuma1065681999-01-25 23:20:23 +00003398 envlist = PyMem_NEW(char *, i + 1);
3399 if (envlist == NULL) {
3400 PyErr_NoMemory();
3401 goto fail_1;
3402 }
3403 envc = 0;
3404 keys = PyMapping_Keys(env);
3405 vals = PyMapping_Values(env);
3406 if (!keys || !vals)
3407 goto fail_2;
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003408 if (!PyList_Check(keys) || !PyList_Check(vals)) {
3409 PyErr_SetString(PyExc_TypeError,
3410 "spawnve(): env.keys() or env.values() is not a list");
3411 goto fail_2;
3412 }
Tim Peters5aa91602002-01-30 05:46:57 +00003413
Guido van Rossuma1065681999-01-25 23:20:23 +00003414 for (pos = 0; pos < i; pos++) {
3415 char *p, *k, *v;
Tim Petersc8996f52001-12-03 20:41:00 +00003416 size_t len;
Guido van Rossuma1065681999-01-25 23:20:23 +00003417
3418 key = PyList_GetItem(keys, pos);
3419 val = PyList_GetItem(vals, pos);
3420 if (!key || !val)
3421 goto fail_2;
Tim Peters5aa91602002-01-30 05:46:57 +00003422
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003423 if (!PyArg_Parse(
3424 key,
3425 "s;spawnve() arg 3 contains a non-string key",
3426 &k) ||
3427 !PyArg_Parse(
3428 val,
3429 "s;spawnve() arg 3 contains a non-string value",
3430 &v))
Guido van Rossuma1065681999-01-25 23:20:23 +00003431 {
3432 goto fail_2;
3433 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00003434 len = PyString_Size(key) + PyString_Size(val) + 2;
Tim Petersc8996f52001-12-03 20:41:00 +00003435 p = PyMem_NEW(char, len);
Guido van Rossuma1065681999-01-25 23:20:23 +00003436 if (p == NULL) {
3437 PyErr_NoMemory();
3438 goto fail_2;
3439 }
Tim Petersc8996f52001-12-03 20:41:00 +00003440 PyOS_snprintf(p, len, "%s=%s", k, v);
Guido van Rossuma1065681999-01-25 23:20:23 +00003441 envlist[envc++] = p;
3442 }
3443 envlist[envc] = 0;
3444
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00003445#if defined(PYOS_OS2) && defined(PYCC_GCC)
3446 Py_BEGIN_ALLOW_THREADS
3447 spawnval = spawnve(mode, path, argvlist, envlist);
3448 Py_END_ALLOW_THREADS
3449#else
Guido van Rossum246bc171999-02-01 23:54:31 +00003450 if (mode == _OLD_P_OVERLAY)
3451 mode = _P_OVERLAY;
Tim Peters25059d32001-12-07 20:35:43 +00003452
3453 Py_BEGIN_ALLOW_THREADS
Fred Drake699f3522000-06-29 21:12:41 +00003454 spawnval = _spawnve(mode, path, argvlist, envlist);
Tim Peters25059d32001-12-07 20:35:43 +00003455 Py_END_ALLOW_THREADS
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00003456#endif
Tim Peters25059d32001-12-07 20:35:43 +00003457
Fred Drake699f3522000-06-29 21:12:41 +00003458 if (spawnval == -1)
Guido van Rossuma1065681999-01-25 23:20:23 +00003459 (void) posix_error();
3460 else
Fredrik Lundhe25cfd82000-07-09 13:10:40 +00003461#if SIZEOF_LONG == SIZEOF_VOID_P
3462 res = Py_BuildValue("l", (long) spawnval);
Fred Drake699f3522000-06-29 21:12:41 +00003463#else
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00003464 res = Py_BuildValue("L", (PY_LONG_LONG) spawnval);
Fred Drake699f3522000-06-29 21:12:41 +00003465#endif
Guido van Rossuma1065681999-01-25 23:20:23 +00003466
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003467 fail_2:
Guido van Rossuma1065681999-01-25 23:20:23 +00003468 while (--envc >= 0)
3469 PyMem_DEL(envlist[envc]);
3470 PyMem_DEL(envlist);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003471 fail_1:
Martin v. Löwis114619e2002-10-07 06:44:21 +00003472 free_string_array(argvlist, lastarg);
Guido van Rossuma1065681999-01-25 23:20:23 +00003473 Py_XDECREF(vals);
3474 Py_XDECREF(keys);
Martin v. Löwis114619e2002-10-07 06:44:21 +00003475 fail_0:
3476 PyMem_Free(path);
Guido van Rossuma1065681999-01-25 23:20:23 +00003477 return res;
3478}
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003479
3480/* OS/2 supports spawnvp & spawnvpe natively */
3481#if defined(PYOS_OS2)
3482PyDoc_STRVAR(posix_spawnvp__doc__,
3483"spawnvp(mode, file, args)\n\n\
3484Execute the program 'file' in a new process, using the environment\n\
3485search path to find the file.\n\
3486\n\
3487 mode: mode of process creation\n\
3488 file: executable file name\n\
3489 args: tuple or list of strings");
3490
3491static PyObject *
3492posix_spawnvp(PyObject *self, PyObject *args)
3493{
3494 char *path;
3495 PyObject *argv;
3496 char **argvlist;
3497 int mode, i, argc;
3498 Py_intptr_t spawnval;
Martin v. Löwis18e16552006-02-15 17:27:45 +00003499 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003500
3501 /* spawnvp has three arguments: (mode, path, argv), where
3502 argv is a list or tuple of strings. */
3503
3504 if (!PyArg_ParseTuple(args, "ietO:spawnvp", &mode,
3505 Py_FileSystemDefaultEncoding,
3506 &path, &argv))
3507 return NULL;
3508 if (PyList_Check(argv)) {
3509 argc = PyList_Size(argv);
3510 getitem = PyList_GetItem;
3511 }
3512 else if (PyTuple_Check(argv)) {
3513 argc = PyTuple_Size(argv);
3514 getitem = PyTuple_GetItem;
3515 }
3516 else {
3517 PyErr_SetString(PyExc_TypeError,
3518 "spawnvp() arg 2 must be a tuple or list");
3519 PyMem_Free(path);
3520 return NULL;
3521 }
3522
3523 argvlist = PyMem_NEW(char *, argc+1);
3524 if (argvlist == NULL) {
3525 PyMem_Free(path);
3526 return PyErr_NoMemory();
3527 }
3528 for (i = 0; i < argc; i++) {
3529 if (!PyArg_Parse((*getitem)(argv, i), "et",
3530 Py_FileSystemDefaultEncoding,
3531 &argvlist[i])) {
3532 free_string_array(argvlist, i);
3533 PyErr_SetString(
3534 PyExc_TypeError,
3535 "spawnvp() arg 2 must contain only strings");
3536 PyMem_Free(path);
3537 return NULL;
3538 }
3539 }
3540 argvlist[argc] = NULL;
3541
3542 Py_BEGIN_ALLOW_THREADS
3543#if defined(PYCC_GCC)
3544 spawnval = spawnvp(mode, path, argvlist);
3545#else
3546 spawnval = _spawnvp(mode, path, argvlist);
3547#endif
3548 Py_END_ALLOW_THREADS
3549
3550 free_string_array(argvlist, argc);
3551 PyMem_Free(path);
3552
3553 if (spawnval == -1)
3554 return posix_error();
3555 else
3556 return Py_BuildValue("l", (long) spawnval);
3557}
3558
3559
3560PyDoc_STRVAR(posix_spawnvpe__doc__,
3561"spawnvpe(mode, file, args, env)\n\n\
3562Execute the program 'file' in a new process, using the environment\n\
3563search path to find the file.\n\
3564\n\
3565 mode: mode of process creation\n\
3566 file: executable file name\n\
3567 args: tuple or list of arguments\n\
3568 env: dictionary of strings mapping to strings");
3569
3570static PyObject *
3571posix_spawnvpe(PyObject *self, PyObject *args)
3572{
3573 char *path;
3574 PyObject *argv, *env;
3575 char **argvlist;
3576 char **envlist;
3577 PyObject *key, *val, *keys=NULL, *vals=NULL, *res=NULL;
3578 int mode, i, pos, argc, envc;
3579 Py_intptr_t spawnval;
Martin v. Löwis18e16552006-02-15 17:27:45 +00003580 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003581 int lastarg = 0;
3582
3583 /* spawnvpe has four arguments: (mode, path, argv, env), where
3584 argv is a list or tuple of strings and env is a dictionary
3585 like posix.environ. */
3586
3587 if (!PyArg_ParseTuple(args, "ietOO:spawnvpe", &mode,
3588 Py_FileSystemDefaultEncoding,
3589 &path, &argv, &env))
3590 return NULL;
3591 if (PyList_Check(argv)) {
3592 argc = PyList_Size(argv);
3593 getitem = PyList_GetItem;
3594 }
3595 else if (PyTuple_Check(argv)) {
3596 argc = PyTuple_Size(argv);
3597 getitem = PyTuple_GetItem;
3598 }
3599 else {
3600 PyErr_SetString(PyExc_TypeError,
3601 "spawnvpe() arg 2 must be a tuple or list");
3602 goto fail_0;
3603 }
3604 if (!PyMapping_Check(env)) {
3605 PyErr_SetString(PyExc_TypeError,
3606 "spawnvpe() arg 3 must be a mapping object");
3607 goto fail_0;
3608 }
3609
3610 argvlist = PyMem_NEW(char *, argc+1);
3611 if (argvlist == NULL) {
3612 PyErr_NoMemory();
3613 goto fail_0;
3614 }
3615 for (i = 0; i < argc; i++) {
3616 if (!PyArg_Parse((*getitem)(argv, i),
3617 "et;spawnvpe() arg 2 must contain only strings",
3618 Py_FileSystemDefaultEncoding,
3619 &argvlist[i]))
3620 {
3621 lastarg = i;
3622 goto fail_1;
3623 }
3624 }
3625 lastarg = argc;
3626 argvlist[argc] = NULL;
3627
3628 i = PyMapping_Size(env);
3629 if (i < 0)
3630 goto fail_1;
3631 envlist = PyMem_NEW(char *, i + 1);
3632 if (envlist == NULL) {
3633 PyErr_NoMemory();
3634 goto fail_1;
3635 }
3636 envc = 0;
3637 keys = PyMapping_Keys(env);
3638 vals = PyMapping_Values(env);
3639 if (!keys || !vals)
3640 goto fail_2;
3641 if (!PyList_Check(keys) || !PyList_Check(vals)) {
3642 PyErr_SetString(PyExc_TypeError,
3643 "spawnvpe(): env.keys() or env.values() is not a list");
3644 goto fail_2;
3645 }
3646
3647 for (pos = 0; pos < i; pos++) {
3648 char *p, *k, *v;
3649 size_t len;
3650
3651 key = PyList_GetItem(keys, pos);
3652 val = PyList_GetItem(vals, pos);
3653 if (!key || !val)
3654 goto fail_2;
3655
3656 if (!PyArg_Parse(
3657 key,
3658 "s;spawnvpe() arg 3 contains a non-string key",
3659 &k) ||
3660 !PyArg_Parse(
3661 val,
3662 "s;spawnvpe() arg 3 contains a non-string value",
3663 &v))
3664 {
3665 goto fail_2;
3666 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00003667 len = PyString_Size(key) + PyString_Size(val) + 2;
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003668 p = PyMem_NEW(char, len);
3669 if (p == NULL) {
3670 PyErr_NoMemory();
3671 goto fail_2;
3672 }
3673 PyOS_snprintf(p, len, "%s=%s", k, v);
3674 envlist[envc++] = p;
3675 }
3676 envlist[envc] = 0;
3677
3678 Py_BEGIN_ALLOW_THREADS
3679#if defined(PYCC_GCC)
Andrew MacIntyre94dcf0d2008-02-03 07:07:31 +00003680 spawnval = spawnvpe(mode, path, argvlist, envlist);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003681#else
Andrew MacIntyre94dcf0d2008-02-03 07:07:31 +00003682 spawnval = _spawnvpe(mode, path, argvlist, envlist);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003683#endif
3684 Py_END_ALLOW_THREADS
3685
3686 if (spawnval == -1)
3687 (void) posix_error();
3688 else
3689 res = Py_BuildValue("l", (long) spawnval);
3690
3691 fail_2:
3692 while (--envc >= 0)
3693 PyMem_DEL(envlist[envc]);
3694 PyMem_DEL(envlist);
3695 fail_1:
3696 free_string_array(argvlist, lastarg);
3697 Py_XDECREF(vals);
3698 Py_XDECREF(keys);
3699 fail_0:
3700 PyMem_Free(path);
3701 return res;
3702}
3703#endif /* PYOS_OS2 */
Guido van Rossuma1065681999-01-25 23:20:23 +00003704#endif /* HAVE_SPAWNV */
3705
3706
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003707#ifdef HAVE_FORK1
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003708PyDoc_STRVAR(posix_fork1__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003709"fork1() -> pid\n\n\
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003710Fork a child process with a single multiplexed (i.e., not bound) thread.\n\
3711\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003712Return 0 to child process and PID of child to parent process.");
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003713
3714static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003715posix_fork1(PyObject *self, PyObject *noargs)
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003716{
Christian Heimes951cc0f2008-01-31 23:08:23 +00003717 pid_t pid = fork1();
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003718 if (pid == -1)
3719 return posix_error();
Gregory P. Smithfb7a50f2008-07-14 06:06:48 +00003720 if (pid == 0)
3721 PyOS_AfterFork();
Christian Heimes951cc0f2008-01-31 23:08:23 +00003722 return PyInt_FromLong(pid);
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003723}
3724#endif
3725
3726
Guido van Rossumad0ee831995-03-01 10:34:45 +00003727#ifdef HAVE_FORK
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003728PyDoc_STRVAR(posix_fork__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003729"fork() -> pid\n\n\
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003730Fork a child process.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003731Return 0 to child process and PID of child to parent process.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003732
Barry Warsaw53699e91996-12-10 23:23:01 +00003733static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003734posix_fork(PyObject *self, PyObject *noargs)
Guido van Rossum85e3b011991-06-03 12:42:10 +00003735{
Christian Heimes951cc0f2008-01-31 23:08:23 +00003736 pid_t pid = fork();
Guido van Rossum85e3b011991-06-03 12:42:10 +00003737 if (pid == -1)
3738 return posix_error();
Fred Drake49b0c3b2000-07-06 19:42:19 +00003739 if (pid == 0)
3740 PyOS_AfterFork();
Christian Heimes951cc0f2008-01-31 23:08:23 +00003741 return PyInt_FromLong(pid);
Guido van Rossum85e3b011991-06-03 12:42:10 +00003742}
Guido van Rossumad0ee831995-03-01 10:34:45 +00003743#endif
Guido van Rossum85e3b011991-06-03 12:42:10 +00003744
Neal Norwitzb59798b2003-03-21 01:43:31 +00003745/* AIX uses /dev/ptc but is otherwise the same as /dev/ptmx */
Neal Norwitz2deaddb2003-03-21 03:08:31 +00003746/* IRIX has both /dev/ptc and /dev/ptmx, use ptmx */
3747#if defined(HAVE_DEV_PTC) && !defined(HAVE_DEV_PTMX)
Neal Norwitzb59798b2003-03-21 01:43:31 +00003748#define DEV_PTY_FILE "/dev/ptc"
3749#define HAVE_DEV_PTMX
3750#else
3751#define DEV_PTY_FILE "/dev/ptmx"
3752#endif
3753
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003754#if defined(HAVE_OPENPTY) || defined(HAVE_FORKPTY) || defined(HAVE_DEV_PTMX)
Fred Drake8cef4cf2000-06-28 16:40:38 +00003755#ifdef HAVE_PTY_H
3756#include <pty.h>
3757#else
3758#ifdef HAVE_LIBUTIL_H
3759#include <libutil.h>
Fred Drake8cef4cf2000-06-28 16:40:38 +00003760#endif /* HAVE_LIBUTIL_H */
3761#endif /* HAVE_PTY_H */
Martin v. Löwis14e73b12003-01-01 09:51:12 +00003762#ifdef HAVE_STROPTS_H
3763#include <stropts.h>
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003764#endif
3765#endif /* defined(HAVE_OPENPTY) || defined(HAVE_FORKPTY) || defined(HAVE_DEV_PTMX */
Fred Drake8cef4cf2000-06-28 16:40:38 +00003766
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003767#if defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX)
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003768PyDoc_STRVAR(posix_openpty__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003769"openpty() -> (master_fd, slave_fd)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003770Open a pseudo-terminal, returning open fd's for both master and slave end.\n");
Fred Drake8cef4cf2000-06-28 16:40:38 +00003771
3772static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003773posix_openpty(PyObject *self, PyObject *noargs)
Fred Drake8cef4cf2000-06-28 16:40:38 +00003774{
3775 int master_fd, slave_fd;
Thomas Wouters70c21a12000-07-14 14:28:33 +00003776#ifndef HAVE_OPENPTY
3777 char * slave_name;
Thomas Wouters70c21a12000-07-14 14:28:33 +00003778#endif
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003779#if defined(HAVE_DEV_PTMX) && !defined(HAVE_OPENPTY) && !defined(HAVE__GETPTY)
Martin v. Löwisc8b2e772002-12-31 14:30:26 +00003780 PyOS_sighandler_t sig_saved;
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003781#ifdef sun
Neal Norwitz84a98e02006-04-10 07:44:23 +00003782 extern char *ptsname(int fildes);
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003783#endif
3784#endif
Thomas Wouters70c21a12000-07-14 14:28:33 +00003785
Thomas Wouters70c21a12000-07-14 14:28:33 +00003786#ifdef HAVE_OPENPTY
Fred Drake8cef4cf2000-06-28 16:40:38 +00003787 if (openpty(&master_fd, &slave_fd, NULL, NULL, NULL) != 0)
3788 return posix_error();
Neal Norwitzb59798b2003-03-21 01:43:31 +00003789#elif defined(HAVE__GETPTY)
Thomas Wouters70c21a12000-07-14 14:28:33 +00003790 slave_name = _getpty(&master_fd, O_RDWR, 0666, 0);
3791 if (slave_name == NULL)
3792 return posix_error();
3793
3794 slave_fd = open(slave_name, O_RDWR);
3795 if (slave_fd < 0)
3796 return posix_error();
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003797#else
Neal Norwitzb59798b2003-03-21 01:43:31 +00003798 master_fd = open(DEV_PTY_FILE, O_RDWR | O_NOCTTY); /* open master */
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003799 if (master_fd < 0)
3800 return posix_error();
Anthony Baxter9ceaa722004-10-13 14:48:50 +00003801 sig_saved = PyOS_setsig(SIGCHLD, SIG_DFL);
Martin v. Löwisc8b2e772002-12-31 14:30:26 +00003802 /* change permission of slave */
3803 if (grantpt(master_fd) < 0) {
Anthony Baxter9ceaa722004-10-13 14:48:50 +00003804 PyOS_setsig(SIGCHLD, sig_saved);
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003805 return posix_error();
Martin v. Löwisc8b2e772002-12-31 14:30:26 +00003806 }
3807 /* unlock slave */
3808 if (unlockpt(master_fd) < 0) {
Anthony Baxter9ceaa722004-10-13 14:48:50 +00003809 PyOS_setsig(SIGCHLD, sig_saved);
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003810 return posix_error();
Martin v. Löwisc8b2e772002-12-31 14:30:26 +00003811 }
Anthony Baxter9ceaa722004-10-13 14:48:50 +00003812 PyOS_setsig(SIGCHLD, sig_saved);
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003813 slave_name = ptsname(master_fd); /* get name of slave */
3814 if (slave_name == NULL)
3815 return posix_error();
3816 slave_fd = open(slave_name, O_RDWR | O_NOCTTY); /* open slave */
3817 if (slave_fd < 0)
3818 return posix_error();
Neal Norwitzb59798b2003-03-21 01:43:31 +00003819#if !defined(__CYGWIN__) && !defined(HAVE_DEV_PTC)
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003820 ioctl(slave_fd, I_PUSH, "ptem"); /* push ptem */
3821 ioctl(slave_fd, I_PUSH, "ldterm"); /* push ldterm */
Neal Norwitz6700e472002-12-31 16:16:07 +00003822#ifndef __hpux
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003823 ioctl(slave_fd, I_PUSH, "ttcompat"); /* push ttcompat */
Neal Norwitz6700e472002-12-31 16:16:07 +00003824#endif /* __hpux */
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003825#endif /* HAVE_CYGWIN */
Thomas Wouters1e0c2f42000-07-24 16:06:23 +00003826#endif /* HAVE_OPENPTY */
Thomas Wouters70c21a12000-07-14 14:28:33 +00003827
Fred Drake8cef4cf2000-06-28 16:40:38 +00003828 return Py_BuildValue("(ii)", master_fd, slave_fd);
Thomas Wouters70c21a12000-07-14 14:28:33 +00003829
Fred Drake8cef4cf2000-06-28 16:40:38 +00003830}
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003831#endif /* defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX) */
Fred Drake8cef4cf2000-06-28 16:40:38 +00003832
3833#ifdef HAVE_FORKPTY
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003834PyDoc_STRVAR(posix_forkpty__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003835"forkpty() -> (pid, master_fd)\n\n\
Fred Drake8cef4cf2000-06-28 16:40:38 +00003836Fork a new process with a new pseudo-terminal as controlling tty.\n\n\
3837Like fork(), return 0 as pid to child process, and PID of child to parent.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003838To both, return fd of newly opened pseudo-terminal.\n");
Fred Drake8cef4cf2000-06-28 16:40:38 +00003839
3840static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003841posix_forkpty(PyObject *self, PyObject *noargs)
Fred Drake8cef4cf2000-06-28 16:40:38 +00003842{
Christian Heimes951cc0f2008-01-31 23:08:23 +00003843 int master_fd = -1;
3844 pid_t pid;
Tim Peters5aa91602002-01-30 05:46:57 +00003845
Fred Drake8cef4cf2000-06-28 16:40:38 +00003846 pid = forkpty(&master_fd, NULL, NULL, NULL);
3847 if (pid == -1)
3848 return posix_error();
Fred Drake49b0c3b2000-07-06 19:42:19 +00003849 if (pid == 0)
3850 PyOS_AfterFork();
Christian Heimes951cc0f2008-01-31 23:08:23 +00003851 return Py_BuildValue("(li)", pid, master_fd);
Fred Drake8cef4cf2000-06-28 16:40:38 +00003852}
3853#endif
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003854
Guido van Rossumad0ee831995-03-01 10:34:45 +00003855#ifdef HAVE_GETEGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003856PyDoc_STRVAR(posix_getegid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003857"getegid() -> egid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003858Return the current process's effective group id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003859
Barry Warsaw53699e91996-12-10 23:23:01 +00003860static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003861posix_getegid(PyObject *self, PyObject *noargs)
Guido van Rossum46003ff1992-05-15 11:05:24 +00003862{
Barry Warsaw53699e91996-12-10 23:23:01 +00003863 return PyInt_FromLong((long)getegid());
Guido van Rossum46003ff1992-05-15 11:05:24 +00003864}
Guido van Rossumad0ee831995-03-01 10:34:45 +00003865#endif
Guido van Rossum46003ff1992-05-15 11:05:24 +00003866
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003867
Guido van Rossumad0ee831995-03-01 10:34:45 +00003868#ifdef HAVE_GETEUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003869PyDoc_STRVAR(posix_geteuid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003870"geteuid() -> euid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003871Return the current process's effective user id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003872
Barry Warsaw53699e91996-12-10 23:23:01 +00003873static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003874posix_geteuid(PyObject *self, PyObject *noargs)
Guido van Rossum46003ff1992-05-15 11:05:24 +00003875{
Barry Warsaw53699e91996-12-10 23:23:01 +00003876 return PyInt_FromLong((long)geteuid());
Guido van Rossum46003ff1992-05-15 11:05:24 +00003877}
Guido van Rossumad0ee831995-03-01 10:34:45 +00003878#endif
Guido van Rossum46003ff1992-05-15 11:05:24 +00003879
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003880
Guido van Rossumad0ee831995-03-01 10:34:45 +00003881#ifdef HAVE_GETGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003882PyDoc_STRVAR(posix_getgid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003883"getgid() -> gid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003884Return the current process's group id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003885
Barry Warsaw53699e91996-12-10 23:23:01 +00003886static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003887posix_getgid(PyObject *self, PyObject *noargs)
Guido van Rossum46003ff1992-05-15 11:05:24 +00003888{
Barry Warsaw53699e91996-12-10 23:23:01 +00003889 return PyInt_FromLong((long)getgid());
Guido van Rossum46003ff1992-05-15 11:05:24 +00003890}
Guido van Rossumad0ee831995-03-01 10:34:45 +00003891#endif
Guido van Rossum46003ff1992-05-15 11:05:24 +00003892
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003893
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003894PyDoc_STRVAR(posix_getpid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003895"getpid() -> pid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003896Return the current process id");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003897
Barry Warsaw53699e91996-12-10 23:23:01 +00003898static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003899posix_getpid(PyObject *self, PyObject *noargs)
Guido van Rossum85e3b011991-06-03 12:42:10 +00003900{
Barry Warsaw53699e91996-12-10 23:23:01 +00003901 return PyInt_FromLong((long)getpid());
Guido van Rossum85e3b011991-06-03 12:42:10 +00003902}
3903
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003904
Fred Drakec9680921999-12-13 16:37:25 +00003905#ifdef HAVE_GETGROUPS
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003906PyDoc_STRVAR(posix_getgroups__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003907"getgroups() -> list of group IDs\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003908Return list of supplemental group IDs for the process.");
Fred Drakec9680921999-12-13 16:37:25 +00003909
3910static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003911posix_getgroups(PyObject *self, PyObject *noargs)
Fred Drakec9680921999-12-13 16:37:25 +00003912{
3913 PyObject *result = NULL;
3914
Fred Drakec9680921999-12-13 16:37:25 +00003915#ifdef NGROUPS_MAX
3916#define MAX_GROUPS NGROUPS_MAX
3917#else
3918 /* defined to be 16 on Solaris7, so this should be a small number */
3919#define MAX_GROUPS 64
3920#endif
3921 gid_t grouplist[MAX_GROUPS];
3922 int n;
3923
3924 n = getgroups(MAX_GROUPS, grouplist);
3925 if (n < 0)
3926 posix_error();
3927 else {
3928 result = PyList_New(n);
3929 if (result != NULL) {
Fred Drakec9680921999-12-13 16:37:25 +00003930 int i;
3931 for (i = 0; i < n; ++i) {
Neal Norwitze241ce82003-02-17 18:17:05 +00003932 PyObject *o = PyInt_FromLong((long)grouplist[i]);
Fred Drakec9680921999-12-13 16:37:25 +00003933 if (o == NULL) {
3934 Py_DECREF(result);
3935 result = NULL;
3936 break;
3937 }
3938 PyList_SET_ITEM(result, i, o);
3939 }
3940 }
3941 }
Neal Norwitze241ce82003-02-17 18:17:05 +00003942
Fred Drakec9680921999-12-13 16:37:25 +00003943 return result;
3944}
3945#endif
3946
Martin v. Löwis606edc12002-06-13 21:09:11 +00003947#ifdef HAVE_GETPGID
Neal Norwitz0c2c17c2002-06-13 21:22:11 +00003948PyDoc_STRVAR(posix_getpgid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003949"getpgid(pid) -> pgid\n\n\
Neal Norwitz0c2c17c2002-06-13 21:22:11 +00003950Call the system call getpgid().");
Martin v. Löwis606edc12002-06-13 21:09:11 +00003951
3952static PyObject *
3953posix_getpgid(PyObject *self, PyObject *args)
3954{
3955 int pid, pgid;
3956 if (!PyArg_ParseTuple(args, "i:getpgid", &pid))
3957 return NULL;
3958 pgid = getpgid(pid);
3959 if (pgid < 0)
3960 return posix_error();
3961 return PyInt_FromLong((long)pgid);
3962}
3963#endif /* HAVE_GETPGID */
3964
3965
Guido van Rossumb6775db1994-08-01 11:34:53 +00003966#ifdef HAVE_GETPGRP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003967PyDoc_STRVAR(posix_getpgrp__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003968"getpgrp() -> pgrp\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003969Return the current process group id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003970
Barry Warsaw53699e91996-12-10 23:23:01 +00003971static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003972posix_getpgrp(PyObject *self, PyObject *noargs)
Guido van Rossum04814471991-06-04 20:23:49 +00003973{
Guido van Rossumb6775db1994-08-01 11:34:53 +00003974#ifdef GETPGRP_HAVE_ARG
Barry Warsaw53699e91996-12-10 23:23:01 +00003975 return PyInt_FromLong((long)getpgrp(0));
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00003976#else /* GETPGRP_HAVE_ARG */
Barry Warsaw53699e91996-12-10 23:23:01 +00003977 return PyInt_FromLong((long)getpgrp());
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00003978#endif /* GETPGRP_HAVE_ARG */
Guido van Rossum04814471991-06-04 20:23:49 +00003979}
Guido van Rossumb6775db1994-08-01 11:34:53 +00003980#endif /* HAVE_GETPGRP */
Guido van Rossum04814471991-06-04 20:23:49 +00003981
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003982
Guido van Rossumb6775db1994-08-01 11:34:53 +00003983#ifdef HAVE_SETPGRP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003984PyDoc_STRVAR(posix_setpgrp__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003985"setpgrp()\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003986Make this process a session leader.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003987
Barry Warsaw53699e91996-12-10 23:23:01 +00003988static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003989posix_setpgrp(PyObject *self, PyObject *noargs)
Guido van Rossumc2670a01992-09-13 20:07:29 +00003990{
Guido van Rossum64933891994-10-20 21:56:42 +00003991#ifdef SETPGRP_HAVE_ARG
Guido van Rossumc2670a01992-09-13 20:07:29 +00003992 if (setpgrp(0, 0) < 0)
Guido van Rossum64933891994-10-20 21:56:42 +00003993#else /* SETPGRP_HAVE_ARG */
Guido van Rossumb6775db1994-08-01 11:34:53 +00003994 if (setpgrp() < 0)
Guido van Rossum64933891994-10-20 21:56:42 +00003995#endif /* SETPGRP_HAVE_ARG */
Guido van Rossum687dd131993-05-17 08:34:16 +00003996 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00003997 Py_INCREF(Py_None);
3998 return Py_None;
Guido van Rossumc2670a01992-09-13 20:07:29 +00003999}
4000
Guido van Rossumb6775db1994-08-01 11:34:53 +00004001#endif /* HAVE_SETPGRP */
4002
Guido van Rossumad0ee831995-03-01 10:34:45 +00004003#ifdef HAVE_GETPPID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004004PyDoc_STRVAR(posix_getppid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00004005"getppid() -> ppid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004006Return the parent's process id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004007
Barry Warsaw53699e91996-12-10 23:23:01 +00004008static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00004009posix_getppid(PyObject *self, PyObject *noargs)
Guido van Rossum85e3b011991-06-03 12:42:10 +00004010{
Christian Heimesd491d712008-02-01 18:49:26 +00004011 return PyInt_FromLong(getppid());
Guido van Rossum85e3b011991-06-03 12:42:10 +00004012}
Guido van Rossumad0ee831995-03-01 10:34:45 +00004013#endif
Guido van Rossum85e3b011991-06-03 12:42:10 +00004014
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004015
Fred Drake12c6e2d1999-12-14 21:25:03 +00004016#ifdef HAVE_GETLOGIN
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004017PyDoc_STRVAR(posix_getlogin__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00004018"getlogin() -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004019Return the actual login name.");
Fred Drake12c6e2d1999-12-14 21:25:03 +00004020
4021static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00004022posix_getlogin(PyObject *self, PyObject *noargs)
Fred Drake12c6e2d1999-12-14 21:25:03 +00004023{
Neal Norwitze241ce82003-02-17 18:17:05 +00004024 PyObject *result = NULL;
Fred Drakea30680b2000-12-06 21:24:28 +00004025 char *name;
4026 int old_errno = errno;
Fred Drake12c6e2d1999-12-14 21:25:03 +00004027
Fred Drakea30680b2000-12-06 21:24:28 +00004028 errno = 0;
4029 name = getlogin();
4030 if (name == NULL) {
4031 if (errno)
4032 posix_error();
4033 else
4034 PyErr_SetString(PyExc_OSError,
Fred Drakee63544f2000-12-06 21:45:33 +00004035 "unable to determine login name");
Fred Drakea30680b2000-12-06 21:24:28 +00004036 }
Fred Drake12c6e2d1999-12-14 21:25:03 +00004037 else
Gregory P. Smithdd96db62008-06-09 04:58:54 +00004038 result = PyString_FromString(name);
Fred Drakea30680b2000-12-06 21:24:28 +00004039 errno = old_errno;
Neal Norwitze241ce82003-02-17 18:17:05 +00004040
Fred Drake12c6e2d1999-12-14 21:25:03 +00004041 return result;
4042}
4043#endif
4044
Guido van Rossumad0ee831995-03-01 10:34:45 +00004045#ifdef HAVE_GETUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004046PyDoc_STRVAR(posix_getuid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00004047"getuid() -> uid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004048Return the current process's user id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004049
Barry Warsaw53699e91996-12-10 23:23:01 +00004050static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00004051posix_getuid(PyObject *self, PyObject *noargs)
Guido van Rossum46003ff1992-05-15 11:05:24 +00004052{
Barry Warsaw53699e91996-12-10 23:23:01 +00004053 return PyInt_FromLong((long)getuid());
Guido van Rossum46003ff1992-05-15 11:05:24 +00004054}
Guido van Rossumad0ee831995-03-01 10:34:45 +00004055#endif
Guido van Rossum46003ff1992-05-15 11:05:24 +00004056
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004057
Guido van Rossumad0ee831995-03-01 10:34:45 +00004058#ifdef HAVE_KILL
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004059PyDoc_STRVAR(posix_kill__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00004060"kill(pid, sig)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004061Kill a process with a signal.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004062
Barry Warsaw53699e91996-12-10 23:23:01 +00004063static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00004064posix_kill(PyObject *self, PyObject *args)
Guido van Rossum85e3b011991-06-03 12:42:10 +00004065{
Christian Heimesd491d712008-02-01 18:49:26 +00004066 pid_t pid;
4067 int sig;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00004068 if (!PyArg_ParseTuple(args, "ii:kill", &pid, &sig))
Guido van Rossum85e3b011991-06-03 12:42:10 +00004069 return NULL;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004070#if defined(PYOS_OS2) && !defined(PYCC_GCC)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004071 if (sig == XCPT_SIGNAL_INTR || sig == XCPT_SIGNAL_BREAK) {
4072 APIRET rc;
4073 if ((rc = DosSendSignalException(pid, sig)) != NO_ERROR)
Guido van Rossumd48f2521997-12-05 22:19:34 +00004074 return os2_error(rc);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004075
4076 } else if (sig == XCPT_SIGNAL_KILLPROC) {
4077 APIRET rc;
4078 if ((rc = DosKillProcess(DKP_PROCESS, pid)) != NO_ERROR)
Guido van Rossumd48f2521997-12-05 22:19:34 +00004079 return os2_error(rc);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004080
4081 } else
Guido van Rossumc5a0f531997-12-02 20:36:02 +00004082 return NULL; /* Unrecognized Signal Requested */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004083#else
Guido van Rossum85e3b011991-06-03 12:42:10 +00004084 if (kill(pid, sig) == -1)
4085 return posix_error();
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004086#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00004087 Py_INCREF(Py_None);
4088 return Py_None;
Guido van Rossum85e3b011991-06-03 12:42:10 +00004089}
Guido van Rossumad0ee831995-03-01 10:34:45 +00004090#endif
Guido van Rossum85e3b011991-06-03 12:42:10 +00004091
Martin v. Löwisb2c92f42002-02-16 23:35:41 +00004092#ifdef HAVE_KILLPG
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004093PyDoc_STRVAR(posix_killpg__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00004094"killpg(pgid, sig)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004095Kill a process group with a signal.");
Martin v. Löwisb2c92f42002-02-16 23:35:41 +00004096
4097static PyObject *
4098posix_killpg(PyObject *self, PyObject *args)
4099{
4100 int pgid, sig;
4101 if (!PyArg_ParseTuple(args, "ii:killpg", &pgid, &sig))
4102 return NULL;
4103 if (killpg(pgid, sig) == -1)
4104 return posix_error();
4105 Py_INCREF(Py_None);
4106 return Py_None;
4107}
4108#endif
4109
Guido van Rossumc0125471996-06-28 18:55:32 +00004110#ifdef HAVE_PLOCK
4111
4112#ifdef HAVE_SYS_LOCK_H
4113#include <sys/lock.h>
4114#endif
4115
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004116PyDoc_STRVAR(posix_plock__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00004117"plock(op)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004118Lock program segments into memory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004119
Barry Warsaw53699e91996-12-10 23:23:01 +00004120static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00004121posix_plock(PyObject *self, PyObject *args)
Guido van Rossumc0125471996-06-28 18:55:32 +00004122{
4123 int op;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00004124 if (!PyArg_ParseTuple(args, "i:plock", &op))
Guido van Rossumc0125471996-06-28 18:55:32 +00004125 return NULL;
4126 if (plock(op) == -1)
4127 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00004128 Py_INCREF(Py_None);
4129 return Py_None;
Guido van Rossumc0125471996-06-28 18:55:32 +00004130}
4131#endif
4132
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004133
Guido van Rossuma4916fa1996-05-23 22:58:55 +00004134#ifdef HAVE_POPEN
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004135PyDoc_STRVAR(posix_popen__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00004136"popen(command [, mode='r' [, bufsize]]) -> pipe\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004137Open a pipe to/from a command returning a file object.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004138
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004139#if defined(PYOS_OS2)
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004140#if defined(PYCC_VACPP)
Guido van Rossumd48f2521997-12-05 22:19:34 +00004141static int
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004142async_system(const char *command)
4143{
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004144 char errormsg[256], args[1024];
4145 RESULTCODES rcodes;
4146 APIRET rc;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004147
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004148 char *shell = getenv("COMSPEC");
4149 if (!shell)
4150 shell = "cmd";
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004151
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004152 /* avoid overflowing the argument buffer */
4153 if (strlen(shell) + 3 + strlen(command) >= 1024)
4154 return ERROR_NOT_ENOUGH_MEMORY
4155
4156 args[0] = '\0';
4157 strcat(args, shell);
4158 strcat(args, "/c ");
4159 strcat(args, command);
4160
4161 /* execute asynchronously, inheriting the environment */
4162 rc = DosExecPgm(errormsg,
4163 sizeof(errormsg),
4164 EXEC_ASYNC,
4165 args,
4166 NULL,
4167 &rcodes,
4168 shell);
4169 return rc;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004170}
4171
Guido van Rossumd48f2521997-12-05 22:19:34 +00004172static FILE *
4173popen(const char *command, const char *mode, int pipesize, int *err)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004174{
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004175 int oldfd, tgtfd;
4176 HFILE pipeh[2];
4177 APIRET rc;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004178
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004179 /* mode determines which of stdin or stdout is reconnected to
4180 * the pipe to the child
4181 */
4182 if (strchr(mode, 'r') != NULL) {
4183 tgt_fd = 1; /* stdout */
4184 } else if (strchr(mode, 'w')) {
4185 tgt_fd = 0; /* stdin */
4186 } else {
4187 *err = ERROR_INVALID_ACCESS;
4188 return NULL;
4189 }
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004190
Andrew MacIntyrea3be2582004-12-18 09:51:05 +00004191 /* setup the pipe */
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004192 if ((rc = DosCreatePipe(&pipeh[0], &pipeh[1], pipesize)) != NO_ERROR) {
4193 *err = rc;
4194 return NULL;
4195 }
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004196
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004197 /* prevent other threads accessing stdio */
4198 DosEnterCritSec();
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004199
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004200 /* reconnect stdio and execute child */
4201 oldfd = dup(tgtfd);
4202 close(tgtfd);
4203 if (dup2(pipeh[tgtfd], tgtfd) == 0) {
4204 DosClose(pipeh[tgtfd]);
4205 rc = async_system(command);
4206 }
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004207
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004208 /* restore stdio */
4209 dup2(oldfd, tgtfd);
4210 close(oldfd);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004211
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004212 /* allow other threads access to stdio */
4213 DosExitCritSec();
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004214
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004215 /* if execution of child was successful return file stream */
4216 if (rc == NO_ERROR)
4217 return fdopen(pipeh[1 - tgtfd], mode);
4218 else {
4219 DosClose(pipeh[1 - tgtfd]);
4220 *err = rc;
4221 return NULL;
4222 }
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004223}
4224
4225static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00004226posix_popen(PyObject *self, PyObject *args)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004227{
4228 char *name;
4229 char *mode = "r";
Guido van Rossumd48f2521997-12-05 22:19:34 +00004230 int err, bufsize = -1;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004231 FILE *fp;
4232 PyObject *f;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00004233 if (!PyArg_ParseTuple(args, "s|si:popen", &name, &mode, &bufsize))
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004234 return NULL;
4235 Py_BEGIN_ALLOW_THREADS
Guido van Rossumd48f2521997-12-05 22:19:34 +00004236 fp = popen(name, mode, (bufsize > 0) ? bufsize : 4096, &err);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004237 Py_END_ALLOW_THREADS
4238 if (fp == NULL)
Guido van Rossumd48f2521997-12-05 22:19:34 +00004239 return os2_error(err);
4240
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004241 f = PyFile_FromFile(fp, name, mode, fclose);
4242 if (f != NULL)
4243 PyFile_SetBufSize(f, bufsize);
4244 return f;
4245}
4246
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004247#elif defined(PYCC_GCC)
4248
4249/* standard posix version of popen() support */
4250static PyObject *
4251posix_popen(PyObject *self, PyObject *args)
4252{
4253 char *name;
4254 char *mode = "r";
4255 int bufsize = -1;
4256 FILE *fp;
4257 PyObject *f;
4258 if (!PyArg_ParseTuple(args, "s|si:popen", &name, &mode, &bufsize))
4259 return NULL;
4260 Py_BEGIN_ALLOW_THREADS
4261 fp = popen(name, mode);
4262 Py_END_ALLOW_THREADS
4263 if (fp == NULL)
4264 return posix_error();
4265 f = PyFile_FromFile(fp, name, mode, pclose);
4266 if (f != NULL)
4267 PyFile_SetBufSize(f, bufsize);
4268 return f;
4269}
4270
4271/* fork() under OS/2 has lots'o'warts
4272 * EMX supports pipe() and spawn*() so we can synthesize popen[234]()
4273 * most of this code is a ripoff of the win32 code, but using the
4274 * capabilities of EMX's C library routines
4275 */
4276
4277/* These tell _PyPopen() whether to return 1, 2, or 3 file objects. */
4278#define POPEN_1 1
4279#define POPEN_2 2
4280#define POPEN_3 3
4281#define POPEN_4 4
4282
4283static PyObject *_PyPopen(char *, int, int, int);
4284static int _PyPclose(FILE *file);
4285
4286/*
4287 * Internal dictionary mapping popen* file pointers to process handles,
4288 * for use when retrieving the process exit code. See _PyPclose() below
4289 * for more information on this dictionary's use.
4290 */
4291static PyObject *_PyPopenProcs = NULL;
4292
4293/* os2emx version of popen2()
4294 *
4295 * The result of this function is a pipe (file) connected to the
4296 * process's stdin, and a pipe connected to the process's stdout.
4297 */
4298
4299static PyObject *
4300os2emx_popen2(PyObject *self, PyObject *args)
4301{
4302 PyObject *f;
4303 int tm=0;
4304
4305 char *cmdstring;
4306 char *mode = "t";
4307 int bufsize = -1;
4308 if (!PyArg_ParseTuple(args, "s|si:popen2", &cmdstring, &mode, &bufsize))
4309 return NULL;
4310
4311 if (*mode == 't')
4312 tm = O_TEXT;
4313 else if (*mode != 'b') {
4314 PyErr_SetString(PyExc_ValueError, "mode must be 't' or 'b'");
4315 return NULL;
4316 } else
4317 tm = O_BINARY;
4318
4319 f = _PyPopen(cmdstring, tm, POPEN_2, bufsize);
4320
4321 return f;
4322}
4323
4324/*
4325 * Variation on os2emx.popen2
4326 *
4327 * The result of this function is 3 pipes - the process's stdin,
4328 * stdout and stderr
4329 */
4330
4331static PyObject *
4332os2emx_popen3(PyObject *self, PyObject *args)
4333{
4334 PyObject *f;
4335 int tm = 0;
4336
4337 char *cmdstring;
4338 char *mode = "t";
4339 int bufsize = -1;
4340 if (!PyArg_ParseTuple(args, "s|si:popen3", &cmdstring, &mode, &bufsize))
4341 return NULL;
4342
4343 if (*mode == 't')
4344 tm = O_TEXT;
4345 else if (*mode != 'b') {
4346 PyErr_SetString(PyExc_ValueError, "mode must be 't' or 'b'");
4347 return NULL;
4348 } else
4349 tm = O_BINARY;
4350
4351 f = _PyPopen(cmdstring, tm, POPEN_3, bufsize);
4352
4353 return f;
4354}
4355
4356/*
4357 * Variation on os2emx.popen2
4358 *
Tim Peters11b23062003-04-23 02:39:17 +00004359 * The result of this function is 2 pipes - the processes stdin,
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004360 * and stdout+stderr combined as a single pipe.
4361 */
4362
4363static PyObject *
4364os2emx_popen4(PyObject *self, PyObject *args)
4365{
4366 PyObject *f;
4367 int tm = 0;
4368
4369 char *cmdstring;
4370 char *mode = "t";
4371 int bufsize = -1;
4372 if (!PyArg_ParseTuple(args, "s|si:popen4", &cmdstring, &mode, &bufsize))
4373 return NULL;
4374
4375 if (*mode == 't')
4376 tm = O_TEXT;
4377 else if (*mode != 'b') {
4378 PyErr_SetString(PyExc_ValueError, "mode must be 't' or 'b'");
4379 return NULL;
4380 } else
4381 tm = O_BINARY;
4382
4383 f = _PyPopen(cmdstring, tm, POPEN_4, bufsize);
4384
4385 return f;
4386}
4387
4388/* a couple of structures for convenient handling of multiple
4389 * file handles and pipes
4390 */
4391struct file_ref
4392{
4393 int handle;
4394 int flags;
4395};
4396
4397struct pipe_ref
4398{
4399 int rd;
4400 int wr;
4401};
4402
4403/* The following code is derived from the win32 code */
4404
4405static PyObject *
4406_PyPopen(char *cmdstring, int mode, int n, int bufsize)
4407{
4408 struct file_ref stdio[3];
4409 struct pipe_ref p_fd[3];
4410 FILE *p_s[3];
Christian Heimesd491d712008-02-01 18:49:26 +00004411 int file_count, i, pipe_err;
4412 pid_t pipe_pid;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004413 char *shell, *sh_name, *opt, *rd_mode, *wr_mode;
4414 PyObject *f, *p_f[3];
4415
4416 /* file modes for subsequent fdopen's on pipe handles */
4417 if (mode == O_TEXT)
4418 {
4419 rd_mode = "rt";
4420 wr_mode = "wt";
4421 }
4422 else
4423 {
4424 rd_mode = "rb";
4425 wr_mode = "wb";
4426 }
4427
4428 /* prepare shell references */
4429 if ((shell = getenv("EMXSHELL")) == NULL)
4430 if ((shell = getenv("COMSPEC")) == NULL)
4431 {
4432 errno = ENOENT;
4433 return posix_error();
4434 }
4435
4436 sh_name = _getname(shell);
4437 if (stricmp(sh_name, "cmd.exe") == 0 || stricmp(sh_name, "4os2.exe") == 0)
4438 opt = "/c";
4439 else
4440 opt = "-c";
4441
4442 /* save current stdio fds + their flags, and set not inheritable */
4443 i = pipe_err = 0;
4444 while (pipe_err >= 0 && i < 3)
4445 {
4446 pipe_err = stdio[i].handle = dup(i);
4447 stdio[i].flags = fcntl(i, F_GETFD, 0);
4448 fcntl(stdio[i].handle, F_SETFD, stdio[i].flags | FD_CLOEXEC);
4449 i++;
4450 }
4451 if (pipe_err < 0)
4452 {
4453 /* didn't get them all saved - clean up and bail out */
4454 int saved_err = errno;
4455 while (i-- > 0)
4456 {
4457 close(stdio[i].handle);
4458 }
4459 errno = saved_err;
4460 return posix_error();
4461 }
4462
4463 /* create pipe ends */
4464 file_count = 2;
4465 if (n == POPEN_3)
4466 file_count = 3;
4467 i = pipe_err = 0;
4468 while ((pipe_err == 0) && (i < file_count))
4469 pipe_err = pipe((int *)&p_fd[i++]);
4470 if (pipe_err < 0)
4471 {
4472 /* didn't get them all made - clean up and bail out */
4473 while (i-- > 0)
4474 {
4475 close(p_fd[i].wr);
4476 close(p_fd[i].rd);
4477 }
4478 errno = EPIPE;
4479 return posix_error();
4480 }
4481
4482 /* change the actual standard IO streams over temporarily,
4483 * making the retained pipe ends non-inheritable
4484 */
4485 pipe_err = 0;
4486
4487 /* - stdin */
4488 if (dup2(p_fd[0].rd, 0) == 0)
4489 {
4490 close(p_fd[0].rd);
4491 i = fcntl(p_fd[0].wr, F_GETFD, 0);
4492 fcntl(p_fd[0].wr, F_SETFD, i | FD_CLOEXEC);
4493 if ((p_s[0] = fdopen(p_fd[0].wr, wr_mode)) == NULL)
4494 {
4495 close(p_fd[0].wr);
4496 pipe_err = -1;
4497 }
4498 }
4499 else
4500 {
4501 pipe_err = -1;
4502 }
4503
4504 /* - stdout */
4505 if (pipe_err == 0)
4506 {
4507 if (dup2(p_fd[1].wr, 1) == 1)
4508 {
4509 close(p_fd[1].wr);
4510 i = fcntl(p_fd[1].rd, F_GETFD, 0);
4511 fcntl(p_fd[1].rd, F_SETFD, i | FD_CLOEXEC);
4512 if ((p_s[1] = fdopen(p_fd[1].rd, rd_mode)) == NULL)
4513 {
4514 close(p_fd[1].rd);
4515 pipe_err = -1;
4516 }
4517 }
4518 else
4519 {
4520 pipe_err = -1;
4521 }
4522 }
4523
4524 /* - stderr, as required */
4525 if (pipe_err == 0)
4526 switch (n)
4527 {
4528 case POPEN_3:
4529 {
4530 if (dup2(p_fd[2].wr, 2) == 2)
4531 {
4532 close(p_fd[2].wr);
4533 i = fcntl(p_fd[2].rd, F_GETFD, 0);
4534 fcntl(p_fd[2].rd, F_SETFD, i | FD_CLOEXEC);
4535 if ((p_s[2] = fdopen(p_fd[2].rd, rd_mode)) == NULL)
4536 {
4537 close(p_fd[2].rd);
4538 pipe_err = -1;
4539 }
4540 }
4541 else
4542 {
4543 pipe_err = -1;
4544 }
4545 break;
4546 }
4547
4548 case POPEN_4:
4549 {
4550 if (dup2(1, 2) != 2)
4551 {
4552 pipe_err = -1;
4553 }
4554 break;
4555 }
4556 }
4557
4558 /* spawn the child process */
4559 if (pipe_err == 0)
4560 {
4561 pipe_pid = spawnlp(P_NOWAIT, shell, shell, opt, cmdstring, (char *)0);
4562 if (pipe_pid == -1)
4563 {
4564 pipe_err = -1;
4565 }
4566 else
4567 {
4568 /* save the PID into the FILE structure
4569 * NOTE: this implementation doesn't actually
4570 * take advantage of this, but do it for
4571 * completeness - AIM Apr01
4572 */
4573 for (i = 0; i < file_count; i++)
4574 p_s[i]->_pid = pipe_pid;
4575 }
4576 }
4577
4578 /* reset standard IO to normal */
4579 for (i = 0; i < 3; i++)
4580 {
4581 dup2(stdio[i].handle, i);
4582 fcntl(i, F_SETFD, stdio[i].flags);
4583 close(stdio[i].handle);
4584 }
4585
4586 /* if any remnant problems, clean up and bail out */
4587 if (pipe_err < 0)
4588 {
4589 for (i = 0; i < 3; i++)
4590 {
4591 close(p_fd[i].rd);
4592 close(p_fd[i].wr);
4593 }
4594 errno = EPIPE;
4595 return posix_error_with_filename(cmdstring);
4596 }
4597
4598 /* build tuple of file objects to return */
4599 if ((p_f[0] = PyFile_FromFile(p_s[0], cmdstring, wr_mode, _PyPclose)) != NULL)
4600 PyFile_SetBufSize(p_f[0], bufsize);
4601 if ((p_f[1] = PyFile_FromFile(p_s[1], cmdstring, rd_mode, _PyPclose)) != NULL)
4602 PyFile_SetBufSize(p_f[1], bufsize);
4603 if (n == POPEN_3)
4604 {
4605 if ((p_f[2] = PyFile_FromFile(p_s[2], cmdstring, rd_mode, _PyPclose)) != NULL)
4606 PyFile_SetBufSize(p_f[0], bufsize);
Raymond Hettinger8ae46892003-10-12 19:09:37 +00004607 f = PyTuple_Pack(3, p_f[0], p_f[1], p_f[2]);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004608 }
4609 else
Raymond Hettinger8ae46892003-10-12 19:09:37 +00004610 f = PyTuple_Pack(2, p_f[0], p_f[1]);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004611
4612 /*
4613 * Insert the files we've created into the process dictionary
4614 * all referencing the list with the process handle and the
4615 * initial number of files (see description below in _PyPclose).
4616 * Since if _PyPclose later tried to wait on a process when all
4617 * handles weren't closed, it could create a deadlock with the
4618 * child, we spend some energy here to try to ensure that we
4619 * either insert all file handles into the dictionary or none
4620 * at all. It's a little clumsy with the various popen modes
4621 * and variable number of files involved.
4622 */
4623 if (!_PyPopenProcs)
4624 {
4625 _PyPopenProcs = PyDict_New();
4626 }
4627
4628 if (_PyPopenProcs)
4629 {
4630 PyObject *procObj, *pidObj, *intObj, *fileObj[3];
4631 int ins_rc[3];
4632
4633 fileObj[0] = fileObj[1] = fileObj[2] = NULL;
4634 ins_rc[0] = ins_rc[1] = ins_rc[2] = 0;
4635
4636 procObj = PyList_New(2);
4637 pidObj = PyInt_FromLong((long) pipe_pid);
4638 intObj = PyInt_FromLong((long) file_count);
4639
4640 if (procObj && pidObj && intObj)
4641 {
4642 PyList_SetItem(procObj, 0, pidObj);
4643 PyList_SetItem(procObj, 1, intObj);
4644
4645 fileObj[0] = PyLong_FromVoidPtr(p_s[0]);
4646 if (fileObj[0])
4647 {
4648 ins_rc[0] = PyDict_SetItem(_PyPopenProcs,
4649 fileObj[0],
4650 procObj);
4651 }
4652 fileObj[1] = PyLong_FromVoidPtr(p_s[1]);
4653 if (fileObj[1])
4654 {
4655 ins_rc[1] = PyDict_SetItem(_PyPopenProcs,
4656 fileObj[1],
4657 procObj);
4658 }
4659 if (file_count >= 3)
4660 {
4661 fileObj[2] = PyLong_FromVoidPtr(p_s[2]);
4662 if (fileObj[2])
4663 {
4664 ins_rc[2] = PyDict_SetItem(_PyPopenProcs,
4665 fileObj[2],
4666 procObj);
4667 }
4668 }
4669
4670 if (ins_rc[0] < 0 || !fileObj[0] ||
4671 ins_rc[1] < 0 || (file_count > 1 && !fileObj[1]) ||
4672 ins_rc[2] < 0 || (file_count > 2 && !fileObj[2]))
4673 {
4674 /* Something failed - remove any dictionary
4675 * entries that did make it.
4676 */
4677 if (!ins_rc[0] && fileObj[0])
4678 {
4679 PyDict_DelItem(_PyPopenProcs,
4680 fileObj[0]);
4681 }
4682 if (!ins_rc[1] && fileObj[1])
4683 {
4684 PyDict_DelItem(_PyPopenProcs,
4685 fileObj[1]);
4686 }
4687 if (!ins_rc[2] && fileObj[2])
4688 {
4689 PyDict_DelItem(_PyPopenProcs,
4690 fileObj[2]);
4691 }
4692 }
4693 }
Tim Peters11b23062003-04-23 02:39:17 +00004694
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004695 /*
4696 * Clean up our localized references for the dictionary keys
4697 * and value since PyDict_SetItem will Py_INCREF any copies
4698 * that got placed in the dictionary.
4699 */
4700 Py_XDECREF(procObj);
4701 Py_XDECREF(fileObj[0]);
4702 Py_XDECREF(fileObj[1]);
4703 Py_XDECREF(fileObj[2]);
4704 }
4705
4706 /* Child is launched. */
4707 return f;
4708}
4709
4710/*
4711 * Wrapper for fclose() to use for popen* files, so we can retrieve the
4712 * exit code for the child process and return as a result of the close.
4713 *
4714 * This function uses the _PyPopenProcs dictionary in order to map the
4715 * input file pointer to information about the process that was
4716 * originally created by the popen* call that created the file pointer.
4717 * The dictionary uses the file pointer as a key (with one entry
4718 * inserted for each file returned by the original popen* call) and a
4719 * single list object as the value for all files from a single call.
4720 * The list object contains the Win32 process handle at [0], and a file
4721 * count at [1], which is initialized to the total number of file
4722 * handles using that list.
4723 *
4724 * This function closes whichever handle it is passed, and decrements
4725 * the file count in the dictionary for the process handle pointed to
4726 * by this file. On the last close (when the file count reaches zero),
4727 * this function will wait for the child process and then return its
4728 * exit code as the result of the close() operation. This permits the
4729 * files to be closed in any order - it is always the close() of the
4730 * final handle that will return the exit code.
Andrew MacIntyrebaf25b02003-04-21 14:22:36 +00004731 *
4732 * NOTE: This function is currently called with the GIL released.
4733 * hence we use the GILState API to manage our state.
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004734 */
4735
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004736static int _PyPclose(FILE *file)
4737{
4738 int result;
4739 int exit_code;
Christian Heimesd491d712008-02-01 18:49:26 +00004740 pid_t pipe_pid;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004741 PyObject *procObj, *pidObj, *intObj, *fileObj;
4742 int file_count;
4743#ifdef WITH_THREAD
Andrew MacIntyrebaf25b02003-04-21 14:22:36 +00004744 PyGILState_STATE state;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004745#endif
4746
4747 /* Close the file handle first, to ensure it can't block the
4748 * child from exiting if it's the last handle.
4749 */
4750 result = fclose(file);
4751
4752#ifdef WITH_THREAD
Andrew MacIntyrebaf25b02003-04-21 14:22:36 +00004753 state = PyGILState_Ensure();
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004754#endif
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004755 if (_PyPopenProcs)
4756 {
4757 if ((fileObj = PyLong_FromVoidPtr(file)) != NULL &&
4758 (procObj = PyDict_GetItem(_PyPopenProcs,
4759 fileObj)) != NULL &&
4760 (pidObj = PyList_GetItem(procObj,0)) != NULL &&
4761 (intObj = PyList_GetItem(procObj,1)) != NULL)
4762 {
4763 pipe_pid = (int) PyInt_AsLong(pidObj);
4764 file_count = (int) PyInt_AsLong(intObj);
4765
4766 if (file_count > 1)
4767 {
4768 /* Still other files referencing process */
4769 file_count--;
4770 PyList_SetItem(procObj,1,
4771 PyInt_FromLong((long) file_count));
4772 }
4773 else
4774 {
4775 /* Last file for this process */
4776 if (result != EOF &&
4777 waitpid(pipe_pid, &exit_code, 0) == pipe_pid)
4778 {
4779 /* extract exit status */
4780 if (WIFEXITED(exit_code))
4781 {
4782 result = WEXITSTATUS(exit_code);
4783 }
4784 else
4785 {
4786 errno = EPIPE;
4787 result = -1;
4788 }
4789 }
4790 else
4791 {
4792 /* Indicate failure - this will cause the file object
4793 * to raise an I/O error and translate the last
4794 * error code from errno. We do have a problem with
4795 * last errors that overlap the normal errno table,
4796 * but that's a consistent problem with the file object.
4797 */
4798 result = -1;
4799 }
4800 }
4801
4802 /* Remove this file pointer from dictionary */
4803 PyDict_DelItem(_PyPopenProcs, fileObj);
4804
4805 if (PyDict_Size(_PyPopenProcs) == 0)
4806 {
4807 Py_DECREF(_PyPopenProcs);
4808 _PyPopenProcs = NULL;
4809 }
4810
4811 } /* if object retrieval ok */
4812
4813 Py_XDECREF(fileObj);
4814 } /* if _PyPopenProcs */
4815
4816#ifdef WITH_THREAD
Andrew MacIntyrebaf25b02003-04-21 14:22:36 +00004817 PyGILState_Release(state);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004818#endif
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004819 return result;
4820}
4821
4822#endif /* PYCC_??? */
4823
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00004824#elif defined(MS_WINDOWS)
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004825
4826/*
4827 * Portable 'popen' replacement for Win32.
4828 *
4829 * Written by Bill Tutt <billtut@microsoft.com>. Minor tweaks
4830 * and 2.0 integration by Fredrik Lundh <fredrik@pythonware.com>
Mark Hammondb37a3732000-08-14 04:47:33 +00004831 * Return code handling by David Bolen <db3l@fitlinxx.com>.
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004832 */
4833
4834#include <malloc.h>
4835#include <io.h>
4836#include <fcntl.h>
4837
4838/* These tell _PyPopen() wether to return 1, 2, or 3 file objects. */
4839#define POPEN_1 1
4840#define POPEN_2 2
4841#define POPEN_3 3
4842#define POPEN_4 4
4843
4844static PyObject *_PyPopen(char *, int, int);
Fredrik Lundh56055a42000-07-23 19:47:12 +00004845static int _PyPclose(FILE *file);
4846
4847/*
4848 * Internal dictionary mapping popen* file pointers to process handles,
Mark Hammondb37a3732000-08-14 04:47:33 +00004849 * for use when retrieving the process exit code. See _PyPclose() below
4850 * for more information on this dictionary's use.
Fredrik Lundh56055a42000-07-23 19:47:12 +00004851 */
4852static PyObject *_PyPopenProcs = NULL;
4853
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004854
4855/* popen that works from a GUI.
4856 *
4857 * The result of this function is a pipe (file) connected to the
4858 * processes stdin or stdout, depending on the requested mode.
4859 */
4860
4861static PyObject *
4862posix_popen(PyObject *self, PyObject *args)
4863{
Raymond Hettingerb5cb6652003-09-01 22:25:41 +00004864 PyObject *f;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004865 int tm = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00004866
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004867 char *cmdstring;
4868 char *mode = "r";
Fredrik Lundhbb7eeff2000-07-09 17:59:32 +00004869 int bufsize = -1;
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004870 if (!PyArg_ParseTuple(args, "s|si:popen", &cmdstring, &mode, &bufsize))
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004871 return NULL;
4872
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004873 if (*mode == 'r')
4874 tm = _O_RDONLY;
4875 else if (*mode != 'w') {
Fred Drake661ea262000-10-24 19:57:45 +00004876 PyErr_SetString(PyExc_ValueError, "popen() arg 2 must be 'r' or 'w'");
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004877 return NULL;
4878 } else
4879 tm = _O_WRONLY;
Tim Peters5aa91602002-01-30 05:46:57 +00004880
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004881 if (bufsize != -1) {
Fred Drake661ea262000-10-24 19:57:45 +00004882 PyErr_SetString(PyExc_ValueError, "popen() arg 3 must be -1");
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004883 return NULL;
4884 }
4885
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004886 if (*(mode+1) == 't')
Fredrik Lundhbb7eeff2000-07-09 17:59:32 +00004887 f = _PyPopen(cmdstring, tm | _O_TEXT, POPEN_1);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004888 else if (*(mode+1) == 'b')
Fredrik Lundhbb7eeff2000-07-09 17:59:32 +00004889 f = _PyPopen(cmdstring, tm | _O_BINARY, POPEN_1);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004890 else
4891 f = _PyPopen(cmdstring, tm | _O_TEXT, POPEN_1);
4892
4893 return f;
4894}
4895
4896/* Variation on win32pipe.popen
4897 *
4898 * The result of this function is a pipe (file) connected to the
4899 * process's stdin, and a pipe connected to the process's stdout.
4900 */
4901
4902static PyObject *
4903win32_popen2(PyObject *self, PyObject *args)
4904{
4905 PyObject *f;
4906 int tm=0;
Tim Peters5aa91602002-01-30 05:46:57 +00004907
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004908 char *cmdstring;
4909 char *mode = "t";
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004910 int bufsize = -1;
4911 if (!PyArg_ParseTuple(args, "s|si:popen2", &cmdstring, &mode, &bufsize))
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004912 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00004913
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004914 if (*mode == 't')
4915 tm = _O_TEXT;
4916 else if (*mode != 'b') {
Fred Drake661ea262000-10-24 19:57:45 +00004917 PyErr_SetString(PyExc_ValueError, "popen2() arg 2 must be 't' or 'b'");
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004918 return NULL;
4919 } else
4920 tm = _O_BINARY;
Tim Peters5aa91602002-01-30 05:46:57 +00004921
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004922 if (bufsize != -1) {
Fred Drake661ea262000-10-24 19:57:45 +00004923 PyErr_SetString(PyExc_ValueError, "popen2() arg 3 must be -1");
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004924 return NULL;
4925 }
4926
4927 f = _PyPopen(cmdstring, tm, POPEN_2);
Tim Peters5aa91602002-01-30 05:46:57 +00004928
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004929 return f;
4930}
4931
4932/*
4933 * Variation on <om win32pipe.popen>
Fredrik Lundhbb7eeff2000-07-09 17:59:32 +00004934 *
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004935 * The result of this function is 3 pipes - the process's stdin,
4936 * stdout and stderr
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004937 */
4938
4939static PyObject *
4940win32_popen3(PyObject *self, PyObject *args)
4941{
4942 PyObject *f;
4943 int tm = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00004944
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004945 char *cmdstring;
4946 char *mode = "t";
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004947 int bufsize = -1;
4948 if (!PyArg_ParseTuple(args, "s|si:popen3", &cmdstring, &mode, &bufsize))
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004949 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00004950
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004951 if (*mode == 't')
4952 tm = _O_TEXT;
4953 else if (*mode != 'b') {
Fred Drake661ea262000-10-24 19:57:45 +00004954 PyErr_SetString(PyExc_ValueError, "popen3() arg 2 must be 't' or 'b'");
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004955 return NULL;
4956 } else
4957 tm = _O_BINARY;
Tim Peters5aa91602002-01-30 05:46:57 +00004958
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004959 if (bufsize != -1) {
Fred Drake661ea262000-10-24 19:57:45 +00004960 PyErr_SetString(PyExc_ValueError, "popen3() arg 3 must be -1");
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004961 return NULL;
4962 }
4963
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004964 f = _PyPopen(cmdstring, tm, POPEN_3);
Tim Peters5aa91602002-01-30 05:46:57 +00004965
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004966 return f;
4967}
4968
4969/*
4970 * Variation on win32pipe.popen
4971 *
Tim Peters5aa91602002-01-30 05:46:57 +00004972 * The result of this function is 2 pipes - the processes stdin,
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004973 * and stdout+stderr combined as a single pipe.
4974 */
4975
4976static PyObject *
4977win32_popen4(PyObject *self, PyObject *args)
4978{
4979 PyObject *f;
4980 int tm = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00004981
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004982 char *cmdstring;
4983 char *mode = "t";
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004984 int bufsize = -1;
4985 if (!PyArg_ParseTuple(args, "s|si:popen4", &cmdstring, &mode, &bufsize))
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004986 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00004987
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004988 if (*mode == 't')
4989 tm = _O_TEXT;
4990 else if (*mode != 'b') {
Fred Drake661ea262000-10-24 19:57:45 +00004991 PyErr_SetString(PyExc_ValueError, "popen4() arg 2 must be 't' or 'b'");
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004992 return NULL;
4993 } else
4994 tm = _O_BINARY;
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004995
4996 if (bufsize != -1) {
Fred Drake661ea262000-10-24 19:57:45 +00004997 PyErr_SetString(PyExc_ValueError, "popen4() arg 3 must be -1");
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004998 return NULL;
4999 }
5000
Fredrik Lundhbb7eeff2000-07-09 17:59:32 +00005001 f = _PyPopen(cmdstring, tm, POPEN_4);
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00005002
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005003 return f;
5004}
5005
Mark Hammond08501372001-01-31 07:30:29 +00005006static BOOL
Mark Hammondb37a3732000-08-14 04:47:33 +00005007_PyPopenCreateProcess(char *cmdstring,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005008 HANDLE hStdin,
5009 HANDLE hStdout,
Mark Hammondb37a3732000-08-14 04:47:33 +00005010 HANDLE hStderr,
5011 HANDLE *hProcess)
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005012{
5013 PROCESS_INFORMATION piProcInfo;
5014 STARTUPINFO siStartInfo;
Mark Hammondfe51c6d2002-08-02 02:27:13 +00005015 DWORD dwProcessFlags = 0; /* no NEW_CONSOLE by default for Ctrl+C handling */
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005016 char *s1,*s2, *s3 = " /c ";
Mark Hammond08501372001-01-31 07:30:29 +00005017 const char *szConsoleSpawn = "w9xpopen.exe";
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005018 int i;
Martin v. Löwis18e16552006-02-15 17:27:45 +00005019 Py_ssize_t x;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005020
5021 if (i = GetEnvironmentVariable("COMSPEC",NULL,0)) {
Tim Peters402d5982001-08-27 06:37:48 +00005022 char *comshell;
5023
Tim Peters92e4dd82002-10-05 01:47:34 +00005024 s1 = (char *)alloca(i);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005025 if (!(x = GetEnvironmentVariable("COMSPEC", s1, i)))
Martin v. Löwis18e16552006-02-15 17:27:45 +00005026 /* x < i, so x fits into an integer */
5027 return (int)x;
Tim Peters402d5982001-08-27 06:37:48 +00005028
5029 /* Explicitly check if we are using COMMAND.COM. If we are
5030 * then use the w9xpopen hack.
5031 */
5032 comshell = s1 + x;
5033 while (comshell >= s1 && *comshell != '\\')
5034 --comshell;
5035 ++comshell;
5036
5037 if (GetVersion() < 0x80000000 &&
5038 _stricmp(comshell, "command.com") != 0) {
5039 /* NT/2000 and not using command.com. */
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005040 x = i + strlen(s3) + strlen(cmdstring) + 1;
Tim Peters92e4dd82002-10-05 01:47:34 +00005041 s2 = (char *)alloca(x);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005042 ZeroMemory(s2, x);
Tim Peters75cdad52001-11-28 22:07:30 +00005043 PyOS_snprintf(s2, x, "%s%s%s", s1, s3, cmdstring);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005044 }
5045 else {
5046 /*
Tim Peters402d5982001-08-27 06:37:48 +00005047 * Oh gag, we're on Win9x or using COMMAND.COM. Use
5048 * the workaround listed in KB: Q150956
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005049 */
Mark Hammond08501372001-01-31 07:30:29 +00005050 char modulepath[_MAX_PATH];
5051 struct stat statinfo;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005052 GetModuleFileName(NULL, modulepath, sizeof(modulepath));
Martin v. Löwis26fd9602006-04-22 11:15:41 +00005053 for (x = i = 0; modulepath[i]; i++)
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00005054 if (modulepath[i] == SEP)
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005055 x = i+1;
5056 modulepath[x] = '\0';
Mark Hammond08501372001-01-31 07:30:29 +00005057 /* Create the full-name to w9xpopen, so we can test it exists */
Tim Peters5aa91602002-01-30 05:46:57 +00005058 strncat(modulepath,
5059 szConsoleSpawn,
Mark Hammond08501372001-01-31 07:30:29 +00005060 (sizeof(modulepath)/sizeof(modulepath[0]))
5061 -strlen(modulepath));
5062 if (stat(modulepath, &statinfo) != 0) {
Kristján Valur Jónsson17b8e972007-04-25 00:10:50 +00005063 size_t mplen = sizeof(modulepath)/sizeof(modulepath[0]);
Tim Peters5aa91602002-01-30 05:46:57 +00005064 /* Eeek - file-not-found - possibly an embedding
5065 situation - see if we can locate it in sys.prefix
Mark Hammond08501372001-01-31 07:30:29 +00005066 */
Tim Peters5aa91602002-01-30 05:46:57 +00005067 strncpy(modulepath,
5068 Py_GetExecPrefix(),
Kristján Valur Jónsson17b8e972007-04-25 00:10:50 +00005069 mplen);
5070 modulepath[mplen-1] = '\0';
Mark Hammond08501372001-01-31 07:30:29 +00005071 if (modulepath[strlen(modulepath)-1] != '\\')
5072 strcat(modulepath, "\\");
Tim Peters5aa91602002-01-30 05:46:57 +00005073 strncat(modulepath,
5074 szConsoleSpawn,
Kristján Valur Jónsson17b8e972007-04-25 00:10:50 +00005075 mplen-strlen(modulepath));
Mark Hammond08501372001-01-31 07:30:29 +00005076 /* No where else to look - raise an easily identifiable
5077 error, rather than leaving Windows to report
5078 "file not found" - as the user is probably blissfully
5079 unaware this shim EXE is used, and it will confuse them.
5080 (well, it confused me for a while ;-)
5081 */
5082 if (stat(modulepath, &statinfo) != 0) {
Tim Peters5aa91602002-01-30 05:46:57 +00005083 PyErr_Format(PyExc_RuntimeError,
Mark Hammond08501372001-01-31 07:30:29 +00005084 "Can not locate '%s' which is needed "
Tim Peters402d5982001-08-27 06:37:48 +00005085 "for popen to work with your shell "
5086 "or platform.",
Mark Hammond08501372001-01-31 07:30:29 +00005087 szConsoleSpawn);
5088 return FALSE;
5089 }
5090 }
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005091 x = i + strlen(s3) + strlen(cmdstring) + 1 +
Tim Peters5aa91602002-01-30 05:46:57 +00005092 strlen(modulepath) +
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005093 strlen(szConsoleSpawn) + 1;
Mark Hammond08501372001-01-31 07:30:29 +00005094
Tim Peters92e4dd82002-10-05 01:47:34 +00005095 s2 = (char *)alloca(x);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005096 ZeroMemory(s2, x);
Mark Hammonde7fefbf2002-04-03 01:47:00 +00005097 /* To maintain correct argument passing semantics,
5098 we pass the command-line as it stands, and allow
5099 quoting to be applied. w9xpopen.exe will then
5100 use its argv vector, and re-quote the necessary
5101 args for the ultimate child process.
5102 */
Tim Peters75cdad52001-11-28 22:07:30 +00005103 PyOS_snprintf(
5104 s2, x,
Mark Hammonde7fefbf2002-04-03 01:47:00 +00005105 "\"%s\" %s%s%s",
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005106 modulepath,
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005107 s1,
5108 s3,
5109 cmdstring);
Mark Hammondfe51c6d2002-08-02 02:27:13 +00005110 /* Not passing CREATE_NEW_CONSOLE has been known to
Tim Peters11b23062003-04-23 02:39:17 +00005111 cause random failures on win9x. Specifically a
Mark Hammondfe51c6d2002-08-02 02:27:13 +00005112 dialog:
5113 "Your program accessed mem currently in use at xxx"
5114 and a hopeful warning about the stability of your
5115 system.
5116 Cost is Ctrl+C wont kill children, but anyone
5117 who cares can have a go!
5118 */
5119 dwProcessFlags |= CREATE_NEW_CONSOLE;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005120 }
5121 }
5122
5123 /* Could be an else here to try cmd.exe / command.com in the path
5124 Now we'll just error out.. */
Mark Hammond08501372001-01-31 07:30:29 +00005125 else {
Tim Peters402d5982001-08-27 06:37:48 +00005126 PyErr_SetString(PyExc_RuntimeError,
5127 "Cannot locate a COMSPEC environment variable to "
5128 "use as the shell");
Mark Hammond08501372001-01-31 07:30:29 +00005129 return FALSE;
5130 }
Tim Peters5aa91602002-01-30 05:46:57 +00005131
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005132 ZeroMemory(&siStartInfo, sizeof(STARTUPINFO));
5133 siStartInfo.cb = sizeof(STARTUPINFO);
5134 siStartInfo.dwFlags = STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW;
5135 siStartInfo.hStdInput = hStdin;
5136 siStartInfo.hStdOutput = hStdout;
5137 siStartInfo.hStdError = hStderr;
5138 siStartInfo.wShowWindow = SW_HIDE;
5139
5140 if (CreateProcess(NULL,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005141 s2,
5142 NULL,
5143 NULL,
5144 TRUE,
Mark Hammondfe51c6d2002-08-02 02:27:13 +00005145 dwProcessFlags,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005146 NULL,
5147 NULL,
5148 &siStartInfo,
5149 &piProcInfo) ) {
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005150 /* Close the handles now so anyone waiting is woken. */
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005151 CloseHandle(piProcInfo.hThread);
Fredrik Lundh56055a42000-07-23 19:47:12 +00005152
Mark Hammondb37a3732000-08-14 04:47:33 +00005153 /* Return process handle */
5154 *hProcess = piProcInfo.hProcess;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005155 return TRUE;
5156 }
Tim Peters402d5982001-08-27 06:37:48 +00005157 win32_error("CreateProcess", s2);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005158 return FALSE;
5159}
5160
5161/* The following code is based off of KB: Q190351 */
5162
5163static PyObject *
5164_PyPopen(char *cmdstring, int mode, int n)
5165{
5166 HANDLE hChildStdinRd, hChildStdinWr, hChildStdoutRd, hChildStdoutWr,
5167 hChildStderrRd, hChildStderrWr, hChildStdinWrDup, hChildStdoutRdDup,
Mark Hammondb37a3732000-08-14 04:47:33 +00005168 hChildStderrRdDup, hProcess; /* hChildStdoutWrDup; */
Tim Peters5aa91602002-01-30 05:46:57 +00005169
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005170 SECURITY_ATTRIBUTES saAttr;
5171 BOOL fSuccess;
5172 int fd1, fd2, fd3;
5173 FILE *f1, *f2, *f3;
Mark Hammondb37a3732000-08-14 04:47:33 +00005174 long file_count;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005175 PyObject *f;
5176
5177 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
5178 saAttr.bInheritHandle = TRUE;
5179 saAttr.lpSecurityDescriptor = NULL;
5180
5181 if (!CreatePipe(&hChildStdinRd, &hChildStdinWr, &saAttr, 0))
5182 return win32_error("CreatePipe", NULL);
5183
5184 /* Create new output read handle and the input write handle. Set
5185 * the inheritance properties to FALSE. Otherwise, the child inherits
Walter Dörwaldf0dfc7a2003-10-20 14:01:56 +00005186 * these handles; resulting in non-closeable handles to the pipes
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005187 * being created. */
5188 fSuccess = DuplicateHandle(GetCurrentProcess(), hChildStdinWr,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005189 GetCurrentProcess(), &hChildStdinWrDup, 0,
5190 FALSE,
5191 DUPLICATE_SAME_ACCESS);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005192 if (!fSuccess)
5193 return win32_error("DuplicateHandle", NULL);
5194
5195 /* Close the inheritable version of ChildStdin
5196 that we're using. */
5197 CloseHandle(hChildStdinWr);
5198
5199 if (!CreatePipe(&hChildStdoutRd, &hChildStdoutWr, &saAttr, 0))
5200 return win32_error("CreatePipe", NULL);
5201
5202 fSuccess = DuplicateHandle(GetCurrentProcess(), hChildStdoutRd,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005203 GetCurrentProcess(), &hChildStdoutRdDup, 0,
5204 FALSE, DUPLICATE_SAME_ACCESS);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005205 if (!fSuccess)
5206 return win32_error("DuplicateHandle", NULL);
5207
5208 /* Close the inheritable version of ChildStdout
5209 that we're using. */
5210 CloseHandle(hChildStdoutRd);
5211
5212 if (n != POPEN_4) {
5213 if (!CreatePipe(&hChildStderrRd, &hChildStderrWr, &saAttr, 0))
5214 return win32_error("CreatePipe", NULL);
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005215 fSuccess = DuplicateHandle(GetCurrentProcess(),
5216 hChildStderrRd,
5217 GetCurrentProcess(),
5218 &hChildStderrRdDup, 0,
5219 FALSE, DUPLICATE_SAME_ACCESS);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005220 if (!fSuccess)
5221 return win32_error("DuplicateHandle", NULL);
5222 /* Close the inheritable version of ChildStdErr that we're using. */
5223 CloseHandle(hChildStderrRd);
5224 }
Tim Peters5aa91602002-01-30 05:46:57 +00005225
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005226 switch (n) {
5227 case POPEN_1:
5228 switch (mode & (_O_RDONLY | _O_TEXT | _O_BINARY | _O_WRONLY)) {
5229 case _O_WRONLY | _O_TEXT:
5230 /* Case for writing to child Stdin in text mode. */
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005231 fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005232 f1 = _fdopen(fd1, "w");
Fredrik Lundh56055a42000-07-23 19:47:12 +00005233 f = PyFile_FromFile(f1, cmdstring, "w", _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005234 PyFile_SetBufSize(f, 0);
5235 /* We don't care about these pipes anymore, so close them. */
5236 CloseHandle(hChildStdoutRdDup);
5237 CloseHandle(hChildStderrRdDup);
5238 break;
5239
5240 case _O_RDONLY | _O_TEXT:
5241 /* Case for reading from child Stdout in text mode. */
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005242 fd1 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005243 f1 = _fdopen(fd1, "r");
Fredrik Lundh56055a42000-07-23 19:47:12 +00005244 f = PyFile_FromFile(f1, cmdstring, "r", _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005245 PyFile_SetBufSize(f, 0);
5246 /* We don't care about these pipes anymore, so close them. */
5247 CloseHandle(hChildStdinWrDup);
5248 CloseHandle(hChildStderrRdDup);
5249 break;
5250
5251 case _O_RDONLY | _O_BINARY:
5252 /* Case for readinig from child Stdout in binary mode. */
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005253 fd1 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005254 f1 = _fdopen(fd1, "rb");
Fredrik Lundh56055a42000-07-23 19:47:12 +00005255 f = PyFile_FromFile(f1, cmdstring, "rb", _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005256 PyFile_SetBufSize(f, 0);
5257 /* We don't care about these pipes anymore, so close them. */
5258 CloseHandle(hChildStdinWrDup);
5259 CloseHandle(hChildStderrRdDup);
5260 break;
5261
5262 case _O_WRONLY | _O_BINARY:
5263 /* Case for writing to child Stdin in binary mode. */
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005264 fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005265 f1 = _fdopen(fd1, "wb");
Fredrik Lundh56055a42000-07-23 19:47:12 +00005266 f = PyFile_FromFile(f1, cmdstring, "wb", _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005267 PyFile_SetBufSize(f, 0);
5268 /* We don't care about these pipes anymore, so close them. */
5269 CloseHandle(hChildStdoutRdDup);
5270 CloseHandle(hChildStderrRdDup);
5271 break;
5272 }
Mark Hammondb37a3732000-08-14 04:47:33 +00005273 file_count = 1;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005274 break;
Tim Peters5aa91602002-01-30 05:46:57 +00005275
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005276 case POPEN_2:
5277 case POPEN_4:
5278 {
5279 char *m1, *m2;
5280 PyObject *p1, *p2;
Tim Peters5aa91602002-01-30 05:46:57 +00005281
Tim Peters7dca21e2002-08-19 00:42:29 +00005282 if (mode & _O_TEXT) {
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005283 m1 = "r";
5284 m2 = "w";
5285 } else {
5286 m1 = "rb";
5287 m2 = "wb";
5288 }
5289
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005290 fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005291 f1 = _fdopen(fd1, m2);
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005292 fd2 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005293 f2 = _fdopen(fd2, m1);
Fredrik Lundh56055a42000-07-23 19:47:12 +00005294 p1 = PyFile_FromFile(f1, cmdstring, m2, _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005295 PyFile_SetBufSize(p1, 0);
Mark Hammondb37a3732000-08-14 04:47:33 +00005296 p2 = PyFile_FromFile(f2, cmdstring, m1, _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005297 PyFile_SetBufSize(p2, 0);
5298
5299 if (n != 4)
5300 CloseHandle(hChildStderrRdDup);
5301
Raymond Hettinger8ae46892003-10-12 19:09:37 +00005302 f = PyTuple_Pack(2,p1,p2);
Mark Hammond64aae662001-01-31 05:38:47 +00005303 Py_XDECREF(p1);
5304 Py_XDECREF(p2);
Mark Hammondb37a3732000-08-14 04:47:33 +00005305 file_count = 2;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005306 break;
5307 }
Tim Peters5aa91602002-01-30 05:46:57 +00005308
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005309 case POPEN_3:
5310 {
5311 char *m1, *m2;
5312 PyObject *p1, *p2, *p3;
Tim Peters5aa91602002-01-30 05:46:57 +00005313
Tim Peters7dca21e2002-08-19 00:42:29 +00005314 if (mode & _O_TEXT) {
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005315 m1 = "r";
5316 m2 = "w";
5317 } else {
5318 m1 = "rb";
5319 m2 = "wb";
5320 }
5321
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005322 fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005323 f1 = _fdopen(fd1, m2);
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005324 fd2 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005325 f2 = _fdopen(fd2, m1);
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005326 fd3 = _open_osfhandle((Py_intptr_t)hChildStderrRdDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005327 f3 = _fdopen(fd3, m1);
Fredrik Lundh56055a42000-07-23 19:47:12 +00005328 p1 = PyFile_FromFile(f1, cmdstring, m2, _PyPclose);
Mark Hammondb37a3732000-08-14 04:47:33 +00005329 p2 = PyFile_FromFile(f2, cmdstring, m1, _PyPclose);
5330 p3 = PyFile_FromFile(f3, cmdstring, m1, _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005331 PyFile_SetBufSize(p1, 0);
5332 PyFile_SetBufSize(p2, 0);
5333 PyFile_SetBufSize(p3, 0);
Raymond Hettinger8ae46892003-10-12 19:09:37 +00005334 f = PyTuple_Pack(3,p1,p2,p3);
Mark Hammond64aae662001-01-31 05:38:47 +00005335 Py_XDECREF(p1);
5336 Py_XDECREF(p2);
5337 Py_XDECREF(p3);
Mark Hammondb37a3732000-08-14 04:47:33 +00005338 file_count = 3;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005339 break;
5340 }
5341 }
5342
5343 if (n == POPEN_4) {
5344 if (!_PyPopenCreateProcess(cmdstring,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005345 hChildStdinRd,
5346 hChildStdoutWr,
Mark Hammondb37a3732000-08-14 04:47:33 +00005347 hChildStdoutWr,
5348 &hProcess))
Mark Hammond08501372001-01-31 07:30:29 +00005349 return NULL;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005350 }
5351 else {
5352 if (!_PyPopenCreateProcess(cmdstring,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005353 hChildStdinRd,
5354 hChildStdoutWr,
Mark Hammondb37a3732000-08-14 04:47:33 +00005355 hChildStderrWr,
5356 &hProcess))
Mark Hammond08501372001-01-31 07:30:29 +00005357 return NULL;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005358 }
5359
Mark Hammondb37a3732000-08-14 04:47:33 +00005360 /*
5361 * Insert the files we've created into the process dictionary
5362 * all referencing the list with the process handle and the
5363 * initial number of files (see description below in _PyPclose).
5364 * Since if _PyPclose later tried to wait on a process when all
5365 * handles weren't closed, it could create a deadlock with the
5366 * child, we spend some energy here to try to ensure that we
5367 * either insert all file handles into the dictionary or none
5368 * at all. It's a little clumsy with the various popen modes
5369 * and variable number of files involved.
5370 */
5371 if (!_PyPopenProcs) {
5372 _PyPopenProcs = PyDict_New();
5373 }
5374
5375 if (_PyPopenProcs) {
5376 PyObject *procObj, *hProcessObj, *intObj, *fileObj[3];
5377 int ins_rc[3];
5378
5379 fileObj[0] = fileObj[1] = fileObj[2] = NULL;
5380 ins_rc[0] = ins_rc[1] = ins_rc[2] = 0;
5381
5382 procObj = PyList_New(2);
5383 hProcessObj = PyLong_FromVoidPtr(hProcess);
5384 intObj = PyInt_FromLong(file_count);
5385
5386 if (procObj && hProcessObj && intObj) {
5387 PyList_SetItem(procObj,0,hProcessObj);
5388 PyList_SetItem(procObj,1,intObj);
5389
5390 fileObj[0] = PyLong_FromVoidPtr(f1);
5391 if (fileObj[0]) {
5392 ins_rc[0] = PyDict_SetItem(_PyPopenProcs,
5393 fileObj[0],
5394 procObj);
5395 }
5396 if (file_count >= 2) {
5397 fileObj[1] = PyLong_FromVoidPtr(f2);
5398 if (fileObj[1]) {
5399 ins_rc[1] = PyDict_SetItem(_PyPopenProcs,
5400 fileObj[1],
5401 procObj);
5402 }
5403 }
5404 if (file_count >= 3) {
5405 fileObj[2] = PyLong_FromVoidPtr(f3);
5406 if (fileObj[2]) {
5407 ins_rc[2] = PyDict_SetItem(_PyPopenProcs,
5408 fileObj[2],
5409 procObj);
5410 }
5411 }
5412
5413 if (ins_rc[0] < 0 || !fileObj[0] ||
5414 ins_rc[1] < 0 || (file_count > 1 && !fileObj[1]) ||
5415 ins_rc[2] < 0 || (file_count > 2 && !fileObj[2])) {
5416 /* Something failed - remove any dictionary
5417 * entries that did make it.
5418 */
5419 if (!ins_rc[0] && fileObj[0]) {
5420 PyDict_DelItem(_PyPopenProcs,
5421 fileObj[0]);
5422 }
5423 if (!ins_rc[1] && fileObj[1]) {
5424 PyDict_DelItem(_PyPopenProcs,
5425 fileObj[1]);
5426 }
5427 if (!ins_rc[2] && fileObj[2]) {
5428 PyDict_DelItem(_PyPopenProcs,
5429 fileObj[2]);
5430 }
5431 }
5432 }
Tim Peters5aa91602002-01-30 05:46:57 +00005433
Mark Hammondb37a3732000-08-14 04:47:33 +00005434 /*
5435 * Clean up our localized references for the dictionary keys
5436 * and value since PyDict_SetItem will Py_INCREF any copies
5437 * that got placed in the dictionary.
5438 */
5439 Py_XDECREF(procObj);
5440 Py_XDECREF(fileObj[0]);
5441 Py_XDECREF(fileObj[1]);
5442 Py_XDECREF(fileObj[2]);
5443 }
5444
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005445 /* Child is launched. Close the parents copy of those pipe
5446 * handles that only the child should have open. You need to
5447 * make sure that no handles to the write end of the output pipe
5448 * are maintained in this process or else the pipe will not close
5449 * when the child process exits and the ReadFile will hang. */
5450
5451 if (!CloseHandle(hChildStdinRd))
5452 return win32_error("CloseHandle", NULL);
Tim Peters5aa91602002-01-30 05:46:57 +00005453
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005454 if (!CloseHandle(hChildStdoutWr))
5455 return win32_error("CloseHandle", NULL);
Tim Peters5aa91602002-01-30 05:46:57 +00005456
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005457 if ((n != 4) && (!CloseHandle(hChildStderrWr)))
5458 return win32_error("CloseHandle", NULL);
5459
5460 return f;
5461}
Fredrik Lundh56055a42000-07-23 19:47:12 +00005462
5463/*
5464 * Wrapper for fclose() to use for popen* files, so we can retrieve the
5465 * exit code for the child process and return as a result of the close.
Mark Hammondb37a3732000-08-14 04:47:33 +00005466 *
5467 * This function uses the _PyPopenProcs dictionary in order to map the
5468 * input file pointer to information about the process that was
5469 * originally created by the popen* call that created the file pointer.
5470 * The dictionary uses the file pointer as a key (with one entry
5471 * inserted for each file returned by the original popen* call) and a
5472 * single list object as the value for all files from a single call.
5473 * The list object contains the Win32 process handle at [0], and a file
5474 * count at [1], which is initialized to the total number of file
5475 * handles using that list.
5476 *
5477 * This function closes whichever handle it is passed, and decrements
5478 * the file count in the dictionary for the process handle pointed to
5479 * by this file. On the last close (when the file count reaches zero),
5480 * this function will wait for the child process and then return its
5481 * exit code as the result of the close() operation. This permits the
5482 * files to be closed in any order - it is always the close() of the
5483 * final handle that will return the exit code.
Mark Hammond8d98d2c2003-04-19 15:41:53 +00005484 *
5485 * NOTE: This function is currently called with the GIL released.
5486 * hence we use the GILState API to manage our state.
Fredrik Lundh56055a42000-07-23 19:47:12 +00005487 */
Tim Peters736aa322000-09-01 06:51:24 +00005488
Fredrik Lundh56055a42000-07-23 19:47:12 +00005489static int _PyPclose(FILE *file)
5490{
Fredrik Lundh20318932000-07-26 17:29:12 +00005491 int result;
Fredrik Lundh56055a42000-07-23 19:47:12 +00005492 DWORD exit_code;
5493 HANDLE hProcess;
Mark Hammondb37a3732000-08-14 04:47:33 +00005494 PyObject *procObj, *hProcessObj, *intObj, *fileObj;
5495 long file_count;
Tim Peters736aa322000-09-01 06:51:24 +00005496#ifdef WITH_THREAD
Mark Hammond8d98d2c2003-04-19 15:41:53 +00005497 PyGILState_STATE state;
Tim Peters736aa322000-09-01 06:51:24 +00005498#endif
5499
Fredrik Lundh20318932000-07-26 17:29:12 +00005500 /* Close the file handle first, to ensure it can't block the
Mark Hammondb37a3732000-08-14 04:47:33 +00005501 * child from exiting if it's the last handle.
Fredrik Lundh20318932000-07-26 17:29:12 +00005502 */
5503 result = fclose(file);
Tim Peters736aa322000-09-01 06:51:24 +00005504#ifdef WITH_THREAD
Mark Hammond8d98d2c2003-04-19 15:41:53 +00005505 state = PyGILState_Ensure();
Tim Peters736aa322000-09-01 06:51:24 +00005506#endif
Fredrik Lundh56055a42000-07-23 19:47:12 +00005507 if (_PyPopenProcs) {
Mark Hammondb37a3732000-08-14 04:47:33 +00005508 if ((fileObj = PyLong_FromVoidPtr(file)) != NULL &&
5509 (procObj = PyDict_GetItem(_PyPopenProcs,
5510 fileObj)) != NULL &&
5511 (hProcessObj = PyList_GetItem(procObj,0)) != NULL &&
5512 (intObj = PyList_GetItem(procObj,1)) != NULL) {
5513
5514 hProcess = PyLong_AsVoidPtr(hProcessObj);
5515 file_count = PyInt_AsLong(intObj);
5516
5517 if (file_count > 1) {
5518 /* Still other files referencing process */
5519 file_count--;
5520 PyList_SetItem(procObj,1,
5521 PyInt_FromLong(file_count));
5522 } else {
5523 /* Last file for this process */
Fredrik Lundh20318932000-07-26 17:29:12 +00005524 if (result != EOF &&
5525 WaitForSingleObject(hProcess, INFINITE) != WAIT_FAILED &&
5526 GetExitCodeProcess(hProcess, &exit_code)) {
Fredrik Lundh56055a42000-07-23 19:47:12 +00005527 /* Possible truncation here in 16-bit environments, but
5528 * real exit codes are just the lower byte in any event.
5529 */
5530 result = exit_code;
Fredrik Lundh56055a42000-07-23 19:47:12 +00005531 } else {
Fredrik Lundh20318932000-07-26 17:29:12 +00005532 /* Indicate failure - this will cause the file object
5533 * to raise an I/O error and translate the last Win32
5534 * error code from errno. We do have a problem with
5535 * last errors that overlap the normal errno table,
5536 * but that's a consistent problem with the file object.
Fredrik Lundh56055a42000-07-23 19:47:12 +00005537 */
Fredrik Lundh20318932000-07-26 17:29:12 +00005538 if (result != EOF) {
5539 /* If the error wasn't from the fclose(), then
5540 * set errno for the file object error handling.
5541 */
5542 errno = GetLastError();
5543 }
5544 result = -1;
Fredrik Lundh56055a42000-07-23 19:47:12 +00005545 }
5546
5547 /* Free up the native handle at this point */
5548 CloseHandle(hProcess);
Mark Hammondb37a3732000-08-14 04:47:33 +00005549 }
Fredrik Lundh56055a42000-07-23 19:47:12 +00005550
Mark Hammondb37a3732000-08-14 04:47:33 +00005551 /* Remove this file pointer from dictionary */
5552 PyDict_DelItem(_PyPopenProcs, fileObj);
5553
5554 if (PyDict_Size(_PyPopenProcs) == 0) {
5555 Py_DECREF(_PyPopenProcs);
5556 _PyPopenProcs = NULL;
5557 }
5558
5559 } /* if object retrieval ok */
5560
5561 Py_XDECREF(fileObj);
Fredrik Lundh56055a42000-07-23 19:47:12 +00005562 } /* if _PyPopenProcs */
5563
Tim Peters736aa322000-09-01 06:51:24 +00005564#ifdef WITH_THREAD
Mark Hammond8d98d2c2003-04-19 15:41:53 +00005565 PyGILState_Release(state);
Tim Peters736aa322000-09-01 06:51:24 +00005566#endif
Fredrik Lundh56055a42000-07-23 19:47:12 +00005567 return result;
5568}
Tim Peters9acdd3a2000-09-01 19:26:36 +00005569
5570#else /* which OS? */
Barry Warsaw53699e91996-12-10 23:23:01 +00005571static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005572posix_popen(PyObject *self, PyObject *args)
Guido van Rossum3b066191991-06-04 19:40:25 +00005573{
Guido van Rossuma6a1e531995-01-10 15:36:38 +00005574 char *name;
5575 char *mode = "r";
5576 int bufsize = -1;
Guido van Rossum3b066191991-06-04 19:40:25 +00005577 FILE *fp;
Barry Warsaw53699e91996-12-10 23:23:01 +00005578 PyObject *f;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00005579 if (!PyArg_ParseTuple(args, "s|si:popen", &name, &mode, &bufsize))
Guido van Rossum3b066191991-06-04 19:40:25 +00005580 return NULL;
Martin v. Löwis9ad853b2003-10-31 10:01:53 +00005581 /* Strip mode of binary or text modifiers */
5582 if (strcmp(mode, "rb") == 0 || strcmp(mode, "rt") == 0)
5583 mode = "r";
5584 else if (strcmp(mode, "wb") == 0 || strcmp(mode, "wt") == 0)
5585 mode = "w";
Barry Warsaw53699e91996-12-10 23:23:01 +00005586 Py_BEGIN_ALLOW_THREADS
Guido van Rossumef0a00e1992-01-27 16:51:30 +00005587 fp = popen(name, mode);
Barry Warsaw53699e91996-12-10 23:23:01 +00005588 Py_END_ALLOW_THREADS
Guido van Rossum3b066191991-06-04 19:40:25 +00005589 if (fp == NULL)
5590 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00005591 f = PyFile_FromFile(fp, name, mode, pclose);
Guido van Rossuma6a1e531995-01-10 15:36:38 +00005592 if (f != NULL)
Barry Warsaw53699e91996-12-10 23:23:01 +00005593 PyFile_SetBufSize(f, bufsize);
Guido van Rossuma6a1e531995-01-10 15:36:38 +00005594 return f;
Guido van Rossum3b066191991-06-04 19:40:25 +00005595}
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00005596
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00005597#endif /* PYOS_??? */
Guido van Rossuma4916fa1996-05-23 22:58:55 +00005598#endif /* HAVE_POPEN */
Guido van Rossum3b066191991-06-04 19:40:25 +00005599
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005600
Guido van Rossumb6775db1994-08-01 11:34:53 +00005601#ifdef HAVE_SETUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005602PyDoc_STRVAR(posix_setuid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005603"setuid(uid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005604Set the current process's user id.");
5605
Barry Warsaw53699e91996-12-10 23:23:01 +00005606static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005607posix_setuid(PyObject *self, PyObject *args)
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005608{
5609 int uid;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00005610 if (!PyArg_ParseTuple(args, "i:setuid", &uid))
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005611 return NULL;
5612 if (setuid(uid) < 0)
5613 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00005614 Py_INCREF(Py_None);
5615 return Py_None;
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005616}
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00005617#endif /* HAVE_SETUID */
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005618
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005619
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005620#ifdef HAVE_SETEUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005621PyDoc_STRVAR(posix_seteuid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005622"seteuid(uid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005623Set the current process's effective user id.");
5624
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005625static PyObject *
5626posix_seteuid (PyObject *self, PyObject *args)
5627{
5628 int euid;
5629 if (!PyArg_ParseTuple(args, "i", &euid)) {
5630 return NULL;
5631 } else if (seteuid(euid) < 0) {
5632 return posix_error();
5633 } else {
5634 Py_INCREF(Py_None);
5635 return Py_None;
5636 }
5637}
5638#endif /* HAVE_SETEUID */
5639
5640#ifdef HAVE_SETEGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005641PyDoc_STRVAR(posix_setegid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005642"setegid(gid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005643Set the current process's effective group id.");
5644
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005645static PyObject *
5646posix_setegid (PyObject *self, PyObject *args)
5647{
5648 int egid;
5649 if (!PyArg_ParseTuple(args, "i", &egid)) {
5650 return NULL;
5651 } else if (setegid(egid) < 0) {
5652 return posix_error();
5653 } else {
5654 Py_INCREF(Py_None);
5655 return Py_None;
5656 }
5657}
5658#endif /* HAVE_SETEGID */
5659
5660#ifdef HAVE_SETREUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005661PyDoc_STRVAR(posix_setreuid__doc__,
Neal Norwitz94f1d712004-02-16 01:26:34 +00005662"setreuid(ruid, euid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005663Set the current process's real and effective user ids.");
5664
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005665static PyObject *
5666posix_setreuid (PyObject *self, PyObject *args)
5667{
5668 int ruid, euid;
5669 if (!PyArg_ParseTuple(args, "ii", &ruid, &euid)) {
5670 return NULL;
5671 } else if (setreuid(ruid, euid) < 0) {
5672 return posix_error();
5673 } else {
5674 Py_INCREF(Py_None);
5675 return Py_None;
5676 }
5677}
5678#endif /* HAVE_SETREUID */
5679
5680#ifdef HAVE_SETREGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005681PyDoc_STRVAR(posix_setregid__doc__,
Neal Norwitz94f1d712004-02-16 01:26:34 +00005682"setregid(rgid, egid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005683Set the current process's real and effective group ids.");
5684
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005685static PyObject *
5686posix_setregid (PyObject *self, PyObject *args)
5687{
5688 int rgid, egid;
5689 if (!PyArg_ParseTuple(args, "ii", &rgid, &egid)) {
5690 return NULL;
5691 } else if (setregid(rgid, egid) < 0) {
5692 return posix_error();
5693 } else {
5694 Py_INCREF(Py_None);
5695 return Py_None;
5696 }
5697}
5698#endif /* HAVE_SETREGID */
5699
Guido van Rossumb6775db1994-08-01 11:34:53 +00005700#ifdef HAVE_SETGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005701PyDoc_STRVAR(posix_setgid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005702"setgid(gid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005703Set the current process's group id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005704
Barry Warsaw53699e91996-12-10 23:23:01 +00005705static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005706posix_setgid(PyObject *self, PyObject *args)
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005707{
5708 int gid;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00005709 if (!PyArg_ParseTuple(args, "i:setgid", &gid))
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005710 return NULL;
5711 if (setgid(gid) < 0)
5712 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00005713 Py_INCREF(Py_None);
5714 return Py_None;
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005715}
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00005716#endif /* HAVE_SETGID */
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005717
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005718#ifdef HAVE_SETGROUPS
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005719PyDoc_STRVAR(posix_setgroups__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005720"setgroups(list)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005721Set the groups of the current process to list.");
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005722
5723static PyObject *
Georg Brandl96a8c392006-05-29 21:04:52 +00005724posix_setgroups(PyObject *self, PyObject *groups)
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005725{
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005726 int i, len;
5727 gid_t grouplist[MAX_GROUPS];
Tim Peters5aa91602002-01-30 05:46:57 +00005728
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005729 if (!PySequence_Check(groups)) {
5730 PyErr_SetString(PyExc_TypeError, "setgroups argument must be a sequence");
5731 return NULL;
5732 }
5733 len = PySequence_Size(groups);
5734 if (len > MAX_GROUPS) {
5735 PyErr_SetString(PyExc_ValueError, "too many groups");
5736 return NULL;
5737 }
5738 for(i = 0; i < len; i++) {
5739 PyObject *elem;
5740 elem = PySequence_GetItem(groups, i);
5741 if (!elem)
5742 return NULL;
5743 if (!PyInt_Check(elem)) {
Georg Brandla13c2442005-11-22 19:30:31 +00005744 if (!PyLong_Check(elem)) {
5745 PyErr_SetString(PyExc_TypeError,
5746 "groups must be integers");
5747 Py_DECREF(elem);
5748 return NULL;
5749 } else {
5750 unsigned long x = PyLong_AsUnsignedLong(elem);
5751 if (PyErr_Occurred()) {
5752 PyErr_SetString(PyExc_TypeError,
5753 "group id too big");
5754 Py_DECREF(elem);
5755 return NULL;
5756 }
5757 grouplist[i] = x;
5758 /* read back the value to see if it fitted in gid_t */
5759 if (grouplist[i] != x) {
5760 PyErr_SetString(PyExc_TypeError,
5761 "group id too big");
5762 Py_DECREF(elem);
5763 return NULL;
5764 }
5765 }
5766 } else {
5767 long x = PyInt_AsLong(elem);
5768 grouplist[i] = x;
5769 if (grouplist[i] != x) {
5770 PyErr_SetString(PyExc_TypeError,
5771 "group id too big");
5772 Py_DECREF(elem);
5773 return NULL;
5774 }
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005775 }
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005776 Py_DECREF(elem);
5777 }
5778
5779 if (setgroups(len, grouplist) < 0)
5780 return posix_error();
5781 Py_INCREF(Py_None);
5782 return Py_None;
5783}
5784#endif /* HAVE_SETGROUPS */
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005785
Neal Norwitz6c2f9132006-03-20 07:25:26 +00005786#if defined(HAVE_WAIT3) || defined(HAVE_WAIT4)
Neal Norwitz05a45592006-03-20 06:30:08 +00005787static PyObject *
Christian Heimesd491d712008-02-01 18:49:26 +00005788wait_helper(pid_t pid, int status, struct rusage *ru)
Neal Norwitz05a45592006-03-20 06:30:08 +00005789{
5790 PyObject *result;
5791 static PyObject *struct_rusage;
5792
5793 if (pid == -1)
5794 return posix_error();
5795
5796 if (struct_rusage == NULL) {
Christian Heimes000a0742008-01-03 22:16:32 +00005797 PyObject *m = PyImport_ImportModuleNoBlock("resource");
Neal Norwitz05a45592006-03-20 06:30:08 +00005798 if (m == NULL)
5799 return NULL;
5800 struct_rusage = PyObject_GetAttrString(m, "struct_rusage");
5801 Py_DECREF(m);
5802 if (struct_rusage == NULL)
5803 return NULL;
5804 }
5805
5806 /* XXX(nnorwitz): Copied (w/mods) from resource.c, there should be only one. */
5807 result = PyStructSequence_New((PyTypeObject*) struct_rusage);
5808 if (!result)
5809 return NULL;
5810
5811#ifndef doubletime
5812#define doubletime(TV) ((double)(TV).tv_sec + (TV).tv_usec * 0.000001)
5813#endif
5814
5815 PyStructSequence_SET_ITEM(result, 0,
5816 PyFloat_FromDouble(doubletime(ru->ru_utime)));
5817 PyStructSequence_SET_ITEM(result, 1,
5818 PyFloat_FromDouble(doubletime(ru->ru_stime)));
5819#define SET_INT(result, index, value)\
5820 PyStructSequence_SET_ITEM(result, index, PyInt_FromLong(value))
5821 SET_INT(result, 2, ru->ru_maxrss);
5822 SET_INT(result, 3, ru->ru_ixrss);
5823 SET_INT(result, 4, ru->ru_idrss);
5824 SET_INT(result, 5, ru->ru_isrss);
5825 SET_INT(result, 6, ru->ru_minflt);
5826 SET_INT(result, 7, ru->ru_majflt);
5827 SET_INT(result, 8, ru->ru_nswap);
5828 SET_INT(result, 9, ru->ru_inblock);
5829 SET_INT(result, 10, ru->ru_oublock);
5830 SET_INT(result, 11, ru->ru_msgsnd);
5831 SET_INT(result, 12, ru->ru_msgrcv);
5832 SET_INT(result, 13, ru->ru_nsignals);
5833 SET_INT(result, 14, ru->ru_nvcsw);
5834 SET_INT(result, 15, ru->ru_nivcsw);
5835#undef SET_INT
5836
5837 if (PyErr_Occurred()) {
5838 Py_DECREF(result);
5839 return NULL;
5840 }
5841
Neal Norwitz9b00a562006-03-20 08:47:12 +00005842 return Py_BuildValue("iiN", pid, status, result);
Neal Norwitz05a45592006-03-20 06:30:08 +00005843}
Neal Norwitz6c2f9132006-03-20 07:25:26 +00005844#endif /* HAVE_WAIT3 || HAVE_WAIT4 */
Neal Norwitz05a45592006-03-20 06:30:08 +00005845
5846#ifdef HAVE_WAIT3
5847PyDoc_STRVAR(posix_wait3__doc__,
5848"wait3(options) -> (pid, status, rusage)\n\n\
5849Wait for completion of a child process.");
5850
5851static PyObject *
5852posix_wait3(PyObject *self, PyObject *args)
5853{
Christian Heimesd491d712008-02-01 18:49:26 +00005854 pid_t pid;
5855 int options;
Neal Norwitz05a45592006-03-20 06:30:08 +00005856 struct rusage ru;
Neal Norwitzd5a37542006-03-20 06:48:34 +00005857 WAIT_TYPE status;
5858 WAIT_STATUS_INT(status) = 0;
Neal Norwitz05a45592006-03-20 06:30:08 +00005859
5860 if (!PyArg_ParseTuple(args, "i:wait3", &options))
5861 return NULL;
5862
5863 Py_BEGIN_ALLOW_THREADS
5864 pid = wait3(&status, options, &ru);
5865 Py_END_ALLOW_THREADS
5866
Neal Norwitzd5a37542006-03-20 06:48:34 +00005867 return wait_helper(pid, WAIT_STATUS_INT(status), &ru);
Neal Norwitz05a45592006-03-20 06:30:08 +00005868}
5869#endif /* HAVE_WAIT3 */
5870
5871#ifdef HAVE_WAIT4
5872PyDoc_STRVAR(posix_wait4__doc__,
5873"wait4(pid, options) -> (pid, status, rusage)\n\n\
5874Wait for completion of a given child process.");
5875
5876static PyObject *
5877posix_wait4(PyObject *self, PyObject *args)
5878{
Christian Heimesd491d712008-02-01 18:49:26 +00005879 pid_t pid;
5880 int options;
Neal Norwitz05a45592006-03-20 06:30:08 +00005881 struct rusage ru;
Neal Norwitzd5a37542006-03-20 06:48:34 +00005882 WAIT_TYPE status;
5883 WAIT_STATUS_INT(status) = 0;
Neal Norwitz05a45592006-03-20 06:30:08 +00005884
5885 if (!PyArg_ParseTuple(args, "ii:wait4", &pid, &options))
5886 return NULL;
5887
5888 Py_BEGIN_ALLOW_THREADS
5889 pid = wait4(pid, &status, options, &ru);
5890 Py_END_ALLOW_THREADS
5891
Neal Norwitzd5a37542006-03-20 06:48:34 +00005892 return wait_helper(pid, WAIT_STATUS_INT(status), &ru);
Neal Norwitz05a45592006-03-20 06:30:08 +00005893}
5894#endif /* HAVE_WAIT4 */
5895
Guido van Rossumb6775db1994-08-01 11:34:53 +00005896#ifdef HAVE_WAITPID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005897PyDoc_STRVAR(posix_waitpid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005898"waitpid(pid, options) -> (pid, status)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005899Wait for completion of a given child process.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005900
Barry Warsaw53699e91996-12-10 23:23:01 +00005901static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005902posix_waitpid(PyObject *self, PyObject *args)
Guido van Rossum85e3b011991-06-03 12:42:10 +00005903{
Christian Heimesd491d712008-02-01 18:49:26 +00005904 pid_t pid;
5905 int options;
Neal Norwitzd5a37542006-03-20 06:48:34 +00005906 WAIT_TYPE status;
5907 WAIT_STATUS_INT(status) = 0;
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00005908
Fred Drake5ab8eaf1999-12-09 21:13:07 +00005909 if (!PyArg_ParseTuple(args, "ii:waitpid", &pid, &options))
Guido van Rossum21803b81992-08-09 12:55:27 +00005910 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00005911 Py_BEGIN_ALLOW_THREADS
Guido van Rossume6a3aa61999-02-01 16:15:30 +00005912 pid = waitpid(pid, &status, options);
Barry Warsaw53699e91996-12-10 23:23:01 +00005913 Py_END_ALLOW_THREADS
Guido van Rossum85e3b011991-06-03 12:42:10 +00005914 if (pid == -1)
5915 return posix_error();
Neal Norwitzd5a37542006-03-20 06:48:34 +00005916
5917 return Py_BuildValue("ii", pid, WAIT_STATUS_INT(status));
Guido van Rossum21803b81992-08-09 12:55:27 +00005918}
5919
Tim Petersab034fa2002-02-01 11:27:43 +00005920#elif defined(HAVE_CWAIT)
5921
5922/* MS C has a variant of waitpid() that's usable for most purposes. */
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005923PyDoc_STRVAR(posix_waitpid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005924"waitpid(pid, options) -> (pid, status << 8)\n\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005925"Wait for completion of a given process. options is ignored on Windows.");
Tim Petersab034fa2002-02-01 11:27:43 +00005926
5927static PyObject *
5928posix_waitpid(PyObject *self, PyObject *args)
5929{
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005930 Py_intptr_t pid;
Martin v. Löwis18e16552006-02-15 17:27:45 +00005931 int status, options;
Tim Petersab034fa2002-02-01 11:27:43 +00005932
5933 if (!PyArg_ParseTuple(args, "ii:waitpid", &pid, &options))
5934 return NULL;
5935 Py_BEGIN_ALLOW_THREADS
5936 pid = _cwait(&status, pid, options);
5937 Py_END_ALLOW_THREADS
5938 if (pid == -1)
5939 return posix_error();
Neal Norwitzd5a37542006-03-20 06:48:34 +00005940
5941 /* shift the status left a byte so this is more like the POSIX waitpid */
5942 return Py_BuildValue("ii", pid, status << 8);
Tim Petersab034fa2002-02-01 11:27:43 +00005943}
5944#endif /* HAVE_WAITPID || HAVE_CWAIT */
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005945
Guido van Rossumad0ee831995-03-01 10:34:45 +00005946#ifdef HAVE_WAIT
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005947PyDoc_STRVAR(posix_wait__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005948"wait() -> (pid, status)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005949Wait for completion of a child process.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005950
Barry Warsaw53699e91996-12-10 23:23:01 +00005951static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00005952posix_wait(PyObject *self, PyObject *noargs)
Guido van Rossum21803b81992-08-09 12:55:27 +00005953{
Christian Heimesd491d712008-02-01 18:49:26 +00005954 pid_t pid;
Neal Norwitzd5a37542006-03-20 06:48:34 +00005955 WAIT_TYPE status;
5956 WAIT_STATUS_INT(status) = 0;
Neal Norwitze241ce82003-02-17 18:17:05 +00005957
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00005958 Py_BEGIN_ALLOW_THREADS
5959 pid = wait(&status);
Barry Warsaw53699e91996-12-10 23:23:01 +00005960 Py_END_ALLOW_THREADS
Guido van Rossum21803b81992-08-09 12:55:27 +00005961 if (pid == -1)
5962 return posix_error();
Neal Norwitzd5a37542006-03-20 06:48:34 +00005963
5964 return Py_BuildValue("ii", pid, WAIT_STATUS_INT(status));
Guido van Rossum85e3b011991-06-03 12:42:10 +00005965}
Guido van Rossumad0ee831995-03-01 10:34:45 +00005966#endif
Guido van Rossum85e3b011991-06-03 12:42:10 +00005967
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005968
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005969PyDoc_STRVAR(posix_lstat__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005970"lstat(path) -> stat result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005971Like stat(path), but do not follow symbolic links.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005972
Barry Warsaw53699e91996-12-10 23:23:01 +00005973static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005974posix_lstat(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00005975{
Guido van Rossumb6775db1994-08-01 11:34:53 +00005976#ifdef HAVE_LSTAT
Mark Hammondc2e85bd2002-10-03 05:10:39 +00005977 return posix_do_stat(self, args, "et:lstat", lstat, NULL, NULL);
Guido van Rossumb6775db1994-08-01 11:34:53 +00005978#else /* !HAVE_LSTAT */
Mark Hammondc2e85bd2002-10-03 05:10:39 +00005979#ifdef MS_WINDOWS
Martin v. Löwis14694662006-02-03 12:54:16 +00005980 return posix_do_stat(self, args, "et:lstat", STAT, "U:lstat", win32_wstat);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00005981#else
5982 return posix_do_stat(self, args, "et:lstat", STAT, NULL, NULL);
5983#endif
Guido van Rossumb6775db1994-08-01 11:34:53 +00005984#endif /* !HAVE_LSTAT */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00005985}
5986
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005987
Guido van Rossumb6775db1994-08-01 11:34:53 +00005988#ifdef HAVE_READLINK
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005989PyDoc_STRVAR(posix_readlink__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005990"readlink(path) -> path\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005991Return a string representing the path to which the symbolic link points.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005992
Barry Warsaw53699e91996-12-10 23:23:01 +00005993static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005994posix_readlink(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00005995{
Ronald Oussoren10168f22006-10-22 10:45:18 +00005996 PyObject* v;
Guido van Rossumb6775db1994-08-01 11:34:53 +00005997 char buf[MAXPATHLEN];
Guido van Rossumef0a00e1992-01-27 16:51:30 +00005998 char *path;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00005999 int n;
Ronald Oussoren10168f22006-10-22 10:45:18 +00006000#ifdef Py_USING_UNICODE
6001 int arg_is_unicode = 0;
6002#endif
6003
6004 if (!PyArg_ParseTuple(args, "et:readlink",
6005 Py_FileSystemDefaultEncoding, &path))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00006006 return NULL;
Ronald Oussoren10168f22006-10-22 10:45:18 +00006007#ifdef Py_USING_UNICODE
6008 v = PySequence_GetItem(args, 0);
Neal Norwitz91a57212007-08-12 17:11:13 +00006009 if (v == NULL) {
6010 PyMem_Free(path);
6011 return NULL;
6012 }
Ronald Oussoren10168f22006-10-22 10:45:18 +00006013
6014 if (PyUnicode_Check(v)) {
6015 arg_is_unicode = 1;
6016 }
6017 Py_DECREF(v);
6018#endif
6019
Barry Warsaw53699e91996-12-10 23:23:01 +00006020 Py_BEGIN_ALLOW_THREADS
Guido van Rossum50e61dc1992-03-27 17:22:31 +00006021 n = readlink(path, buf, (int) sizeof buf);
Barry Warsaw53699e91996-12-10 23:23:01 +00006022 Py_END_ALLOW_THREADS
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00006023 if (n < 0)
Neal Norwitz91a57212007-08-12 17:11:13 +00006024 return posix_error_with_allocated_filename(path);
Ronald Oussoren10168f22006-10-22 10:45:18 +00006025
Neal Norwitz91a57212007-08-12 17:11:13 +00006026 PyMem_Free(path);
Gregory P. Smithdd96db62008-06-09 04:58:54 +00006027 v = PyString_FromStringAndSize(buf, n);
Ronald Oussoren10168f22006-10-22 10:45:18 +00006028#ifdef Py_USING_UNICODE
6029 if (arg_is_unicode) {
6030 PyObject *w;
6031
6032 w = PyUnicode_FromEncodedObject(v,
6033 Py_FileSystemDefaultEncoding,
6034 "strict");
6035 if (w != NULL) {
6036 Py_DECREF(v);
6037 v = w;
6038 }
6039 else {
6040 /* fall back to the original byte string, as
6041 discussed in patch #683592 */
6042 PyErr_Clear();
6043 }
6044 }
6045#endif
6046 return v;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00006047}
Guido van Rossumb6775db1994-08-01 11:34:53 +00006048#endif /* HAVE_READLINK */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00006049
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006050
Guido van Rossumb6775db1994-08-01 11:34:53 +00006051#ifdef HAVE_SYMLINK
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006052PyDoc_STRVAR(posix_symlink__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006053"symlink(src, dst)\n\n\
Brett Cannon807413d2003-06-11 00:18:09 +00006054Create a symbolic link pointing to src named dst.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006055
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006056static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006057posix_symlink(PyObject *self, PyObject *args)
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006058{
Martin v. Löwis4fc2bda2006-05-04 12:04:27 +00006059 return posix_2str(args, "etet:symlink", symlink);
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006060}
6061#endif /* HAVE_SYMLINK */
6062
6063
6064#ifdef HAVE_TIMES
Guido van Rossumd48f2521997-12-05 22:19:34 +00006065#if defined(PYCC_VACPP) && defined(PYOS_OS2)
6066static long
Thomas Woutersf3f33dc2000-07-21 06:00:07 +00006067system_uptime(void)
Guido van Rossumd48f2521997-12-05 22:19:34 +00006068{
6069 ULONG value = 0;
6070
6071 Py_BEGIN_ALLOW_THREADS
6072 DosQuerySysInfo(QSV_MS_COUNT, QSV_MS_COUNT, &value, sizeof(value));
6073 Py_END_ALLOW_THREADS
6074
6075 return value;
6076}
6077
6078static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00006079posix_times(PyObject *self, PyObject *noargs)
Guido van Rossumd48f2521997-12-05 22:19:34 +00006080{
Guido van Rossumd48f2521997-12-05 22:19:34 +00006081 /* Currently Only Uptime is Provided -- Others Later */
6082 return Py_BuildValue("ddddd",
6083 (double)0 /* t.tms_utime / HZ */,
6084 (double)0 /* t.tms_stime / HZ */,
6085 (double)0 /* t.tms_cutime / HZ */,
6086 (double)0 /* t.tms_cstime / HZ */,
6087 (double)system_uptime() / 1000);
6088}
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006089#else /* not OS2 */
Martin v. Löwis03824e42008-12-29 18:17:34 +00006090#define NEED_TICKS_PER_SECOND
6091static long ticks_per_second = -1;
Barry Warsaw53699e91996-12-10 23:23:01 +00006092static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00006093posix_times(PyObject *self, PyObject *noargs)
Guido van Rossum22db57e1992-04-05 14:25:30 +00006094{
6095 struct tms t;
6096 clock_t c;
Guido van Rossum22db57e1992-04-05 14:25:30 +00006097 errno = 0;
6098 c = times(&t);
Guido van Rossum687dd131993-05-17 08:34:16 +00006099 if (c == (clock_t) -1)
6100 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006101 return Py_BuildValue("ddddd",
Martin v. Löwis03824e42008-12-29 18:17:34 +00006102 (double)t.tms_utime / ticks_per_second,
6103 (double)t.tms_stime / ticks_per_second,
6104 (double)t.tms_cutime / ticks_per_second,
6105 (double)t.tms_cstime / ticks_per_second,
6106 (double)c / ticks_per_second);
Guido van Rossum22db57e1992-04-05 14:25:30 +00006107}
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006108#endif /* not OS2 */
Guido van Rossumb6775db1994-08-01 11:34:53 +00006109#endif /* HAVE_TIMES */
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006110
6111
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006112#ifdef MS_WINDOWS
Guido van Rossum14ed0b21994-09-29 09:50:09 +00006113#define HAVE_TIMES /* so the method table will pick it up */
Barry Warsaw53699e91996-12-10 23:23:01 +00006114static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00006115posix_times(PyObject *self, PyObject *noargs)
Guido van Rossum14ed0b21994-09-29 09:50:09 +00006116{
6117 FILETIME create, exit, kernel, user;
6118 HANDLE hProc;
Guido van Rossum14ed0b21994-09-29 09:50:09 +00006119 hProc = GetCurrentProcess();
Guido van Rossumb8c3cbd1999-02-16 14:37:28 +00006120 GetProcessTimes(hProc, &create, &exit, &kernel, &user);
6121 /* The fields of a FILETIME structure are the hi and lo part
6122 of a 64-bit value expressed in 100 nanosecond units.
6123 1e7 is one second in such units; 1e-7 the inverse.
6124 429.4967296 is 2**32 / 1e7 or 2**32 * 1e-7.
6125 */
Barry Warsaw53699e91996-12-10 23:23:01 +00006126 return Py_BuildValue(
6127 "ddddd",
Guido van Rossumb8c3cbd1999-02-16 14:37:28 +00006128 (double)(user.dwHighDateTime*429.4967296 +
6129 user.dwLowDateTime*1e-7),
Georg Brandl0a40ffb2008-02-13 07:20:22 +00006130 (double)(kernel.dwHighDateTime*429.4967296 +
6131 kernel.dwLowDateTime*1e-7),
Barry Warsaw53699e91996-12-10 23:23:01 +00006132 (double)0,
6133 (double)0,
6134 (double)0);
Guido van Rossum14ed0b21994-09-29 09:50:09 +00006135}
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006136#endif /* MS_WINDOWS */
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006137
6138#ifdef HAVE_TIMES
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006139PyDoc_STRVAR(posix_times__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006140"times() -> (utime, stime, cutime, cstime, elapsed_time)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006141Return a tuple of floating point numbers indicating process times.");
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006142#endif
Guido van Rossum22db57e1992-04-05 14:25:30 +00006143
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006144
Martin v. Löwis49ee14d2003-11-10 06:35:36 +00006145#ifdef HAVE_GETSID
6146PyDoc_STRVAR(posix_getsid__doc__,
6147"getsid(pid) -> sid\n\n\
6148Call the system call getsid().");
6149
6150static PyObject *
6151posix_getsid(PyObject *self, PyObject *args)
6152{
Christian Heimesd491d712008-02-01 18:49:26 +00006153 pid_t pid;
6154 int sid;
Martin v. Löwis49ee14d2003-11-10 06:35:36 +00006155 if (!PyArg_ParseTuple(args, "i:getsid", &pid))
6156 return NULL;
6157 sid = getsid(pid);
6158 if (sid < 0)
6159 return posix_error();
6160 return PyInt_FromLong((long)sid);
6161}
6162#endif /* HAVE_GETSID */
6163
6164
Guido van Rossumb6775db1994-08-01 11:34:53 +00006165#ifdef HAVE_SETSID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006166PyDoc_STRVAR(posix_setsid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006167"setsid()\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006168Call the system call setsid().");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006169
Barry Warsaw53699e91996-12-10 23:23:01 +00006170static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00006171posix_setsid(PyObject *self, PyObject *noargs)
Guido van Rossumc2670a01992-09-13 20:07:29 +00006172{
Guido van Rossum687dd131993-05-17 08:34:16 +00006173 if (setsid() < 0)
6174 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006175 Py_INCREF(Py_None);
6176 return Py_None;
Guido van Rossumc2670a01992-09-13 20:07:29 +00006177}
Guido van Rossumb6775db1994-08-01 11:34:53 +00006178#endif /* HAVE_SETSID */
Guido van Rossumc2670a01992-09-13 20:07:29 +00006179
Guido van Rossumb6775db1994-08-01 11:34:53 +00006180#ifdef HAVE_SETPGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006181PyDoc_STRVAR(posix_setpgid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006182"setpgid(pid, pgrp)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006183Call the system call setpgid().");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006184
Barry Warsaw53699e91996-12-10 23:23:01 +00006185static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006186posix_setpgid(PyObject *self, PyObject *args)
Guido van Rossumc2670a01992-09-13 20:07:29 +00006187{
Christian Heimesd491d712008-02-01 18:49:26 +00006188 pid_t pid;
6189 int pgrp;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006190 if (!PyArg_ParseTuple(args, "ii:setpgid", &pid, &pgrp))
Guido van Rossumc2670a01992-09-13 20:07:29 +00006191 return NULL;
Guido van Rossum687dd131993-05-17 08:34:16 +00006192 if (setpgid(pid, pgrp) < 0)
6193 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006194 Py_INCREF(Py_None);
6195 return Py_None;
Guido van Rossumc2670a01992-09-13 20:07:29 +00006196}
Guido van Rossumb6775db1994-08-01 11:34:53 +00006197#endif /* HAVE_SETPGID */
Guido van Rossumc2670a01992-09-13 20:07:29 +00006198
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006199
Guido van Rossumb6775db1994-08-01 11:34:53 +00006200#ifdef HAVE_TCGETPGRP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006201PyDoc_STRVAR(posix_tcgetpgrp__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006202"tcgetpgrp(fd) -> pgid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006203Return the process group associated with the terminal given by a fd.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006204
Barry Warsaw53699e91996-12-10 23:23:01 +00006205static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006206posix_tcgetpgrp(PyObject *self, PyObject *args)
Guido van Rossum7066dd71992-09-17 17:54:56 +00006207{
Christian Heimese6a80742008-02-03 19:51:13 +00006208 int fd;
6209 pid_t pgid;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006210 if (!PyArg_ParseTuple(args, "i:tcgetpgrp", &fd))
Guido van Rossum7066dd71992-09-17 17:54:56 +00006211 return NULL;
6212 pgid = tcgetpgrp(fd);
Guido van Rossum687dd131993-05-17 08:34:16 +00006213 if (pgid < 0)
6214 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006215 return PyInt_FromLong((long)pgid);
Guido van Rossum7066dd71992-09-17 17:54:56 +00006216}
Guido van Rossumb6775db1994-08-01 11:34:53 +00006217#endif /* HAVE_TCGETPGRP */
Guido van Rossum7066dd71992-09-17 17:54:56 +00006218
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006219
Guido van Rossumb6775db1994-08-01 11:34:53 +00006220#ifdef HAVE_TCSETPGRP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006221PyDoc_STRVAR(posix_tcsetpgrp__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006222"tcsetpgrp(fd, pgid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006223Set the process group associated with the terminal given by a fd.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006224
Barry Warsaw53699e91996-12-10 23:23:01 +00006225static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006226posix_tcsetpgrp(PyObject *self, PyObject *args)
Guido van Rossum7066dd71992-09-17 17:54:56 +00006227{
6228 int fd, pgid;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006229 if (!PyArg_ParseTuple(args, "ii:tcsetpgrp", &fd, &pgid))
Guido van Rossum7066dd71992-09-17 17:54:56 +00006230 return NULL;
Guido van Rossum687dd131993-05-17 08:34:16 +00006231 if (tcsetpgrp(fd, pgid) < 0)
6232 return posix_error();
Barry Warsaw43d68b81996-12-19 22:10:44 +00006233 Py_INCREF(Py_None);
Barry Warsaw53699e91996-12-10 23:23:01 +00006234 return Py_None;
Guido van Rossum7066dd71992-09-17 17:54:56 +00006235}
Guido van Rossumb6775db1994-08-01 11:34:53 +00006236#endif /* HAVE_TCSETPGRP */
Guido van Rossum22db57e1992-04-05 14:25:30 +00006237
Guido van Rossum687dd131993-05-17 08:34:16 +00006238/* Functions acting on file descriptors */
6239
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006240PyDoc_STRVAR(posix_open__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006241"open(filename, flag [, mode=0777]) -> fd\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006242Open a file (for low level IO).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006243
Barry Warsaw53699e91996-12-10 23:23:01 +00006244static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006245posix_open(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006246{
Mark Hammondef8b6542001-05-13 08:04:26 +00006247 char *file = NULL;
Guido van Rossum687dd131993-05-17 08:34:16 +00006248 int flag;
6249 int mode = 0777;
6250 int fd;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00006251
6252#ifdef MS_WINDOWS
6253 if (unicode_file_names()) {
6254 PyUnicodeObject *po;
6255 if (PyArg_ParseTuple(args, "Ui|i:mkdir", &po, &flag, &mode)) {
6256 Py_BEGIN_ALLOW_THREADS
6257 /* PyUnicode_AS_UNICODE OK without thread
6258 lock as it is a simple dereference. */
6259 fd = _wopen(PyUnicode_AS_UNICODE(po), flag, mode);
6260 Py_END_ALLOW_THREADS
6261 if (fd < 0)
6262 return posix_error();
6263 return PyInt_FromLong((long)fd);
6264 }
6265 /* Drop the argument parsing error as narrow strings
6266 are also valid. */
6267 PyErr_Clear();
6268 }
6269#endif
6270
Tim Peters5aa91602002-01-30 05:46:57 +00006271 if (!PyArg_ParseTuple(args, "eti|i",
Mark Hammondef8b6542001-05-13 08:04:26 +00006272 Py_FileSystemDefaultEncoding, &file,
6273 &flag, &mode))
Barry Warsaw43d68b81996-12-19 22:10:44 +00006274 return NULL;
6275
Barry Warsaw53699e91996-12-10 23:23:01 +00006276 Py_BEGIN_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006277 fd = open(file, flag, mode);
Barry Warsaw53699e91996-12-10 23:23:01 +00006278 Py_END_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006279 if (fd < 0)
Mark Hammondef8b6542001-05-13 08:04:26 +00006280 return posix_error_with_allocated_filename(file);
6281 PyMem_Free(file);
Barry Warsaw53699e91996-12-10 23:23:01 +00006282 return PyInt_FromLong((long)fd);
Guido van Rossum687dd131993-05-17 08:34:16 +00006283}
6284
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006285
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006286PyDoc_STRVAR(posix_close__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006287"close(fd)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006288Close a file descriptor (for low level IO).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006289
Barry Warsaw53699e91996-12-10 23:23:01 +00006290static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006291posix_close(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006292{
6293 int fd, res;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006294 if (!PyArg_ParseTuple(args, "i:close", &fd))
Guido van Rossum687dd131993-05-17 08:34:16 +00006295 return NULL;
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006296 if (!_PyVerify_fd(fd))
6297 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006298 Py_BEGIN_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006299 res = close(fd);
Barry Warsaw53699e91996-12-10 23:23:01 +00006300 Py_END_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006301 if (res < 0)
6302 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006303 Py_INCREF(Py_None);
6304 return Py_None;
Guido van Rossum687dd131993-05-17 08:34:16 +00006305}
6306
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006307
Georg Brandl309501a2008-01-19 20:22:13 +00006308PyDoc_STRVAR(posix_closerange__doc__,
6309"closerange(fd_low, fd_high)\n\n\
6310Closes all file descriptors in [fd_low, fd_high), ignoring errors.");
6311
6312static PyObject *
6313posix_closerange(PyObject *self, PyObject *args)
6314{
6315 int fd_from, fd_to, i;
6316 if (!PyArg_ParseTuple(args, "ii:closerange", &fd_from, &fd_to))
6317 return NULL;
6318 Py_BEGIN_ALLOW_THREADS
6319 for (i = fd_from; i < fd_to; i++)
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006320 if (_PyVerify_fd(i))
6321 close(i);
Georg Brandl309501a2008-01-19 20:22:13 +00006322 Py_END_ALLOW_THREADS
6323 Py_RETURN_NONE;
6324}
6325
6326
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006327PyDoc_STRVAR(posix_dup__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006328"dup(fd) -> fd2\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006329Return a duplicate of a file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006330
Barry Warsaw53699e91996-12-10 23:23:01 +00006331static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006332posix_dup(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006333{
6334 int fd;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006335 if (!PyArg_ParseTuple(args, "i:dup", &fd))
Guido van Rossum687dd131993-05-17 08:34:16 +00006336 return NULL;
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006337 if (!_PyVerify_fd(fd))
6338 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006339 Py_BEGIN_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006340 fd = dup(fd);
Barry Warsaw53699e91996-12-10 23:23:01 +00006341 Py_END_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006342 if (fd < 0)
6343 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006344 return PyInt_FromLong((long)fd);
Guido van Rossum687dd131993-05-17 08:34:16 +00006345}
6346
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006347
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006348PyDoc_STRVAR(posix_dup2__doc__,
Andrew M. Kuchling8135fd52004-01-16 13:18:42 +00006349"dup2(old_fd, new_fd)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006350Duplicate file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006351
Barry Warsaw53699e91996-12-10 23:23:01 +00006352static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006353posix_dup2(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006354{
6355 int fd, fd2, res;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006356 if (!PyArg_ParseTuple(args, "ii:dup2", &fd, &fd2))
Guido van Rossum687dd131993-05-17 08:34:16 +00006357 return NULL;
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006358 if (!_PyVerify_fd_dup2(fd, fd2))
6359 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006360 Py_BEGIN_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006361 res = dup2(fd, fd2);
Barry Warsaw53699e91996-12-10 23:23:01 +00006362 Py_END_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006363 if (res < 0)
6364 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006365 Py_INCREF(Py_None);
6366 return Py_None;
Guido van Rossum687dd131993-05-17 08:34:16 +00006367}
6368
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006369
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006370PyDoc_STRVAR(posix_lseek__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006371"lseek(fd, pos, how) -> newpos\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006372Set the current position of a file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006373
Barry Warsaw53699e91996-12-10 23:23:01 +00006374static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006375posix_lseek(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006376{
6377 int fd, how;
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006378#if defined(MS_WIN64) || defined(MS_WINDOWS)
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00006379 PY_LONG_LONG pos, res;
Fred Drake699f3522000-06-29 21:12:41 +00006380#else
Guido van Rossum94f6f721999-01-06 18:42:14 +00006381 off_t pos, res;
Fred Drake699f3522000-06-29 21:12:41 +00006382#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00006383 PyObject *posobj;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006384 if (!PyArg_ParseTuple(args, "iOi:lseek", &fd, &posobj, &how))
Guido van Rossum687dd131993-05-17 08:34:16 +00006385 return NULL;
6386#ifdef SEEK_SET
6387 /* Turn 0, 1, 2 into SEEK_{SET,CUR,END} */
6388 switch (how) {
6389 case 0: how = SEEK_SET; break;
6390 case 1: how = SEEK_CUR; break;
6391 case 2: how = SEEK_END; break;
6392 }
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00006393#endif /* SEEK_END */
Guido van Rossum94f6f721999-01-06 18:42:14 +00006394
6395#if !defined(HAVE_LARGEFILE_SUPPORT)
6396 pos = PyInt_AsLong(posobj);
6397#else
6398 pos = PyLong_Check(posobj) ?
6399 PyLong_AsLongLong(posobj) : PyInt_AsLong(posobj);
6400#endif
6401 if (PyErr_Occurred())
6402 return NULL;
6403
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006404 if (!_PyVerify_fd(fd))
6405 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006406 Py_BEGIN_ALLOW_THREADS
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006407#if defined(MS_WIN64) || defined(MS_WINDOWS)
Fred Drake699f3522000-06-29 21:12:41 +00006408 res = _lseeki64(fd, pos, how);
6409#else
Guido van Rossum687dd131993-05-17 08:34:16 +00006410 res = lseek(fd, pos, how);
Fred Drake699f3522000-06-29 21:12:41 +00006411#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00006412 Py_END_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006413 if (res < 0)
6414 return posix_error();
Guido van Rossum94f6f721999-01-06 18:42:14 +00006415
6416#if !defined(HAVE_LARGEFILE_SUPPORT)
Barry Warsaw53699e91996-12-10 23:23:01 +00006417 return PyInt_FromLong(res);
Guido van Rossum94f6f721999-01-06 18:42:14 +00006418#else
6419 return PyLong_FromLongLong(res);
6420#endif
Guido van Rossum687dd131993-05-17 08:34:16 +00006421}
6422
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006423
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006424PyDoc_STRVAR(posix_read__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006425"read(fd, buffersize) -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006426Read a file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006427
Barry Warsaw53699e91996-12-10 23:23:01 +00006428static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006429posix_read(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006430{
Guido van Rossum8bac5461996-06-11 18:38:48 +00006431 int fd, size, n;
Barry Warsaw53699e91996-12-10 23:23:01 +00006432 PyObject *buffer;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006433 if (!PyArg_ParseTuple(args, "ii:read", &fd, &size))
Guido van Rossum687dd131993-05-17 08:34:16 +00006434 return NULL;
Michael W. Hudson9867ced2005-01-31 17:01:59 +00006435 if (size < 0) {
6436 errno = EINVAL;
6437 return posix_error();
6438 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00006439 buffer = PyString_FromStringAndSize((char *)NULL, size);
Guido van Rossum687dd131993-05-17 08:34:16 +00006440 if (buffer == NULL)
6441 return NULL;
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006442 if (!_PyVerify_fd(fd))
6443 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006444 Py_BEGIN_ALLOW_THREADS
Gregory P. Smithdd96db62008-06-09 04:58:54 +00006445 n = read(fd, PyString_AsString(buffer), size);
Barry Warsaw53699e91996-12-10 23:23:01 +00006446 Py_END_ALLOW_THREADS
Guido van Rossum8bac5461996-06-11 18:38:48 +00006447 if (n < 0) {
Barry Warsaw53699e91996-12-10 23:23:01 +00006448 Py_DECREF(buffer);
Guido van Rossum687dd131993-05-17 08:34:16 +00006449 return posix_error();
6450 }
Guido van Rossum8bac5461996-06-11 18:38:48 +00006451 if (n != size)
Gregory P. Smithdd96db62008-06-09 04:58:54 +00006452 _PyString_Resize(&buffer, n);
Guido van Rossum687dd131993-05-17 08:34:16 +00006453 return buffer;
6454}
6455
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006456
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006457PyDoc_STRVAR(posix_write__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006458"write(fd, string) -> byteswritten\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006459Write a string to a file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006460
Barry Warsaw53699e91996-12-10 23:23:01 +00006461static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006462posix_write(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006463{
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00006464 Py_buffer pbuf;
Thomas Wouters68bc4f92006-03-01 01:05:10 +00006465 int fd;
6466 Py_ssize_t size;
Thomas Wouters68bc4f92006-03-01 01:05:10 +00006467
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00006468 if (!PyArg_ParseTuple(args, "is*:write", &fd, &pbuf))
Guido van Rossum687dd131993-05-17 08:34:16 +00006469 return NULL;
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006470 if (!_PyVerify_fd(fd))
6471 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006472 Py_BEGIN_ALLOW_THREADS
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00006473 size = write(fd, pbuf.buf, (size_t)pbuf.len);
Barry Warsaw53699e91996-12-10 23:23:01 +00006474 Py_END_ALLOW_THREADS
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00006475 PyBuffer_Release(&pbuf);
Guido van Rossum687dd131993-05-17 08:34:16 +00006476 if (size < 0)
6477 return posix_error();
Thomas Wouters68bc4f92006-03-01 01:05:10 +00006478 return PyInt_FromSsize_t(size);
Guido van Rossum687dd131993-05-17 08:34:16 +00006479}
6480
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006481
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006482PyDoc_STRVAR(posix_fstat__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006483"fstat(fd) -> stat result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006484Like stat(), but for an open file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006485
Barry Warsaw53699e91996-12-10 23:23:01 +00006486static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006487posix_fstat(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006488{
6489 int fd;
Fred Drake699f3522000-06-29 21:12:41 +00006490 STRUCT_STAT st;
Guido van Rossum687dd131993-05-17 08:34:16 +00006491 int res;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006492 if (!PyArg_ParseTuple(args, "i:fstat", &fd))
Guido van Rossum687dd131993-05-17 08:34:16 +00006493 return NULL;
Martin v. Löwis7a924e62003-03-05 14:15:21 +00006494#ifdef __VMS
6495 /* on OpenVMS we must ensure that all bytes are written to the file */
6496 fsync(fd);
6497#endif
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006498 if (!_PyVerify_fd(fd))
6499 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006500 Py_BEGIN_ALLOW_THREADS
Fred Drake699f3522000-06-29 21:12:41 +00006501 res = FSTAT(fd, &st);
Barry Warsaw53699e91996-12-10 23:23:01 +00006502 Py_END_ALLOW_THREADS
Martin v. Löwis14694662006-02-03 12:54:16 +00006503 if (res != 0) {
6504#ifdef MS_WINDOWS
6505 return win32_error("fstat", NULL);
6506#else
Guido van Rossum687dd131993-05-17 08:34:16 +00006507 return posix_error();
Martin v. Löwis14694662006-02-03 12:54:16 +00006508#endif
6509 }
Tim Peters5aa91602002-01-30 05:46:57 +00006510
Martin v. Löwis14694662006-02-03 12:54:16 +00006511 return _pystat_fromstructstat(&st);
Guido van Rossum687dd131993-05-17 08:34:16 +00006512}
6513
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006514
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006515PyDoc_STRVAR(posix_fdopen__doc__,
Neal Norwitzc18b3082002-10-11 22:19:42 +00006516"fdopen(fd [, mode='r' [, bufsize]]) -> file_object\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006517Return an open file object connected to a file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006518
Barry Warsaw53699e91996-12-10 23:23:01 +00006519static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006520posix_fdopen(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006521{
Guido van Rossum687dd131993-05-17 08:34:16 +00006522 int fd;
Kristján Valur Jónsson0a440d42007-04-26 09:15:08 +00006523 char *orgmode = "r";
Guido van Rossuma6a1e531995-01-10 15:36:38 +00006524 int bufsize = -1;
Guido van Rossum687dd131993-05-17 08:34:16 +00006525 FILE *fp;
Barry Warsaw53699e91996-12-10 23:23:01 +00006526 PyObject *f;
Kristján Valur Jónsson0a440d42007-04-26 09:15:08 +00006527 char *mode;
6528 if (!PyArg_ParseTuple(args, "i|si", &fd, &orgmode, &bufsize))
Guido van Rossum687dd131993-05-17 08:34:16 +00006529 return NULL;
Barry Warsaw43d68b81996-12-19 22:10:44 +00006530
Kristján Valur Jónsson0a440d42007-04-26 09:15:08 +00006531 /* Sanitize mode. See fileobject.c */
6532 mode = PyMem_MALLOC(strlen(orgmode)+3);
6533 if (!mode) {
6534 PyErr_NoMemory();
6535 return NULL;
6536 }
6537 strcpy(mode, orgmode);
6538 if (_PyFile_SanitizeMode(mode)) {
6539 PyMem_FREE(mode);
Thomas Heller1f043e22002-11-07 16:00:59 +00006540 return NULL;
6541 }
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006542 if (!_PyVerify_fd(fd))
6543 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006544 Py_BEGIN_ALLOW_THREADS
Georg Brandl644b1e72006-03-31 20:27:22 +00006545#if !defined(MS_WINDOWS) && defined(HAVE_FCNTL_H)
Georg Brandl54a188a2006-03-31 20:00:11 +00006546 if (mode[0] == 'a') {
6547 /* try to make sure the O_APPEND flag is set */
6548 int flags;
6549 flags = fcntl(fd, F_GETFL);
6550 if (flags != -1)
6551 fcntl(fd, F_SETFL, flags | O_APPEND);
6552 fp = fdopen(fd, mode);
Thomas Wouters2a9a6b02006-03-31 22:38:19 +00006553 if (fp == NULL && flags != -1)
Georg Brandl54a188a2006-03-31 20:00:11 +00006554 /* restore old mode if fdopen failed */
6555 fcntl(fd, F_SETFL, flags);
6556 } else {
6557 fp = fdopen(fd, mode);
6558 }
Georg Brandl644b1e72006-03-31 20:27:22 +00006559#else
6560 fp = fdopen(fd, mode);
6561#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00006562 Py_END_ALLOW_THREADS
Neal Norwitzd83eb312007-05-02 04:47:55 +00006563 PyMem_FREE(mode);
Guido van Rossum687dd131993-05-17 08:34:16 +00006564 if (fp == NULL)
6565 return posix_error();
Kristján Valur Jónsson0a440d42007-04-26 09:15:08 +00006566 f = PyFile_FromFile(fp, "<fdopen>", orgmode, fclose);
Guido van Rossuma6a1e531995-01-10 15:36:38 +00006567 if (f != NULL)
Barry Warsaw53699e91996-12-10 23:23:01 +00006568 PyFile_SetBufSize(f, bufsize);
Guido van Rossuma6a1e531995-01-10 15:36:38 +00006569 return f;
Guido van Rossum687dd131993-05-17 08:34:16 +00006570}
6571
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006572PyDoc_STRVAR(posix_isatty__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006573"isatty(fd) -> bool\n\n\
Fred Drake106c1a02002-04-23 15:58:02 +00006574Return True if the file descriptor 'fd' is an open file descriptor\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006575connected to the slave end of a terminal.");
Skip Montanaro1517d842000-07-19 14:34:14 +00006576
6577static PyObject *
Thomas Wouters616607a2000-07-19 14:45:40 +00006578posix_isatty(PyObject *self, PyObject *args)
Skip Montanaro1517d842000-07-19 14:34:14 +00006579{
6580 int fd;
6581 if (!PyArg_ParseTuple(args, "i:isatty", &fd))
6582 return NULL;
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006583 if (!_PyVerify_fd(fd))
6584 return PyBool_FromLong(0);
Fred Drake106c1a02002-04-23 15:58:02 +00006585 return PyBool_FromLong(isatty(fd));
Skip Montanaro1517d842000-07-19 14:34:14 +00006586}
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006587
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006588#ifdef HAVE_PIPE
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006589PyDoc_STRVAR(posix_pipe__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006590"pipe() -> (read_end, write_end)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006591Create a pipe.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006592
Barry Warsaw53699e91996-12-10 23:23:01 +00006593static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00006594posix_pipe(PyObject *self, PyObject *noargs)
Guido van Rossum687dd131993-05-17 08:34:16 +00006595{
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00006596#if defined(PYOS_OS2)
6597 HFILE read, write;
6598 APIRET rc;
6599
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00006600 Py_BEGIN_ALLOW_THREADS
6601 rc = DosCreatePipe( &read, &write, 4096);
6602 Py_END_ALLOW_THREADS
6603 if (rc != NO_ERROR)
Guido van Rossumd48f2521997-12-05 22:19:34 +00006604 return os2_error(rc);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00006605
6606 return Py_BuildValue("(ii)", read, write);
6607#else
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006608#if !defined(MS_WINDOWS)
Guido van Rossum687dd131993-05-17 08:34:16 +00006609 int fds[2];
6610 int res;
Barry Warsaw53699e91996-12-10 23:23:01 +00006611 Py_BEGIN_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006612 res = pipe(fds);
Barry Warsaw53699e91996-12-10 23:23:01 +00006613 Py_END_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006614 if (res != 0)
6615 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006616 return Py_BuildValue("(ii)", fds[0], fds[1]);
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006617#else /* MS_WINDOWS */
Guido van Rossum794d8131994-08-23 13:48:48 +00006618 HANDLE read, write;
Guido van Rossumb3f9f4b1998-06-12 15:05:15 +00006619 int read_fd, write_fd;
Guido van Rossum794d8131994-08-23 13:48:48 +00006620 BOOL ok;
Barry Warsaw53699e91996-12-10 23:23:01 +00006621 Py_BEGIN_ALLOW_THREADS
Guido van Rossumb3f9f4b1998-06-12 15:05:15 +00006622 ok = CreatePipe(&read, &write, NULL, 0);
Barry Warsaw53699e91996-12-10 23:23:01 +00006623 Py_END_ALLOW_THREADS
Guido van Rossum794d8131994-08-23 13:48:48 +00006624 if (!ok)
Fredrik Lundhffb9c772000-07-09 14:49:51 +00006625 return win32_error("CreatePipe", NULL);
Tim Peters79248aa2001-08-29 21:37:10 +00006626 read_fd = _open_osfhandle((Py_intptr_t)read, 0);
6627 write_fd = _open_osfhandle((Py_intptr_t)write, 1);
Guido van Rossumb3f9f4b1998-06-12 15:05:15 +00006628 return Py_BuildValue("(ii)", read_fd, write_fd);
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006629#endif /* MS_WINDOWS */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00006630#endif
Guido van Rossum687dd131993-05-17 08:34:16 +00006631}
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006632#endif /* HAVE_PIPE */
6633
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006634
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006635#ifdef HAVE_MKFIFO
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006636PyDoc_STRVAR(posix_mkfifo__doc__,
Neal Norwitzc18b3082002-10-11 22:19:42 +00006637"mkfifo(filename [, mode=0666])\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006638Create a FIFO (a POSIX named pipe).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006639
Barry Warsaw53699e91996-12-10 23:23:01 +00006640static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006641posix_mkfifo(PyObject *self, PyObject *args)
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006642{
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006643 char *filename;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006644 int mode = 0666;
6645 int res;
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006646 if (!PyArg_ParseTuple(args, "s|i:mkfifo", &filename, &mode))
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006647 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00006648 Py_BEGIN_ALLOW_THREADS
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006649 res = mkfifo(filename, mode);
6650 Py_END_ALLOW_THREADS
6651 if (res < 0)
6652 return posix_error();
6653 Py_INCREF(Py_None);
6654 return Py_None;
6655}
6656#endif
6657
6658
Neal Norwitz11690112002-07-30 01:08:28 +00006659#if defined(HAVE_MKNOD) && defined(HAVE_MAKEDEV)
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006660PyDoc_STRVAR(posix_mknod__doc__,
Neal Norwitzc18b3082002-10-11 22:19:42 +00006661"mknod(filename [, mode=0600, device])\n\n\
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006662Create a filesystem node (file, device special file or named pipe)\n\
6663named filename. mode specifies both the permissions to use and the\n\
6664type of node to be created, being combined (bitwise OR) with one of\n\
6665S_IFREG, S_IFCHR, S_IFBLK, and S_IFIFO. For S_IFCHR and S_IFBLK,\n\
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00006666device defines the newly created device special file (probably using\n\
6667os.makedev()), otherwise it is ignored.");
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006668
6669
6670static PyObject *
6671posix_mknod(PyObject *self, PyObject *args)
6672{
6673 char *filename;
6674 int mode = 0600;
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00006675 int device = 0;
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006676 int res;
Martin v. Löwisd631ebe2002-11-02 17:42:33 +00006677 if (!PyArg_ParseTuple(args, "s|ii:mknod", &filename, &mode, &device))
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006678 return NULL;
6679 Py_BEGIN_ALLOW_THREADS
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00006680 res = mknod(filename, mode, device);
Barry Warsaw53699e91996-12-10 23:23:01 +00006681 Py_END_ALLOW_THREADS
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006682 if (res < 0)
6683 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006684 Py_INCREF(Py_None);
6685 return Py_None;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006686}
6687#endif
6688
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00006689#ifdef HAVE_DEVICE_MACROS
6690PyDoc_STRVAR(posix_major__doc__,
6691"major(device) -> major number\n\
6692Extracts a device major number from a raw device number.");
6693
6694static PyObject *
6695posix_major(PyObject *self, PyObject *args)
6696{
6697 int device;
6698 if (!PyArg_ParseTuple(args, "i:major", &device))
6699 return NULL;
6700 return PyInt_FromLong((long)major(device));
6701}
6702
6703PyDoc_STRVAR(posix_minor__doc__,
6704"minor(device) -> minor number\n\
6705Extracts a device minor number from a raw device number.");
6706
6707static PyObject *
6708posix_minor(PyObject *self, PyObject *args)
6709{
6710 int device;
6711 if (!PyArg_ParseTuple(args, "i:minor", &device))
6712 return NULL;
6713 return PyInt_FromLong((long)minor(device));
6714}
6715
6716PyDoc_STRVAR(posix_makedev__doc__,
6717"makedev(major, minor) -> device number\n\
6718Composes a raw device number from the major and minor device numbers.");
6719
6720static PyObject *
6721posix_makedev(PyObject *self, PyObject *args)
6722{
6723 int major, minor;
6724 if (!PyArg_ParseTuple(args, "ii:makedev", &major, &minor))
6725 return NULL;
6726 return PyInt_FromLong((long)makedev(major, minor));
6727}
6728#endif /* device macros */
6729
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006730
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006731#ifdef HAVE_FTRUNCATE
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006732PyDoc_STRVAR(posix_ftruncate__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006733"ftruncate(fd, length)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006734Truncate a file to a specified length.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006735
Barry Warsaw53699e91996-12-10 23:23:01 +00006736static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006737posix_ftruncate(PyObject *self, PyObject *args)
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006738{
6739 int fd;
Guido van Rossum94f6f721999-01-06 18:42:14 +00006740 off_t length;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006741 int res;
Guido van Rossum94f6f721999-01-06 18:42:14 +00006742 PyObject *lenobj;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006743
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006744 if (!PyArg_ParseTuple(args, "iO:ftruncate", &fd, &lenobj))
Guido van Rossum94f6f721999-01-06 18:42:14 +00006745 return NULL;
6746
6747#if !defined(HAVE_LARGEFILE_SUPPORT)
6748 length = PyInt_AsLong(lenobj);
6749#else
6750 length = PyLong_Check(lenobj) ?
6751 PyLong_AsLongLong(lenobj) : PyInt_AsLong(lenobj);
6752#endif
6753 if (PyErr_Occurred())
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006754 return NULL;
6755
Barry Warsaw53699e91996-12-10 23:23:01 +00006756 Py_BEGIN_ALLOW_THREADS
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006757 res = ftruncate(fd, length);
Barry Warsaw53699e91996-12-10 23:23:01 +00006758 Py_END_ALLOW_THREADS
Benjamin Peterson943a6dd2009-01-19 15:51:27 +00006759 if (res < 0)
6760 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006761 Py_INCREF(Py_None);
6762 return Py_None;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006763}
6764#endif
Guido van Rossum22db57e1992-04-05 14:25:30 +00006765
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006766#ifdef HAVE_PUTENV
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006767PyDoc_STRVAR(posix_putenv__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006768"putenv(key, value)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006769Change or add an environment variable.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006770
Fred Drake762e2061999-08-26 17:23:54 +00006771/* Save putenv() parameters as values here, so we can collect them when they
6772 * get re-set with another call for the same key. */
6773static PyObject *posix_putenv_garbage;
6774
Tim Peters5aa91602002-01-30 05:46:57 +00006775static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006776posix_putenv(PyObject *self, PyObject *args)
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006777{
6778 char *s1, *s2;
Anthony Baxter64182fe2006-04-11 12:14:09 +00006779 char *newenv;
Fred Drake762e2061999-08-26 17:23:54 +00006780 PyObject *newstr;
Tim Petersc8996f52001-12-03 20:41:00 +00006781 size_t len;
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006782
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006783 if (!PyArg_ParseTuple(args, "ss:putenv", &s1, &s2))
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006784 return NULL;
Guido van Rossumd48f2521997-12-05 22:19:34 +00006785
6786#if defined(PYOS_OS2)
6787 if (stricmp(s1, "BEGINLIBPATH") == 0) {
6788 APIRET rc;
6789
Guido van Rossumd48f2521997-12-05 22:19:34 +00006790 rc = DosSetExtLIBPATH(s2, BEGIN_LIBPATH);
6791 if (rc != NO_ERROR)
6792 return os2_error(rc);
6793
6794 } else if (stricmp(s1, "ENDLIBPATH") == 0) {
6795 APIRET rc;
6796
Guido van Rossumd48f2521997-12-05 22:19:34 +00006797 rc = DosSetExtLIBPATH(s2, END_LIBPATH);
6798 if (rc != NO_ERROR)
6799 return os2_error(rc);
6800 } else {
6801#endif
6802
Fred Drake762e2061999-08-26 17:23:54 +00006803 /* XXX This can leak memory -- not easy to fix :-( */
Tim Petersc8996f52001-12-03 20:41:00 +00006804 len = strlen(s1) + strlen(s2) + 2;
6805 /* len includes space for a trailing \0; the size arg to
Gregory P. Smithdd96db62008-06-09 04:58:54 +00006806 PyString_FromStringAndSize does not count that */
6807 newstr = PyString_FromStringAndSize(NULL, (int)len - 1);
Fred Drake762e2061999-08-26 17:23:54 +00006808 if (newstr == NULL)
6809 return PyErr_NoMemory();
Gregory P. Smithdd96db62008-06-09 04:58:54 +00006810 newenv = PyString_AS_STRING(newstr);
Anthony Baxter64182fe2006-04-11 12:14:09 +00006811 PyOS_snprintf(newenv, len, "%s=%s", s1, s2);
6812 if (putenv(newenv)) {
Neal Norwitz4adc9ab2003-02-10 03:10:43 +00006813 Py_DECREF(newstr);
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006814 posix_error();
6815 return NULL;
6816 }
Fred Drake762e2061999-08-26 17:23:54 +00006817 /* Install the first arg and newstr in posix_putenv_garbage;
6818 * this will cause previous value to be collected. This has to
6819 * happen after the real putenv() call because the old value
6820 * was still accessible until then. */
6821 if (PyDict_SetItem(posix_putenv_garbage,
6822 PyTuple_GET_ITEM(args, 0), newstr)) {
6823 /* really not much we can do; just leak */
6824 PyErr_Clear();
6825 }
6826 else {
6827 Py_DECREF(newstr);
6828 }
Guido van Rossumd48f2521997-12-05 22:19:34 +00006829
6830#if defined(PYOS_OS2)
6831 }
6832#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00006833 Py_INCREF(Py_None);
6834 return Py_None;
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006835}
Guido van Rossumb6a47161997-09-15 22:54:34 +00006836#endif /* putenv */
6837
Guido van Rossumc524d952001-10-19 01:31:59 +00006838#ifdef HAVE_UNSETENV
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006839PyDoc_STRVAR(posix_unsetenv__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006840"unsetenv(key)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006841Delete an environment variable.");
Guido van Rossumc524d952001-10-19 01:31:59 +00006842
6843static PyObject *
6844posix_unsetenv(PyObject *self, PyObject *args)
6845{
6846 char *s1;
6847
6848 if (!PyArg_ParseTuple(args, "s:unsetenv", &s1))
6849 return NULL;
6850
6851 unsetenv(s1);
6852
6853 /* Remove the key from posix_putenv_garbage;
6854 * this will cause it to be collected. This has to
Tim Peters5aa91602002-01-30 05:46:57 +00006855 * happen after the real unsetenv() call because the
Guido van Rossumc524d952001-10-19 01:31:59 +00006856 * old value was still accessible until then.
6857 */
6858 if (PyDict_DelItem(posix_putenv_garbage,
6859 PyTuple_GET_ITEM(args, 0))) {
6860 /* really not much we can do; just leak */
6861 PyErr_Clear();
6862 }
6863
6864 Py_INCREF(Py_None);
6865 return Py_None;
6866}
6867#endif /* unsetenv */
6868
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006869PyDoc_STRVAR(posix_strerror__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006870"strerror(code) -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006871Translate an error code to a message string.");
Guido van Rossumb6a47161997-09-15 22:54:34 +00006872
Guido van Rossumf68d8e52001-04-14 17:55:09 +00006873static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006874posix_strerror(PyObject *self, PyObject *args)
Guido van Rossumb6a47161997-09-15 22:54:34 +00006875{
6876 int code;
6877 char *message;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006878 if (!PyArg_ParseTuple(args, "i:strerror", &code))
Guido van Rossumb6a47161997-09-15 22:54:34 +00006879 return NULL;
6880 message = strerror(code);
6881 if (message == NULL) {
6882 PyErr_SetString(PyExc_ValueError,
Fred Drake661ea262000-10-24 19:57:45 +00006883 "strerror() argument out of range");
Guido van Rossumb6a47161997-09-15 22:54:34 +00006884 return NULL;
6885 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00006886 return PyString_FromString(message);
Guido van Rossumb6a47161997-09-15 22:54:34 +00006887}
Guido van Rossumb6a47161997-09-15 22:54:34 +00006888
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006889
Guido van Rossumc9641791998-08-04 15:26:23 +00006890#ifdef HAVE_SYS_WAIT_H
6891
Fred Drake106c1a02002-04-23 15:58:02 +00006892#ifdef WCOREDUMP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006893PyDoc_STRVAR(posix_WCOREDUMP__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006894"WCOREDUMP(status) -> bool\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006895Return True if the process returning 'status' was dumped to a core file.");
Fred Drake106c1a02002-04-23 15:58:02 +00006896
6897static PyObject *
6898posix_WCOREDUMP(PyObject *self, PyObject *args)
6899{
Neal Norwitzd5a37542006-03-20 06:48:34 +00006900 WAIT_TYPE status;
6901 WAIT_STATUS_INT(status) = 0;
Fred Drake106c1a02002-04-23 15:58:02 +00006902
Neal Norwitzd5a37542006-03-20 06:48:34 +00006903 if (!PyArg_ParseTuple(args, "i:WCOREDUMP", &WAIT_STATUS_INT(status)))
Fred Drake106c1a02002-04-23 15:58:02 +00006904 return NULL;
Fred Drake106c1a02002-04-23 15:58:02 +00006905
6906 return PyBool_FromLong(WCOREDUMP(status));
Fred Drake106c1a02002-04-23 15:58:02 +00006907}
6908#endif /* WCOREDUMP */
6909
6910#ifdef WIFCONTINUED
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006911PyDoc_STRVAR(posix_WIFCONTINUED__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006912"WIFCONTINUED(status) -> bool\n\n\
Fred Drake106c1a02002-04-23 15:58:02 +00006913Return True if the process returning 'status' was continued from a\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006914job control stop.");
Fred Drake106c1a02002-04-23 15:58:02 +00006915
6916static PyObject *
Martin v. Löwis2b41b0d2002-05-04 13:13:41 +00006917posix_WIFCONTINUED(PyObject *self, PyObject *args)
Fred Drake106c1a02002-04-23 15:58:02 +00006918{
Neal Norwitzd5a37542006-03-20 06:48:34 +00006919 WAIT_TYPE status;
6920 WAIT_STATUS_INT(status) = 0;
Fred Drake106c1a02002-04-23 15:58:02 +00006921
Neal Norwitzd5a37542006-03-20 06:48:34 +00006922 if (!PyArg_ParseTuple(args, "i:WCONTINUED", &WAIT_STATUS_INT(status)))
Fred Drake106c1a02002-04-23 15:58:02 +00006923 return NULL;
Fred Drake106c1a02002-04-23 15:58:02 +00006924
Martin v. Löwis2b41b0d2002-05-04 13:13:41 +00006925 return PyBool_FromLong(WIFCONTINUED(status));
Fred Drake106c1a02002-04-23 15:58:02 +00006926}
6927#endif /* WIFCONTINUED */
6928
Guido van Rossumc9641791998-08-04 15:26:23 +00006929#ifdef WIFSTOPPED
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006930PyDoc_STRVAR(posix_WIFSTOPPED__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006931"WIFSTOPPED(status) -> bool\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006932Return True if the process returning 'status' was stopped.");
Guido van Rossumc9641791998-08-04 15:26:23 +00006933
6934static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006935posix_WIFSTOPPED(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00006936{
Neal Norwitzd5a37542006-03-20 06:48:34 +00006937 WAIT_TYPE status;
6938 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00006939
Neal Norwitzd5a37542006-03-20 06:48:34 +00006940 if (!PyArg_ParseTuple(args, "i:WIFSTOPPED", &WAIT_STATUS_INT(status)))
Guido van Rossumc9641791998-08-04 15:26:23 +00006941 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00006942
Fred Drake106c1a02002-04-23 15:58:02 +00006943 return PyBool_FromLong(WIFSTOPPED(status));
Guido van Rossumc9641791998-08-04 15:26:23 +00006944}
6945#endif /* WIFSTOPPED */
6946
6947#ifdef WIFSIGNALED
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006948PyDoc_STRVAR(posix_WIFSIGNALED__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006949"WIFSIGNALED(status) -> bool\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006950Return True if the process returning 'status' was terminated by a signal.");
Guido van Rossumc9641791998-08-04 15:26:23 +00006951
6952static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006953posix_WIFSIGNALED(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00006954{
Neal Norwitzd5a37542006-03-20 06:48:34 +00006955 WAIT_TYPE status;
6956 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00006957
Neal Norwitzd5a37542006-03-20 06:48:34 +00006958 if (!PyArg_ParseTuple(args, "i:WIFSIGNALED", &WAIT_STATUS_INT(status)))
Guido van Rossumc9641791998-08-04 15:26:23 +00006959 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00006960
Fred Drake106c1a02002-04-23 15:58:02 +00006961 return PyBool_FromLong(WIFSIGNALED(status));
Guido van Rossumc9641791998-08-04 15:26:23 +00006962}
6963#endif /* WIFSIGNALED */
6964
6965#ifdef WIFEXITED
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006966PyDoc_STRVAR(posix_WIFEXITED__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006967"WIFEXITED(status) -> bool\n\n\
Fred Drake7e3535c1999-02-02 16:37:11 +00006968Return true if the process returning 'status' exited using the exit()\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006969system call.");
Guido van Rossumc9641791998-08-04 15:26:23 +00006970
6971static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006972posix_WIFEXITED(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00006973{
Neal Norwitzd5a37542006-03-20 06:48:34 +00006974 WAIT_TYPE status;
6975 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00006976
Neal Norwitzd5a37542006-03-20 06:48:34 +00006977 if (!PyArg_ParseTuple(args, "i:WIFEXITED", &WAIT_STATUS_INT(status)))
Guido van Rossumc9641791998-08-04 15:26:23 +00006978 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00006979
Fred Drake106c1a02002-04-23 15:58:02 +00006980 return PyBool_FromLong(WIFEXITED(status));
Guido van Rossumc9641791998-08-04 15:26:23 +00006981}
6982#endif /* WIFEXITED */
6983
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00006984#ifdef WEXITSTATUS
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006985PyDoc_STRVAR(posix_WEXITSTATUS__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006986"WEXITSTATUS(status) -> integer\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006987Return the process return code from 'status'.");
Guido van Rossumc9641791998-08-04 15:26:23 +00006988
6989static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006990posix_WEXITSTATUS(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00006991{
Neal Norwitzd5a37542006-03-20 06:48:34 +00006992 WAIT_TYPE status;
6993 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00006994
Neal Norwitzd5a37542006-03-20 06:48:34 +00006995 if (!PyArg_ParseTuple(args, "i:WEXITSTATUS", &WAIT_STATUS_INT(status)))
Guido van Rossumc9641791998-08-04 15:26:23 +00006996 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00006997
Guido van Rossumc9641791998-08-04 15:26:23 +00006998 return Py_BuildValue("i", WEXITSTATUS(status));
6999}
7000#endif /* WEXITSTATUS */
7001
7002#ifdef WTERMSIG
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007003PyDoc_STRVAR(posix_WTERMSIG__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007004"WTERMSIG(status) -> integer\n\n\
Fred Drake7e3535c1999-02-02 16:37:11 +00007005Return the signal that terminated the process that provided the 'status'\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007006value.");
Guido van Rossumc9641791998-08-04 15:26:23 +00007007
7008static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007009posix_WTERMSIG(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00007010{
Neal Norwitzd5a37542006-03-20 06:48:34 +00007011 WAIT_TYPE status;
7012 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00007013
Neal Norwitzd5a37542006-03-20 06:48:34 +00007014 if (!PyArg_ParseTuple(args, "i:WTERMSIG", &WAIT_STATUS_INT(status)))
Guido van Rossumc9641791998-08-04 15:26:23 +00007015 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00007016
Guido van Rossumc9641791998-08-04 15:26:23 +00007017 return Py_BuildValue("i", WTERMSIG(status));
7018}
7019#endif /* WTERMSIG */
7020
7021#ifdef WSTOPSIG
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007022PyDoc_STRVAR(posix_WSTOPSIG__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007023"WSTOPSIG(status) -> integer\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007024Return the signal that stopped the process that provided\n\
7025the 'status' value.");
Guido van Rossumc9641791998-08-04 15:26:23 +00007026
7027static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007028posix_WSTOPSIG(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00007029{
Neal Norwitzd5a37542006-03-20 06:48:34 +00007030 WAIT_TYPE status;
7031 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00007032
Neal Norwitzd5a37542006-03-20 06:48:34 +00007033 if (!PyArg_ParseTuple(args, "i:WSTOPSIG", &WAIT_STATUS_INT(status)))
Guido van Rossumc9641791998-08-04 15:26:23 +00007034 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00007035
Guido van Rossumc9641791998-08-04 15:26:23 +00007036 return Py_BuildValue("i", WSTOPSIG(status));
7037}
7038#endif /* WSTOPSIG */
7039
7040#endif /* HAVE_SYS_WAIT_H */
7041
7042
Martin v. Löwis5f5d99c2006-05-16 07:05:37 +00007043#if defined(HAVE_FSTATVFS) && defined(HAVE_SYS_STATVFS_H)
Guido van Rossumd5753e11999-10-19 13:29:23 +00007044#ifdef _SCO_DS
7045/* SCO OpenServer 5.0 and later requires _SVID3 before it reveals the
7046 needed definitions in sys/statvfs.h */
7047#define _SVID3
7048#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00007049#include <sys/statvfs.h>
7050
Guido van Rossum98bf58f2001-10-18 20:34:25 +00007051static PyObject*
7052_pystatvfs_fromstructstatvfs(struct statvfs st) {
7053 PyObject *v = PyStructSequence_New(&StatVFSResultType);
7054 if (v == NULL)
7055 return NULL;
7056
7057#if !defined(HAVE_LARGEFILE_SUPPORT)
7058 PyStructSequence_SET_ITEM(v, 0, PyInt_FromLong((long) st.f_bsize));
7059 PyStructSequence_SET_ITEM(v, 1, PyInt_FromLong((long) st.f_frsize));
7060 PyStructSequence_SET_ITEM(v, 2, PyInt_FromLong((long) st.f_blocks));
7061 PyStructSequence_SET_ITEM(v, 3, PyInt_FromLong((long) st.f_bfree));
7062 PyStructSequence_SET_ITEM(v, 4, PyInt_FromLong((long) st.f_bavail));
7063 PyStructSequence_SET_ITEM(v, 5, PyInt_FromLong((long) st.f_files));
7064 PyStructSequence_SET_ITEM(v, 6, PyInt_FromLong((long) st.f_ffree));
7065 PyStructSequence_SET_ITEM(v, 7, PyInt_FromLong((long) st.f_favail));
7066 PyStructSequence_SET_ITEM(v, 8, PyInt_FromLong((long) st.f_flag));
7067 PyStructSequence_SET_ITEM(v, 9, PyInt_FromLong((long) st.f_namemax));
7068#else
7069 PyStructSequence_SET_ITEM(v, 0, PyInt_FromLong((long) st.f_bsize));
7070 PyStructSequence_SET_ITEM(v, 1, PyInt_FromLong((long) st.f_frsize));
Tim Peters5aa91602002-01-30 05:46:57 +00007071 PyStructSequence_SET_ITEM(v, 2,
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00007072 PyLong_FromLongLong((PY_LONG_LONG) st.f_blocks));
Tim Peters5aa91602002-01-30 05:46:57 +00007073 PyStructSequence_SET_ITEM(v, 3,
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00007074 PyLong_FromLongLong((PY_LONG_LONG) st.f_bfree));
Guido van Rossum98bf58f2001-10-18 20:34:25 +00007075 PyStructSequence_SET_ITEM(v, 4,
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00007076 PyLong_FromLongLong((PY_LONG_LONG) st.f_bavail));
Tim Peters5aa91602002-01-30 05:46:57 +00007077 PyStructSequence_SET_ITEM(v, 5,
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00007078 PyLong_FromLongLong((PY_LONG_LONG) st.f_files));
Tim Peters5aa91602002-01-30 05:46:57 +00007079 PyStructSequence_SET_ITEM(v, 6,
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00007080 PyLong_FromLongLong((PY_LONG_LONG) st.f_ffree));
Tim Peters5aa91602002-01-30 05:46:57 +00007081 PyStructSequence_SET_ITEM(v, 7,
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00007082 PyLong_FromLongLong((PY_LONG_LONG) st.f_favail));
Guido van Rossum98bf58f2001-10-18 20:34:25 +00007083 PyStructSequence_SET_ITEM(v, 8, PyInt_FromLong((long) st.f_flag));
7084 PyStructSequence_SET_ITEM(v, 9, PyInt_FromLong((long) st.f_namemax));
7085#endif
7086
7087 return v;
7088}
7089
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007090PyDoc_STRVAR(posix_fstatvfs__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007091"fstatvfs(fd) -> statvfs result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007092Perform an fstatvfs system call on the given fd.");
Guido van Rossum94f6f721999-01-06 18:42:14 +00007093
7094static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007095posix_fstatvfs(PyObject *self, PyObject *args)
Guido van Rossum94f6f721999-01-06 18:42:14 +00007096{
7097 int fd, res;
7098 struct statvfs st;
Guido van Rossum98bf58f2001-10-18 20:34:25 +00007099
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007100 if (!PyArg_ParseTuple(args, "i:fstatvfs", &fd))
Guido van Rossum94f6f721999-01-06 18:42:14 +00007101 return NULL;
7102 Py_BEGIN_ALLOW_THREADS
7103 res = fstatvfs(fd, &st);
7104 Py_END_ALLOW_THREADS
7105 if (res != 0)
7106 return posix_error();
Guido van Rossum98bf58f2001-10-18 20:34:25 +00007107
7108 return _pystatvfs_fromstructstatvfs(st);
Guido van Rossum94f6f721999-01-06 18:42:14 +00007109}
Martin v. Löwis5f5d99c2006-05-16 07:05:37 +00007110#endif /* HAVE_FSTATVFS && HAVE_SYS_STATVFS_H */
Guido van Rossum94f6f721999-01-06 18:42:14 +00007111
7112
Martin v. Löwis5f5d99c2006-05-16 07:05:37 +00007113#if defined(HAVE_STATVFS) && defined(HAVE_SYS_STATVFS_H)
Guido van Rossum94f6f721999-01-06 18:42:14 +00007114#include <sys/statvfs.h>
7115
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007116PyDoc_STRVAR(posix_statvfs__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007117"statvfs(path) -> statvfs result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007118Perform a statvfs system call on the given path.");
Guido van Rossum94f6f721999-01-06 18:42:14 +00007119
7120static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007121posix_statvfs(PyObject *self, PyObject *args)
Guido van Rossum94f6f721999-01-06 18:42:14 +00007122{
7123 char *path;
7124 int res;
7125 struct statvfs st;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007126 if (!PyArg_ParseTuple(args, "s:statvfs", &path))
Guido van Rossum94f6f721999-01-06 18:42:14 +00007127 return NULL;
7128 Py_BEGIN_ALLOW_THREADS
7129 res = statvfs(path, &st);
7130 Py_END_ALLOW_THREADS
7131 if (res != 0)
7132 return posix_error_with_filename(path);
Guido van Rossum98bf58f2001-10-18 20:34:25 +00007133
7134 return _pystatvfs_fromstructstatvfs(st);
Guido van Rossum94f6f721999-01-06 18:42:14 +00007135}
7136#endif /* HAVE_STATVFS */
7137
7138
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007139#ifdef HAVE_TEMPNAM
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007140PyDoc_STRVAR(posix_tempnam__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007141"tempnam([dir[, prefix]]) -> string\n\n\
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007142Return a unique name for a temporary file.\n\
Neal Norwitz50d5d4f2002-07-30 01:17:43 +00007143The directory and a prefix may be specified as strings; they may be omitted\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007144or None if not needed.");
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007145
7146static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007147posix_tempnam(PyObject *self, PyObject *args)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007148{
7149 PyObject *result = NULL;
7150 char *dir = NULL;
7151 char *pfx = NULL;
7152 char *name;
7153
7154 if (!PyArg_ParseTuple(args, "|zz:tempnam", &dir, &pfx))
7155 return NULL;
Skip Montanaro95618b52001-08-18 18:52:10 +00007156
7157 if (PyErr_Warn(PyExc_RuntimeWarning,
7158 "tempnam is a potential security risk to your program") < 0)
7159 return NULL;
7160
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00007161#ifdef MS_WINDOWS
Fred Drake78b71c22001-07-17 20:37:36 +00007162 name = _tempnam(dir, pfx);
7163#else
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007164 name = tempnam(dir, pfx);
Fred Drake78b71c22001-07-17 20:37:36 +00007165#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007166 if (name == NULL)
7167 return PyErr_NoMemory();
Gregory P. Smithdd96db62008-06-09 04:58:54 +00007168 result = PyString_FromString(name);
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007169 free(name);
7170 return result;
7171}
Guido van Rossumd371ff11999-01-25 16:12:23 +00007172#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007173
7174
7175#ifdef HAVE_TMPFILE
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007176PyDoc_STRVAR(posix_tmpfile__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007177"tmpfile() -> file object\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007178Create a temporary file with no directory entries.");
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007179
7180static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00007181posix_tmpfile(PyObject *self, PyObject *noargs)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007182{
7183 FILE *fp;
7184
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007185 fp = tmpfile();
7186 if (fp == NULL)
7187 return posix_error();
Guido van Rossumdb9198a2002-06-10 19:23:22 +00007188 return PyFile_FromFile(fp, "<tmpfile>", "w+b", fclose);
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007189}
7190#endif
7191
7192
7193#ifdef HAVE_TMPNAM
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007194PyDoc_STRVAR(posix_tmpnam__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007195"tmpnam() -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007196Return a unique name for a temporary file.");
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007197
7198static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00007199posix_tmpnam(PyObject *self, PyObject *noargs)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007200{
7201 char buffer[L_tmpnam];
7202 char *name;
7203
Skip Montanaro95618b52001-08-18 18:52:10 +00007204 if (PyErr_Warn(PyExc_RuntimeWarning,
7205 "tmpnam is a potential security risk to your program") < 0)
7206 return NULL;
7207
Greg Wardb48bc172000-03-01 21:51:56 +00007208#ifdef USE_TMPNAM_R
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007209 name = tmpnam_r(buffer);
7210#else
7211 name = tmpnam(buffer);
7212#endif
7213 if (name == NULL) {
Neal Norwitzd1e0ef62006-03-20 04:08:12 +00007214 PyObject *err = Py_BuildValue("is", 0,
Greg Wardb48bc172000-03-01 21:51:56 +00007215#ifdef USE_TMPNAM_R
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007216 "unexpected NULL from tmpnam_r"
7217#else
7218 "unexpected NULL from tmpnam"
7219#endif
Neal Norwitzd1e0ef62006-03-20 04:08:12 +00007220 );
7221 PyErr_SetObject(PyExc_OSError, err);
7222 Py_XDECREF(err);
7223 return NULL;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007224 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00007225 return PyString_FromString(buffer);
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007226}
7227#endif
7228
7229
Fred Drakec9680921999-12-13 16:37:25 +00007230/* This is used for fpathconf(), pathconf(), confstr() and sysconf().
7231 * It maps strings representing configuration variable names to
7232 * integer values, allowing those functions to be called with the
Thomas Wouters7e474022000-07-16 12:04:32 +00007233 * magic names instead of polluting the module's namespace with tons of
Fred Drake12c6e2d1999-12-14 21:25:03 +00007234 * rarely-used constants. There are three separate tables that use
7235 * these definitions.
Fred Drakebec628d1999-12-15 18:31:10 +00007236 *
7237 * This code is always included, even if none of the interfaces that
7238 * need it are included. The #if hackery needed to avoid it would be
7239 * sufficiently pervasive that it's not worth the loss of readability.
Fred Drakec9680921999-12-13 16:37:25 +00007240 */
7241struct constdef {
7242 char *name;
7243 long value;
7244};
7245
Fred Drake12c6e2d1999-12-14 21:25:03 +00007246static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007247conv_confname(PyObject *arg, int *valuep, struct constdef *table,
7248 size_t tablesize)
Fred Drake12c6e2d1999-12-14 21:25:03 +00007249{
7250 if (PyInt_Check(arg)) {
7251 *valuep = PyInt_AS_LONG(arg);
7252 return 1;
7253 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00007254 if (PyString_Check(arg)) {
Fred Drake12c6e2d1999-12-14 21:25:03 +00007255 /* look up the value in the table using a binary search */
Fred Drake699f3522000-06-29 21:12:41 +00007256 size_t lo = 0;
7257 size_t mid;
7258 size_t hi = tablesize;
7259 int cmp;
Gregory P. Smithdd96db62008-06-09 04:58:54 +00007260 char *confname = PyString_AS_STRING(arg);
Fred Drake12c6e2d1999-12-14 21:25:03 +00007261 while (lo < hi) {
7262 mid = (lo + hi) / 2;
7263 cmp = strcmp(confname, table[mid].name);
7264 if (cmp < 0)
7265 hi = mid;
7266 else if (cmp > 0)
7267 lo = mid + 1;
7268 else {
7269 *valuep = table[mid].value;
7270 return 1;
7271 }
7272 }
7273 PyErr_SetString(PyExc_ValueError, "unrecognized configuration name");
7274 }
7275 else
7276 PyErr_SetString(PyExc_TypeError,
7277 "configuration names must be strings or integers");
7278 return 0;
7279}
7280
7281
7282#if defined(HAVE_FPATHCONF) || defined(HAVE_PATHCONF)
7283static struct constdef posix_constants_pathconf[] = {
Fred Draked86ed291999-12-15 15:34:33 +00007284#ifdef _PC_ABI_AIO_XFER_MAX
7285 {"PC_ABI_AIO_XFER_MAX", _PC_ABI_AIO_XFER_MAX},
7286#endif
7287#ifdef _PC_ABI_ASYNC_IO
7288 {"PC_ABI_ASYNC_IO", _PC_ABI_ASYNC_IO},
7289#endif
Fred Drakec9680921999-12-13 16:37:25 +00007290#ifdef _PC_ASYNC_IO
7291 {"PC_ASYNC_IO", _PC_ASYNC_IO},
7292#endif
7293#ifdef _PC_CHOWN_RESTRICTED
7294 {"PC_CHOWN_RESTRICTED", _PC_CHOWN_RESTRICTED},
7295#endif
7296#ifdef _PC_FILESIZEBITS
7297 {"PC_FILESIZEBITS", _PC_FILESIZEBITS},
7298#endif
7299#ifdef _PC_LAST
7300 {"PC_LAST", _PC_LAST},
7301#endif
7302#ifdef _PC_LINK_MAX
7303 {"PC_LINK_MAX", _PC_LINK_MAX},
7304#endif
7305#ifdef _PC_MAX_CANON
7306 {"PC_MAX_CANON", _PC_MAX_CANON},
7307#endif
7308#ifdef _PC_MAX_INPUT
7309 {"PC_MAX_INPUT", _PC_MAX_INPUT},
7310#endif
7311#ifdef _PC_NAME_MAX
7312 {"PC_NAME_MAX", _PC_NAME_MAX},
7313#endif
7314#ifdef _PC_NO_TRUNC
7315 {"PC_NO_TRUNC", _PC_NO_TRUNC},
7316#endif
7317#ifdef _PC_PATH_MAX
7318 {"PC_PATH_MAX", _PC_PATH_MAX},
7319#endif
7320#ifdef _PC_PIPE_BUF
7321 {"PC_PIPE_BUF", _PC_PIPE_BUF},
7322#endif
7323#ifdef _PC_PRIO_IO
7324 {"PC_PRIO_IO", _PC_PRIO_IO},
7325#endif
7326#ifdef _PC_SOCK_MAXBUF
7327 {"PC_SOCK_MAXBUF", _PC_SOCK_MAXBUF},
7328#endif
7329#ifdef _PC_SYNC_IO
7330 {"PC_SYNC_IO", _PC_SYNC_IO},
7331#endif
7332#ifdef _PC_VDISABLE
7333 {"PC_VDISABLE", _PC_VDISABLE},
7334#endif
7335};
7336
Fred Drakec9680921999-12-13 16:37:25 +00007337static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007338conv_path_confname(PyObject *arg, int *valuep)
Fred Drakec9680921999-12-13 16:37:25 +00007339{
7340 return conv_confname(arg, valuep, posix_constants_pathconf,
7341 sizeof(posix_constants_pathconf)
7342 / sizeof(struct constdef));
7343}
7344#endif
7345
7346#ifdef HAVE_FPATHCONF
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007347PyDoc_STRVAR(posix_fpathconf__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007348"fpathconf(fd, name) -> integer\n\n\
Fred Drakec9680921999-12-13 16:37:25 +00007349Return the configuration limit name for the file descriptor fd.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007350If there is no limit, return -1.");
Fred Drakec9680921999-12-13 16:37:25 +00007351
7352static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007353posix_fpathconf(PyObject *self, PyObject *args)
Fred Drakec9680921999-12-13 16:37:25 +00007354{
7355 PyObject *result = NULL;
7356 int name, fd;
7357
Fred Drake12c6e2d1999-12-14 21:25:03 +00007358 if (PyArg_ParseTuple(args, "iO&:fpathconf", &fd,
7359 conv_path_confname, &name)) {
Fred Drakec9680921999-12-13 16:37:25 +00007360 long limit;
7361
7362 errno = 0;
7363 limit = fpathconf(fd, name);
7364 if (limit == -1 && errno != 0)
7365 posix_error();
7366 else
7367 result = PyInt_FromLong(limit);
7368 }
7369 return result;
7370}
7371#endif
7372
7373
7374#ifdef HAVE_PATHCONF
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007375PyDoc_STRVAR(posix_pathconf__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007376"pathconf(path, name) -> integer\n\n\
Fred Drakec9680921999-12-13 16:37:25 +00007377Return the configuration limit name for the file or directory path.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007378If there is no limit, return -1.");
Fred Drakec9680921999-12-13 16:37:25 +00007379
7380static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007381posix_pathconf(PyObject *self, PyObject *args)
Fred Drakec9680921999-12-13 16:37:25 +00007382{
7383 PyObject *result = NULL;
7384 int name;
7385 char *path;
7386
7387 if (PyArg_ParseTuple(args, "sO&:pathconf", &path,
7388 conv_path_confname, &name)) {
7389 long limit;
7390
7391 errno = 0;
7392 limit = pathconf(path, name);
Fred Drake12c6e2d1999-12-14 21:25:03 +00007393 if (limit == -1 && errno != 0) {
Fred Drakec9680921999-12-13 16:37:25 +00007394 if (errno == EINVAL)
7395 /* could be a path or name problem */
7396 posix_error();
7397 else
7398 posix_error_with_filename(path);
Fred Drake12c6e2d1999-12-14 21:25:03 +00007399 }
Fred Drakec9680921999-12-13 16:37:25 +00007400 else
7401 result = PyInt_FromLong(limit);
7402 }
7403 return result;
7404}
7405#endif
7406
7407#ifdef HAVE_CONFSTR
7408static struct constdef posix_constants_confstr[] = {
Fred Draked86ed291999-12-15 15:34:33 +00007409#ifdef _CS_ARCHITECTURE
7410 {"CS_ARCHITECTURE", _CS_ARCHITECTURE},
7411#endif
7412#ifdef _CS_HOSTNAME
7413 {"CS_HOSTNAME", _CS_HOSTNAME},
7414#endif
7415#ifdef _CS_HW_PROVIDER
7416 {"CS_HW_PROVIDER", _CS_HW_PROVIDER},
7417#endif
7418#ifdef _CS_HW_SERIAL
7419 {"CS_HW_SERIAL", _CS_HW_SERIAL},
7420#endif
7421#ifdef _CS_INITTAB_NAME
7422 {"CS_INITTAB_NAME", _CS_INITTAB_NAME},
7423#endif
Fred Drakec9680921999-12-13 16:37:25 +00007424#ifdef _CS_LFS64_CFLAGS
7425 {"CS_LFS64_CFLAGS", _CS_LFS64_CFLAGS},
7426#endif
7427#ifdef _CS_LFS64_LDFLAGS
7428 {"CS_LFS64_LDFLAGS", _CS_LFS64_LDFLAGS},
7429#endif
7430#ifdef _CS_LFS64_LIBS
7431 {"CS_LFS64_LIBS", _CS_LFS64_LIBS},
7432#endif
7433#ifdef _CS_LFS64_LINTFLAGS
7434 {"CS_LFS64_LINTFLAGS", _CS_LFS64_LINTFLAGS},
7435#endif
7436#ifdef _CS_LFS_CFLAGS
7437 {"CS_LFS_CFLAGS", _CS_LFS_CFLAGS},
7438#endif
7439#ifdef _CS_LFS_LDFLAGS
7440 {"CS_LFS_LDFLAGS", _CS_LFS_LDFLAGS},
7441#endif
7442#ifdef _CS_LFS_LIBS
7443 {"CS_LFS_LIBS", _CS_LFS_LIBS},
7444#endif
7445#ifdef _CS_LFS_LINTFLAGS
7446 {"CS_LFS_LINTFLAGS", _CS_LFS_LINTFLAGS},
7447#endif
Fred Draked86ed291999-12-15 15:34:33 +00007448#ifdef _CS_MACHINE
7449 {"CS_MACHINE", _CS_MACHINE},
7450#endif
Fred Drakec9680921999-12-13 16:37:25 +00007451#ifdef _CS_PATH
7452 {"CS_PATH", _CS_PATH},
7453#endif
Fred Draked86ed291999-12-15 15:34:33 +00007454#ifdef _CS_RELEASE
7455 {"CS_RELEASE", _CS_RELEASE},
7456#endif
7457#ifdef _CS_SRPC_DOMAIN
7458 {"CS_SRPC_DOMAIN", _CS_SRPC_DOMAIN},
7459#endif
7460#ifdef _CS_SYSNAME
7461 {"CS_SYSNAME", _CS_SYSNAME},
7462#endif
7463#ifdef _CS_VERSION
7464 {"CS_VERSION", _CS_VERSION},
7465#endif
Fred Drakec9680921999-12-13 16:37:25 +00007466#ifdef _CS_XBS5_ILP32_OFF32_CFLAGS
7467 {"CS_XBS5_ILP32_OFF32_CFLAGS", _CS_XBS5_ILP32_OFF32_CFLAGS},
7468#endif
7469#ifdef _CS_XBS5_ILP32_OFF32_LDFLAGS
7470 {"CS_XBS5_ILP32_OFF32_LDFLAGS", _CS_XBS5_ILP32_OFF32_LDFLAGS},
7471#endif
7472#ifdef _CS_XBS5_ILP32_OFF32_LIBS
7473 {"CS_XBS5_ILP32_OFF32_LIBS", _CS_XBS5_ILP32_OFF32_LIBS},
7474#endif
7475#ifdef _CS_XBS5_ILP32_OFF32_LINTFLAGS
7476 {"CS_XBS5_ILP32_OFF32_LINTFLAGS", _CS_XBS5_ILP32_OFF32_LINTFLAGS},
7477#endif
7478#ifdef _CS_XBS5_ILP32_OFFBIG_CFLAGS
7479 {"CS_XBS5_ILP32_OFFBIG_CFLAGS", _CS_XBS5_ILP32_OFFBIG_CFLAGS},
7480#endif
7481#ifdef _CS_XBS5_ILP32_OFFBIG_LDFLAGS
7482 {"CS_XBS5_ILP32_OFFBIG_LDFLAGS", _CS_XBS5_ILP32_OFFBIG_LDFLAGS},
7483#endif
7484#ifdef _CS_XBS5_ILP32_OFFBIG_LIBS
7485 {"CS_XBS5_ILP32_OFFBIG_LIBS", _CS_XBS5_ILP32_OFFBIG_LIBS},
7486#endif
7487#ifdef _CS_XBS5_ILP32_OFFBIG_LINTFLAGS
7488 {"CS_XBS5_ILP32_OFFBIG_LINTFLAGS", _CS_XBS5_ILP32_OFFBIG_LINTFLAGS},
7489#endif
7490#ifdef _CS_XBS5_LP64_OFF64_CFLAGS
7491 {"CS_XBS5_LP64_OFF64_CFLAGS", _CS_XBS5_LP64_OFF64_CFLAGS},
7492#endif
7493#ifdef _CS_XBS5_LP64_OFF64_LDFLAGS
7494 {"CS_XBS5_LP64_OFF64_LDFLAGS", _CS_XBS5_LP64_OFF64_LDFLAGS},
7495#endif
7496#ifdef _CS_XBS5_LP64_OFF64_LIBS
7497 {"CS_XBS5_LP64_OFF64_LIBS", _CS_XBS5_LP64_OFF64_LIBS},
7498#endif
7499#ifdef _CS_XBS5_LP64_OFF64_LINTFLAGS
7500 {"CS_XBS5_LP64_OFF64_LINTFLAGS", _CS_XBS5_LP64_OFF64_LINTFLAGS},
7501#endif
7502#ifdef _CS_XBS5_LPBIG_OFFBIG_CFLAGS
7503 {"CS_XBS5_LPBIG_OFFBIG_CFLAGS", _CS_XBS5_LPBIG_OFFBIG_CFLAGS},
7504#endif
7505#ifdef _CS_XBS5_LPBIG_OFFBIG_LDFLAGS
7506 {"CS_XBS5_LPBIG_OFFBIG_LDFLAGS", _CS_XBS5_LPBIG_OFFBIG_LDFLAGS},
7507#endif
7508#ifdef _CS_XBS5_LPBIG_OFFBIG_LIBS
7509 {"CS_XBS5_LPBIG_OFFBIG_LIBS", _CS_XBS5_LPBIG_OFFBIG_LIBS},
7510#endif
7511#ifdef _CS_XBS5_LPBIG_OFFBIG_LINTFLAGS
7512 {"CS_XBS5_LPBIG_OFFBIG_LINTFLAGS", _CS_XBS5_LPBIG_OFFBIG_LINTFLAGS},
7513#endif
Fred Draked86ed291999-12-15 15:34:33 +00007514#ifdef _MIPS_CS_AVAIL_PROCESSORS
7515 {"MIPS_CS_AVAIL_PROCESSORS", _MIPS_CS_AVAIL_PROCESSORS},
7516#endif
7517#ifdef _MIPS_CS_BASE
7518 {"MIPS_CS_BASE", _MIPS_CS_BASE},
7519#endif
7520#ifdef _MIPS_CS_HOSTID
7521 {"MIPS_CS_HOSTID", _MIPS_CS_HOSTID},
7522#endif
7523#ifdef _MIPS_CS_HW_NAME
7524 {"MIPS_CS_HW_NAME", _MIPS_CS_HW_NAME},
7525#endif
7526#ifdef _MIPS_CS_NUM_PROCESSORS
7527 {"MIPS_CS_NUM_PROCESSORS", _MIPS_CS_NUM_PROCESSORS},
7528#endif
7529#ifdef _MIPS_CS_OSREL_MAJ
7530 {"MIPS_CS_OSREL_MAJ", _MIPS_CS_OSREL_MAJ},
7531#endif
7532#ifdef _MIPS_CS_OSREL_MIN
7533 {"MIPS_CS_OSREL_MIN", _MIPS_CS_OSREL_MIN},
7534#endif
7535#ifdef _MIPS_CS_OSREL_PATCH
7536 {"MIPS_CS_OSREL_PATCH", _MIPS_CS_OSREL_PATCH},
7537#endif
7538#ifdef _MIPS_CS_OS_NAME
7539 {"MIPS_CS_OS_NAME", _MIPS_CS_OS_NAME},
7540#endif
7541#ifdef _MIPS_CS_OS_PROVIDER
7542 {"MIPS_CS_OS_PROVIDER", _MIPS_CS_OS_PROVIDER},
7543#endif
7544#ifdef _MIPS_CS_PROCESSORS
7545 {"MIPS_CS_PROCESSORS", _MIPS_CS_PROCESSORS},
7546#endif
7547#ifdef _MIPS_CS_SERIAL
7548 {"MIPS_CS_SERIAL", _MIPS_CS_SERIAL},
7549#endif
7550#ifdef _MIPS_CS_VENDOR
7551 {"MIPS_CS_VENDOR", _MIPS_CS_VENDOR},
7552#endif
Fred Drakec9680921999-12-13 16:37:25 +00007553};
7554
7555static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007556conv_confstr_confname(PyObject *arg, int *valuep)
Fred Drakec9680921999-12-13 16:37:25 +00007557{
7558 return conv_confname(arg, valuep, posix_constants_confstr,
7559 sizeof(posix_constants_confstr)
7560 / sizeof(struct constdef));
7561}
7562
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007563PyDoc_STRVAR(posix_confstr__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007564"confstr(name) -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007565Return a string-valued system configuration variable.");
Fred Drakec9680921999-12-13 16:37:25 +00007566
7567static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007568posix_confstr(PyObject *self, PyObject *args)
Fred Drakec9680921999-12-13 16:37:25 +00007569{
7570 PyObject *result = NULL;
7571 int name;
Neal Norwitz449b24e2006-04-20 06:56:05 +00007572 char buffer[256];
Fred Drakec9680921999-12-13 16:37:25 +00007573
7574 if (PyArg_ParseTuple(args, "O&:confstr", conv_confstr_confname, &name)) {
Skip Montanarodd527fc2006-04-18 00:49:49 +00007575 int len;
Fred Drakec9680921999-12-13 16:37:25 +00007576
Fred Drakec9680921999-12-13 16:37:25 +00007577 errno = 0;
Skip Montanarodd527fc2006-04-18 00:49:49 +00007578 len = confstr(name, buffer, sizeof(buffer));
Skip Montanaro94785ef2006-04-20 01:29:48 +00007579 if (len == 0) {
7580 if (errno) {
7581 posix_error();
7582 }
7583 else {
7584 result = Py_None;
7585 Py_INCREF(Py_None);
7586 }
Fred Drakec9680921999-12-13 16:37:25 +00007587 }
7588 else {
Neal Norwitz0d21b1e2006-04-20 06:44:42 +00007589 if ((unsigned int)len >= sizeof(buffer)) {
Gregory P. Smithdd96db62008-06-09 04:58:54 +00007590 result = PyString_FromStringAndSize(NULL, len-1);
Fred Drakec9680921999-12-13 16:37:25 +00007591 if (result != NULL)
Gregory P. Smithdd96db62008-06-09 04:58:54 +00007592 confstr(name, PyString_AS_STRING(result), len);
Fred Drakec9680921999-12-13 16:37:25 +00007593 }
7594 else
Gregory P. Smithdd96db62008-06-09 04:58:54 +00007595 result = PyString_FromStringAndSize(buffer, len-1);
Fred Drakec9680921999-12-13 16:37:25 +00007596 }
7597 }
7598 return result;
7599}
7600#endif
7601
7602
7603#ifdef HAVE_SYSCONF
7604static struct constdef posix_constants_sysconf[] = {
7605#ifdef _SC_2_CHAR_TERM
7606 {"SC_2_CHAR_TERM", _SC_2_CHAR_TERM},
7607#endif
7608#ifdef _SC_2_C_BIND
7609 {"SC_2_C_BIND", _SC_2_C_BIND},
7610#endif
7611#ifdef _SC_2_C_DEV
7612 {"SC_2_C_DEV", _SC_2_C_DEV},
7613#endif
7614#ifdef _SC_2_C_VERSION
7615 {"SC_2_C_VERSION", _SC_2_C_VERSION},
7616#endif
7617#ifdef _SC_2_FORT_DEV
7618 {"SC_2_FORT_DEV", _SC_2_FORT_DEV},
7619#endif
7620#ifdef _SC_2_FORT_RUN
7621 {"SC_2_FORT_RUN", _SC_2_FORT_RUN},
7622#endif
7623#ifdef _SC_2_LOCALEDEF
7624 {"SC_2_LOCALEDEF", _SC_2_LOCALEDEF},
7625#endif
7626#ifdef _SC_2_SW_DEV
7627 {"SC_2_SW_DEV", _SC_2_SW_DEV},
7628#endif
7629#ifdef _SC_2_UPE
7630 {"SC_2_UPE", _SC_2_UPE},
7631#endif
7632#ifdef _SC_2_VERSION
7633 {"SC_2_VERSION", _SC_2_VERSION},
7634#endif
Fred Draked86ed291999-12-15 15:34:33 +00007635#ifdef _SC_ABI_ASYNCHRONOUS_IO
7636 {"SC_ABI_ASYNCHRONOUS_IO", _SC_ABI_ASYNCHRONOUS_IO},
7637#endif
7638#ifdef _SC_ACL
7639 {"SC_ACL", _SC_ACL},
7640#endif
Fred Drakec9680921999-12-13 16:37:25 +00007641#ifdef _SC_AIO_LISTIO_MAX
7642 {"SC_AIO_LISTIO_MAX", _SC_AIO_LISTIO_MAX},
7643#endif
Fred Drakec9680921999-12-13 16:37:25 +00007644#ifdef _SC_AIO_MAX
7645 {"SC_AIO_MAX", _SC_AIO_MAX},
7646#endif
7647#ifdef _SC_AIO_PRIO_DELTA_MAX
7648 {"SC_AIO_PRIO_DELTA_MAX", _SC_AIO_PRIO_DELTA_MAX},
7649#endif
7650#ifdef _SC_ARG_MAX
7651 {"SC_ARG_MAX", _SC_ARG_MAX},
7652#endif
7653#ifdef _SC_ASYNCHRONOUS_IO
7654 {"SC_ASYNCHRONOUS_IO", _SC_ASYNCHRONOUS_IO},
7655#endif
7656#ifdef _SC_ATEXIT_MAX
7657 {"SC_ATEXIT_MAX", _SC_ATEXIT_MAX},
7658#endif
Fred Draked86ed291999-12-15 15:34:33 +00007659#ifdef _SC_AUDIT
7660 {"SC_AUDIT", _SC_AUDIT},
7661#endif
Fred Drakec9680921999-12-13 16:37:25 +00007662#ifdef _SC_AVPHYS_PAGES
7663 {"SC_AVPHYS_PAGES", _SC_AVPHYS_PAGES},
7664#endif
7665#ifdef _SC_BC_BASE_MAX
7666 {"SC_BC_BASE_MAX", _SC_BC_BASE_MAX},
7667#endif
7668#ifdef _SC_BC_DIM_MAX
7669 {"SC_BC_DIM_MAX", _SC_BC_DIM_MAX},
7670#endif
7671#ifdef _SC_BC_SCALE_MAX
7672 {"SC_BC_SCALE_MAX", _SC_BC_SCALE_MAX},
7673#endif
7674#ifdef _SC_BC_STRING_MAX
7675 {"SC_BC_STRING_MAX", _SC_BC_STRING_MAX},
7676#endif
Fred Draked86ed291999-12-15 15:34:33 +00007677#ifdef _SC_CAP
7678 {"SC_CAP", _SC_CAP},
7679#endif
Fred Drakec9680921999-12-13 16:37:25 +00007680#ifdef _SC_CHARCLASS_NAME_MAX
7681 {"SC_CHARCLASS_NAME_MAX", _SC_CHARCLASS_NAME_MAX},
7682#endif
7683#ifdef _SC_CHAR_BIT
7684 {"SC_CHAR_BIT", _SC_CHAR_BIT},
7685#endif
7686#ifdef _SC_CHAR_MAX
7687 {"SC_CHAR_MAX", _SC_CHAR_MAX},
7688#endif
7689#ifdef _SC_CHAR_MIN
7690 {"SC_CHAR_MIN", _SC_CHAR_MIN},
7691#endif
7692#ifdef _SC_CHILD_MAX
7693 {"SC_CHILD_MAX", _SC_CHILD_MAX},
7694#endif
7695#ifdef _SC_CLK_TCK
7696 {"SC_CLK_TCK", _SC_CLK_TCK},
7697#endif
7698#ifdef _SC_COHER_BLKSZ
7699 {"SC_COHER_BLKSZ", _SC_COHER_BLKSZ},
7700#endif
7701#ifdef _SC_COLL_WEIGHTS_MAX
7702 {"SC_COLL_WEIGHTS_MAX", _SC_COLL_WEIGHTS_MAX},
7703#endif
7704#ifdef _SC_DCACHE_ASSOC
7705 {"SC_DCACHE_ASSOC", _SC_DCACHE_ASSOC},
7706#endif
7707#ifdef _SC_DCACHE_BLKSZ
7708 {"SC_DCACHE_BLKSZ", _SC_DCACHE_BLKSZ},
7709#endif
7710#ifdef _SC_DCACHE_LINESZ
7711 {"SC_DCACHE_LINESZ", _SC_DCACHE_LINESZ},
7712#endif
7713#ifdef _SC_DCACHE_SZ
7714 {"SC_DCACHE_SZ", _SC_DCACHE_SZ},
7715#endif
7716#ifdef _SC_DCACHE_TBLKSZ
7717 {"SC_DCACHE_TBLKSZ", _SC_DCACHE_TBLKSZ},
7718#endif
7719#ifdef _SC_DELAYTIMER_MAX
7720 {"SC_DELAYTIMER_MAX", _SC_DELAYTIMER_MAX},
7721#endif
7722#ifdef _SC_EQUIV_CLASS_MAX
7723 {"SC_EQUIV_CLASS_MAX", _SC_EQUIV_CLASS_MAX},
7724#endif
7725#ifdef _SC_EXPR_NEST_MAX
7726 {"SC_EXPR_NEST_MAX", _SC_EXPR_NEST_MAX},
7727#endif
7728#ifdef _SC_FSYNC
7729 {"SC_FSYNC", _SC_FSYNC},
7730#endif
7731#ifdef _SC_GETGR_R_SIZE_MAX
7732 {"SC_GETGR_R_SIZE_MAX", _SC_GETGR_R_SIZE_MAX},
7733#endif
7734#ifdef _SC_GETPW_R_SIZE_MAX
7735 {"SC_GETPW_R_SIZE_MAX", _SC_GETPW_R_SIZE_MAX},
7736#endif
7737#ifdef _SC_ICACHE_ASSOC
7738 {"SC_ICACHE_ASSOC", _SC_ICACHE_ASSOC},
7739#endif
7740#ifdef _SC_ICACHE_BLKSZ
7741 {"SC_ICACHE_BLKSZ", _SC_ICACHE_BLKSZ},
7742#endif
7743#ifdef _SC_ICACHE_LINESZ
7744 {"SC_ICACHE_LINESZ", _SC_ICACHE_LINESZ},
7745#endif
7746#ifdef _SC_ICACHE_SZ
7747 {"SC_ICACHE_SZ", _SC_ICACHE_SZ},
7748#endif
Fred Draked86ed291999-12-15 15:34:33 +00007749#ifdef _SC_INF
7750 {"SC_INF", _SC_INF},
7751#endif
Fred Drakec9680921999-12-13 16:37:25 +00007752#ifdef _SC_INT_MAX
7753 {"SC_INT_MAX", _SC_INT_MAX},
7754#endif
7755#ifdef _SC_INT_MIN
7756 {"SC_INT_MIN", _SC_INT_MIN},
7757#endif
7758#ifdef _SC_IOV_MAX
7759 {"SC_IOV_MAX", _SC_IOV_MAX},
7760#endif
Fred Draked86ed291999-12-15 15:34:33 +00007761#ifdef _SC_IP_SECOPTS
7762 {"SC_IP_SECOPTS", _SC_IP_SECOPTS},
7763#endif
Fred Drakec9680921999-12-13 16:37:25 +00007764#ifdef _SC_JOB_CONTROL
7765 {"SC_JOB_CONTROL", _SC_JOB_CONTROL},
7766#endif
Fred Draked86ed291999-12-15 15:34:33 +00007767#ifdef _SC_KERN_POINTERS
7768 {"SC_KERN_POINTERS", _SC_KERN_POINTERS},
7769#endif
7770#ifdef _SC_KERN_SIM
7771 {"SC_KERN_SIM", _SC_KERN_SIM},
7772#endif
Fred Drakec9680921999-12-13 16:37:25 +00007773#ifdef _SC_LINE_MAX
7774 {"SC_LINE_MAX", _SC_LINE_MAX},
7775#endif
7776#ifdef _SC_LOGIN_NAME_MAX
7777 {"SC_LOGIN_NAME_MAX", _SC_LOGIN_NAME_MAX},
7778#endif
7779#ifdef _SC_LOGNAME_MAX
7780 {"SC_LOGNAME_MAX", _SC_LOGNAME_MAX},
7781#endif
7782#ifdef _SC_LONG_BIT
7783 {"SC_LONG_BIT", _SC_LONG_BIT},
7784#endif
Fred Draked86ed291999-12-15 15:34:33 +00007785#ifdef _SC_MAC
7786 {"SC_MAC", _SC_MAC},
7787#endif
Fred Drakec9680921999-12-13 16:37:25 +00007788#ifdef _SC_MAPPED_FILES
7789 {"SC_MAPPED_FILES", _SC_MAPPED_FILES},
7790#endif
7791#ifdef _SC_MAXPID
7792 {"SC_MAXPID", _SC_MAXPID},
7793#endif
7794#ifdef _SC_MB_LEN_MAX
7795 {"SC_MB_LEN_MAX", _SC_MB_LEN_MAX},
7796#endif
7797#ifdef _SC_MEMLOCK
7798 {"SC_MEMLOCK", _SC_MEMLOCK},
7799#endif
7800#ifdef _SC_MEMLOCK_RANGE
7801 {"SC_MEMLOCK_RANGE", _SC_MEMLOCK_RANGE},
7802#endif
7803#ifdef _SC_MEMORY_PROTECTION
7804 {"SC_MEMORY_PROTECTION", _SC_MEMORY_PROTECTION},
7805#endif
7806#ifdef _SC_MESSAGE_PASSING
7807 {"SC_MESSAGE_PASSING", _SC_MESSAGE_PASSING},
7808#endif
Fred Draked86ed291999-12-15 15:34:33 +00007809#ifdef _SC_MMAP_FIXED_ALIGNMENT
7810 {"SC_MMAP_FIXED_ALIGNMENT", _SC_MMAP_FIXED_ALIGNMENT},
7811#endif
Fred Drakec9680921999-12-13 16:37:25 +00007812#ifdef _SC_MQ_OPEN_MAX
7813 {"SC_MQ_OPEN_MAX", _SC_MQ_OPEN_MAX},
7814#endif
7815#ifdef _SC_MQ_PRIO_MAX
7816 {"SC_MQ_PRIO_MAX", _SC_MQ_PRIO_MAX},
7817#endif
Fred Draked86ed291999-12-15 15:34:33 +00007818#ifdef _SC_NACLS_MAX
7819 {"SC_NACLS_MAX", _SC_NACLS_MAX},
7820#endif
Fred Drakec9680921999-12-13 16:37:25 +00007821#ifdef _SC_NGROUPS_MAX
7822 {"SC_NGROUPS_MAX", _SC_NGROUPS_MAX},
7823#endif
7824#ifdef _SC_NL_ARGMAX
7825 {"SC_NL_ARGMAX", _SC_NL_ARGMAX},
7826#endif
7827#ifdef _SC_NL_LANGMAX
7828 {"SC_NL_LANGMAX", _SC_NL_LANGMAX},
7829#endif
7830#ifdef _SC_NL_MSGMAX
7831 {"SC_NL_MSGMAX", _SC_NL_MSGMAX},
7832#endif
7833#ifdef _SC_NL_NMAX
7834 {"SC_NL_NMAX", _SC_NL_NMAX},
7835#endif
7836#ifdef _SC_NL_SETMAX
7837 {"SC_NL_SETMAX", _SC_NL_SETMAX},
7838#endif
7839#ifdef _SC_NL_TEXTMAX
7840 {"SC_NL_TEXTMAX", _SC_NL_TEXTMAX},
7841#endif
7842#ifdef _SC_NPROCESSORS_CONF
7843 {"SC_NPROCESSORS_CONF", _SC_NPROCESSORS_CONF},
7844#endif
7845#ifdef _SC_NPROCESSORS_ONLN
7846 {"SC_NPROCESSORS_ONLN", _SC_NPROCESSORS_ONLN},
7847#endif
Fred Draked86ed291999-12-15 15:34:33 +00007848#ifdef _SC_NPROC_CONF
7849 {"SC_NPROC_CONF", _SC_NPROC_CONF},
7850#endif
7851#ifdef _SC_NPROC_ONLN
7852 {"SC_NPROC_ONLN", _SC_NPROC_ONLN},
7853#endif
Fred Drakec9680921999-12-13 16:37:25 +00007854#ifdef _SC_NZERO
7855 {"SC_NZERO", _SC_NZERO},
7856#endif
7857#ifdef _SC_OPEN_MAX
7858 {"SC_OPEN_MAX", _SC_OPEN_MAX},
7859#endif
7860#ifdef _SC_PAGESIZE
7861 {"SC_PAGESIZE", _SC_PAGESIZE},
7862#endif
7863#ifdef _SC_PAGE_SIZE
7864 {"SC_PAGE_SIZE", _SC_PAGE_SIZE},
7865#endif
7866#ifdef _SC_PASS_MAX
7867 {"SC_PASS_MAX", _SC_PASS_MAX},
7868#endif
7869#ifdef _SC_PHYS_PAGES
7870 {"SC_PHYS_PAGES", _SC_PHYS_PAGES},
7871#endif
7872#ifdef _SC_PII
7873 {"SC_PII", _SC_PII},
7874#endif
7875#ifdef _SC_PII_INTERNET
7876 {"SC_PII_INTERNET", _SC_PII_INTERNET},
7877#endif
7878#ifdef _SC_PII_INTERNET_DGRAM
7879 {"SC_PII_INTERNET_DGRAM", _SC_PII_INTERNET_DGRAM},
7880#endif
7881#ifdef _SC_PII_INTERNET_STREAM
7882 {"SC_PII_INTERNET_STREAM", _SC_PII_INTERNET_STREAM},
7883#endif
7884#ifdef _SC_PII_OSI
7885 {"SC_PII_OSI", _SC_PII_OSI},
7886#endif
7887#ifdef _SC_PII_OSI_CLTS
7888 {"SC_PII_OSI_CLTS", _SC_PII_OSI_CLTS},
7889#endif
7890#ifdef _SC_PII_OSI_COTS
7891 {"SC_PII_OSI_COTS", _SC_PII_OSI_COTS},
7892#endif
7893#ifdef _SC_PII_OSI_M
7894 {"SC_PII_OSI_M", _SC_PII_OSI_M},
7895#endif
7896#ifdef _SC_PII_SOCKET
7897 {"SC_PII_SOCKET", _SC_PII_SOCKET},
7898#endif
7899#ifdef _SC_PII_XTI
7900 {"SC_PII_XTI", _SC_PII_XTI},
7901#endif
7902#ifdef _SC_POLL
7903 {"SC_POLL", _SC_POLL},
7904#endif
7905#ifdef _SC_PRIORITIZED_IO
7906 {"SC_PRIORITIZED_IO", _SC_PRIORITIZED_IO},
7907#endif
7908#ifdef _SC_PRIORITY_SCHEDULING
7909 {"SC_PRIORITY_SCHEDULING", _SC_PRIORITY_SCHEDULING},
7910#endif
7911#ifdef _SC_REALTIME_SIGNALS
7912 {"SC_REALTIME_SIGNALS", _SC_REALTIME_SIGNALS},
7913#endif
7914#ifdef _SC_RE_DUP_MAX
7915 {"SC_RE_DUP_MAX", _SC_RE_DUP_MAX},
7916#endif
7917#ifdef _SC_RTSIG_MAX
7918 {"SC_RTSIG_MAX", _SC_RTSIG_MAX},
7919#endif
7920#ifdef _SC_SAVED_IDS
7921 {"SC_SAVED_IDS", _SC_SAVED_IDS},
7922#endif
7923#ifdef _SC_SCHAR_MAX
7924 {"SC_SCHAR_MAX", _SC_SCHAR_MAX},
7925#endif
7926#ifdef _SC_SCHAR_MIN
7927 {"SC_SCHAR_MIN", _SC_SCHAR_MIN},
7928#endif
7929#ifdef _SC_SELECT
7930 {"SC_SELECT", _SC_SELECT},
7931#endif
7932#ifdef _SC_SEMAPHORES
7933 {"SC_SEMAPHORES", _SC_SEMAPHORES},
7934#endif
7935#ifdef _SC_SEM_NSEMS_MAX
7936 {"SC_SEM_NSEMS_MAX", _SC_SEM_NSEMS_MAX},
7937#endif
7938#ifdef _SC_SEM_VALUE_MAX
7939 {"SC_SEM_VALUE_MAX", _SC_SEM_VALUE_MAX},
7940#endif
7941#ifdef _SC_SHARED_MEMORY_OBJECTS
7942 {"SC_SHARED_MEMORY_OBJECTS", _SC_SHARED_MEMORY_OBJECTS},
7943#endif
7944#ifdef _SC_SHRT_MAX
7945 {"SC_SHRT_MAX", _SC_SHRT_MAX},
7946#endif
7947#ifdef _SC_SHRT_MIN
7948 {"SC_SHRT_MIN", _SC_SHRT_MIN},
7949#endif
7950#ifdef _SC_SIGQUEUE_MAX
7951 {"SC_SIGQUEUE_MAX", _SC_SIGQUEUE_MAX},
7952#endif
7953#ifdef _SC_SIGRT_MAX
7954 {"SC_SIGRT_MAX", _SC_SIGRT_MAX},
7955#endif
7956#ifdef _SC_SIGRT_MIN
7957 {"SC_SIGRT_MIN", _SC_SIGRT_MIN},
7958#endif
Fred Draked86ed291999-12-15 15:34:33 +00007959#ifdef _SC_SOFTPOWER
7960 {"SC_SOFTPOWER", _SC_SOFTPOWER},
7961#endif
Fred Drakec9680921999-12-13 16:37:25 +00007962#ifdef _SC_SPLIT_CACHE
7963 {"SC_SPLIT_CACHE", _SC_SPLIT_CACHE},
7964#endif
7965#ifdef _SC_SSIZE_MAX
7966 {"SC_SSIZE_MAX", _SC_SSIZE_MAX},
7967#endif
7968#ifdef _SC_STACK_PROT
7969 {"SC_STACK_PROT", _SC_STACK_PROT},
7970#endif
7971#ifdef _SC_STREAM_MAX
7972 {"SC_STREAM_MAX", _SC_STREAM_MAX},
7973#endif
7974#ifdef _SC_SYNCHRONIZED_IO
7975 {"SC_SYNCHRONIZED_IO", _SC_SYNCHRONIZED_IO},
7976#endif
7977#ifdef _SC_THREADS
7978 {"SC_THREADS", _SC_THREADS},
7979#endif
7980#ifdef _SC_THREAD_ATTR_STACKADDR
7981 {"SC_THREAD_ATTR_STACKADDR", _SC_THREAD_ATTR_STACKADDR},
7982#endif
7983#ifdef _SC_THREAD_ATTR_STACKSIZE
7984 {"SC_THREAD_ATTR_STACKSIZE", _SC_THREAD_ATTR_STACKSIZE},
7985#endif
7986#ifdef _SC_THREAD_DESTRUCTOR_ITERATIONS
7987 {"SC_THREAD_DESTRUCTOR_ITERATIONS", _SC_THREAD_DESTRUCTOR_ITERATIONS},
7988#endif
7989#ifdef _SC_THREAD_KEYS_MAX
7990 {"SC_THREAD_KEYS_MAX", _SC_THREAD_KEYS_MAX},
7991#endif
7992#ifdef _SC_THREAD_PRIORITY_SCHEDULING
7993 {"SC_THREAD_PRIORITY_SCHEDULING", _SC_THREAD_PRIORITY_SCHEDULING},
7994#endif
7995#ifdef _SC_THREAD_PRIO_INHERIT
7996 {"SC_THREAD_PRIO_INHERIT", _SC_THREAD_PRIO_INHERIT},
7997#endif
7998#ifdef _SC_THREAD_PRIO_PROTECT
7999 {"SC_THREAD_PRIO_PROTECT", _SC_THREAD_PRIO_PROTECT},
8000#endif
8001#ifdef _SC_THREAD_PROCESS_SHARED
8002 {"SC_THREAD_PROCESS_SHARED", _SC_THREAD_PROCESS_SHARED},
8003#endif
8004#ifdef _SC_THREAD_SAFE_FUNCTIONS
8005 {"SC_THREAD_SAFE_FUNCTIONS", _SC_THREAD_SAFE_FUNCTIONS},
8006#endif
8007#ifdef _SC_THREAD_STACK_MIN
8008 {"SC_THREAD_STACK_MIN", _SC_THREAD_STACK_MIN},
8009#endif
8010#ifdef _SC_THREAD_THREADS_MAX
8011 {"SC_THREAD_THREADS_MAX", _SC_THREAD_THREADS_MAX},
8012#endif
8013#ifdef _SC_TIMERS
8014 {"SC_TIMERS", _SC_TIMERS},
8015#endif
8016#ifdef _SC_TIMER_MAX
8017 {"SC_TIMER_MAX", _SC_TIMER_MAX},
8018#endif
8019#ifdef _SC_TTY_NAME_MAX
8020 {"SC_TTY_NAME_MAX", _SC_TTY_NAME_MAX},
8021#endif
8022#ifdef _SC_TZNAME_MAX
8023 {"SC_TZNAME_MAX", _SC_TZNAME_MAX},
8024#endif
8025#ifdef _SC_T_IOV_MAX
8026 {"SC_T_IOV_MAX", _SC_T_IOV_MAX},
8027#endif
8028#ifdef _SC_UCHAR_MAX
8029 {"SC_UCHAR_MAX", _SC_UCHAR_MAX},
8030#endif
8031#ifdef _SC_UINT_MAX
8032 {"SC_UINT_MAX", _SC_UINT_MAX},
8033#endif
8034#ifdef _SC_UIO_MAXIOV
8035 {"SC_UIO_MAXIOV", _SC_UIO_MAXIOV},
8036#endif
8037#ifdef _SC_ULONG_MAX
8038 {"SC_ULONG_MAX", _SC_ULONG_MAX},
8039#endif
8040#ifdef _SC_USHRT_MAX
8041 {"SC_USHRT_MAX", _SC_USHRT_MAX},
8042#endif
8043#ifdef _SC_VERSION
8044 {"SC_VERSION", _SC_VERSION},
8045#endif
8046#ifdef _SC_WORD_BIT
8047 {"SC_WORD_BIT", _SC_WORD_BIT},
8048#endif
8049#ifdef _SC_XBS5_ILP32_OFF32
8050 {"SC_XBS5_ILP32_OFF32", _SC_XBS5_ILP32_OFF32},
8051#endif
8052#ifdef _SC_XBS5_ILP32_OFFBIG
8053 {"SC_XBS5_ILP32_OFFBIG", _SC_XBS5_ILP32_OFFBIG},
8054#endif
8055#ifdef _SC_XBS5_LP64_OFF64
8056 {"SC_XBS5_LP64_OFF64", _SC_XBS5_LP64_OFF64},
8057#endif
8058#ifdef _SC_XBS5_LPBIG_OFFBIG
8059 {"SC_XBS5_LPBIG_OFFBIG", _SC_XBS5_LPBIG_OFFBIG},
8060#endif
8061#ifdef _SC_XOPEN_CRYPT
8062 {"SC_XOPEN_CRYPT", _SC_XOPEN_CRYPT},
8063#endif
8064#ifdef _SC_XOPEN_ENH_I18N
8065 {"SC_XOPEN_ENH_I18N", _SC_XOPEN_ENH_I18N},
8066#endif
8067#ifdef _SC_XOPEN_LEGACY
8068 {"SC_XOPEN_LEGACY", _SC_XOPEN_LEGACY},
8069#endif
8070#ifdef _SC_XOPEN_REALTIME
8071 {"SC_XOPEN_REALTIME", _SC_XOPEN_REALTIME},
8072#endif
8073#ifdef _SC_XOPEN_REALTIME_THREADS
8074 {"SC_XOPEN_REALTIME_THREADS", _SC_XOPEN_REALTIME_THREADS},
8075#endif
8076#ifdef _SC_XOPEN_SHM
8077 {"SC_XOPEN_SHM", _SC_XOPEN_SHM},
8078#endif
8079#ifdef _SC_XOPEN_UNIX
8080 {"SC_XOPEN_UNIX", _SC_XOPEN_UNIX},
8081#endif
8082#ifdef _SC_XOPEN_VERSION
8083 {"SC_XOPEN_VERSION", _SC_XOPEN_VERSION},
8084#endif
8085#ifdef _SC_XOPEN_XCU_VERSION
8086 {"SC_XOPEN_XCU_VERSION", _SC_XOPEN_XCU_VERSION},
8087#endif
8088#ifdef _SC_XOPEN_XPG2
8089 {"SC_XOPEN_XPG2", _SC_XOPEN_XPG2},
8090#endif
8091#ifdef _SC_XOPEN_XPG3
8092 {"SC_XOPEN_XPG3", _SC_XOPEN_XPG3},
8093#endif
8094#ifdef _SC_XOPEN_XPG4
8095 {"SC_XOPEN_XPG4", _SC_XOPEN_XPG4},
8096#endif
8097};
8098
8099static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00008100conv_sysconf_confname(PyObject *arg, int *valuep)
Fred Drakec9680921999-12-13 16:37:25 +00008101{
8102 return conv_confname(arg, valuep, posix_constants_sysconf,
8103 sizeof(posix_constants_sysconf)
8104 / sizeof(struct constdef));
8105}
8106
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008107PyDoc_STRVAR(posix_sysconf__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00008108"sysconf(name) -> integer\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008109Return an integer-valued system configuration variable.");
Fred Drakec9680921999-12-13 16:37:25 +00008110
8111static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00008112posix_sysconf(PyObject *self, PyObject *args)
Fred Drakec9680921999-12-13 16:37:25 +00008113{
8114 PyObject *result = NULL;
8115 int name;
8116
8117 if (PyArg_ParseTuple(args, "O&:sysconf", conv_sysconf_confname, &name)) {
8118 int value;
8119
8120 errno = 0;
8121 value = sysconf(name);
8122 if (value == -1 && errno != 0)
8123 posix_error();
8124 else
8125 result = PyInt_FromLong(value);
8126 }
8127 return result;
8128}
8129#endif
8130
8131
Fred Drakebec628d1999-12-15 18:31:10 +00008132/* This code is used to ensure that the tables of configuration value names
8133 * are in sorted order as required by conv_confname(), and also to build the
8134 * the exported dictionaries that are used to publish information about the
8135 * names available on the host platform.
8136 *
8137 * Sorting the table at runtime ensures that the table is properly ordered
8138 * when used, even for platforms we're not able to test on. It also makes
8139 * it easier to add additional entries to the tables.
Fred Draked86ed291999-12-15 15:34:33 +00008140 */
Fred Drakebec628d1999-12-15 18:31:10 +00008141
8142static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00008143cmp_constdefs(const void *v1, const void *v2)
Fred Drakebec628d1999-12-15 18:31:10 +00008144{
8145 const struct constdef *c1 =
8146 (const struct constdef *) v1;
8147 const struct constdef *c2 =
8148 (const struct constdef *) v2;
8149
8150 return strcmp(c1->name, c2->name);
8151}
8152
8153static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00008154setup_confname_table(struct constdef *table, size_t tablesize,
Fred Drake4d1e64b2002-04-15 19:40:07 +00008155 char *tablename, PyObject *module)
Fred Draked86ed291999-12-15 15:34:33 +00008156{
Fred Drakebec628d1999-12-15 18:31:10 +00008157 PyObject *d = NULL;
Barry Warsaw3155db32000-04-13 15:20:40 +00008158 size_t i;
Fred Drakebec628d1999-12-15 18:31:10 +00008159
8160 qsort(table, tablesize, sizeof(struct constdef), cmp_constdefs);
8161 d = PyDict_New();
Barry Warsaw3155db32000-04-13 15:20:40 +00008162 if (d == NULL)
8163 return -1;
Fred Draked86ed291999-12-15 15:34:33 +00008164
Barry Warsaw3155db32000-04-13 15:20:40 +00008165 for (i=0; i < tablesize; ++i) {
8166 PyObject *o = PyInt_FromLong(table[i].value);
8167 if (o == NULL || PyDict_SetItemString(d, table[i].name, o) == -1) {
8168 Py_XDECREF(o);
8169 Py_DECREF(d);
8170 return -1;
Fred Draked86ed291999-12-15 15:34:33 +00008171 }
Barry Warsaw3155db32000-04-13 15:20:40 +00008172 Py_DECREF(o);
Fred Draked86ed291999-12-15 15:34:33 +00008173 }
Fred Drake4d1e64b2002-04-15 19:40:07 +00008174 return PyModule_AddObject(module, tablename, d);
Fred Draked86ed291999-12-15 15:34:33 +00008175}
8176
Fred Drakebec628d1999-12-15 18:31:10 +00008177/* Return -1 on failure, 0 on success. */
8178static int
Fred Drake4d1e64b2002-04-15 19:40:07 +00008179setup_confname_tables(PyObject *module)
Fred Draked86ed291999-12-15 15:34:33 +00008180{
8181#if defined(HAVE_FPATHCONF) || defined(HAVE_PATHCONF)
Fred Drakebec628d1999-12-15 18:31:10 +00008182 if (setup_confname_table(posix_constants_pathconf,
Fred Draked86ed291999-12-15 15:34:33 +00008183 sizeof(posix_constants_pathconf)
8184 / sizeof(struct constdef),
Fred Drake4d1e64b2002-04-15 19:40:07 +00008185 "pathconf_names", module))
Fred Drakebec628d1999-12-15 18:31:10 +00008186 return -1;
Fred Draked86ed291999-12-15 15:34:33 +00008187#endif
8188#ifdef HAVE_CONFSTR
Fred Drakebec628d1999-12-15 18:31:10 +00008189 if (setup_confname_table(posix_constants_confstr,
Fred Draked86ed291999-12-15 15:34:33 +00008190 sizeof(posix_constants_confstr)
8191 / sizeof(struct constdef),
Fred Drake4d1e64b2002-04-15 19:40:07 +00008192 "confstr_names", module))
Fred Drakebec628d1999-12-15 18:31:10 +00008193 return -1;
Fred Draked86ed291999-12-15 15:34:33 +00008194#endif
8195#ifdef HAVE_SYSCONF
Fred Drakebec628d1999-12-15 18:31:10 +00008196 if (setup_confname_table(posix_constants_sysconf,
Fred Draked86ed291999-12-15 15:34:33 +00008197 sizeof(posix_constants_sysconf)
8198 / sizeof(struct constdef),
Fred Drake4d1e64b2002-04-15 19:40:07 +00008199 "sysconf_names", module))
Fred Drakebec628d1999-12-15 18:31:10 +00008200 return -1;
Fred Draked86ed291999-12-15 15:34:33 +00008201#endif
Fred Drakebec628d1999-12-15 18:31:10 +00008202 return 0;
Fred Draked86ed291999-12-15 15:34:33 +00008203}
Fred Draked86ed291999-12-15 15:34:33 +00008204
8205
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008206PyDoc_STRVAR(posix_abort__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00008207"abort() -> does not return!\n\n\
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008208Abort the interpreter immediately. This 'dumps core' or otherwise fails\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008209in the hardest way possible on the hosting operating system.");
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008210
8211static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00008212posix_abort(PyObject *self, PyObject *noargs)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008213{
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008214 abort();
8215 /*NOTREACHED*/
8216 Py_FatalError("abort() called from Python code didn't abort!");
8217 return NULL;
8218}
Fred Drakebec628d1999-12-15 18:31:10 +00008219
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00008220#ifdef MS_WINDOWS
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008221PyDoc_STRVAR(win32_startfile__doc__,
Georg Brandlf4f44152006-02-18 22:29:33 +00008222"startfile(filepath [, operation]) - Start a file with its associated\n\
8223application.\n\
Tim Petersf58a7aa2000-09-22 10:05:54 +00008224\n\
Georg Brandlf4f44152006-02-18 22:29:33 +00008225When \"operation\" is not specified or \"open\", this acts like\n\
8226double-clicking the file in Explorer, or giving the file name as an\n\
8227argument to the DOS \"start\" command: the file is opened with whatever\n\
8228application (if any) its extension is associated.\n\
8229When another \"operation\" is given, it specifies what should be done with\n\
8230the file. A typical operation is \"print\".\n\
Tim Petersf58a7aa2000-09-22 10:05:54 +00008231\n\
8232startfile returns as soon as the associated application is launched.\n\
8233There is no option to wait for the application to close, and no way\n\
8234to retrieve the application's exit status.\n\
8235\n\
8236The filepath is relative to the current directory. If you want to use\n\
8237an absolute path, make sure the first character is not a slash (\"/\");\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008238the underlying Win32 ShellExecute function doesn't work if it is.");
Tim Petersf58a7aa2000-09-22 10:05:54 +00008239
8240static PyObject *
8241win32_startfile(PyObject *self, PyObject *args)
8242{
8243 char *filepath;
Georg Brandlf4f44152006-02-18 22:29:33 +00008244 char *operation = NULL;
Tim Petersf58a7aa2000-09-22 10:05:54 +00008245 HINSTANCE rc;
Georg Brandlad89dc82006-04-03 12:26:26 +00008246#ifdef Py_WIN_WIDE_FILENAMES
8247 if (unicode_file_names()) {
Martin v. Löwis5fe715f2006-04-03 23:01:24 +00008248 PyObject *unipath, *woperation = NULL;
Georg Brandlad89dc82006-04-03 12:26:26 +00008249 if (!PyArg_ParseTuple(args, "U|s:startfile",
8250 &unipath, &operation)) {
8251 PyErr_Clear();
8252 goto normal;
8253 }
8254
Martin v. Löwis5fe715f2006-04-03 23:01:24 +00008255
8256 if (operation) {
8257 woperation = PyUnicode_DecodeASCII(operation,
8258 strlen(operation), NULL);
8259 if (!woperation) {
8260 PyErr_Clear();
8261 operation = NULL;
8262 goto normal;
8263 }
Georg Brandlad89dc82006-04-03 12:26:26 +00008264 }
8265
8266 Py_BEGIN_ALLOW_THREADS
Martin v. Löwis5fe715f2006-04-03 23:01:24 +00008267 rc = ShellExecuteW((HWND)0, woperation ? PyUnicode_AS_UNICODE(woperation) : 0,
Georg Brandlad89dc82006-04-03 12:26:26 +00008268 PyUnicode_AS_UNICODE(unipath),
Georg Brandlad89dc82006-04-03 12:26:26 +00008269 NULL, NULL, SW_SHOWNORMAL);
8270 Py_END_ALLOW_THREADS
8271
Martin v. Löwis5fe715f2006-04-03 23:01:24 +00008272 Py_XDECREF(woperation);
Georg Brandlad89dc82006-04-03 12:26:26 +00008273 if (rc <= (HINSTANCE)32) {
8274 PyObject *errval = win32_error_unicode("startfile",
8275 PyUnicode_AS_UNICODE(unipath));
8276 return errval;
8277 }
8278 Py_INCREF(Py_None);
8279 return Py_None;
8280 }
8281#endif
8282
8283normal:
Georg Brandlf4f44152006-02-18 22:29:33 +00008284 if (!PyArg_ParseTuple(args, "et|s:startfile",
8285 Py_FileSystemDefaultEncoding, &filepath,
8286 &operation))
Tim Petersf58a7aa2000-09-22 10:05:54 +00008287 return NULL;
8288 Py_BEGIN_ALLOW_THREADS
Georg Brandlf4f44152006-02-18 22:29:33 +00008289 rc = ShellExecute((HWND)0, operation, filepath,
8290 NULL, NULL, SW_SHOWNORMAL);
Tim Petersf58a7aa2000-09-22 10:05:54 +00008291 Py_END_ALLOW_THREADS
Georg Brandle9f8ec92005-09-25 06:16:40 +00008292 if (rc <= (HINSTANCE)32) {
8293 PyObject *errval = win32_error("startfile", filepath);
8294 PyMem_Free(filepath);
8295 return errval;
8296 }
8297 PyMem_Free(filepath);
Tim Petersf58a7aa2000-09-22 10:05:54 +00008298 Py_INCREF(Py_None);
8299 return Py_None;
8300}
8301#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008302
Martin v. Löwis438b5342002-12-27 10:16:42 +00008303#ifdef HAVE_GETLOADAVG
8304PyDoc_STRVAR(posix_getloadavg__doc__,
8305"getloadavg() -> (float, float, float)\n\n\
8306Return the number of processes in the system run queue averaged over\n\
8307the last 1, 5, and 15 minutes or raises OSError if the load average\n\
8308was unobtainable");
8309
8310static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00008311posix_getloadavg(PyObject *self, PyObject *noargs)
Martin v. Löwis438b5342002-12-27 10:16:42 +00008312{
8313 double loadavg[3];
Martin v. Löwis438b5342002-12-27 10:16:42 +00008314 if (getloadavg(loadavg, 3)!=3) {
8315 PyErr_SetString(PyExc_OSError, "Load averages are unobtainable");
8316 return NULL;
8317 } else
8318 return Py_BuildValue("ddd", loadavg[0], loadavg[1], loadavg[2]);
8319}
8320#endif
8321
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008322#ifdef MS_WINDOWS
8323
8324PyDoc_STRVAR(win32_urandom__doc__,
8325"urandom(n) -> str\n\n\
8326Return a string of n random bytes suitable for cryptographic use.");
8327
8328typedef BOOL (WINAPI *CRYPTACQUIRECONTEXTA)(HCRYPTPROV *phProv,\
8329 LPCSTR pszContainer, LPCSTR pszProvider, DWORD dwProvType,\
8330 DWORD dwFlags );
8331typedef BOOL (WINAPI *CRYPTGENRANDOM)(HCRYPTPROV hProv, DWORD dwLen,\
8332 BYTE *pbBuffer );
8333
8334static CRYPTGENRANDOM pCryptGenRandom = NULL;
Martin v. Löwisaf699dd2007-09-04 09:51:57 +00008335/* This handle is never explicitly released. Instead, the operating
8336 system will release it when the process terminates. */
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008337static HCRYPTPROV hCryptProv = 0;
8338
Tim Peters4ad82172004-08-30 17:02:04 +00008339static PyObject*
8340win32_urandom(PyObject *self, PyObject *args)
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008341{
Tim Petersd3115382004-08-30 17:36:46 +00008342 int howMany;
8343 PyObject* result;
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008344
Tim Peters4ad82172004-08-30 17:02:04 +00008345 /* Read arguments */
Tim Peters9b279a82004-08-30 17:10:53 +00008346 if (! PyArg_ParseTuple(args, "i:urandom", &howMany))
Tim Peters4ad82172004-08-30 17:02:04 +00008347 return NULL;
Tim Peters51eba612004-08-30 17:08:02 +00008348 if (howMany < 0)
8349 return PyErr_Format(PyExc_ValueError,
8350 "negative argument not allowed");
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008351
Tim Peters4ad82172004-08-30 17:02:04 +00008352 if (hCryptProv == 0) {
8353 HINSTANCE hAdvAPI32 = NULL;
8354 CRYPTACQUIRECONTEXTA pCryptAcquireContext = NULL;
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008355
Tim Peters4ad82172004-08-30 17:02:04 +00008356 /* Obtain handle to the DLL containing CryptoAPI
8357 This should not fail */
8358 hAdvAPI32 = GetModuleHandle("advapi32.dll");
8359 if(hAdvAPI32 == NULL)
8360 return win32_error("GetModuleHandle", NULL);
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008361
Tim Peters4ad82172004-08-30 17:02:04 +00008362 /* Obtain pointers to the CryptoAPI functions
8363 This will fail on some early versions of Win95 */
8364 pCryptAcquireContext = (CRYPTACQUIRECONTEXTA)GetProcAddress(
8365 hAdvAPI32,
8366 "CryptAcquireContextA");
8367 if (pCryptAcquireContext == NULL)
8368 return PyErr_Format(PyExc_NotImplementedError,
8369 "CryptAcquireContextA not found");
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008370
Tim Peters4ad82172004-08-30 17:02:04 +00008371 pCryptGenRandom = (CRYPTGENRANDOM)GetProcAddress(
8372 hAdvAPI32, "CryptGenRandom");
Georg Brandl74bb7832006-09-06 06:03:59 +00008373 if (pCryptGenRandom == NULL)
Tim Peters4ad82172004-08-30 17:02:04 +00008374 return PyErr_Format(PyExc_NotImplementedError,
8375 "CryptGenRandom not found");
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008376
Tim Peters4ad82172004-08-30 17:02:04 +00008377 /* Acquire context */
8378 if (! pCryptAcquireContext(&hCryptProv, NULL, NULL,
8379 PROV_RSA_FULL, CRYPT_VERIFYCONTEXT))
8380 return win32_error("CryptAcquireContext", NULL);
8381 }
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008382
Tim Peters4ad82172004-08-30 17:02:04 +00008383 /* Allocate bytes */
Gregory P. Smithdd96db62008-06-09 04:58:54 +00008384 result = PyString_FromStringAndSize(NULL, howMany);
Tim Petersd3115382004-08-30 17:36:46 +00008385 if (result != NULL) {
8386 /* Get random data */
Amaury Forgeot d'Arc74bd40d2008-07-21 21:06:46 +00008387 memset(PyString_AS_STRING(result), 0, howMany); /* zero seed */
Tim Petersd3115382004-08-30 17:36:46 +00008388 if (! pCryptGenRandom(hCryptProv, howMany, (unsigned char*)
Gregory P. Smithdd96db62008-06-09 04:58:54 +00008389 PyString_AS_STRING(result))) {
Tim Petersd3115382004-08-30 17:36:46 +00008390 Py_DECREF(result);
8391 return win32_error("CryptGenRandom", NULL);
8392 }
Tim Peters4ad82172004-08-30 17:02:04 +00008393 }
Tim Petersd3115382004-08-30 17:36:46 +00008394 return result;
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008395}
8396#endif
Martin v. Löwis438b5342002-12-27 10:16:42 +00008397
Neal Norwitz2a30cd02006-07-10 01:18:57 +00008398#ifdef __VMS
8399/* Use openssl random routine */
8400#include <openssl/rand.h>
8401PyDoc_STRVAR(vms_urandom__doc__,
8402"urandom(n) -> str\n\n\
8403Return a string of n random bytes suitable for cryptographic use.");
8404
8405static PyObject*
8406vms_urandom(PyObject *self, PyObject *args)
8407{
8408 int howMany;
8409 PyObject* result;
8410
8411 /* Read arguments */
8412 if (! PyArg_ParseTuple(args, "i:urandom", &howMany))
8413 return NULL;
8414 if (howMany < 0)
8415 return PyErr_Format(PyExc_ValueError,
8416 "negative argument not allowed");
8417
8418 /* Allocate bytes */
Gregory P. Smithdd96db62008-06-09 04:58:54 +00008419 result = PyString_FromStringAndSize(NULL, howMany);
Neal Norwitz2a30cd02006-07-10 01:18:57 +00008420 if (result != NULL) {
8421 /* Get random data */
8422 if (RAND_pseudo_bytes((unsigned char*)
Gregory P. Smithdd96db62008-06-09 04:58:54 +00008423 PyString_AS_STRING(result),
Neal Norwitz2a30cd02006-07-10 01:18:57 +00008424 howMany) < 0) {
8425 Py_DECREF(result);
8426 return PyErr_Format(PyExc_ValueError,
8427 "RAND_pseudo_bytes");
8428 }
8429 }
8430 return result;
8431}
8432#endif
8433
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008434static PyMethodDef posix_methods[] = {
8435 {"access", posix_access, METH_VARARGS, posix_access__doc__},
8436#ifdef HAVE_TTYNAME
8437 {"ttyname", posix_ttyname, METH_VARARGS, posix_ttyname__doc__},
8438#endif
8439 {"chdir", posix_chdir, METH_VARARGS, posix_chdir__doc__},
Martin v. Löwis382abef2007-02-19 10:55:19 +00008440#ifdef HAVE_CHFLAGS
8441 {"chflags", posix_chflags, METH_VARARGS, posix_chflags__doc__},
8442#endif /* HAVE_CHFLAGS */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008443 {"chmod", posix_chmod, METH_VARARGS, posix_chmod__doc__},
Christian Heimes36281872007-11-30 21:11:28 +00008444#ifdef HAVE_FCHMOD
8445 {"fchmod", posix_fchmod, METH_VARARGS, posix_fchmod__doc__},
8446#endif /* HAVE_FCHMOD */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008447#ifdef HAVE_CHOWN
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008448 {"chown", posix_chown, METH_VARARGS, posix_chown__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008449#endif /* HAVE_CHOWN */
Christian Heimes36281872007-11-30 21:11:28 +00008450#ifdef HAVE_LCHMOD
8451 {"lchmod", posix_lchmod, METH_VARARGS, posix_lchmod__doc__},
8452#endif /* HAVE_LCHMOD */
8453#ifdef HAVE_FCHOWN
8454 {"fchown", posix_fchown, METH_VARARGS, posix_fchown__doc__},
8455#endif /* HAVE_FCHOWN */
Martin v. Löwis382abef2007-02-19 10:55:19 +00008456#ifdef HAVE_LCHFLAGS
8457 {"lchflags", posix_lchflags, METH_VARARGS, posix_lchflags__doc__},
8458#endif /* HAVE_LCHFLAGS */
Martin v. Löwis0cec0ff2002-07-28 16:33:45 +00008459#ifdef HAVE_LCHOWN
8460 {"lchown", posix_lchown, METH_VARARGS, posix_lchown__doc__},
8461#endif /* HAVE_LCHOWN */
Martin v. Löwis244edc82001-10-04 22:44:26 +00008462#ifdef HAVE_CHROOT
8463 {"chroot", posix_chroot, METH_VARARGS, posix_chroot__doc__},
8464#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008465#ifdef HAVE_CTERMID
Neal Norwitze241ce82003-02-17 18:17:05 +00008466 {"ctermid", posix_ctermid, METH_NOARGS, posix_ctermid__doc__},
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008467#endif
Guido van Rossum36bc6801995-06-14 22:54:23 +00008468#ifdef HAVE_GETCWD
Neal Norwitze241ce82003-02-17 18:17:05 +00008469 {"getcwd", posix_getcwd, METH_NOARGS, posix_getcwd__doc__},
Walter Dörwald3b918c32002-11-21 20:18:46 +00008470#ifdef Py_USING_UNICODE
Neal Norwitze241ce82003-02-17 18:17:05 +00008471 {"getcwdu", posix_getcwdu, METH_NOARGS, posix_getcwdu__doc__},
Guido van Rossum36bc6801995-06-14 22:54:23 +00008472#endif
Walter Dörwald3b918c32002-11-21 20:18:46 +00008473#endif
Guido van Rossumb6775db1994-08-01 11:34:53 +00008474#ifdef HAVE_LINK
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008475 {"link", posix_link, METH_VARARGS, posix_link__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008476#endif /* HAVE_LINK */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008477 {"listdir", posix_listdir, METH_VARARGS, posix_listdir__doc__},
8478 {"lstat", posix_lstat, METH_VARARGS, posix_lstat__doc__},
8479 {"mkdir", posix_mkdir, METH_VARARGS, posix_mkdir__doc__},
Guido van Rossumb6775db1994-08-01 11:34:53 +00008480#ifdef HAVE_NICE
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008481 {"nice", posix_nice, METH_VARARGS, posix_nice__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008482#endif /* HAVE_NICE */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008483#ifdef HAVE_READLINK
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008484 {"readlink", posix_readlink, METH_VARARGS, posix_readlink__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008485#endif /* HAVE_READLINK */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008486 {"rename", posix_rename, METH_VARARGS, posix_rename__doc__},
8487 {"rmdir", posix_rmdir, METH_VARARGS, posix_rmdir__doc__},
8488 {"stat", posix_stat, METH_VARARGS, posix_stat__doc__},
Martin v. Löwisf607bda2002-10-16 18:27:39 +00008489 {"stat_float_times", stat_float_times, METH_VARARGS, stat_float_times__doc__},
Guido van Rossumb6775db1994-08-01 11:34:53 +00008490#ifdef HAVE_SYMLINK
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008491 {"symlink", posix_symlink, METH_VARARGS, posix_symlink__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008492#endif /* HAVE_SYMLINK */
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008493#ifdef HAVE_SYSTEM
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008494 {"system", posix_system, METH_VARARGS, posix_system__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008495#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008496 {"umask", posix_umask, METH_VARARGS, posix_umask__doc__},
Guido van Rossumb6775db1994-08-01 11:34:53 +00008497#ifdef HAVE_UNAME
Neal Norwitze241ce82003-02-17 18:17:05 +00008498 {"uname", posix_uname, METH_NOARGS, posix_uname__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008499#endif /* HAVE_UNAME */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008500 {"unlink", posix_unlink, METH_VARARGS, posix_unlink__doc__},
8501 {"remove", posix_unlink, METH_VARARGS, posix_remove__doc__},
8502 {"utime", posix_utime, METH_VARARGS, posix_utime__doc__},
Guido van Rossumb6775db1994-08-01 11:34:53 +00008503#ifdef HAVE_TIMES
Neal Norwitze241ce82003-02-17 18:17:05 +00008504 {"times", posix_times, METH_NOARGS, posix_times__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008505#endif /* HAVE_TIMES */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008506 {"_exit", posix__exit, METH_VARARGS, posix__exit__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008507#ifdef HAVE_EXECV
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008508 {"execv", posix_execv, METH_VARARGS, posix_execv__doc__},
8509 {"execve", posix_execve, METH_VARARGS, posix_execve__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008510#endif /* HAVE_EXECV */
Guido van Rossuma1065681999-01-25 23:20:23 +00008511#ifdef HAVE_SPAWNV
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008512 {"spawnv", posix_spawnv, METH_VARARGS, posix_spawnv__doc__},
8513 {"spawnve", posix_spawnve, METH_VARARGS, posix_spawnve__doc__},
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00008514#if defined(PYOS_OS2)
8515 {"spawnvp", posix_spawnvp, METH_VARARGS, posix_spawnvp__doc__},
8516 {"spawnvpe", posix_spawnvpe, METH_VARARGS, posix_spawnvpe__doc__},
8517#endif /* PYOS_OS2 */
Guido van Rossuma1065681999-01-25 23:20:23 +00008518#endif /* HAVE_SPAWNV */
Guido van Rossum2242f2f2001-04-11 20:58:20 +00008519#ifdef HAVE_FORK1
Neal Norwitze241ce82003-02-17 18:17:05 +00008520 {"fork1", posix_fork1, METH_NOARGS, posix_fork1__doc__},
Guido van Rossum2242f2f2001-04-11 20:58:20 +00008521#endif /* HAVE_FORK1 */
Guido van Rossumad0ee831995-03-01 10:34:45 +00008522#ifdef HAVE_FORK
Neal Norwitze241ce82003-02-17 18:17:05 +00008523 {"fork", posix_fork, METH_NOARGS, posix_fork__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008524#endif /* HAVE_FORK */
Martin v. Löwis24a880b2002-12-31 12:55:15 +00008525#if defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX)
Neal Norwitze241ce82003-02-17 18:17:05 +00008526 {"openpty", posix_openpty, METH_NOARGS, posix_openpty__doc__},
Martin v. Löwis24a880b2002-12-31 12:55:15 +00008527#endif /* HAVE_OPENPTY || HAVE__GETPTY || HAVE_DEV_PTMX */
Fred Drake8cef4cf2000-06-28 16:40:38 +00008528#ifdef HAVE_FORKPTY
Neal Norwitze241ce82003-02-17 18:17:05 +00008529 {"forkpty", posix_forkpty, METH_NOARGS, posix_forkpty__doc__},
Fred Drake8cef4cf2000-06-28 16:40:38 +00008530#endif /* HAVE_FORKPTY */
Guido van Rossumad0ee831995-03-01 10:34:45 +00008531#ifdef HAVE_GETEGID
Neal Norwitze241ce82003-02-17 18:17:05 +00008532 {"getegid", posix_getegid, METH_NOARGS, posix_getegid__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008533#endif /* HAVE_GETEGID */
8534#ifdef HAVE_GETEUID
Neal Norwitze241ce82003-02-17 18:17:05 +00008535 {"geteuid", posix_geteuid, METH_NOARGS, posix_geteuid__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008536#endif /* HAVE_GETEUID */
8537#ifdef HAVE_GETGID
Neal Norwitze241ce82003-02-17 18:17:05 +00008538 {"getgid", posix_getgid, METH_NOARGS, posix_getgid__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008539#endif /* HAVE_GETGID */
Fred Drakec9680921999-12-13 16:37:25 +00008540#ifdef HAVE_GETGROUPS
Neal Norwitze241ce82003-02-17 18:17:05 +00008541 {"getgroups", posix_getgroups, METH_NOARGS, posix_getgroups__doc__},
Fred Drakec9680921999-12-13 16:37:25 +00008542#endif
Neal Norwitze241ce82003-02-17 18:17:05 +00008543 {"getpid", posix_getpid, METH_NOARGS, posix_getpid__doc__},
Guido van Rossumb6775db1994-08-01 11:34:53 +00008544#ifdef HAVE_GETPGRP
Neal Norwitze241ce82003-02-17 18:17:05 +00008545 {"getpgrp", posix_getpgrp, METH_NOARGS, posix_getpgrp__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008546#endif /* HAVE_GETPGRP */
Guido van Rossumad0ee831995-03-01 10:34:45 +00008547#ifdef HAVE_GETPPID
Neal Norwitze241ce82003-02-17 18:17:05 +00008548 {"getppid", posix_getppid, METH_NOARGS, posix_getppid__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008549#endif /* HAVE_GETPPID */
8550#ifdef HAVE_GETUID
Neal Norwitze241ce82003-02-17 18:17:05 +00008551 {"getuid", posix_getuid, METH_NOARGS, posix_getuid__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008552#endif /* HAVE_GETUID */
Fred Drake12c6e2d1999-12-14 21:25:03 +00008553#ifdef HAVE_GETLOGIN
Neal Norwitze241ce82003-02-17 18:17:05 +00008554 {"getlogin", posix_getlogin, METH_NOARGS, posix_getlogin__doc__},
Fred Drake12c6e2d1999-12-14 21:25:03 +00008555#endif
Guido van Rossumad0ee831995-03-01 10:34:45 +00008556#ifdef HAVE_KILL
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008557 {"kill", posix_kill, METH_VARARGS, posix_kill__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008558#endif /* HAVE_KILL */
Martin v. Löwisb2c92f42002-02-16 23:35:41 +00008559#ifdef HAVE_KILLPG
8560 {"killpg", posix_killpg, METH_VARARGS, posix_killpg__doc__},
8561#endif /* HAVE_KILLPG */
Guido van Rossumc0125471996-06-28 18:55:32 +00008562#ifdef HAVE_PLOCK
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008563 {"plock", posix_plock, METH_VARARGS, posix_plock__doc__},
Guido van Rossumc0125471996-06-28 18:55:32 +00008564#endif /* HAVE_PLOCK */
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008565#ifdef HAVE_POPEN
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008566 {"popen", posix_popen, METH_VARARGS, posix_popen__doc__},
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00008567#ifdef MS_WINDOWS
Fredrik Lundhffb9c772000-07-09 14:49:51 +00008568 {"popen2", win32_popen2, METH_VARARGS},
8569 {"popen3", win32_popen3, METH_VARARGS},
8570 {"popen4", win32_popen4, METH_VARARGS},
Tim Petersf58a7aa2000-09-22 10:05:54 +00008571 {"startfile", win32_startfile, METH_VARARGS, win32_startfile__doc__},
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00008572#else
8573#if defined(PYOS_OS2) && defined(PYCC_GCC)
8574 {"popen2", os2emx_popen2, METH_VARARGS},
8575 {"popen3", os2emx_popen3, METH_VARARGS},
8576 {"popen4", os2emx_popen4, METH_VARARGS},
8577#endif
Fredrik Lundhffb9c772000-07-09 14:49:51 +00008578#endif
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008579#endif /* HAVE_POPEN */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008580#ifdef HAVE_SETUID
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008581 {"setuid", posix_setuid, METH_VARARGS, posix_setuid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008582#endif /* HAVE_SETUID */
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00008583#ifdef HAVE_SETEUID
8584 {"seteuid", posix_seteuid, METH_VARARGS, posix_seteuid__doc__},
8585#endif /* HAVE_SETEUID */
8586#ifdef HAVE_SETEGID
8587 {"setegid", posix_setegid, METH_VARARGS, posix_setegid__doc__},
8588#endif /* HAVE_SETEGID */
8589#ifdef HAVE_SETREUID
8590 {"setreuid", posix_setreuid, METH_VARARGS, posix_setreuid__doc__},
8591#endif /* HAVE_SETREUID */
8592#ifdef HAVE_SETREGID
8593 {"setregid", posix_setregid, METH_VARARGS, posix_setregid__doc__},
8594#endif /* HAVE_SETREGID */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008595#ifdef HAVE_SETGID
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008596 {"setgid", posix_setgid, METH_VARARGS, posix_setgid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008597#endif /* HAVE_SETGID */
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00008598#ifdef HAVE_SETGROUPS
Georg Brandl96a8c392006-05-29 21:04:52 +00008599 {"setgroups", posix_setgroups, METH_O, posix_setgroups__doc__},
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00008600#endif /* HAVE_SETGROUPS */
Martin v. Löwis606edc12002-06-13 21:09:11 +00008601#ifdef HAVE_GETPGID
8602 {"getpgid", posix_getpgid, METH_VARARGS, posix_getpgid__doc__},
8603#endif /* HAVE_GETPGID */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008604#ifdef HAVE_SETPGRP
Neal Norwitze241ce82003-02-17 18:17:05 +00008605 {"setpgrp", posix_setpgrp, METH_NOARGS, posix_setpgrp__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008606#endif /* HAVE_SETPGRP */
Guido van Rossumad0ee831995-03-01 10:34:45 +00008607#ifdef HAVE_WAIT
Neal Norwitze241ce82003-02-17 18:17:05 +00008608 {"wait", posix_wait, METH_NOARGS, posix_wait__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008609#endif /* HAVE_WAIT */
Neal Norwitz05a45592006-03-20 06:30:08 +00008610#ifdef HAVE_WAIT3
8611 {"wait3", posix_wait3, METH_VARARGS, posix_wait3__doc__},
8612#endif /* HAVE_WAIT3 */
8613#ifdef HAVE_WAIT4
8614 {"wait4", posix_wait4, METH_VARARGS, posix_wait4__doc__},
8615#endif /* HAVE_WAIT4 */
Tim Petersab034fa2002-02-01 11:27:43 +00008616#if defined(HAVE_WAITPID) || defined(HAVE_CWAIT)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008617 {"waitpid", posix_waitpid, METH_VARARGS, posix_waitpid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008618#endif /* HAVE_WAITPID */
Martin v. Löwis49ee14d2003-11-10 06:35:36 +00008619#ifdef HAVE_GETSID
8620 {"getsid", posix_getsid, METH_VARARGS, posix_getsid__doc__},
8621#endif /* HAVE_GETSID */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008622#ifdef HAVE_SETSID
Neal Norwitze241ce82003-02-17 18:17:05 +00008623 {"setsid", posix_setsid, METH_NOARGS, posix_setsid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008624#endif /* HAVE_SETSID */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008625#ifdef HAVE_SETPGID
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008626 {"setpgid", posix_setpgid, METH_VARARGS, posix_setpgid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008627#endif /* HAVE_SETPGID */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008628#ifdef HAVE_TCGETPGRP
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008629 {"tcgetpgrp", posix_tcgetpgrp, METH_VARARGS, posix_tcgetpgrp__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008630#endif /* HAVE_TCGETPGRP */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008631#ifdef HAVE_TCSETPGRP
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008632 {"tcsetpgrp", posix_tcsetpgrp, METH_VARARGS, posix_tcsetpgrp__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008633#endif /* HAVE_TCSETPGRP */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008634 {"open", posix_open, METH_VARARGS, posix_open__doc__},
8635 {"close", posix_close, METH_VARARGS, posix_close__doc__},
Georg Brandl309501a2008-01-19 20:22:13 +00008636 {"closerange", posix_closerange, METH_VARARGS, posix_closerange__doc__},
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008637 {"dup", posix_dup, METH_VARARGS, posix_dup__doc__},
8638 {"dup2", posix_dup2, METH_VARARGS, posix_dup2__doc__},
8639 {"lseek", posix_lseek, METH_VARARGS, posix_lseek__doc__},
8640 {"read", posix_read, METH_VARARGS, posix_read__doc__},
8641 {"write", posix_write, METH_VARARGS, posix_write__doc__},
8642 {"fstat", posix_fstat, METH_VARARGS, posix_fstat__doc__},
8643 {"fdopen", posix_fdopen, METH_VARARGS, posix_fdopen__doc__},
Skip Montanaro1517d842000-07-19 14:34:14 +00008644 {"isatty", posix_isatty, METH_VARARGS, posix_isatty__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008645#ifdef HAVE_PIPE
Neal Norwitze241ce82003-02-17 18:17:05 +00008646 {"pipe", posix_pipe, METH_NOARGS, posix_pipe__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008647#endif
8648#ifdef HAVE_MKFIFO
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008649 {"mkfifo", posix_mkfifo, METH_VARARGS, posix_mkfifo__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008650#endif
Neal Norwitz11690112002-07-30 01:08:28 +00008651#if defined(HAVE_MKNOD) && defined(HAVE_MAKEDEV)
Martin v. Löwis06a83e92002-04-14 10:19:44 +00008652 {"mknod", posix_mknod, METH_VARARGS, posix_mknod__doc__},
8653#endif
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00008654#ifdef HAVE_DEVICE_MACROS
8655 {"major", posix_major, METH_VARARGS, posix_major__doc__},
8656 {"minor", posix_minor, METH_VARARGS, posix_minor__doc__},
8657 {"makedev", posix_makedev, METH_VARARGS, posix_makedev__doc__},
8658#endif
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008659#ifdef HAVE_FTRUNCATE
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008660 {"ftruncate", posix_ftruncate, METH_VARARGS, posix_ftruncate__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008661#endif
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00008662#ifdef HAVE_PUTENV
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008663 {"putenv", posix_putenv, METH_VARARGS, posix_putenv__doc__},
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00008664#endif
Guido van Rossumc524d952001-10-19 01:31:59 +00008665#ifdef HAVE_UNSETENV
8666 {"unsetenv", posix_unsetenv, METH_VARARGS, posix_unsetenv__doc__},
8667#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008668 {"strerror", posix_strerror, METH_VARARGS, posix_strerror__doc__},
Fred Drake4d1e64b2002-04-15 19:40:07 +00008669#ifdef HAVE_FCHDIR
8670 {"fchdir", posix_fchdir, METH_O, posix_fchdir__doc__},
8671#endif
Guido van Rossum21142a01999-01-08 21:05:37 +00008672#ifdef HAVE_FSYNC
Fred Drake4d1e64b2002-04-15 19:40:07 +00008673 {"fsync", posix_fsync, METH_O, posix_fsync__doc__},
Guido van Rossum21142a01999-01-08 21:05:37 +00008674#endif
8675#ifdef HAVE_FDATASYNC
Fred Drake4d1e64b2002-04-15 19:40:07 +00008676 {"fdatasync", posix_fdatasync, METH_O, posix_fdatasync__doc__},
Guido van Rossum21142a01999-01-08 21:05:37 +00008677#endif
Guido van Rossumc9641791998-08-04 15:26:23 +00008678#ifdef HAVE_SYS_WAIT_H
Fred Drake106c1a02002-04-23 15:58:02 +00008679#ifdef WCOREDUMP
8680 {"WCOREDUMP", posix_WCOREDUMP, METH_VARARGS, posix_WCOREDUMP__doc__},
8681#endif /* WCOREDUMP */
Martin v. Löwis2b41b0d2002-05-04 13:13:41 +00008682#ifdef WIFCONTINUED
8683 {"WIFCONTINUED",posix_WIFCONTINUED, METH_VARARGS, posix_WIFCONTINUED__doc__},
8684#endif /* WIFCONTINUED */
Guido van Rossumc9641791998-08-04 15:26:23 +00008685#ifdef WIFSTOPPED
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008686 {"WIFSTOPPED", posix_WIFSTOPPED, METH_VARARGS, posix_WIFSTOPPED__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008687#endif /* WIFSTOPPED */
8688#ifdef WIFSIGNALED
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008689 {"WIFSIGNALED", posix_WIFSIGNALED, METH_VARARGS, posix_WIFSIGNALED__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008690#endif /* WIFSIGNALED */
8691#ifdef WIFEXITED
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008692 {"WIFEXITED", posix_WIFEXITED, METH_VARARGS, posix_WIFEXITED__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008693#endif /* WIFEXITED */
8694#ifdef WEXITSTATUS
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008695 {"WEXITSTATUS", posix_WEXITSTATUS, METH_VARARGS, posix_WEXITSTATUS__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008696#endif /* WEXITSTATUS */
8697#ifdef WTERMSIG
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008698 {"WTERMSIG", posix_WTERMSIG, METH_VARARGS, posix_WTERMSIG__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008699#endif /* WTERMSIG */
8700#ifdef WSTOPSIG
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008701 {"WSTOPSIG", posix_WSTOPSIG, METH_VARARGS, posix_WSTOPSIG__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008702#endif /* WSTOPSIG */
8703#endif /* HAVE_SYS_WAIT_H */
Martin v. Löwis5f5d99c2006-05-16 07:05:37 +00008704#if defined(HAVE_FSTATVFS) && defined(HAVE_SYS_STATVFS_H)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008705 {"fstatvfs", posix_fstatvfs, METH_VARARGS, posix_fstatvfs__doc__},
Guido van Rossum94f6f721999-01-06 18:42:14 +00008706#endif
Martin v. Löwis5f5d99c2006-05-16 07:05:37 +00008707#if defined(HAVE_STATVFS) && defined(HAVE_SYS_STATVFS_H)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008708 {"statvfs", posix_statvfs, METH_VARARGS, posix_statvfs__doc__},
Guido van Rossum94f6f721999-01-06 18:42:14 +00008709#endif
Guido van Rossume2ad6332001-01-08 17:51:55 +00008710#ifdef HAVE_TMPFILE
Neal Norwitze241ce82003-02-17 18:17:05 +00008711 {"tmpfile", posix_tmpfile, METH_NOARGS, posix_tmpfile__doc__},
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008712#endif
8713#ifdef HAVE_TEMPNAM
8714 {"tempnam", posix_tempnam, METH_VARARGS, posix_tempnam__doc__},
8715#endif
8716#ifdef HAVE_TMPNAM
Neal Norwitze241ce82003-02-17 18:17:05 +00008717 {"tmpnam", posix_tmpnam, METH_NOARGS, posix_tmpnam__doc__},
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008718#endif
Fred Drakec9680921999-12-13 16:37:25 +00008719#ifdef HAVE_CONFSTR
8720 {"confstr", posix_confstr, METH_VARARGS, posix_confstr__doc__},
8721#endif
8722#ifdef HAVE_SYSCONF
8723 {"sysconf", posix_sysconf, METH_VARARGS, posix_sysconf__doc__},
8724#endif
8725#ifdef HAVE_FPATHCONF
8726 {"fpathconf", posix_fpathconf, METH_VARARGS, posix_fpathconf__doc__},
8727#endif
8728#ifdef HAVE_PATHCONF
8729 {"pathconf", posix_pathconf, METH_VARARGS, posix_pathconf__doc__},
8730#endif
Neal Norwitze241ce82003-02-17 18:17:05 +00008731 {"abort", posix_abort, METH_NOARGS, posix_abort__doc__},
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00008732#ifdef MS_WINDOWS
Mark Hammondef8b6542001-05-13 08:04:26 +00008733 {"_getfullpathname", posix__getfullpathname, METH_VARARGS, NULL},
8734#endif
Martin v. Löwis438b5342002-12-27 10:16:42 +00008735#ifdef HAVE_GETLOADAVG
Neal Norwitze241ce82003-02-17 18:17:05 +00008736 {"getloadavg", posix_getloadavg, METH_NOARGS, posix_getloadavg__doc__},
Martin v. Löwis438b5342002-12-27 10:16:42 +00008737#endif
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008738 #ifdef MS_WINDOWS
8739 {"urandom", win32_urandom, METH_VARARGS, win32_urandom__doc__},
8740 #endif
Neal Norwitz2a30cd02006-07-10 01:18:57 +00008741 #ifdef __VMS
8742 {"urandom", vms_urandom, METH_VARARGS, vms_urandom__doc__},
8743 #endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00008744 {NULL, NULL} /* Sentinel */
8745};
8746
8747
Barry Warsaw4a342091996-12-19 23:50:02 +00008748static int
Fred Drake4d1e64b2002-04-15 19:40:07 +00008749ins(PyObject *module, char *symbol, long value)
Barry Warsaw4a342091996-12-19 23:50:02 +00008750{
Fred Drake4d1e64b2002-04-15 19:40:07 +00008751 return PyModule_AddIntConstant(module, symbol, value);
Barry Warsaw4a342091996-12-19 23:50:02 +00008752}
8753
Guido van Rossumd48f2521997-12-05 22:19:34 +00008754#if defined(PYOS_OS2)
8755/* Insert Platform-Specific Constant Values (Strings & Numbers) of Common Use */
Fred Drake4d1e64b2002-04-15 19:40:07 +00008756static int insertvalues(PyObject *module)
Guido van Rossumd48f2521997-12-05 22:19:34 +00008757{
8758 APIRET rc;
8759 ULONG values[QSV_MAX+1];
8760 PyObject *v;
Marc-André Lemburgd4c0a9c2001-11-28 11:47:00 +00008761 char *ver, tmp[50];
Guido van Rossumd48f2521997-12-05 22:19:34 +00008762
8763 Py_BEGIN_ALLOW_THREADS
Andrew MacIntyre75e01452003-04-21 14:19:51 +00008764 rc = DosQuerySysInfo(1L, QSV_MAX, &values[1], sizeof(ULONG) * QSV_MAX);
Guido van Rossumd48f2521997-12-05 22:19:34 +00008765 Py_END_ALLOW_THREADS
8766
8767 if (rc != NO_ERROR) {
8768 os2_error(rc);
8769 return -1;
8770 }
8771
Fred Drake4d1e64b2002-04-15 19:40:07 +00008772 if (ins(module, "meminstalled", values[QSV_TOTPHYSMEM])) return -1;
8773 if (ins(module, "memkernel", values[QSV_TOTRESMEM])) return -1;
8774 if (ins(module, "memvirtual", values[QSV_TOTAVAILMEM])) return -1;
8775 if (ins(module, "maxpathlen", values[QSV_MAX_PATH_LENGTH])) return -1;
8776 if (ins(module, "maxnamelen", values[QSV_MAX_COMP_LENGTH])) return -1;
8777 if (ins(module, "revision", values[QSV_VERSION_REVISION])) return -1;
8778 if (ins(module, "timeslice", values[QSV_MIN_SLICE])) return -1;
Guido van Rossumd48f2521997-12-05 22:19:34 +00008779
8780 switch (values[QSV_VERSION_MINOR]) {
8781 case 0: ver = "2.00"; break;
8782 case 10: ver = "2.10"; break;
8783 case 11: ver = "2.11"; break;
8784 case 30: ver = "3.00"; break;
8785 case 40: ver = "4.00"; break;
8786 case 50: ver = "5.00"; break;
8787 default:
Tim Peters885d4572001-11-28 20:27:42 +00008788 PyOS_snprintf(tmp, sizeof(tmp),
8789 "%d-%d", values[QSV_VERSION_MAJOR],
8790 values[QSV_VERSION_MINOR]);
Guido van Rossumd48f2521997-12-05 22:19:34 +00008791 ver = &tmp[0];
8792 }
8793
8794 /* Add Indicator of the Version of the Operating System */
Fred Drake4d1e64b2002-04-15 19:40:07 +00008795 if (PyModule_AddStringConstant(module, "version", tmp) < 0)
Guido van Rossumd48f2521997-12-05 22:19:34 +00008796 return -1;
Guido van Rossumd48f2521997-12-05 22:19:34 +00008797
8798 /* Add Indicator of Which Drive was Used to Boot the System */
8799 tmp[0] = 'A' + values[QSV_BOOT_DRIVE] - 1;
8800 tmp[1] = ':';
8801 tmp[2] = '\0';
8802
Fred Drake4d1e64b2002-04-15 19:40:07 +00008803 return PyModule_AddStringConstant(module, "bootdrive", tmp);
Guido van Rossumd48f2521997-12-05 22:19:34 +00008804}
8805#endif
8806
Barry Warsaw4a342091996-12-19 23:50:02 +00008807static int
Thomas Woutersf3f33dc2000-07-21 06:00:07 +00008808all_ins(PyObject *d)
Barry Warsaw4a342091996-12-19 23:50:02 +00008809{
Guido van Rossum94f6f721999-01-06 18:42:14 +00008810#ifdef F_OK
8811 if (ins(d, "F_OK", (long)F_OK)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00008812#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00008813#ifdef R_OK
8814 if (ins(d, "R_OK", (long)R_OK)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00008815#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00008816#ifdef W_OK
8817 if (ins(d, "W_OK", (long)W_OK)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00008818#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00008819#ifdef X_OK
8820 if (ins(d, "X_OK", (long)X_OK)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00008821#endif
Fred Drakec9680921999-12-13 16:37:25 +00008822#ifdef NGROUPS_MAX
8823 if (ins(d, "NGROUPS_MAX", (long)NGROUPS_MAX)) return -1;
8824#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008825#ifdef TMP_MAX
8826 if (ins(d, "TMP_MAX", (long)TMP_MAX)) return -1;
8827#endif
Fred Drake106c1a02002-04-23 15:58:02 +00008828#ifdef WCONTINUED
8829 if (ins(d, "WCONTINUED", (long)WCONTINUED)) return -1;
8830#endif
Barry Warsaw4a342091996-12-19 23:50:02 +00008831#ifdef WNOHANG
8832 if (ins(d, "WNOHANG", (long)WNOHANG)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00008833#endif
Fred Drake106c1a02002-04-23 15:58:02 +00008834#ifdef WUNTRACED
8835 if (ins(d, "WUNTRACED", (long)WUNTRACED)) return -1;
8836#endif
Barry Warsaw4a342091996-12-19 23:50:02 +00008837#ifdef O_RDONLY
8838 if (ins(d, "O_RDONLY", (long)O_RDONLY)) return -1;
8839#endif
8840#ifdef O_WRONLY
8841 if (ins(d, "O_WRONLY", (long)O_WRONLY)) return -1;
8842#endif
8843#ifdef O_RDWR
8844 if (ins(d, "O_RDWR", (long)O_RDWR)) return -1;
8845#endif
8846#ifdef O_NDELAY
8847 if (ins(d, "O_NDELAY", (long)O_NDELAY)) return -1;
8848#endif
8849#ifdef O_NONBLOCK
8850 if (ins(d, "O_NONBLOCK", (long)O_NONBLOCK)) return -1;
8851#endif
8852#ifdef O_APPEND
8853 if (ins(d, "O_APPEND", (long)O_APPEND)) return -1;
8854#endif
8855#ifdef O_DSYNC
8856 if (ins(d, "O_DSYNC", (long)O_DSYNC)) return -1;
8857#endif
8858#ifdef O_RSYNC
8859 if (ins(d, "O_RSYNC", (long)O_RSYNC)) return -1;
8860#endif
8861#ifdef O_SYNC
8862 if (ins(d, "O_SYNC", (long)O_SYNC)) return -1;
8863#endif
8864#ifdef O_NOCTTY
8865 if (ins(d, "O_NOCTTY", (long)O_NOCTTY)) return -1;
8866#endif
8867#ifdef O_CREAT
8868 if (ins(d, "O_CREAT", (long)O_CREAT)) return -1;
8869#endif
8870#ifdef O_EXCL
8871 if (ins(d, "O_EXCL", (long)O_EXCL)) return -1;
8872#endif
8873#ifdef O_TRUNC
8874 if (ins(d, "O_TRUNC", (long)O_TRUNC)) return -1;
8875#endif
Guido van Rossum98d9d091997-08-08 21:48:51 +00008876#ifdef O_BINARY
8877 if (ins(d, "O_BINARY", (long)O_BINARY)) return -1;
8878#endif
8879#ifdef O_TEXT
8880 if (ins(d, "O_TEXT", (long)O_TEXT)) return -1;
8881#endif
Martin v. Löwis4fe3c272001-10-18 22:05:36 +00008882#ifdef O_LARGEFILE
8883 if (ins(d, "O_LARGEFILE", (long)O_LARGEFILE)) return -1;
8884#endif
Skip Montanaro5ff14922005-05-16 02:42:22 +00008885#ifdef O_SHLOCK
8886 if (ins(d, "O_SHLOCK", (long)O_SHLOCK)) return -1;
8887#endif
8888#ifdef O_EXLOCK
8889 if (ins(d, "O_EXLOCK", (long)O_EXLOCK)) return -1;
8890#endif
Martin v. Löwis4fe3c272001-10-18 22:05:36 +00008891
Tim Peters5aa91602002-01-30 05:46:57 +00008892/* MS Windows */
8893#ifdef O_NOINHERIT
8894 /* Don't inherit in child processes. */
8895 if (ins(d, "O_NOINHERIT", (long)O_NOINHERIT)) return -1;
8896#endif
8897#ifdef _O_SHORT_LIVED
8898 /* Optimize for short life (keep in memory). */
8899 /* MS forgot to define this one with a non-underscore form too. */
8900 if (ins(d, "O_SHORT_LIVED", (long)_O_SHORT_LIVED)) return -1;
8901#endif
8902#ifdef O_TEMPORARY
8903 /* Automatically delete when last handle is closed. */
8904 if (ins(d, "O_TEMPORARY", (long)O_TEMPORARY)) return -1;
8905#endif
8906#ifdef O_RANDOM
8907 /* Optimize for random access. */
8908 if (ins(d, "O_RANDOM", (long)O_RANDOM)) return -1;
8909#endif
8910#ifdef O_SEQUENTIAL
8911 /* Optimize for sequential access. */
8912 if (ins(d, "O_SEQUENTIAL", (long)O_SEQUENTIAL)) return -1;
8913#endif
8914
Martin v. Löwis4fe3c272001-10-18 22:05:36 +00008915/* GNU extensions. */
Georg Brandl5049a852008-05-16 13:10:15 +00008916#ifdef O_ASYNC
8917 /* Send a SIGIO signal whenever input or output
8918 becomes available on file descriptor */
8919 if (ins(d, "O_ASYNC", (long)O_ASYNC)) return -1;
8920#endif
Martin v. Löwis4fe3c272001-10-18 22:05:36 +00008921#ifdef O_DIRECT
8922 /* Direct disk access. */
8923 if (ins(d, "O_DIRECT", (long)O_DIRECT)) return -1;
8924#endif
8925#ifdef O_DIRECTORY
8926 /* Must be a directory. */
8927 if (ins(d, "O_DIRECTORY", (long)O_DIRECTORY)) return -1;
8928#endif
8929#ifdef O_NOFOLLOW
8930 /* Do not follow links. */
8931 if (ins(d, "O_NOFOLLOW", (long)O_NOFOLLOW)) return -1;
8932#endif
Georg Brandlb67da6e2007-11-24 13:56:09 +00008933#ifdef O_NOATIME
8934 /* Do not update the access time. */
8935 if (ins(d, "O_NOATIME", (long)O_NOATIME)) return -1;
8936#endif
Guido van Rossumd48f2521997-12-05 22:19:34 +00008937
Barry Warsaw5676bd12003-01-07 20:57:09 +00008938 /* These come from sysexits.h */
8939#ifdef EX_OK
8940 if (ins(d, "EX_OK", (long)EX_OK)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008941#endif /* EX_OK */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008942#ifdef EX_USAGE
8943 if (ins(d, "EX_USAGE", (long)EX_USAGE)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008944#endif /* EX_USAGE */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008945#ifdef EX_DATAERR
8946 if (ins(d, "EX_DATAERR", (long)EX_DATAERR)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008947#endif /* EX_DATAERR */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008948#ifdef EX_NOINPUT
8949 if (ins(d, "EX_NOINPUT", (long)EX_NOINPUT)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008950#endif /* EX_NOINPUT */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008951#ifdef EX_NOUSER
8952 if (ins(d, "EX_NOUSER", (long)EX_NOUSER)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008953#endif /* EX_NOUSER */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008954#ifdef EX_NOHOST
8955 if (ins(d, "EX_NOHOST", (long)EX_NOHOST)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008956#endif /* EX_NOHOST */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008957#ifdef EX_UNAVAILABLE
8958 if (ins(d, "EX_UNAVAILABLE", (long)EX_UNAVAILABLE)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008959#endif /* EX_UNAVAILABLE */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008960#ifdef EX_SOFTWARE
8961 if (ins(d, "EX_SOFTWARE", (long)EX_SOFTWARE)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008962#endif /* EX_SOFTWARE */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008963#ifdef EX_OSERR
8964 if (ins(d, "EX_OSERR", (long)EX_OSERR)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008965#endif /* EX_OSERR */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008966#ifdef EX_OSFILE
8967 if (ins(d, "EX_OSFILE", (long)EX_OSFILE)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008968#endif /* EX_OSFILE */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008969#ifdef EX_CANTCREAT
8970 if (ins(d, "EX_CANTCREAT", (long)EX_CANTCREAT)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008971#endif /* EX_CANTCREAT */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008972#ifdef EX_IOERR
8973 if (ins(d, "EX_IOERR", (long)EX_IOERR)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008974#endif /* EX_IOERR */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008975#ifdef EX_TEMPFAIL
8976 if (ins(d, "EX_TEMPFAIL", (long)EX_TEMPFAIL)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008977#endif /* EX_TEMPFAIL */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008978#ifdef EX_PROTOCOL
8979 if (ins(d, "EX_PROTOCOL", (long)EX_PROTOCOL)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008980#endif /* EX_PROTOCOL */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008981#ifdef EX_NOPERM
8982 if (ins(d, "EX_NOPERM", (long)EX_NOPERM)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008983#endif /* EX_NOPERM */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008984#ifdef EX_CONFIG
8985 if (ins(d, "EX_CONFIG", (long)EX_CONFIG)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008986#endif /* EX_CONFIG */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008987#ifdef EX_NOTFOUND
8988 if (ins(d, "EX_NOTFOUND", (long)EX_NOTFOUND)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008989#endif /* EX_NOTFOUND */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008990
Guido van Rossum246bc171999-02-01 23:54:31 +00008991#ifdef HAVE_SPAWNV
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00008992#if defined(PYOS_OS2) && defined(PYCC_GCC)
8993 if (ins(d, "P_WAIT", (long)P_WAIT)) return -1;
8994 if (ins(d, "P_NOWAIT", (long)P_NOWAIT)) return -1;
8995 if (ins(d, "P_OVERLAY", (long)P_OVERLAY)) return -1;
8996 if (ins(d, "P_DEBUG", (long)P_DEBUG)) return -1;
8997 if (ins(d, "P_SESSION", (long)P_SESSION)) return -1;
8998 if (ins(d, "P_DETACH", (long)P_DETACH)) return -1;
8999 if (ins(d, "P_PM", (long)P_PM)) return -1;
9000 if (ins(d, "P_DEFAULT", (long)P_DEFAULT)) return -1;
9001 if (ins(d, "P_MINIMIZE", (long)P_MINIMIZE)) return -1;
9002 if (ins(d, "P_MAXIMIZE", (long)P_MAXIMIZE)) return -1;
9003 if (ins(d, "P_FULLSCREEN", (long)P_FULLSCREEN)) return -1;
9004 if (ins(d, "P_WINDOWED", (long)P_WINDOWED)) return -1;
9005 if (ins(d, "P_FOREGROUND", (long)P_FOREGROUND)) return -1;
9006 if (ins(d, "P_BACKGROUND", (long)P_BACKGROUND)) return -1;
9007 if (ins(d, "P_NOCLOSE", (long)P_NOCLOSE)) return -1;
9008 if (ins(d, "P_NOSESSION", (long)P_NOSESSION)) return -1;
9009 if (ins(d, "P_QUOTE", (long)P_QUOTE)) return -1;
9010 if (ins(d, "P_TILDE", (long)P_TILDE)) return -1;
9011 if (ins(d, "P_UNRELATED", (long)P_UNRELATED)) return -1;
9012 if (ins(d, "P_DEBUGDESC", (long)P_DEBUGDESC)) return -1;
9013#else
Guido van Rossum7d385291999-02-16 19:38:04 +00009014 if (ins(d, "P_WAIT", (long)_P_WAIT)) return -1;
9015 if (ins(d, "P_NOWAIT", (long)_P_NOWAIT)) return -1;
9016 if (ins(d, "P_OVERLAY", (long)_OLD_P_OVERLAY)) return -1;
9017 if (ins(d, "P_NOWAITO", (long)_P_NOWAITO)) return -1;
9018 if (ins(d, "P_DETACH", (long)_P_DETACH)) return -1;
Guido van Rossum246bc171999-02-01 23:54:31 +00009019#endif
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00009020#endif
Guido van Rossum246bc171999-02-01 23:54:31 +00009021
Guido van Rossumd48f2521997-12-05 22:19:34 +00009022#if defined(PYOS_OS2)
9023 if (insertvalues(d)) return -1;
9024#endif
Barry Warsaw4a342091996-12-19 23:50:02 +00009025 return 0;
9026}
9027
9028
Tim Peters5aa91602002-01-30 05:46:57 +00009029#if (defined(_MSC_VER) || defined(__WATCOMC__) || defined(__BORLANDC__)) && !defined(__QNX__)
Guido van Rossum0cb96de1997-10-01 04:29:29 +00009030#define INITFUNC initnt
9031#define MODNAME "nt"
Tim Peters58e0a8c2001-05-14 22:32:33 +00009032
9033#elif defined(PYOS_OS2)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00009034#define INITFUNC initos2
9035#define MODNAME "os2"
Tim Peters58e0a8c2001-05-14 22:32:33 +00009036
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00009037#else
Guido van Rossum0cb96de1997-10-01 04:29:29 +00009038#define INITFUNC initposix
9039#define MODNAME "posix"
9040#endif
9041
Mark Hammondfe51c6d2002-08-02 02:27:13 +00009042PyMODINIT_FUNC
Thomas Woutersf3f33dc2000-07-21 06:00:07 +00009043INITFUNC(void)
Guido van Rossumb6775db1994-08-01 11:34:53 +00009044{
Fred Drake4d1e64b2002-04-15 19:40:07 +00009045 PyObject *m, *v;
Tim Peters5aa91602002-01-30 05:46:57 +00009046
Fred Drake4d1e64b2002-04-15 19:40:07 +00009047 m = Py_InitModule3(MODNAME,
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00009048 posix_methods,
Fred Drake4d1e64b2002-04-15 19:40:07 +00009049 posix__doc__);
Neal Norwitz1ac754f2006-01-19 06:09:39 +00009050 if (m == NULL)
9051 return;
Tim Peters5aa91602002-01-30 05:46:57 +00009052
Guido van Rossum0cb96de1997-10-01 04:29:29 +00009053 /* Initialize environ dictionary */
Guido van Rossumb6775db1994-08-01 11:34:53 +00009054 v = convertenviron();
Fred Drake4d1e64b2002-04-15 19:40:07 +00009055 Py_XINCREF(v);
9056 if (v == NULL || PyModule_AddObject(m, "environ", v) != 0)
Guido van Rossum0cb96de1997-10-01 04:29:29 +00009057 return;
Barry Warsaw53699e91996-12-10 23:23:01 +00009058 Py_DECREF(v);
Fred Drakec9680921999-12-13 16:37:25 +00009059
Fred Drake4d1e64b2002-04-15 19:40:07 +00009060 if (all_ins(m))
Barry Warsaw4a342091996-12-19 23:50:02 +00009061 return;
9062
Fred Drake4d1e64b2002-04-15 19:40:07 +00009063 if (setup_confname_tables(m))
Fred Drakebec628d1999-12-15 18:31:10 +00009064 return;
9065
Fred Drake4d1e64b2002-04-15 19:40:07 +00009066 Py_INCREF(PyExc_OSError);
9067 PyModule_AddObject(m, "error", PyExc_OSError);
Fred Drake762e2061999-08-26 17:23:54 +00009068
Guido van Rossumb3d39562000-01-31 18:41:26 +00009069#ifdef HAVE_PUTENV
Neil Schemenauer19030a02001-01-16 04:27:47 +00009070 if (posix_putenv_garbage == NULL)
9071 posix_putenv_garbage = PyDict_New();
Guido van Rossumb3d39562000-01-31 18:41:26 +00009072#endif
Guido van Rossum98bf58f2001-10-18 20:34:25 +00009073
Martin v. Löwis19ab6c92006-04-16 18:55:50 +00009074 if (!initialized) {
9075 stat_result_desc.name = MODNAME ".stat_result";
9076 stat_result_desc.fields[7].name = PyStructSequence_UnnamedField;
9077 stat_result_desc.fields[8].name = PyStructSequence_UnnamedField;
9078 stat_result_desc.fields[9].name = PyStructSequence_UnnamedField;
9079 PyStructSequence_InitType(&StatResultType, &stat_result_desc);
9080 structseq_new = StatResultType.tp_new;
9081 StatResultType.tp_new = statresult_new;
9082
9083 statvfs_result_desc.name = MODNAME ".statvfs_result";
9084 PyStructSequence_InitType(&StatVFSResultType, &statvfs_result_desc);
Martin v. Löwis03824e42008-12-29 18:17:34 +00009085#ifdef NEED_TICKS_PER_SECOND
9086# if defined(HAVE_SYSCONF) && defined(_SC_CLK_TCK)
9087 ticks_per_second = sysconf(_SC_CLK_TCK);
9088# elif defined(HZ)
9089 ticks_per_second = HZ;
9090# else
9091 ticks_per_second = 60; /* magic fallback value; may be bogus */
9092# endif
9093#endif
Martin v. Löwis19ab6c92006-04-16 18:55:50 +00009094 }
Fred Drake4d1e64b2002-04-15 19:40:07 +00009095 Py_INCREF((PyObject*) &StatResultType);
9096 PyModule_AddObject(m, "stat_result", (PyObject*) &StatResultType);
Fred Drake4d1e64b2002-04-15 19:40:07 +00009097 Py_INCREF((PyObject*) &StatVFSResultType);
9098 PyModule_AddObject(m, "statvfs_result",
9099 (PyObject*) &StatVFSResultType);
Martin v. Löwis19ab6c92006-04-16 18:55:50 +00009100 initialized = 1;
Ronald Oussorend06b6f22006-04-23 11:59:25 +00009101
9102#ifdef __APPLE__
9103 /*
9104 * Step 2 of weak-linking support on Mac OS X.
9105 *
9106 * The code below removes functions that are not available on the
9107 * currently active platform.
9108 *
9109 * This block allow one to use a python binary that was build on
9110 * OSX 10.4 on OSX 10.3, without loosing access to new APIs on
9111 * OSX 10.4.
9112 */
9113#ifdef HAVE_FSTATVFS
9114 if (fstatvfs == NULL) {
9115 if (PyObject_DelAttrString(m, "fstatvfs") == -1) {
9116 return;
9117 }
9118 }
9119#endif /* HAVE_FSTATVFS */
9120
9121#ifdef HAVE_STATVFS
9122 if (statvfs == NULL) {
9123 if (PyObject_DelAttrString(m, "statvfs") == -1) {
9124 return;
9125 }
9126 }
9127#endif /* HAVE_STATVFS */
9128
9129# ifdef HAVE_LCHOWN
9130 if (lchown == NULL) {
9131 if (PyObject_DelAttrString(m, "lchown") == -1) {
9132 return;
9133 }
9134 }
9135#endif /* HAVE_LCHOWN */
9136
9137
9138#endif /* __APPLE__ */
9139
Guido van Rossumb6775db1994-08-01 11:34:53 +00009140}
Anthony Baxterac6bd462006-04-13 02:06:09 +00009141
9142#ifdef __cplusplus
9143}
9144#endif
9145
Martin v. Löwis18aaa562006-10-15 08:43:33 +00009146