blob: 79c3a4437d1e89b02c3a684c67d47076d50a0170 [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
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000346/* Return a dictionary corresponding to the POSIX environment table */
Jack Jansenea0c3822002-08-01 21:57:49 +0000347#ifdef WITH_NEXT_FRAMEWORK
348/* On Darwin/MacOSX a shared library or framework has no access to
349** environ directly, we must obtain it with _NSGetEnviron().
350*/
351#include <crt_externs.h>
352static char **environ;
353#elif !defined(_MSC_VER) && ( !defined(__WATCOMC__) || defined(__QNX__) )
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000354extern char **environ;
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000355#endif /* !_MSC_VER */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000356
Barry Warsaw53699e91996-12-10 23:23:01 +0000357static PyObject *
Thomas Woutersf3f33dc2000-07-21 06:00:07 +0000358convertenviron(void)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000359{
Barry Warsaw53699e91996-12-10 23:23:01 +0000360 PyObject *d;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000361 char **e;
Barry Warsaw53699e91996-12-10 23:23:01 +0000362 d = PyDict_New();
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000363 if (d == NULL)
364 return NULL;
Jack Jansenea0c3822002-08-01 21:57:49 +0000365#ifdef WITH_NEXT_FRAMEWORK
366 if (environ == NULL)
367 environ = *_NSGetEnviron();
368#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000369 if (environ == NULL)
370 return d;
Guido van Rossum6a619f41999-08-03 19:41:10 +0000371 /* This part ignores errors */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000372 for (e = environ; *e != NULL; e++) {
Guido van Rossum6a619f41999-08-03 19:41:10 +0000373 PyObject *k;
Barry Warsaw53699e91996-12-10 23:23:01 +0000374 PyObject *v;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000375 char *p = strchr(*e, '=');
376 if (p == NULL)
377 continue;
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000378 k = PyString_FromStringAndSize(*e, (int)(p-*e));
Guido van Rossum6a619f41999-08-03 19:41:10 +0000379 if (k == NULL) {
380 PyErr_Clear();
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000381 continue;
Guido van Rossum6a619f41999-08-03 19:41:10 +0000382 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000383 v = PyString_FromString(p+1);
Guido van Rossum6a619f41999-08-03 19:41:10 +0000384 if (v == NULL) {
385 PyErr_Clear();
386 Py_DECREF(k);
387 continue;
388 }
389 if (PyDict_GetItem(d, k) == NULL) {
390 if (PyDict_SetItem(d, k, v) != 0)
391 PyErr_Clear();
392 }
393 Py_DECREF(k);
Barry Warsaw53699e91996-12-10 23:23:01 +0000394 Py_DECREF(v);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000395 }
Martin v. Löwisc16f3bd2003-05-03 09:14:54 +0000396#if defined(PYOS_OS2)
Guido van Rossumd48f2521997-12-05 22:19:34 +0000397 {
398 APIRET rc;
399 char buffer[1024]; /* OS/2 Provides a Documented Max of 1024 Chars */
400
401 rc = DosQueryExtLIBPATH(buffer, BEGIN_LIBPATH);
Fredrik Lundhff7df9d2000-07-08 22:48:53 +0000402 if (rc == NO_ERROR) { /* (not a type, envname is NOT 'BEGIN_LIBPATH') */
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000403 PyObject *v = PyString_FromString(buffer);
Guido van Rossumd48f2521997-12-05 22:19:34 +0000404 PyDict_SetItemString(d, "BEGINLIBPATH", v);
405 Py_DECREF(v);
406 }
407 rc = DosQueryExtLIBPATH(buffer, END_LIBPATH);
408 if (rc == NO_ERROR) { /* (not a typo, envname is NOT 'END_LIBPATH') */
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000409 PyObject *v = PyString_FromString(buffer);
Guido van Rossumd48f2521997-12-05 22:19:34 +0000410 PyDict_SetItemString(d, "ENDLIBPATH", v);
411 Py_DECREF(v);
412 }
413 }
414#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000415 return d;
416}
417
418
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000419/* Set a POSIX-specific error from errno, and return NULL */
420
Barry Warsawd58d7641998-07-23 16:14:40 +0000421static PyObject *
Thomas Woutersf3f33dc2000-07-21 06:00:07 +0000422posix_error(void)
Guido van Rossumad0ee831995-03-01 10:34:45 +0000423{
Barry Warsawca74da41999-02-09 19:31:45 +0000424 return PyErr_SetFromErrno(PyExc_OSError);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000425}
Barry Warsawd58d7641998-07-23 16:14:40 +0000426static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +0000427posix_error_with_filename(char* name)
Barry Warsawd58d7641998-07-23 16:14:40 +0000428{
Barry Warsawca74da41999-02-09 19:31:45 +0000429 return PyErr_SetFromErrnoWithFilename(PyExc_OSError, name);
Barry Warsawd58d7641998-07-23 16:14:40 +0000430}
431
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000432#ifdef Py_WIN_WIDE_FILENAMES
433static PyObject *
434posix_error_with_unicode_filename(Py_UNICODE* name)
435{
436 return PyErr_SetFromErrnoWithUnicodeFilename(PyExc_OSError, name);
437}
438#endif /* Py_WIN_WIDE_FILENAMES */
439
440
Mark Hammondef8b6542001-05-13 08:04:26 +0000441static PyObject *
442posix_error_with_allocated_filename(char* name)
443{
444 PyObject *rc = PyErr_SetFromErrnoWithFilename(PyExc_OSError, name);
445 PyMem_Free(name);
446 return rc;
447}
448
Martin v. Löwis6238d2b2002-06-30 15:26:10 +0000449#ifdef MS_WINDOWS
Fredrik Lundhffb9c772000-07-09 14:49:51 +0000450static PyObject *
451win32_error(char* function, char* filename)
452{
Mark Hammond33a6da92000-08-15 00:46:38 +0000453 /* XXX We should pass the function name along in the future.
454 (_winreg.c also wants to pass the function name.)
Tim Peters5aa91602002-01-30 05:46:57 +0000455 This would however require an additional param to the
Mark Hammond33a6da92000-08-15 00:46:38 +0000456 Windows error object, which is non-trivial.
457 */
Fredrik Lundhffb9c772000-07-09 14:49:51 +0000458 errno = GetLastError();
459 if (filename)
Mark Hammond33a6da92000-08-15 00:46:38 +0000460 return PyErr_SetFromWindowsErrWithFilename(errno, filename);
Fredrik Lundhffb9c772000-07-09 14:49:51 +0000461 else
Mark Hammond33a6da92000-08-15 00:46:38 +0000462 return PyErr_SetFromWindowsErr(errno);
Fredrik Lundhffb9c772000-07-09 14:49:51 +0000463}
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000464
465#ifdef Py_WIN_WIDE_FILENAMES
466static PyObject *
467win32_error_unicode(char* function, Py_UNICODE* filename)
468{
469 /* XXX - see win32_error for comments on 'function' */
470 errno = GetLastError();
471 if (filename)
472 return PyErr_SetFromWindowsErrWithUnicodeFilename(errno, filename);
473 else
474 return PyErr_SetFromWindowsErr(errno);
475}
476
477static PyObject *_PyUnicode_FromFileSystemEncodedObject(register PyObject *obj)
478{
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000479}
480
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000481static int
Hirokazu Yamamotoa0fdd722008-08-17 09:19:52 +0000482convert_to_unicode(PyObject **param)
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000483{
Hirokazu Yamamotoa0fdd722008-08-17 09:19:52 +0000484 if (PyUnicode_CheckExact(*param))
485 Py_INCREF(*param);
486 else if (PyUnicode_Check(*param))
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000487 /* For a Unicode subtype that's not a Unicode object,
488 return a true Unicode object with the same data. */
Hirokazu Yamamotoa0fdd722008-08-17 09:19:52 +0000489 *param = PyUnicode_FromUnicode(PyUnicode_AS_UNICODE(*param),
490 PyUnicode_GET_SIZE(*param));
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000491 else
Hirokazu Yamamotoa0fdd722008-08-17 09:19:52 +0000492 *param = PyUnicode_FromEncodedObject(*param,
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000493 Py_FileSystemDefaultEncoding,
494 "strict");
495 return (*param) != NULL;
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000496}
497
498#endif /* Py_WIN_WIDE_FILENAMES */
499
Fredrik Lundhffb9c772000-07-09 14:49:51 +0000500#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000501
Guido van Rossumd48f2521997-12-05 22:19:34 +0000502#if defined(PYOS_OS2)
503/**********************************************************************
504 * Helper Function to Trim and Format OS/2 Messages
505 **********************************************************************/
506 static void
507os2_formatmsg(char *msgbuf, int msglen, char *reason)
508{
509 msgbuf[msglen] = '\0'; /* OS/2 Doesn't Guarantee a Terminator */
510
511 if (strlen(msgbuf) > 0) { /* If Non-Empty Msg, Trim CRLF */
512 char *lastc = &msgbuf[ strlen(msgbuf)-1 ];
513
Neal Norwitz30b5c5d2005-12-19 06:05:18 +0000514 while (lastc > msgbuf && isspace(Py_CHARMASK(*lastc)))
Guido van Rossumd48f2521997-12-05 22:19:34 +0000515 *lastc-- = '\0'; /* Trim Trailing Whitespace (CRLF) */
516 }
517
518 /* Add Optional Reason Text */
519 if (reason) {
520 strcat(msgbuf, " : ");
521 strcat(msgbuf, reason);
522 }
523}
524
525/**********************************************************************
526 * Decode an OS/2 Operating System Error Code
527 *
528 * A convenience function to lookup an OS/2 error code and return a
529 * text message we can use to raise a Python exception.
530 *
531 * Notes:
532 * The messages for errors returned from the OS/2 kernel reside in
533 * the file OSO001.MSG in the \OS2 directory hierarchy.
534 *
535 **********************************************************************/
536 static char *
537os2_strerror(char *msgbuf, int msgbuflen, int errorcode, char *reason)
538{
539 APIRET rc;
540 ULONG msglen;
541
542 /* Retrieve Kernel-Related Error Message from OSO001.MSG File */
543 Py_BEGIN_ALLOW_THREADS
544 rc = DosGetMessage(NULL, 0, msgbuf, msgbuflen,
545 errorcode, "oso001.msg", &msglen);
546 Py_END_ALLOW_THREADS
547
548 if (rc == NO_ERROR)
549 os2_formatmsg(msgbuf, msglen, reason);
550 else
Tim Peters1ceb5fb2001-11-28 20:32:57 +0000551 PyOS_snprintf(msgbuf, msgbuflen,
Tim Peters885d4572001-11-28 20:27:42 +0000552 "unknown OS error #%d", errorcode);
Guido van Rossumd48f2521997-12-05 22:19:34 +0000553
554 return msgbuf;
555}
556
557/* Set an OS/2-specific error and return NULL. OS/2 kernel
558 errors are not in a global variable e.g. 'errno' nor are
559 they congruent with posix error numbers. */
560
561static PyObject * os2_error(int code)
562{
563 char text[1024];
564 PyObject *v;
565
566 os2_strerror(text, sizeof(text), code, "");
567
568 v = Py_BuildValue("(is)", code, text);
569 if (v != NULL) {
Barry Warsawca74da41999-02-09 19:31:45 +0000570 PyErr_SetObject(PyExc_OSError, v);
Guido van Rossumd48f2521997-12-05 22:19:34 +0000571 Py_DECREF(v);
572 }
573 return NULL; /* Signal to Python that an Exception is Pending */
574}
575
576#endif /* OS2 */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000577
578/* POSIX generic methods */
579
Barry Warsaw53699e91996-12-10 23:23:01 +0000580static PyObject *
Fred Drake4d1e64b2002-04-15 19:40:07 +0000581posix_fildes(PyObject *fdobj, int (*func)(int))
582{
583 int fd;
584 int res;
585 fd = PyObject_AsFileDescriptor(fdobj);
586 if (fd < 0)
587 return NULL;
588 Py_BEGIN_ALLOW_THREADS
589 res = (*func)(fd);
590 Py_END_ALLOW_THREADS
591 if (res < 0)
592 return posix_error();
593 Py_INCREF(Py_None);
594 return Py_None;
595}
Guido van Rossum21142a01999-01-08 21:05:37 +0000596
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000597#ifdef Py_WIN_WIDE_FILENAMES
Tim Peters11b23062003-04-23 02:39:17 +0000598static int
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000599unicode_file_names(void)
600{
601 static int canusewide = -1;
602 if (canusewide == -1) {
Tim Peters11b23062003-04-23 02:39:17 +0000603 /* As per doc for ::GetVersion(), this is the correct test for
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000604 the Windows NT family. */
605 canusewide = (GetVersion() < 0x80000000) ? 1 : 0;
606 }
607 return canusewide;
608}
609#endif
Tim Peters11b23062003-04-23 02:39:17 +0000610
Guido van Rossum21142a01999-01-08 21:05:37 +0000611static PyObject *
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000612posix_1str(PyObject *args, char *format, int (*func)(const char*))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000613{
Mark Hammondef8b6542001-05-13 08:04:26 +0000614 char *path1 = NULL;
Guido van Rossumff4949e1992-08-05 19:58:53 +0000615 int res;
Tim Peters5aa91602002-01-30 05:46:57 +0000616 if (!PyArg_ParseTuple(args, format,
Mark Hammondef8b6542001-05-13 08:04:26 +0000617 Py_FileSystemDefaultEncoding, &path1))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000618 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +0000619 Py_BEGIN_ALLOW_THREADS
Guido van Rossumff4949e1992-08-05 19:58:53 +0000620 res = (*func)(path1);
Barry Warsaw53699e91996-12-10 23:23:01 +0000621 Py_END_ALLOW_THREADS
Guido van Rossumff4949e1992-08-05 19:58:53 +0000622 if (res < 0)
Mark Hammondef8b6542001-05-13 08:04:26 +0000623 return posix_error_with_allocated_filename(path1);
624 PyMem_Free(path1);
Barry Warsaw53699e91996-12-10 23:23:01 +0000625 Py_INCREF(Py_None);
626 return Py_None;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000627}
628
Barry Warsaw53699e91996-12-10 23:23:01 +0000629static PyObject *
Tim Peters11b23062003-04-23 02:39:17 +0000630posix_2str(PyObject *args,
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000631 char *format,
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000632 int (*func)(const char *, const char *))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000633{
Mark Hammondef8b6542001-05-13 08:04:26 +0000634 char *path1 = NULL, *path2 = NULL;
Guido van Rossumff4949e1992-08-05 19:58:53 +0000635 int res;
Mark Hammondef8b6542001-05-13 08:04:26 +0000636 if (!PyArg_ParseTuple(args, format,
Tim Peters5aa91602002-01-30 05:46:57 +0000637 Py_FileSystemDefaultEncoding, &path1,
Mark Hammondef8b6542001-05-13 08:04:26 +0000638 Py_FileSystemDefaultEncoding, &path2))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000639 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +0000640 Py_BEGIN_ALLOW_THREADS
Guido van Rossumff4949e1992-08-05 19:58:53 +0000641 res = (*func)(path1, path2);
Barry Warsaw53699e91996-12-10 23:23:01 +0000642 Py_END_ALLOW_THREADS
Mark Hammondef8b6542001-05-13 08:04:26 +0000643 PyMem_Free(path1);
644 PyMem_Free(path2);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000645 if (res != 0)
Barry Warsawd58d7641998-07-23 16:14:40 +0000646 /* XXX how to report both path1 and path2??? */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000647 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +0000648 Py_INCREF(Py_None);
649 return Py_None;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000650}
651
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000652#ifdef Py_WIN_WIDE_FILENAMES
653static PyObject*
654win32_1str(PyObject* args, char* func,
655 char* format, BOOL (__stdcall *funcA)(LPCSTR),
656 char* wformat, BOOL (__stdcall *funcW)(LPWSTR))
657{
658 PyObject *uni;
659 char *ansi;
660 BOOL result;
661 if (unicode_file_names()) {
662 if (!PyArg_ParseTuple(args, wformat, &uni))
663 PyErr_Clear();
664 else {
665 Py_BEGIN_ALLOW_THREADS
666 result = funcW(PyUnicode_AsUnicode(uni));
667 Py_END_ALLOW_THREADS
668 if (!result)
669 return win32_error_unicode(func, PyUnicode_AsUnicode(uni));
670 Py_INCREF(Py_None);
671 return Py_None;
672 }
673 }
674 if (!PyArg_ParseTuple(args, format, &ansi))
675 return NULL;
676 Py_BEGIN_ALLOW_THREADS
677 result = funcA(ansi);
678 Py_END_ALLOW_THREADS
679 if (!result)
680 return win32_error(func, ansi);
681 Py_INCREF(Py_None);
682 return Py_None;
683
684}
685
686/* This is a reimplementation of the C library's chdir function,
687 but one that produces Win32 errors instead of DOS error codes.
688 chdir is essentially a wrapper around SetCurrentDirectory; however,
689 it also needs to set "magic" environment variables indicating
690 the per-drive current directory, which are of the form =<drive>: */
691BOOL __stdcall
692win32_chdir(LPCSTR path)
693{
694 char new_path[MAX_PATH+1];
695 int result;
696 char env[4] = "=x:";
697
698 if(!SetCurrentDirectoryA(path))
699 return FALSE;
700 result = GetCurrentDirectoryA(MAX_PATH+1, new_path);
701 if (!result)
702 return FALSE;
703 /* In the ANSI API, there should not be any paths longer
704 than MAX_PATH. */
705 assert(result <= MAX_PATH+1);
706 if (strncmp(new_path, "\\\\", 2) == 0 ||
707 strncmp(new_path, "//", 2) == 0)
708 /* UNC path, nothing to do. */
709 return TRUE;
710 env[1] = new_path[0];
711 return SetEnvironmentVariableA(env, new_path);
712}
713
714/* The Unicode version differs from the ANSI version
715 since the current directory might exceed MAX_PATH characters */
716BOOL __stdcall
717win32_wchdir(LPCWSTR path)
718{
719 wchar_t _new_path[MAX_PATH+1], *new_path = _new_path;
720 int result;
721 wchar_t env[4] = L"=x:";
722
723 if(!SetCurrentDirectoryW(path))
724 return FALSE;
725 result = GetCurrentDirectoryW(MAX_PATH+1, new_path);
726 if (!result)
727 return FALSE;
728 if (result > MAX_PATH+1) {
729 new_path = malloc(result);
730 if (!new_path) {
731 SetLastError(ERROR_OUTOFMEMORY);
732 return FALSE;
733 }
734 }
735 if (wcsncmp(new_path, L"\\\\", 2) == 0 ||
736 wcsncmp(new_path, L"//", 2) == 0)
737 /* UNC path, nothing to do. */
738 return TRUE;
739 env[1] = new_path[0];
740 result = SetEnvironmentVariableW(env, new_path);
741 if (new_path != _new_path)
742 free(new_path);
743 return result;
744}
745#endif
746
Martin v. Löwis14694662006-02-03 12:54:16 +0000747#ifdef MS_WINDOWS
748/* The CRT of Windows has a number of flaws wrt. its stat() implementation:
749 - time stamps are restricted to second resolution
750 - file modification times suffer from forth-and-back conversions between
751 UTC and local time
752 Therefore, we implement our own stat, based on the Win32 API directly.
753*/
754#define HAVE_STAT_NSEC 1
755
756struct win32_stat{
757 int st_dev;
758 __int64 st_ino;
759 unsigned short st_mode;
760 int st_nlink;
761 int st_uid;
762 int st_gid;
763 int st_rdev;
764 __int64 st_size;
765 int st_atime;
766 int st_atime_nsec;
767 int st_mtime;
768 int st_mtime_nsec;
769 int st_ctime;
770 int st_ctime_nsec;
771};
772
773static __int64 secs_between_epochs = 11644473600; /* Seconds between 1.1.1601 and 1.1.1970 */
774
775static void
776FILE_TIME_to_time_t_nsec(FILETIME *in_ptr, int *time_out, int* nsec_out)
777{
Martin v. Löwis77c176d2006-05-12 17:22:04 +0000778 /* XXX endianness. Shouldn't matter, as all Windows implementations are little-endian */
779 /* Cannot simply cast and dereference in_ptr,
780 since it might not be aligned properly */
781 __int64 in;
782 memcpy(&in, in_ptr, sizeof(in));
Martin v. Löwis14694662006-02-03 12:54:16 +0000783 *nsec_out = (int)(in % 10000000) * 100; /* FILETIME is in units of 100 nsec. */
784 /* XXX Win32 supports time stamps past 2038; we currently don't */
785 *time_out = Py_SAFE_DOWNCAST((in / 10000000) - secs_between_epochs, __int64, int);
786}
787
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +0000788static void
789time_t_to_FILE_TIME(int time_in, int nsec_in, FILETIME *out_ptr)
790{
791 /* XXX endianness */
792 __int64 out;
793 out = time_in + secs_between_epochs;
Martin v. Löwisf43893a2006-10-09 20:44:25 +0000794 out = out * 10000000 + nsec_in / 100;
Martin v. Löwis77c176d2006-05-12 17:22:04 +0000795 memcpy(out_ptr, &out, sizeof(out));
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +0000796}
797
Martin v. Löwis14694662006-02-03 12:54:16 +0000798/* Below, we *know* that ugo+r is 0444 */
799#if _S_IREAD != 0400
800#error Unsupported C library
801#endif
802static int
803attributes_to_mode(DWORD attr)
804{
805 int m = 0;
806 if (attr & FILE_ATTRIBUTE_DIRECTORY)
807 m |= _S_IFDIR | 0111; /* IFEXEC for user,group,other */
808 else
809 m |= _S_IFREG;
810 if (attr & FILE_ATTRIBUTE_READONLY)
811 m |= 0444;
812 else
813 m |= 0666;
814 return m;
815}
816
817static int
818attribute_data_to_stat(WIN32_FILE_ATTRIBUTE_DATA *info, struct win32_stat *result)
819{
820 memset(result, 0, sizeof(*result));
821 result->st_mode = attributes_to_mode(info->dwFileAttributes);
822 result->st_size = (((__int64)info->nFileSizeHigh)<<32) + info->nFileSizeLow;
823 FILE_TIME_to_time_t_nsec(&info->ftCreationTime, &result->st_ctime, &result->st_ctime_nsec);
824 FILE_TIME_to_time_t_nsec(&info->ftLastWriteTime, &result->st_mtime, &result->st_mtime_nsec);
825 FILE_TIME_to_time_t_nsec(&info->ftLastAccessTime, &result->st_atime, &result->st_atime_nsec);
826
827 return 0;
828}
829
Martin v. Löwis012bc722006-10-15 09:43:39 +0000830/* Emulate GetFileAttributesEx[AW] on Windows 95 */
831static int checked = 0;
832static BOOL (CALLBACK *gfaxa)(LPCSTR, GET_FILEEX_INFO_LEVELS, LPVOID);
833static BOOL (CALLBACK *gfaxw)(LPCWSTR, GET_FILEEX_INFO_LEVELS, LPVOID);
834static void
835check_gfax()
836{
837 HINSTANCE hKernel32;
838 if (checked)
839 return;
840 checked = 1;
841 hKernel32 = GetModuleHandle("KERNEL32");
842 *(FARPROC*)&gfaxa = GetProcAddress(hKernel32, "GetFileAttributesExA");
843 *(FARPROC*)&gfaxw = GetProcAddress(hKernel32, "GetFileAttributesExW");
844}
845
Martin v. Löwis3bf573f2007-04-04 18:30:36 +0000846static BOOL
847attributes_from_dir(LPCSTR pszFile, LPWIN32_FILE_ATTRIBUTE_DATA pfad)
848{
849 HANDLE hFindFile;
850 WIN32_FIND_DATAA FileData;
851 hFindFile = FindFirstFileA(pszFile, &FileData);
852 if (hFindFile == INVALID_HANDLE_VALUE)
853 return FALSE;
854 FindClose(hFindFile);
855 pfad->dwFileAttributes = FileData.dwFileAttributes;
856 pfad->ftCreationTime = FileData.ftCreationTime;
857 pfad->ftLastAccessTime = FileData.ftLastAccessTime;
858 pfad->ftLastWriteTime = FileData.ftLastWriteTime;
859 pfad->nFileSizeHigh = FileData.nFileSizeHigh;
860 pfad->nFileSizeLow = FileData.nFileSizeLow;
861 return TRUE;
862}
863
864static BOOL
865attributes_from_dir_w(LPCWSTR pszFile, LPWIN32_FILE_ATTRIBUTE_DATA pfad)
866{
867 HANDLE hFindFile;
868 WIN32_FIND_DATAW FileData;
869 hFindFile = FindFirstFileW(pszFile, &FileData);
870 if (hFindFile == INVALID_HANDLE_VALUE)
871 return FALSE;
872 FindClose(hFindFile);
873 pfad->dwFileAttributes = FileData.dwFileAttributes;
874 pfad->ftCreationTime = FileData.ftCreationTime;
875 pfad->ftLastAccessTime = FileData.ftLastAccessTime;
876 pfad->ftLastWriteTime = FileData.ftLastWriteTime;
877 pfad->nFileSizeHigh = FileData.nFileSizeHigh;
878 pfad->nFileSizeLow = FileData.nFileSizeLow;
879 return TRUE;
880}
881
Martin v. Löwis012bc722006-10-15 09:43:39 +0000882static BOOL WINAPI
883Py_GetFileAttributesExA(LPCSTR pszFile,
884 GET_FILEEX_INFO_LEVELS level,
885 LPVOID pv)
886{
887 BOOL result;
Martin v. Löwis012bc722006-10-15 09:43:39 +0000888 LPWIN32_FILE_ATTRIBUTE_DATA pfad = pv;
889 /* First try to use the system's implementation, if that is
890 available and either succeeds to gives an error other than
891 that it isn't implemented. */
892 check_gfax();
893 if (gfaxa) {
894 result = gfaxa(pszFile, level, pv);
895 if (result || GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
896 return result;
897 }
898 /* It's either not present, or not implemented.
899 Emulate using FindFirstFile. */
900 if (level != GetFileExInfoStandard) {
901 SetLastError(ERROR_INVALID_PARAMETER);
902 return FALSE;
903 }
904 /* Use GetFileAttributes to validate that the file name
905 does not contain wildcards (which FindFirstFile would
906 accept). */
907 if (GetFileAttributesA(pszFile) == 0xFFFFFFFF)
908 return FALSE;
Martin v. Löwis3bf573f2007-04-04 18:30:36 +0000909 return attributes_from_dir(pszFile, pfad);
Martin v. Löwis012bc722006-10-15 09:43:39 +0000910}
911
912static BOOL WINAPI
913Py_GetFileAttributesExW(LPCWSTR pszFile,
914 GET_FILEEX_INFO_LEVELS level,
915 LPVOID pv)
916{
917 BOOL result;
Martin v. Löwis012bc722006-10-15 09:43:39 +0000918 LPWIN32_FILE_ATTRIBUTE_DATA pfad = pv;
919 /* First try to use the system's implementation, if that is
920 available and either succeeds to gives an error other than
921 that it isn't implemented. */
922 check_gfax();
923 if (gfaxa) {
924 result = gfaxw(pszFile, level, pv);
925 if (result || GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
926 return result;
927 }
928 /* It's either not present, or not implemented.
929 Emulate using FindFirstFile. */
930 if (level != GetFileExInfoStandard) {
931 SetLastError(ERROR_INVALID_PARAMETER);
932 return FALSE;
933 }
934 /* Use GetFileAttributes to validate that the file name
935 does not contain wildcards (which FindFirstFile would
936 accept). */
937 if (GetFileAttributesW(pszFile) == 0xFFFFFFFF)
938 return FALSE;
Martin v. Löwis3bf573f2007-04-04 18:30:36 +0000939 return attributes_from_dir_w(pszFile, pfad);
Martin v. Löwis012bc722006-10-15 09:43:39 +0000940}
941
Martin v. Löwis14694662006-02-03 12:54:16 +0000942static int
943win32_stat(const char* path, struct win32_stat *result)
944{
945 WIN32_FILE_ATTRIBUTE_DATA info;
946 int code;
947 char *dot;
948 /* XXX not supported on Win95 and NT 3.x */
Martin v. Löwis012bc722006-10-15 09:43:39 +0000949 if (!Py_GetFileAttributesExA(path, GetFileExInfoStandard, &info)) {
Martin v. Löwis3bf573f2007-04-04 18:30:36 +0000950 if (GetLastError() != ERROR_SHARING_VIOLATION) {
951 /* Protocol violation: we explicitly clear errno, instead of
952 setting it to a POSIX error. Callers should use GetLastError. */
953 errno = 0;
954 return -1;
955 } else {
956 /* Could not get attributes on open file. Fall back to
957 reading the directory. */
958 if (!attributes_from_dir(path, &info)) {
959 /* Very strange. This should not fail now */
960 errno = 0;
961 return -1;
962 }
963 }
Martin v. Löwis14694662006-02-03 12:54:16 +0000964 }
965 code = attribute_data_to_stat(&info, result);
966 if (code != 0)
967 return code;
968 /* Set S_IFEXEC if it is an .exe, .bat, ... */
969 dot = strrchr(path, '.');
970 if (dot) {
971 if (stricmp(dot, ".bat") == 0 ||
972 stricmp(dot, ".cmd") == 0 ||
973 stricmp(dot, ".exe") == 0 ||
974 stricmp(dot, ".com") == 0)
975 result->st_mode |= 0111;
976 }
977 return code;
978}
979
980static int
981win32_wstat(const wchar_t* path, struct win32_stat *result)
982{
983 int code;
984 const wchar_t *dot;
985 WIN32_FILE_ATTRIBUTE_DATA info;
986 /* XXX not supported on Win95 and NT 3.x */
Martin v. Löwis012bc722006-10-15 09:43:39 +0000987 if (!Py_GetFileAttributesExW(path, GetFileExInfoStandard, &info)) {
Martin v. Löwis3bf573f2007-04-04 18:30:36 +0000988 if (GetLastError() != ERROR_SHARING_VIOLATION) {
989 /* Protocol violation: we explicitly clear errno, instead of
990 setting it to a POSIX error. Callers should use GetLastError. */
991 errno = 0;
992 return -1;
993 } else {
994 /* Could not get attributes on open file. Fall back to
995 reading the directory. */
996 if (!attributes_from_dir_w(path, &info)) {
997 /* Very strange. This should not fail now */
998 errno = 0;
999 return -1;
1000 }
1001 }
Martin v. Löwis14694662006-02-03 12:54:16 +00001002 }
1003 code = attribute_data_to_stat(&info, result);
1004 if (code < 0)
1005 return code;
1006 /* Set IFEXEC if it is an .exe, .bat, ... */
1007 dot = wcsrchr(path, '.');
1008 if (dot) {
1009 if (_wcsicmp(dot, L".bat") == 0 ||
1010 _wcsicmp(dot, L".cmd") == 0 ||
1011 _wcsicmp(dot, L".exe") == 0 ||
1012 _wcsicmp(dot, L".com") == 0)
1013 result->st_mode |= 0111;
1014 }
1015 return code;
1016}
1017
1018static int
1019win32_fstat(int file_number, struct win32_stat *result)
1020{
1021 BY_HANDLE_FILE_INFORMATION info;
1022 HANDLE h;
1023 int type;
1024
1025 h = (HANDLE)_get_osfhandle(file_number);
1026
1027 /* Protocol violation: we explicitly clear errno, instead of
1028 setting it to a POSIX error. Callers should use GetLastError. */
1029 errno = 0;
1030
1031 if (h == INVALID_HANDLE_VALUE) {
1032 /* This is really a C library error (invalid file handle).
1033 We set the Win32 error to the closes one matching. */
1034 SetLastError(ERROR_INVALID_HANDLE);
1035 return -1;
1036 }
1037 memset(result, 0, sizeof(*result));
1038
1039 type = GetFileType(h);
1040 if (type == FILE_TYPE_UNKNOWN) {
1041 DWORD error = GetLastError();
1042 if (error != 0) {
1043 return -1;
1044 }
1045 /* else: valid but unknown file */
1046 }
1047
1048 if (type != FILE_TYPE_DISK) {
1049 if (type == FILE_TYPE_CHAR)
1050 result->st_mode = _S_IFCHR;
1051 else if (type == FILE_TYPE_PIPE)
1052 result->st_mode = _S_IFIFO;
1053 return 0;
1054 }
1055
1056 if (!GetFileInformationByHandle(h, &info)) {
1057 return -1;
1058 }
1059
1060 /* similar to stat() */
1061 result->st_mode = attributes_to_mode(info.dwFileAttributes);
1062 result->st_size = (((__int64)info.nFileSizeHigh)<<32) + info.nFileSizeLow;
1063 FILE_TIME_to_time_t_nsec(&info.ftCreationTime, &result->st_ctime, &result->st_ctime_nsec);
1064 FILE_TIME_to_time_t_nsec(&info.ftLastWriteTime, &result->st_mtime, &result->st_mtime_nsec);
1065 FILE_TIME_to_time_t_nsec(&info.ftLastAccessTime, &result->st_atime, &result->st_atime_nsec);
1066 /* specific to fstat() */
1067 result->st_nlink = info.nNumberOfLinks;
1068 result->st_ino = (((__int64)info.nFileIndexHigh)<<32) + info.nFileIndexLow;
1069 return 0;
1070}
1071
1072#endif /* MS_WINDOWS */
1073
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001074PyDoc_STRVAR(stat_result__doc__,
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001075"stat_result: Result from stat or lstat.\n\n\
1076This object may be accessed either as a tuple of\n\
Fred Drakef7ce04d2002-06-20 18:31:21 +00001077 (mode, ino, dev, nlink, uid, gid, size, atime, mtime, ctime)\n\
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001078or via the attributes st_mode, st_ino, st_dev, st_nlink, st_uid, and so on.\n\
1079\n\
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001080Posix/windows: If your platform supports st_blksize, st_blocks, st_rdev,\n\
1081or st_flags, they are available as attributes only.\n\
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001082\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001083See os.stat for more information.");
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001084
1085static PyStructSequence_Field stat_result_fields[] = {
1086 {"st_mode", "protection bits"},
1087 {"st_ino", "inode"},
1088 {"st_dev", "device"},
1089 {"st_nlink", "number of hard links"},
1090 {"st_uid", "user ID of owner"},
1091 {"st_gid", "group ID of owner"},
1092 {"st_size", "total size, in bytes"},
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001093 /* The NULL is replaced with PyStructSequence_UnnamedField later. */
1094 {NULL, "integer time of last access"},
1095 {NULL, "integer time of last modification"},
1096 {NULL, "integer time of last change"},
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001097 {"st_atime", "time of last access"},
1098 {"st_mtime", "time of last modification"},
1099 {"st_ctime", "time of last change"},
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001100#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001101 {"st_blksize", "blocksize for filesystem I/O"},
1102#endif
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001103#ifdef HAVE_STRUCT_STAT_ST_BLOCKS
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001104 {"st_blocks", "number of blocks allocated"},
1105#endif
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001106#ifdef HAVE_STRUCT_STAT_ST_RDEV
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001107 {"st_rdev", "device type (if inode device)"},
1108#endif
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001109#ifdef HAVE_STRUCT_STAT_ST_FLAGS
1110 {"st_flags", "user defined flags for file"},
1111#endif
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001112#ifdef HAVE_STRUCT_STAT_ST_GEN
1113 {"st_gen", "generation number"},
1114#endif
1115#ifdef HAVE_STRUCT_STAT_ST_BIRTHTIME
1116 {"st_birthtime", "time of creation"},
1117#endif
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001118 {0}
1119};
1120
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001121#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001122#define ST_BLKSIZE_IDX 13
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001123#else
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001124#define ST_BLKSIZE_IDX 12
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001125#endif
1126
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001127#ifdef HAVE_STRUCT_STAT_ST_BLOCKS
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001128#define ST_BLOCKS_IDX (ST_BLKSIZE_IDX+1)
1129#else
1130#define ST_BLOCKS_IDX ST_BLKSIZE_IDX
1131#endif
1132
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001133#ifdef HAVE_STRUCT_STAT_ST_RDEV
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001134#define ST_RDEV_IDX (ST_BLOCKS_IDX+1)
1135#else
1136#define ST_RDEV_IDX ST_BLOCKS_IDX
1137#endif
1138
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001139#ifdef HAVE_STRUCT_STAT_ST_FLAGS
1140#define ST_FLAGS_IDX (ST_RDEV_IDX+1)
1141#else
1142#define ST_FLAGS_IDX ST_RDEV_IDX
1143#endif
1144
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001145#ifdef HAVE_STRUCT_STAT_ST_GEN
Martin v. Löwisf09582e2005-08-14 21:42:34 +00001146#define ST_GEN_IDX (ST_FLAGS_IDX+1)
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001147#else
Martin v. Löwisf09582e2005-08-14 21:42:34 +00001148#define ST_GEN_IDX ST_FLAGS_IDX
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001149#endif
1150
1151#ifdef HAVE_STRUCT_STAT_ST_BIRTHTIME
1152#define ST_BIRTHTIME_IDX (ST_GEN_IDX+1)
1153#else
1154#define ST_BIRTHTIME_IDX ST_GEN_IDX
1155#endif
1156
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001157static PyStructSequence_Desc stat_result_desc = {
1158 "stat_result", /* name */
1159 stat_result__doc__, /* doc */
1160 stat_result_fields,
1161 10
1162};
1163
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001164PyDoc_STRVAR(statvfs_result__doc__,
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001165"statvfs_result: Result from statvfs or fstatvfs.\n\n\
1166This object may be accessed either as a tuple of\n\
Fred Drakef7ce04d2002-06-20 18:31:21 +00001167 (bsize, frsize, blocks, bfree, bavail, files, ffree, favail, flag, namemax),\n\
Guido van Rossuma4dc73e2001-10-18 20:53:15 +00001168or via the attributes f_bsize, f_frsize, f_blocks, f_bfree, and so on.\n\
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001169\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001170See os.statvfs for more information.");
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001171
1172static PyStructSequence_Field statvfs_result_fields[] = {
1173 {"f_bsize", },
1174 {"f_frsize", },
1175 {"f_blocks", },
1176 {"f_bfree", },
1177 {"f_bavail", },
1178 {"f_files", },
1179 {"f_ffree", },
1180 {"f_favail", },
1181 {"f_flag", },
1182 {"f_namemax",},
1183 {0}
1184};
1185
1186static PyStructSequence_Desc statvfs_result_desc = {
1187 "statvfs_result", /* name */
1188 statvfs_result__doc__, /* doc */
1189 statvfs_result_fields,
1190 10
1191};
1192
Martin v. Löwis19ab6c92006-04-16 18:55:50 +00001193static int initialized;
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001194static PyTypeObject StatResultType;
1195static PyTypeObject StatVFSResultType;
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001196static newfunc structseq_new;
1197
1198static PyObject *
1199statresult_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
1200{
1201 PyStructSequence *result;
1202 int i;
1203
1204 result = (PyStructSequence*)structseq_new(type, args, kwds);
1205 if (!result)
1206 return NULL;
1207 /* If we have been initialized from a tuple,
1208 st_?time might be set to None. Initialize it
1209 from the int slots. */
1210 for (i = 7; i <= 9; i++) {
1211 if (result->ob_item[i+3] == Py_None) {
1212 Py_DECREF(Py_None);
1213 Py_INCREF(result->ob_item[i]);
1214 result->ob_item[i+3] = result->ob_item[i];
1215 }
1216 }
1217 return (PyObject*)result;
1218}
1219
1220
1221
1222/* If true, st_?time is float. */
Martin v. Löwisfe33d0b2005-01-16 08:57:39 +00001223static int _stat_float_times = 1;
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001224
1225PyDoc_STRVAR(stat_float_times__doc__,
1226"stat_float_times([newval]) -> oldval\n\n\
1227Determine whether os.[lf]stat represents time stamps as float objects.\n\
1228If newval is True, future calls to stat() return floats, if it is False,\n\
1229future calls return ints. \n\
1230If newval is omitted, return the current setting.\n");
1231
1232static PyObject*
1233stat_float_times(PyObject* self, PyObject *args)
1234{
1235 int newval = -1;
1236 if (!PyArg_ParseTuple(args, "|i:stat_float_times", &newval))
1237 return NULL;
1238 if (newval == -1)
1239 /* Return old value */
1240 return PyBool_FromLong(_stat_float_times);
1241 _stat_float_times = newval;
1242 Py_INCREF(Py_None);
1243 return Py_None;
1244}
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001245
Martin v. Löwis94717ed2002-09-09 14:24:16 +00001246static void
1247fill_time(PyObject *v, int index, time_t sec, unsigned long nsec)
1248{
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001249 PyObject *fval,*ival;
1250#if SIZEOF_TIME_T > SIZEOF_LONG
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00001251 ival = PyLong_FromLongLong((PY_LONG_LONG)sec);
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001252#else
1253 ival = PyInt_FromLong((long)sec);
1254#endif
Neal Norwitze0a81af2006-08-12 01:50:38 +00001255 if (!ival)
1256 return;
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001257 if (_stat_float_times) {
1258 fval = PyFloat_FromDouble(sec + 1e-9*nsec);
1259 } else {
1260 fval = ival;
1261 Py_INCREF(fval);
1262 }
1263 PyStructSequence_SET_ITEM(v, index, ival);
1264 PyStructSequence_SET_ITEM(v, index+3, fval);
Martin v. Löwis94717ed2002-09-09 14:24:16 +00001265}
1266
Tim Peters5aa91602002-01-30 05:46:57 +00001267/* pack a system stat C structure into the Python stat tuple
Fred Drake699f3522000-06-29 21:12:41 +00001268 (used by posix_stat() and posix_fstat()) */
1269static PyObject*
Martin v. Löwis14694662006-02-03 12:54:16 +00001270_pystat_fromstructstat(STRUCT_STAT *st)
Fred Drake699f3522000-06-29 21:12:41 +00001271{
Martin v. Löwis94717ed2002-09-09 14:24:16 +00001272 unsigned long ansec, mnsec, cnsec;
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001273 PyObject *v = PyStructSequence_New(&StatResultType);
Fred Drake699f3522000-06-29 21:12:41 +00001274 if (v == NULL)
1275 return NULL;
1276
Martin v. Löwis14694662006-02-03 12:54:16 +00001277 PyStructSequence_SET_ITEM(v, 0, PyInt_FromLong((long)st->st_mode));
Fred Drake699f3522000-06-29 21:12:41 +00001278#ifdef HAVE_LARGEFILE_SUPPORT
Tim Peters5aa91602002-01-30 05:46:57 +00001279 PyStructSequence_SET_ITEM(v, 1,
Martin v. Löwis14694662006-02-03 12:54:16 +00001280 PyLong_FromLongLong((PY_LONG_LONG)st->st_ino));
Fred Drake699f3522000-06-29 21:12:41 +00001281#else
Martin v. Löwis14694662006-02-03 12:54:16 +00001282 PyStructSequence_SET_ITEM(v, 1, PyInt_FromLong((long)st->st_ino));
Fred Drake699f3522000-06-29 21:12:41 +00001283#endif
1284#if defined(HAVE_LONG_LONG) && !defined(MS_WINDOWS)
Tim Peters5aa91602002-01-30 05:46:57 +00001285 PyStructSequence_SET_ITEM(v, 2,
Martin v. Löwis14694662006-02-03 12:54:16 +00001286 PyLong_FromLongLong((PY_LONG_LONG)st->st_dev));
Fred Drake699f3522000-06-29 21:12:41 +00001287#else
Martin v. Löwis14694662006-02-03 12:54:16 +00001288 PyStructSequence_SET_ITEM(v, 2, PyInt_FromLong((long)st->st_dev));
Fred Drake699f3522000-06-29 21:12:41 +00001289#endif
Martin v. Löwis14694662006-02-03 12:54:16 +00001290 PyStructSequence_SET_ITEM(v, 3, PyInt_FromLong((long)st->st_nlink));
1291 PyStructSequence_SET_ITEM(v, 4, PyInt_FromLong((long)st->st_uid));
1292 PyStructSequence_SET_ITEM(v, 5, PyInt_FromLong((long)st->st_gid));
Fred Drake699f3522000-06-29 21:12:41 +00001293#ifdef HAVE_LARGEFILE_SUPPORT
Tim Peters5aa91602002-01-30 05:46:57 +00001294 PyStructSequence_SET_ITEM(v, 6,
Martin v. Löwis14694662006-02-03 12:54:16 +00001295 PyLong_FromLongLong((PY_LONG_LONG)st->st_size));
Fred Drake699f3522000-06-29 21:12:41 +00001296#else
Martin v. Löwis14694662006-02-03 12:54:16 +00001297 PyStructSequence_SET_ITEM(v, 6, PyInt_FromLong(st->st_size));
Fred Drake699f3522000-06-29 21:12:41 +00001298#endif
Martin v. Löwis94717ed2002-09-09 14:24:16 +00001299
Martin v. Löwis14694662006-02-03 12:54:16 +00001300#if defined(HAVE_STAT_TV_NSEC)
1301 ansec = st->st_atim.tv_nsec;
1302 mnsec = st->st_mtim.tv_nsec;
1303 cnsec = st->st_ctim.tv_nsec;
1304#elif defined(HAVE_STAT_TV_NSEC2)
1305 ansec = st->st_atimespec.tv_nsec;
1306 mnsec = st->st_mtimespec.tv_nsec;
1307 cnsec = st->st_ctimespec.tv_nsec;
1308#elif defined(HAVE_STAT_NSEC)
1309 ansec = st->st_atime_nsec;
1310 mnsec = st->st_mtime_nsec;
1311 cnsec = st->st_ctime_nsec;
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001312#else
Martin v. Löwis94717ed2002-09-09 14:24:16 +00001313 ansec = mnsec = cnsec = 0;
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001314#endif
Martin v. Löwis14694662006-02-03 12:54:16 +00001315 fill_time(v, 7, st->st_atime, ansec);
1316 fill_time(v, 8, st->st_mtime, mnsec);
1317 fill_time(v, 9, st->st_ctime, cnsec);
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001318
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001319#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
Tim Peters5aa91602002-01-30 05:46:57 +00001320 PyStructSequence_SET_ITEM(v, ST_BLKSIZE_IDX,
Martin v. Löwis14694662006-02-03 12:54:16 +00001321 PyInt_FromLong((long)st->st_blksize));
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001322#endif
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001323#ifdef HAVE_STRUCT_STAT_ST_BLOCKS
Tim Peters5aa91602002-01-30 05:46:57 +00001324 PyStructSequence_SET_ITEM(v, ST_BLOCKS_IDX,
Martin v. Löwis14694662006-02-03 12:54:16 +00001325 PyInt_FromLong((long)st->st_blocks));
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001326#endif
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001327#ifdef HAVE_STRUCT_STAT_ST_RDEV
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001328 PyStructSequence_SET_ITEM(v, ST_RDEV_IDX,
Martin v. Löwis14694662006-02-03 12:54:16 +00001329 PyInt_FromLong((long)st->st_rdev));
Fred Drake699f3522000-06-29 21:12:41 +00001330#endif
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001331#ifdef HAVE_STRUCT_STAT_ST_GEN
1332 PyStructSequence_SET_ITEM(v, ST_GEN_IDX,
Martin v. Löwis14694662006-02-03 12:54:16 +00001333 PyInt_FromLong((long)st->st_gen));
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001334#endif
1335#ifdef HAVE_STRUCT_STAT_ST_BIRTHTIME
1336 {
1337 PyObject *val;
1338 unsigned long bsec,bnsec;
Martin v. Löwis14694662006-02-03 12:54:16 +00001339 bsec = (long)st->st_birthtime;
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001340#ifdef HAVE_STAT_TV_NSEC2
Hye-Shik Changd69e0342006-02-19 16:22:22 +00001341 bnsec = st->st_birthtimespec.tv_nsec;
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001342#else
1343 bnsec = 0;
1344#endif
1345 if (_stat_float_times) {
1346 val = PyFloat_FromDouble(bsec + 1e-9*bnsec);
1347 } else {
1348 val = PyInt_FromLong((long)bsec);
1349 }
1350 PyStructSequence_SET_ITEM(v, ST_BIRTHTIME_IDX,
1351 val);
1352 }
1353#endif
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001354#ifdef HAVE_STRUCT_STAT_ST_FLAGS
1355 PyStructSequence_SET_ITEM(v, ST_FLAGS_IDX,
Martin v. Löwis14694662006-02-03 12:54:16 +00001356 PyInt_FromLong((long)st->st_flags));
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001357#endif
Fred Drake699f3522000-06-29 21:12:41 +00001358
1359 if (PyErr_Occurred()) {
1360 Py_DECREF(v);
1361 return NULL;
1362 }
1363
1364 return v;
1365}
1366
Martin v. Löwisd8948722004-06-02 09:57:56 +00001367#ifdef MS_WINDOWS
1368
1369/* IsUNCRoot -- test whether the supplied path is of the form \\SERVER\SHARE\,
1370 where / can be used in place of \ and the trailing slash is optional.
1371 Both SERVER and SHARE must have at least one character.
1372*/
1373
1374#define ISSLASHA(c) ((c) == '\\' || (c) == '/')
1375#define ISSLASHW(c) ((c) == L'\\' || (c) == L'/')
Kristján Valur Jónssondbeaa692006-06-09 16:28:01 +00001376#ifndef ARRAYSIZE
Martin v. Löwisd8948722004-06-02 09:57:56 +00001377#define ARRAYSIZE(a) (sizeof(a) / sizeof(a[0]))
Kristján Valur Jónssondbeaa692006-06-09 16:28:01 +00001378#endif
Martin v. Löwisd8948722004-06-02 09:57:56 +00001379
Tim Peters4ad82172004-08-30 17:02:04 +00001380static BOOL
Martin v. Löwisd8948722004-06-02 09:57:56 +00001381IsUNCRootA(char *path, int pathlen)
1382{
1383 #define ISSLASH ISSLASHA
1384
1385 int i, share;
1386
1387 if (pathlen < 5 || !ISSLASH(path[0]) || !ISSLASH(path[1]))
1388 /* minimum UNCRoot is \\x\y */
1389 return FALSE;
1390 for (i = 2; i < pathlen ; i++)
1391 if (ISSLASH(path[i])) break;
1392 if (i == 2 || i == pathlen)
1393 /* do not allow \\\SHARE or \\SERVER */
1394 return FALSE;
1395 share = i+1;
1396 for (i = share; i < pathlen; i++)
1397 if (ISSLASH(path[i])) break;
1398 return (i != share && (i == pathlen || i == pathlen-1));
1399
1400 #undef ISSLASH
1401}
1402
1403#ifdef Py_WIN_WIDE_FILENAMES
Tim Peters4ad82172004-08-30 17:02:04 +00001404static BOOL
Martin v. Löwisd8948722004-06-02 09:57:56 +00001405IsUNCRootW(Py_UNICODE *path, int pathlen)
1406{
1407 #define ISSLASH ISSLASHW
1408
1409 int i, share;
1410
1411 if (pathlen < 5 || !ISSLASH(path[0]) || !ISSLASH(path[1]))
1412 /* minimum UNCRoot is \\x\y */
1413 return FALSE;
1414 for (i = 2; i < pathlen ; i++)
1415 if (ISSLASH(path[i])) break;
1416 if (i == 2 || i == pathlen)
1417 /* do not allow \\\SHARE or \\SERVER */
1418 return FALSE;
1419 share = i+1;
1420 for (i = share; i < pathlen; i++)
1421 if (ISSLASH(path[i])) break;
1422 return (i != share && (i == pathlen || i == pathlen-1));
1423
1424 #undef ISSLASH
1425}
1426#endif /* Py_WIN_WIDE_FILENAMES */
1427#endif /* MS_WINDOWS */
1428
Barry Warsaw53699e91996-12-10 23:23:01 +00001429static PyObject *
Tim Peters11b23062003-04-23 02:39:17 +00001430posix_do_stat(PyObject *self, PyObject *args,
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001431 char *format,
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001432#ifdef __VMS
1433 int (*statfunc)(const char *, STRUCT_STAT *, ...),
1434#else
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001435 int (*statfunc)(const char *, STRUCT_STAT *),
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001436#endif
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001437 char *wformat,
1438 int (*wstatfunc)(const Py_UNICODE *, STRUCT_STAT *))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001439{
Fred Drake699f3522000-06-29 21:12:41 +00001440 STRUCT_STAT st;
Tim Peters500bd032001-12-19 19:05:01 +00001441 char *path = NULL; /* pass this to stat; do not free() it */
1442 char *pathfree = NULL; /* this memory must be free'd */
Guido van Rossumff4949e1992-08-05 19:58:53 +00001443 int res;
Martin v. Löwis14694662006-02-03 12:54:16 +00001444 PyObject *result;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001445
1446#ifdef Py_WIN_WIDE_FILENAMES
1447 /* If on wide-character-capable OS see if argument
1448 is Unicode and if so use wide API. */
1449 if (unicode_file_names()) {
1450 PyUnicodeObject *po;
1451 if (PyArg_ParseTuple(args, wformat, &po)) {
Martin v. Löwis14694662006-02-03 12:54:16 +00001452 Py_UNICODE *wpath = PyUnicode_AS_UNICODE(po);
1453
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001454 Py_BEGIN_ALLOW_THREADS
1455 /* PyUnicode_AS_UNICODE result OK without
1456 thread lock as it is a simple dereference. */
1457 res = wstatfunc(wpath, &st);
1458 Py_END_ALLOW_THREADS
Martin v. Löwis14694662006-02-03 12:54:16 +00001459
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001460 if (res != 0)
Martin v. Löwis14694662006-02-03 12:54:16 +00001461 return win32_error_unicode("stat", wpath);
1462 return _pystat_fromstructstat(&st);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001463 }
1464 /* Drop the argument parsing error as narrow strings
1465 are also valid. */
1466 PyErr_Clear();
1467 }
1468#endif
1469
Tim Peters5aa91602002-01-30 05:46:57 +00001470 if (!PyArg_ParseTuple(args, format,
Mark Hammondef8b6542001-05-13 08:04:26 +00001471 Py_FileSystemDefaultEncoding, &path))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001472 return NULL;
Tim Peters500bd032001-12-19 19:05:01 +00001473 pathfree = path;
Guido van Rossumace88ae2000-04-21 18:54:45 +00001474
Barry Warsaw53699e91996-12-10 23:23:01 +00001475 Py_BEGIN_ALLOW_THREADS
Guido van Rossumff4949e1992-08-05 19:58:53 +00001476 res = (*statfunc)(path, &st);
Barry Warsaw53699e91996-12-10 23:23:01 +00001477 Py_END_ALLOW_THREADS
Martin v. Löwis14694662006-02-03 12:54:16 +00001478
1479 if (res != 0) {
1480#ifdef MS_WINDOWS
1481 result = win32_error("stat", pathfree);
1482#else
1483 result = posix_error_with_filename(pathfree);
1484#endif
1485 }
1486 else
1487 result = _pystat_fromstructstat(&st);
Fred Drake699f3522000-06-29 21:12:41 +00001488
Tim Peters500bd032001-12-19 19:05:01 +00001489 PyMem_Free(pathfree);
Martin v. Löwis14694662006-02-03 12:54:16 +00001490 return result;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001491}
1492
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001493/* POSIX methods */
1494
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001495PyDoc_STRVAR(posix_access__doc__,
Georg Brandl7a284472007-01-27 19:38:50 +00001496"access(path, mode) -> True if granted, False otherwise\n\n\
Guido van Rossuma0b90752002-06-18 16:22:43 +00001497Use the real uid/gid to test for access to a path. Note that most\n\
1498operations will use the effective uid/gid, therefore this routine can\n\
1499be used in a suid/sgid environment to test if the invoking user has the\n\
1500specified access to the path. The mode argument can be F_OK to test\n\
1501existence, or the inclusive-OR of R_OK, W_OK, and X_OK.");
Guido van Rossum94f6f721999-01-06 18:42:14 +00001502
1503static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00001504posix_access(PyObject *self, PyObject *args)
Guido van Rossum94f6f721999-01-06 18:42:14 +00001505{
Guido van Rossum015f22a1999-01-06 22:52:38 +00001506 char *path;
1507 int mode;
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001508
Martin v. Löwis1b699a52003-09-12 16:25:38 +00001509#ifdef Py_WIN_WIDE_FILENAMES
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001510 DWORD attr;
Martin v. Löwis1b699a52003-09-12 16:25:38 +00001511 if (unicode_file_names()) {
1512 PyUnicodeObject *po;
1513 if (PyArg_ParseTuple(args, "Ui:access", &po, &mode)) {
1514 Py_BEGIN_ALLOW_THREADS
1515 /* PyUnicode_AS_UNICODE OK without thread lock as
1516 it is a simple dereference. */
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001517 attr = GetFileAttributesW(PyUnicode_AS_UNICODE(po));
Martin v. Löwis1b699a52003-09-12 16:25:38 +00001518 Py_END_ALLOW_THREADS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001519 goto finish;
Martin v. Löwis1b699a52003-09-12 16:25:38 +00001520 }
1521 /* Drop the argument parsing error as narrow strings
1522 are also valid. */
1523 PyErr_Clear();
1524 }
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001525 if (!PyArg_ParseTuple(args, "eti:access",
1526 Py_FileSystemDefaultEncoding, &path, &mode))
1527 return 0;
1528 Py_BEGIN_ALLOW_THREADS
1529 attr = GetFileAttributesA(path);
1530 Py_END_ALLOW_THREADS
1531 PyMem_Free(path);
1532finish:
1533 if (attr == 0xFFFFFFFF)
1534 /* File does not exist, or cannot read attributes */
1535 return PyBool_FromLong(0);
1536 /* Access is possible if either write access wasn't requested, or
Martin v. Löwis7b3cc062007-12-03 23:09:04 +00001537 the file isn't read-only, or if it's a directory, as there are
1538 no read-only directories on Windows. */
1539 return PyBool_FromLong(!(mode & 2)
1540 || !(attr & FILE_ATTRIBUTE_READONLY)
1541 || (attr & FILE_ATTRIBUTE_DIRECTORY));
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001542#else
1543 int res;
Martin v. Löwisb60ae992005-03-08 09:10:29 +00001544 if (!PyArg_ParseTuple(args, "eti:access",
1545 Py_FileSystemDefaultEncoding, &path, &mode))
Guido van Rossum015f22a1999-01-06 22:52:38 +00001546 return NULL;
1547 Py_BEGIN_ALLOW_THREADS
1548 res = access(path, mode);
1549 Py_END_ALLOW_THREADS
Neal Norwitz24b3c222005-09-19 06:43:44 +00001550 PyMem_Free(path);
Neal Norwitz3efd0a12005-09-19 06:45:53 +00001551 return PyBool_FromLong(res == 0);
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001552#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00001553}
1554
Guido van Rossumd371ff11999-01-25 16:12:23 +00001555#ifndef F_OK
1556#define F_OK 0
1557#endif
1558#ifndef R_OK
1559#define R_OK 4
1560#endif
1561#ifndef W_OK
1562#define W_OK 2
1563#endif
1564#ifndef X_OK
1565#define X_OK 1
1566#endif
1567
1568#ifdef HAVE_TTYNAME
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001569PyDoc_STRVAR(posix_ttyname__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001570"ttyname(fd) -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001571Return the name of the terminal device connected to 'fd'.");
Guido van Rossum94f6f721999-01-06 18:42:14 +00001572
1573static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00001574posix_ttyname(PyObject *self, PyObject *args)
Guido van Rossum94f6f721999-01-06 18:42:14 +00001575{
Guido van Rossum94f6f721999-01-06 18:42:14 +00001576 int id;
1577 char *ret;
1578
Fred Drake5ab8eaf1999-12-09 21:13:07 +00001579 if (!PyArg_ParseTuple(args, "i:ttyname", &id))
Guido van Rossum94f6f721999-01-06 18:42:14 +00001580 return NULL;
1581
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001582#if defined(__VMS)
Martin v. Löwisc16f3bd2003-05-03 09:14:54 +00001583 /* file descriptor 0 only, the default input device (stdin) */
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001584 if (id == 0) {
1585 ret = ttyname();
1586 }
1587 else {
1588 ret = NULL;
1589 }
1590#else
Guido van Rossum94f6f721999-01-06 18:42:14 +00001591 ret = ttyname(id);
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001592#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00001593 if (ret == NULL)
Neal Norwitz3efd0a12005-09-19 06:45:53 +00001594 return posix_error();
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001595 return PyString_FromString(ret);
Guido van Rossum94f6f721999-01-06 18:42:14 +00001596}
Guido van Rossumd371ff11999-01-25 16:12:23 +00001597#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00001598
Fred Drake5ab8eaf1999-12-09 21:13:07 +00001599#ifdef HAVE_CTERMID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001600PyDoc_STRVAR(posix_ctermid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001601"ctermid() -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001602Return the name of the controlling terminal for this process.");
Fred Drake5ab8eaf1999-12-09 21:13:07 +00001603
1604static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00001605posix_ctermid(PyObject *self, PyObject *noargs)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00001606{
1607 char *ret;
1608 char buffer[L_ctermid];
1609
Greg Wardb48bc172000-03-01 21:51:56 +00001610#ifdef USE_CTERMID_R
Fred Drake5ab8eaf1999-12-09 21:13:07 +00001611 ret = ctermid_r(buffer);
1612#else
1613 ret = ctermid(buffer);
1614#endif
1615 if (ret == NULL)
Neal Norwitz3efd0a12005-09-19 06:45:53 +00001616 return posix_error();
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001617 return PyString_FromString(buffer);
Fred Drake5ab8eaf1999-12-09 21:13:07 +00001618}
1619#endif
1620
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001621PyDoc_STRVAR(posix_chdir__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001622"chdir(path)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001623Change the current working directory to the specified path.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001624
Barry Warsaw53699e91996-12-10 23:23:01 +00001625static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00001626posix_chdir(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001627{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001628#ifdef MS_WINDOWS
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00001629 return win32_1str(args, "chdir", "s:chdir", win32_chdir, "U:chdir", win32_wchdir);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001630#elif defined(PYOS_OS2) && defined(PYCC_GCC)
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00001631 return posix_1str(args, "et:chdir", _chdir2);
Martin v. Löwis7a924e62003-03-05 14:15:21 +00001632#elif defined(__VMS)
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00001633 return posix_1str(args, "et:chdir", (int (*)(const char *))chdir);
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001634#else
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00001635 return posix_1str(args, "et:chdir", chdir);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00001636#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001637}
1638
Fred Drake4d1e64b2002-04-15 19:40:07 +00001639#ifdef HAVE_FCHDIR
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001640PyDoc_STRVAR(posix_fchdir__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001641"fchdir(fildes)\n\n\
Fred Drake4d1e64b2002-04-15 19:40:07 +00001642Change to the directory of the given file descriptor. fildes must be\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001643opened on a directory, not a file.");
Fred Drake4d1e64b2002-04-15 19:40:07 +00001644
1645static PyObject *
1646posix_fchdir(PyObject *self, PyObject *fdobj)
1647{
1648 return posix_fildes(fdobj, fchdir);
1649}
1650#endif /* HAVE_FCHDIR */
1651
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001652
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001653PyDoc_STRVAR(posix_chmod__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001654"chmod(path, mode)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001655Change the access permissions of a file.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001656
Barry Warsaw53699e91996-12-10 23:23:01 +00001657static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00001658posix_chmod(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001659{
Mark Hammondef8b6542001-05-13 08:04:26 +00001660 char *path = NULL;
Guido van Rossumffd15f52000-03-31 00:47:28 +00001661 int i;
1662 int res;
Mark Hammond817c9292003-12-03 01:22:38 +00001663#ifdef Py_WIN_WIDE_FILENAMES
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001664 DWORD attr;
Mark Hammond817c9292003-12-03 01:22:38 +00001665 if (unicode_file_names()) {
1666 PyUnicodeObject *po;
1667 if (PyArg_ParseTuple(args, "Ui|:chmod", &po, &i)) {
1668 Py_BEGIN_ALLOW_THREADS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001669 attr = GetFileAttributesW(PyUnicode_AS_UNICODE(po));
1670 if (attr != 0xFFFFFFFF) {
1671 if (i & _S_IWRITE)
1672 attr &= ~FILE_ATTRIBUTE_READONLY;
1673 else
1674 attr |= FILE_ATTRIBUTE_READONLY;
1675 res = SetFileAttributesW(PyUnicode_AS_UNICODE(po), attr);
1676 }
1677 else
1678 res = 0;
Mark Hammond817c9292003-12-03 01:22:38 +00001679 Py_END_ALLOW_THREADS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001680 if (!res)
1681 return win32_error_unicode("chmod",
Mark Hammond817c9292003-12-03 01:22:38 +00001682 PyUnicode_AS_UNICODE(po));
1683 Py_INCREF(Py_None);
1684 return Py_None;
1685 }
1686 /* Drop the argument parsing error as narrow strings
1687 are also valid. */
1688 PyErr_Clear();
1689 }
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001690 if (!PyArg_ParseTuple(args, "eti:chmod", Py_FileSystemDefaultEncoding,
1691 &path, &i))
1692 return NULL;
1693 Py_BEGIN_ALLOW_THREADS
1694 attr = GetFileAttributesA(path);
1695 if (attr != 0xFFFFFFFF) {
1696 if (i & _S_IWRITE)
1697 attr &= ~FILE_ATTRIBUTE_READONLY;
1698 else
1699 attr |= FILE_ATTRIBUTE_READONLY;
1700 res = SetFileAttributesA(path, attr);
1701 }
1702 else
1703 res = 0;
1704 Py_END_ALLOW_THREADS
1705 if (!res) {
1706 win32_error("chmod", path);
1707 PyMem_Free(path);
1708 return NULL;
1709 }
Martin v. Löwis9f485bc2006-05-08 05:25:56 +00001710 PyMem_Free(path);
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001711 Py_INCREF(Py_None);
1712 return Py_None;
1713#else /* Py_WIN_WIDE_FILENAMES */
Mark Hammond817c9292003-12-03 01:22:38 +00001714 if (!PyArg_ParseTuple(args, "eti:chmod", Py_FileSystemDefaultEncoding,
Mark Hammondef8b6542001-05-13 08:04:26 +00001715 &path, &i))
Guido van Rossumffd15f52000-03-31 00:47:28 +00001716 return NULL;
1717 Py_BEGIN_ALLOW_THREADS
Guido van Rossumef40e772000-03-31 01:26:23 +00001718 res = chmod(path, i);
Guido van Rossumffd15f52000-03-31 00:47:28 +00001719 Py_END_ALLOW_THREADS
1720 if (res < 0)
Mark Hammondef8b6542001-05-13 08:04:26 +00001721 return posix_error_with_allocated_filename(path);
1722 PyMem_Free(path);
Guido van Rossumffd15f52000-03-31 00:47:28 +00001723 Py_INCREF(Py_None);
1724 return Py_None;
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001725#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001726}
1727
Christian Heimes36281872007-11-30 21:11:28 +00001728#ifdef HAVE_FCHMOD
1729PyDoc_STRVAR(posix_fchmod__doc__,
1730"fchmod(fd, mode)\n\n\
1731Change the access permissions of the file given by file\n\
1732descriptor fd.");
1733
1734static PyObject *
1735posix_fchmod(PyObject *self, PyObject *args)
1736{
1737 int fd, mode, res;
1738 if (!PyArg_ParseTuple(args, "ii:fchmod", &fd, &mode))
1739 return NULL;
1740 Py_BEGIN_ALLOW_THREADS
1741 res = fchmod(fd, mode);
1742 Py_END_ALLOW_THREADS
1743 if (res < 0)
1744 return posix_error();
1745 Py_RETURN_NONE;
1746}
1747#endif /* HAVE_FCHMOD */
1748
1749#ifdef HAVE_LCHMOD
1750PyDoc_STRVAR(posix_lchmod__doc__,
1751"lchmod(path, mode)\n\n\
1752Change the access permissions of a file. If path is a symlink, this\n\
1753affects the link itself rather than the target.");
1754
1755static PyObject *
1756posix_lchmod(PyObject *self, PyObject *args)
1757{
1758 char *path = NULL;
1759 int i;
1760 int res;
1761 if (!PyArg_ParseTuple(args, "eti:lchmod", Py_FileSystemDefaultEncoding,
1762 &path, &i))
1763 return NULL;
1764 Py_BEGIN_ALLOW_THREADS
1765 res = lchmod(path, i);
1766 Py_END_ALLOW_THREADS
1767 if (res < 0)
1768 return posix_error_with_allocated_filename(path);
1769 PyMem_Free(path);
1770 Py_RETURN_NONE;
1771}
1772#endif /* HAVE_LCHMOD */
1773
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001774
Martin v. Löwis382abef2007-02-19 10:55:19 +00001775#ifdef HAVE_CHFLAGS
1776PyDoc_STRVAR(posix_chflags__doc__,
1777"chflags(path, flags)\n\n\
1778Set file flags.");
1779
1780static PyObject *
1781posix_chflags(PyObject *self, PyObject *args)
1782{
1783 char *path;
1784 unsigned long flags;
1785 int res;
1786 if (!PyArg_ParseTuple(args, "etk:chflags",
1787 Py_FileSystemDefaultEncoding, &path, &flags))
1788 return NULL;
1789 Py_BEGIN_ALLOW_THREADS
1790 res = chflags(path, flags);
1791 Py_END_ALLOW_THREADS
1792 if (res < 0)
1793 return posix_error_with_allocated_filename(path);
1794 PyMem_Free(path);
1795 Py_INCREF(Py_None);
1796 return Py_None;
1797}
1798#endif /* HAVE_CHFLAGS */
1799
1800#ifdef HAVE_LCHFLAGS
1801PyDoc_STRVAR(posix_lchflags__doc__,
1802"lchflags(path, flags)\n\n\
1803Set file flags.\n\
1804This function will not follow symbolic links.");
1805
1806static PyObject *
1807posix_lchflags(PyObject *self, PyObject *args)
1808{
1809 char *path;
1810 unsigned long flags;
1811 int res;
1812 if (!PyArg_ParseTuple(args, "etk:lchflags",
1813 Py_FileSystemDefaultEncoding, &path, &flags))
1814 return NULL;
1815 Py_BEGIN_ALLOW_THREADS
1816 res = lchflags(path, flags);
1817 Py_END_ALLOW_THREADS
1818 if (res < 0)
1819 return posix_error_with_allocated_filename(path);
1820 PyMem_Free(path);
1821 Py_INCREF(Py_None);
1822 return Py_None;
1823}
1824#endif /* HAVE_LCHFLAGS */
1825
Martin v. Löwis244edc82001-10-04 22:44:26 +00001826#ifdef HAVE_CHROOT
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001827PyDoc_STRVAR(posix_chroot__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001828"chroot(path)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001829Change root directory to path.");
Martin v. Löwis244edc82001-10-04 22:44:26 +00001830
1831static PyObject *
1832posix_chroot(PyObject *self, PyObject *args)
1833{
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00001834 return posix_1str(args, "et:chroot", chroot);
Martin v. Löwis244edc82001-10-04 22:44:26 +00001835}
1836#endif
1837
Guido van Rossum21142a01999-01-08 21:05:37 +00001838#ifdef HAVE_FSYNC
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001839PyDoc_STRVAR(posix_fsync__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001840"fsync(fildes)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001841force write of file with filedescriptor to disk.");
Guido van Rossum21142a01999-01-08 21:05:37 +00001842
1843static PyObject *
Fred Drake4d1e64b2002-04-15 19:40:07 +00001844posix_fsync(PyObject *self, PyObject *fdobj)
Guido van Rossum21142a01999-01-08 21:05:37 +00001845{
Fred Drake4d1e64b2002-04-15 19:40:07 +00001846 return posix_fildes(fdobj, fsync);
Guido van Rossum21142a01999-01-08 21:05:37 +00001847}
1848#endif /* HAVE_FSYNC */
1849
1850#ifdef HAVE_FDATASYNC
Guido van Rossumecc23b02000-09-22 16:01:05 +00001851
Guido van Rossum7f58e2e2000-09-22 17:26:14 +00001852#ifdef __hpux
Guido van Rossumecc23b02000-09-22 16:01:05 +00001853extern int fdatasync(int); /* On HP-UX, in libc but not in unistd.h */
1854#endif
1855
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001856PyDoc_STRVAR(posix_fdatasync__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001857"fdatasync(fildes)\n\n\
Guido van Rossum21142a01999-01-08 21:05:37 +00001858force write of file with filedescriptor to disk.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001859 does not force update of metadata.");
Guido van Rossum21142a01999-01-08 21:05:37 +00001860
1861static PyObject *
Fred Drake4d1e64b2002-04-15 19:40:07 +00001862posix_fdatasync(PyObject *self, PyObject *fdobj)
Guido van Rossum21142a01999-01-08 21:05:37 +00001863{
Fred Drake4d1e64b2002-04-15 19:40:07 +00001864 return posix_fildes(fdobj, fdatasync);
Guido van Rossum21142a01999-01-08 21:05:37 +00001865}
1866#endif /* HAVE_FDATASYNC */
1867
1868
Fredrik Lundh10723342000-07-10 16:38:09 +00001869#ifdef HAVE_CHOWN
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001870PyDoc_STRVAR(posix_chown__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001871"chown(path, uid, gid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001872Change the owner and group id of path to the numeric uid and gid.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001873
Barry Warsaw53699e91996-12-10 23:23:01 +00001874static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00001875posix_chown(PyObject *self, PyObject *args)
Guido van Rossumb6775db1994-08-01 11:34:53 +00001876{
Mark Hammondef8b6542001-05-13 08:04:26 +00001877 char *path = NULL;
Gregory P. Smithf48da8f2008-03-18 19:05:32 +00001878 long uid, gid;
Fredrik Lundh44328e62000-07-10 15:59:30 +00001879 int res;
Gregory P. Smithf48da8f2008-03-18 19:05:32 +00001880 if (!PyArg_ParseTuple(args, "etll:chown",
Tim Peters5aa91602002-01-30 05:46:57 +00001881 Py_FileSystemDefaultEncoding, &path,
Mark Hammondef8b6542001-05-13 08:04:26 +00001882 &uid, &gid))
Fredrik Lundh44328e62000-07-10 15:59:30 +00001883 return NULL;
1884 Py_BEGIN_ALLOW_THREADS
1885 res = chown(path, (uid_t) uid, (gid_t) gid);
1886 Py_END_ALLOW_THREADS
1887 if (res < 0)
Mark Hammondef8b6542001-05-13 08:04:26 +00001888 return posix_error_with_allocated_filename(path);
1889 PyMem_Free(path);
Fredrik Lundh44328e62000-07-10 15:59:30 +00001890 Py_INCREF(Py_None);
1891 return Py_None;
Guido van Rossumb6775db1994-08-01 11:34:53 +00001892}
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00001893#endif /* HAVE_CHOWN */
Guido van Rossumb6775db1994-08-01 11:34:53 +00001894
Christian Heimes36281872007-11-30 21:11:28 +00001895#ifdef HAVE_FCHOWN
1896PyDoc_STRVAR(posix_fchown__doc__,
1897"fchown(fd, uid, gid)\n\n\
1898Change the owner and group id of the file given by file descriptor\n\
1899fd to the numeric uid and gid.");
1900
1901static PyObject *
1902posix_fchown(PyObject *self, PyObject *args)
1903{
1904 int fd, uid, gid;
1905 int res;
1906 if (!PyArg_ParseTuple(args, "iii:chown", &fd, &uid, &gid))
1907 return NULL;
1908 Py_BEGIN_ALLOW_THREADS
1909 res = fchown(fd, (uid_t) uid, (gid_t) gid);
1910 Py_END_ALLOW_THREADS
1911 if (res < 0)
1912 return posix_error();
1913 Py_RETURN_NONE;
1914}
1915#endif /* HAVE_FCHOWN */
1916
Martin v. Löwis0cec0ff2002-07-28 16:33:45 +00001917#ifdef HAVE_LCHOWN
1918PyDoc_STRVAR(posix_lchown__doc__,
1919"lchown(path, uid, gid)\n\n\
1920Change the owner and group id of path to the numeric uid and gid.\n\
1921This function will not follow symbolic links.");
1922
1923static PyObject *
1924posix_lchown(PyObject *self, PyObject *args)
1925{
1926 char *path = NULL;
1927 int uid, gid;
1928 int res;
1929 if (!PyArg_ParseTuple(args, "etii:lchown",
1930 Py_FileSystemDefaultEncoding, &path,
1931 &uid, &gid))
1932 return NULL;
1933 Py_BEGIN_ALLOW_THREADS
1934 res = lchown(path, (uid_t) uid, (gid_t) gid);
1935 Py_END_ALLOW_THREADS
Tim Peters11b23062003-04-23 02:39:17 +00001936 if (res < 0)
Martin v. Löwis0cec0ff2002-07-28 16:33:45 +00001937 return posix_error_with_allocated_filename(path);
1938 PyMem_Free(path);
1939 Py_INCREF(Py_None);
1940 return Py_None;
1941}
1942#endif /* HAVE_LCHOWN */
1943
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001944
Guido van Rossum36bc6801995-06-14 22:54:23 +00001945#ifdef HAVE_GETCWD
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001946PyDoc_STRVAR(posix_getcwd__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001947"getcwd() -> path\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001948Return a string representing the current working directory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001949
Barry Warsaw53699e91996-12-10 23:23:01 +00001950static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00001951posix_getcwd(PyObject *self, PyObject *noargs)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001952{
Facundo Batista5596b0c2008-06-22 13:36:20 +00001953 int bufsize_incr = 1024;
1954 int bufsize = 0;
1955 char *tmpbuf = NULL;
1956 char *res = NULL;
1957 PyObject *dynamic_return;
Neal Norwitze241ce82003-02-17 18:17:05 +00001958
Barry Warsaw53699e91996-12-10 23:23:01 +00001959 Py_BEGIN_ALLOW_THREADS
Facundo Batista5596b0c2008-06-22 13:36:20 +00001960 do {
1961 bufsize = bufsize + bufsize_incr;
1962 tmpbuf = malloc(bufsize);
1963 if (tmpbuf == NULL) {
1964 break;
1965 }
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00001966#if defined(PYOS_OS2) && defined(PYCC_GCC)
Facundo Batista5596b0c2008-06-22 13:36:20 +00001967 res = _getcwd2(tmpbuf, bufsize);
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001968#else
Facundo Batista5596b0c2008-06-22 13:36:20 +00001969 res = getcwd(tmpbuf, bufsize);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00001970#endif
Facundo Batista5596b0c2008-06-22 13:36:20 +00001971
1972 if (res == NULL) {
1973 free(tmpbuf);
1974 }
1975 } while ((res == NULL) && (errno == ERANGE));
Barry Warsaw53699e91996-12-10 23:23:01 +00001976 Py_END_ALLOW_THREADS
Facundo Batista5596b0c2008-06-22 13:36:20 +00001977
Guido van Rossumff4949e1992-08-05 19:58:53 +00001978 if (res == NULL)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001979 return posix_error();
Facundo Batista5596b0c2008-06-22 13:36:20 +00001980
1981 dynamic_return = PyString_FromString(tmpbuf);
1982 free(tmpbuf);
1983
1984 return dynamic_return;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001985}
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001986
Walter Dörwald3b918c32002-11-21 20:18:46 +00001987#ifdef Py_USING_UNICODE
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001988PyDoc_STRVAR(posix_getcwdu__doc__,
1989"getcwdu() -> path\n\n\
1990Return a unicode string representing the current working directory.");
1991
1992static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00001993posix_getcwdu(PyObject *self, PyObject *noargs)
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001994{
1995 char buf[1026];
1996 char *res;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001997
1998#ifdef Py_WIN_WIDE_FILENAMES
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001999 DWORD len;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002000 if (unicode_file_names()) {
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002001 wchar_t wbuf[1026];
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002002 wchar_t *wbuf2 = wbuf;
2003 PyObject *resobj;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002004 Py_BEGIN_ALLOW_THREADS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002005 len = GetCurrentDirectoryW(sizeof wbuf/ sizeof wbuf[0], wbuf);
2006 /* If the buffer is large enough, len does not include the
2007 terminating \0. If the buffer is too small, len includes
2008 the space needed for the terminator. */
2009 if (len >= sizeof wbuf/ sizeof wbuf[0]) {
2010 wbuf2 = malloc(len * sizeof(wchar_t));
2011 if (wbuf2)
2012 len = GetCurrentDirectoryW(len, wbuf2);
2013 }
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002014 Py_END_ALLOW_THREADS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002015 if (!wbuf2) {
2016 PyErr_NoMemory();
2017 return NULL;
2018 }
2019 if (!len) {
2020 if (wbuf2 != wbuf) free(wbuf2);
2021 return win32_error("getcwdu", NULL);
2022 }
2023 resobj = PyUnicode_FromWideChar(wbuf2, len);
2024 if (wbuf2 != wbuf) free(wbuf2);
2025 return resobj;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002026 }
2027#endif
2028
2029 Py_BEGIN_ALLOW_THREADS
2030#if defined(PYOS_OS2) && defined(PYCC_GCC)
2031 res = _getcwd2(buf, sizeof buf);
2032#else
2033 res = getcwd(buf, sizeof buf);
2034#endif
2035 Py_END_ALLOW_THREADS
2036 if (res == NULL)
2037 return posix_error();
2038 return PyUnicode_Decode(buf, strlen(buf), Py_FileSystemDefaultEncoding,"strict");
2039}
Guido van Rossum36bc6801995-06-14 22:54:23 +00002040#endif
Walter Dörwald3b918c32002-11-21 20:18:46 +00002041#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002042
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002043
Guido van Rossumb6775db1994-08-01 11:34:53 +00002044#ifdef HAVE_LINK
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002045PyDoc_STRVAR(posix_link__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002046"link(src, dst)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002047Create a hard link to a file.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002048
Barry Warsaw53699e91996-12-10 23:23:01 +00002049static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002050posix_link(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002051{
Martin v. Löwis4fc2bda2006-05-04 12:04:27 +00002052 return posix_2str(args, "etet:link", link);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002053}
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002054#endif /* HAVE_LINK */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002055
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002056
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002057PyDoc_STRVAR(posix_listdir__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002058"listdir(path) -> list_of_strings\n\n\
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002059Return a list containing the names of the entries in the directory.\n\
2060\n\
2061 path: path of directory to list\n\
2062\n\
2063The list is in arbitrary order. It does not include the special\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002064entries '.' and '..' even if they are present in the directory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002065
Barry Warsaw53699e91996-12-10 23:23:01 +00002066static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002067posix_listdir(PyObject *self, PyObject *args)
Guido van Rossumb6775db1994-08-01 11:34:53 +00002068{
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002069 /* XXX Should redo this putting the (now four) versions of opendir
Guido van Rossum6d8841c1997-08-14 19:57:39 +00002070 in separate files instead of having them all here... */
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00002071#if defined(MS_WINDOWS) && !defined(HAVE_OPENDIR)
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002072
Barry Warsaw53699e91996-12-10 23:23:01 +00002073 PyObject *d, *v;
Guido van Rossumb6775db1994-08-01 11:34:53 +00002074 HANDLE hFindFile;
Martin v. Löwise920f0d2006-03-07 23:59:33 +00002075 BOOL result;
Guido van Rossumb6775db1994-08-01 11:34:53 +00002076 WIN32_FIND_DATA FileData;
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002077 char namebuf[MAX_PATH+5]; /* Overallocate for \\*.*\0 */
Mark Hammondef8b6542001-05-13 08:04:26 +00002078 char *bufptr = namebuf;
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002079 Py_ssize_t len = sizeof(namebuf)-5; /* only claim to have space for MAX_PATH */
Guido van Rossumb6775db1994-08-01 11:34:53 +00002080
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002081#ifdef Py_WIN_WIDE_FILENAMES
2082 /* If on wide-character-capable OS see if argument
2083 is Unicode and if so use wide API. */
2084 if (unicode_file_names()) {
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002085 PyObject *po;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002086 if (PyArg_ParseTuple(args, "U:listdir", &po)) {
2087 WIN32_FIND_DATAW wFileData;
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002088 Py_UNICODE *wnamebuf;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002089 Py_UNICODE wch;
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002090 /* Overallocate for \\*.*\0 */
2091 len = PyUnicode_GET_SIZE(po);
2092 wnamebuf = malloc((len + 5) * sizeof(wchar_t));
2093 if (!wnamebuf) {
2094 PyErr_NoMemory();
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002095 return NULL;
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002096 }
2097 wcscpy(wnamebuf, PyUnicode_AS_UNICODE(po));
2098 wch = len > 0 ? wnamebuf[len-1] : '\0';
2099 if (wch != L'/' && wch != L'\\' && wch != L':')
2100 wnamebuf[len++] = L'\\';
2101 wcscpy(wnamebuf + len, L"*.*");
2102 if ((d = PyList_New(0)) == NULL) {
2103 free(wnamebuf);
2104 return NULL;
2105 }
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002106 hFindFile = FindFirstFileW(wnamebuf, &wFileData);
2107 if (hFindFile == INVALID_HANDLE_VALUE) {
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002108 int error = GetLastError();
2109 if (error == ERROR_FILE_NOT_FOUND) {
2110 free(wnamebuf);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002111 return d;
2112 }
2113 Py_DECREF(d);
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002114 win32_error_unicode("FindFirstFileW", wnamebuf);
2115 free(wnamebuf);
2116 return NULL;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002117 }
2118 do {
Martin v. Löwise920f0d2006-03-07 23:59:33 +00002119 /* Skip over . and .. */
2120 if (wcscmp(wFileData.cFileName, L".") != 0 &&
2121 wcscmp(wFileData.cFileName, L"..") != 0) {
2122 v = PyUnicode_FromUnicode(wFileData.cFileName, wcslen(wFileData.cFileName));
2123 if (v == NULL) {
2124 Py_DECREF(d);
2125 d = NULL;
2126 break;
2127 }
2128 if (PyList_Append(d, v) != 0) {
2129 Py_DECREF(v);
2130 Py_DECREF(d);
2131 d = NULL;
2132 break;
2133 }
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002134 Py_DECREF(v);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002135 }
Georg Brandl622927b2006-03-07 12:48:03 +00002136 Py_BEGIN_ALLOW_THREADS
2137 result = FindNextFileW(hFindFile, &wFileData);
2138 Py_END_ALLOW_THREADS
Martin v. Löwis982e9fe2006-07-24 12:54:17 +00002139 /* FindNextFile sets error to ERROR_NO_MORE_FILES if
2140 it got to the end of the directory. */
2141 if (!result && GetLastError() != ERROR_NO_MORE_FILES) {
2142 Py_DECREF(d);
2143 win32_error_unicode("FindNextFileW", wnamebuf);
2144 FindClose(hFindFile);
2145 free(wnamebuf);
2146 return NULL;
2147 }
Georg Brandl622927b2006-03-07 12:48:03 +00002148 } while (result == TRUE);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002149
2150 if (FindClose(hFindFile) == FALSE) {
2151 Py_DECREF(d);
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002152 win32_error_unicode("FindClose", wnamebuf);
2153 free(wnamebuf);
2154 return NULL;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002155 }
Martin v. Löwise3edaea2006-05-15 05:51:36 +00002156 free(wnamebuf);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002157 return d;
2158 }
2159 /* Drop the argument parsing error as narrow strings
2160 are also valid. */
2161 PyErr_Clear();
2162 }
2163#endif
2164
Tim Peters5aa91602002-01-30 05:46:57 +00002165 if (!PyArg_ParseTuple(args, "et#:listdir",
Mark Hammondef8b6542001-05-13 08:04:26 +00002166 Py_FileSystemDefaultEncoding, &bufptr, &len))
Guido van Rossumb6775db1994-08-01 11:34:53 +00002167 return NULL;
Neil Schemenauer94b866a2002-03-22 20:51:58 +00002168 if (len > 0) {
2169 char ch = namebuf[len-1];
2170 if (ch != SEP && ch != ALTSEP && ch != ':')
2171 namebuf[len++] = '/';
2172 }
Guido van Rossumb6775db1994-08-01 11:34:53 +00002173 strcpy(namebuf + len, "*.*");
2174
Barry Warsaw53699e91996-12-10 23:23:01 +00002175 if ((d = PyList_New(0)) == NULL)
Guido van Rossumb6775db1994-08-01 11:34:53 +00002176 return NULL;
2177
2178 hFindFile = FindFirstFile(namebuf, &FileData);
2179 if (hFindFile == INVALID_HANDLE_VALUE) {
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002180 int error = GetLastError();
2181 if (error == ERROR_FILE_NOT_FOUND)
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002182 return d;
2183 Py_DECREF(d);
Mark Hammondef8b6542001-05-13 08:04:26 +00002184 return win32_error("FindFirstFile", namebuf);
Guido van Rossumb6775db1994-08-01 11:34:53 +00002185 }
2186 do {
Martin v. Löwise920f0d2006-03-07 23:59:33 +00002187 /* Skip over . and .. */
2188 if (strcmp(FileData.cFileName, ".") != 0 &&
2189 strcmp(FileData.cFileName, "..") != 0) {
Gregory P. Smithdd96db62008-06-09 04:58:54 +00002190 v = PyString_FromString(FileData.cFileName);
Martin v. Löwise920f0d2006-03-07 23:59:33 +00002191 if (v == NULL) {
2192 Py_DECREF(d);
2193 d = NULL;
2194 break;
2195 }
2196 if (PyList_Append(d, v) != 0) {
2197 Py_DECREF(v);
2198 Py_DECREF(d);
2199 d = NULL;
2200 break;
2201 }
Barry Warsaw53699e91996-12-10 23:23:01 +00002202 Py_DECREF(v);
Guido van Rossumb6775db1994-08-01 11:34:53 +00002203 }
Georg Brandl622927b2006-03-07 12:48:03 +00002204 Py_BEGIN_ALLOW_THREADS
2205 result = FindNextFile(hFindFile, &FileData);
2206 Py_END_ALLOW_THREADS
Martin v. Löwis982e9fe2006-07-24 12:54:17 +00002207 /* FindNextFile sets error to ERROR_NO_MORE_FILES if
2208 it got to the end of the directory. */
2209 if (!result && GetLastError() != ERROR_NO_MORE_FILES) {
2210 Py_DECREF(d);
2211 win32_error("FindNextFile", namebuf);
2212 FindClose(hFindFile);
2213 return NULL;
2214 }
Georg Brandl622927b2006-03-07 12:48:03 +00002215 } while (result == TRUE);
Guido van Rossumb6775db1994-08-01 11:34:53 +00002216
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002217 if (FindClose(hFindFile) == FALSE) {
2218 Py_DECREF(d);
Mark Hammondef8b6542001-05-13 08:04:26 +00002219 return win32_error("FindClose", namebuf);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002220 }
Guido van Rossumb6775db1994-08-01 11:34:53 +00002221
2222 return d;
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002223
Tim Peters0bb44a42000-09-15 07:44:49 +00002224#elif defined(PYOS_OS2)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002225
2226#ifndef MAX_PATH
2227#define MAX_PATH CCHMAXPATH
2228#endif
2229 char *name, *pt;
Thomas Wouters68bc4f92006-03-01 01:05:10 +00002230 Py_ssize_t len;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002231 PyObject *d, *v;
2232 char namebuf[MAX_PATH+5];
2233 HDIR hdir = 1;
2234 ULONG srchcnt = 1;
2235 FILEFINDBUF3 ep;
2236 APIRET rc;
2237
Fred Drake5ab8eaf1999-12-09 21:13:07 +00002238 if (!PyArg_ParseTuple(args, "t#:listdir", &name, &len))
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002239 return NULL;
2240 if (len >= MAX_PATH) {
2241 PyErr_SetString(PyExc_ValueError, "path too long");
2242 return NULL;
2243 }
2244 strcpy(namebuf, name);
2245 for (pt = namebuf; *pt; pt++)
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00002246 if (*pt == ALTSEP)
2247 *pt = SEP;
2248 if (namebuf[len-1] != SEP)
2249 namebuf[len++] = SEP;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002250 strcpy(namebuf + len, "*.*");
2251
2252 if ((d = PyList_New(0)) == NULL)
2253 return NULL;
2254
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002255 rc = DosFindFirst(namebuf, /* Wildcard Pattern to Match */
2256 &hdir, /* Handle to Use While Search Directory */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002257 FILE_READONLY | FILE_HIDDEN | FILE_SYSTEM | FILE_DIRECTORY,
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002258 &ep, sizeof(ep), /* Structure to Receive Directory Entry */
2259 &srchcnt, /* Max and Actual Count of Entries Per Iteration */
2260 FIL_STANDARD); /* Format of Entry (EAs or Not) */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002261
2262 if (rc != NO_ERROR) {
2263 errno = ENOENT;
Barry Warsawf63b8cc1999-05-27 23:13:21 +00002264 return posix_error_with_filename(name);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002265 }
2266
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002267 if (srchcnt > 0) { /* If Directory is NOT Totally Empty, */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002268 do {
2269 if (ep.achName[0] == '.'
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00002270 && (ep.achName[1] == '\0' || (ep.achName[1] == '.' && ep.achName[2] == '\0')))
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002271 continue; /* Skip Over "." and ".." Names */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002272
2273 strcpy(namebuf, ep.achName);
2274
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002275 /* Leave Case of Name Alone -- In Native Form */
2276 /* (Removed Forced Lowercasing Code) */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002277
Gregory P. Smithdd96db62008-06-09 04:58:54 +00002278 v = PyString_FromString(namebuf);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002279 if (v == NULL) {
2280 Py_DECREF(d);
2281 d = NULL;
2282 break;
2283 }
2284 if (PyList_Append(d, v) != 0) {
2285 Py_DECREF(v);
2286 Py_DECREF(d);
2287 d = NULL;
2288 break;
2289 }
2290 Py_DECREF(v);
2291 } while (DosFindNext(hdir, &ep, sizeof(ep), &srchcnt) == NO_ERROR && srchcnt > 0);
2292 }
2293
2294 return d;
2295#else
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002296
Just van Rossum2fe07fd2003-03-03 19:07:13 +00002297 char *name = NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00002298 PyObject *d, *v;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002299 DIR *dirp;
Guido van Rossumb6775db1994-08-01 11:34:53 +00002300 struct dirent *ep;
Just van Rossum96b1c902003-03-03 17:32:15 +00002301 int arg_is_unicode = 1;
2302
Georg Brandl05e89b82006-04-11 07:04:06 +00002303 errno = 0;
Just van Rossum96b1c902003-03-03 17:32:15 +00002304 if (!PyArg_ParseTuple(args, "U:listdir", &v)) {
2305 arg_is_unicode = 0;
2306 PyErr_Clear();
2307 }
2308 if (!PyArg_ParseTuple(args, "et:listdir", Py_FileSystemDefaultEncoding, &name))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002309 return NULL;
Guido van Rossumff4949e1992-08-05 19:58:53 +00002310 if ((dirp = opendir(name)) == NULL) {
Just van Rossum2fe07fd2003-03-03 19:07:13 +00002311 return posix_error_with_allocated_filename(name);
Guido van Rossumff4949e1992-08-05 19:58:53 +00002312 }
Barry Warsaw53699e91996-12-10 23:23:01 +00002313 if ((d = PyList_New(0)) == NULL) {
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002314 closedir(dirp);
Just van Rossum2fe07fd2003-03-03 19:07:13 +00002315 PyMem_Free(name);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002316 return NULL;
2317 }
Georg Brandl622927b2006-03-07 12:48:03 +00002318 for (;;) {
Georg Brandl86cbf812008-07-16 21:31:41 +00002319 errno = 0;
Georg Brandl622927b2006-03-07 12:48:03 +00002320 Py_BEGIN_ALLOW_THREADS
2321 ep = readdir(dirp);
2322 Py_END_ALLOW_THREADS
Georg Brandl86cbf812008-07-16 21:31:41 +00002323 if (ep == NULL) {
2324 if (errno == 0) {
2325 break;
2326 } else {
2327 closedir(dirp);
2328 Py_DECREF(d);
2329 return posix_error_with_allocated_filename(name);
2330 }
2331 }
Guido van Rossum24f42ac1995-07-18 18:16:52 +00002332 if (ep->d_name[0] == '.' &&
2333 (NAMLEN(ep) == 1 ||
Guido van Rossuma376cc51996-12-05 23:43:35 +00002334 (ep->d_name[1] == '.' && NAMLEN(ep) == 2)))
Guido van Rossum24f42ac1995-07-18 18:16:52 +00002335 continue;
Gregory P. Smithdd96db62008-06-09 04:58:54 +00002336 v = PyString_FromStringAndSize(ep->d_name, NAMLEN(ep));
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002337 if (v == NULL) {
Barry Warsaw53699e91996-12-10 23:23:01 +00002338 Py_DECREF(d);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002339 d = NULL;
2340 break;
2341 }
Just van Rossum46c97842003-02-25 21:42:15 +00002342#ifdef Py_USING_UNICODE
Just van Rossum96b1c902003-03-03 17:32:15 +00002343 if (arg_is_unicode) {
Just van Rossum46c97842003-02-25 21:42:15 +00002344 PyObject *w;
2345
2346 w = PyUnicode_FromEncodedObject(v,
Tim Peters11b23062003-04-23 02:39:17 +00002347 Py_FileSystemDefaultEncoding,
Just van Rossum46c97842003-02-25 21:42:15 +00002348 "strict");
Just van Rossum6a421832003-03-04 19:30:44 +00002349 if (w != NULL) {
2350 Py_DECREF(v);
2351 v = w;
2352 }
2353 else {
2354 /* fall back to the original byte string, as
2355 discussed in patch #683592 */
2356 PyErr_Clear();
Just van Rossum46c97842003-02-25 21:42:15 +00002357 }
Just van Rossum46c97842003-02-25 21:42:15 +00002358 }
2359#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00002360 if (PyList_Append(d, v) != 0) {
2361 Py_DECREF(v);
2362 Py_DECREF(d);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002363 d = NULL;
2364 break;
2365 }
Barry Warsaw53699e91996-12-10 23:23:01 +00002366 Py_DECREF(v);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002367 }
2368 closedir(dirp);
Just van Rossum2fe07fd2003-03-03 19:07:13 +00002369 PyMem_Free(name);
Guido van Rossum0ee42cd1991-04-08 21:01:03 +00002370
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002371 return d;
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002372
Tim Peters0bb44a42000-09-15 07:44:49 +00002373#endif /* which OS */
2374} /* end of posix_listdir */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002375
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00002376#ifdef MS_WINDOWS
Mark Hammondef8b6542001-05-13 08:04:26 +00002377/* A helper function for abspath on win32 */
2378static PyObject *
2379posix__getfullpathname(PyObject *self, PyObject *args)
2380{
2381 /* assume encoded strings wont more than double no of chars */
2382 char inbuf[MAX_PATH*2];
2383 char *inbufp = inbuf;
Tim Peters67d70eb2006-03-01 04:35:45 +00002384 Py_ssize_t insize = sizeof(inbuf);
Mark Hammondef8b6542001-05-13 08:04:26 +00002385 char outbuf[MAX_PATH*2];
2386 char *temp;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002387#ifdef Py_WIN_WIDE_FILENAMES
2388 if (unicode_file_names()) {
2389 PyUnicodeObject *po;
2390 if (PyArg_ParseTuple(args, "U|:_getfullpathname", &po)) {
2391 Py_UNICODE woutbuf[MAX_PATH*2];
2392 Py_UNICODE *wtemp;
Tim Peters11b23062003-04-23 02:39:17 +00002393 if (!GetFullPathNameW(PyUnicode_AS_UNICODE(po),
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002394 sizeof(woutbuf)/sizeof(woutbuf[0]),
2395 woutbuf, &wtemp))
2396 return win32_error("GetFullPathName", "");
2397 return PyUnicode_FromUnicode(woutbuf, wcslen(woutbuf));
2398 }
2399 /* Drop the argument parsing error as narrow strings
2400 are also valid. */
2401 PyErr_Clear();
2402 }
2403#endif
Tim Peters5aa91602002-01-30 05:46:57 +00002404 if (!PyArg_ParseTuple (args, "et#:_getfullpathname",
2405 Py_FileSystemDefaultEncoding, &inbufp,
Mark Hammondef8b6542001-05-13 08:04:26 +00002406 &insize))
2407 return NULL;
2408 if (!GetFullPathName(inbuf, sizeof(outbuf)/sizeof(outbuf[0]),
2409 outbuf, &temp))
2410 return win32_error("GetFullPathName", inbuf);
Martin v. Löwis969297f2004-06-15 18:49:58 +00002411 if (PyUnicode_Check(PyTuple_GetItem(args, 0))) {
2412 return PyUnicode_Decode(outbuf, strlen(outbuf),
2413 Py_FileSystemDefaultEncoding, NULL);
2414 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00002415 return PyString_FromString(outbuf);
Mark Hammondef8b6542001-05-13 08:04:26 +00002416} /* end of posix__getfullpathname */
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00002417#endif /* MS_WINDOWS */
Mark Hammondef8b6542001-05-13 08:04:26 +00002418
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002419PyDoc_STRVAR(posix_mkdir__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002420"mkdir(path [, mode=0777])\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002421Create a directory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002422
Barry Warsaw53699e91996-12-10 23:23:01 +00002423static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002424posix_mkdir(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002425{
Guido van Rossumb0824db1996-02-25 04:50:32 +00002426 int res;
Mark Hammondef8b6542001-05-13 08:04:26 +00002427 char *path = NULL;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002428 int mode = 0777;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002429
2430#ifdef Py_WIN_WIDE_FILENAMES
2431 if (unicode_file_names()) {
2432 PyUnicodeObject *po;
Mark Hammond05107b62003-02-19 04:08:27 +00002433 if (PyArg_ParseTuple(args, "U|i:mkdir", &po, &mode)) {
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002434 Py_BEGIN_ALLOW_THREADS
2435 /* PyUnicode_AS_UNICODE OK without thread lock as
2436 it is a simple dereference. */
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002437 res = CreateDirectoryW(PyUnicode_AS_UNICODE(po), NULL);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002438 Py_END_ALLOW_THREADS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002439 if (!res)
2440 return win32_error_unicode("mkdir", PyUnicode_AS_UNICODE(po));
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002441 Py_INCREF(Py_None);
2442 return Py_None;
2443 }
2444 /* Drop the argument parsing error as narrow strings
2445 are also valid. */
2446 PyErr_Clear();
2447 }
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002448 if (!PyArg_ParseTuple(args, "et|i:mkdir",
2449 Py_FileSystemDefaultEncoding, &path, &mode))
2450 return NULL;
2451 Py_BEGIN_ALLOW_THREADS
2452 /* PyUnicode_AS_UNICODE OK without thread lock as
2453 it is a simple dereference. */
2454 res = CreateDirectoryA(path, NULL);
2455 Py_END_ALLOW_THREADS
2456 if (!res) {
2457 win32_error("mkdir", path);
2458 PyMem_Free(path);
2459 return NULL;
2460 }
2461 PyMem_Free(path);
2462 Py_INCREF(Py_None);
2463 return Py_None;
2464#else
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002465
Tim Peters5aa91602002-01-30 05:46:57 +00002466 if (!PyArg_ParseTuple(args, "et|i:mkdir",
Mark Hammondef8b6542001-05-13 08:04:26 +00002467 Py_FileSystemDefaultEncoding, &path, &mode))
Guido van Rossumb0824db1996-02-25 04:50:32 +00002468 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00002469 Py_BEGIN_ALLOW_THREADS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002470#if ( defined(__WATCOMC__) || defined(PYCC_VACPP) ) && !defined(__QNX__)
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002471 res = mkdir(path);
2472#else
Guido van Rossumb0824db1996-02-25 04:50:32 +00002473 res = mkdir(path, mode);
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002474#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00002475 Py_END_ALLOW_THREADS
Guido van Rossumb0824db1996-02-25 04:50:32 +00002476 if (res < 0)
Mark Hammondef8b6542001-05-13 08:04:26 +00002477 return posix_error_with_allocated_filename(path);
2478 PyMem_Free(path);
Barry Warsaw53699e91996-12-10 23:23:01 +00002479 Py_INCREF(Py_None);
2480 return Py_None;
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002481#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002482}
2483
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002484
Neal Norwitz1818ed72006-03-26 00:29:48 +00002485/* sys/resource.h is needed for at least: wait3(), wait4(), broken nice. */
2486#if defined(HAVE_SYS_RESOURCE_H)
Thomas Wouterse38b2f12001-07-11 22:35:31 +00002487#include <sys/resource.h>
2488#endif
Thomas Wouterse38b2f12001-07-11 22:35:31 +00002489
Neal Norwitz1818ed72006-03-26 00:29:48 +00002490
2491#ifdef HAVE_NICE
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002492PyDoc_STRVAR(posix_nice__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002493"nice(inc) -> new_priority\n\n\
2494Decrease the priority of process by inc and return the new priority.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002495
Barry Warsaw53699e91996-12-10 23:23:01 +00002496static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002497posix_nice(PyObject *self, PyObject *args)
Guido van Rossum775f4da1993-01-09 17:18:52 +00002498{
2499 int increment, value;
2500
Fred Drake5ab8eaf1999-12-09 21:13:07 +00002501 if (!PyArg_ParseTuple(args, "i:nice", &increment))
Guido van Rossum775f4da1993-01-09 17:18:52 +00002502 return NULL;
Thomas Woutersc2c12dc2001-07-11 14:45:34 +00002503
2504 /* There are two flavours of 'nice': one that returns the new
2505 priority (as required by almost all standards out there) and the
Thomas Wouterse38b2f12001-07-11 22:35:31 +00002506 Linux/FreeBSD/BSDI one, which returns '0' on success and advices
2507 the use of getpriority() to get the new priority.
Tim Peters5aa91602002-01-30 05:46:57 +00002508
Thomas Woutersc2c12dc2001-07-11 14:45:34 +00002509 If we are of the nice family that returns the new priority, we
2510 need to clear errno before the call, and check if errno is filled
2511 before calling posix_error() on a returnvalue of -1, because the
2512 -1 may be the actual new priority! */
2513
2514 errno = 0;
Guido van Rossum775f4da1993-01-09 17:18:52 +00002515 value = nice(increment);
Thomas Wouterse38b2f12001-07-11 22:35:31 +00002516#if defined(HAVE_BROKEN_NICE) && defined(HAVE_GETPRIORITY)
Thomas Woutersc2c12dc2001-07-11 14:45:34 +00002517 if (value == 0)
2518 value = getpriority(PRIO_PROCESS, 0);
2519#endif
2520 if (value == -1 && errno != 0)
2521 /* either nice() or getpriority() returned an error */
Guido van Rossum775f4da1993-01-09 17:18:52 +00002522 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00002523 return PyInt_FromLong((long) value);
Guido van Rossum775f4da1993-01-09 17:18:52 +00002524}
Guido van Rossumb6775db1994-08-01 11:34:53 +00002525#endif /* HAVE_NICE */
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002526
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002527PyDoc_STRVAR(posix_rename__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002528"rename(old, new)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002529Rename a file or directory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002530
Barry Warsaw53699e91996-12-10 23:23:01 +00002531static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002532posix_rename(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002533{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002534#ifdef MS_WINDOWS
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002535 PyObject *o1, *o2;
2536 char *p1, *p2;
2537 BOOL result;
2538 if (unicode_file_names()) {
Hirokazu Yamamotoa0fdd722008-08-17 09:19:52 +00002539 if (!PyArg_ParseTuple(args, "OO:rename", &o1, &o2))
2540 goto error;
2541 if (!convert_to_unicode(&o1))
2542 goto error;
2543 if (!convert_to_unicode(&o2)) {
2544 Py_DECREF(o1);
2545 goto error;
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002546 }
Hirokazu Yamamotoa0fdd722008-08-17 09:19:52 +00002547 Py_BEGIN_ALLOW_THREADS
2548 result = MoveFileW(PyUnicode_AsUnicode(o1),
2549 PyUnicode_AsUnicode(o2));
2550 Py_END_ALLOW_THREADS
2551 Py_DECREF(o1);
2552 Py_DECREF(o2);
2553 if (!result)
2554 return win32_error("rename", NULL);
2555 Py_INCREF(Py_None);
2556 return Py_None;
2557error:
2558 PyErr_Clear();
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002559 }
2560 if (!PyArg_ParseTuple(args, "ss:rename", &p1, &p2))
2561 return NULL;
2562 Py_BEGIN_ALLOW_THREADS
2563 result = MoveFileA(p1, p2);
2564 Py_END_ALLOW_THREADS
2565 if (!result)
2566 return win32_error("rename", NULL);
2567 Py_INCREF(Py_None);
2568 return Py_None;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002569#else
Martin v. Löwis4fc2bda2006-05-04 12:04:27 +00002570 return posix_2str(args, "etet:rename", rename);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002571#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002572}
2573
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002574
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002575PyDoc_STRVAR(posix_rmdir__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002576"rmdir(path)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002577Remove a directory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002578
Barry Warsaw53699e91996-12-10 23:23:01 +00002579static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002580posix_rmdir(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002581{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002582#ifdef MS_WINDOWS
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002583 return win32_1str(args, "rmdir", "s:rmdir", RemoveDirectoryA, "U:rmdir", RemoveDirectoryW);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002584#else
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002585 return posix_1str(args, "et:rmdir", rmdir);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002586#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002587}
2588
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002589
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002590PyDoc_STRVAR(posix_stat__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002591"stat(path) -> stat result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002592Perform a stat system call on the given path.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002593
Barry Warsaw53699e91996-12-10 23:23:01 +00002594static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002595posix_stat(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002596{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002597#ifdef MS_WINDOWS
Martin v. Löwis14694662006-02-03 12:54:16 +00002598 return posix_do_stat(self, args, "et:stat", STAT, "U:stat", win32_wstat);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002599#else
2600 return posix_do_stat(self, args, "et:stat", STAT, NULL, NULL);
2601#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002602}
2603
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002604
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002605#ifdef HAVE_SYSTEM
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002606PyDoc_STRVAR(posix_system__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002607"system(command) -> exit_status\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002608Execute the command (a string) in a subshell.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002609
Barry Warsaw53699e91996-12-10 23:23:01 +00002610static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002611posix_system(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002612{
Guido van Rossumef0a00e1992-01-27 16:51:30 +00002613 char *command;
Guido van Rossumff4949e1992-08-05 19:58:53 +00002614 long sts;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00002615 if (!PyArg_ParseTuple(args, "s:system", &command))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002616 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00002617 Py_BEGIN_ALLOW_THREADS
Guido van Rossumef0a00e1992-01-27 16:51:30 +00002618 sts = system(command);
Barry Warsaw53699e91996-12-10 23:23:01 +00002619 Py_END_ALLOW_THREADS
2620 return PyInt_FromLong(sts);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002621}
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002622#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002623
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002624
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002625PyDoc_STRVAR(posix_umask__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002626"umask(new_mask) -> old_mask\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002627Set the current numeric umask and return the previous umask.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002628
Barry Warsaw53699e91996-12-10 23:23:01 +00002629static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002630posix_umask(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002631{
2632 int i;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00002633 if (!PyArg_ParseTuple(args, "i:umask", &i))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002634 return NULL;
Fred Drake0368bc42001-07-19 20:48:32 +00002635 i = (int)umask(i);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002636 if (i < 0)
2637 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00002638 return PyInt_FromLong((long)i);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002639}
2640
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002641
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002642PyDoc_STRVAR(posix_unlink__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002643"unlink(path)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002644Remove a file (same as remove(path)).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002645
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002646PyDoc_STRVAR(posix_remove__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002647"remove(path)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002648Remove a file (same as unlink(path)).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002649
Barry Warsaw53699e91996-12-10 23:23:01 +00002650static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002651posix_unlink(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002652{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002653#ifdef MS_WINDOWS
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002654 return win32_1str(args, "remove", "s:remove", DeleteFileA, "U:remove", DeleteFileW);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002655#else
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002656 return posix_1str(args, "et:remove", unlink);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002657#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002658}
2659
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002660
Guido van Rossumb6775db1994-08-01 11:34:53 +00002661#ifdef HAVE_UNAME
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002662PyDoc_STRVAR(posix_uname__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002663"uname() -> (sysname, nodename, release, version, machine)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002664Return a tuple identifying the current operating system.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002665
Barry Warsaw53699e91996-12-10 23:23:01 +00002666static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00002667posix_uname(PyObject *self, PyObject *noargs)
Guido van Rossumc39de5f1992-02-05 11:15:54 +00002668{
Guido van Rossumc39de5f1992-02-05 11:15:54 +00002669 struct utsname u;
Guido van Rossumff4949e1992-08-05 19:58:53 +00002670 int res;
Neal Norwitze241ce82003-02-17 18:17:05 +00002671
Barry Warsaw53699e91996-12-10 23:23:01 +00002672 Py_BEGIN_ALLOW_THREADS
Guido van Rossumff4949e1992-08-05 19:58:53 +00002673 res = uname(&u);
Barry Warsaw53699e91996-12-10 23:23:01 +00002674 Py_END_ALLOW_THREADS
Guido van Rossumff4949e1992-08-05 19:58:53 +00002675 if (res < 0)
Guido van Rossumc39de5f1992-02-05 11:15:54 +00002676 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00002677 return Py_BuildValue("(sssss)",
Barry Warsaw43d68b81996-12-19 22:10:44 +00002678 u.sysname,
2679 u.nodename,
2680 u.release,
2681 u.version,
2682 u.machine);
Guido van Rossumc39de5f1992-02-05 11:15:54 +00002683}
Guido van Rossumb6775db1994-08-01 11:34:53 +00002684#endif /* HAVE_UNAME */
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002685
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002686static int
2687extract_time(PyObject *t, long* sec, long* usec)
2688{
2689 long intval;
2690 if (PyFloat_Check(t)) {
2691 double tval = PyFloat_AsDouble(t);
Christian Heimese93237d2007-12-19 02:37:44 +00002692 PyObject *intobj = Py_TYPE(t)->tp_as_number->nb_int(t);
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002693 if (!intobj)
2694 return -1;
2695 intval = PyInt_AsLong(intobj);
2696 Py_DECREF(intobj);
Michael W. Hudsonb8963812005-07-05 15:21:58 +00002697 if (intval == -1 && PyErr_Occurred())
2698 return -1;
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002699 *sec = intval;
Tim Peters96940cf2002-09-10 15:37:28 +00002700 *usec = (long)((tval - intval) * 1e6); /* can't exceed 1000000 */
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002701 if (*usec < 0)
2702 /* If rounding gave us a negative number,
2703 truncate. */
2704 *usec = 0;
2705 return 0;
2706 }
2707 intval = PyInt_AsLong(t);
2708 if (intval == -1 && PyErr_Occurred())
2709 return -1;
2710 *sec = intval;
2711 *usec = 0;
Martin v. Löwis076b2092002-09-10 15:04:41 +00002712 return 0;
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002713}
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002714
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002715PyDoc_STRVAR(posix_utime__doc__,
Georg Brandl9e5b5e42006-05-17 14:18:20 +00002716"utime(path, (atime, mtime))\n\
Fred Drakef7ce04d2002-06-20 18:31:21 +00002717utime(path, None)\n\n\
Barry Warsaw3cef8562000-05-01 16:17:24 +00002718Set the access and modified time of the file to the given values. If the\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002719second form is used, set the access and modified times to the current time.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002720
Barry Warsaw53699e91996-12-10 23:23:01 +00002721static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002722posix_utime(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002723{
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002724#ifdef Py_WIN_WIDE_FILENAMES
2725 PyObject *arg;
2726 PyUnicodeObject *obwpath;
2727 wchar_t *wpath = NULL;
2728 char *apath = NULL;
2729 HANDLE hFile;
2730 long atimesec, mtimesec, ausec, musec;
2731 FILETIME atime, mtime;
2732 PyObject *result = NULL;
2733
2734 if (unicode_file_names()) {
2735 if (PyArg_ParseTuple(args, "UO|:utime", &obwpath, &arg)) {
2736 wpath = PyUnicode_AS_UNICODE(obwpath);
2737 Py_BEGIN_ALLOW_THREADS
2738 hFile = CreateFileW(wpath, FILE_WRITE_ATTRIBUTES, 0,
Martin v. Löwis18aaa562006-10-15 08:43:33 +00002739 NULL, OPEN_EXISTING,
2740 FILE_FLAG_BACKUP_SEMANTICS, NULL);
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002741 Py_END_ALLOW_THREADS
2742 if (hFile == INVALID_HANDLE_VALUE)
2743 return win32_error_unicode("utime", wpath);
2744 } else
2745 /* Drop the argument parsing error as narrow strings
2746 are also valid. */
2747 PyErr_Clear();
2748 }
2749 if (!wpath) {
2750 if (!PyArg_ParseTuple(args, "etO:utime",
2751 Py_FileSystemDefaultEncoding, &apath, &arg))
2752 return NULL;
2753 Py_BEGIN_ALLOW_THREADS
2754 hFile = CreateFileA(apath, FILE_WRITE_ATTRIBUTES, 0,
Martin v. Löwis18aaa562006-10-15 08:43:33 +00002755 NULL, OPEN_EXISTING,
2756 FILE_FLAG_BACKUP_SEMANTICS, NULL);
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002757 Py_END_ALLOW_THREADS
2758 if (hFile == INVALID_HANDLE_VALUE) {
2759 win32_error("utime", apath);
2760 PyMem_Free(apath);
2761 return NULL;
2762 }
2763 PyMem_Free(apath);
2764 }
2765
2766 if (arg == Py_None) {
2767 SYSTEMTIME now;
2768 GetSystemTime(&now);
2769 if (!SystemTimeToFileTime(&now, &mtime) ||
2770 !SystemTimeToFileTime(&now, &atime)) {
2771 win32_error("utime", NULL);
2772 goto done;
2773 }
2774 }
2775 else if (!PyTuple_Check(arg) || PyTuple_Size(arg) != 2) {
2776 PyErr_SetString(PyExc_TypeError,
2777 "utime() arg 2 must be a tuple (atime, mtime)");
2778 goto done;
2779 }
2780 else {
2781 if (extract_time(PyTuple_GET_ITEM(arg, 0),
2782 &atimesec, &ausec) == -1)
2783 goto done;
Martin v. Löwisf43893a2006-10-09 20:44:25 +00002784 time_t_to_FILE_TIME(atimesec, 1000*ausec, &atime);
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002785 if (extract_time(PyTuple_GET_ITEM(arg, 1),
2786 &mtimesec, &musec) == -1)
2787 goto done;
Martin v. Löwisf43893a2006-10-09 20:44:25 +00002788 time_t_to_FILE_TIME(mtimesec, 1000*musec, &mtime);
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002789 }
2790 if (!SetFileTime(hFile, NULL, &atime, &mtime)) {
2791 /* Avoid putting the file name into the error here,
2792 as that may confuse the user into believing that
2793 something is wrong with the file, when it also
2794 could be the time stamp that gives a problem. */
2795 win32_error("utime", NULL);
2796 }
2797 Py_INCREF(Py_None);
2798 result = Py_None;
2799done:
2800 CloseHandle(hFile);
2801 return result;
2802#else /* Py_WIN_WIDE_FILENAMES */
2803
Neal Norwitz2adf2102004-06-09 01:46:02 +00002804 char *path = NULL;
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002805 long atime, mtime, ausec, musec;
Guido van Rossumff4949e1992-08-05 19:58:53 +00002806 int res;
Barry Warsaw3cef8562000-05-01 16:17:24 +00002807 PyObject* arg;
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002808
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002809#if defined(HAVE_UTIMES)
2810 struct timeval buf[2];
2811#define ATIME buf[0].tv_sec
2812#define MTIME buf[1].tv_sec
2813#elif defined(HAVE_UTIME_H)
Guido van Rossum6d8841c1997-08-14 19:57:39 +00002814/* XXX should define struct utimbuf instead, above */
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002815 struct utimbuf buf;
2816#define ATIME buf.actime
2817#define MTIME buf.modtime
2818#define UTIME_ARG &buf
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002819#else /* HAVE_UTIMES */
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002820 time_t buf[2];
2821#define ATIME buf[0]
2822#define MTIME buf[1]
2823#define UTIME_ARG buf
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002824#endif /* HAVE_UTIMES */
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002825
Mark Hammond817c9292003-12-03 01:22:38 +00002826
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002827 if (!PyArg_ParseTuple(args, "etO:utime",
Hye-Shik Chang2b2c9732004-01-04 13:54:25 +00002828 Py_FileSystemDefaultEncoding, &path, &arg))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002829 return NULL;
Barry Warsaw3cef8562000-05-01 16:17:24 +00002830 if (arg == Py_None) {
2831 /* optional time values not given */
2832 Py_BEGIN_ALLOW_THREADS
2833 res = utime(path, NULL);
2834 Py_END_ALLOW_THREADS
2835 }
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002836 else if (!PyTuple_Check(arg) || PyTuple_Size(arg) != 2) {
Barry Warsaw3cef8562000-05-01 16:17:24 +00002837 PyErr_SetString(PyExc_TypeError,
Fred Drake661ea262000-10-24 19:57:45 +00002838 "utime() arg 2 must be a tuple (atime, mtime)");
Neal Norwitz96652712004-06-06 20:40:27 +00002839 PyMem_Free(path);
Barry Warsaw3cef8562000-05-01 16:17:24 +00002840 return NULL;
2841 }
2842 else {
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002843 if (extract_time(PyTuple_GET_ITEM(arg, 0),
Neal Norwitz96652712004-06-06 20:40:27 +00002844 &atime, &ausec) == -1) {
2845 PyMem_Free(path);
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002846 return NULL;
Neal Norwitz96652712004-06-06 20:40:27 +00002847 }
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002848 if (extract_time(PyTuple_GET_ITEM(arg, 1),
Neal Norwitz96652712004-06-06 20:40:27 +00002849 &mtime, &musec) == -1) {
2850 PyMem_Free(path);
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002851 return NULL;
Neal Norwitz96652712004-06-06 20:40:27 +00002852 }
Barry Warsaw3cef8562000-05-01 16:17:24 +00002853 ATIME = atime;
2854 MTIME = mtime;
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002855#ifdef HAVE_UTIMES
2856 buf[0].tv_usec = ausec;
2857 buf[1].tv_usec = musec;
2858 Py_BEGIN_ALLOW_THREADS
2859 res = utimes(path, buf);
2860 Py_END_ALLOW_THREADS
2861#else
Barry Warsaw3cef8562000-05-01 16:17:24 +00002862 Py_BEGIN_ALLOW_THREADS
2863 res = utime(path, UTIME_ARG);
2864 Py_END_ALLOW_THREADS
Mark Hammond817c9292003-12-03 01:22:38 +00002865#endif /* HAVE_UTIMES */
Barry Warsaw3cef8562000-05-01 16:17:24 +00002866 }
Mark Hammond2d5914b2004-05-04 08:10:37 +00002867 if (res < 0) {
Neal Norwitz96652712004-06-06 20:40:27 +00002868 return posix_error_with_allocated_filename(path);
Mark Hammond2d5914b2004-05-04 08:10:37 +00002869 }
Neal Norwitz96652712004-06-06 20:40:27 +00002870 PyMem_Free(path);
Barry Warsaw53699e91996-12-10 23:23:01 +00002871 Py_INCREF(Py_None);
2872 return Py_None;
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002873#undef UTIME_ARG
2874#undef ATIME
2875#undef MTIME
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002876#endif /* Py_WIN_WIDE_FILENAMES */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002877}
2878
Guido van Rossum85e3b011991-06-03 12:42:10 +00002879
Guido van Rossum3b066191991-06-04 19:40:25 +00002880/* Process operations */
Guido van Rossum85e3b011991-06-03 12:42:10 +00002881
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002882PyDoc_STRVAR(posix__exit__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002883"_exit(status)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002884Exit to the system with specified status, without normal exit processing.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002885
Barry Warsaw53699e91996-12-10 23:23:01 +00002886static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002887posix__exit(PyObject *self, PyObject *args)
Guido van Rossum85e3b011991-06-03 12:42:10 +00002888{
2889 int sts;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00002890 if (!PyArg_ParseTuple(args, "i:_exit", &sts))
Guido van Rossum85e3b011991-06-03 12:42:10 +00002891 return NULL;
2892 _exit(sts);
Guido van Rossuma376cc51996-12-05 23:43:35 +00002893 return NULL; /* Make gcc -Wall happy */
Guido van Rossum85e3b011991-06-03 12:42:10 +00002894}
2895
Martin v. Löwis114619e2002-10-07 06:44:21 +00002896#if defined(HAVE_EXECV) || defined(HAVE_SPAWNV)
2897static void
Martin v. Löwis725507b2006-03-07 12:08:51 +00002898free_string_array(char **array, Py_ssize_t count)
Martin v. Löwis114619e2002-10-07 06:44:21 +00002899{
Martin v. Löwis725507b2006-03-07 12:08:51 +00002900 Py_ssize_t i;
Martin v. Löwis114619e2002-10-07 06:44:21 +00002901 for (i = 0; i < count; i++)
2902 PyMem_Free(array[i]);
2903 PyMem_DEL(array);
2904}
2905#endif
2906
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002907
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002908#ifdef HAVE_EXECV
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002909PyDoc_STRVAR(posix_execv__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002910"execv(path, args)\n\n\
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002911Execute an executable path with arguments, replacing current process.\n\
2912\n\
2913 path: path of executable file\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002914 args: tuple or list of strings");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002915
Barry Warsaw53699e91996-12-10 23:23:01 +00002916static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002917posix_execv(PyObject *self, PyObject *args)
Guido van Rossum85e3b011991-06-03 12:42:10 +00002918{
Guido van Rossumef0a00e1992-01-27 16:51:30 +00002919 char *path;
Barry Warsaw53699e91996-12-10 23:23:01 +00002920 PyObject *argv;
Guido van Rossum85e3b011991-06-03 12:42:10 +00002921 char **argvlist;
Martin v. Löwis725507b2006-03-07 12:08:51 +00002922 Py_ssize_t i, argc;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002923 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Guido van Rossum85e3b011991-06-03 12:42:10 +00002924
Guido van Rossum89b33251993-10-22 14:26:06 +00002925 /* execv has two arguments: (path, argv), where
Guido van Rossum85e3b011991-06-03 12:42:10 +00002926 argv is a list or tuple of strings. */
2927
Martin v. Löwis114619e2002-10-07 06:44:21 +00002928 if (!PyArg_ParseTuple(args, "etO:execv",
2929 Py_FileSystemDefaultEncoding,
2930 &path, &argv))
Guido van Rossum85e3b011991-06-03 12:42:10 +00002931 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00002932 if (PyList_Check(argv)) {
2933 argc = PyList_Size(argv);
2934 getitem = PyList_GetItem;
Guido van Rossum85e3b011991-06-03 12:42:10 +00002935 }
Barry Warsaw53699e91996-12-10 23:23:01 +00002936 else if (PyTuple_Check(argv)) {
2937 argc = PyTuple_Size(argv);
2938 getitem = PyTuple_GetItem;
Guido van Rossum85e3b011991-06-03 12:42:10 +00002939 }
Guido van Rossumef0a00e1992-01-27 16:51:30 +00002940 else {
Fred Drake661ea262000-10-24 19:57:45 +00002941 PyErr_SetString(PyExc_TypeError, "execv() arg 2 must be a tuple or list");
Martin v. Löwis114619e2002-10-07 06:44:21 +00002942 PyMem_Free(path);
Guido van Rossum50422b42000-04-26 20:34:28 +00002943 return NULL;
2944 }
2945
Barry Warsaw53699e91996-12-10 23:23:01 +00002946 argvlist = PyMem_NEW(char *, argc+1);
Martin v. Löwis114619e2002-10-07 06:44:21 +00002947 if (argvlist == NULL) {
2948 PyMem_Free(path);
Neal Norwitzec74f2f2003-02-11 23:05:40 +00002949 return PyErr_NoMemory();
Martin v. Löwis114619e2002-10-07 06:44:21 +00002950 }
Guido van Rossum85e3b011991-06-03 12:42:10 +00002951 for (i = 0; i < argc; i++) {
Martin v. Löwis114619e2002-10-07 06:44:21 +00002952 if (!PyArg_Parse((*getitem)(argv, i), "et",
2953 Py_FileSystemDefaultEncoding,
2954 &argvlist[i])) {
2955 free_string_array(argvlist, i);
Tim Peters5aa91602002-01-30 05:46:57 +00002956 PyErr_SetString(PyExc_TypeError,
Fred Drake661ea262000-10-24 19:57:45 +00002957 "execv() arg 2 must contain only strings");
Martin v. Löwis114619e2002-10-07 06:44:21 +00002958 PyMem_Free(path);
Guido van Rossum50422b42000-04-26 20:34:28 +00002959 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00002960
Guido van Rossum85e3b011991-06-03 12:42:10 +00002961 }
Guido van Rossum85e3b011991-06-03 12:42:10 +00002962 }
2963 argvlist[argc] = NULL;
2964
Guido van Rossumef0a00e1992-01-27 16:51:30 +00002965 execv(path, argvlist);
Guido van Rossumb6775db1994-08-01 11:34:53 +00002966
Guido van Rossum85e3b011991-06-03 12:42:10 +00002967 /* If we get here it's definitely an error */
2968
Martin v. Löwis114619e2002-10-07 06:44:21 +00002969 free_string_array(argvlist, argc);
2970 PyMem_Free(path);
Guido van Rossum85e3b011991-06-03 12:42:10 +00002971 return posix_error();
2972}
2973
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002974
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002975PyDoc_STRVAR(posix_execve__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002976"execve(path, args, env)\n\n\
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002977Execute a path with arguments and environment, replacing current process.\n\
2978\n\
2979 path: path of executable file\n\
2980 args: tuple or list of arguments\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002981 env: dictionary of strings mapping to strings");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002982
Barry Warsaw53699e91996-12-10 23:23:01 +00002983static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002984posix_execve(PyObject *self, PyObject *args)
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00002985{
2986 char *path;
Barry Warsaw53699e91996-12-10 23:23:01 +00002987 PyObject *argv, *env;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00002988 char **argvlist;
2989 char **envlist;
Barry Warsaw5ed19dc1997-01-29 15:08:24 +00002990 PyObject *key, *val, *keys=NULL, *vals=NULL;
Martin v. Löwis725507b2006-03-07 12:08:51 +00002991 Py_ssize_t i, pos, argc, envc;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002992 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Martin v. Löwis26fd9602006-04-22 11:15:41 +00002993 Py_ssize_t lastarg = 0;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00002994
2995 /* execve has three arguments: (path, argv, env), where
2996 argv is a list or tuple of strings and env is a dictionary
2997 like posix.environ. */
2998
Martin v. Löwis114619e2002-10-07 06:44:21 +00002999 if (!PyArg_ParseTuple(args, "etOO:execve",
3000 Py_FileSystemDefaultEncoding,
3001 &path, &argv, &env))
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003002 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00003003 if (PyList_Check(argv)) {
3004 argc = PyList_Size(argv);
3005 getitem = PyList_GetItem;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003006 }
Barry Warsaw53699e91996-12-10 23:23:01 +00003007 else if (PyTuple_Check(argv)) {
3008 argc = PyTuple_Size(argv);
3009 getitem = PyTuple_GetItem;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003010 }
3011 else {
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003012 PyErr_SetString(PyExc_TypeError,
3013 "execve() arg 2 must be a tuple or list");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003014 goto fail_0;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003015 }
Barry Warsaw5ed19dc1997-01-29 15:08:24 +00003016 if (!PyMapping_Check(env)) {
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003017 PyErr_SetString(PyExc_TypeError,
3018 "execve() arg 3 must be a mapping object");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003019 goto fail_0;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003020 }
3021
Barry Warsaw53699e91996-12-10 23:23:01 +00003022 argvlist = PyMem_NEW(char *, argc+1);
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003023 if (argvlist == NULL) {
Barry Warsaw53699e91996-12-10 23:23:01 +00003024 PyErr_NoMemory();
Martin v. Löwis114619e2002-10-07 06:44:21 +00003025 goto fail_0;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003026 }
3027 for (i = 0; i < argc; i++) {
Barry Warsaw53699e91996-12-10 23:23:01 +00003028 if (!PyArg_Parse((*getitem)(argv, i),
Martin v. Löwis114619e2002-10-07 06:44:21 +00003029 "et;execve() arg 2 must contain only strings",
Guido van Rossum1e700d22002-10-16 16:52:11 +00003030 Py_FileSystemDefaultEncoding,
Barry Warsaw43d68b81996-12-19 22:10:44 +00003031 &argvlist[i]))
3032 {
Martin v. Löwis114619e2002-10-07 06:44:21 +00003033 lastarg = i;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003034 goto fail_1;
3035 }
3036 }
Martin v. Löwis114619e2002-10-07 06:44:21 +00003037 lastarg = argc;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003038 argvlist[argc] = NULL;
3039
Jeremy Hylton03657cf2000-07-12 13:05:33 +00003040 i = PyMapping_Size(env);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003041 if (i < 0)
3042 goto fail_1;
Barry Warsaw53699e91996-12-10 23:23:01 +00003043 envlist = PyMem_NEW(char *, i + 1);
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003044 if (envlist == NULL) {
Barry Warsaw53699e91996-12-10 23:23:01 +00003045 PyErr_NoMemory();
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003046 goto fail_1;
3047 }
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003048 envc = 0;
Barry Warsaw5ed19dc1997-01-29 15:08:24 +00003049 keys = PyMapping_Keys(env);
3050 vals = PyMapping_Values(env);
3051 if (!keys || !vals)
3052 goto fail_2;
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003053 if (!PyList_Check(keys) || !PyList_Check(vals)) {
3054 PyErr_SetString(PyExc_TypeError,
3055 "execve(): env.keys() or env.values() is not a list");
3056 goto fail_2;
3057 }
Tim Peters5aa91602002-01-30 05:46:57 +00003058
Barry Warsaw5ed19dc1997-01-29 15:08:24 +00003059 for (pos = 0; pos < i; pos++) {
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003060 char *p, *k, *v;
Tim Petersc8996f52001-12-03 20:41:00 +00003061 size_t len;
Barry Warsaw5ed19dc1997-01-29 15:08:24 +00003062
3063 key = PyList_GetItem(keys, pos);
3064 val = PyList_GetItem(vals, pos);
3065 if (!key || !val)
3066 goto fail_2;
Tim Peters5aa91602002-01-30 05:46:57 +00003067
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003068 if (!PyArg_Parse(
3069 key,
3070 "s;execve() arg 3 contains a non-string key",
3071 &k) ||
3072 !PyArg_Parse(
3073 val,
3074 "s;execve() arg 3 contains a non-string value",
3075 &v))
Barry Warsaw43d68b81996-12-19 22:10:44 +00003076 {
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003077 goto fail_2;
3078 }
Guido van Rossumd48f2521997-12-05 22:19:34 +00003079
3080#if defined(PYOS_OS2)
3081 /* Omit Pseudo-Env Vars that Would Confuse Programs if Passed On */
3082 if (stricmp(k, "BEGINLIBPATH") != 0 && stricmp(k, "ENDLIBPATH") != 0) {
3083#endif
Gregory P. Smithdd96db62008-06-09 04:58:54 +00003084 len = PyString_Size(key) + PyString_Size(val) + 2;
Tim Petersc8996f52001-12-03 20:41:00 +00003085 p = PyMem_NEW(char, len);
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003086 if (p == NULL) {
Barry Warsaw53699e91996-12-10 23:23:01 +00003087 PyErr_NoMemory();
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003088 goto fail_2;
3089 }
Tim Petersc8996f52001-12-03 20:41:00 +00003090 PyOS_snprintf(p, len, "%s=%s", k, v);
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003091 envlist[envc++] = p;
Guido van Rossumd48f2521997-12-05 22:19:34 +00003092#if defined(PYOS_OS2)
3093 }
3094#endif
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003095 }
3096 envlist[envc] = 0;
3097
3098 execve(path, argvlist, envlist);
Tim Peters5aa91602002-01-30 05:46:57 +00003099
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003100 /* If we get here it's definitely an error */
3101
3102 (void) posix_error();
3103
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003104 fail_2:
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003105 while (--envc >= 0)
Barry Warsaw53699e91996-12-10 23:23:01 +00003106 PyMem_DEL(envlist[envc]);
3107 PyMem_DEL(envlist);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003108 fail_1:
3109 free_string_array(argvlist, lastarg);
Barry Warsaw5ed19dc1997-01-29 15:08:24 +00003110 Py_XDECREF(vals);
3111 Py_XDECREF(keys);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003112 fail_0:
Martin v. Löwis114619e2002-10-07 06:44:21 +00003113 PyMem_Free(path);
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003114 return NULL;
3115}
Guido van Rossuma4916fa1996-05-23 22:58:55 +00003116#endif /* HAVE_EXECV */
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003117
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003118
Guido van Rossuma1065681999-01-25 23:20:23 +00003119#ifdef HAVE_SPAWNV
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003120PyDoc_STRVAR(posix_spawnv__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003121"spawnv(mode, path, args)\n\n\
Tim Peters25059d32001-12-07 20:35:43 +00003122Execute the program 'path' in a new process.\n\
Guido van Rossuma1065681999-01-25 23:20:23 +00003123\n\
Fred Drakea6dff3e1999-02-01 22:24:40 +00003124 mode: mode of process creation\n\
Guido van Rossuma1065681999-01-25 23:20:23 +00003125 path: path of executable file\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003126 args: tuple or list of strings");
Guido van Rossuma1065681999-01-25 23:20:23 +00003127
3128static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00003129posix_spawnv(PyObject *self, PyObject *args)
Guido van Rossuma1065681999-01-25 23:20:23 +00003130{
3131 char *path;
3132 PyObject *argv;
3133 char **argvlist;
Martin v. Löwis26fd9602006-04-22 11:15:41 +00003134 int mode, i;
3135 Py_ssize_t argc;
Tim Peters79248aa2001-08-29 21:37:10 +00003136 Py_intptr_t spawnval;
Martin v. Löwis18e16552006-02-15 17:27:45 +00003137 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Guido van Rossuma1065681999-01-25 23:20:23 +00003138
3139 /* spawnv has three arguments: (mode, path, argv), where
3140 argv is a list or tuple of strings. */
3141
Martin v. Löwis114619e2002-10-07 06:44:21 +00003142 if (!PyArg_ParseTuple(args, "ietO:spawnv", &mode,
3143 Py_FileSystemDefaultEncoding,
3144 &path, &argv))
Guido van Rossuma1065681999-01-25 23:20:23 +00003145 return NULL;
3146 if (PyList_Check(argv)) {
3147 argc = PyList_Size(argv);
3148 getitem = PyList_GetItem;
3149 }
3150 else if (PyTuple_Check(argv)) {
3151 argc = PyTuple_Size(argv);
3152 getitem = PyTuple_GetItem;
3153 }
3154 else {
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003155 PyErr_SetString(PyExc_TypeError,
3156 "spawnv() arg 2 must be a tuple or list");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003157 PyMem_Free(path);
Guido van Rossuma1065681999-01-25 23:20:23 +00003158 return NULL;
3159 }
3160
3161 argvlist = PyMem_NEW(char *, argc+1);
Martin v. Löwis114619e2002-10-07 06:44:21 +00003162 if (argvlist == NULL) {
3163 PyMem_Free(path);
Neal Norwitzec74f2f2003-02-11 23:05:40 +00003164 return PyErr_NoMemory();
Martin v. Löwis114619e2002-10-07 06:44:21 +00003165 }
Guido van Rossuma1065681999-01-25 23:20:23 +00003166 for (i = 0; i < argc; i++) {
Martin v. Löwis114619e2002-10-07 06:44:21 +00003167 if (!PyArg_Parse((*getitem)(argv, i), "et",
3168 Py_FileSystemDefaultEncoding,
3169 &argvlist[i])) {
3170 free_string_array(argvlist, i);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003171 PyErr_SetString(
3172 PyExc_TypeError,
3173 "spawnv() arg 2 must contain only strings");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003174 PyMem_Free(path);
Fred Drake137507e2000-06-01 02:02:46 +00003175 return NULL;
Guido van Rossuma1065681999-01-25 23:20:23 +00003176 }
3177 }
3178 argvlist[argc] = NULL;
3179
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00003180#if defined(PYOS_OS2) && defined(PYCC_GCC)
3181 Py_BEGIN_ALLOW_THREADS
3182 spawnval = spawnv(mode, path, argvlist);
3183 Py_END_ALLOW_THREADS
3184#else
Guido van Rossum246bc171999-02-01 23:54:31 +00003185 if (mode == _OLD_P_OVERLAY)
3186 mode = _P_OVERLAY;
Tim Peters5aa91602002-01-30 05:46:57 +00003187
Tim Peters25059d32001-12-07 20:35:43 +00003188 Py_BEGIN_ALLOW_THREADS
Fred Drake699f3522000-06-29 21:12:41 +00003189 spawnval = _spawnv(mode, path, argvlist);
Tim Peters25059d32001-12-07 20:35:43 +00003190 Py_END_ALLOW_THREADS
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00003191#endif
Tim Peters5aa91602002-01-30 05:46:57 +00003192
Martin v. Löwis114619e2002-10-07 06:44:21 +00003193 free_string_array(argvlist, argc);
3194 PyMem_Free(path);
Guido van Rossuma1065681999-01-25 23:20:23 +00003195
Fred Drake699f3522000-06-29 21:12:41 +00003196 if (spawnval == -1)
Guido van Rossuma1065681999-01-25 23:20:23 +00003197 return posix_error();
3198 else
Fredrik Lundhe25cfd82000-07-09 13:10:40 +00003199#if SIZEOF_LONG == SIZEOF_VOID_P
3200 return Py_BuildValue("l", (long) spawnval);
Fred Drake699f3522000-06-29 21:12:41 +00003201#else
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00003202 return Py_BuildValue("L", (PY_LONG_LONG) spawnval);
Fred Drake699f3522000-06-29 21:12:41 +00003203#endif
Guido van Rossuma1065681999-01-25 23:20:23 +00003204}
3205
3206
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003207PyDoc_STRVAR(posix_spawnve__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003208"spawnve(mode, path, args, env)\n\n\
Tim Peters25059d32001-12-07 20:35:43 +00003209Execute the program 'path' in a new process.\n\
Guido van Rossuma1065681999-01-25 23:20:23 +00003210\n\
Fred Drakea6dff3e1999-02-01 22:24:40 +00003211 mode: mode of process creation\n\
Guido van Rossuma1065681999-01-25 23:20:23 +00003212 path: path of executable file\n\
3213 args: tuple or list of arguments\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003214 env: dictionary of strings mapping to strings");
Guido van Rossuma1065681999-01-25 23:20:23 +00003215
3216static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00003217posix_spawnve(PyObject *self, PyObject *args)
Guido van Rossuma1065681999-01-25 23:20:23 +00003218{
3219 char *path;
3220 PyObject *argv, *env;
3221 char **argvlist;
3222 char **envlist;
3223 PyObject *key, *val, *keys=NULL, *vals=NULL, *res=NULL;
Martin v. Löwis26fd9602006-04-22 11:15:41 +00003224 int mode, pos, envc;
3225 Py_ssize_t argc, i;
Tim Peters79248aa2001-08-29 21:37:10 +00003226 Py_intptr_t spawnval;
Martin v. Löwis18e16552006-02-15 17:27:45 +00003227 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Martin v. Löwis26fd9602006-04-22 11:15:41 +00003228 Py_ssize_t lastarg = 0;
Guido van Rossuma1065681999-01-25 23:20:23 +00003229
3230 /* spawnve has four arguments: (mode, path, argv, env), where
3231 argv is a list or tuple of strings and env is a dictionary
3232 like posix.environ. */
3233
Martin v. Löwis114619e2002-10-07 06:44:21 +00003234 if (!PyArg_ParseTuple(args, "ietOO:spawnve", &mode,
3235 Py_FileSystemDefaultEncoding,
3236 &path, &argv, &env))
Guido van Rossuma1065681999-01-25 23:20:23 +00003237 return NULL;
3238 if (PyList_Check(argv)) {
3239 argc = PyList_Size(argv);
3240 getitem = PyList_GetItem;
3241 }
3242 else if (PyTuple_Check(argv)) {
3243 argc = PyTuple_Size(argv);
3244 getitem = PyTuple_GetItem;
3245 }
3246 else {
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003247 PyErr_SetString(PyExc_TypeError,
3248 "spawnve() arg 2 must be a tuple or list");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003249 goto fail_0;
Guido van Rossuma1065681999-01-25 23:20:23 +00003250 }
3251 if (!PyMapping_Check(env)) {
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003252 PyErr_SetString(PyExc_TypeError,
3253 "spawnve() arg 3 must be a mapping object");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003254 goto fail_0;
Guido van Rossuma1065681999-01-25 23:20:23 +00003255 }
3256
3257 argvlist = PyMem_NEW(char *, argc+1);
3258 if (argvlist == NULL) {
3259 PyErr_NoMemory();
Martin v. Löwis114619e2002-10-07 06:44:21 +00003260 goto fail_0;
Guido van Rossuma1065681999-01-25 23:20:23 +00003261 }
3262 for (i = 0; i < argc; i++) {
3263 if (!PyArg_Parse((*getitem)(argv, i),
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003264 "et;spawnve() arg 2 must contain only strings",
Martin v. Löwis114619e2002-10-07 06:44:21 +00003265 Py_FileSystemDefaultEncoding,
Guido van Rossuma1065681999-01-25 23:20:23 +00003266 &argvlist[i]))
3267 {
Martin v. Löwis114619e2002-10-07 06:44:21 +00003268 lastarg = i;
Guido van Rossuma1065681999-01-25 23:20:23 +00003269 goto fail_1;
3270 }
3271 }
Martin v. Löwis114619e2002-10-07 06:44:21 +00003272 lastarg = argc;
Guido van Rossuma1065681999-01-25 23:20:23 +00003273 argvlist[argc] = NULL;
3274
Jeremy Hylton03657cf2000-07-12 13:05:33 +00003275 i = PyMapping_Size(env);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003276 if (i < 0)
3277 goto fail_1;
Guido van Rossuma1065681999-01-25 23:20:23 +00003278 envlist = PyMem_NEW(char *, i + 1);
3279 if (envlist == NULL) {
3280 PyErr_NoMemory();
3281 goto fail_1;
3282 }
3283 envc = 0;
3284 keys = PyMapping_Keys(env);
3285 vals = PyMapping_Values(env);
3286 if (!keys || !vals)
3287 goto fail_2;
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003288 if (!PyList_Check(keys) || !PyList_Check(vals)) {
3289 PyErr_SetString(PyExc_TypeError,
3290 "spawnve(): env.keys() or env.values() is not a list");
3291 goto fail_2;
3292 }
Tim Peters5aa91602002-01-30 05:46:57 +00003293
Guido van Rossuma1065681999-01-25 23:20:23 +00003294 for (pos = 0; pos < i; pos++) {
3295 char *p, *k, *v;
Tim Petersc8996f52001-12-03 20:41:00 +00003296 size_t len;
Guido van Rossuma1065681999-01-25 23:20:23 +00003297
3298 key = PyList_GetItem(keys, pos);
3299 val = PyList_GetItem(vals, pos);
3300 if (!key || !val)
3301 goto fail_2;
Tim Peters5aa91602002-01-30 05:46:57 +00003302
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003303 if (!PyArg_Parse(
3304 key,
3305 "s;spawnve() arg 3 contains a non-string key",
3306 &k) ||
3307 !PyArg_Parse(
3308 val,
3309 "s;spawnve() arg 3 contains a non-string value",
3310 &v))
Guido van Rossuma1065681999-01-25 23:20:23 +00003311 {
3312 goto fail_2;
3313 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00003314 len = PyString_Size(key) + PyString_Size(val) + 2;
Tim Petersc8996f52001-12-03 20:41:00 +00003315 p = PyMem_NEW(char, len);
Guido van Rossuma1065681999-01-25 23:20:23 +00003316 if (p == NULL) {
3317 PyErr_NoMemory();
3318 goto fail_2;
3319 }
Tim Petersc8996f52001-12-03 20:41:00 +00003320 PyOS_snprintf(p, len, "%s=%s", k, v);
Guido van Rossuma1065681999-01-25 23:20:23 +00003321 envlist[envc++] = p;
3322 }
3323 envlist[envc] = 0;
3324
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00003325#if defined(PYOS_OS2) && defined(PYCC_GCC)
3326 Py_BEGIN_ALLOW_THREADS
3327 spawnval = spawnve(mode, path, argvlist, envlist);
3328 Py_END_ALLOW_THREADS
3329#else
Guido van Rossum246bc171999-02-01 23:54:31 +00003330 if (mode == _OLD_P_OVERLAY)
3331 mode = _P_OVERLAY;
Tim Peters25059d32001-12-07 20:35:43 +00003332
3333 Py_BEGIN_ALLOW_THREADS
Fred Drake699f3522000-06-29 21:12:41 +00003334 spawnval = _spawnve(mode, path, argvlist, envlist);
Tim Peters25059d32001-12-07 20:35:43 +00003335 Py_END_ALLOW_THREADS
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00003336#endif
Tim Peters25059d32001-12-07 20:35:43 +00003337
Fred Drake699f3522000-06-29 21:12:41 +00003338 if (spawnval == -1)
Guido van Rossuma1065681999-01-25 23:20:23 +00003339 (void) posix_error();
3340 else
Fredrik Lundhe25cfd82000-07-09 13:10:40 +00003341#if SIZEOF_LONG == SIZEOF_VOID_P
3342 res = Py_BuildValue("l", (long) spawnval);
Fred Drake699f3522000-06-29 21:12:41 +00003343#else
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00003344 res = Py_BuildValue("L", (PY_LONG_LONG) spawnval);
Fred Drake699f3522000-06-29 21:12:41 +00003345#endif
Guido van Rossuma1065681999-01-25 23:20:23 +00003346
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003347 fail_2:
Guido van Rossuma1065681999-01-25 23:20:23 +00003348 while (--envc >= 0)
3349 PyMem_DEL(envlist[envc]);
3350 PyMem_DEL(envlist);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003351 fail_1:
Martin v. Löwis114619e2002-10-07 06:44:21 +00003352 free_string_array(argvlist, lastarg);
Guido van Rossuma1065681999-01-25 23:20:23 +00003353 Py_XDECREF(vals);
3354 Py_XDECREF(keys);
Martin v. Löwis114619e2002-10-07 06:44:21 +00003355 fail_0:
3356 PyMem_Free(path);
Guido van Rossuma1065681999-01-25 23:20:23 +00003357 return res;
3358}
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003359
3360/* OS/2 supports spawnvp & spawnvpe natively */
3361#if defined(PYOS_OS2)
3362PyDoc_STRVAR(posix_spawnvp__doc__,
3363"spawnvp(mode, file, args)\n\n\
3364Execute the program 'file' in a new process, using the environment\n\
3365search path to find the file.\n\
3366\n\
3367 mode: mode of process creation\n\
3368 file: executable file name\n\
3369 args: tuple or list of strings");
3370
3371static PyObject *
3372posix_spawnvp(PyObject *self, PyObject *args)
3373{
3374 char *path;
3375 PyObject *argv;
3376 char **argvlist;
3377 int mode, i, argc;
3378 Py_intptr_t spawnval;
Martin v. Löwis18e16552006-02-15 17:27:45 +00003379 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003380
3381 /* spawnvp has three arguments: (mode, path, argv), where
3382 argv is a list or tuple of strings. */
3383
3384 if (!PyArg_ParseTuple(args, "ietO:spawnvp", &mode,
3385 Py_FileSystemDefaultEncoding,
3386 &path, &argv))
3387 return NULL;
3388 if (PyList_Check(argv)) {
3389 argc = PyList_Size(argv);
3390 getitem = PyList_GetItem;
3391 }
3392 else if (PyTuple_Check(argv)) {
3393 argc = PyTuple_Size(argv);
3394 getitem = PyTuple_GetItem;
3395 }
3396 else {
3397 PyErr_SetString(PyExc_TypeError,
3398 "spawnvp() arg 2 must be a tuple or list");
3399 PyMem_Free(path);
3400 return NULL;
3401 }
3402
3403 argvlist = PyMem_NEW(char *, argc+1);
3404 if (argvlist == NULL) {
3405 PyMem_Free(path);
3406 return PyErr_NoMemory();
3407 }
3408 for (i = 0; i < argc; i++) {
3409 if (!PyArg_Parse((*getitem)(argv, i), "et",
3410 Py_FileSystemDefaultEncoding,
3411 &argvlist[i])) {
3412 free_string_array(argvlist, i);
3413 PyErr_SetString(
3414 PyExc_TypeError,
3415 "spawnvp() arg 2 must contain only strings");
3416 PyMem_Free(path);
3417 return NULL;
3418 }
3419 }
3420 argvlist[argc] = NULL;
3421
3422 Py_BEGIN_ALLOW_THREADS
3423#if defined(PYCC_GCC)
3424 spawnval = spawnvp(mode, path, argvlist);
3425#else
3426 spawnval = _spawnvp(mode, path, argvlist);
3427#endif
3428 Py_END_ALLOW_THREADS
3429
3430 free_string_array(argvlist, argc);
3431 PyMem_Free(path);
3432
3433 if (spawnval == -1)
3434 return posix_error();
3435 else
3436 return Py_BuildValue("l", (long) spawnval);
3437}
3438
3439
3440PyDoc_STRVAR(posix_spawnvpe__doc__,
3441"spawnvpe(mode, file, args, env)\n\n\
3442Execute the program 'file' in a new process, using the environment\n\
3443search path to find the file.\n\
3444\n\
3445 mode: mode of process creation\n\
3446 file: executable file name\n\
3447 args: tuple or list of arguments\n\
3448 env: dictionary of strings mapping to strings");
3449
3450static PyObject *
3451posix_spawnvpe(PyObject *self, PyObject *args)
3452{
3453 char *path;
3454 PyObject *argv, *env;
3455 char **argvlist;
3456 char **envlist;
3457 PyObject *key, *val, *keys=NULL, *vals=NULL, *res=NULL;
3458 int mode, i, pos, argc, envc;
3459 Py_intptr_t spawnval;
Martin v. Löwis18e16552006-02-15 17:27:45 +00003460 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003461 int lastarg = 0;
3462
3463 /* spawnvpe has four arguments: (mode, path, argv, env), where
3464 argv is a list or tuple of strings and env is a dictionary
3465 like posix.environ. */
3466
3467 if (!PyArg_ParseTuple(args, "ietOO:spawnvpe", &mode,
3468 Py_FileSystemDefaultEncoding,
3469 &path, &argv, &env))
3470 return NULL;
3471 if (PyList_Check(argv)) {
3472 argc = PyList_Size(argv);
3473 getitem = PyList_GetItem;
3474 }
3475 else if (PyTuple_Check(argv)) {
3476 argc = PyTuple_Size(argv);
3477 getitem = PyTuple_GetItem;
3478 }
3479 else {
3480 PyErr_SetString(PyExc_TypeError,
3481 "spawnvpe() arg 2 must be a tuple or list");
3482 goto fail_0;
3483 }
3484 if (!PyMapping_Check(env)) {
3485 PyErr_SetString(PyExc_TypeError,
3486 "spawnvpe() arg 3 must be a mapping object");
3487 goto fail_0;
3488 }
3489
3490 argvlist = PyMem_NEW(char *, argc+1);
3491 if (argvlist == NULL) {
3492 PyErr_NoMemory();
3493 goto fail_0;
3494 }
3495 for (i = 0; i < argc; i++) {
3496 if (!PyArg_Parse((*getitem)(argv, i),
3497 "et;spawnvpe() arg 2 must contain only strings",
3498 Py_FileSystemDefaultEncoding,
3499 &argvlist[i]))
3500 {
3501 lastarg = i;
3502 goto fail_1;
3503 }
3504 }
3505 lastarg = argc;
3506 argvlist[argc] = NULL;
3507
3508 i = PyMapping_Size(env);
3509 if (i < 0)
3510 goto fail_1;
3511 envlist = PyMem_NEW(char *, i + 1);
3512 if (envlist == NULL) {
3513 PyErr_NoMemory();
3514 goto fail_1;
3515 }
3516 envc = 0;
3517 keys = PyMapping_Keys(env);
3518 vals = PyMapping_Values(env);
3519 if (!keys || !vals)
3520 goto fail_2;
3521 if (!PyList_Check(keys) || !PyList_Check(vals)) {
3522 PyErr_SetString(PyExc_TypeError,
3523 "spawnvpe(): env.keys() or env.values() is not a list");
3524 goto fail_2;
3525 }
3526
3527 for (pos = 0; pos < i; pos++) {
3528 char *p, *k, *v;
3529 size_t len;
3530
3531 key = PyList_GetItem(keys, pos);
3532 val = PyList_GetItem(vals, pos);
3533 if (!key || !val)
3534 goto fail_2;
3535
3536 if (!PyArg_Parse(
3537 key,
3538 "s;spawnvpe() arg 3 contains a non-string key",
3539 &k) ||
3540 !PyArg_Parse(
3541 val,
3542 "s;spawnvpe() arg 3 contains a non-string value",
3543 &v))
3544 {
3545 goto fail_2;
3546 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00003547 len = PyString_Size(key) + PyString_Size(val) + 2;
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003548 p = PyMem_NEW(char, len);
3549 if (p == NULL) {
3550 PyErr_NoMemory();
3551 goto fail_2;
3552 }
3553 PyOS_snprintf(p, len, "%s=%s", k, v);
3554 envlist[envc++] = p;
3555 }
3556 envlist[envc] = 0;
3557
3558 Py_BEGIN_ALLOW_THREADS
3559#if defined(PYCC_GCC)
Andrew MacIntyre94dcf0d2008-02-03 07:07:31 +00003560 spawnval = spawnvpe(mode, path, argvlist, envlist);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003561#else
Andrew MacIntyre94dcf0d2008-02-03 07:07:31 +00003562 spawnval = _spawnvpe(mode, path, argvlist, envlist);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003563#endif
3564 Py_END_ALLOW_THREADS
3565
3566 if (spawnval == -1)
3567 (void) posix_error();
3568 else
3569 res = Py_BuildValue("l", (long) spawnval);
3570
3571 fail_2:
3572 while (--envc >= 0)
3573 PyMem_DEL(envlist[envc]);
3574 PyMem_DEL(envlist);
3575 fail_1:
3576 free_string_array(argvlist, lastarg);
3577 Py_XDECREF(vals);
3578 Py_XDECREF(keys);
3579 fail_0:
3580 PyMem_Free(path);
3581 return res;
3582}
3583#endif /* PYOS_OS2 */
Guido van Rossuma1065681999-01-25 23:20:23 +00003584#endif /* HAVE_SPAWNV */
3585
3586
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003587#ifdef HAVE_FORK1
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003588PyDoc_STRVAR(posix_fork1__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003589"fork1() -> pid\n\n\
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003590Fork a child process with a single multiplexed (i.e., not bound) thread.\n\
3591\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003592Return 0 to child process and PID of child to parent process.");
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003593
3594static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003595posix_fork1(PyObject *self, PyObject *noargs)
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003596{
Christian Heimes951cc0f2008-01-31 23:08:23 +00003597 pid_t pid = fork1();
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003598 if (pid == -1)
3599 return posix_error();
Gregory P. Smithfb7a50f2008-07-14 06:06:48 +00003600 if (pid == 0)
3601 PyOS_AfterFork();
Christian Heimes951cc0f2008-01-31 23:08:23 +00003602 return PyInt_FromLong(pid);
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003603}
3604#endif
3605
3606
Guido van Rossumad0ee831995-03-01 10:34:45 +00003607#ifdef HAVE_FORK
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003608PyDoc_STRVAR(posix_fork__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003609"fork() -> pid\n\n\
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003610Fork a child process.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003611Return 0 to child process and PID of child to parent process.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003612
Barry Warsaw53699e91996-12-10 23:23:01 +00003613static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003614posix_fork(PyObject *self, PyObject *noargs)
Guido van Rossum85e3b011991-06-03 12:42:10 +00003615{
Christian Heimes951cc0f2008-01-31 23:08:23 +00003616 pid_t pid = fork();
Guido van Rossum85e3b011991-06-03 12:42:10 +00003617 if (pid == -1)
3618 return posix_error();
Fred Drake49b0c3b2000-07-06 19:42:19 +00003619 if (pid == 0)
3620 PyOS_AfterFork();
Christian Heimes951cc0f2008-01-31 23:08:23 +00003621 return PyInt_FromLong(pid);
Guido van Rossum85e3b011991-06-03 12:42:10 +00003622}
Guido van Rossumad0ee831995-03-01 10:34:45 +00003623#endif
Guido van Rossum85e3b011991-06-03 12:42:10 +00003624
Neal Norwitzb59798b2003-03-21 01:43:31 +00003625/* AIX uses /dev/ptc but is otherwise the same as /dev/ptmx */
Neal Norwitz2deaddb2003-03-21 03:08:31 +00003626/* IRIX has both /dev/ptc and /dev/ptmx, use ptmx */
3627#if defined(HAVE_DEV_PTC) && !defined(HAVE_DEV_PTMX)
Neal Norwitzb59798b2003-03-21 01:43:31 +00003628#define DEV_PTY_FILE "/dev/ptc"
3629#define HAVE_DEV_PTMX
3630#else
3631#define DEV_PTY_FILE "/dev/ptmx"
3632#endif
3633
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003634#if defined(HAVE_OPENPTY) || defined(HAVE_FORKPTY) || defined(HAVE_DEV_PTMX)
Fred Drake8cef4cf2000-06-28 16:40:38 +00003635#ifdef HAVE_PTY_H
3636#include <pty.h>
3637#else
3638#ifdef HAVE_LIBUTIL_H
3639#include <libutil.h>
Fred Drake8cef4cf2000-06-28 16:40:38 +00003640#endif /* HAVE_LIBUTIL_H */
3641#endif /* HAVE_PTY_H */
Martin v. Löwis14e73b12003-01-01 09:51:12 +00003642#ifdef HAVE_STROPTS_H
3643#include <stropts.h>
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003644#endif
3645#endif /* defined(HAVE_OPENPTY) || defined(HAVE_FORKPTY) || defined(HAVE_DEV_PTMX */
Fred Drake8cef4cf2000-06-28 16:40:38 +00003646
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003647#if defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX)
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003648PyDoc_STRVAR(posix_openpty__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003649"openpty() -> (master_fd, slave_fd)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003650Open a pseudo-terminal, returning open fd's for both master and slave end.\n");
Fred Drake8cef4cf2000-06-28 16:40:38 +00003651
3652static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003653posix_openpty(PyObject *self, PyObject *noargs)
Fred Drake8cef4cf2000-06-28 16:40:38 +00003654{
3655 int master_fd, slave_fd;
Thomas Wouters70c21a12000-07-14 14:28:33 +00003656#ifndef HAVE_OPENPTY
3657 char * slave_name;
Thomas Wouters70c21a12000-07-14 14:28:33 +00003658#endif
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003659#if defined(HAVE_DEV_PTMX) && !defined(HAVE_OPENPTY) && !defined(HAVE__GETPTY)
Martin v. Löwisc8b2e772002-12-31 14:30:26 +00003660 PyOS_sighandler_t sig_saved;
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003661#ifdef sun
Neal Norwitz84a98e02006-04-10 07:44:23 +00003662 extern char *ptsname(int fildes);
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003663#endif
3664#endif
Thomas Wouters70c21a12000-07-14 14:28:33 +00003665
Thomas Wouters70c21a12000-07-14 14:28:33 +00003666#ifdef HAVE_OPENPTY
Fred Drake8cef4cf2000-06-28 16:40:38 +00003667 if (openpty(&master_fd, &slave_fd, NULL, NULL, NULL) != 0)
3668 return posix_error();
Neal Norwitzb59798b2003-03-21 01:43:31 +00003669#elif defined(HAVE__GETPTY)
Thomas Wouters70c21a12000-07-14 14:28:33 +00003670 slave_name = _getpty(&master_fd, O_RDWR, 0666, 0);
3671 if (slave_name == NULL)
3672 return posix_error();
3673
3674 slave_fd = open(slave_name, O_RDWR);
3675 if (slave_fd < 0)
3676 return posix_error();
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003677#else
Neal Norwitzb59798b2003-03-21 01:43:31 +00003678 master_fd = open(DEV_PTY_FILE, O_RDWR | O_NOCTTY); /* open master */
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003679 if (master_fd < 0)
3680 return posix_error();
Anthony Baxter9ceaa722004-10-13 14:48:50 +00003681 sig_saved = PyOS_setsig(SIGCHLD, SIG_DFL);
Martin v. Löwisc8b2e772002-12-31 14:30:26 +00003682 /* change permission of slave */
3683 if (grantpt(master_fd) < 0) {
Anthony Baxter9ceaa722004-10-13 14:48:50 +00003684 PyOS_setsig(SIGCHLD, sig_saved);
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003685 return posix_error();
Martin v. Löwisc8b2e772002-12-31 14:30:26 +00003686 }
3687 /* unlock slave */
3688 if (unlockpt(master_fd) < 0) {
Anthony Baxter9ceaa722004-10-13 14:48:50 +00003689 PyOS_setsig(SIGCHLD, sig_saved);
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003690 return posix_error();
Martin v. Löwisc8b2e772002-12-31 14:30:26 +00003691 }
Anthony Baxter9ceaa722004-10-13 14:48:50 +00003692 PyOS_setsig(SIGCHLD, sig_saved);
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003693 slave_name = ptsname(master_fd); /* get name of slave */
3694 if (slave_name == NULL)
3695 return posix_error();
3696 slave_fd = open(slave_name, O_RDWR | O_NOCTTY); /* open slave */
3697 if (slave_fd < 0)
3698 return posix_error();
Neal Norwitzb59798b2003-03-21 01:43:31 +00003699#if !defined(__CYGWIN__) && !defined(HAVE_DEV_PTC)
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003700 ioctl(slave_fd, I_PUSH, "ptem"); /* push ptem */
3701 ioctl(slave_fd, I_PUSH, "ldterm"); /* push ldterm */
Neal Norwitz6700e472002-12-31 16:16:07 +00003702#ifndef __hpux
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003703 ioctl(slave_fd, I_PUSH, "ttcompat"); /* push ttcompat */
Neal Norwitz6700e472002-12-31 16:16:07 +00003704#endif /* __hpux */
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003705#endif /* HAVE_CYGWIN */
Thomas Wouters1e0c2f42000-07-24 16:06:23 +00003706#endif /* HAVE_OPENPTY */
Thomas Wouters70c21a12000-07-14 14:28:33 +00003707
Fred Drake8cef4cf2000-06-28 16:40:38 +00003708 return Py_BuildValue("(ii)", master_fd, slave_fd);
Thomas Wouters70c21a12000-07-14 14:28:33 +00003709
Fred Drake8cef4cf2000-06-28 16:40:38 +00003710}
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003711#endif /* defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX) */
Fred Drake8cef4cf2000-06-28 16:40:38 +00003712
3713#ifdef HAVE_FORKPTY
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003714PyDoc_STRVAR(posix_forkpty__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003715"forkpty() -> (pid, master_fd)\n\n\
Fred Drake8cef4cf2000-06-28 16:40:38 +00003716Fork a new process with a new pseudo-terminal as controlling tty.\n\n\
3717Like fork(), return 0 as pid to child process, and PID of child to parent.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003718To both, return fd of newly opened pseudo-terminal.\n");
Fred Drake8cef4cf2000-06-28 16:40:38 +00003719
3720static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003721posix_forkpty(PyObject *self, PyObject *noargs)
Fred Drake8cef4cf2000-06-28 16:40:38 +00003722{
Christian Heimes951cc0f2008-01-31 23:08:23 +00003723 int master_fd = -1;
3724 pid_t pid;
Tim Peters5aa91602002-01-30 05:46:57 +00003725
Fred Drake8cef4cf2000-06-28 16:40:38 +00003726 pid = forkpty(&master_fd, NULL, NULL, NULL);
3727 if (pid == -1)
3728 return posix_error();
Fred Drake49b0c3b2000-07-06 19:42:19 +00003729 if (pid == 0)
3730 PyOS_AfterFork();
Christian Heimes951cc0f2008-01-31 23:08:23 +00003731 return Py_BuildValue("(li)", pid, master_fd);
Fred Drake8cef4cf2000-06-28 16:40:38 +00003732}
3733#endif
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003734
Guido van Rossumad0ee831995-03-01 10:34:45 +00003735#ifdef HAVE_GETEGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003736PyDoc_STRVAR(posix_getegid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003737"getegid() -> egid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003738Return the current process's effective group id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003739
Barry Warsaw53699e91996-12-10 23:23:01 +00003740static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003741posix_getegid(PyObject *self, PyObject *noargs)
Guido van Rossum46003ff1992-05-15 11:05:24 +00003742{
Barry Warsaw53699e91996-12-10 23:23:01 +00003743 return PyInt_FromLong((long)getegid());
Guido van Rossum46003ff1992-05-15 11:05:24 +00003744}
Guido van Rossumad0ee831995-03-01 10:34:45 +00003745#endif
Guido van Rossum46003ff1992-05-15 11:05:24 +00003746
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003747
Guido van Rossumad0ee831995-03-01 10:34:45 +00003748#ifdef HAVE_GETEUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003749PyDoc_STRVAR(posix_geteuid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003750"geteuid() -> euid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003751Return the current process's effective user id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003752
Barry Warsaw53699e91996-12-10 23:23:01 +00003753static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003754posix_geteuid(PyObject *self, PyObject *noargs)
Guido van Rossum46003ff1992-05-15 11:05:24 +00003755{
Barry Warsaw53699e91996-12-10 23:23:01 +00003756 return PyInt_FromLong((long)geteuid());
Guido van Rossum46003ff1992-05-15 11:05:24 +00003757}
Guido van Rossumad0ee831995-03-01 10:34:45 +00003758#endif
Guido van Rossum46003ff1992-05-15 11:05:24 +00003759
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003760
Guido van Rossumad0ee831995-03-01 10:34:45 +00003761#ifdef HAVE_GETGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003762PyDoc_STRVAR(posix_getgid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003763"getgid() -> gid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003764Return the current process's group id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003765
Barry Warsaw53699e91996-12-10 23:23:01 +00003766static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003767posix_getgid(PyObject *self, PyObject *noargs)
Guido van Rossum46003ff1992-05-15 11:05:24 +00003768{
Barry Warsaw53699e91996-12-10 23:23:01 +00003769 return PyInt_FromLong((long)getgid());
Guido van Rossum46003ff1992-05-15 11:05:24 +00003770}
Guido van Rossumad0ee831995-03-01 10:34:45 +00003771#endif
Guido van Rossum46003ff1992-05-15 11:05:24 +00003772
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003773
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003774PyDoc_STRVAR(posix_getpid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003775"getpid() -> pid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003776Return the current process id");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003777
Barry Warsaw53699e91996-12-10 23:23:01 +00003778static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003779posix_getpid(PyObject *self, PyObject *noargs)
Guido van Rossum85e3b011991-06-03 12:42:10 +00003780{
Barry Warsaw53699e91996-12-10 23:23:01 +00003781 return PyInt_FromLong((long)getpid());
Guido van Rossum85e3b011991-06-03 12:42:10 +00003782}
3783
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003784
Fred Drakec9680921999-12-13 16:37:25 +00003785#ifdef HAVE_GETGROUPS
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003786PyDoc_STRVAR(posix_getgroups__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003787"getgroups() -> list of group IDs\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003788Return list of supplemental group IDs for the process.");
Fred Drakec9680921999-12-13 16:37:25 +00003789
3790static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003791posix_getgroups(PyObject *self, PyObject *noargs)
Fred Drakec9680921999-12-13 16:37:25 +00003792{
3793 PyObject *result = NULL;
3794
Fred Drakec9680921999-12-13 16:37:25 +00003795#ifdef NGROUPS_MAX
3796#define MAX_GROUPS NGROUPS_MAX
3797#else
3798 /* defined to be 16 on Solaris7, so this should be a small number */
3799#define MAX_GROUPS 64
3800#endif
3801 gid_t grouplist[MAX_GROUPS];
3802 int n;
3803
3804 n = getgroups(MAX_GROUPS, grouplist);
3805 if (n < 0)
3806 posix_error();
3807 else {
3808 result = PyList_New(n);
3809 if (result != NULL) {
Fred Drakec9680921999-12-13 16:37:25 +00003810 int i;
3811 for (i = 0; i < n; ++i) {
Neal Norwitze241ce82003-02-17 18:17:05 +00003812 PyObject *o = PyInt_FromLong((long)grouplist[i]);
Fred Drakec9680921999-12-13 16:37:25 +00003813 if (o == NULL) {
3814 Py_DECREF(result);
3815 result = NULL;
3816 break;
3817 }
3818 PyList_SET_ITEM(result, i, o);
3819 }
3820 }
3821 }
Neal Norwitze241ce82003-02-17 18:17:05 +00003822
Fred Drakec9680921999-12-13 16:37:25 +00003823 return result;
3824}
3825#endif
3826
Martin v. Löwis606edc12002-06-13 21:09:11 +00003827#ifdef HAVE_GETPGID
Neal Norwitz0c2c17c2002-06-13 21:22:11 +00003828PyDoc_STRVAR(posix_getpgid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003829"getpgid(pid) -> pgid\n\n\
Neal Norwitz0c2c17c2002-06-13 21:22:11 +00003830Call the system call getpgid().");
Martin v. Löwis606edc12002-06-13 21:09:11 +00003831
3832static PyObject *
3833posix_getpgid(PyObject *self, PyObject *args)
3834{
3835 int pid, pgid;
3836 if (!PyArg_ParseTuple(args, "i:getpgid", &pid))
3837 return NULL;
3838 pgid = getpgid(pid);
3839 if (pgid < 0)
3840 return posix_error();
3841 return PyInt_FromLong((long)pgid);
3842}
3843#endif /* HAVE_GETPGID */
3844
3845
Guido van Rossumb6775db1994-08-01 11:34:53 +00003846#ifdef HAVE_GETPGRP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003847PyDoc_STRVAR(posix_getpgrp__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003848"getpgrp() -> pgrp\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003849Return the current process group id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003850
Barry Warsaw53699e91996-12-10 23:23:01 +00003851static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003852posix_getpgrp(PyObject *self, PyObject *noargs)
Guido van Rossum04814471991-06-04 20:23:49 +00003853{
Guido van Rossumb6775db1994-08-01 11:34:53 +00003854#ifdef GETPGRP_HAVE_ARG
Barry Warsaw53699e91996-12-10 23:23:01 +00003855 return PyInt_FromLong((long)getpgrp(0));
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00003856#else /* GETPGRP_HAVE_ARG */
Barry Warsaw53699e91996-12-10 23:23:01 +00003857 return PyInt_FromLong((long)getpgrp());
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00003858#endif /* GETPGRP_HAVE_ARG */
Guido van Rossum04814471991-06-04 20:23:49 +00003859}
Guido van Rossumb6775db1994-08-01 11:34:53 +00003860#endif /* HAVE_GETPGRP */
Guido van Rossum04814471991-06-04 20:23:49 +00003861
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003862
Guido van Rossumb6775db1994-08-01 11:34:53 +00003863#ifdef HAVE_SETPGRP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003864PyDoc_STRVAR(posix_setpgrp__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003865"setpgrp()\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003866Make this process a session leader.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003867
Barry Warsaw53699e91996-12-10 23:23:01 +00003868static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003869posix_setpgrp(PyObject *self, PyObject *noargs)
Guido van Rossumc2670a01992-09-13 20:07:29 +00003870{
Guido van Rossum64933891994-10-20 21:56:42 +00003871#ifdef SETPGRP_HAVE_ARG
Guido van Rossumc2670a01992-09-13 20:07:29 +00003872 if (setpgrp(0, 0) < 0)
Guido van Rossum64933891994-10-20 21:56:42 +00003873#else /* SETPGRP_HAVE_ARG */
Guido van Rossumb6775db1994-08-01 11:34:53 +00003874 if (setpgrp() < 0)
Guido van Rossum64933891994-10-20 21:56:42 +00003875#endif /* SETPGRP_HAVE_ARG */
Guido van Rossum687dd131993-05-17 08:34:16 +00003876 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00003877 Py_INCREF(Py_None);
3878 return Py_None;
Guido van Rossumc2670a01992-09-13 20:07:29 +00003879}
3880
Guido van Rossumb6775db1994-08-01 11:34:53 +00003881#endif /* HAVE_SETPGRP */
3882
Guido van Rossumad0ee831995-03-01 10:34:45 +00003883#ifdef HAVE_GETPPID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003884PyDoc_STRVAR(posix_getppid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003885"getppid() -> ppid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003886Return the parent's process id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003887
Barry Warsaw53699e91996-12-10 23:23:01 +00003888static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003889posix_getppid(PyObject *self, PyObject *noargs)
Guido van Rossum85e3b011991-06-03 12:42:10 +00003890{
Christian Heimesd491d712008-02-01 18:49:26 +00003891 return PyInt_FromLong(getppid());
Guido van Rossum85e3b011991-06-03 12:42:10 +00003892}
Guido van Rossumad0ee831995-03-01 10:34:45 +00003893#endif
Guido van Rossum85e3b011991-06-03 12:42:10 +00003894
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003895
Fred Drake12c6e2d1999-12-14 21:25:03 +00003896#ifdef HAVE_GETLOGIN
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003897PyDoc_STRVAR(posix_getlogin__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003898"getlogin() -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003899Return the actual login name.");
Fred Drake12c6e2d1999-12-14 21:25:03 +00003900
3901static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003902posix_getlogin(PyObject *self, PyObject *noargs)
Fred Drake12c6e2d1999-12-14 21:25:03 +00003903{
Neal Norwitze241ce82003-02-17 18:17:05 +00003904 PyObject *result = NULL;
Fred Drakea30680b2000-12-06 21:24:28 +00003905 char *name;
3906 int old_errno = errno;
Fred Drake12c6e2d1999-12-14 21:25:03 +00003907
Fred Drakea30680b2000-12-06 21:24:28 +00003908 errno = 0;
3909 name = getlogin();
3910 if (name == NULL) {
3911 if (errno)
3912 posix_error();
3913 else
3914 PyErr_SetString(PyExc_OSError,
Fred Drakee63544f2000-12-06 21:45:33 +00003915 "unable to determine login name");
Fred Drakea30680b2000-12-06 21:24:28 +00003916 }
Fred Drake12c6e2d1999-12-14 21:25:03 +00003917 else
Gregory P. Smithdd96db62008-06-09 04:58:54 +00003918 result = PyString_FromString(name);
Fred Drakea30680b2000-12-06 21:24:28 +00003919 errno = old_errno;
Neal Norwitze241ce82003-02-17 18:17:05 +00003920
Fred Drake12c6e2d1999-12-14 21:25:03 +00003921 return result;
3922}
3923#endif
3924
Guido van Rossumad0ee831995-03-01 10:34:45 +00003925#ifdef HAVE_GETUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003926PyDoc_STRVAR(posix_getuid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003927"getuid() -> uid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003928Return the current process's user id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003929
Barry Warsaw53699e91996-12-10 23:23:01 +00003930static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003931posix_getuid(PyObject *self, PyObject *noargs)
Guido van Rossum46003ff1992-05-15 11:05:24 +00003932{
Barry Warsaw53699e91996-12-10 23:23:01 +00003933 return PyInt_FromLong((long)getuid());
Guido van Rossum46003ff1992-05-15 11:05:24 +00003934}
Guido van Rossumad0ee831995-03-01 10:34:45 +00003935#endif
Guido van Rossum46003ff1992-05-15 11:05:24 +00003936
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003937
Guido van Rossumad0ee831995-03-01 10:34:45 +00003938#ifdef HAVE_KILL
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003939PyDoc_STRVAR(posix_kill__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003940"kill(pid, sig)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003941Kill a process with a signal.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003942
Barry Warsaw53699e91996-12-10 23:23:01 +00003943static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00003944posix_kill(PyObject *self, PyObject *args)
Guido van Rossum85e3b011991-06-03 12:42:10 +00003945{
Christian Heimesd491d712008-02-01 18:49:26 +00003946 pid_t pid;
3947 int sig;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00003948 if (!PyArg_ParseTuple(args, "ii:kill", &pid, &sig))
Guido van Rossum85e3b011991-06-03 12:42:10 +00003949 return NULL;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00003950#if defined(PYOS_OS2) && !defined(PYCC_GCC)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00003951 if (sig == XCPT_SIGNAL_INTR || sig == XCPT_SIGNAL_BREAK) {
3952 APIRET rc;
3953 if ((rc = DosSendSignalException(pid, sig)) != NO_ERROR)
Guido van Rossumd48f2521997-12-05 22:19:34 +00003954 return os2_error(rc);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00003955
3956 } else if (sig == XCPT_SIGNAL_KILLPROC) {
3957 APIRET rc;
3958 if ((rc = DosKillProcess(DKP_PROCESS, pid)) != NO_ERROR)
Guido van Rossumd48f2521997-12-05 22:19:34 +00003959 return os2_error(rc);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00003960
3961 } else
Guido van Rossumc5a0f531997-12-02 20:36:02 +00003962 return NULL; /* Unrecognized Signal Requested */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00003963#else
Guido van Rossum85e3b011991-06-03 12:42:10 +00003964 if (kill(pid, sig) == -1)
3965 return posix_error();
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00003966#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00003967 Py_INCREF(Py_None);
3968 return Py_None;
Guido van Rossum85e3b011991-06-03 12:42:10 +00003969}
Guido van Rossumad0ee831995-03-01 10:34:45 +00003970#endif
Guido van Rossum85e3b011991-06-03 12:42:10 +00003971
Martin v. Löwisb2c92f42002-02-16 23:35:41 +00003972#ifdef HAVE_KILLPG
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003973PyDoc_STRVAR(posix_killpg__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003974"killpg(pgid, sig)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003975Kill a process group with a signal.");
Martin v. Löwisb2c92f42002-02-16 23:35:41 +00003976
3977static PyObject *
3978posix_killpg(PyObject *self, PyObject *args)
3979{
3980 int pgid, sig;
3981 if (!PyArg_ParseTuple(args, "ii:killpg", &pgid, &sig))
3982 return NULL;
3983 if (killpg(pgid, sig) == -1)
3984 return posix_error();
3985 Py_INCREF(Py_None);
3986 return Py_None;
3987}
3988#endif
3989
Guido van Rossumc0125471996-06-28 18:55:32 +00003990#ifdef HAVE_PLOCK
3991
3992#ifdef HAVE_SYS_LOCK_H
3993#include <sys/lock.h>
3994#endif
3995
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003996PyDoc_STRVAR(posix_plock__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003997"plock(op)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003998Lock program segments into memory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003999
Barry Warsaw53699e91996-12-10 23:23:01 +00004000static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00004001posix_plock(PyObject *self, PyObject *args)
Guido van Rossumc0125471996-06-28 18:55:32 +00004002{
4003 int op;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00004004 if (!PyArg_ParseTuple(args, "i:plock", &op))
Guido van Rossumc0125471996-06-28 18:55:32 +00004005 return NULL;
4006 if (plock(op) == -1)
4007 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00004008 Py_INCREF(Py_None);
4009 return Py_None;
Guido van Rossumc0125471996-06-28 18:55:32 +00004010}
4011#endif
4012
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004013
Guido van Rossuma4916fa1996-05-23 22:58:55 +00004014#ifdef HAVE_POPEN
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004015PyDoc_STRVAR(posix_popen__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00004016"popen(command [, mode='r' [, bufsize]]) -> pipe\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004017Open a pipe to/from a command returning a file object.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004018
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004019#if defined(PYOS_OS2)
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004020#if defined(PYCC_VACPP)
Guido van Rossumd48f2521997-12-05 22:19:34 +00004021static int
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004022async_system(const char *command)
4023{
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004024 char errormsg[256], args[1024];
4025 RESULTCODES rcodes;
4026 APIRET rc;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004027
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004028 char *shell = getenv("COMSPEC");
4029 if (!shell)
4030 shell = "cmd";
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004031
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004032 /* avoid overflowing the argument buffer */
4033 if (strlen(shell) + 3 + strlen(command) >= 1024)
4034 return ERROR_NOT_ENOUGH_MEMORY
4035
4036 args[0] = '\0';
4037 strcat(args, shell);
4038 strcat(args, "/c ");
4039 strcat(args, command);
4040
4041 /* execute asynchronously, inheriting the environment */
4042 rc = DosExecPgm(errormsg,
4043 sizeof(errormsg),
4044 EXEC_ASYNC,
4045 args,
4046 NULL,
4047 &rcodes,
4048 shell);
4049 return rc;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004050}
4051
Guido van Rossumd48f2521997-12-05 22:19:34 +00004052static FILE *
4053popen(const char *command, const char *mode, int pipesize, int *err)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004054{
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004055 int oldfd, tgtfd;
4056 HFILE pipeh[2];
4057 APIRET rc;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004058
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004059 /* mode determines which of stdin or stdout is reconnected to
4060 * the pipe to the child
4061 */
4062 if (strchr(mode, 'r') != NULL) {
4063 tgt_fd = 1; /* stdout */
4064 } else if (strchr(mode, 'w')) {
4065 tgt_fd = 0; /* stdin */
4066 } else {
4067 *err = ERROR_INVALID_ACCESS;
4068 return NULL;
4069 }
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004070
Andrew MacIntyrea3be2582004-12-18 09:51:05 +00004071 /* setup the pipe */
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004072 if ((rc = DosCreatePipe(&pipeh[0], &pipeh[1], pipesize)) != NO_ERROR) {
4073 *err = rc;
4074 return NULL;
4075 }
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004076
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004077 /* prevent other threads accessing stdio */
4078 DosEnterCritSec();
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004079
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004080 /* reconnect stdio and execute child */
4081 oldfd = dup(tgtfd);
4082 close(tgtfd);
4083 if (dup2(pipeh[tgtfd], tgtfd) == 0) {
4084 DosClose(pipeh[tgtfd]);
4085 rc = async_system(command);
4086 }
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004087
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004088 /* restore stdio */
4089 dup2(oldfd, tgtfd);
4090 close(oldfd);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004091
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004092 /* allow other threads access to stdio */
4093 DosExitCritSec();
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004094
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004095 /* if execution of child was successful return file stream */
4096 if (rc == NO_ERROR)
4097 return fdopen(pipeh[1 - tgtfd], mode);
4098 else {
4099 DosClose(pipeh[1 - tgtfd]);
4100 *err = rc;
4101 return NULL;
4102 }
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004103}
4104
4105static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00004106posix_popen(PyObject *self, PyObject *args)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004107{
4108 char *name;
4109 char *mode = "r";
Guido van Rossumd48f2521997-12-05 22:19:34 +00004110 int err, bufsize = -1;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004111 FILE *fp;
4112 PyObject *f;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00004113 if (!PyArg_ParseTuple(args, "s|si:popen", &name, &mode, &bufsize))
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004114 return NULL;
4115 Py_BEGIN_ALLOW_THREADS
Guido van Rossumd48f2521997-12-05 22:19:34 +00004116 fp = popen(name, mode, (bufsize > 0) ? bufsize : 4096, &err);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004117 Py_END_ALLOW_THREADS
4118 if (fp == NULL)
Guido van Rossumd48f2521997-12-05 22:19:34 +00004119 return os2_error(err);
4120
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004121 f = PyFile_FromFile(fp, name, mode, fclose);
4122 if (f != NULL)
4123 PyFile_SetBufSize(f, bufsize);
4124 return f;
4125}
4126
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004127#elif defined(PYCC_GCC)
4128
4129/* standard posix version of popen() support */
4130static PyObject *
4131posix_popen(PyObject *self, PyObject *args)
4132{
4133 char *name;
4134 char *mode = "r";
4135 int bufsize = -1;
4136 FILE *fp;
4137 PyObject *f;
4138 if (!PyArg_ParseTuple(args, "s|si:popen", &name, &mode, &bufsize))
4139 return NULL;
4140 Py_BEGIN_ALLOW_THREADS
4141 fp = popen(name, mode);
4142 Py_END_ALLOW_THREADS
4143 if (fp == NULL)
4144 return posix_error();
4145 f = PyFile_FromFile(fp, name, mode, pclose);
4146 if (f != NULL)
4147 PyFile_SetBufSize(f, bufsize);
4148 return f;
4149}
4150
4151/* fork() under OS/2 has lots'o'warts
4152 * EMX supports pipe() and spawn*() so we can synthesize popen[234]()
4153 * most of this code is a ripoff of the win32 code, but using the
4154 * capabilities of EMX's C library routines
4155 */
4156
4157/* These tell _PyPopen() whether to return 1, 2, or 3 file objects. */
4158#define POPEN_1 1
4159#define POPEN_2 2
4160#define POPEN_3 3
4161#define POPEN_4 4
4162
4163static PyObject *_PyPopen(char *, int, int, int);
4164static int _PyPclose(FILE *file);
4165
4166/*
4167 * Internal dictionary mapping popen* file pointers to process handles,
4168 * for use when retrieving the process exit code. See _PyPclose() below
4169 * for more information on this dictionary's use.
4170 */
4171static PyObject *_PyPopenProcs = NULL;
4172
4173/* os2emx version of popen2()
4174 *
4175 * The result of this function is a pipe (file) connected to the
4176 * process's stdin, and a pipe connected to the process's stdout.
4177 */
4178
4179static PyObject *
4180os2emx_popen2(PyObject *self, PyObject *args)
4181{
4182 PyObject *f;
4183 int tm=0;
4184
4185 char *cmdstring;
4186 char *mode = "t";
4187 int bufsize = -1;
4188 if (!PyArg_ParseTuple(args, "s|si:popen2", &cmdstring, &mode, &bufsize))
4189 return NULL;
4190
4191 if (*mode == 't')
4192 tm = O_TEXT;
4193 else if (*mode != 'b') {
4194 PyErr_SetString(PyExc_ValueError, "mode must be 't' or 'b'");
4195 return NULL;
4196 } else
4197 tm = O_BINARY;
4198
4199 f = _PyPopen(cmdstring, tm, POPEN_2, bufsize);
4200
4201 return f;
4202}
4203
4204/*
4205 * Variation on os2emx.popen2
4206 *
4207 * The result of this function is 3 pipes - the process's stdin,
4208 * stdout and stderr
4209 */
4210
4211static PyObject *
4212os2emx_popen3(PyObject *self, PyObject *args)
4213{
4214 PyObject *f;
4215 int tm = 0;
4216
4217 char *cmdstring;
4218 char *mode = "t";
4219 int bufsize = -1;
4220 if (!PyArg_ParseTuple(args, "s|si:popen3", &cmdstring, &mode, &bufsize))
4221 return NULL;
4222
4223 if (*mode == 't')
4224 tm = O_TEXT;
4225 else if (*mode != 'b') {
4226 PyErr_SetString(PyExc_ValueError, "mode must be 't' or 'b'");
4227 return NULL;
4228 } else
4229 tm = O_BINARY;
4230
4231 f = _PyPopen(cmdstring, tm, POPEN_3, bufsize);
4232
4233 return f;
4234}
4235
4236/*
4237 * Variation on os2emx.popen2
4238 *
Tim Peters11b23062003-04-23 02:39:17 +00004239 * The result of this function is 2 pipes - the processes stdin,
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004240 * and stdout+stderr combined as a single pipe.
4241 */
4242
4243static PyObject *
4244os2emx_popen4(PyObject *self, PyObject *args)
4245{
4246 PyObject *f;
4247 int tm = 0;
4248
4249 char *cmdstring;
4250 char *mode = "t";
4251 int bufsize = -1;
4252 if (!PyArg_ParseTuple(args, "s|si:popen4", &cmdstring, &mode, &bufsize))
4253 return NULL;
4254
4255 if (*mode == 't')
4256 tm = O_TEXT;
4257 else if (*mode != 'b') {
4258 PyErr_SetString(PyExc_ValueError, "mode must be 't' or 'b'");
4259 return NULL;
4260 } else
4261 tm = O_BINARY;
4262
4263 f = _PyPopen(cmdstring, tm, POPEN_4, bufsize);
4264
4265 return f;
4266}
4267
4268/* a couple of structures for convenient handling of multiple
4269 * file handles and pipes
4270 */
4271struct file_ref
4272{
4273 int handle;
4274 int flags;
4275};
4276
4277struct pipe_ref
4278{
4279 int rd;
4280 int wr;
4281};
4282
4283/* The following code is derived from the win32 code */
4284
4285static PyObject *
4286_PyPopen(char *cmdstring, int mode, int n, int bufsize)
4287{
4288 struct file_ref stdio[3];
4289 struct pipe_ref p_fd[3];
4290 FILE *p_s[3];
Christian Heimesd491d712008-02-01 18:49:26 +00004291 int file_count, i, pipe_err;
4292 pid_t pipe_pid;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004293 char *shell, *sh_name, *opt, *rd_mode, *wr_mode;
4294 PyObject *f, *p_f[3];
4295
4296 /* file modes for subsequent fdopen's on pipe handles */
4297 if (mode == O_TEXT)
4298 {
4299 rd_mode = "rt";
4300 wr_mode = "wt";
4301 }
4302 else
4303 {
4304 rd_mode = "rb";
4305 wr_mode = "wb";
4306 }
4307
4308 /* prepare shell references */
4309 if ((shell = getenv("EMXSHELL")) == NULL)
4310 if ((shell = getenv("COMSPEC")) == NULL)
4311 {
4312 errno = ENOENT;
4313 return posix_error();
4314 }
4315
4316 sh_name = _getname(shell);
4317 if (stricmp(sh_name, "cmd.exe") == 0 || stricmp(sh_name, "4os2.exe") == 0)
4318 opt = "/c";
4319 else
4320 opt = "-c";
4321
4322 /* save current stdio fds + their flags, and set not inheritable */
4323 i = pipe_err = 0;
4324 while (pipe_err >= 0 && i < 3)
4325 {
4326 pipe_err = stdio[i].handle = dup(i);
4327 stdio[i].flags = fcntl(i, F_GETFD, 0);
4328 fcntl(stdio[i].handle, F_SETFD, stdio[i].flags | FD_CLOEXEC);
4329 i++;
4330 }
4331 if (pipe_err < 0)
4332 {
4333 /* didn't get them all saved - clean up and bail out */
4334 int saved_err = errno;
4335 while (i-- > 0)
4336 {
4337 close(stdio[i].handle);
4338 }
4339 errno = saved_err;
4340 return posix_error();
4341 }
4342
4343 /* create pipe ends */
4344 file_count = 2;
4345 if (n == POPEN_3)
4346 file_count = 3;
4347 i = pipe_err = 0;
4348 while ((pipe_err == 0) && (i < file_count))
4349 pipe_err = pipe((int *)&p_fd[i++]);
4350 if (pipe_err < 0)
4351 {
4352 /* didn't get them all made - clean up and bail out */
4353 while (i-- > 0)
4354 {
4355 close(p_fd[i].wr);
4356 close(p_fd[i].rd);
4357 }
4358 errno = EPIPE;
4359 return posix_error();
4360 }
4361
4362 /* change the actual standard IO streams over temporarily,
4363 * making the retained pipe ends non-inheritable
4364 */
4365 pipe_err = 0;
4366
4367 /* - stdin */
4368 if (dup2(p_fd[0].rd, 0) == 0)
4369 {
4370 close(p_fd[0].rd);
4371 i = fcntl(p_fd[0].wr, F_GETFD, 0);
4372 fcntl(p_fd[0].wr, F_SETFD, i | FD_CLOEXEC);
4373 if ((p_s[0] = fdopen(p_fd[0].wr, wr_mode)) == NULL)
4374 {
4375 close(p_fd[0].wr);
4376 pipe_err = -1;
4377 }
4378 }
4379 else
4380 {
4381 pipe_err = -1;
4382 }
4383
4384 /* - stdout */
4385 if (pipe_err == 0)
4386 {
4387 if (dup2(p_fd[1].wr, 1) == 1)
4388 {
4389 close(p_fd[1].wr);
4390 i = fcntl(p_fd[1].rd, F_GETFD, 0);
4391 fcntl(p_fd[1].rd, F_SETFD, i | FD_CLOEXEC);
4392 if ((p_s[1] = fdopen(p_fd[1].rd, rd_mode)) == NULL)
4393 {
4394 close(p_fd[1].rd);
4395 pipe_err = -1;
4396 }
4397 }
4398 else
4399 {
4400 pipe_err = -1;
4401 }
4402 }
4403
4404 /* - stderr, as required */
4405 if (pipe_err == 0)
4406 switch (n)
4407 {
4408 case POPEN_3:
4409 {
4410 if (dup2(p_fd[2].wr, 2) == 2)
4411 {
4412 close(p_fd[2].wr);
4413 i = fcntl(p_fd[2].rd, F_GETFD, 0);
4414 fcntl(p_fd[2].rd, F_SETFD, i | FD_CLOEXEC);
4415 if ((p_s[2] = fdopen(p_fd[2].rd, rd_mode)) == NULL)
4416 {
4417 close(p_fd[2].rd);
4418 pipe_err = -1;
4419 }
4420 }
4421 else
4422 {
4423 pipe_err = -1;
4424 }
4425 break;
4426 }
4427
4428 case POPEN_4:
4429 {
4430 if (dup2(1, 2) != 2)
4431 {
4432 pipe_err = -1;
4433 }
4434 break;
4435 }
4436 }
4437
4438 /* spawn the child process */
4439 if (pipe_err == 0)
4440 {
4441 pipe_pid = spawnlp(P_NOWAIT, shell, shell, opt, cmdstring, (char *)0);
4442 if (pipe_pid == -1)
4443 {
4444 pipe_err = -1;
4445 }
4446 else
4447 {
4448 /* save the PID into the FILE structure
4449 * NOTE: this implementation doesn't actually
4450 * take advantage of this, but do it for
4451 * completeness - AIM Apr01
4452 */
4453 for (i = 0; i < file_count; i++)
4454 p_s[i]->_pid = pipe_pid;
4455 }
4456 }
4457
4458 /* reset standard IO to normal */
4459 for (i = 0; i < 3; i++)
4460 {
4461 dup2(stdio[i].handle, i);
4462 fcntl(i, F_SETFD, stdio[i].flags);
4463 close(stdio[i].handle);
4464 }
4465
4466 /* if any remnant problems, clean up and bail out */
4467 if (pipe_err < 0)
4468 {
4469 for (i = 0; i < 3; i++)
4470 {
4471 close(p_fd[i].rd);
4472 close(p_fd[i].wr);
4473 }
4474 errno = EPIPE;
4475 return posix_error_with_filename(cmdstring);
4476 }
4477
4478 /* build tuple of file objects to return */
4479 if ((p_f[0] = PyFile_FromFile(p_s[0], cmdstring, wr_mode, _PyPclose)) != NULL)
4480 PyFile_SetBufSize(p_f[0], bufsize);
4481 if ((p_f[1] = PyFile_FromFile(p_s[1], cmdstring, rd_mode, _PyPclose)) != NULL)
4482 PyFile_SetBufSize(p_f[1], bufsize);
4483 if (n == POPEN_3)
4484 {
4485 if ((p_f[2] = PyFile_FromFile(p_s[2], cmdstring, rd_mode, _PyPclose)) != NULL)
4486 PyFile_SetBufSize(p_f[0], bufsize);
Raymond Hettinger8ae46892003-10-12 19:09:37 +00004487 f = PyTuple_Pack(3, p_f[0], p_f[1], p_f[2]);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004488 }
4489 else
Raymond Hettinger8ae46892003-10-12 19:09:37 +00004490 f = PyTuple_Pack(2, p_f[0], p_f[1]);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004491
4492 /*
4493 * Insert the files we've created into the process dictionary
4494 * all referencing the list with the process handle and the
4495 * initial number of files (see description below in _PyPclose).
4496 * Since if _PyPclose later tried to wait on a process when all
4497 * handles weren't closed, it could create a deadlock with the
4498 * child, we spend some energy here to try to ensure that we
4499 * either insert all file handles into the dictionary or none
4500 * at all. It's a little clumsy with the various popen modes
4501 * and variable number of files involved.
4502 */
4503 if (!_PyPopenProcs)
4504 {
4505 _PyPopenProcs = PyDict_New();
4506 }
4507
4508 if (_PyPopenProcs)
4509 {
4510 PyObject *procObj, *pidObj, *intObj, *fileObj[3];
4511 int ins_rc[3];
4512
4513 fileObj[0] = fileObj[1] = fileObj[2] = NULL;
4514 ins_rc[0] = ins_rc[1] = ins_rc[2] = 0;
4515
4516 procObj = PyList_New(2);
4517 pidObj = PyInt_FromLong((long) pipe_pid);
4518 intObj = PyInt_FromLong((long) file_count);
4519
4520 if (procObj && pidObj && intObj)
4521 {
4522 PyList_SetItem(procObj, 0, pidObj);
4523 PyList_SetItem(procObj, 1, intObj);
4524
4525 fileObj[0] = PyLong_FromVoidPtr(p_s[0]);
4526 if (fileObj[0])
4527 {
4528 ins_rc[0] = PyDict_SetItem(_PyPopenProcs,
4529 fileObj[0],
4530 procObj);
4531 }
4532 fileObj[1] = PyLong_FromVoidPtr(p_s[1]);
4533 if (fileObj[1])
4534 {
4535 ins_rc[1] = PyDict_SetItem(_PyPopenProcs,
4536 fileObj[1],
4537 procObj);
4538 }
4539 if (file_count >= 3)
4540 {
4541 fileObj[2] = PyLong_FromVoidPtr(p_s[2]);
4542 if (fileObj[2])
4543 {
4544 ins_rc[2] = PyDict_SetItem(_PyPopenProcs,
4545 fileObj[2],
4546 procObj);
4547 }
4548 }
4549
4550 if (ins_rc[0] < 0 || !fileObj[0] ||
4551 ins_rc[1] < 0 || (file_count > 1 && !fileObj[1]) ||
4552 ins_rc[2] < 0 || (file_count > 2 && !fileObj[2]))
4553 {
4554 /* Something failed - remove any dictionary
4555 * entries that did make it.
4556 */
4557 if (!ins_rc[0] && fileObj[0])
4558 {
4559 PyDict_DelItem(_PyPopenProcs,
4560 fileObj[0]);
4561 }
4562 if (!ins_rc[1] && fileObj[1])
4563 {
4564 PyDict_DelItem(_PyPopenProcs,
4565 fileObj[1]);
4566 }
4567 if (!ins_rc[2] && fileObj[2])
4568 {
4569 PyDict_DelItem(_PyPopenProcs,
4570 fileObj[2]);
4571 }
4572 }
4573 }
Tim Peters11b23062003-04-23 02:39:17 +00004574
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004575 /*
4576 * Clean up our localized references for the dictionary keys
4577 * and value since PyDict_SetItem will Py_INCREF any copies
4578 * that got placed in the dictionary.
4579 */
4580 Py_XDECREF(procObj);
4581 Py_XDECREF(fileObj[0]);
4582 Py_XDECREF(fileObj[1]);
4583 Py_XDECREF(fileObj[2]);
4584 }
4585
4586 /* Child is launched. */
4587 return f;
4588}
4589
4590/*
4591 * Wrapper for fclose() to use for popen* files, so we can retrieve the
4592 * exit code for the child process and return as a result of the close.
4593 *
4594 * This function uses the _PyPopenProcs dictionary in order to map the
4595 * input file pointer to information about the process that was
4596 * originally created by the popen* call that created the file pointer.
4597 * The dictionary uses the file pointer as a key (with one entry
4598 * inserted for each file returned by the original popen* call) and a
4599 * single list object as the value for all files from a single call.
4600 * The list object contains the Win32 process handle at [0], and a file
4601 * count at [1], which is initialized to the total number of file
4602 * handles using that list.
4603 *
4604 * This function closes whichever handle it is passed, and decrements
4605 * the file count in the dictionary for the process handle pointed to
4606 * by this file. On the last close (when the file count reaches zero),
4607 * this function will wait for the child process and then return its
4608 * exit code as the result of the close() operation. This permits the
4609 * files to be closed in any order - it is always the close() of the
4610 * final handle that will return the exit code.
Andrew MacIntyrebaf25b02003-04-21 14:22:36 +00004611 *
4612 * NOTE: This function is currently called with the GIL released.
4613 * hence we use the GILState API to manage our state.
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004614 */
4615
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004616static int _PyPclose(FILE *file)
4617{
4618 int result;
4619 int exit_code;
Christian Heimesd491d712008-02-01 18:49:26 +00004620 pid_t pipe_pid;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004621 PyObject *procObj, *pidObj, *intObj, *fileObj;
4622 int file_count;
4623#ifdef WITH_THREAD
Andrew MacIntyrebaf25b02003-04-21 14:22:36 +00004624 PyGILState_STATE state;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004625#endif
4626
4627 /* Close the file handle first, to ensure it can't block the
4628 * child from exiting if it's the last handle.
4629 */
4630 result = fclose(file);
4631
4632#ifdef WITH_THREAD
Andrew MacIntyrebaf25b02003-04-21 14:22:36 +00004633 state = PyGILState_Ensure();
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004634#endif
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004635 if (_PyPopenProcs)
4636 {
4637 if ((fileObj = PyLong_FromVoidPtr(file)) != NULL &&
4638 (procObj = PyDict_GetItem(_PyPopenProcs,
4639 fileObj)) != NULL &&
4640 (pidObj = PyList_GetItem(procObj,0)) != NULL &&
4641 (intObj = PyList_GetItem(procObj,1)) != NULL)
4642 {
4643 pipe_pid = (int) PyInt_AsLong(pidObj);
4644 file_count = (int) PyInt_AsLong(intObj);
4645
4646 if (file_count > 1)
4647 {
4648 /* Still other files referencing process */
4649 file_count--;
4650 PyList_SetItem(procObj,1,
4651 PyInt_FromLong((long) file_count));
4652 }
4653 else
4654 {
4655 /* Last file for this process */
4656 if (result != EOF &&
4657 waitpid(pipe_pid, &exit_code, 0) == pipe_pid)
4658 {
4659 /* extract exit status */
4660 if (WIFEXITED(exit_code))
4661 {
4662 result = WEXITSTATUS(exit_code);
4663 }
4664 else
4665 {
4666 errno = EPIPE;
4667 result = -1;
4668 }
4669 }
4670 else
4671 {
4672 /* Indicate failure - this will cause the file object
4673 * to raise an I/O error and translate the last
4674 * error code from errno. We do have a problem with
4675 * last errors that overlap the normal errno table,
4676 * but that's a consistent problem with the file object.
4677 */
4678 result = -1;
4679 }
4680 }
4681
4682 /* Remove this file pointer from dictionary */
4683 PyDict_DelItem(_PyPopenProcs, fileObj);
4684
4685 if (PyDict_Size(_PyPopenProcs) == 0)
4686 {
4687 Py_DECREF(_PyPopenProcs);
4688 _PyPopenProcs = NULL;
4689 }
4690
4691 } /* if object retrieval ok */
4692
4693 Py_XDECREF(fileObj);
4694 } /* if _PyPopenProcs */
4695
4696#ifdef WITH_THREAD
Andrew MacIntyrebaf25b02003-04-21 14:22:36 +00004697 PyGILState_Release(state);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004698#endif
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004699 return result;
4700}
4701
4702#endif /* PYCC_??? */
4703
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00004704#elif defined(MS_WINDOWS)
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004705
4706/*
4707 * Portable 'popen' replacement for Win32.
4708 *
4709 * Written by Bill Tutt <billtut@microsoft.com>. Minor tweaks
4710 * and 2.0 integration by Fredrik Lundh <fredrik@pythonware.com>
Mark Hammondb37a3732000-08-14 04:47:33 +00004711 * Return code handling by David Bolen <db3l@fitlinxx.com>.
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004712 */
4713
4714#include <malloc.h>
4715#include <io.h>
4716#include <fcntl.h>
4717
4718/* These tell _PyPopen() wether to return 1, 2, or 3 file objects. */
4719#define POPEN_1 1
4720#define POPEN_2 2
4721#define POPEN_3 3
4722#define POPEN_4 4
4723
4724static PyObject *_PyPopen(char *, int, int);
Fredrik Lundh56055a42000-07-23 19:47:12 +00004725static int _PyPclose(FILE *file);
4726
4727/*
4728 * Internal dictionary mapping popen* file pointers to process handles,
Mark Hammondb37a3732000-08-14 04:47:33 +00004729 * for use when retrieving the process exit code. See _PyPclose() below
4730 * for more information on this dictionary's use.
Fredrik Lundh56055a42000-07-23 19:47:12 +00004731 */
4732static PyObject *_PyPopenProcs = NULL;
4733
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004734
4735/* popen that works from a GUI.
4736 *
4737 * The result of this function is a pipe (file) connected to the
4738 * processes stdin or stdout, depending on the requested mode.
4739 */
4740
4741static PyObject *
4742posix_popen(PyObject *self, PyObject *args)
4743{
Raymond Hettingerb5cb6652003-09-01 22:25:41 +00004744 PyObject *f;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004745 int tm = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00004746
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004747 char *cmdstring;
4748 char *mode = "r";
Fredrik Lundhbb7eeff2000-07-09 17:59:32 +00004749 int bufsize = -1;
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004750 if (!PyArg_ParseTuple(args, "s|si:popen", &cmdstring, &mode, &bufsize))
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004751 return NULL;
4752
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004753 if (*mode == 'r')
4754 tm = _O_RDONLY;
4755 else if (*mode != 'w') {
Fred Drake661ea262000-10-24 19:57:45 +00004756 PyErr_SetString(PyExc_ValueError, "popen() arg 2 must be 'r' or 'w'");
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004757 return NULL;
4758 } else
4759 tm = _O_WRONLY;
Tim Peters5aa91602002-01-30 05:46:57 +00004760
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004761 if (bufsize != -1) {
Fred Drake661ea262000-10-24 19:57:45 +00004762 PyErr_SetString(PyExc_ValueError, "popen() arg 3 must be -1");
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004763 return NULL;
4764 }
4765
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004766 if (*(mode+1) == 't')
Fredrik Lundhbb7eeff2000-07-09 17:59:32 +00004767 f = _PyPopen(cmdstring, tm | _O_TEXT, POPEN_1);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004768 else if (*(mode+1) == 'b')
Fredrik Lundhbb7eeff2000-07-09 17:59:32 +00004769 f = _PyPopen(cmdstring, tm | _O_BINARY, POPEN_1);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004770 else
4771 f = _PyPopen(cmdstring, tm | _O_TEXT, POPEN_1);
4772
4773 return f;
4774}
4775
4776/* Variation on win32pipe.popen
4777 *
4778 * The result of this function is a pipe (file) connected to the
4779 * process's stdin, and a pipe connected to the process's stdout.
4780 */
4781
4782static PyObject *
4783win32_popen2(PyObject *self, PyObject *args)
4784{
4785 PyObject *f;
4786 int tm=0;
Tim Peters5aa91602002-01-30 05:46:57 +00004787
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004788 char *cmdstring;
4789 char *mode = "t";
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004790 int bufsize = -1;
4791 if (!PyArg_ParseTuple(args, "s|si:popen2", &cmdstring, &mode, &bufsize))
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004792 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00004793
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004794 if (*mode == 't')
4795 tm = _O_TEXT;
4796 else if (*mode != 'b') {
Fred Drake661ea262000-10-24 19:57:45 +00004797 PyErr_SetString(PyExc_ValueError, "popen2() arg 2 must be 't' or 'b'");
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004798 return NULL;
4799 } else
4800 tm = _O_BINARY;
Tim Peters5aa91602002-01-30 05:46:57 +00004801
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004802 if (bufsize != -1) {
Fred Drake661ea262000-10-24 19:57:45 +00004803 PyErr_SetString(PyExc_ValueError, "popen2() arg 3 must be -1");
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004804 return NULL;
4805 }
4806
4807 f = _PyPopen(cmdstring, tm, POPEN_2);
Tim Peters5aa91602002-01-30 05:46:57 +00004808
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004809 return f;
4810}
4811
4812/*
4813 * Variation on <om win32pipe.popen>
Fredrik Lundhbb7eeff2000-07-09 17:59:32 +00004814 *
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004815 * The result of this function is 3 pipes - the process's stdin,
4816 * stdout and stderr
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004817 */
4818
4819static PyObject *
4820win32_popen3(PyObject *self, PyObject *args)
4821{
4822 PyObject *f;
4823 int tm = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00004824
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004825 char *cmdstring;
4826 char *mode = "t";
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004827 int bufsize = -1;
4828 if (!PyArg_ParseTuple(args, "s|si:popen3", &cmdstring, &mode, &bufsize))
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004829 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00004830
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004831 if (*mode == 't')
4832 tm = _O_TEXT;
4833 else if (*mode != 'b') {
Fred Drake661ea262000-10-24 19:57:45 +00004834 PyErr_SetString(PyExc_ValueError, "popen3() arg 2 must be 't' or 'b'");
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004835 return NULL;
4836 } else
4837 tm = _O_BINARY;
Tim Peters5aa91602002-01-30 05:46:57 +00004838
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004839 if (bufsize != -1) {
Fred Drake661ea262000-10-24 19:57:45 +00004840 PyErr_SetString(PyExc_ValueError, "popen3() arg 3 must be -1");
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004841 return NULL;
4842 }
4843
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004844 f = _PyPopen(cmdstring, tm, POPEN_3);
Tim Peters5aa91602002-01-30 05:46:57 +00004845
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004846 return f;
4847}
4848
4849/*
4850 * Variation on win32pipe.popen
4851 *
Tim Peters5aa91602002-01-30 05:46:57 +00004852 * The result of this function is 2 pipes - the processes stdin,
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004853 * and stdout+stderr combined as a single pipe.
4854 */
4855
4856static PyObject *
4857win32_popen4(PyObject *self, PyObject *args)
4858{
4859 PyObject *f;
4860 int tm = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00004861
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004862 char *cmdstring;
4863 char *mode = "t";
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004864 int bufsize = -1;
4865 if (!PyArg_ParseTuple(args, "s|si:popen4", &cmdstring, &mode, &bufsize))
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004866 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00004867
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004868 if (*mode == 't')
4869 tm = _O_TEXT;
4870 else if (*mode != 'b') {
Fred Drake661ea262000-10-24 19:57:45 +00004871 PyErr_SetString(PyExc_ValueError, "popen4() arg 2 must be 't' or 'b'");
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004872 return NULL;
4873 } else
4874 tm = _O_BINARY;
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004875
4876 if (bufsize != -1) {
Fred Drake661ea262000-10-24 19:57:45 +00004877 PyErr_SetString(PyExc_ValueError, "popen4() arg 3 must be -1");
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004878 return NULL;
4879 }
4880
Fredrik Lundhbb7eeff2000-07-09 17:59:32 +00004881 f = _PyPopen(cmdstring, tm, POPEN_4);
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004882
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004883 return f;
4884}
4885
Mark Hammond08501372001-01-31 07:30:29 +00004886static BOOL
Mark Hammondb37a3732000-08-14 04:47:33 +00004887_PyPopenCreateProcess(char *cmdstring,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00004888 HANDLE hStdin,
4889 HANDLE hStdout,
Mark Hammondb37a3732000-08-14 04:47:33 +00004890 HANDLE hStderr,
4891 HANDLE *hProcess)
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004892{
4893 PROCESS_INFORMATION piProcInfo;
4894 STARTUPINFO siStartInfo;
Mark Hammondfe51c6d2002-08-02 02:27:13 +00004895 DWORD dwProcessFlags = 0; /* no NEW_CONSOLE by default for Ctrl+C handling */
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004896 char *s1,*s2, *s3 = " /c ";
Mark Hammond08501372001-01-31 07:30:29 +00004897 const char *szConsoleSpawn = "w9xpopen.exe";
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004898 int i;
Martin v. Löwis18e16552006-02-15 17:27:45 +00004899 Py_ssize_t x;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004900
4901 if (i = GetEnvironmentVariable("COMSPEC",NULL,0)) {
Tim Peters402d5982001-08-27 06:37:48 +00004902 char *comshell;
4903
Tim Peters92e4dd82002-10-05 01:47:34 +00004904 s1 = (char *)alloca(i);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004905 if (!(x = GetEnvironmentVariable("COMSPEC", s1, i)))
Martin v. Löwis18e16552006-02-15 17:27:45 +00004906 /* x < i, so x fits into an integer */
4907 return (int)x;
Tim Peters402d5982001-08-27 06:37:48 +00004908
4909 /* Explicitly check if we are using COMMAND.COM. If we are
4910 * then use the w9xpopen hack.
4911 */
4912 comshell = s1 + x;
4913 while (comshell >= s1 && *comshell != '\\')
4914 --comshell;
4915 ++comshell;
4916
4917 if (GetVersion() < 0x80000000 &&
4918 _stricmp(comshell, "command.com") != 0) {
4919 /* NT/2000 and not using command.com. */
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004920 x = i + strlen(s3) + strlen(cmdstring) + 1;
Tim Peters92e4dd82002-10-05 01:47:34 +00004921 s2 = (char *)alloca(x);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004922 ZeroMemory(s2, x);
Tim Peters75cdad52001-11-28 22:07:30 +00004923 PyOS_snprintf(s2, x, "%s%s%s", s1, s3, cmdstring);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004924 }
4925 else {
4926 /*
Tim Peters402d5982001-08-27 06:37:48 +00004927 * Oh gag, we're on Win9x or using COMMAND.COM. Use
4928 * the workaround listed in KB: Q150956
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004929 */
Mark Hammond08501372001-01-31 07:30:29 +00004930 char modulepath[_MAX_PATH];
4931 struct stat statinfo;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004932 GetModuleFileName(NULL, modulepath, sizeof(modulepath));
Martin v. Löwis26fd9602006-04-22 11:15:41 +00004933 for (x = i = 0; modulepath[i]; i++)
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004934 if (modulepath[i] == SEP)
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004935 x = i+1;
4936 modulepath[x] = '\0';
Mark Hammond08501372001-01-31 07:30:29 +00004937 /* Create the full-name to w9xpopen, so we can test it exists */
Tim Peters5aa91602002-01-30 05:46:57 +00004938 strncat(modulepath,
4939 szConsoleSpawn,
Mark Hammond08501372001-01-31 07:30:29 +00004940 (sizeof(modulepath)/sizeof(modulepath[0]))
4941 -strlen(modulepath));
4942 if (stat(modulepath, &statinfo) != 0) {
Kristján Valur Jónsson17b8e972007-04-25 00:10:50 +00004943 size_t mplen = sizeof(modulepath)/sizeof(modulepath[0]);
Tim Peters5aa91602002-01-30 05:46:57 +00004944 /* Eeek - file-not-found - possibly an embedding
4945 situation - see if we can locate it in sys.prefix
Mark Hammond08501372001-01-31 07:30:29 +00004946 */
Tim Peters5aa91602002-01-30 05:46:57 +00004947 strncpy(modulepath,
4948 Py_GetExecPrefix(),
Kristján Valur Jónsson17b8e972007-04-25 00:10:50 +00004949 mplen);
4950 modulepath[mplen-1] = '\0';
Mark Hammond08501372001-01-31 07:30:29 +00004951 if (modulepath[strlen(modulepath)-1] != '\\')
4952 strcat(modulepath, "\\");
Tim Peters5aa91602002-01-30 05:46:57 +00004953 strncat(modulepath,
4954 szConsoleSpawn,
Kristján Valur Jónsson17b8e972007-04-25 00:10:50 +00004955 mplen-strlen(modulepath));
Mark Hammond08501372001-01-31 07:30:29 +00004956 /* No where else to look - raise an easily identifiable
4957 error, rather than leaving Windows to report
4958 "file not found" - as the user is probably blissfully
4959 unaware this shim EXE is used, and it will confuse them.
4960 (well, it confused me for a while ;-)
4961 */
4962 if (stat(modulepath, &statinfo) != 0) {
Tim Peters5aa91602002-01-30 05:46:57 +00004963 PyErr_Format(PyExc_RuntimeError,
Mark Hammond08501372001-01-31 07:30:29 +00004964 "Can not locate '%s' which is needed "
Tim Peters402d5982001-08-27 06:37:48 +00004965 "for popen to work with your shell "
4966 "or platform.",
Mark Hammond08501372001-01-31 07:30:29 +00004967 szConsoleSpawn);
4968 return FALSE;
4969 }
4970 }
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004971 x = i + strlen(s3) + strlen(cmdstring) + 1 +
Tim Peters5aa91602002-01-30 05:46:57 +00004972 strlen(modulepath) +
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004973 strlen(szConsoleSpawn) + 1;
Mark Hammond08501372001-01-31 07:30:29 +00004974
Tim Peters92e4dd82002-10-05 01:47:34 +00004975 s2 = (char *)alloca(x);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004976 ZeroMemory(s2, x);
Mark Hammonde7fefbf2002-04-03 01:47:00 +00004977 /* To maintain correct argument passing semantics,
4978 we pass the command-line as it stands, and allow
4979 quoting to be applied. w9xpopen.exe will then
4980 use its argv vector, and re-quote the necessary
4981 args for the ultimate child process.
4982 */
Tim Peters75cdad52001-11-28 22:07:30 +00004983 PyOS_snprintf(
4984 s2, x,
Mark Hammonde7fefbf2002-04-03 01:47:00 +00004985 "\"%s\" %s%s%s",
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004986 modulepath,
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004987 s1,
4988 s3,
4989 cmdstring);
Mark Hammondfe51c6d2002-08-02 02:27:13 +00004990 /* Not passing CREATE_NEW_CONSOLE has been known to
Tim Peters11b23062003-04-23 02:39:17 +00004991 cause random failures on win9x. Specifically a
Mark Hammondfe51c6d2002-08-02 02:27:13 +00004992 dialog:
4993 "Your program accessed mem currently in use at xxx"
4994 and a hopeful warning about the stability of your
4995 system.
4996 Cost is Ctrl+C wont kill children, but anyone
4997 who cares can have a go!
4998 */
4999 dwProcessFlags |= CREATE_NEW_CONSOLE;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005000 }
5001 }
5002
5003 /* Could be an else here to try cmd.exe / command.com in the path
5004 Now we'll just error out.. */
Mark Hammond08501372001-01-31 07:30:29 +00005005 else {
Tim Peters402d5982001-08-27 06:37:48 +00005006 PyErr_SetString(PyExc_RuntimeError,
5007 "Cannot locate a COMSPEC environment variable to "
5008 "use as the shell");
Mark Hammond08501372001-01-31 07:30:29 +00005009 return FALSE;
5010 }
Tim Peters5aa91602002-01-30 05:46:57 +00005011
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005012 ZeroMemory(&siStartInfo, sizeof(STARTUPINFO));
5013 siStartInfo.cb = sizeof(STARTUPINFO);
5014 siStartInfo.dwFlags = STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW;
5015 siStartInfo.hStdInput = hStdin;
5016 siStartInfo.hStdOutput = hStdout;
5017 siStartInfo.hStdError = hStderr;
5018 siStartInfo.wShowWindow = SW_HIDE;
5019
5020 if (CreateProcess(NULL,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005021 s2,
5022 NULL,
5023 NULL,
5024 TRUE,
Mark Hammondfe51c6d2002-08-02 02:27:13 +00005025 dwProcessFlags,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005026 NULL,
5027 NULL,
5028 &siStartInfo,
5029 &piProcInfo) ) {
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005030 /* Close the handles now so anyone waiting is woken. */
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005031 CloseHandle(piProcInfo.hThread);
Fredrik Lundh56055a42000-07-23 19:47:12 +00005032
Mark Hammondb37a3732000-08-14 04:47:33 +00005033 /* Return process handle */
5034 *hProcess = piProcInfo.hProcess;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005035 return TRUE;
5036 }
Tim Peters402d5982001-08-27 06:37:48 +00005037 win32_error("CreateProcess", s2);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005038 return FALSE;
5039}
5040
5041/* The following code is based off of KB: Q190351 */
5042
5043static PyObject *
5044_PyPopen(char *cmdstring, int mode, int n)
5045{
5046 HANDLE hChildStdinRd, hChildStdinWr, hChildStdoutRd, hChildStdoutWr,
5047 hChildStderrRd, hChildStderrWr, hChildStdinWrDup, hChildStdoutRdDup,
Mark Hammondb37a3732000-08-14 04:47:33 +00005048 hChildStderrRdDup, hProcess; /* hChildStdoutWrDup; */
Tim Peters5aa91602002-01-30 05:46:57 +00005049
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005050 SECURITY_ATTRIBUTES saAttr;
5051 BOOL fSuccess;
5052 int fd1, fd2, fd3;
5053 FILE *f1, *f2, *f3;
Mark Hammondb37a3732000-08-14 04:47:33 +00005054 long file_count;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005055 PyObject *f;
5056
5057 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
5058 saAttr.bInheritHandle = TRUE;
5059 saAttr.lpSecurityDescriptor = NULL;
5060
5061 if (!CreatePipe(&hChildStdinRd, &hChildStdinWr, &saAttr, 0))
5062 return win32_error("CreatePipe", NULL);
5063
5064 /* Create new output read handle and the input write handle. Set
5065 * the inheritance properties to FALSE. Otherwise, the child inherits
Walter Dörwaldf0dfc7a2003-10-20 14:01:56 +00005066 * these handles; resulting in non-closeable handles to the pipes
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005067 * being created. */
5068 fSuccess = DuplicateHandle(GetCurrentProcess(), hChildStdinWr,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005069 GetCurrentProcess(), &hChildStdinWrDup, 0,
5070 FALSE,
5071 DUPLICATE_SAME_ACCESS);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005072 if (!fSuccess)
5073 return win32_error("DuplicateHandle", NULL);
5074
5075 /* Close the inheritable version of ChildStdin
5076 that we're using. */
5077 CloseHandle(hChildStdinWr);
5078
5079 if (!CreatePipe(&hChildStdoutRd, &hChildStdoutWr, &saAttr, 0))
5080 return win32_error("CreatePipe", NULL);
5081
5082 fSuccess = DuplicateHandle(GetCurrentProcess(), hChildStdoutRd,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005083 GetCurrentProcess(), &hChildStdoutRdDup, 0,
5084 FALSE, DUPLICATE_SAME_ACCESS);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005085 if (!fSuccess)
5086 return win32_error("DuplicateHandle", NULL);
5087
5088 /* Close the inheritable version of ChildStdout
5089 that we're using. */
5090 CloseHandle(hChildStdoutRd);
5091
5092 if (n != POPEN_4) {
5093 if (!CreatePipe(&hChildStderrRd, &hChildStderrWr, &saAttr, 0))
5094 return win32_error("CreatePipe", NULL);
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005095 fSuccess = DuplicateHandle(GetCurrentProcess(),
5096 hChildStderrRd,
5097 GetCurrentProcess(),
5098 &hChildStderrRdDup, 0,
5099 FALSE, DUPLICATE_SAME_ACCESS);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005100 if (!fSuccess)
5101 return win32_error("DuplicateHandle", NULL);
5102 /* Close the inheritable version of ChildStdErr that we're using. */
5103 CloseHandle(hChildStderrRd);
5104 }
Tim Peters5aa91602002-01-30 05:46:57 +00005105
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005106 switch (n) {
5107 case POPEN_1:
5108 switch (mode & (_O_RDONLY | _O_TEXT | _O_BINARY | _O_WRONLY)) {
5109 case _O_WRONLY | _O_TEXT:
5110 /* Case for writing to child Stdin in text mode. */
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005111 fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005112 f1 = _fdopen(fd1, "w");
Fredrik Lundh56055a42000-07-23 19:47:12 +00005113 f = PyFile_FromFile(f1, cmdstring, "w", _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005114 PyFile_SetBufSize(f, 0);
5115 /* We don't care about these pipes anymore, so close them. */
5116 CloseHandle(hChildStdoutRdDup);
5117 CloseHandle(hChildStderrRdDup);
5118 break;
5119
5120 case _O_RDONLY | _O_TEXT:
5121 /* Case for reading from child Stdout in text mode. */
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005122 fd1 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005123 f1 = _fdopen(fd1, "r");
Fredrik Lundh56055a42000-07-23 19:47:12 +00005124 f = PyFile_FromFile(f1, cmdstring, "r", _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005125 PyFile_SetBufSize(f, 0);
5126 /* We don't care about these pipes anymore, so close them. */
5127 CloseHandle(hChildStdinWrDup);
5128 CloseHandle(hChildStderrRdDup);
5129 break;
5130
5131 case _O_RDONLY | _O_BINARY:
5132 /* Case for readinig from child Stdout in binary mode. */
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005133 fd1 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005134 f1 = _fdopen(fd1, "rb");
Fredrik Lundh56055a42000-07-23 19:47:12 +00005135 f = PyFile_FromFile(f1, cmdstring, "rb", _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005136 PyFile_SetBufSize(f, 0);
5137 /* We don't care about these pipes anymore, so close them. */
5138 CloseHandle(hChildStdinWrDup);
5139 CloseHandle(hChildStderrRdDup);
5140 break;
5141
5142 case _O_WRONLY | _O_BINARY:
5143 /* Case for writing to child Stdin in binary mode. */
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005144 fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005145 f1 = _fdopen(fd1, "wb");
Fredrik Lundh56055a42000-07-23 19:47:12 +00005146 f = PyFile_FromFile(f1, cmdstring, "wb", _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005147 PyFile_SetBufSize(f, 0);
5148 /* We don't care about these pipes anymore, so close them. */
5149 CloseHandle(hChildStdoutRdDup);
5150 CloseHandle(hChildStderrRdDup);
5151 break;
5152 }
Mark Hammondb37a3732000-08-14 04:47:33 +00005153 file_count = 1;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005154 break;
Tim Peters5aa91602002-01-30 05:46:57 +00005155
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005156 case POPEN_2:
5157 case POPEN_4:
5158 {
5159 char *m1, *m2;
5160 PyObject *p1, *p2;
Tim Peters5aa91602002-01-30 05:46:57 +00005161
Tim Peters7dca21e2002-08-19 00:42:29 +00005162 if (mode & _O_TEXT) {
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005163 m1 = "r";
5164 m2 = "w";
5165 } else {
5166 m1 = "rb";
5167 m2 = "wb";
5168 }
5169
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005170 fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005171 f1 = _fdopen(fd1, m2);
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005172 fd2 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005173 f2 = _fdopen(fd2, m1);
Fredrik Lundh56055a42000-07-23 19:47:12 +00005174 p1 = PyFile_FromFile(f1, cmdstring, m2, _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005175 PyFile_SetBufSize(p1, 0);
Mark Hammondb37a3732000-08-14 04:47:33 +00005176 p2 = PyFile_FromFile(f2, cmdstring, m1, _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005177 PyFile_SetBufSize(p2, 0);
5178
5179 if (n != 4)
5180 CloseHandle(hChildStderrRdDup);
5181
Raymond Hettinger8ae46892003-10-12 19:09:37 +00005182 f = PyTuple_Pack(2,p1,p2);
Mark Hammond64aae662001-01-31 05:38:47 +00005183 Py_XDECREF(p1);
5184 Py_XDECREF(p2);
Mark Hammondb37a3732000-08-14 04:47:33 +00005185 file_count = 2;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005186 break;
5187 }
Tim Peters5aa91602002-01-30 05:46:57 +00005188
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005189 case POPEN_3:
5190 {
5191 char *m1, *m2;
5192 PyObject *p1, *p2, *p3;
Tim Peters5aa91602002-01-30 05:46:57 +00005193
Tim Peters7dca21e2002-08-19 00:42:29 +00005194 if (mode & _O_TEXT) {
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005195 m1 = "r";
5196 m2 = "w";
5197 } else {
5198 m1 = "rb";
5199 m2 = "wb";
5200 }
5201
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005202 fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005203 f1 = _fdopen(fd1, m2);
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005204 fd2 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005205 f2 = _fdopen(fd2, m1);
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005206 fd3 = _open_osfhandle((Py_intptr_t)hChildStderrRdDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005207 f3 = _fdopen(fd3, m1);
Fredrik Lundh56055a42000-07-23 19:47:12 +00005208 p1 = PyFile_FromFile(f1, cmdstring, m2, _PyPclose);
Mark Hammondb37a3732000-08-14 04:47:33 +00005209 p2 = PyFile_FromFile(f2, cmdstring, m1, _PyPclose);
5210 p3 = PyFile_FromFile(f3, cmdstring, m1, _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005211 PyFile_SetBufSize(p1, 0);
5212 PyFile_SetBufSize(p2, 0);
5213 PyFile_SetBufSize(p3, 0);
Raymond Hettinger8ae46892003-10-12 19:09:37 +00005214 f = PyTuple_Pack(3,p1,p2,p3);
Mark Hammond64aae662001-01-31 05:38:47 +00005215 Py_XDECREF(p1);
5216 Py_XDECREF(p2);
5217 Py_XDECREF(p3);
Mark Hammondb37a3732000-08-14 04:47:33 +00005218 file_count = 3;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005219 break;
5220 }
5221 }
5222
5223 if (n == POPEN_4) {
5224 if (!_PyPopenCreateProcess(cmdstring,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005225 hChildStdinRd,
5226 hChildStdoutWr,
Mark Hammondb37a3732000-08-14 04:47:33 +00005227 hChildStdoutWr,
5228 &hProcess))
Mark Hammond08501372001-01-31 07:30:29 +00005229 return NULL;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005230 }
5231 else {
5232 if (!_PyPopenCreateProcess(cmdstring,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005233 hChildStdinRd,
5234 hChildStdoutWr,
Mark Hammondb37a3732000-08-14 04:47:33 +00005235 hChildStderrWr,
5236 &hProcess))
Mark Hammond08501372001-01-31 07:30:29 +00005237 return NULL;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005238 }
5239
Mark Hammondb37a3732000-08-14 04:47:33 +00005240 /*
5241 * Insert the files we've created into the process dictionary
5242 * all referencing the list with the process handle and the
5243 * initial number of files (see description below in _PyPclose).
5244 * Since if _PyPclose later tried to wait on a process when all
5245 * handles weren't closed, it could create a deadlock with the
5246 * child, we spend some energy here to try to ensure that we
5247 * either insert all file handles into the dictionary or none
5248 * at all. It's a little clumsy with the various popen modes
5249 * and variable number of files involved.
5250 */
5251 if (!_PyPopenProcs) {
5252 _PyPopenProcs = PyDict_New();
5253 }
5254
5255 if (_PyPopenProcs) {
5256 PyObject *procObj, *hProcessObj, *intObj, *fileObj[3];
5257 int ins_rc[3];
5258
5259 fileObj[0] = fileObj[1] = fileObj[2] = NULL;
5260 ins_rc[0] = ins_rc[1] = ins_rc[2] = 0;
5261
5262 procObj = PyList_New(2);
5263 hProcessObj = PyLong_FromVoidPtr(hProcess);
5264 intObj = PyInt_FromLong(file_count);
5265
5266 if (procObj && hProcessObj && intObj) {
5267 PyList_SetItem(procObj,0,hProcessObj);
5268 PyList_SetItem(procObj,1,intObj);
5269
5270 fileObj[0] = PyLong_FromVoidPtr(f1);
5271 if (fileObj[0]) {
5272 ins_rc[0] = PyDict_SetItem(_PyPopenProcs,
5273 fileObj[0],
5274 procObj);
5275 }
5276 if (file_count >= 2) {
5277 fileObj[1] = PyLong_FromVoidPtr(f2);
5278 if (fileObj[1]) {
5279 ins_rc[1] = PyDict_SetItem(_PyPopenProcs,
5280 fileObj[1],
5281 procObj);
5282 }
5283 }
5284 if (file_count >= 3) {
5285 fileObj[2] = PyLong_FromVoidPtr(f3);
5286 if (fileObj[2]) {
5287 ins_rc[2] = PyDict_SetItem(_PyPopenProcs,
5288 fileObj[2],
5289 procObj);
5290 }
5291 }
5292
5293 if (ins_rc[0] < 0 || !fileObj[0] ||
5294 ins_rc[1] < 0 || (file_count > 1 && !fileObj[1]) ||
5295 ins_rc[2] < 0 || (file_count > 2 && !fileObj[2])) {
5296 /* Something failed - remove any dictionary
5297 * entries that did make it.
5298 */
5299 if (!ins_rc[0] && fileObj[0]) {
5300 PyDict_DelItem(_PyPopenProcs,
5301 fileObj[0]);
5302 }
5303 if (!ins_rc[1] && fileObj[1]) {
5304 PyDict_DelItem(_PyPopenProcs,
5305 fileObj[1]);
5306 }
5307 if (!ins_rc[2] && fileObj[2]) {
5308 PyDict_DelItem(_PyPopenProcs,
5309 fileObj[2]);
5310 }
5311 }
5312 }
Tim Peters5aa91602002-01-30 05:46:57 +00005313
Mark Hammondb37a3732000-08-14 04:47:33 +00005314 /*
5315 * Clean up our localized references for the dictionary keys
5316 * and value since PyDict_SetItem will Py_INCREF any copies
5317 * that got placed in the dictionary.
5318 */
5319 Py_XDECREF(procObj);
5320 Py_XDECREF(fileObj[0]);
5321 Py_XDECREF(fileObj[1]);
5322 Py_XDECREF(fileObj[2]);
5323 }
5324
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005325 /* Child is launched. Close the parents copy of those pipe
5326 * handles that only the child should have open. You need to
5327 * make sure that no handles to the write end of the output pipe
5328 * are maintained in this process or else the pipe will not close
5329 * when the child process exits and the ReadFile will hang. */
5330
5331 if (!CloseHandle(hChildStdinRd))
5332 return win32_error("CloseHandle", NULL);
Tim Peters5aa91602002-01-30 05:46:57 +00005333
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005334 if (!CloseHandle(hChildStdoutWr))
5335 return win32_error("CloseHandle", NULL);
Tim Peters5aa91602002-01-30 05:46:57 +00005336
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005337 if ((n != 4) && (!CloseHandle(hChildStderrWr)))
5338 return win32_error("CloseHandle", NULL);
5339
5340 return f;
5341}
Fredrik Lundh56055a42000-07-23 19:47:12 +00005342
5343/*
5344 * Wrapper for fclose() to use for popen* files, so we can retrieve the
5345 * exit code for the child process and return as a result of the close.
Mark Hammondb37a3732000-08-14 04:47:33 +00005346 *
5347 * This function uses the _PyPopenProcs dictionary in order to map the
5348 * input file pointer to information about the process that was
5349 * originally created by the popen* call that created the file pointer.
5350 * The dictionary uses the file pointer as a key (with one entry
5351 * inserted for each file returned by the original popen* call) and a
5352 * single list object as the value for all files from a single call.
5353 * The list object contains the Win32 process handle at [0], and a file
5354 * count at [1], which is initialized to the total number of file
5355 * handles using that list.
5356 *
5357 * This function closes whichever handle it is passed, and decrements
5358 * the file count in the dictionary for the process handle pointed to
5359 * by this file. On the last close (when the file count reaches zero),
5360 * this function will wait for the child process and then return its
5361 * exit code as the result of the close() operation. This permits the
5362 * files to be closed in any order - it is always the close() of the
5363 * final handle that will return the exit code.
Mark Hammond8d98d2c2003-04-19 15:41:53 +00005364 *
5365 * NOTE: This function is currently called with the GIL released.
5366 * hence we use the GILState API to manage our state.
Fredrik Lundh56055a42000-07-23 19:47:12 +00005367 */
Tim Peters736aa322000-09-01 06:51:24 +00005368
Fredrik Lundh56055a42000-07-23 19:47:12 +00005369static int _PyPclose(FILE *file)
5370{
Fredrik Lundh20318932000-07-26 17:29:12 +00005371 int result;
Fredrik Lundh56055a42000-07-23 19:47:12 +00005372 DWORD exit_code;
5373 HANDLE hProcess;
Mark Hammondb37a3732000-08-14 04:47:33 +00005374 PyObject *procObj, *hProcessObj, *intObj, *fileObj;
5375 long file_count;
Tim Peters736aa322000-09-01 06:51:24 +00005376#ifdef WITH_THREAD
Mark Hammond8d98d2c2003-04-19 15:41:53 +00005377 PyGILState_STATE state;
Tim Peters736aa322000-09-01 06:51:24 +00005378#endif
5379
Fredrik Lundh20318932000-07-26 17:29:12 +00005380 /* Close the file handle first, to ensure it can't block the
Mark Hammondb37a3732000-08-14 04:47:33 +00005381 * child from exiting if it's the last handle.
Fredrik Lundh20318932000-07-26 17:29:12 +00005382 */
5383 result = fclose(file);
Tim Peters736aa322000-09-01 06:51:24 +00005384#ifdef WITH_THREAD
Mark Hammond8d98d2c2003-04-19 15:41:53 +00005385 state = PyGILState_Ensure();
Tim Peters736aa322000-09-01 06:51:24 +00005386#endif
Fredrik Lundh56055a42000-07-23 19:47:12 +00005387 if (_PyPopenProcs) {
Mark Hammondb37a3732000-08-14 04:47:33 +00005388 if ((fileObj = PyLong_FromVoidPtr(file)) != NULL &&
5389 (procObj = PyDict_GetItem(_PyPopenProcs,
5390 fileObj)) != NULL &&
5391 (hProcessObj = PyList_GetItem(procObj,0)) != NULL &&
5392 (intObj = PyList_GetItem(procObj,1)) != NULL) {
5393
5394 hProcess = PyLong_AsVoidPtr(hProcessObj);
5395 file_count = PyInt_AsLong(intObj);
5396
5397 if (file_count > 1) {
5398 /* Still other files referencing process */
5399 file_count--;
5400 PyList_SetItem(procObj,1,
5401 PyInt_FromLong(file_count));
5402 } else {
5403 /* Last file for this process */
Fredrik Lundh20318932000-07-26 17:29:12 +00005404 if (result != EOF &&
5405 WaitForSingleObject(hProcess, INFINITE) != WAIT_FAILED &&
5406 GetExitCodeProcess(hProcess, &exit_code)) {
Fredrik Lundh56055a42000-07-23 19:47:12 +00005407 /* Possible truncation here in 16-bit environments, but
5408 * real exit codes are just the lower byte in any event.
5409 */
5410 result = exit_code;
Fredrik Lundh56055a42000-07-23 19:47:12 +00005411 } else {
Fredrik Lundh20318932000-07-26 17:29:12 +00005412 /* Indicate failure - this will cause the file object
5413 * to raise an I/O error and translate the last Win32
5414 * error code from errno. We do have a problem with
5415 * last errors that overlap the normal errno table,
5416 * but that's a consistent problem with the file object.
Fredrik Lundh56055a42000-07-23 19:47:12 +00005417 */
Fredrik Lundh20318932000-07-26 17:29:12 +00005418 if (result != EOF) {
5419 /* If the error wasn't from the fclose(), then
5420 * set errno for the file object error handling.
5421 */
5422 errno = GetLastError();
5423 }
5424 result = -1;
Fredrik Lundh56055a42000-07-23 19:47:12 +00005425 }
5426
5427 /* Free up the native handle at this point */
5428 CloseHandle(hProcess);
Mark Hammondb37a3732000-08-14 04:47:33 +00005429 }
Fredrik Lundh56055a42000-07-23 19:47:12 +00005430
Mark Hammondb37a3732000-08-14 04:47:33 +00005431 /* Remove this file pointer from dictionary */
5432 PyDict_DelItem(_PyPopenProcs, fileObj);
5433
5434 if (PyDict_Size(_PyPopenProcs) == 0) {
5435 Py_DECREF(_PyPopenProcs);
5436 _PyPopenProcs = NULL;
5437 }
5438
5439 } /* if object retrieval ok */
5440
5441 Py_XDECREF(fileObj);
Fredrik Lundh56055a42000-07-23 19:47:12 +00005442 } /* if _PyPopenProcs */
5443
Tim Peters736aa322000-09-01 06:51:24 +00005444#ifdef WITH_THREAD
Mark Hammond8d98d2c2003-04-19 15:41:53 +00005445 PyGILState_Release(state);
Tim Peters736aa322000-09-01 06:51:24 +00005446#endif
Fredrik Lundh56055a42000-07-23 19:47:12 +00005447 return result;
5448}
Tim Peters9acdd3a2000-09-01 19:26:36 +00005449
5450#else /* which OS? */
Barry Warsaw53699e91996-12-10 23:23:01 +00005451static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005452posix_popen(PyObject *self, PyObject *args)
Guido van Rossum3b066191991-06-04 19:40:25 +00005453{
Guido van Rossuma6a1e531995-01-10 15:36:38 +00005454 char *name;
5455 char *mode = "r";
5456 int bufsize = -1;
Guido van Rossum3b066191991-06-04 19:40:25 +00005457 FILE *fp;
Barry Warsaw53699e91996-12-10 23:23:01 +00005458 PyObject *f;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00005459 if (!PyArg_ParseTuple(args, "s|si:popen", &name, &mode, &bufsize))
Guido van Rossum3b066191991-06-04 19:40:25 +00005460 return NULL;
Martin v. Löwis9ad853b2003-10-31 10:01:53 +00005461 /* Strip mode of binary or text modifiers */
5462 if (strcmp(mode, "rb") == 0 || strcmp(mode, "rt") == 0)
5463 mode = "r";
5464 else if (strcmp(mode, "wb") == 0 || strcmp(mode, "wt") == 0)
5465 mode = "w";
Barry Warsaw53699e91996-12-10 23:23:01 +00005466 Py_BEGIN_ALLOW_THREADS
Guido van Rossumef0a00e1992-01-27 16:51:30 +00005467 fp = popen(name, mode);
Barry Warsaw53699e91996-12-10 23:23:01 +00005468 Py_END_ALLOW_THREADS
Guido van Rossum3b066191991-06-04 19:40:25 +00005469 if (fp == NULL)
5470 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00005471 f = PyFile_FromFile(fp, name, mode, pclose);
Guido van Rossuma6a1e531995-01-10 15:36:38 +00005472 if (f != NULL)
Barry Warsaw53699e91996-12-10 23:23:01 +00005473 PyFile_SetBufSize(f, bufsize);
Guido van Rossuma6a1e531995-01-10 15:36:38 +00005474 return f;
Guido van Rossum3b066191991-06-04 19:40:25 +00005475}
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00005476
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00005477#endif /* PYOS_??? */
Guido van Rossuma4916fa1996-05-23 22:58:55 +00005478#endif /* HAVE_POPEN */
Guido van Rossum3b066191991-06-04 19:40:25 +00005479
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005480
Guido van Rossumb6775db1994-08-01 11:34:53 +00005481#ifdef HAVE_SETUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005482PyDoc_STRVAR(posix_setuid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005483"setuid(uid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005484Set the current process's user id.");
5485
Barry Warsaw53699e91996-12-10 23:23:01 +00005486static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005487posix_setuid(PyObject *self, PyObject *args)
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005488{
5489 int uid;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00005490 if (!PyArg_ParseTuple(args, "i:setuid", &uid))
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005491 return NULL;
5492 if (setuid(uid) < 0)
5493 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00005494 Py_INCREF(Py_None);
5495 return Py_None;
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005496}
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00005497#endif /* HAVE_SETUID */
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005498
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005499
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005500#ifdef HAVE_SETEUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005501PyDoc_STRVAR(posix_seteuid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005502"seteuid(uid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005503Set the current process's effective user id.");
5504
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005505static PyObject *
5506posix_seteuid (PyObject *self, PyObject *args)
5507{
5508 int euid;
5509 if (!PyArg_ParseTuple(args, "i", &euid)) {
5510 return NULL;
5511 } else if (seteuid(euid) < 0) {
5512 return posix_error();
5513 } else {
5514 Py_INCREF(Py_None);
5515 return Py_None;
5516 }
5517}
5518#endif /* HAVE_SETEUID */
5519
5520#ifdef HAVE_SETEGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005521PyDoc_STRVAR(posix_setegid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005522"setegid(gid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005523Set the current process's effective group id.");
5524
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005525static PyObject *
5526posix_setegid (PyObject *self, PyObject *args)
5527{
5528 int egid;
5529 if (!PyArg_ParseTuple(args, "i", &egid)) {
5530 return NULL;
5531 } else if (setegid(egid) < 0) {
5532 return posix_error();
5533 } else {
5534 Py_INCREF(Py_None);
5535 return Py_None;
5536 }
5537}
5538#endif /* HAVE_SETEGID */
5539
5540#ifdef HAVE_SETREUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005541PyDoc_STRVAR(posix_setreuid__doc__,
Neal Norwitz94f1d712004-02-16 01:26:34 +00005542"setreuid(ruid, euid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005543Set the current process's real and effective user ids.");
5544
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005545static PyObject *
5546posix_setreuid (PyObject *self, PyObject *args)
5547{
5548 int ruid, euid;
5549 if (!PyArg_ParseTuple(args, "ii", &ruid, &euid)) {
5550 return NULL;
5551 } else if (setreuid(ruid, euid) < 0) {
5552 return posix_error();
5553 } else {
5554 Py_INCREF(Py_None);
5555 return Py_None;
5556 }
5557}
5558#endif /* HAVE_SETREUID */
5559
5560#ifdef HAVE_SETREGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005561PyDoc_STRVAR(posix_setregid__doc__,
Neal Norwitz94f1d712004-02-16 01:26:34 +00005562"setregid(rgid, egid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005563Set the current process's real and effective group ids.");
5564
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005565static PyObject *
5566posix_setregid (PyObject *self, PyObject *args)
5567{
5568 int rgid, egid;
5569 if (!PyArg_ParseTuple(args, "ii", &rgid, &egid)) {
5570 return NULL;
5571 } else if (setregid(rgid, egid) < 0) {
5572 return posix_error();
5573 } else {
5574 Py_INCREF(Py_None);
5575 return Py_None;
5576 }
5577}
5578#endif /* HAVE_SETREGID */
5579
Guido van Rossumb6775db1994-08-01 11:34:53 +00005580#ifdef HAVE_SETGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005581PyDoc_STRVAR(posix_setgid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005582"setgid(gid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005583Set the current process's group id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005584
Barry Warsaw53699e91996-12-10 23:23:01 +00005585static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005586posix_setgid(PyObject *self, PyObject *args)
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005587{
5588 int gid;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00005589 if (!PyArg_ParseTuple(args, "i:setgid", &gid))
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005590 return NULL;
5591 if (setgid(gid) < 0)
5592 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00005593 Py_INCREF(Py_None);
5594 return Py_None;
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005595}
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00005596#endif /* HAVE_SETGID */
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005597
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005598#ifdef HAVE_SETGROUPS
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005599PyDoc_STRVAR(posix_setgroups__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005600"setgroups(list)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005601Set the groups of the current process to list.");
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005602
5603static PyObject *
Georg Brandl96a8c392006-05-29 21:04:52 +00005604posix_setgroups(PyObject *self, PyObject *groups)
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005605{
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005606 int i, len;
5607 gid_t grouplist[MAX_GROUPS];
Tim Peters5aa91602002-01-30 05:46:57 +00005608
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005609 if (!PySequence_Check(groups)) {
5610 PyErr_SetString(PyExc_TypeError, "setgroups argument must be a sequence");
5611 return NULL;
5612 }
5613 len = PySequence_Size(groups);
5614 if (len > MAX_GROUPS) {
5615 PyErr_SetString(PyExc_ValueError, "too many groups");
5616 return NULL;
5617 }
5618 for(i = 0; i < len; i++) {
5619 PyObject *elem;
5620 elem = PySequence_GetItem(groups, i);
5621 if (!elem)
5622 return NULL;
5623 if (!PyInt_Check(elem)) {
Georg Brandla13c2442005-11-22 19:30:31 +00005624 if (!PyLong_Check(elem)) {
5625 PyErr_SetString(PyExc_TypeError,
5626 "groups must be integers");
5627 Py_DECREF(elem);
5628 return NULL;
5629 } else {
5630 unsigned long x = PyLong_AsUnsignedLong(elem);
5631 if (PyErr_Occurred()) {
5632 PyErr_SetString(PyExc_TypeError,
5633 "group id too big");
5634 Py_DECREF(elem);
5635 return NULL;
5636 }
5637 grouplist[i] = x;
5638 /* read back the value to see if it fitted in gid_t */
5639 if (grouplist[i] != x) {
5640 PyErr_SetString(PyExc_TypeError,
5641 "group id too big");
5642 Py_DECREF(elem);
5643 return NULL;
5644 }
5645 }
5646 } else {
5647 long x = PyInt_AsLong(elem);
5648 grouplist[i] = x;
5649 if (grouplist[i] != x) {
5650 PyErr_SetString(PyExc_TypeError,
5651 "group id too big");
5652 Py_DECREF(elem);
5653 return NULL;
5654 }
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005655 }
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005656 Py_DECREF(elem);
5657 }
5658
5659 if (setgroups(len, grouplist) < 0)
5660 return posix_error();
5661 Py_INCREF(Py_None);
5662 return Py_None;
5663}
5664#endif /* HAVE_SETGROUPS */
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005665
Neal Norwitz6c2f9132006-03-20 07:25:26 +00005666#if defined(HAVE_WAIT3) || defined(HAVE_WAIT4)
Neal Norwitz05a45592006-03-20 06:30:08 +00005667static PyObject *
Christian Heimesd491d712008-02-01 18:49:26 +00005668wait_helper(pid_t pid, int status, struct rusage *ru)
Neal Norwitz05a45592006-03-20 06:30:08 +00005669{
5670 PyObject *result;
5671 static PyObject *struct_rusage;
5672
5673 if (pid == -1)
5674 return posix_error();
5675
5676 if (struct_rusage == NULL) {
Christian Heimes000a0742008-01-03 22:16:32 +00005677 PyObject *m = PyImport_ImportModuleNoBlock("resource");
Neal Norwitz05a45592006-03-20 06:30:08 +00005678 if (m == NULL)
5679 return NULL;
5680 struct_rusage = PyObject_GetAttrString(m, "struct_rusage");
5681 Py_DECREF(m);
5682 if (struct_rusage == NULL)
5683 return NULL;
5684 }
5685
5686 /* XXX(nnorwitz): Copied (w/mods) from resource.c, there should be only one. */
5687 result = PyStructSequence_New((PyTypeObject*) struct_rusage);
5688 if (!result)
5689 return NULL;
5690
5691#ifndef doubletime
5692#define doubletime(TV) ((double)(TV).tv_sec + (TV).tv_usec * 0.000001)
5693#endif
5694
5695 PyStructSequence_SET_ITEM(result, 0,
5696 PyFloat_FromDouble(doubletime(ru->ru_utime)));
5697 PyStructSequence_SET_ITEM(result, 1,
5698 PyFloat_FromDouble(doubletime(ru->ru_stime)));
5699#define SET_INT(result, index, value)\
5700 PyStructSequence_SET_ITEM(result, index, PyInt_FromLong(value))
5701 SET_INT(result, 2, ru->ru_maxrss);
5702 SET_INT(result, 3, ru->ru_ixrss);
5703 SET_INT(result, 4, ru->ru_idrss);
5704 SET_INT(result, 5, ru->ru_isrss);
5705 SET_INT(result, 6, ru->ru_minflt);
5706 SET_INT(result, 7, ru->ru_majflt);
5707 SET_INT(result, 8, ru->ru_nswap);
5708 SET_INT(result, 9, ru->ru_inblock);
5709 SET_INT(result, 10, ru->ru_oublock);
5710 SET_INT(result, 11, ru->ru_msgsnd);
5711 SET_INT(result, 12, ru->ru_msgrcv);
5712 SET_INT(result, 13, ru->ru_nsignals);
5713 SET_INT(result, 14, ru->ru_nvcsw);
5714 SET_INT(result, 15, ru->ru_nivcsw);
5715#undef SET_INT
5716
5717 if (PyErr_Occurred()) {
5718 Py_DECREF(result);
5719 return NULL;
5720 }
5721
Neal Norwitz9b00a562006-03-20 08:47:12 +00005722 return Py_BuildValue("iiN", pid, status, result);
Neal Norwitz05a45592006-03-20 06:30:08 +00005723}
Neal Norwitz6c2f9132006-03-20 07:25:26 +00005724#endif /* HAVE_WAIT3 || HAVE_WAIT4 */
Neal Norwitz05a45592006-03-20 06:30:08 +00005725
5726#ifdef HAVE_WAIT3
5727PyDoc_STRVAR(posix_wait3__doc__,
5728"wait3(options) -> (pid, status, rusage)\n\n\
5729Wait for completion of a child process.");
5730
5731static PyObject *
5732posix_wait3(PyObject *self, PyObject *args)
5733{
Christian Heimesd491d712008-02-01 18:49:26 +00005734 pid_t pid;
5735 int options;
Neal Norwitz05a45592006-03-20 06:30:08 +00005736 struct rusage ru;
Neal Norwitzd5a37542006-03-20 06:48:34 +00005737 WAIT_TYPE status;
5738 WAIT_STATUS_INT(status) = 0;
Neal Norwitz05a45592006-03-20 06:30:08 +00005739
5740 if (!PyArg_ParseTuple(args, "i:wait3", &options))
5741 return NULL;
5742
5743 Py_BEGIN_ALLOW_THREADS
5744 pid = wait3(&status, options, &ru);
5745 Py_END_ALLOW_THREADS
5746
Neal Norwitzd5a37542006-03-20 06:48:34 +00005747 return wait_helper(pid, WAIT_STATUS_INT(status), &ru);
Neal Norwitz05a45592006-03-20 06:30:08 +00005748}
5749#endif /* HAVE_WAIT3 */
5750
5751#ifdef HAVE_WAIT4
5752PyDoc_STRVAR(posix_wait4__doc__,
5753"wait4(pid, options) -> (pid, status, rusage)\n\n\
5754Wait for completion of a given child process.");
5755
5756static PyObject *
5757posix_wait4(PyObject *self, PyObject *args)
5758{
Christian Heimesd491d712008-02-01 18:49:26 +00005759 pid_t pid;
5760 int options;
Neal Norwitz05a45592006-03-20 06:30:08 +00005761 struct rusage ru;
Neal Norwitzd5a37542006-03-20 06:48:34 +00005762 WAIT_TYPE status;
5763 WAIT_STATUS_INT(status) = 0;
Neal Norwitz05a45592006-03-20 06:30:08 +00005764
5765 if (!PyArg_ParseTuple(args, "ii:wait4", &pid, &options))
5766 return NULL;
5767
5768 Py_BEGIN_ALLOW_THREADS
5769 pid = wait4(pid, &status, options, &ru);
5770 Py_END_ALLOW_THREADS
5771
Neal Norwitzd5a37542006-03-20 06:48:34 +00005772 return wait_helper(pid, WAIT_STATUS_INT(status), &ru);
Neal Norwitz05a45592006-03-20 06:30:08 +00005773}
5774#endif /* HAVE_WAIT4 */
5775
Guido van Rossumb6775db1994-08-01 11:34:53 +00005776#ifdef HAVE_WAITPID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005777PyDoc_STRVAR(posix_waitpid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005778"waitpid(pid, options) -> (pid, status)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005779Wait for completion of a given child process.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005780
Barry Warsaw53699e91996-12-10 23:23:01 +00005781static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005782posix_waitpid(PyObject *self, PyObject *args)
Guido van Rossum85e3b011991-06-03 12:42:10 +00005783{
Christian Heimesd491d712008-02-01 18:49:26 +00005784 pid_t pid;
5785 int options;
Neal Norwitzd5a37542006-03-20 06:48:34 +00005786 WAIT_TYPE status;
5787 WAIT_STATUS_INT(status) = 0;
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00005788
Fred Drake5ab8eaf1999-12-09 21:13:07 +00005789 if (!PyArg_ParseTuple(args, "ii:waitpid", &pid, &options))
Guido van Rossum21803b81992-08-09 12:55:27 +00005790 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00005791 Py_BEGIN_ALLOW_THREADS
Guido van Rossume6a3aa61999-02-01 16:15:30 +00005792 pid = waitpid(pid, &status, options);
Barry Warsaw53699e91996-12-10 23:23:01 +00005793 Py_END_ALLOW_THREADS
Guido van Rossum85e3b011991-06-03 12:42:10 +00005794 if (pid == -1)
5795 return posix_error();
Neal Norwitzd5a37542006-03-20 06:48:34 +00005796
5797 return Py_BuildValue("ii", pid, WAIT_STATUS_INT(status));
Guido van Rossum21803b81992-08-09 12:55:27 +00005798}
5799
Tim Petersab034fa2002-02-01 11:27:43 +00005800#elif defined(HAVE_CWAIT)
5801
5802/* MS C has a variant of waitpid() that's usable for most purposes. */
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005803PyDoc_STRVAR(posix_waitpid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005804"waitpid(pid, options) -> (pid, status << 8)\n\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005805"Wait for completion of a given process. options is ignored on Windows.");
Tim Petersab034fa2002-02-01 11:27:43 +00005806
5807static PyObject *
5808posix_waitpid(PyObject *self, PyObject *args)
5809{
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005810 Py_intptr_t pid;
Martin v. Löwis18e16552006-02-15 17:27:45 +00005811 int status, options;
Tim Petersab034fa2002-02-01 11:27:43 +00005812
5813 if (!PyArg_ParseTuple(args, "ii:waitpid", &pid, &options))
5814 return NULL;
5815 Py_BEGIN_ALLOW_THREADS
5816 pid = _cwait(&status, pid, options);
5817 Py_END_ALLOW_THREADS
5818 if (pid == -1)
5819 return posix_error();
Neal Norwitzd5a37542006-03-20 06:48:34 +00005820
5821 /* shift the status left a byte so this is more like the POSIX waitpid */
5822 return Py_BuildValue("ii", pid, status << 8);
Tim Petersab034fa2002-02-01 11:27:43 +00005823}
5824#endif /* HAVE_WAITPID || HAVE_CWAIT */
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005825
Guido van Rossumad0ee831995-03-01 10:34:45 +00005826#ifdef HAVE_WAIT
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005827PyDoc_STRVAR(posix_wait__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005828"wait() -> (pid, status)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005829Wait for completion of a child process.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005830
Barry Warsaw53699e91996-12-10 23:23:01 +00005831static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00005832posix_wait(PyObject *self, PyObject *noargs)
Guido van Rossum21803b81992-08-09 12:55:27 +00005833{
Christian Heimesd491d712008-02-01 18:49:26 +00005834 pid_t pid;
Neal Norwitzd5a37542006-03-20 06:48:34 +00005835 WAIT_TYPE status;
5836 WAIT_STATUS_INT(status) = 0;
Neal Norwitze241ce82003-02-17 18:17:05 +00005837
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00005838 Py_BEGIN_ALLOW_THREADS
5839 pid = wait(&status);
Barry Warsaw53699e91996-12-10 23:23:01 +00005840 Py_END_ALLOW_THREADS
Guido van Rossum21803b81992-08-09 12:55:27 +00005841 if (pid == -1)
5842 return posix_error();
Neal Norwitzd5a37542006-03-20 06:48:34 +00005843
5844 return Py_BuildValue("ii", pid, WAIT_STATUS_INT(status));
Guido van Rossum85e3b011991-06-03 12:42:10 +00005845}
Guido van Rossumad0ee831995-03-01 10:34:45 +00005846#endif
Guido van Rossum85e3b011991-06-03 12:42:10 +00005847
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005848
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005849PyDoc_STRVAR(posix_lstat__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005850"lstat(path) -> stat result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005851Like stat(path), but do not follow symbolic links.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005852
Barry Warsaw53699e91996-12-10 23:23:01 +00005853static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005854posix_lstat(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00005855{
Guido van Rossumb6775db1994-08-01 11:34:53 +00005856#ifdef HAVE_LSTAT
Mark Hammondc2e85bd2002-10-03 05:10:39 +00005857 return posix_do_stat(self, args, "et:lstat", lstat, NULL, NULL);
Guido van Rossumb6775db1994-08-01 11:34:53 +00005858#else /* !HAVE_LSTAT */
Mark Hammondc2e85bd2002-10-03 05:10:39 +00005859#ifdef MS_WINDOWS
Martin v. Löwis14694662006-02-03 12:54:16 +00005860 return posix_do_stat(self, args, "et:lstat", STAT, "U:lstat", win32_wstat);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00005861#else
5862 return posix_do_stat(self, args, "et:lstat", STAT, NULL, NULL);
5863#endif
Guido van Rossumb6775db1994-08-01 11:34:53 +00005864#endif /* !HAVE_LSTAT */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00005865}
5866
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005867
Guido van Rossumb6775db1994-08-01 11:34:53 +00005868#ifdef HAVE_READLINK
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005869PyDoc_STRVAR(posix_readlink__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005870"readlink(path) -> path\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005871Return a string representing the path to which the symbolic link points.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005872
Barry Warsaw53699e91996-12-10 23:23:01 +00005873static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005874posix_readlink(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00005875{
Ronald Oussoren10168f22006-10-22 10:45:18 +00005876 PyObject* v;
Guido van Rossumb6775db1994-08-01 11:34:53 +00005877 char buf[MAXPATHLEN];
Guido van Rossumef0a00e1992-01-27 16:51:30 +00005878 char *path;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00005879 int n;
Ronald Oussoren10168f22006-10-22 10:45:18 +00005880#ifdef Py_USING_UNICODE
5881 int arg_is_unicode = 0;
5882#endif
5883
5884 if (!PyArg_ParseTuple(args, "et:readlink",
5885 Py_FileSystemDefaultEncoding, &path))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00005886 return NULL;
Ronald Oussoren10168f22006-10-22 10:45:18 +00005887#ifdef Py_USING_UNICODE
5888 v = PySequence_GetItem(args, 0);
Neal Norwitz91a57212007-08-12 17:11:13 +00005889 if (v == NULL) {
5890 PyMem_Free(path);
5891 return NULL;
5892 }
Ronald Oussoren10168f22006-10-22 10:45:18 +00005893
5894 if (PyUnicode_Check(v)) {
5895 arg_is_unicode = 1;
5896 }
5897 Py_DECREF(v);
5898#endif
5899
Barry Warsaw53699e91996-12-10 23:23:01 +00005900 Py_BEGIN_ALLOW_THREADS
Guido van Rossum50e61dc1992-03-27 17:22:31 +00005901 n = readlink(path, buf, (int) sizeof buf);
Barry Warsaw53699e91996-12-10 23:23:01 +00005902 Py_END_ALLOW_THREADS
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00005903 if (n < 0)
Neal Norwitz91a57212007-08-12 17:11:13 +00005904 return posix_error_with_allocated_filename(path);
Ronald Oussoren10168f22006-10-22 10:45:18 +00005905
Neal Norwitz91a57212007-08-12 17:11:13 +00005906 PyMem_Free(path);
Gregory P. Smithdd96db62008-06-09 04:58:54 +00005907 v = PyString_FromStringAndSize(buf, n);
Ronald Oussoren10168f22006-10-22 10:45:18 +00005908#ifdef Py_USING_UNICODE
5909 if (arg_is_unicode) {
5910 PyObject *w;
5911
5912 w = PyUnicode_FromEncodedObject(v,
5913 Py_FileSystemDefaultEncoding,
5914 "strict");
5915 if (w != NULL) {
5916 Py_DECREF(v);
5917 v = w;
5918 }
5919 else {
5920 /* fall back to the original byte string, as
5921 discussed in patch #683592 */
5922 PyErr_Clear();
5923 }
5924 }
5925#endif
5926 return v;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00005927}
Guido van Rossumb6775db1994-08-01 11:34:53 +00005928#endif /* HAVE_READLINK */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00005929
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005930
Guido van Rossumb6775db1994-08-01 11:34:53 +00005931#ifdef HAVE_SYMLINK
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005932PyDoc_STRVAR(posix_symlink__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005933"symlink(src, dst)\n\n\
Brett Cannon807413d2003-06-11 00:18:09 +00005934Create a symbolic link pointing to src named dst.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005935
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00005936static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005937posix_symlink(PyObject *self, PyObject *args)
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00005938{
Martin v. Löwis4fc2bda2006-05-04 12:04:27 +00005939 return posix_2str(args, "etet:symlink", symlink);
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00005940}
5941#endif /* HAVE_SYMLINK */
5942
5943
5944#ifdef HAVE_TIMES
5945#ifndef HZ
5946#define HZ 60 /* Universal constant :-) */
5947#endif /* HZ */
Tim Peters5aa91602002-01-30 05:46:57 +00005948
Guido van Rossumd48f2521997-12-05 22:19:34 +00005949#if defined(PYCC_VACPP) && defined(PYOS_OS2)
5950static long
Thomas Woutersf3f33dc2000-07-21 06:00:07 +00005951system_uptime(void)
Guido van Rossumd48f2521997-12-05 22:19:34 +00005952{
5953 ULONG value = 0;
5954
5955 Py_BEGIN_ALLOW_THREADS
5956 DosQuerySysInfo(QSV_MS_COUNT, QSV_MS_COUNT, &value, sizeof(value));
5957 Py_END_ALLOW_THREADS
5958
5959 return value;
5960}
5961
5962static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00005963posix_times(PyObject *self, PyObject *noargs)
Guido van Rossumd48f2521997-12-05 22:19:34 +00005964{
Guido van Rossumd48f2521997-12-05 22:19:34 +00005965 /* Currently Only Uptime is Provided -- Others Later */
5966 return Py_BuildValue("ddddd",
5967 (double)0 /* t.tms_utime / HZ */,
5968 (double)0 /* t.tms_stime / HZ */,
5969 (double)0 /* t.tms_cutime / HZ */,
5970 (double)0 /* t.tms_cstime / HZ */,
5971 (double)system_uptime() / 1000);
5972}
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00005973#else /* not OS2 */
Barry Warsaw53699e91996-12-10 23:23:01 +00005974static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00005975posix_times(PyObject *self, PyObject *noargs)
Guido van Rossum22db57e1992-04-05 14:25:30 +00005976{
5977 struct tms t;
5978 clock_t c;
Guido van Rossum22db57e1992-04-05 14:25:30 +00005979 errno = 0;
5980 c = times(&t);
Guido van Rossum687dd131993-05-17 08:34:16 +00005981 if (c == (clock_t) -1)
5982 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00005983 return Py_BuildValue("ddddd",
Barry Warsaw43d68b81996-12-19 22:10:44 +00005984 (double)t.tms_utime / HZ,
5985 (double)t.tms_stime / HZ,
5986 (double)t.tms_cutime / HZ,
5987 (double)t.tms_cstime / HZ,
5988 (double)c / HZ);
Guido van Rossum22db57e1992-04-05 14:25:30 +00005989}
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00005990#endif /* not OS2 */
Guido van Rossumb6775db1994-08-01 11:34:53 +00005991#endif /* HAVE_TIMES */
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00005992
5993
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00005994#ifdef MS_WINDOWS
Guido van Rossum14ed0b21994-09-29 09:50:09 +00005995#define HAVE_TIMES /* so the method table will pick it up */
Barry Warsaw53699e91996-12-10 23:23:01 +00005996static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00005997posix_times(PyObject *self, PyObject *noargs)
Guido van Rossum14ed0b21994-09-29 09:50:09 +00005998{
5999 FILETIME create, exit, kernel, user;
6000 HANDLE hProc;
Guido van Rossum14ed0b21994-09-29 09:50:09 +00006001 hProc = GetCurrentProcess();
Guido van Rossumb8c3cbd1999-02-16 14:37:28 +00006002 GetProcessTimes(hProc, &create, &exit, &kernel, &user);
6003 /* The fields of a FILETIME structure are the hi and lo part
6004 of a 64-bit value expressed in 100 nanosecond units.
6005 1e7 is one second in such units; 1e-7 the inverse.
6006 429.4967296 is 2**32 / 1e7 or 2**32 * 1e-7.
6007 */
Barry Warsaw53699e91996-12-10 23:23:01 +00006008 return Py_BuildValue(
6009 "ddddd",
Guido van Rossumb8c3cbd1999-02-16 14:37:28 +00006010 (double)(user.dwHighDateTime*429.4967296 +
6011 user.dwLowDateTime*1e-7),
Georg Brandl0a40ffb2008-02-13 07:20:22 +00006012 (double)(kernel.dwHighDateTime*429.4967296 +
6013 kernel.dwLowDateTime*1e-7),
Barry Warsaw53699e91996-12-10 23:23:01 +00006014 (double)0,
6015 (double)0,
6016 (double)0);
Guido van Rossum14ed0b21994-09-29 09:50:09 +00006017}
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006018#endif /* MS_WINDOWS */
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006019
6020#ifdef HAVE_TIMES
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006021PyDoc_STRVAR(posix_times__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006022"times() -> (utime, stime, cutime, cstime, elapsed_time)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006023Return a tuple of floating point numbers indicating process times.");
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006024#endif
Guido van Rossum22db57e1992-04-05 14:25:30 +00006025
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006026
Martin v. Löwis49ee14d2003-11-10 06:35:36 +00006027#ifdef HAVE_GETSID
6028PyDoc_STRVAR(posix_getsid__doc__,
6029"getsid(pid) -> sid\n\n\
6030Call the system call getsid().");
6031
6032static PyObject *
6033posix_getsid(PyObject *self, PyObject *args)
6034{
Christian Heimesd491d712008-02-01 18:49:26 +00006035 pid_t pid;
6036 int sid;
Martin v. Löwis49ee14d2003-11-10 06:35:36 +00006037 if (!PyArg_ParseTuple(args, "i:getsid", &pid))
6038 return NULL;
6039 sid = getsid(pid);
6040 if (sid < 0)
6041 return posix_error();
6042 return PyInt_FromLong((long)sid);
6043}
6044#endif /* HAVE_GETSID */
6045
6046
Guido van Rossumb6775db1994-08-01 11:34:53 +00006047#ifdef HAVE_SETSID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006048PyDoc_STRVAR(posix_setsid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006049"setsid()\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006050Call the system call setsid().");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006051
Barry Warsaw53699e91996-12-10 23:23:01 +00006052static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00006053posix_setsid(PyObject *self, PyObject *noargs)
Guido van Rossumc2670a01992-09-13 20:07:29 +00006054{
Guido van Rossum687dd131993-05-17 08:34:16 +00006055 if (setsid() < 0)
6056 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006057 Py_INCREF(Py_None);
6058 return Py_None;
Guido van Rossumc2670a01992-09-13 20:07:29 +00006059}
Guido van Rossumb6775db1994-08-01 11:34:53 +00006060#endif /* HAVE_SETSID */
Guido van Rossumc2670a01992-09-13 20:07:29 +00006061
Guido van Rossumb6775db1994-08-01 11:34:53 +00006062#ifdef HAVE_SETPGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006063PyDoc_STRVAR(posix_setpgid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006064"setpgid(pid, pgrp)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006065Call the system call setpgid().");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006066
Barry Warsaw53699e91996-12-10 23:23:01 +00006067static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006068posix_setpgid(PyObject *self, PyObject *args)
Guido van Rossumc2670a01992-09-13 20:07:29 +00006069{
Christian Heimesd491d712008-02-01 18:49:26 +00006070 pid_t pid;
6071 int pgrp;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006072 if (!PyArg_ParseTuple(args, "ii:setpgid", &pid, &pgrp))
Guido van Rossumc2670a01992-09-13 20:07:29 +00006073 return NULL;
Guido van Rossum687dd131993-05-17 08:34:16 +00006074 if (setpgid(pid, pgrp) < 0)
6075 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006076 Py_INCREF(Py_None);
6077 return Py_None;
Guido van Rossumc2670a01992-09-13 20:07:29 +00006078}
Guido van Rossumb6775db1994-08-01 11:34:53 +00006079#endif /* HAVE_SETPGID */
Guido van Rossumc2670a01992-09-13 20:07:29 +00006080
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006081
Guido van Rossumb6775db1994-08-01 11:34:53 +00006082#ifdef HAVE_TCGETPGRP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006083PyDoc_STRVAR(posix_tcgetpgrp__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006084"tcgetpgrp(fd) -> pgid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006085Return the process group associated with the terminal given by a fd.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006086
Barry Warsaw53699e91996-12-10 23:23:01 +00006087static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006088posix_tcgetpgrp(PyObject *self, PyObject *args)
Guido van Rossum7066dd71992-09-17 17:54:56 +00006089{
Christian Heimese6a80742008-02-03 19:51:13 +00006090 int fd;
6091 pid_t pgid;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006092 if (!PyArg_ParseTuple(args, "i:tcgetpgrp", &fd))
Guido van Rossum7066dd71992-09-17 17:54:56 +00006093 return NULL;
6094 pgid = tcgetpgrp(fd);
Guido van Rossum687dd131993-05-17 08:34:16 +00006095 if (pgid < 0)
6096 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006097 return PyInt_FromLong((long)pgid);
Guido van Rossum7066dd71992-09-17 17:54:56 +00006098}
Guido van Rossumb6775db1994-08-01 11:34:53 +00006099#endif /* HAVE_TCGETPGRP */
Guido van Rossum7066dd71992-09-17 17:54:56 +00006100
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006101
Guido van Rossumb6775db1994-08-01 11:34:53 +00006102#ifdef HAVE_TCSETPGRP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006103PyDoc_STRVAR(posix_tcsetpgrp__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006104"tcsetpgrp(fd, pgid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006105Set the process group associated with the terminal given by a fd.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006106
Barry Warsaw53699e91996-12-10 23:23:01 +00006107static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006108posix_tcsetpgrp(PyObject *self, PyObject *args)
Guido van Rossum7066dd71992-09-17 17:54:56 +00006109{
6110 int fd, pgid;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006111 if (!PyArg_ParseTuple(args, "ii:tcsetpgrp", &fd, &pgid))
Guido van Rossum7066dd71992-09-17 17:54:56 +00006112 return NULL;
Guido van Rossum687dd131993-05-17 08:34:16 +00006113 if (tcsetpgrp(fd, pgid) < 0)
6114 return posix_error();
Barry Warsaw43d68b81996-12-19 22:10:44 +00006115 Py_INCREF(Py_None);
Barry Warsaw53699e91996-12-10 23:23:01 +00006116 return Py_None;
Guido van Rossum7066dd71992-09-17 17:54:56 +00006117}
Guido van Rossumb6775db1994-08-01 11:34:53 +00006118#endif /* HAVE_TCSETPGRP */
Guido van Rossum22db57e1992-04-05 14:25:30 +00006119
Guido van Rossum687dd131993-05-17 08:34:16 +00006120/* Functions acting on file descriptors */
6121
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006122PyDoc_STRVAR(posix_open__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006123"open(filename, flag [, mode=0777]) -> fd\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006124Open a file (for low level IO).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006125
Barry Warsaw53699e91996-12-10 23:23:01 +00006126static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006127posix_open(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006128{
Mark Hammondef8b6542001-05-13 08:04:26 +00006129 char *file = NULL;
Guido van Rossum687dd131993-05-17 08:34:16 +00006130 int flag;
6131 int mode = 0777;
6132 int fd;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00006133
6134#ifdef MS_WINDOWS
6135 if (unicode_file_names()) {
6136 PyUnicodeObject *po;
6137 if (PyArg_ParseTuple(args, "Ui|i:mkdir", &po, &flag, &mode)) {
6138 Py_BEGIN_ALLOW_THREADS
6139 /* PyUnicode_AS_UNICODE OK without thread
6140 lock as it is a simple dereference. */
6141 fd = _wopen(PyUnicode_AS_UNICODE(po), flag, mode);
6142 Py_END_ALLOW_THREADS
6143 if (fd < 0)
6144 return posix_error();
6145 return PyInt_FromLong((long)fd);
6146 }
6147 /* Drop the argument parsing error as narrow strings
6148 are also valid. */
6149 PyErr_Clear();
6150 }
6151#endif
6152
Tim Peters5aa91602002-01-30 05:46:57 +00006153 if (!PyArg_ParseTuple(args, "eti|i",
Mark Hammondef8b6542001-05-13 08:04:26 +00006154 Py_FileSystemDefaultEncoding, &file,
6155 &flag, &mode))
Barry Warsaw43d68b81996-12-19 22:10:44 +00006156 return NULL;
6157
Barry Warsaw53699e91996-12-10 23:23:01 +00006158 Py_BEGIN_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006159 fd = open(file, flag, mode);
Barry Warsaw53699e91996-12-10 23:23:01 +00006160 Py_END_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006161 if (fd < 0)
Mark Hammondef8b6542001-05-13 08:04:26 +00006162 return posix_error_with_allocated_filename(file);
6163 PyMem_Free(file);
Barry Warsaw53699e91996-12-10 23:23:01 +00006164 return PyInt_FromLong((long)fd);
Guido van Rossum687dd131993-05-17 08:34:16 +00006165}
6166
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006167
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006168PyDoc_STRVAR(posix_close__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006169"close(fd)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006170Close a file descriptor (for low level IO).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006171
Barry Warsaw53699e91996-12-10 23:23:01 +00006172static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006173posix_close(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006174{
6175 int fd, res;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006176 if (!PyArg_ParseTuple(args, "i:close", &fd))
Guido van Rossum687dd131993-05-17 08:34:16 +00006177 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00006178 Py_BEGIN_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006179 res = close(fd);
Barry Warsaw53699e91996-12-10 23:23:01 +00006180 Py_END_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006181 if (res < 0)
6182 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006183 Py_INCREF(Py_None);
6184 return Py_None;
Guido van Rossum687dd131993-05-17 08:34:16 +00006185}
6186
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006187
Georg Brandl309501a2008-01-19 20:22:13 +00006188PyDoc_STRVAR(posix_closerange__doc__,
6189"closerange(fd_low, fd_high)\n\n\
6190Closes all file descriptors in [fd_low, fd_high), ignoring errors.");
6191
6192static PyObject *
6193posix_closerange(PyObject *self, PyObject *args)
6194{
6195 int fd_from, fd_to, i;
6196 if (!PyArg_ParseTuple(args, "ii:closerange", &fd_from, &fd_to))
6197 return NULL;
6198 Py_BEGIN_ALLOW_THREADS
6199 for (i = fd_from; i < fd_to; i++)
6200 close(i);
6201 Py_END_ALLOW_THREADS
6202 Py_RETURN_NONE;
6203}
6204
6205
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006206PyDoc_STRVAR(posix_dup__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006207"dup(fd) -> fd2\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006208Return a duplicate of a file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006209
Barry Warsaw53699e91996-12-10 23:23:01 +00006210static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006211posix_dup(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006212{
6213 int fd;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006214 if (!PyArg_ParseTuple(args, "i:dup", &fd))
Guido van Rossum687dd131993-05-17 08:34:16 +00006215 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00006216 Py_BEGIN_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006217 fd = dup(fd);
Barry Warsaw53699e91996-12-10 23:23:01 +00006218 Py_END_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006219 if (fd < 0)
6220 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006221 return PyInt_FromLong((long)fd);
Guido van Rossum687dd131993-05-17 08:34:16 +00006222}
6223
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006224
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006225PyDoc_STRVAR(posix_dup2__doc__,
Andrew M. Kuchling8135fd52004-01-16 13:18:42 +00006226"dup2(old_fd, new_fd)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006227Duplicate file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006228
Barry Warsaw53699e91996-12-10 23:23:01 +00006229static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006230posix_dup2(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006231{
6232 int fd, fd2, res;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006233 if (!PyArg_ParseTuple(args, "ii:dup2", &fd, &fd2))
Guido van Rossum687dd131993-05-17 08:34:16 +00006234 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00006235 Py_BEGIN_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006236 res = dup2(fd, fd2);
Barry Warsaw53699e91996-12-10 23:23:01 +00006237 Py_END_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006238 if (res < 0)
6239 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006240 Py_INCREF(Py_None);
6241 return Py_None;
Guido van Rossum687dd131993-05-17 08:34:16 +00006242}
6243
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006244
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006245PyDoc_STRVAR(posix_lseek__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006246"lseek(fd, pos, how) -> newpos\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006247Set the current position of a file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006248
Barry Warsaw53699e91996-12-10 23:23:01 +00006249static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006250posix_lseek(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006251{
6252 int fd, how;
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006253#if defined(MS_WIN64) || defined(MS_WINDOWS)
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00006254 PY_LONG_LONG pos, res;
Fred Drake699f3522000-06-29 21:12:41 +00006255#else
Guido van Rossum94f6f721999-01-06 18:42:14 +00006256 off_t pos, res;
Fred Drake699f3522000-06-29 21:12:41 +00006257#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00006258 PyObject *posobj;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006259 if (!PyArg_ParseTuple(args, "iOi:lseek", &fd, &posobj, &how))
Guido van Rossum687dd131993-05-17 08:34:16 +00006260 return NULL;
6261#ifdef SEEK_SET
6262 /* Turn 0, 1, 2 into SEEK_{SET,CUR,END} */
6263 switch (how) {
6264 case 0: how = SEEK_SET; break;
6265 case 1: how = SEEK_CUR; break;
6266 case 2: how = SEEK_END; break;
6267 }
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00006268#endif /* SEEK_END */
Guido van Rossum94f6f721999-01-06 18:42:14 +00006269
6270#if !defined(HAVE_LARGEFILE_SUPPORT)
6271 pos = PyInt_AsLong(posobj);
6272#else
6273 pos = PyLong_Check(posobj) ?
6274 PyLong_AsLongLong(posobj) : PyInt_AsLong(posobj);
6275#endif
6276 if (PyErr_Occurred())
6277 return NULL;
6278
Barry Warsaw53699e91996-12-10 23:23:01 +00006279 Py_BEGIN_ALLOW_THREADS
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006280#if defined(MS_WIN64) || defined(MS_WINDOWS)
Fred Drake699f3522000-06-29 21:12:41 +00006281 res = _lseeki64(fd, pos, how);
6282#else
Guido van Rossum687dd131993-05-17 08:34:16 +00006283 res = lseek(fd, pos, how);
Fred Drake699f3522000-06-29 21:12:41 +00006284#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00006285 Py_END_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006286 if (res < 0)
6287 return posix_error();
Guido van Rossum94f6f721999-01-06 18:42:14 +00006288
6289#if !defined(HAVE_LARGEFILE_SUPPORT)
Barry Warsaw53699e91996-12-10 23:23:01 +00006290 return PyInt_FromLong(res);
Guido van Rossum94f6f721999-01-06 18:42:14 +00006291#else
6292 return PyLong_FromLongLong(res);
6293#endif
Guido van Rossum687dd131993-05-17 08:34:16 +00006294}
6295
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006296
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006297PyDoc_STRVAR(posix_read__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006298"read(fd, buffersize) -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006299Read a file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006300
Barry Warsaw53699e91996-12-10 23:23:01 +00006301static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006302posix_read(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006303{
Guido van Rossum8bac5461996-06-11 18:38:48 +00006304 int fd, size, n;
Barry Warsaw53699e91996-12-10 23:23:01 +00006305 PyObject *buffer;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006306 if (!PyArg_ParseTuple(args, "ii:read", &fd, &size))
Guido van Rossum687dd131993-05-17 08:34:16 +00006307 return NULL;
Michael W. Hudson9867ced2005-01-31 17:01:59 +00006308 if (size < 0) {
6309 errno = EINVAL;
6310 return posix_error();
6311 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00006312 buffer = PyString_FromStringAndSize((char *)NULL, size);
Guido van Rossum687dd131993-05-17 08:34:16 +00006313 if (buffer == NULL)
6314 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00006315 Py_BEGIN_ALLOW_THREADS
Gregory P. Smithdd96db62008-06-09 04:58:54 +00006316 n = read(fd, PyString_AsString(buffer), size);
Barry Warsaw53699e91996-12-10 23:23:01 +00006317 Py_END_ALLOW_THREADS
Guido van Rossum8bac5461996-06-11 18:38:48 +00006318 if (n < 0) {
Barry Warsaw53699e91996-12-10 23:23:01 +00006319 Py_DECREF(buffer);
Guido van Rossum687dd131993-05-17 08:34:16 +00006320 return posix_error();
6321 }
Guido van Rossum8bac5461996-06-11 18:38:48 +00006322 if (n != size)
Gregory P. Smithdd96db62008-06-09 04:58:54 +00006323 _PyString_Resize(&buffer, n);
Guido van Rossum687dd131993-05-17 08:34:16 +00006324 return buffer;
6325}
6326
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006327
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006328PyDoc_STRVAR(posix_write__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006329"write(fd, string) -> byteswritten\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006330Write a string to a file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006331
Barry Warsaw53699e91996-12-10 23:23:01 +00006332static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006333posix_write(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006334{
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00006335 Py_buffer pbuf;
Thomas Wouters68bc4f92006-03-01 01:05:10 +00006336 int fd;
6337 Py_ssize_t size;
Thomas Wouters68bc4f92006-03-01 01:05:10 +00006338
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00006339 if (!PyArg_ParseTuple(args, "is*:write", &fd, &pbuf))
Guido van Rossum687dd131993-05-17 08:34:16 +00006340 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00006341 Py_BEGIN_ALLOW_THREADS
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00006342 size = write(fd, pbuf.buf, (size_t)pbuf.len);
Barry Warsaw53699e91996-12-10 23:23:01 +00006343 Py_END_ALLOW_THREADS
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00006344 PyBuffer_Release(&pbuf);
Guido van Rossum687dd131993-05-17 08:34:16 +00006345 if (size < 0)
6346 return posix_error();
Thomas Wouters68bc4f92006-03-01 01:05:10 +00006347 return PyInt_FromSsize_t(size);
Guido van Rossum687dd131993-05-17 08:34:16 +00006348}
6349
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006350
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006351PyDoc_STRVAR(posix_fstat__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006352"fstat(fd) -> stat result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006353Like stat(), but for an open file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006354
Barry Warsaw53699e91996-12-10 23:23:01 +00006355static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006356posix_fstat(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006357{
6358 int fd;
Fred Drake699f3522000-06-29 21:12:41 +00006359 STRUCT_STAT st;
Guido van Rossum687dd131993-05-17 08:34:16 +00006360 int res;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006361 if (!PyArg_ParseTuple(args, "i:fstat", &fd))
Guido van Rossum687dd131993-05-17 08:34:16 +00006362 return NULL;
Martin v. Löwis7a924e62003-03-05 14:15:21 +00006363#ifdef __VMS
6364 /* on OpenVMS we must ensure that all bytes are written to the file */
6365 fsync(fd);
6366#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00006367 Py_BEGIN_ALLOW_THREADS
Fred Drake699f3522000-06-29 21:12:41 +00006368 res = FSTAT(fd, &st);
Barry Warsaw53699e91996-12-10 23:23:01 +00006369 Py_END_ALLOW_THREADS
Martin v. Löwis14694662006-02-03 12:54:16 +00006370 if (res != 0) {
6371#ifdef MS_WINDOWS
6372 return win32_error("fstat", NULL);
6373#else
Guido van Rossum687dd131993-05-17 08:34:16 +00006374 return posix_error();
Martin v. Löwis14694662006-02-03 12:54:16 +00006375#endif
6376 }
Tim Peters5aa91602002-01-30 05:46:57 +00006377
Martin v. Löwis14694662006-02-03 12:54:16 +00006378 return _pystat_fromstructstat(&st);
Guido van Rossum687dd131993-05-17 08:34:16 +00006379}
6380
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006381
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006382PyDoc_STRVAR(posix_fdopen__doc__,
Neal Norwitzc18b3082002-10-11 22:19:42 +00006383"fdopen(fd [, mode='r' [, bufsize]]) -> file_object\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006384Return an open file object connected to a file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006385
Barry Warsaw53699e91996-12-10 23:23:01 +00006386static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006387posix_fdopen(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006388{
Guido van Rossum687dd131993-05-17 08:34:16 +00006389 int fd;
Kristján Valur Jónsson0a440d42007-04-26 09:15:08 +00006390 char *orgmode = "r";
Guido van Rossuma6a1e531995-01-10 15:36:38 +00006391 int bufsize = -1;
Guido van Rossum687dd131993-05-17 08:34:16 +00006392 FILE *fp;
Barry Warsaw53699e91996-12-10 23:23:01 +00006393 PyObject *f;
Kristján Valur Jónsson0a440d42007-04-26 09:15:08 +00006394 char *mode;
6395 if (!PyArg_ParseTuple(args, "i|si", &fd, &orgmode, &bufsize))
Guido van Rossum687dd131993-05-17 08:34:16 +00006396 return NULL;
Barry Warsaw43d68b81996-12-19 22:10:44 +00006397
Kristján Valur Jónsson0a440d42007-04-26 09:15:08 +00006398 /* Sanitize mode. See fileobject.c */
6399 mode = PyMem_MALLOC(strlen(orgmode)+3);
6400 if (!mode) {
6401 PyErr_NoMemory();
6402 return NULL;
6403 }
6404 strcpy(mode, orgmode);
6405 if (_PyFile_SanitizeMode(mode)) {
6406 PyMem_FREE(mode);
Thomas Heller1f043e22002-11-07 16:00:59 +00006407 return NULL;
6408 }
Barry Warsaw53699e91996-12-10 23:23:01 +00006409 Py_BEGIN_ALLOW_THREADS
Georg Brandl644b1e72006-03-31 20:27:22 +00006410#if !defined(MS_WINDOWS) && defined(HAVE_FCNTL_H)
Georg Brandl54a188a2006-03-31 20:00:11 +00006411 if (mode[0] == 'a') {
6412 /* try to make sure the O_APPEND flag is set */
6413 int flags;
6414 flags = fcntl(fd, F_GETFL);
6415 if (flags != -1)
6416 fcntl(fd, F_SETFL, flags | O_APPEND);
6417 fp = fdopen(fd, mode);
Thomas Wouters2a9a6b02006-03-31 22:38:19 +00006418 if (fp == NULL && flags != -1)
Georg Brandl54a188a2006-03-31 20:00:11 +00006419 /* restore old mode if fdopen failed */
6420 fcntl(fd, F_SETFL, flags);
6421 } else {
6422 fp = fdopen(fd, mode);
6423 }
Georg Brandl644b1e72006-03-31 20:27:22 +00006424#else
6425 fp = fdopen(fd, mode);
6426#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00006427 Py_END_ALLOW_THREADS
Neal Norwitzd83eb312007-05-02 04:47:55 +00006428 PyMem_FREE(mode);
Guido van Rossum687dd131993-05-17 08:34:16 +00006429 if (fp == NULL)
6430 return posix_error();
Kristján Valur Jónsson0a440d42007-04-26 09:15:08 +00006431 f = PyFile_FromFile(fp, "<fdopen>", orgmode, fclose);
Guido van Rossuma6a1e531995-01-10 15:36:38 +00006432 if (f != NULL)
Barry Warsaw53699e91996-12-10 23:23:01 +00006433 PyFile_SetBufSize(f, bufsize);
Guido van Rossuma6a1e531995-01-10 15:36:38 +00006434 return f;
Guido van Rossum687dd131993-05-17 08:34:16 +00006435}
6436
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006437PyDoc_STRVAR(posix_isatty__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006438"isatty(fd) -> bool\n\n\
Fred Drake106c1a02002-04-23 15:58:02 +00006439Return True if the file descriptor 'fd' is an open file descriptor\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006440connected to the slave end of a terminal.");
Skip Montanaro1517d842000-07-19 14:34:14 +00006441
6442static PyObject *
Thomas Wouters616607a2000-07-19 14:45:40 +00006443posix_isatty(PyObject *self, PyObject *args)
Skip Montanaro1517d842000-07-19 14:34:14 +00006444{
6445 int fd;
6446 if (!PyArg_ParseTuple(args, "i:isatty", &fd))
6447 return NULL;
Fred Drake106c1a02002-04-23 15:58:02 +00006448 return PyBool_FromLong(isatty(fd));
Skip Montanaro1517d842000-07-19 14:34:14 +00006449}
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006450
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006451#ifdef HAVE_PIPE
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006452PyDoc_STRVAR(posix_pipe__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006453"pipe() -> (read_end, write_end)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006454Create a pipe.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006455
Barry Warsaw53699e91996-12-10 23:23:01 +00006456static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00006457posix_pipe(PyObject *self, PyObject *noargs)
Guido van Rossum687dd131993-05-17 08:34:16 +00006458{
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00006459#if defined(PYOS_OS2)
6460 HFILE read, write;
6461 APIRET rc;
6462
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00006463 Py_BEGIN_ALLOW_THREADS
6464 rc = DosCreatePipe( &read, &write, 4096);
6465 Py_END_ALLOW_THREADS
6466 if (rc != NO_ERROR)
Guido van Rossumd48f2521997-12-05 22:19:34 +00006467 return os2_error(rc);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00006468
6469 return Py_BuildValue("(ii)", read, write);
6470#else
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006471#if !defined(MS_WINDOWS)
Guido van Rossum687dd131993-05-17 08:34:16 +00006472 int fds[2];
6473 int res;
Barry Warsaw53699e91996-12-10 23:23:01 +00006474 Py_BEGIN_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006475 res = pipe(fds);
Barry Warsaw53699e91996-12-10 23:23:01 +00006476 Py_END_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006477 if (res != 0)
6478 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006479 return Py_BuildValue("(ii)", fds[0], fds[1]);
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006480#else /* MS_WINDOWS */
Guido van Rossum794d8131994-08-23 13:48:48 +00006481 HANDLE read, write;
Guido van Rossumb3f9f4b1998-06-12 15:05:15 +00006482 int read_fd, write_fd;
Guido van Rossum794d8131994-08-23 13:48:48 +00006483 BOOL ok;
Barry Warsaw53699e91996-12-10 23:23:01 +00006484 Py_BEGIN_ALLOW_THREADS
Guido van Rossumb3f9f4b1998-06-12 15:05:15 +00006485 ok = CreatePipe(&read, &write, NULL, 0);
Barry Warsaw53699e91996-12-10 23:23:01 +00006486 Py_END_ALLOW_THREADS
Guido van Rossum794d8131994-08-23 13:48:48 +00006487 if (!ok)
Fredrik Lundhffb9c772000-07-09 14:49:51 +00006488 return win32_error("CreatePipe", NULL);
Tim Peters79248aa2001-08-29 21:37:10 +00006489 read_fd = _open_osfhandle((Py_intptr_t)read, 0);
6490 write_fd = _open_osfhandle((Py_intptr_t)write, 1);
Guido van Rossumb3f9f4b1998-06-12 15:05:15 +00006491 return Py_BuildValue("(ii)", read_fd, write_fd);
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006492#endif /* MS_WINDOWS */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00006493#endif
Guido van Rossum687dd131993-05-17 08:34:16 +00006494}
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006495#endif /* HAVE_PIPE */
6496
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006497
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006498#ifdef HAVE_MKFIFO
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006499PyDoc_STRVAR(posix_mkfifo__doc__,
Neal Norwitzc18b3082002-10-11 22:19:42 +00006500"mkfifo(filename [, mode=0666])\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006501Create a FIFO (a POSIX named pipe).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006502
Barry Warsaw53699e91996-12-10 23:23:01 +00006503static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006504posix_mkfifo(PyObject *self, PyObject *args)
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006505{
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006506 char *filename;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006507 int mode = 0666;
6508 int res;
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006509 if (!PyArg_ParseTuple(args, "s|i:mkfifo", &filename, &mode))
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006510 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00006511 Py_BEGIN_ALLOW_THREADS
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006512 res = mkfifo(filename, mode);
6513 Py_END_ALLOW_THREADS
6514 if (res < 0)
6515 return posix_error();
6516 Py_INCREF(Py_None);
6517 return Py_None;
6518}
6519#endif
6520
6521
Neal Norwitz11690112002-07-30 01:08:28 +00006522#if defined(HAVE_MKNOD) && defined(HAVE_MAKEDEV)
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006523PyDoc_STRVAR(posix_mknod__doc__,
Neal Norwitzc18b3082002-10-11 22:19:42 +00006524"mknod(filename [, mode=0600, device])\n\n\
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006525Create a filesystem node (file, device special file or named pipe)\n\
6526named filename. mode specifies both the permissions to use and the\n\
6527type of node to be created, being combined (bitwise OR) with one of\n\
6528S_IFREG, S_IFCHR, S_IFBLK, and S_IFIFO. For S_IFCHR and S_IFBLK,\n\
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00006529device defines the newly created device special file (probably using\n\
6530os.makedev()), otherwise it is ignored.");
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006531
6532
6533static PyObject *
6534posix_mknod(PyObject *self, PyObject *args)
6535{
6536 char *filename;
6537 int mode = 0600;
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00006538 int device = 0;
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006539 int res;
Martin v. Löwisd631ebe2002-11-02 17:42:33 +00006540 if (!PyArg_ParseTuple(args, "s|ii:mknod", &filename, &mode, &device))
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006541 return NULL;
6542 Py_BEGIN_ALLOW_THREADS
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00006543 res = mknod(filename, mode, device);
Barry Warsaw53699e91996-12-10 23:23:01 +00006544 Py_END_ALLOW_THREADS
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006545 if (res < 0)
6546 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006547 Py_INCREF(Py_None);
6548 return Py_None;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006549}
6550#endif
6551
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00006552#ifdef HAVE_DEVICE_MACROS
6553PyDoc_STRVAR(posix_major__doc__,
6554"major(device) -> major number\n\
6555Extracts a device major number from a raw device number.");
6556
6557static PyObject *
6558posix_major(PyObject *self, PyObject *args)
6559{
6560 int device;
6561 if (!PyArg_ParseTuple(args, "i:major", &device))
6562 return NULL;
6563 return PyInt_FromLong((long)major(device));
6564}
6565
6566PyDoc_STRVAR(posix_minor__doc__,
6567"minor(device) -> minor number\n\
6568Extracts a device minor number from a raw device number.");
6569
6570static PyObject *
6571posix_minor(PyObject *self, PyObject *args)
6572{
6573 int device;
6574 if (!PyArg_ParseTuple(args, "i:minor", &device))
6575 return NULL;
6576 return PyInt_FromLong((long)minor(device));
6577}
6578
6579PyDoc_STRVAR(posix_makedev__doc__,
6580"makedev(major, minor) -> device number\n\
6581Composes a raw device number from the major and minor device numbers.");
6582
6583static PyObject *
6584posix_makedev(PyObject *self, PyObject *args)
6585{
6586 int major, minor;
6587 if (!PyArg_ParseTuple(args, "ii:makedev", &major, &minor))
6588 return NULL;
6589 return PyInt_FromLong((long)makedev(major, minor));
6590}
6591#endif /* device macros */
6592
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006593
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006594#ifdef HAVE_FTRUNCATE
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006595PyDoc_STRVAR(posix_ftruncate__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006596"ftruncate(fd, length)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006597Truncate a file to a specified length.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006598
Barry Warsaw53699e91996-12-10 23:23:01 +00006599static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006600posix_ftruncate(PyObject *self, PyObject *args)
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006601{
6602 int fd;
Guido van Rossum94f6f721999-01-06 18:42:14 +00006603 off_t length;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006604 int res;
Guido van Rossum94f6f721999-01-06 18:42:14 +00006605 PyObject *lenobj;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006606
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006607 if (!PyArg_ParseTuple(args, "iO:ftruncate", &fd, &lenobj))
Guido van Rossum94f6f721999-01-06 18:42:14 +00006608 return NULL;
6609
6610#if !defined(HAVE_LARGEFILE_SUPPORT)
6611 length = PyInt_AsLong(lenobj);
6612#else
6613 length = PyLong_Check(lenobj) ?
6614 PyLong_AsLongLong(lenobj) : PyInt_AsLong(lenobj);
6615#endif
6616 if (PyErr_Occurred())
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006617 return NULL;
6618
Barry Warsaw53699e91996-12-10 23:23:01 +00006619 Py_BEGIN_ALLOW_THREADS
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006620 res = ftruncate(fd, length);
Barry Warsaw53699e91996-12-10 23:23:01 +00006621 Py_END_ALLOW_THREADS
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006622 if (res < 0) {
Barry Warsaw53699e91996-12-10 23:23:01 +00006623 PyErr_SetFromErrno(PyExc_IOError);
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006624 return NULL;
6625 }
Barry Warsaw53699e91996-12-10 23:23:01 +00006626 Py_INCREF(Py_None);
6627 return Py_None;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006628}
6629#endif
Guido van Rossum22db57e1992-04-05 14:25:30 +00006630
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006631#ifdef HAVE_PUTENV
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006632PyDoc_STRVAR(posix_putenv__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006633"putenv(key, value)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006634Change or add an environment variable.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006635
Fred Drake762e2061999-08-26 17:23:54 +00006636/* Save putenv() parameters as values here, so we can collect them when they
6637 * get re-set with another call for the same key. */
6638static PyObject *posix_putenv_garbage;
6639
Tim Peters5aa91602002-01-30 05:46:57 +00006640static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006641posix_putenv(PyObject *self, PyObject *args)
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006642{
6643 char *s1, *s2;
Anthony Baxter64182fe2006-04-11 12:14:09 +00006644 char *newenv;
Fred Drake762e2061999-08-26 17:23:54 +00006645 PyObject *newstr;
Tim Petersc8996f52001-12-03 20:41:00 +00006646 size_t len;
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006647
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006648 if (!PyArg_ParseTuple(args, "ss:putenv", &s1, &s2))
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006649 return NULL;
Guido van Rossumd48f2521997-12-05 22:19:34 +00006650
6651#if defined(PYOS_OS2)
6652 if (stricmp(s1, "BEGINLIBPATH") == 0) {
6653 APIRET rc;
6654
Guido van Rossumd48f2521997-12-05 22:19:34 +00006655 rc = DosSetExtLIBPATH(s2, BEGIN_LIBPATH);
6656 if (rc != NO_ERROR)
6657 return os2_error(rc);
6658
6659 } else if (stricmp(s1, "ENDLIBPATH") == 0) {
6660 APIRET rc;
6661
Guido van Rossumd48f2521997-12-05 22:19:34 +00006662 rc = DosSetExtLIBPATH(s2, END_LIBPATH);
6663 if (rc != NO_ERROR)
6664 return os2_error(rc);
6665 } else {
6666#endif
6667
Fred Drake762e2061999-08-26 17:23:54 +00006668 /* XXX This can leak memory -- not easy to fix :-( */
Tim Petersc8996f52001-12-03 20:41:00 +00006669 len = strlen(s1) + strlen(s2) + 2;
6670 /* len includes space for a trailing \0; the size arg to
Gregory P. Smithdd96db62008-06-09 04:58:54 +00006671 PyString_FromStringAndSize does not count that */
6672 newstr = PyString_FromStringAndSize(NULL, (int)len - 1);
Fred Drake762e2061999-08-26 17:23:54 +00006673 if (newstr == NULL)
6674 return PyErr_NoMemory();
Gregory P. Smithdd96db62008-06-09 04:58:54 +00006675 newenv = PyString_AS_STRING(newstr);
Anthony Baxter64182fe2006-04-11 12:14:09 +00006676 PyOS_snprintf(newenv, len, "%s=%s", s1, s2);
6677 if (putenv(newenv)) {
Neal Norwitz4adc9ab2003-02-10 03:10:43 +00006678 Py_DECREF(newstr);
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006679 posix_error();
6680 return NULL;
6681 }
Fred Drake762e2061999-08-26 17:23:54 +00006682 /* Install the first arg and newstr in posix_putenv_garbage;
6683 * this will cause previous value to be collected. This has to
6684 * happen after the real putenv() call because the old value
6685 * was still accessible until then. */
6686 if (PyDict_SetItem(posix_putenv_garbage,
6687 PyTuple_GET_ITEM(args, 0), newstr)) {
6688 /* really not much we can do; just leak */
6689 PyErr_Clear();
6690 }
6691 else {
6692 Py_DECREF(newstr);
6693 }
Guido van Rossumd48f2521997-12-05 22:19:34 +00006694
6695#if defined(PYOS_OS2)
6696 }
6697#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00006698 Py_INCREF(Py_None);
6699 return Py_None;
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006700}
Guido van Rossumb6a47161997-09-15 22:54:34 +00006701#endif /* putenv */
6702
Guido van Rossumc524d952001-10-19 01:31:59 +00006703#ifdef HAVE_UNSETENV
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006704PyDoc_STRVAR(posix_unsetenv__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006705"unsetenv(key)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006706Delete an environment variable.");
Guido van Rossumc524d952001-10-19 01:31:59 +00006707
6708static PyObject *
6709posix_unsetenv(PyObject *self, PyObject *args)
6710{
6711 char *s1;
6712
6713 if (!PyArg_ParseTuple(args, "s:unsetenv", &s1))
6714 return NULL;
6715
6716 unsetenv(s1);
6717
6718 /* Remove the key from posix_putenv_garbage;
6719 * this will cause it to be collected. This has to
Tim Peters5aa91602002-01-30 05:46:57 +00006720 * happen after the real unsetenv() call because the
Guido van Rossumc524d952001-10-19 01:31:59 +00006721 * old value was still accessible until then.
6722 */
6723 if (PyDict_DelItem(posix_putenv_garbage,
6724 PyTuple_GET_ITEM(args, 0))) {
6725 /* really not much we can do; just leak */
6726 PyErr_Clear();
6727 }
6728
6729 Py_INCREF(Py_None);
6730 return Py_None;
6731}
6732#endif /* unsetenv */
6733
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006734PyDoc_STRVAR(posix_strerror__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006735"strerror(code) -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006736Translate an error code to a message string.");
Guido van Rossumb6a47161997-09-15 22:54:34 +00006737
Guido van Rossumf68d8e52001-04-14 17:55:09 +00006738static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006739posix_strerror(PyObject *self, PyObject *args)
Guido van Rossumb6a47161997-09-15 22:54:34 +00006740{
6741 int code;
6742 char *message;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006743 if (!PyArg_ParseTuple(args, "i:strerror", &code))
Guido van Rossumb6a47161997-09-15 22:54:34 +00006744 return NULL;
6745 message = strerror(code);
6746 if (message == NULL) {
6747 PyErr_SetString(PyExc_ValueError,
Fred Drake661ea262000-10-24 19:57:45 +00006748 "strerror() argument out of range");
Guido van Rossumb6a47161997-09-15 22:54:34 +00006749 return NULL;
6750 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00006751 return PyString_FromString(message);
Guido van Rossumb6a47161997-09-15 22:54:34 +00006752}
Guido van Rossumb6a47161997-09-15 22:54:34 +00006753
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006754
Guido van Rossumc9641791998-08-04 15:26:23 +00006755#ifdef HAVE_SYS_WAIT_H
6756
Fred Drake106c1a02002-04-23 15:58:02 +00006757#ifdef WCOREDUMP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006758PyDoc_STRVAR(posix_WCOREDUMP__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006759"WCOREDUMP(status) -> bool\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006760Return True if the process returning 'status' was dumped to a core file.");
Fred Drake106c1a02002-04-23 15:58:02 +00006761
6762static PyObject *
6763posix_WCOREDUMP(PyObject *self, PyObject *args)
6764{
Neal Norwitzd5a37542006-03-20 06:48:34 +00006765 WAIT_TYPE status;
6766 WAIT_STATUS_INT(status) = 0;
Fred Drake106c1a02002-04-23 15:58:02 +00006767
Neal Norwitzd5a37542006-03-20 06:48:34 +00006768 if (!PyArg_ParseTuple(args, "i:WCOREDUMP", &WAIT_STATUS_INT(status)))
Fred Drake106c1a02002-04-23 15:58:02 +00006769 return NULL;
Fred Drake106c1a02002-04-23 15:58:02 +00006770
6771 return PyBool_FromLong(WCOREDUMP(status));
Fred Drake106c1a02002-04-23 15:58:02 +00006772}
6773#endif /* WCOREDUMP */
6774
6775#ifdef WIFCONTINUED
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006776PyDoc_STRVAR(posix_WIFCONTINUED__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006777"WIFCONTINUED(status) -> bool\n\n\
Fred Drake106c1a02002-04-23 15:58:02 +00006778Return True if the process returning 'status' was continued from a\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006779job control stop.");
Fred Drake106c1a02002-04-23 15:58:02 +00006780
6781static PyObject *
Martin v. Löwis2b41b0d2002-05-04 13:13:41 +00006782posix_WIFCONTINUED(PyObject *self, PyObject *args)
Fred Drake106c1a02002-04-23 15:58:02 +00006783{
Neal Norwitzd5a37542006-03-20 06:48:34 +00006784 WAIT_TYPE status;
6785 WAIT_STATUS_INT(status) = 0;
Fred Drake106c1a02002-04-23 15:58:02 +00006786
Neal Norwitzd5a37542006-03-20 06:48:34 +00006787 if (!PyArg_ParseTuple(args, "i:WCONTINUED", &WAIT_STATUS_INT(status)))
Fred Drake106c1a02002-04-23 15:58:02 +00006788 return NULL;
Fred Drake106c1a02002-04-23 15:58:02 +00006789
Martin v. Löwis2b41b0d2002-05-04 13:13:41 +00006790 return PyBool_FromLong(WIFCONTINUED(status));
Fred Drake106c1a02002-04-23 15:58:02 +00006791}
6792#endif /* WIFCONTINUED */
6793
Guido van Rossumc9641791998-08-04 15:26:23 +00006794#ifdef WIFSTOPPED
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006795PyDoc_STRVAR(posix_WIFSTOPPED__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006796"WIFSTOPPED(status) -> bool\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006797Return True if the process returning 'status' was stopped.");
Guido van Rossumc9641791998-08-04 15:26:23 +00006798
6799static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006800posix_WIFSTOPPED(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00006801{
Neal Norwitzd5a37542006-03-20 06:48:34 +00006802 WAIT_TYPE status;
6803 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00006804
Neal Norwitzd5a37542006-03-20 06:48:34 +00006805 if (!PyArg_ParseTuple(args, "i:WIFSTOPPED", &WAIT_STATUS_INT(status)))
Guido van Rossumc9641791998-08-04 15:26:23 +00006806 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00006807
Fred Drake106c1a02002-04-23 15:58:02 +00006808 return PyBool_FromLong(WIFSTOPPED(status));
Guido van Rossumc9641791998-08-04 15:26:23 +00006809}
6810#endif /* WIFSTOPPED */
6811
6812#ifdef WIFSIGNALED
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006813PyDoc_STRVAR(posix_WIFSIGNALED__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006814"WIFSIGNALED(status) -> bool\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006815Return True if the process returning 'status' was terminated by a signal.");
Guido van Rossumc9641791998-08-04 15:26:23 +00006816
6817static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006818posix_WIFSIGNALED(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00006819{
Neal Norwitzd5a37542006-03-20 06:48:34 +00006820 WAIT_TYPE status;
6821 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00006822
Neal Norwitzd5a37542006-03-20 06:48:34 +00006823 if (!PyArg_ParseTuple(args, "i:WIFSIGNALED", &WAIT_STATUS_INT(status)))
Guido van Rossumc9641791998-08-04 15:26:23 +00006824 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00006825
Fred Drake106c1a02002-04-23 15:58:02 +00006826 return PyBool_FromLong(WIFSIGNALED(status));
Guido van Rossumc9641791998-08-04 15:26:23 +00006827}
6828#endif /* WIFSIGNALED */
6829
6830#ifdef WIFEXITED
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006831PyDoc_STRVAR(posix_WIFEXITED__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006832"WIFEXITED(status) -> bool\n\n\
Fred Drake7e3535c1999-02-02 16:37:11 +00006833Return true if the process returning 'status' exited using the exit()\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006834system call.");
Guido van Rossumc9641791998-08-04 15:26:23 +00006835
6836static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006837posix_WIFEXITED(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00006838{
Neal Norwitzd5a37542006-03-20 06:48:34 +00006839 WAIT_TYPE status;
6840 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00006841
Neal Norwitzd5a37542006-03-20 06:48:34 +00006842 if (!PyArg_ParseTuple(args, "i:WIFEXITED", &WAIT_STATUS_INT(status)))
Guido van Rossumc9641791998-08-04 15:26:23 +00006843 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00006844
Fred Drake106c1a02002-04-23 15:58:02 +00006845 return PyBool_FromLong(WIFEXITED(status));
Guido van Rossumc9641791998-08-04 15:26:23 +00006846}
6847#endif /* WIFEXITED */
6848
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00006849#ifdef WEXITSTATUS
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006850PyDoc_STRVAR(posix_WEXITSTATUS__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006851"WEXITSTATUS(status) -> integer\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006852Return the process return code from 'status'.");
Guido van Rossumc9641791998-08-04 15:26:23 +00006853
6854static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006855posix_WEXITSTATUS(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00006856{
Neal Norwitzd5a37542006-03-20 06:48:34 +00006857 WAIT_TYPE status;
6858 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00006859
Neal Norwitzd5a37542006-03-20 06:48:34 +00006860 if (!PyArg_ParseTuple(args, "i:WEXITSTATUS", &WAIT_STATUS_INT(status)))
Guido van Rossumc9641791998-08-04 15:26:23 +00006861 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00006862
Guido van Rossumc9641791998-08-04 15:26:23 +00006863 return Py_BuildValue("i", WEXITSTATUS(status));
6864}
6865#endif /* WEXITSTATUS */
6866
6867#ifdef WTERMSIG
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006868PyDoc_STRVAR(posix_WTERMSIG__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006869"WTERMSIG(status) -> integer\n\n\
Fred Drake7e3535c1999-02-02 16:37:11 +00006870Return the signal that terminated the process that provided the 'status'\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006871value.");
Guido van Rossumc9641791998-08-04 15:26:23 +00006872
6873static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006874posix_WTERMSIG(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00006875{
Neal Norwitzd5a37542006-03-20 06:48:34 +00006876 WAIT_TYPE status;
6877 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00006878
Neal Norwitzd5a37542006-03-20 06:48:34 +00006879 if (!PyArg_ParseTuple(args, "i:WTERMSIG", &WAIT_STATUS_INT(status)))
Guido van Rossumc9641791998-08-04 15:26:23 +00006880 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00006881
Guido van Rossumc9641791998-08-04 15:26:23 +00006882 return Py_BuildValue("i", WTERMSIG(status));
6883}
6884#endif /* WTERMSIG */
6885
6886#ifdef WSTOPSIG
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006887PyDoc_STRVAR(posix_WSTOPSIG__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006888"WSTOPSIG(status) -> integer\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006889Return the signal that stopped the process that provided\n\
6890the 'status' value.");
Guido van Rossumc9641791998-08-04 15:26:23 +00006891
6892static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006893posix_WSTOPSIG(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00006894{
Neal Norwitzd5a37542006-03-20 06:48:34 +00006895 WAIT_TYPE status;
6896 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00006897
Neal Norwitzd5a37542006-03-20 06:48:34 +00006898 if (!PyArg_ParseTuple(args, "i:WSTOPSIG", &WAIT_STATUS_INT(status)))
Guido van Rossumc9641791998-08-04 15:26:23 +00006899 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00006900
Guido van Rossumc9641791998-08-04 15:26:23 +00006901 return Py_BuildValue("i", WSTOPSIG(status));
6902}
6903#endif /* WSTOPSIG */
6904
6905#endif /* HAVE_SYS_WAIT_H */
6906
6907
Martin v. Löwis5f5d99c2006-05-16 07:05:37 +00006908#if defined(HAVE_FSTATVFS) && defined(HAVE_SYS_STATVFS_H)
Guido van Rossumd5753e11999-10-19 13:29:23 +00006909#ifdef _SCO_DS
6910/* SCO OpenServer 5.0 and later requires _SVID3 before it reveals the
6911 needed definitions in sys/statvfs.h */
6912#define _SVID3
6913#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00006914#include <sys/statvfs.h>
6915
Guido van Rossum98bf58f2001-10-18 20:34:25 +00006916static PyObject*
6917_pystatvfs_fromstructstatvfs(struct statvfs st) {
6918 PyObject *v = PyStructSequence_New(&StatVFSResultType);
6919 if (v == NULL)
6920 return NULL;
6921
6922#if !defined(HAVE_LARGEFILE_SUPPORT)
6923 PyStructSequence_SET_ITEM(v, 0, PyInt_FromLong((long) st.f_bsize));
6924 PyStructSequence_SET_ITEM(v, 1, PyInt_FromLong((long) st.f_frsize));
6925 PyStructSequence_SET_ITEM(v, 2, PyInt_FromLong((long) st.f_blocks));
6926 PyStructSequence_SET_ITEM(v, 3, PyInt_FromLong((long) st.f_bfree));
6927 PyStructSequence_SET_ITEM(v, 4, PyInt_FromLong((long) st.f_bavail));
6928 PyStructSequence_SET_ITEM(v, 5, PyInt_FromLong((long) st.f_files));
6929 PyStructSequence_SET_ITEM(v, 6, PyInt_FromLong((long) st.f_ffree));
6930 PyStructSequence_SET_ITEM(v, 7, PyInt_FromLong((long) st.f_favail));
6931 PyStructSequence_SET_ITEM(v, 8, PyInt_FromLong((long) st.f_flag));
6932 PyStructSequence_SET_ITEM(v, 9, PyInt_FromLong((long) st.f_namemax));
6933#else
6934 PyStructSequence_SET_ITEM(v, 0, PyInt_FromLong((long) st.f_bsize));
6935 PyStructSequence_SET_ITEM(v, 1, PyInt_FromLong((long) st.f_frsize));
Tim Peters5aa91602002-01-30 05:46:57 +00006936 PyStructSequence_SET_ITEM(v, 2,
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00006937 PyLong_FromLongLong((PY_LONG_LONG) st.f_blocks));
Tim Peters5aa91602002-01-30 05:46:57 +00006938 PyStructSequence_SET_ITEM(v, 3,
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00006939 PyLong_FromLongLong((PY_LONG_LONG) st.f_bfree));
Guido van Rossum98bf58f2001-10-18 20:34:25 +00006940 PyStructSequence_SET_ITEM(v, 4,
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00006941 PyLong_FromLongLong((PY_LONG_LONG) st.f_bavail));
Tim Peters5aa91602002-01-30 05:46:57 +00006942 PyStructSequence_SET_ITEM(v, 5,
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00006943 PyLong_FromLongLong((PY_LONG_LONG) st.f_files));
Tim Peters5aa91602002-01-30 05:46:57 +00006944 PyStructSequence_SET_ITEM(v, 6,
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00006945 PyLong_FromLongLong((PY_LONG_LONG) st.f_ffree));
Tim Peters5aa91602002-01-30 05:46:57 +00006946 PyStructSequence_SET_ITEM(v, 7,
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00006947 PyLong_FromLongLong((PY_LONG_LONG) st.f_favail));
Guido van Rossum98bf58f2001-10-18 20:34:25 +00006948 PyStructSequence_SET_ITEM(v, 8, PyInt_FromLong((long) st.f_flag));
6949 PyStructSequence_SET_ITEM(v, 9, PyInt_FromLong((long) st.f_namemax));
6950#endif
6951
6952 return v;
6953}
6954
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006955PyDoc_STRVAR(posix_fstatvfs__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006956"fstatvfs(fd) -> statvfs result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006957Perform an fstatvfs system call on the given fd.");
Guido van Rossum94f6f721999-01-06 18:42:14 +00006958
6959static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006960posix_fstatvfs(PyObject *self, PyObject *args)
Guido van Rossum94f6f721999-01-06 18:42:14 +00006961{
6962 int fd, res;
6963 struct statvfs st;
Guido van Rossum98bf58f2001-10-18 20:34:25 +00006964
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006965 if (!PyArg_ParseTuple(args, "i:fstatvfs", &fd))
Guido van Rossum94f6f721999-01-06 18:42:14 +00006966 return NULL;
6967 Py_BEGIN_ALLOW_THREADS
6968 res = fstatvfs(fd, &st);
6969 Py_END_ALLOW_THREADS
6970 if (res != 0)
6971 return posix_error();
Guido van Rossum98bf58f2001-10-18 20:34:25 +00006972
6973 return _pystatvfs_fromstructstatvfs(st);
Guido van Rossum94f6f721999-01-06 18:42:14 +00006974}
Martin v. Löwis5f5d99c2006-05-16 07:05:37 +00006975#endif /* HAVE_FSTATVFS && HAVE_SYS_STATVFS_H */
Guido van Rossum94f6f721999-01-06 18:42:14 +00006976
6977
Martin v. Löwis5f5d99c2006-05-16 07:05:37 +00006978#if defined(HAVE_STATVFS) && defined(HAVE_SYS_STATVFS_H)
Guido van Rossum94f6f721999-01-06 18:42:14 +00006979#include <sys/statvfs.h>
6980
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006981PyDoc_STRVAR(posix_statvfs__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006982"statvfs(path) -> statvfs result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006983Perform a statvfs system call on the given path.");
Guido van Rossum94f6f721999-01-06 18:42:14 +00006984
6985static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006986posix_statvfs(PyObject *self, PyObject *args)
Guido van Rossum94f6f721999-01-06 18:42:14 +00006987{
6988 char *path;
6989 int res;
6990 struct statvfs st;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006991 if (!PyArg_ParseTuple(args, "s:statvfs", &path))
Guido van Rossum94f6f721999-01-06 18:42:14 +00006992 return NULL;
6993 Py_BEGIN_ALLOW_THREADS
6994 res = statvfs(path, &st);
6995 Py_END_ALLOW_THREADS
6996 if (res != 0)
6997 return posix_error_with_filename(path);
Guido van Rossum98bf58f2001-10-18 20:34:25 +00006998
6999 return _pystatvfs_fromstructstatvfs(st);
Guido van Rossum94f6f721999-01-06 18:42:14 +00007000}
7001#endif /* HAVE_STATVFS */
7002
7003
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007004#ifdef HAVE_TEMPNAM
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007005PyDoc_STRVAR(posix_tempnam__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007006"tempnam([dir[, prefix]]) -> string\n\n\
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007007Return a unique name for a temporary file.\n\
Neal Norwitz50d5d4f2002-07-30 01:17:43 +00007008The directory and a prefix may be specified as strings; they may be omitted\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007009or None if not needed.");
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007010
7011static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007012posix_tempnam(PyObject *self, PyObject *args)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007013{
7014 PyObject *result = NULL;
7015 char *dir = NULL;
7016 char *pfx = NULL;
7017 char *name;
7018
7019 if (!PyArg_ParseTuple(args, "|zz:tempnam", &dir, &pfx))
7020 return NULL;
Skip Montanaro95618b52001-08-18 18:52:10 +00007021
7022 if (PyErr_Warn(PyExc_RuntimeWarning,
7023 "tempnam is a potential security risk to your program") < 0)
7024 return NULL;
7025
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00007026#ifdef MS_WINDOWS
Fred Drake78b71c22001-07-17 20:37:36 +00007027 name = _tempnam(dir, pfx);
7028#else
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007029 name = tempnam(dir, pfx);
Fred Drake78b71c22001-07-17 20:37:36 +00007030#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007031 if (name == NULL)
7032 return PyErr_NoMemory();
Gregory P. Smithdd96db62008-06-09 04:58:54 +00007033 result = PyString_FromString(name);
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007034 free(name);
7035 return result;
7036}
Guido van Rossumd371ff11999-01-25 16:12:23 +00007037#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007038
7039
7040#ifdef HAVE_TMPFILE
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007041PyDoc_STRVAR(posix_tmpfile__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007042"tmpfile() -> file object\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007043Create a temporary file with no directory entries.");
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007044
7045static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00007046posix_tmpfile(PyObject *self, PyObject *noargs)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007047{
7048 FILE *fp;
7049
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007050 fp = tmpfile();
7051 if (fp == NULL)
7052 return posix_error();
Guido van Rossumdb9198a2002-06-10 19:23:22 +00007053 return PyFile_FromFile(fp, "<tmpfile>", "w+b", fclose);
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007054}
7055#endif
7056
7057
7058#ifdef HAVE_TMPNAM
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007059PyDoc_STRVAR(posix_tmpnam__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007060"tmpnam() -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007061Return a unique name for a temporary file.");
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007062
7063static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00007064posix_tmpnam(PyObject *self, PyObject *noargs)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007065{
7066 char buffer[L_tmpnam];
7067 char *name;
7068
Skip Montanaro95618b52001-08-18 18:52:10 +00007069 if (PyErr_Warn(PyExc_RuntimeWarning,
7070 "tmpnam is a potential security risk to your program") < 0)
7071 return NULL;
7072
Greg Wardb48bc172000-03-01 21:51:56 +00007073#ifdef USE_TMPNAM_R
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007074 name = tmpnam_r(buffer);
7075#else
7076 name = tmpnam(buffer);
7077#endif
7078 if (name == NULL) {
Neal Norwitzd1e0ef62006-03-20 04:08:12 +00007079 PyObject *err = Py_BuildValue("is", 0,
Greg Wardb48bc172000-03-01 21:51:56 +00007080#ifdef USE_TMPNAM_R
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007081 "unexpected NULL from tmpnam_r"
7082#else
7083 "unexpected NULL from tmpnam"
7084#endif
Neal Norwitzd1e0ef62006-03-20 04:08:12 +00007085 );
7086 PyErr_SetObject(PyExc_OSError, err);
7087 Py_XDECREF(err);
7088 return NULL;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007089 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00007090 return PyString_FromString(buffer);
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007091}
7092#endif
7093
7094
Fred Drakec9680921999-12-13 16:37:25 +00007095/* This is used for fpathconf(), pathconf(), confstr() and sysconf().
7096 * It maps strings representing configuration variable names to
7097 * integer values, allowing those functions to be called with the
Thomas Wouters7e474022000-07-16 12:04:32 +00007098 * magic names instead of polluting the module's namespace with tons of
Fred Drake12c6e2d1999-12-14 21:25:03 +00007099 * rarely-used constants. There are three separate tables that use
7100 * these definitions.
Fred Drakebec628d1999-12-15 18:31:10 +00007101 *
7102 * This code is always included, even if none of the interfaces that
7103 * need it are included. The #if hackery needed to avoid it would be
7104 * sufficiently pervasive that it's not worth the loss of readability.
Fred Drakec9680921999-12-13 16:37:25 +00007105 */
7106struct constdef {
7107 char *name;
7108 long value;
7109};
7110
Fred Drake12c6e2d1999-12-14 21:25:03 +00007111static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007112conv_confname(PyObject *arg, int *valuep, struct constdef *table,
7113 size_t tablesize)
Fred Drake12c6e2d1999-12-14 21:25:03 +00007114{
7115 if (PyInt_Check(arg)) {
7116 *valuep = PyInt_AS_LONG(arg);
7117 return 1;
7118 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00007119 if (PyString_Check(arg)) {
Fred Drake12c6e2d1999-12-14 21:25:03 +00007120 /* look up the value in the table using a binary search */
Fred Drake699f3522000-06-29 21:12:41 +00007121 size_t lo = 0;
7122 size_t mid;
7123 size_t hi = tablesize;
7124 int cmp;
Gregory P. Smithdd96db62008-06-09 04:58:54 +00007125 char *confname = PyString_AS_STRING(arg);
Fred Drake12c6e2d1999-12-14 21:25:03 +00007126 while (lo < hi) {
7127 mid = (lo + hi) / 2;
7128 cmp = strcmp(confname, table[mid].name);
7129 if (cmp < 0)
7130 hi = mid;
7131 else if (cmp > 0)
7132 lo = mid + 1;
7133 else {
7134 *valuep = table[mid].value;
7135 return 1;
7136 }
7137 }
7138 PyErr_SetString(PyExc_ValueError, "unrecognized configuration name");
7139 }
7140 else
7141 PyErr_SetString(PyExc_TypeError,
7142 "configuration names must be strings or integers");
7143 return 0;
7144}
7145
7146
7147#if defined(HAVE_FPATHCONF) || defined(HAVE_PATHCONF)
7148static struct constdef posix_constants_pathconf[] = {
Fred Draked86ed291999-12-15 15:34:33 +00007149#ifdef _PC_ABI_AIO_XFER_MAX
7150 {"PC_ABI_AIO_XFER_MAX", _PC_ABI_AIO_XFER_MAX},
7151#endif
7152#ifdef _PC_ABI_ASYNC_IO
7153 {"PC_ABI_ASYNC_IO", _PC_ABI_ASYNC_IO},
7154#endif
Fred Drakec9680921999-12-13 16:37:25 +00007155#ifdef _PC_ASYNC_IO
7156 {"PC_ASYNC_IO", _PC_ASYNC_IO},
7157#endif
7158#ifdef _PC_CHOWN_RESTRICTED
7159 {"PC_CHOWN_RESTRICTED", _PC_CHOWN_RESTRICTED},
7160#endif
7161#ifdef _PC_FILESIZEBITS
7162 {"PC_FILESIZEBITS", _PC_FILESIZEBITS},
7163#endif
7164#ifdef _PC_LAST
7165 {"PC_LAST", _PC_LAST},
7166#endif
7167#ifdef _PC_LINK_MAX
7168 {"PC_LINK_MAX", _PC_LINK_MAX},
7169#endif
7170#ifdef _PC_MAX_CANON
7171 {"PC_MAX_CANON", _PC_MAX_CANON},
7172#endif
7173#ifdef _PC_MAX_INPUT
7174 {"PC_MAX_INPUT", _PC_MAX_INPUT},
7175#endif
7176#ifdef _PC_NAME_MAX
7177 {"PC_NAME_MAX", _PC_NAME_MAX},
7178#endif
7179#ifdef _PC_NO_TRUNC
7180 {"PC_NO_TRUNC", _PC_NO_TRUNC},
7181#endif
7182#ifdef _PC_PATH_MAX
7183 {"PC_PATH_MAX", _PC_PATH_MAX},
7184#endif
7185#ifdef _PC_PIPE_BUF
7186 {"PC_PIPE_BUF", _PC_PIPE_BUF},
7187#endif
7188#ifdef _PC_PRIO_IO
7189 {"PC_PRIO_IO", _PC_PRIO_IO},
7190#endif
7191#ifdef _PC_SOCK_MAXBUF
7192 {"PC_SOCK_MAXBUF", _PC_SOCK_MAXBUF},
7193#endif
7194#ifdef _PC_SYNC_IO
7195 {"PC_SYNC_IO", _PC_SYNC_IO},
7196#endif
7197#ifdef _PC_VDISABLE
7198 {"PC_VDISABLE", _PC_VDISABLE},
7199#endif
7200};
7201
Fred Drakec9680921999-12-13 16:37:25 +00007202static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007203conv_path_confname(PyObject *arg, int *valuep)
Fred Drakec9680921999-12-13 16:37:25 +00007204{
7205 return conv_confname(arg, valuep, posix_constants_pathconf,
7206 sizeof(posix_constants_pathconf)
7207 / sizeof(struct constdef));
7208}
7209#endif
7210
7211#ifdef HAVE_FPATHCONF
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007212PyDoc_STRVAR(posix_fpathconf__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007213"fpathconf(fd, name) -> integer\n\n\
Fred Drakec9680921999-12-13 16:37:25 +00007214Return the configuration limit name for the file descriptor fd.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007215If there is no limit, return -1.");
Fred Drakec9680921999-12-13 16:37:25 +00007216
7217static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007218posix_fpathconf(PyObject *self, PyObject *args)
Fred Drakec9680921999-12-13 16:37:25 +00007219{
7220 PyObject *result = NULL;
7221 int name, fd;
7222
Fred Drake12c6e2d1999-12-14 21:25:03 +00007223 if (PyArg_ParseTuple(args, "iO&:fpathconf", &fd,
7224 conv_path_confname, &name)) {
Fred Drakec9680921999-12-13 16:37:25 +00007225 long limit;
7226
7227 errno = 0;
7228 limit = fpathconf(fd, name);
7229 if (limit == -1 && errno != 0)
7230 posix_error();
7231 else
7232 result = PyInt_FromLong(limit);
7233 }
7234 return result;
7235}
7236#endif
7237
7238
7239#ifdef HAVE_PATHCONF
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007240PyDoc_STRVAR(posix_pathconf__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007241"pathconf(path, name) -> integer\n\n\
Fred Drakec9680921999-12-13 16:37:25 +00007242Return the configuration limit name for the file or directory path.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007243If there is no limit, return -1.");
Fred Drakec9680921999-12-13 16:37:25 +00007244
7245static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007246posix_pathconf(PyObject *self, PyObject *args)
Fred Drakec9680921999-12-13 16:37:25 +00007247{
7248 PyObject *result = NULL;
7249 int name;
7250 char *path;
7251
7252 if (PyArg_ParseTuple(args, "sO&:pathconf", &path,
7253 conv_path_confname, &name)) {
7254 long limit;
7255
7256 errno = 0;
7257 limit = pathconf(path, name);
Fred Drake12c6e2d1999-12-14 21:25:03 +00007258 if (limit == -1 && errno != 0) {
Fred Drakec9680921999-12-13 16:37:25 +00007259 if (errno == EINVAL)
7260 /* could be a path or name problem */
7261 posix_error();
7262 else
7263 posix_error_with_filename(path);
Fred Drake12c6e2d1999-12-14 21:25:03 +00007264 }
Fred Drakec9680921999-12-13 16:37:25 +00007265 else
7266 result = PyInt_FromLong(limit);
7267 }
7268 return result;
7269}
7270#endif
7271
7272#ifdef HAVE_CONFSTR
7273static struct constdef posix_constants_confstr[] = {
Fred Draked86ed291999-12-15 15:34:33 +00007274#ifdef _CS_ARCHITECTURE
7275 {"CS_ARCHITECTURE", _CS_ARCHITECTURE},
7276#endif
7277#ifdef _CS_HOSTNAME
7278 {"CS_HOSTNAME", _CS_HOSTNAME},
7279#endif
7280#ifdef _CS_HW_PROVIDER
7281 {"CS_HW_PROVIDER", _CS_HW_PROVIDER},
7282#endif
7283#ifdef _CS_HW_SERIAL
7284 {"CS_HW_SERIAL", _CS_HW_SERIAL},
7285#endif
7286#ifdef _CS_INITTAB_NAME
7287 {"CS_INITTAB_NAME", _CS_INITTAB_NAME},
7288#endif
Fred Drakec9680921999-12-13 16:37:25 +00007289#ifdef _CS_LFS64_CFLAGS
7290 {"CS_LFS64_CFLAGS", _CS_LFS64_CFLAGS},
7291#endif
7292#ifdef _CS_LFS64_LDFLAGS
7293 {"CS_LFS64_LDFLAGS", _CS_LFS64_LDFLAGS},
7294#endif
7295#ifdef _CS_LFS64_LIBS
7296 {"CS_LFS64_LIBS", _CS_LFS64_LIBS},
7297#endif
7298#ifdef _CS_LFS64_LINTFLAGS
7299 {"CS_LFS64_LINTFLAGS", _CS_LFS64_LINTFLAGS},
7300#endif
7301#ifdef _CS_LFS_CFLAGS
7302 {"CS_LFS_CFLAGS", _CS_LFS_CFLAGS},
7303#endif
7304#ifdef _CS_LFS_LDFLAGS
7305 {"CS_LFS_LDFLAGS", _CS_LFS_LDFLAGS},
7306#endif
7307#ifdef _CS_LFS_LIBS
7308 {"CS_LFS_LIBS", _CS_LFS_LIBS},
7309#endif
7310#ifdef _CS_LFS_LINTFLAGS
7311 {"CS_LFS_LINTFLAGS", _CS_LFS_LINTFLAGS},
7312#endif
Fred Draked86ed291999-12-15 15:34:33 +00007313#ifdef _CS_MACHINE
7314 {"CS_MACHINE", _CS_MACHINE},
7315#endif
Fred Drakec9680921999-12-13 16:37:25 +00007316#ifdef _CS_PATH
7317 {"CS_PATH", _CS_PATH},
7318#endif
Fred Draked86ed291999-12-15 15:34:33 +00007319#ifdef _CS_RELEASE
7320 {"CS_RELEASE", _CS_RELEASE},
7321#endif
7322#ifdef _CS_SRPC_DOMAIN
7323 {"CS_SRPC_DOMAIN", _CS_SRPC_DOMAIN},
7324#endif
7325#ifdef _CS_SYSNAME
7326 {"CS_SYSNAME", _CS_SYSNAME},
7327#endif
7328#ifdef _CS_VERSION
7329 {"CS_VERSION", _CS_VERSION},
7330#endif
Fred Drakec9680921999-12-13 16:37:25 +00007331#ifdef _CS_XBS5_ILP32_OFF32_CFLAGS
7332 {"CS_XBS5_ILP32_OFF32_CFLAGS", _CS_XBS5_ILP32_OFF32_CFLAGS},
7333#endif
7334#ifdef _CS_XBS5_ILP32_OFF32_LDFLAGS
7335 {"CS_XBS5_ILP32_OFF32_LDFLAGS", _CS_XBS5_ILP32_OFF32_LDFLAGS},
7336#endif
7337#ifdef _CS_XBS5_ILP32_OFF32_LIBS
7338 {"CS_XBS5_ILP32_OFF32_LIBS", _CS_XBS5_ILP32_OFF32_LIBS},
7339#endif
7340#ifdef _CS_XBS5_ILP32_OFF32_LINTFLAGS
7341 {"CS_XBS5_ILP32_OFF32_LINTFLAGS", _CS_XBS5_ILP32_OFF32_LINTFLAGS},
7342#endif
7343#ifdef _CS_XBS5_ILP32_OFFBIG_CFLAGS
7344 {"CS_XBS5_ILP32_OFFBIG_CFLAGS", _CS_XBS5_ILP32_OFFBIG_CFLAGS},
7345#endif
7346#ifdef _CS_XBS5_ILP32_OFFBIG_LDFLAGS
7347 {"CS_XBS5_ILP32_OFFBIG_LDFLAGS", _CS_XBS5_ILP32_OFFBIG_LDFLAGS},
7348#endif
7349#ifdef _CS_XBS5_ILP32_OFFBIG_LIBS
7350 {"CS_XBS5_ILP32_OFFBIG_LIBS", _CS_XBS5_ILP32_OFFBIG_LIBS},
7351#endif
7352#ifdef _CS_XBS5_ILP32_OFFBIG_LINTFLAGS
7353 {"CS_XBS5_ILP32_OFFBIG_LINTFLAGS", _CS_XBS5_ILP32_OFFBIG_LINTFLAGS},
7354#endif
7355#ifdef _CS_XBS5_LP64_OFF64_CFLAGS
7356 {"CS_XBS5_LP64_OFF64_CFLAGS", _CS_XBS5_LP64_OFF64_CFLAGS},
7357#endif
7358#ifdef _CS_XBS5_LP64_OFF64_LDFLAGS
7359 {"CS_XBS5_LP64_OFF64_LDFLAGS", _CS_XBS5_LP64_OFF64_LDFLAGS},
7360#endif
7361#ifdef _CS_XBS5_LP64_OFF64_LIBS
7362 {"CS_XBS5_LP64_OFF64_LIBS", _CS_XBS5_LP64_OFF64_LIBS},
7363#endif
7364#ifdef _CS_XBS5_LP64_OFF64_LINTFLAGS
7365 {"CS_XBS5_LP64_OFF64_LINTFLAGS", _CS_XBS5_LP64_OFF64_LINTFLAGS},
7366#endif
7367#ifdef _CS_XBS5_LPBIG_OFFBIG_CFLAGS
7368 {"CS_XBS5_LPBIG_OFFBIG_CFLAGS", _CS_XBS5_LPBIG_OFFBIG_CFLAGS},
7369#endif
7370#ifdef _CS_XBS5_LPBIG_OFFBIG_LDFLAGS
7371 {"CS_XBS5_LPBIG_OFFBIG_LDFLAGS", _CS_XBS5_LPBIG_OFFBIG_LDFLAGS},
7372#endif
7373#ifdef _CS_XBS5_LPBIG_OFFBIG_LIBS
7374 {"CS_XBS5_LPBIG_OFFBIG_LIBS", _CS_XBS5_LPBIG_OFFBIG_LIBS},
7375#endif
7376#ifdef _CS_XBS5_LPBIG_OFFBIG_LINTFLAGS
7377 {"CS_XBS5_LPBIG_OFFBIG_LINTFLAGS", _CS_XBS5_LPBIG_OFFBIG_LINTFLAGS},
7378#endif
Fred Draked86ed291999-12-15 15:34:33 +00007379#ifdef _MIPS_CS_AVAIL_PROCESSORS
7380 {"MIPS_CS_AVAIL_PROCESSORS", _MIPS_CS_AVAIL_PROCESSORS},
7381#endif
7382#ifdef _MIPS_CS_BASE
7383 {"MIPS_CS_BASE", _MIPS_CS_BASE},
7384#endif
7385#ifdef _MIPS_CS_HOSTID
7386 {"MIPS_CS_HOSTID", _MIPS_CS_HOSTID},
7387#endif
7388#ifdef _MIPS_CS_HW_NAME
7389 {"MIPS_CS_HW_NAME", _MIPS_CS_HW_NAME},
7390#endif
7391#ifdef _MIPS_CS_NUM_PROCESSORS
7392 {"MIPS_CS_NUM_PROCESSORS", _MIPS_CS_NUM_PROCESSORS},
7393#endif
7394#ifdef _MIPS_CS_OSREL_MAJ
7395 {"MIPS_CS_OSREL_MAJ", _MIPS_CS_OSREL_MAJ},
7396#endif
7397#ifdef _MIPS_CS_OSREL_MIN
7398 {"MIPS_CS_OSREL_MIN", _MIPS_CS_OSREL_MIN},
7399#endif
7400#ifdef _MIPS_CS_OSREL_PATCH
7401 {"MIPS_CS_OSREL_PATCH", _MIPS_CS_OSREL_PATCH},
7402#endif
7403#ifdef _MIPS_CS_OS_NAME
7404 {"MIPS_CS_OS_NAME", _MIPS_CS_OS_NAME},
7405#endif
7406#ifdef _MIPS_CS_OS_PROVIDER
7407 {"MIPS_CS_OS_PROVIDER", _MIPS_CS_OS_PROVIDER},
7408#endif
7409#ifdef _MIPS_CS_PROCESSORS
7410 {"MIPS_CS_PROCESSORS", _MIPS_CS_PROCESSORS},
7411#endif
7412#ifdef _MIPS_CS_SERIAL
7413 {"MIPS_CS_SERIAL", _MIPS_CS_SERIAL},
7414#endif
7415#ifdef _MIPS_CS_VENDOR
7416 {"MIPS_CS_VENDOR", _MIPS_CS_VENDOR},
7417#endif
Fred Drakec9680921999-12-13 16:37:25 +00007418};
7419
7420static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007421conv_confstr_confname(PyObject *arg, int *valuep)
Fred Drakec9680921999-12-13 16:37:25 +00007422{
7423 return conv_confname(arg, valuep, posix_constants_confstr,
7424 sizeof(posix_constants_confstr)
7425 / sizeof(struct constdef));
7426}
7427
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007428PyDoc_STRVAR(posix_confstr__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007429"confstr(name) -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007430Return a string-valued system configuration variable.");
Fred Drakec9680921999-12-13 16:37:25 +00007431
7432static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007433posix_confstr(PyObject *self, PyObject *args)
Fred Drakec9680921999-12-13 16:37:25 +00007434{
7435 PyObject *result = NULL;
7436 int name;
Neal Norwitz449b24e2006-04-20 06:56:05 +00007437 char buffer[256];
Fred Drakec9680921999-12-13 16:37:25 +00007438
7439 if (PyArg_ParseTuple(args, "O&:confstr", conv_confstr_confname, &name)) {
Skip Montanarodd527fc2006-04-18 00:49:49 +00007440 int len;
Fred Drakec9680921999-12-13 16:37:25 +00007441
Fred Drakec9680921999-12-13 16:37:25 +00007442 errno = 0;
Skip Montanarodd527fc2006-04-18 00:49:49 +00007443 len = confstr(name, buffer, sizeof(buffer));
Skip Montanaro94785ef2006-04-20 01:29:48 +00007444 if (len == 0) {
7445 if (errno) {
7446 posix_error();
7447 }
7448 else {
7449 result = Py_None;
7450 Py_INCREF(Py_None);
7451 }
Fred Drakec9680921999-12-13 16:37:25 +00007452 }
7453 else {
Neal Norwitz0d21b1e2006-04-20 06:44:42 +00007454 if ((unsigned int)len >= sizeof(buffer)) {
Gregory P. Smithdd96db62008-06-09 04:58:54 +00007455 result = PyString_FromStringAndSize(NULL, len-1);
Fred Drakec9680921999-12-13 16:37:25 +00007456 if (result != NULL)
Gregory P. Smithdd96db62008-06-09 04:58:54 +00007457 confstr(name, PyString_AS_STRING(result), len);
Fred Drakec9680921999-12-13 16:37:25 +00007458 }
7459 else
Gregory P. Smithdd96db62008-06-09 04:58:54 +00007460 result = PyString_FromStringAndSize(buffer, len-1);
Fred Drakec9680921999-12-13 16:37:25 +00007461 }
7462 }
7463 return result;
7464}
7465#endif
7466
7467
7468#ifdef HAVE_SYSCONF
7469static struct constdef posix_constants_sysconf[] = {
7470#ifdef _SC_2_CHAR_TERM
7471 {"SC_2_CHAR_TERM", _SC_2_CHAR_TERM},
7472#endif
7473#ifdef _SC_2_C_BIND
7474 {"SC_2_C_BIND", _SC_2_C_BIND},
7475#endif
7476#ifdef _SC_2_C_DEV
7477 {"SC_2_C_DEV", _SC_2_C_DEV},
7478#endif
7479#ifdef _SC_2_C_VERSION
7480 {"SC_2_C_VERSION", _SC_2_C_VERSION},
7481#endif
7482#ifdef _SC_2_FORT_DEV
7483 {"SC_2_FORT_DEV", _SC_2_FORT_DEV},
7484#endif
7485#ifdef _SC_2_FORT_RUN
7486 {"SC_2_FORT_RUN", _SC_2_FORT_RUN},
7487#endif
7488#ifdef _SC_2_LOCALEDEF
7489 {"SC_2_LOCALEDEF", _SC_2_LOCALEDEF},
7490#endif
7491#ifdef _SC_2_SW_DEV
7492 {"SC_2_SW_DEV", _SC_2_SW_DEV},
7493#endif
7494#ifdef _SC_2_UPE
7495 {"SC_2_UPE", _SC_2_UPE},
7496#endif
7497#ifdef _SC_2_VERSION
7498 {"SC_2_VERSION", _SC_2_VERSION},
7499#endif
Fred Draked86ed291999-12-15 15:34:33 +00007500#ifdef _SC_ABI_ASYNCHRONOUS_IO
7501 {"SC_ABI_ASYNCHRONOUS_IO", _SC_ABI_ASYNCHRONOUS_IO},
7502#endif
7503#ifdef _SC_ACL
7504 {"SC_ACL", _SC_ACL},
7505#endif
Fred Drakec9680921999-12-13 16:37:25 +00007506#ifdef _SC_AIO_LISTIO_MAX
7507 {"SC_AIO_LISTIO_MAX", _SC_AIO_LISTIO_MAX},
7508#endif
Fred Drakec9680921999-12-13 16:37:25 +00007509#ifdef _SC_AIO_MAX
7510 {"SC_AIO_MAX", _SC_AIO_MAX},
7511#endif
7512#ifdef _SC_AIO_PRIO_DELTA_MAX
7513 {"SC_AIO_PRIO_DELTA_MAX", _SC_AIO_PRIO_DELTA_MAX},
7514#endif
7515#ifdef _SC_ARG_MAX
7516 {"SC_ARG_MAX", _SC_ARG_MAX},
7517#endif
7518#ifdef _SC_ASYNCHRONOUS_IO
7519 {"SC_ASYNCHRONOUS_IO", _SC_ASYNCHRONOUS_IO},
7520#endif
7521#ifdef _SC_ATEXIT_MAX
7522 {"SC_ATEXIT_MAX", _SC_ATEXIT_MAX},
7523#endif
Fred Draked86ed291999-12-15 15:34:33 +00007524#ifdef _SC_AUDIT
7525 {"SC_AUDIT", _SC_AUDIT},
7526#endif
Fred Drakec9680921999-12-13 16:37:25 +00007527#ifdef _SC_AVPHYS_PAGES
7528 {"SC_AVPHYS_PAGES", _SC_AVPHYS_PAGES},
7529#endif
7530#ifdef _SC_BC_BASE_MAX
7531 {"SC_BC_BASE_MAX", _SC_BC_BASE_MAX},
7532#endif
7533#ifdef _SC_BC_DIM_MAX
7534 {"SC_BC_DIM_MAX", _SC_BC_DIM_MAX},
7535#endif
7536#ifdef _SC_BC_SCALE_MAX
7537 {"SC_BC_SCALE_MAX", _SC_BC_SCALE_MAX},
7538#endif
7539#ifdef _SC_BC_STRING_MAX
7540 {"SC_BC_STRING_MAX", _SC_BC_STRING_MAX},
7541#endif
Fred Draked86ed291999-12-15 15:34:33 +00007542#ifdef _SC_CAP
7543 {"SC_CAP", _SC_CAP},
7544#endif
Fred Drakec9680921999-12-13 16:37:25 +00007545#ifdef _SC_CHARCLASS_NAME_MAX
7546 {"SC_CHARCLASS_NAME_MAX", _SC_CHARCLASS_NAME_MAX},
7547#endif
7548#ifdef _SC_CHAR_BIT
7549 {"SC_CHAR_BIT", _SC_CHAR_BIT},
7550#endif
7551#ifdef _SC_CHAR_MAX
7552 {"SC_CHAR_MAX", _SC_CHAR_MAX},
7553#endif
7554#ifdef _SC_CHAR_MIN
7555 {"SC_CHAR_MIN", _SC_CHAR_MIN},
7556#endif
7557#ifdef _SC_CHILD_MAX
7558 {"SC_CHILD_MAX", _SC_CHILD_MAX},
7559#endif
7560#ifdef _SC_CLK_TCK
7561 {"SC_CLK_TCK", _SC_CLK_TCK},
7562#endif
7563#ifdef _SC_COHER_BLKSZ
7564 {"SC_COHER_BLKSZ", _SC_COHER_BLKSZ},
7565#endif
7566#ifdef _SC_COLL_WEIGHTS_MAX
7567 {"SC_COLL_WEIGHTS_MAX", _SC_COLL_WEIGHTS_MAX},
7568#endif
7569#ifdef _SC_DCACHE_ASSOC
7570 {"SC_DCACHE_ASSOC", _SC_DCACHE_ASSOC},
7571#endif
7572#ifdef _SC_DCACHE_BLKSZ
7573 {"SC_DCACHE_BLKSZ", _SC_DCACHE_BLKSZ},
7574#endif
7575#ifdef _SC_DCACHE_LINESZ
7576 {"SC_DCACHE_LINESZ", _SC_DCACHE_LINESZ},
7577#endif
7578#ifdef _SC_DCACHE_SZ
7579 {"SC_DCACHE_SZ", _SC_DCACHE_SZ},
7580#endif
7581#ifdef _SC_DCACHE_TBLKSZ
7582 {"SC_DCACHE_TBLKSZ", _SC_DCACHE_TBLKSZ},
7583#endif
7584#ifdef _SC_DELAYTIMER_MAX
7585 {"SC_DELAYTIMER_MAX", _SC_DELAYTIMER_MAX},
7586#endif
7587#ifdef _SC_EQUIV_CLASS_MAX
7588 {"SC_EQUIV_CLASS_MAX", _SC_EQUIV_CLASS_MAX},
7589#endif
7590#ifdef _SC_EXPR_NEST_MAX
7591 {"SC_EXPR_NEST_MAX", _SC_EXPR_NEST_MAX},
7592#endif
7593#ifdef _SC_FSYNC
7594 {"SC_FSYNC", _SC_FSYNC},
7595#endif
7596#ifdef _SC_GETGR_R_SIZE_MAX
7597 {"SC_GETGR_R_SIZE_MAX", _SC_GETGR_R_SIZE_MAX},
7598#endif
7599#ifdef _SC_GETPW_R_SIZE_MAX
7600 {"SC_GETPW_R_SIZE_MAX", _SC_GETPW_R_SIZE_MAX},
7601#endif
7602#ifdef _SC_ICACHE_ASSOC
7603 {"SC_ICACHE_ASSOC", _SC_ICACHE_ASSOC},
7604#endif
7605#ifdef _SC_ICACHE_BLKSZ
7606 {"SC_ICACHE_BLKSZ", _SC_ICACHE_BLKSZ},
7607#endif
7608#ifdef _SC_ICACHE_LINESZ
7609 {"SC_ICACHE_LINESZ", _SC_ICACHE_LINESZ},
7610#endif
7611#ifdef _SC_ICACHE_SZ
7612 {"SC_ICACHE_SZ", _SC_ICACHE_SZ},
7613#endif
Fred Draked86ed291999-12-15 15:34:33 +00007614#ifdef _SC_INF
7615 {"SC_INF", _SC_INF},
7616#endif
Fred Drakec9680921999-12-13 16:37:25 +00007617#ifdef _SC_INT_MAX
7618 {"SC_INT_MAX", _SC_INT_MAX},
7619#endif
7620#ifdef _SC_INT_MIN
7621 {"SC_INT_MIN", _SC_INT_MIN},
7622#endif
7623#ifdef _SC_IOV_MAX
7624 {"SC_IOV_MAX", _SC_IOV_MAX},
7625#endif
Fred Draked86ed291999-12-15 15:34:33 +00007626#ifdef _SC_IP_SECOPTS
7627 {"SC_IP_SECOPTS", _SC_IP_SECOPTS},
7628#endif
Fred Drakec9680921999-12-13 16:37:25 +00007629#ifdef _SC_JOB_CONTROL
7630 {"SC_JOB_CONTROL", _SC_JOB_CONTROL},
7631#endif
Fred Draked86ed291999-12-15 15:34:33 +00007632#ifdef _SC_KERN_POINTERS
7633 {"SC_KERN_POINTERS", _SC_KERN_POINTERS},
7634#endif
7635#ifdef _SC_KERN_SIM
7636 {"SC_KERN_SIM", _SC_KERN_SIM},
7637#endif
Fred Drakec9680921999-12-13 16:37:25 +00007638#ifdef _SC_LINE_MAX
7639 {"SC_LINE_MAX", _SC_LINE_MAX},
7640#endif
7641#ifdef _SC_LOGIN_NAME_MAX
7642 {"SC_LOGIN_NAME_MAX", _SC_LOGIN_NAME_MAX},
7643#endif
7644#ifdef _SC_LOGNAME_MAX
7645 {"SC_LOGNAME_MAX", _SC_LOGNAME_MAX},
7646#endif
7647#ifdef _SC_LONG_BIT
7648 {"SC_LONG_BIT", _SC_LONG_BIT},
7649#endif
Fred Draked86ed291999-12-15 15:34:33 +00007650#ifdef _SC_MAC
7651 {"SC_MAC", _SC_MAC},
7652#endif
Fred Drakec9680921999-12-13 16:37:25 +00007653#ifdef _SC_MAPPED_FILES
7654 {"SC_MAPPED_FILES", _SC_MAPPED_FILES},
7655#endif
7656#ifdef _SC_MAXPID
7657 {"SC_MAXPID", _SC_MAXPID},
7658#endif
7659#ifdef _SC_MB_LEN_MAX
7660 {"SC_MB_LEN_MAX", _SC_MB_LEN_MAX},
7661#endif
7662#ifdef _SC_MEMLOCK
7663 {"SC_MEMLOCK", _SC_MEMLOCK},
7664#endif
7665#ifdef _SC_MEMLOCK_RANGE
7666 {"SC_MEMLOCK_RANGE", _SC_MEMLOCK_RANGE},
7667#endif
7668#ifdef _SC_MEMORY_PROTECTION
7669 {"SC_MEMORY_PROTECTION", _SC_MEMORY_PROTECTION},
7670#endif
7671#ifdef _SC_MESSAGE_PASSING
7672 {"SC_MESSAGE_PASSING", _SC_MESSAGE_PASSING},
7673#endif
Fred Draked86ed291999-12-15 15:34:33 +00007674#ifdef _SC_MMAP_FIXED_ALIGNMENT
7675 {"SC_MMAP_FIXED_ALIGNMENT", _SC_MMAP_FIXED_ALIGNMENT},
7676#endif
Fred Drakec9680921999-12-13 16:37:25 +00007677#ifdef _SC_MQ_OPEN_MAX
7678 {"SC_MQ_OPEN_MAX", _SC_MQ_OPEN_MAX},
7679#endif
7680#ifdef _SC_MQ_PRIO_MAX
7681 {"SC_MQ_PRIO_MAX", _SC_MQ_PRIO_MAX},
7682#endif
Fred Draked86ed291999-12-15 15:34:33 +00007683#ifdef _SC_NACLS_MAX
7684 {"SC_NACLS_MAX", _SC_NACLS_MAX},
7685#endif
Fred Drakec9680921999-12-13 16:37:25 +00007686#ifdef _SC_NGROUPS_MAX
7687 {"SC_NGROUPS_MAX", _SC_NGROUPS_MAX},
7688#endif
7689#ifdef _SC_NL_ARGMAX
7690 {"SC_NL_ARGMAX", _SC_NL_ARGMAX},
7691#endif
7692#ifdef _SC_NL_LANGMAX
7693 {"SC_NL_LANGMAX", _SC_NL_LANGMAX},
7694#endif
7695#ifdef _SC_NL_MSGMAX
7696 {"SC_NL_MSGMAX", _SC_NL_MSGMAX},
7697#endif
7698#ifdef _SC_NL_NMAX
7699 {"SC_NL_NMAX", _SC_NL_NMAX},
7700#endif
7701#ifdef _SC_NL_SETMAX
7702 {"SC_NL_SETMAX", _SC_NL_SETMAX},
7703#endif
7704#ifdef _SC_NL_TEXTMAX
7705 {"SC_NL_TEXTMAX", _SC_NL_TEXTMAX},
7706#endif
7707#ifdef _SC_NPROCESSORS_CONF
7708 {"SC_NPROCESSORS_CONF", _SC_NPROCESSORS_CONF},
7709#endif
7710#ifdef _SC_NPROCESSORS_ONLN
7711 {"SC_NPROCESSORS_ONLN", _SC_NPROCESSORS_ONLN},
7712#endif
Fred Draked86ed291999-12-15 15:34:33 +00007713#ifdef _SC_NPROC_CONF
7714 {"SC_NPROC_CONF", _SC_NPROC_CONF},
7715#endif
7716#ifdef _SC_NPROC_ONLN
7717 {"SC_NPROC_ONLN", _SC_NPROC_ONLN},
7718#endif
Fred Drakec9680921999-12-13 16:37:25 +00007719#ifdef _SC_NZERO
7720 {"SC_NZERO", _SC_NZERO},
7721#endif
7722#ifdef _SC_OPEN_MAX
7723 {"SC_OPEN_MAX", _SC_OPEN_MAX},
7724#endif
7725#ifdef _SC_PAGESIZE
7726 {"SC_PAGESIZE", _SC_PAGESIZE},
7727#endif
7728#ifdef _SC_PAGE_SIZE
7729 {"SC_PAGE_SIZE", _SC_PAGE_SIZE},
7730#endif
7731#ifdef _SC_PASS_MAX
7732 {"SC_PASS_MAX", _SC_PASS_MAX},
7733#endif
7734#ifdef _SC_PHYS_PAGES
7735 {"SC_PHYS_PAGES", _SC_PHYS_PAGES},
7736#endif
7737#ifdef _SC_PII
7738 {"SC_PII", _SC_PII},
7739#endif
7740#ifdef _SC_PII_INTERNET
7741 {"SC_PII_INTERNET", _SC_PII_INTERNET},
7742#endif
7743#ifdef _SC_PII_INTERNET_DGRAM
7744 {"SC_PII_INTERNET_DGRAM", _SC_PII_INTERNET_DGRAM},
7745#endif
7746#ifdef _SC_PII_INTERNET_STREAM
7747 {"SC_PII_INTERNET_STREAM", _SC_PII_INTERNET_STREAM},
7748#endif
7749#ifdef _SC_PII_OSI
7750 {"SC_PII_OSI", _SC_PII_OSI},
7751#endif
7752#ifdef _SC_PII_OSI_CLTS
7753 {"SC_PII_OSI_CLTS", _SC_PII_OSI_CLTS},
7754#endif
7755#ifdef _SC_PII_OSI_COTS
7756 {"SC_PII_OSI_COTS", _SC_PII_OSI_COTS},
7757#endif
7758#ifdef _SC_PII_OSI_M
7759 {"SC_PII_OSI_M", _SC_PII_OSI_M},
7760#endif
7761#ifdef _SC_PII_SOCKET
7762 {"SC_PII_SOCKET", _SC_PII_SOCKET},
7763#endif
7764#ifdef _SC_PII_XTI
7765 {"SC_PII_XTI", _SC_PII_XTI},
7766#endif
7767#ifdef _SC_POLL
7768 {"SC_POLL", _SC_POLL},
7769#endif
7770#ifdef _SC_PRIORITIZED_IO
7771 {"SC_PRIORITIZED_IO", _SC_PRIORITIZED_IO},
7772#endif
7773#ifdef _SC_PRIORITY_SCHEDULING
7774 {"SC_PRIORITY_SCHEDULING", _SC_PRIORITY_SCHEDULING},
7775#endif
7776#ifdef _SC_REALTIME_SIGNALS
7777 {"SC_REALTIME_SIGNALS", _SC_REALTIME_SIGNALS},
7778#endif
7779#ifdef _SC_RE_DUP_MAX
7780 {"SC_RE_DUP_MAX", _SC_RE_DUP_MAX},
7781#endif
7782#ifdef _SC_RTSIG_MAX
7783 {"SC_RTSIG_MAX", _SC_RTSIG_MAX},
7784#endif
7785#ifdef _SC_SAVED_IDS
7786 {"SC_SAVED_IDS", _SC_SAVED_IDS},
7787#endif
7788#ifdef _SC_SCHAR_MAX
7789 {"SC_SCHAR_MAX", _SC_SCHAR_MAX},
7790#endif
7791#ifdef _SC_SCHAR_MIN
7792 {"SC_SCHAR_MIN", _SC_SCHAR_MIN},
7793#endif
7794#ifdef _SC_SELECT
7795 {"SC_SELECT", _SC_SELECT},
7796#endif
7797#ifdef _SC_SEMAPHORES
7798 {"SC_SEMAPHORES", _SC_SEMAPHORES},
7799#endif
7800#ifdef _SC_SEM_NSEMS_MAX
7801 {"SC_SEM_NSEMS_MAX", _SC_SEM_NSEMS_MAX},
7802#endif
7803#ifdef _SC_SEM_VALUE_MAX
7804 {"SC_SEM_VALUE_MAX", _SC_SEM_VALUE_MAX},
7805#endif
7806#ifdef _SC_SHARED_MEMORY_OBJECTS
7807 {"SC_SHARED_MEMORY_OBJECTS", _SC_SHARED_MEMORY_OBJECTS},
7808#endif
7809#ifdef _SC_SHRT_MAX
7810 {"SC_SHRT_MAX", _SC_SHRT_MAX},
7811#endif
7812#ifdef _SC_SHRT_MIN
7813 {"SC_SHRT_MIN", _SC_SHRT_MIN},
7814#endif
7815#ifdef _SC_SIGQUEUE_MAX
7816 {"SC_SIGQUEUE_MAX", _SC_SIGQUEUE_MAX},
7817#endif
7818#ifdef _SC_SIGRT_MAX
7819 {"SC_SIGRT_MAX", _SC_SIGRT_MAX},
7820#endif
7821#ifdef _SC_SIGRT_MIN
7822 {"SC_SIGRT_MIN", _SC_SIGRT_MIN},
7823#endif
Fred Draked86ed291999-12-15 15:34:33 +00007824#ifdef _SC_SOFTPOWER
7825 {"SC_SOFTPOWER", _SC_SOFTPOWER},
7826#endif
Fred Drakec9680921999-12-13 16:37:25 +00007827#ifdef _SC_SPLIT_CACHE
7828 {"SC_SPLIT_CACHE", _SC_SPLIT_CACHE},
7829#endif
7830#ifdef _SC_SSIZE_MAX
7831 {"SC_SSIZE_MAX", _SC_SSIZE_MAX},
7832#endif
7833#ifdef _SC_STACK_PROT
7834 {"SC_STACK_PROT", _SC_STACK_PROT},
7835#endif
7836#ifdef _SC_STREAM_MAX
7837 {"SC_STREAM_MAX", _SC_STREAM_MAX},
7838#endif
7839#ifdef _SC_SYNCHRONIZED_IO
7840 {"SC_SYNCHRONIZED_IO", _SC_SYNCHRONIZED_IO},
7841#endif
7842#ifdef _SC_THREADS
7843 {"SC_THREADS", _SC_THREADS},
7844#endif
7845#ifdef _SC_THREAD_ATTR_STACKADDR
7846 {"SC_THREAD_ATTR_STACKADDR", _SC_THREAD_ATTR_STACKADDR},
7847#endif
7848#ifdef _SC_THREAD_ATTR_STACKSIZE
7849 {"SC_THREAD_ATTR_STACKSIZE", _SC_THREAD_ATTR_STACKSIZE},
7850#endif
7851#ifdef _SC_THREAD_DESTRUCTOR_ITERATIONS
7852 {"SC_THREAD_DESTRUCTOR_ITERATIONS", _SC_THREAD_DESTRUCTOR_ITERATIONS},
7853#endif
7854#ifdef _SC_THREAD_KEYS_MAX
7855 {"SC_THREAD_KEYS_MAX", _SC_THREAD_KEYS_MAX},
7856#endif
7857#ifdef _SC_THREAD_PRIORITY_SCHEDULING
7858 {"SC_THREAD_PRIORITY_SCHEDULING", _SC_THREAD_PRIORITY_SCHEDULING},
7859#endif
7860#ifdef _SC_THREAD_PRIO_INHERIT
7861 {"SC_THREAD_PRIO_INHERIT", _SC_THREAD_PRIO_INHERIT},
7862#endif
7863#ifdef _SC_THREAD_PRIO_PROTECT
7864 {"SC_THREAD_PRIO_PROTECT", _SC_THREAD_PRIO_PROTECT},
7865#endif
7866#ifdef _SC_THREAD_PROCESS_SHARED
7867 {"SC_THREAD_PROCESS_SHARED", _SC_THREAD_PROCESS_SHARED},
7868#endif
7869#ifdef _SC_THREAD_SAFE_FUNCTIONS
7870 {"SC_THREAD_SAFE_FUNCTIONS", _SC_THREAD_SAFE_FUNCTIONS},
7871#endif
7872#ifdef _SC_THREAD_STACK_MIN
7873 {"SC_THREAD_STACK_MIN", _SC_THREAD_STACK_MIN},
7874#endif
7875#ifdef _SC_THREAD_THREADS_MAX
7876 {"SC_THREAD_THREADS_MAX", _SC_THREAD_THREADS_MAX},
7877#endif
7878#ifdef _SC_TIMERS
7879 {"SC_TIMERS", _SC_TIMERS},
7880#endif
7881#ifdef _SC_TIMER_MAX
7882 {"SC_TIMER_MAX", _SC_TIMER_MAX},
7883#endif
7884#ifdef _SC_TTY_NAME_MAX
7885 {"SC_TTY_NAME_MAX", _SC_TTY_NAME_MAX},
7886#endif
7887#ifdef _SC_TZNAME_MAX
7888 {"SC_TZNAME_MAX", _SC_TZNAME_MAX},
7889#endif
7890#ifdef _SC_T_IOV_MAX
7891 {"SC_T_IOV_MAX", _SC_T_IOV_MAX},
7892#endif
7893#ifdef _SC_UCHAR_MAX
7894 {"SC_UCHAR_MAX", _SC_UCHAR_MAX},
7895#endif
7896#ifdef _SC_UINT_MAX
7897 {"SC_UINT_MAX", _SC_UINT_MAX},
7898#endif
7899#ifdef _SC_UIO_MAXIOV
7900 {"SC_UIO_MAXIOV", _SC_UIO_MAXIOV},
7901#endif
7902#ifdef _SC_ULONG_MAX
7903 {"SC_ULONG_MAX", _SC_ULONG_MAX},
7904#endif
7905#ifdef _SC_USHRT_MAX
7906 {"SC_USHRT_MAX", _SC_USHRT_MAX},
7907#endif
7908#ifdef _SC_VERSION
7909 {"SC_VERSION", _SC_VERSION},
7910#endif
7911#ifdef _SC_WORD_BIT
7912 {"SC_WORD_BIT", _SC_WORD_BIT},
7913#endif
7914#ifdef _SC_XBS5_ILP32_OFF32
7915 {"SC_XBS5_ILP32_OFF32", _SC_XBS5_ILP32_OFF32},
7916#endif
7917#ifdef _SC_XBS5_ILP32_OFFBIG
7918 {"SC_XBS5_ILP32_OFFBIG", _SC_XBS5_ILP32_OFFBIG},
7919#endif
7920#ifdef _SC_XBS5_LP64_OFF64
7921 {"SC_XBS5_LP64_OFF64", _SC_XBS5_LP64_OFF64},
7922#endif
7923#ifdef _SC_XBS5_LPBIG_OFFBIG
7924 {"SC_XBS5_LPBIG_OFFBIG", _SC_XBS5_LPBIG_OFFBIG},
7925#endif
7926#ifdef _SC_XOPEN_CRYPT
7927 {"SC_XOPEN_CRYPT", _SC_XOPEN_CRYPT},
7928#endif
7929#ifdef _SC_XOPEN_ENH_I18N
7930 {"SC_XOPEN_ENH_I18N", _SC_XOPEN_ENH_I18N},
7931#endif
7932#ifdef _SC_XOPEN_LEGACY
7933 {"SC_XOPEN_LEGACY", _SC_XOPEN_LEGACY},
7934#endif
7935#ifdef _SC_XOPEN_REALTIME
7936 {"SC_XOPEN_REALTIME", _SC_XOPEN_REALTIME},
7937#endif
7938#ifdef _SC_XOPEN_REALTIME_THREADS
7939 {"SC_XOPEN_REALTIME_THREADS", _SC_XOPEN_REALTIME_THREADS},
7940#endif
7941#ifdef _SC_XOPEN_SHM
7942 {"SC_XOPEN_SHM", _SC_XOPEN_SHM},
7943#endif
7944#ifdef _SC_XOPEN_UNIX
7945 {"SC_XOPEN_UNIX", _SC_XOPEN_UNIX},
7946#endif
7947#ifdef _SC_XOPEN_VERSION
7948 {"SC_XOPEN_VERSION", _SC_XOPEN_VERSION},
7949#endif
7950#ifdef _SC_XOPEN_XCU_VERSION
7951 {"SC_XOPEN_XCU_VERSION", _SC_XOPEN_XCU_VERSION},
7952#endif
7953#ifdef _SC_XOPEN_XPG2
7954 {"SC_XOPEN_XPG2", _SC_XOPEN_XPG2},
7955#endif
7956#ifdef _SC_XOPEN_XPG3
7957 {"SC_XOPEN_XPG3", _SC_XOPEN_XPG3},
7958#endif
7959#ifdef _SC_XOPEN_XPG4
7960 {"SC_XOPEN_XPG4", _SC_XOPEN_XPG4},
7961#endif
7962};
7963
7964static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007965conv_sysconf_confname(PyObject *arg, int *valuep)
Fred Drakec9680921999-12-13 16:37:25 +00007966{
7967 return conv_confname(arg, valuep, posix_constants_sysconf,
7968 sizeof(posix_constants_sysconf)
7969 / sizeof(struct constdef));
7970}
7971
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007972PyDoc_STRVAR(posix_sysconf__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007973"sysconf(name) -> integer\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007974Return an integer-valued system configuration variable.");
Fred Drakec9680921999-12-13 16:37:25 +00007975
7976static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007977posix_sysconf(PyObject *self, PyObject *args)
Fred Drakec9680921999-12-13 16:37:25 +00007978{
7979 PyObject *result = NULL;
7980 int name;
7981
7982 if (PyArg_ParseTuple(args, "O&:sysconf", conv_sysconf_confname, &name)) {
7983 int value;
7984
7985 errno = 0;
7986 value = sysconf(name);
7987 if (value == -1 && errno != 0)
7988 posix_error();
7989 else
7990 result = PyInt_FromLong(value);
7991 }
7992 return result;
7993}
7994#endif
7995
7996
Fred Drakebec628d1999-12-15 18:31:10 +00007997/* This code is used to ensure that the tables of configuration value names
7998 * are in sorted order as required by conv_confname(), and also to build the
7999 * the exported dictionaries that are used to publish information about the
8000 * names available on the host platform.
8001 *
8002 * Sorting the table at runtime ensures that the table is properly ordered
8003 * when used, even for platforms we're not able to test on. It also makes
8004 * it easier to add additional entries to the tables.
Fred Draked86ed291999-12-15 15:34:33 +00008005 */
Fred Drakebec628d1999-12-15 18:31:10 +00008006
8007static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00008008cmp_constdefs(const void *v1, const void *v2)
Fred Drakebec628d1999-12-15 18:31:10 +00008009{
8010 const struct constdef *c1 =
8011 (const struct constdef *) v1;
8012 const struct constdef *c2 =
8013 (const struct constdef *) v2;
8014
8015 return strcmp(c1->name, c2->name);
8016}
8017
8018static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00008019setup_confname_table(struct constdef *table, size_t tablesize,
Fred Drake4d1e64b2002-04-15 19:40:07 +00008020 char *tablename, PyObject *module)
Fred Draked86ed291999-12-15 15:34:33 +00008021{
Fred Drakebec628d1999-12-15 18:31:10 +00008022 PyObject *d = NULL;
Barry Warsaw3155db32000-04-13 15:20:40 +00008023 size_t i;
Fred Drakebec628d1999-12-15 18:31:10 +00008024
8025 qsort(table, tablesize, sizeof(struct constdef), cmp_constdefs);
8026 d = PyDict_New();
Barry Warsaw3155db32000-04-13 15:20:40 +00008027 if (d == NULL)
8028 return -1;
Fred Draked86ed291999-12-15 15:34:33 +00008029
Barry Warsaw3155db32000-04-13 15:20:40 +00008030 for (i=0; i < tablesize; ++i) {
8031 PyObject *o = PyInt_FromLong(table[i].value);
8032 if (o == NULL || PyDict_SetItemString(d, table[i].name, o) == -1) {
8033 Py_XDECREF(o);
8034 Py_DECREF(d);
8035 return -1;
Fred Draked86ed291999-12-15 15:34:33 +00008036 }
Barry Warsaw3155db32000-04-13 15:20:40 +00008037 Py_DECREF(o);
Fred Draked86ed291999-12-15 15:34:33 +00008038 }
Fred Drake4d1e64b2002-04-15 19:40:07 +00008039 return PyModule_AddObject(module, tablename, d);
Fred Draked86ed291999-12-15 15:34:33 +00008040}
8041
Fred Drakebec628d1999-12-15 18:31:10 +00008042/* Return -1 on failure, 0 on success. */
8043static int
Fred Drake4d1e64b2002-04-15 19:40:07 +00008044setup_confname_tables(PyObject *module)
Fred Draked86ed291999-12-15 15:34:33 +00008045{
8046#if defined(HAVE_FPATHCONF) || defined(HAVE_PATHCONF)
Fred Drakebec628d1999-12-15 18:31:10 +00008047 if (setup_confname_table(posix_constants_pathconf,
Fred Draked86ed291999-12-15 15:34:33 +00008048 sizeof(posix_constants_pathconf)
8049 / sizeof(struct constdef),
Fred Drake4d1e64b2002-04-15 19:40:07 +00008050 "pathconf_names", module))
Fred Drakebec628d1999-12-15 18:31:10 +00008051 return -1;
Fred Draked86ed291999-12-15 15:34:33 +00008052#endif
8053#ifdef HAVE_CONFSTR
Fred Drakebec628d1999-12-15 18:31:10 +00008054 if (setup_confname_table(posix_constants_confstr,
Fred Draked86ed291999-12-15 15:34:33 +00008055 sizeof(posix_constants_confstr)
8056 / sizeof(struct constdef),
Fred Drake4d1e64b2002-04-15 19:40:07 +00008057 "confstr_names", module))
Fred Drakebec628d1999-12-15 18:31:10 +00008058 return -1;
Fred Draked86ed291999-12-15 15:34:33 +00008059#endif
8060#ifdef HAVE_SYSCONF
Fred Drakebec628d1999-12-15 18:31:10 +00008061 if (setup_confname_table(posix_constants_sysconf,
Fred Draked86ed291999-12-15 15:34:33 +00008062 sizeof(posix_constants_sysconf)
8063 / sizeof(struct constdef),
Fred Drake4d1e64b2002-04-15 19:40:07 +00008064 "sysconf_names", module))
Fred Drakebec628d1999-12-15 18:31:10 +00008065 return -1;
Fred Draked86ed291999-12-15 15:34:33 +00008066#endif
Fred Drakebec628d1999-12-15 18:31:10 +00008067 return 0;
Fred Draked86ed291999-12-15 15:34:33 +00008068}
Fred Draked86ed291999-12-15 15:34:33 +00008069
8070
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008071PyDoc_STRVAR(posix_abort__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00008072"abort() -> does not return!\n\n\
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008073Abort the interpreter immediately. This 'dumps core' or otherwise fails\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008074in the hardest way possible on the hosting operating system.");
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008075
8076static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00008077posix_abort(PyObject *self, PyObject *noargs)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008078{
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008079 abort();
8080 /*NOTREACHED*/
8081 Py_FatalError("abort() called from Python code didn't abort!");
8082 return NULL;
8083}
Fred Drakebec628d1999-12-15 18:31:10 +00008084
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00008085#ifdef MS_WINDOWS
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008086PyDoc_STRVAR(win32_startfile__doc__,
Georg Brandlf4f44152006-02-18 22:29:33 +00008087"startfile(filepath [, operation]) - Start a file with its associated\n\
8088application.\n\
Tim Petersf58a7aa2000-09-22 10:05:54 +00008089\n\
Georg Brandlf4f44152006-02-18 22:29:33 +00008090When \"operation\" is not specified or \"open\", this acts like\n\
8091double-clicking the file in Explorer, or giving the file name as an\n\
8092argument to the DOS \"start\" command: the file is opened with whatever\n\
8093application (if any) its extension is associated.\n\
8094When another \"operation\" is given, it specifies what should be done with\n\
8095the file. A typical operation is \"print\".\n\
Tim Petersf58a7aa2000-09-22 10:05:54 +00008096\n\
8097startfile returns as soon as the associated application is launched.\n\
8098There is no option to wait for the application to close, and no way\n\
8099to retrieve the application's exit status.\n\
8100\n\
8101The filepath is relative to the current directory. If you want to use\n\
8102an absolute path, make sure the first character is not a slash (\"/\");\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008103the underlying Win32 ShellExecute function doesn't work if it is.");
Tim Petersf58a7aa2000-09-22 10:05:54 +00008104
8105static PyObject *
8106win32_startfile(PyObject *self, PyObject *args)
8107{
8108 char *filepath;
Georg Brandlf4f44152006-02-18 22:29:33 +00008109 char *operation = NULL;
Tim Petersf58a7aa2000-09-22 10:05:54 +00008110 HINSTANCE rc;
Georg Brandlad89dc82006-04-03 12:26:26 +00008111#ifdef Py_WIN_WIDE_FILENAMES
8112 if (unicode_file_names()) {
Martin v. Löwis5fe715f2006-04-03 23:01:24 +00008113 PyObject *unipath, *woperation = NULL;
Georg Brandlad89dc82006-04-03 12:26:26 +00008114 if (!PyArg_ParseTuple(args, "U|s:startfile",
8115 &unipath, &operation)) {
8116 PyErr_Clear();
8117 goto normal;
8118 }
8119
Martin v. Löwis5fe715f2006-04-03 23:01:24 +00008120
8121 if (operation) {
8122 woperation = PyUnicode_DecodeASCII(operation,
8123 strlen(operation), NULL);
8124 if (!woperation) {
8125 PyErr_Clear();
8126 operation = NULL;
8127 goto normal;
8128 }
Georg Brandlad89dc82006-04-03 12:26:26 +00008129 }
8130
8131 Py_BEGIN_ALLOW_THREADS
Martin v. Löwis5fe715f2006-04-03 23:01:24 +00008132 rc = ShellExecuteW((HWND)0, woperation ? PyUnicode_AS_UNICODE(woperation) : 0,
Georg Brandlad89dc82006-04-03 12:26:26 +00008133 PyUnicode_AS_UNICODE(unipath),
Georg Brandlad89dc82006-04-03 12:26:26 +00008134 NULL, NULL, SW_SHOWNORMAL);
8135 Py_END_ALLOW_THREADS
8136
Martin v. Löwis5fe715f2006-04-03 23:01:24 +00008137 Py_XDECREF(woperation);
Georg Brandlad89dc82006-04-03 12:26:26 +00008138 if (rc <= (HINSTANCE)32) {
8139 PyObject *errval = win32_error_unicode("startfile",
8140 PyUnicode_AS_UNICODE(unipath));
8141 return errval;
8142 }
8143 Py_INCREF(Py_None);
8144 return Py_None;
8145 }
8146#endif
8147
8148normal:
Georg Brandlf4f44152006-02-18 22:29:33 +00008149 if (!PyArg_ParseTuple(args, "et|s:startfile",
8150 Py_FileSystemDefaultEncoding, &filepath,
8151 &operation))
Tim Petersf58a7aa2000-09-22 10:05:54 +00008152 return NULL;
8153 Py_BEGIN_ALLOW_THREADS
Georg Brandlf4f44152006-02-18 22:29:33 +00008154 rc = ShellExecute((HWND)0, operation, filepath,
8155 NULL, NULL, SW_SHOWNORMAL);
Tim Petersf58a7aa2000-09-22 10:05:54 +00008156 Py_END_ALLOW_THREADS
Georg Brandle9f8ec92005-09-25 06:16:40 +00008157 if (rc <= (HINSTANCE)32) {
8158 PyObject *errval = win32_error("startfile", filepath);
8159 PyMem_Free(filepath);
8160 return errval;
8161 }
8162 PyMem_Free(filepath);
Tim Petersf58a7aa2000-09-22 10:05:54 +00008163 Py_INCREF(Py_None);
8164 return Py_None;
8165}
8166#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008167
Martin v. Löwis438b5342002-12-27 10:16:42 +00008168#ifdef HAVE_GETLOADAVG
8169PyDoc_STRVAR(posix_getloadavg__doc__,
8170"getloadavg() -> (float, float, float)\n\n\
8171Return the number of processes in the system run queue averaged over\n\
8172the last 1, 5, and 15 minutes or raises OSError if the load average\n\
8173was unobtainable");
8174
8175static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00008176posix_getloadavg(PyObject *self, PyObject *noargs)
Martin v. Löwis438b5342002-12-27 10:16:42 +00008177{
8178 double loadavg[3];
Martin v. Löwis438b5342002-12-27 10:16:42 +00008179 if (getloadavg(loadavg, 3)!=3) {
8180 PyErr_SetString(PyExc_OSError, "Load averages are unobtainable");
8181 return NULL;
8182 } else
8183 return Py_BuildValue("ddd", loadavg[0], loadavg[1], loadavg[2]);
8184}
8185#endif
8186
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008187#ifdef MS_WINDOWS
8188
8189PyDoc_STRVAR(win32_urandom__doc__,
8190"urandom(n) -> str\n\n\
8191Return a string of n random bytes suitable for cryptographic use.");
8192
8193typedef BOOL (WINAPI *CRYPTACQUIRECONTEXTA)(HCRYPTPROV *phProv,\
8194 LPCSTR pszContainer, LPCSTR pszProvider, DWORD dwProvType,\
8195 DWORD dwFlags );
8196typedef BOOL (WINAPI *CRYPTGENRANDOM)(HCRYPTPROV hProv, DWORD dwLen,\
8197 BYTE *pbBuffer );
8198
8199static CRYPTGENRANDOM pCryptGenRandom = NULL;
Martin v. Löwisaf699dd2007-09-04 09:51:57 +00008200/* This handle is never explicitly released. Instead, the operating
8201 system will release it when the process terminates. */
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008202static HCRYPTPROV hCryptProv = 0;
8203
Tim Peters4ad82172004-08-30 17:02:04 +00008204static PyObject*
8205win32_urandom(PyObject *self, PyObject *args)
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008206{
Tim Petersd3115382004-08-30 17:36:46 +00008207 int howMany;
8208 PyObject* result;
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008209
Tim Peters4ad82172004-08-30 17:02:04 +00008210 /* Read arguments */
Tim Peters9b279a82004-08-30 17:10:53 +00008211 if (! PyArg_ParseTuple(args, "i:urandom", &howMany))
Tim Peters4ad82172004-08-30 17:02:04 +00008212 return NULL;
Tim Peters51eba612004-08-30 17:08:02 +00008213 if (howMany < 0)
8214 return PyErr_Format(PyExc_ValueError,
8215 "negative argument not allowed");
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008216
Tim Peters4ad82172004-08-30 17:02:04 +00008217 if (hCryptProv == 0) {
8218 HINSTANCE hAdvAPI32 = NULL;
8219 CRYPTACQUIRECONTEXTA pCryptAcquireContext = NULL;
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008220
Tim Peters4ad82172004-08-30 17:02:04 +00008221 /* Obtain handle to the DLL containing CryptoAPI
8222 This should not fail */
8223 hAdvAPI32 = GetModuleHandle("advapi32.dll");
8224 if(hAdvAPI32 == NULL)
8225 return win32_error("GetModuleHandle", NULL);
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008226
Tim Peters4ad82172004-08-30 17:02:04 +00008227 /* Obtain pointers to the CryptoAPI functions
8228 This will fail on some early versions of Win95 */
8229 pCryptAcquireContext = (CRYPTACQUIRECONTEXTA)GetProcAddress(
8230 hAdvAPI32,
8231 "CryptAcquireContextA");
8232 if (pCryptAcquireContext == NULL)
8233 return PyErr_Format(PyExc_NotImplementedError,
8234 "CryptAcquireContextA not found");
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008235
Tim Peters4ad82172004-08-30 17:02:04 +00008236 pCryptGenRandom = (CRYPTGENRANDOM)GetProcAddress(
8237 hAdvAPI32, "CryptGenRandom");
Georg Brandl74bb7832006-09-06 06:03:59 +00008238 if (pCryptGenRandom == NULL)
Tim Peters4ad82172004-08-30 17:02:04 +00008239 return PyErr_Format(PyExc_NotImplementedError,
8240 "CryptGenRandom not found");
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008241
Tim Peters4ad82172004-08-30 17:02:04 +00008242 /* Acquire context */
8243 if (! pCryptAcquireContext(&hCryptProv, NULL, NULL,
8244 PROV_RSA_FULL, CRYPT_VERIFYCONTEXT))
8245 return win32_error("CryptAcquireContext", NULL);
8246 }
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008247
Tim Peters4ad82172004-08-30 17:02:04 +00008248 /* Allocate bytes */
Gregory P. Smithdd96db62008-06-09 04:58:54 +00008249 result = PyString_FromStringAndSize(NULL, howMany);
Tim Petersd3115382004-08-30 17:36:46 +00008250 if (result != NULL) {
8251 /* Get random data */
Amaury Forgeot d'Arc74bd40d2008-07-21 21:06:46 +00008252 memset(PyString_AS_STRING(result), 0, howMany); /* zero seed */
Tim Petersd3115382004-08-30 17:36:46 +00008253 if (! pCryptGenRandom(hCryptProv, howMany, (unsigned char*)
Gregory P. Smithdd96db62008-06-09 04:58:54 +00008254 PyString_AS_STRING(result))) {
Tim Petersd3115382004-08-30 17:36:46 +00008255 Py_DECREF(result);
8256 return win32_error("CryptGenRandom", NULL);
8257 }
Tim Peters4ad82172004-08-30 17:02:04 +00008258 }
Tim Petersd3115382004-08-30 17:36:46 +00008259 return result;
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008260}
8261#endif
Martin v. Löwis438b5342002-12-27 10:16:42 +00008262
Neal Norwitz2a30cd02006-07-10 01:18:57 +00008263#ifdef __VMS
8264/* Use openssl random routine */
8265#include <openssl/rand.h>
8266PyDoc_STRVAR(vms_urandom__doc__,
8267"urandom(n) -> str\n\n\
8268Return a string of n random bytes suitable for cryptographic use.");
8269
8270static PyObject*
8271vms_urandom(PyObject *self, PyObject *args)
8272{
8273 int howMany;
8274 PyObject* result;
8275
8276 /* Read arguments */
8277 if (! PyArg_ParseTuple(args, "i:urandom", &howMany))
8278 return NULL;
8279 if (howMany < 0)
8280 return PyErr_Format(PyExc_ValueError,
8281 "negative argument not allowed");
8282
8283 /* Allocate bytes */
Gregory P. Smithdd96db62008-06-09 04:58:54 +00008284 result = PyString_FromStringAndSize(NULL, howMany);
Neal Norwitz2a30cd02006-07-10 01:18:57 +00008285 if (result != NULL) {
8286 /* Get random data */
8287 if (RAND_pseudo_bytes((unsigned char*)
Gregory P. Smithdd96db62008-06-09 04:58:54 +00008288 PyString_AS_STRING(result),
Neal Norwitz2a30cd02006-07-10 01:18:57 +00008289 howMany) < 0) {
8290 Py_DECREF(result);
8291 return PyErr_Format(PyExc_ValueError,
8292 "RAND_pseudo_bytes");
8293 }
8294 }
8295 return result;
8296}
8297#endif
8298
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008299static PyMethodDef posix_methods[] = {
8300 {"access", posix_access, METH_VARARGS, posix_access__doc__},
8301#ifdef HAVE_TTYNAME
8302 {"ttyname", posix_ttyname, METH_VARARGS, posix_ttyname__doc__},
8303#endif
8304 {"chdir", posix_chdir, METH_VARARGS, posix_chdir__doc__},
Martin v. Löwis382abef2007-02-19 10:55:19 +00008305#ifdef HAVE_CHFLAGS
8306 {"chflags", posix_chflags, METH_VARARGS, posix_chflags__doc__},
8307#endif /* HAVE_CHFLAGS */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008308 {"chmod", posix_chmod, METH_VARARGS, posix_chmod__doc__},
Christian Heimes36281872007-11-30 21:11:28 +00008309#ifdef HAVE_FCHMOD
8310 {"fchmod", posix_fchmod, METH_VARARGS, posix_fchmod__doc__},
8311#endif /* HAVE_FCHMOD */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008312#ifdef HAVE_CHOWN
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008313 {"chown", posix_chown, METH_VARARGS, posix_chown__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008314#endif /* HAVE_CHOWN */
Christian Heimes36281872007-11-30 21:11:28 +00008315#ifdef HAVE_LCHMOD
8316 {"lchmod", posix_lchmod, METH_VARARGS, posix_lchmod__doc__},
8317#endif /* HAVE_LCHMOD */
8318#ifdef HAVE_FCHOWN
8319 {"fchown", posix_fchown, METH_VARARGS, posix_fchown__doc__},
8320#endif /* HAVE_FCHOWN */
Martin v. Löwis382abef2007-02-19 10:55:19 +00008321#ifdef HAVE_LCHFLAGS
8322 {"lchflags", posix_lchflags, METH_VARARGS, posix_lchflags__doc__},
8323#endif /* HAVE_LCHFLAGS */
Martin v. Löwis0cec0ff2002-07-28 16:33:45 +00008324#ifdef HAVE_LCHOWN
8325 {"lchown", posix_lchown, METH_VARARGS, posix_lchown__doc__},
8326#endif /* HAVE_LCHOWN */
Martin v. Löwis244edc82001-10-04 22:44:26 +00008327#ifdef HAVE_CHROOT
8328 {"chroot", posix_chroot, METH_VARARGS, posix_chroot__doc__},
8329#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008330#ifdef HAVE_CTERMID
Neal Norwitze241ce82003-02-17 18:17:05 +00008331 {"ctermid", posix_ctermid, METH_NOARGS, posix_ctermid__doc__},
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008332#endif
Guido van Rossum36bc6801995-06-14 22:54:23 +00008333#ifdef HAVE_GETCWD
Neal Norwitze241ce82003-02-17 18:17:05 +00008334 {"getcwd", posix_getcwd, METH_NOARGS, posix_getcwd__doc__},
Walter Dörwald3b918c32002-11-21 20:18:46 +00008335#ifdef Py_USING_UNICODE
Neal Norwitze241ce82003-02-17 18:17:05 +00008336 {"getcwdu", posix_getcwdu, METH_NOARGS, posix_getcwdu__doc__},
Guido van Rossum36bc6801995-06-14 22:54:23 +00008337#endif
Walter Dörwald3b918c32002-11-21 20:18:46 +00008338#endif
Guido van Rossumb6775db1994-08-01 11:34:53 +00008339#ifdef HAVE_LINK
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008340 {"link", posix_link, METH_VARARGS, posix_link__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008341#endif /* HAVE_LINK */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008342 {"listdir", posix_listdir, METH_VARARGS, posix_listdir__doc__},
8343 {"lstat", posix_lstat, METH_VARARGS, posix_lstat__doc__},
8344 {"mkdir", posix_mkdir, METH_VARARGS, posix_mkdir__doc__},
Guido van Rossumb6775db1994-08-01 11:34:53 +00008345#ifdef HAVE_NICE
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008346 {"nice", posix_nice, METH_VARARGS, posix_nice__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008347#endif /* HAVE_NICE */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008348#ifdef HAVE_READLINK
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008349 {"readlink", posix_readlink, METH_VARARGS, posix_readlink__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008350#endif /* HAVE_READLINK */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008351 {"rename", posix_rename, METH_VARARGS, posix_rename__doc__},
8352 {"rmdir", posix_rmdir, METH_VARARGS, posix_rmdir__doc__},
8353 {"stat", posix_stat, METH_VARARGS, posix_stat__doc__},
Martin v. Löwisf607bda2002-10-16 18:27:39 +00008354 {"stat_float_times", stat_float_times, METH_VARARGS, stat_float_times__doc__},
Guido van Rossumb6775db1994-08-01 11:34:53 +00008355#ifdef HAVE_SYMLINK
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008356 {"symlink", posix_symlink, METH_VARARGS, posix_symlink__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008357#endif /* HAVE_SYMLINK */
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008358#ifdef HAVE_SYSTEM
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008359 {"system", posix_system, METH_VARARGS, posix_system__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008360#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008361 {"umask", posix_umask, METH_VARARGS, posix_umask__doc__},
Guido van Rossumb6775db1994-08-01 11:34:53 +00008362#ifdef HAVE_UNAME
Neal Norwitze241ce82003-02-17 18:17:05 +00008363 {"uname", posix_uname, METH_NOARGS, posix_uname__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008364#endif /* HAVE_UNAME */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008365 {"unlink", posix_unlink, METH_VARARGS, posix_unlink__doc__},
8366 {"remove", posix_unlink, METH_VARARGS, posix_remove__doc__},
8367 {"utime", posix_utime, METH_VARARGS, posix_utime__doc__},
Guido van Rossumb6775db1994-08-01 11:34:53 +00008368#ifdef HAVE_TIMES
Neal Norwitze241ce82003-02-17 18:17:05 +00008369 {"times", posix_times, METH_NOARGS, posix_times__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008370#endif /* HAVE_TIMES */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008371 {"_exit", posix__exit, METH_VARARGS, posix__exit__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008372#ifdef HAVE_EXECV
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008373 {"execv", posix_execv, METH_VARARGS, posix_execv__doc__},
8374 {"execve", posix_execve, METH_VARARGS, posix_execve__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008375#endif /* HAVE_EXECV */
Guido van Rossuma1065681999-01-25 23:20:23 +00008376#ifdef HAVE_SPAWNV
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008377 {"spawnv", posix_spawnv, METH_VARARGS, posix_spawnv__doc__},
8378 {"spawnve", posix_spawnve, METH_VARARGS, posix_spawnve__doc__},
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00008379#if defined(PYOS_OS2)
8380 {"spawnvp", posix_spawnvp, METH_VARARGS, posix_spawnvp__doc__},
8381 {"spawnvpe", posix_spawnvpe, METH_VARARGS, posix_spawnvpe__doc__},
8382#endif /* PYOS_OS2 */
Guido van Rossuma1065681999-01-25 23:20:23 +00008383#endif /* HAVE_SPAWNV */
Guido van Rossum2242f2f2001-04-11 20:58:20 +00008384#ifdef HAVE_FORK1
Neal Norwitze241ce82003-02-17 18:17:05 +00008385 {"fork1", posix_fork1, METH_NOARGS, posix_fork1__doc__},
Guido van Rossum2242f2f2001-04-11 20:58:20 +00008386#endif /* HAVE_FORK1 */
Guido van Rossumad0ee831995-03-01 10:34:45 +00008387#ifdef HAVE_FORK
Neal Norwitze241ce82003-02-17 18:17:05 +00008388 {"fork", posix_fork, METH_NOARGS, posix_fork__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008389#endif /* HAVE_FORK */
Martin v. Löwis24a880b2002-12-31 12:55:15 +00008390#if defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX)
Neal Norwitze241ce82003-02-17 18:17:05 +00008391 {"openpty", posix_openpty, METH_NOARGS, posix_openpty__doc__},
Martin v. Löwis24a880b2002-12-31 12:55:15 +00008392#endif /* HAVE_OPENPTY || HAVE__GETPTY || HAVE_DEV_PTMX */
Fred Drake8cef4cf2000-06-28 16:40:38 +00008393#ifdef HAVE_FORKPTY
Neal Norwitze241ce82003-02-17 18:17:05 +00008394 {"forkpty", posix_forkpty, METH_NOARGS, posix_forkpty__doc__},
Fred Drake8cef4cf2000-06-28 16:40:38 +00008395#endif /* HAVE_FORKPTY */
Guido van Rossumad0ee831995-03-01 10:34:45 +00008396#ifdef HAVE_GETEGID
Neal Norwitze241ce82003-02-17 18:17:05 +00008397 {"getegid", posix_getegid, METH_NOARGS, posix_getegid__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008398#endif /* HAVE_GETEGID */
8399#ifdef HAVE_GETEUID
Neal Norwitze241ce82003-02-17 18:17:05 +00008400 {"geteuid", posix_geteuid, METH_NOARGS, posix_geteuid__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008401#endif /* HAVE_GETEUID */
8402#ifdef HAVE_GETGID
Neal Norwitze241ce82003-02-17 18:17:05 +00008403 {"getgid", posix_getgid, METH_NOARGS, posix_getgid__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008404#endif /* HAVE_GETGID */
Fred Drakec9680921999-12-13 16:37:25 +00008405#ifdef HAVE_GETGROUPS
Neal Norwitze241ce82003-02-17 18:17:05 +00008406 {"getgroups", posix_getgroups, METH_NOARGS, posix_getgroups__doc__},
Fred Drakec9680921999-12-13 16:37:25 +00008407#endif
Neal Norwitze241ce82003-02-17 18:17:05 +00008408 {"getpid", posix_getpid, METH_NOARGS, posix_getpid__doc__},
Guido van Rossumb6775db1994-08-01 11:34:53 +00008409#ifdef HAVE_GETPGRP
Neal Norwitze241ce82003-02-17 18:17:05 +00008410 {"getpgrp", posix_getpgrp, METH_NOARGS, posix_getpgrp__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008411#endif /* HAVE_GETPGRP */
Guido van Rossumad0ee831995-03-01 10:34:45 +00008412#ifdef HAVE_GETPPID
Neal Norwitze241ce82003-02-17 18:17:05 +00008413 {"getppid", posix_getppid, METH_NOARGS, posix_getppid__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008414#endif /* HAVE_GETPPID */
8415#ifdef HAVE_GETUID
Neal Norwitze241ce82003-02-17 18:17:05 +00008416 {"getuid", posix_getuid, METH_NOARGS, posix_getuid__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008417#endif /* HAVE_GETUID */
Fred Drake12c6e2d1999-12-14 21:25:03 +00008418#ifdef HAVE_GETLOGIN
Neal Norwitze241ce82003-02-17 18:17:05 +00008419 {"getlogin", posix_getlogin, METH_NOARGS, posix_getlogin__doc__},
Fred Drake12c6e2d1999-12-14 21:25:03 +00008420#endif
Guido van Rossumad0ee831995-03-01 10:34:45 +00008421#ifdef HAVE_KILL
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008422 {"kill", posix_kill, METH_VARARGS, posix_kill__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008423#endif /* HAVE_KILL */
Martin v. Löwisb2c92f42002-02-16 23:35:41 +00008424#ifdef HAVE_KILLPG
8425 {"killpg", posix_killpg, METH_VARARGS, posix_killpg__doc__},
8426#endif /* HAVE_KILLPG */
Guido van Rossumc0125471996-06-28 18:55:32 +00008427#ifdef HAVE_PLOCK
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008428 {"plock", posix_plock, METH_VARARGS, posix_plock__doc__},
Guido van Rossumc0125471996-06-28 18:55:32 +00008429#endif /* HAVE_PLOCK */
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008430#ifdef HAVE_POPEN
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008431 {"popen", posix_popen, METH_VARARGS, posix_popen__doc__},
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00008432#ifdef MS_WINDOWS
Fredrik Lundhffb9c772000-07-09 14:49:51 +00008433 {"popen2", win32_popen2, METH_VARARGS},
8434 {"popen3", win32_popen3, METH_VARARGS},
8435 {"popen4", win32_popen4, METH_VARARGS},
Tim Petersf58a7aa2000-09-22 10:05:54 +00008436 {"startfile", win32_startfile, METH_VARARGS, win32_startfile__doc__},
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00008437#else
8438#if defined(PYOS_OS2) && defined(PYCC_GCC)
8439 {"popen2", os2emx_popen2, METH_VARARGS},
8440 {"popen3", os2emx_popen3, METH_VARARGS},
8441 {"popen4", os2emx_popen4, METH_VARARGS},
8442#endif
Fredrik Lundhffb9c772000-07-09 14:49:51 +00008443#endif
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008444#endif /* HAVE_POPEN */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008445#ifdef HAVE_SETUID
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008446 {"setuid", posix_setuid, METH_VARARGS, posix_setuid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008447#endif /* HAVE_SETUID */
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00008448#ifdef HAVE_SETEUID
8449 {"seteuid", posix_seteuid, METH_VARARGS, posix_seteuid__doc__},
8450#endif /* HAVE_SETEUID */
8451#ifdef HAVE_SETEGID
8452 {"setegid", posix_setegid, METH_VARARGS, posix_setegid__doc__},
8453#endif /* HAVE_SETEGID */
8454#ifdef HAVE_SETREUID
8455 {"setreuid", posix_setreuid, METH_VARARGS, posix_setreuid__doc__},
8456#endif /* HAVE_SETREUID */
8457#ifdef HAVE_SETREGID
8458 {"setregid", posix_setregid, METH_VARARGS, posix_setregid__doc__},
8459#endif /* HAVE_SETREGID */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008460#ifdef HAVE_SETGID
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008461 {"setgid", posix_setgid, METH_VARARGS, posix_setgid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008462#endif /* HAVE_SETGID */
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00008463#ifdef HAVE_SETGROUPS
Georg Brandl96a8c392006-05-29 21:04:52 +00008464 {"setgroups", posix_setgroups, METH_O, posix_setgroups__doc__},
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00008465#endif /* HAVE_SETGROUPS */
Martin v. Löwis606edc12002-06-13 21:09:11 +00008466#ifdef HAVE_GETPGID
8467 {"getpgid", posix_getpgid, METH_VARARGS, posix_getpgid__doc__},
8468#endif /* HAVE_GETPGID */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008469#ifdef HAVE_SETPGRP
Neal Norwitze241ce82003-02-17 18:17:05 +00008470 {"setpgrp", posix_setpgrp, METH_NOARGS, posix_setpgrp__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008471#endif /* HAVE_SETPGRP */
Guido van Rossumad0ee831995-03-01 10:34:45 +00008472#ifdef HAVE_WAIT
Neal Norwitze241ce82003-02-17 18:17:05 +00008473 {"wait", posix_wait, METH_NOARGS, posix_wait__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008474#endif /* HAVE_WAIT */
Neal Norwitz05a45592006-03-20 06:30:08 +00008475#ifdef HAVE_WAIT3
8476 {"wait3", posix_wait3, METH_VARARGS, posix_wait3__doc__},
8477#endif /* HAVE_WAIT3 */
8478#ifdef HAVE_WAIT4
8479 {"wait4", posix_wait4, METH_VARARGS, posix_wait4__doc__},
8480#endif /* HAVE_WAIT4 */
Tim Petersab034fa2002-02-01 11:27:43 +00008481#if defined(HAVE_WAITPID) || defined(HAVE_CWAIT)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008482 {"waitpid", posix_waitpid, METH_VARARGS, posix_waitpid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008483#endif /* HAVE_WAITPID */
Martin v. Löwis49ee14d2003-11-10 06:35:36 +00008484#ifdef HAVE_GETSID
8485 {"getsid", posix_getsid, METH_VARARGS, posix_getsid__doc__},
8486#endif /* HAVE_GETSID */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008487#ifdef HAVE_SETSID
Neal Norwitze241ce82003-02-17 18:17:05 +00008488 {"setsid", posix_setsid, METH_NOARGS, posix_setsid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008489#endif /* HAVE_SETSID */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008490#ifdef HAVE_SETPGID
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008491 {"setpgid", posix_setpgid, METH_VARARGS, posix_setpgid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008492#endif /* HAVE_SETPGID */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008493#ifdef HAVE_TCGETPGRP
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008494 {"tcgetpgrp", posix_tcgetpgrp, METH_VARARGS, posix_tcgetpgrp__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008495#endif /* HAVE_TCGETPGRP */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008496#ifdef HAVE_TCSETPGRP
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008497 {"tcsetpgrp", posix_tcsetpgrp, METH_VARARGS, posix_tcsetpgrp__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008498#endif /* HAVE_TCSETPGRP */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008499 {"open", posix_open, METH_VARARGS, posix_open__doc__},
8500 {"close", posix_close, METH_VARARGS, posix_close__doc__},
Georg Brandl309501a2008-01-19 20:22:13 +00008501 {"closerange", posix_closerange, METH_VARARGS, posix_closerange__doc__},
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008502 {"dup", posix_dup, METH_VARARGS, posix_dup__doc__},
8503 {"dup2", posix_dup2, METH_VARARGS, posix_dup2__doc__},
8504 {"lseek", posix_lseek, METH_VARARGS, posix_lseek__doc__},
8505 {"read", posix_read, METH_VARARGS, posix_read__doc__},
8506 {"write", posix_write, METH_VARARGS, posix_write__doc__},
8507 {"fstat", posix_fstat, METH_VARARGS, posix_fstat__doc__},
8508 {"fdopen", posix_fdopen, METH_VARARGS, posix_fdopen__doc__},
Skip Montanaro1517d842000-07-19 14:34:14 +00008509 {"isatty", posix_isatty, METH_VARARGS, posix_isatty__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008510#ifdef HAVE_PIPE
Neal Norwitze241ce82003-02-17 18:17:05 +00008511 {"pipe", posix_pipe, METH_NOARGS, posix_pipe__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008512#endif
8513#ifdef HAVE_MKFIFO
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008514 {"mkfifo", posix_mkfifo, METH_VARARGS, posix_mkfifo__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008515#endif
Neal Norwitz11690112002-07-30 01:08:28 +00008516#if defined(HAVE_MKNOD) && defined(HAVE_MAKEDEV)
Martin v. Löwis06a83e92002-04-14 10:19:44 +00008517 {"mknod", posix_mknod, METH_VARARGS, posix_mknod__doc__},
8518#endif
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00008519#ifdef HAVE_DEVICE_MACROS
8520 {"major", posix_major, METH_VARARGS, posix_major__doc__},
8521 {"minor", posix_minor, METH_VARARGS, posix_minor__doc__},
8522 {"makedev", posix_makedev, METH_VARARGS, posix_makedev__doc__},
8523#endif
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008524#ifdef HAVE_FTRUNCATE
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008525 {"ftruncate", posix_ftruncate, METH_VARARGS, posix_ftruncate__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008526#endif
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00008527#ifdef HAVE_PUTENV
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008528 {"putenv", posix_putenv, METH_VARARGS, posix_putenv__doc__},
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00008529#endif
Guido van Rossumc524d952001-10-19 01:31:59 +00008530#ifdef HAVE_UNSETENV
8531 {"unsetenv", posix_unsetenv, METH_VARARGS, posix_unsetenv__doc__},
8532#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008533 {"strerror", posix_strerror, METH_VARARGS, posix_strerror__doc__},
Fred Drake4d1e64b2002-04-15 19:40:07 +00008534#ifdef HAVE_FCHDIR
8535 {"fchdir", posix_fchdir, METH_O, posix_fchdir__doc__},
8536#endif
Guido van Rossum21142a01999-01-08 21:05:37 +00008537#ifdef HAVE_FSYNC
Fred Drake4d1e64b2002-04-15 19:40:07 +00008538 {"fsync", posix_fsync, METH_O, posix_fsync__doc__},
Guido van Rossum21142a01999-01-08 21:05:37 +00008539#endif
8540#ifdef HAVE_FDATASYNC
Fred Drake4d1e64b2002-04-15 19:40:07 +00008541 {"fdatasync", posix_fdatasync, METH_O, posix_fdatasync__doc__},
Guido van Rossum21142a01999-01-08 21:05:37 +00008542#endif
Guido van Rossumc9641791998-08-04 15:26:23 +00008543#ifdef HAVE_SYS_WAIT_H
Fred Drake106c1a02002-04-23 15:58:02 +00008544#ifdef WCOREDUMP
8545 {"WCOREDUMP", posix_WCOREDUMP, METH_VARARGS, posix_WCOREDUMP__doc__},
8546#endif /* WCOREDUMP */
Martin v. Löwis2b41b0d2002-05-04 13:13:41 +00008547#ifdef WIFCONTINUED
8548 {"WIFCONTINUED",posix_WIFCONTINUED, METH_VARARGS, posix_WIFCONTINUED__doc__},
8549#endif /* WIFCONTINUED */
Guido van Rossumc9641791998-08-04 15:26:23 +00008550#ifdef WIFSTOPPED
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008551 {"WIFSTOPPED", posix_WIFSTOPPED, METH_VARARGS, posix_WIFSTOPPED__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008552#endif /* WIFSTOPPED */
8553#ifdef WIFSIGNALED
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008554 {"WIFSIGNALED", posix_WIFSIGNALED, METH_VARARGS, posix_WIFSIGNALED__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008555#endif /* WIFSIGNALED */
8556#ifdef WIFEXITED
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008557 {"WIFEXITED", posix_WIFEXITED, METH_VARARGS, posix_WIFEXITED__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008558#endif /* WIFEXITED */
8559#ifdef WEXITSTATUS
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008560 {"WEXITSTATUS", posix_WEXITSTATUS, METH_VARARGS, posix_WEXITSTATUS__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008561#endif /* WEXITSTATUS */
8562#ifdef WTERMSIG
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008563 {"WTERMSIG", posix_WTERMSIG, METH_VARARGS, posix_WTERMSIG__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008564#endif /* WTERMSIG */
8565#ifdef WSTOPSIG
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008566 {"WSTOPSIG", posix_WSTOPSIG, METH_VARARGS, posix_WSTOPSIG__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008567#endif /* WSTOPSIG */
8568#endif /* HAVE_SYS_WAIT_H */
Martin v. Löwis5f5d99c2006-05-16 07:05:37 +00008569#if defined(HAVE_FSTATVFS) && defined(HAVE_SYS_STATVFS_H)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008570 {"fstatvfs", posix_fstatvfs, METH_VARARGS, posix_fstatvfs__doc__},
Guido van Rossum94f6f721999-01-06 18:42:14 +00008571#endif
Martin v. Löwis5f5d99c2006-05-16 07:05:37 +00008572#if defined(HAVE_STATVFS) && defined(HAVE_SYS_STATVFS_H)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008573 {"statvfs", posix_statvfs, METH_VARARGS, posix_statvfs__doc__},
Guido van Rossum94f6f721999-01-06 18:42:14 +00008574#endif
Guido van Rossume2ad6332001-01-08 17:51:55 +00008575#ifdef HAVE_TMPFILE
Neal Norwitze241ce82003-02-17 18:17:05 +00008576 {"tmpfile", posix_tmpfile, METH_NOARGS, posix_tmpfile__doc__},
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008577#endif
8578#ifdef HAVE_TEMPNAM
8579 {"tempnam", posix_tempnam, METH_VARARGS, posix_tempnam__doc__},
8580#endif
8581#ifdef HAVE_TMPNAM
Neal Norwitze241ce82003-02-17 18:17:05 +00008582 {"tmpnam", posix_tmpnam, METH_NOARGS, posix_tmpnam__doc__},
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008583#endif
Fred Drakec9680921999-12-13 16:37:25 +00008584#ifdef HAVE_CONFSTR
8585 {"confstr", posix_confstr, METH_VARARGS, posix_confstr__doc__},
8586#endif
8587#ifdef HAVE_SYSCONF
8588 {"sysconf", posix_sysconf, METH_VARARGS, posix_sysconf__doc__},
8589#endif
8590#ifdef HAVE_FPATHCONF
8591 {"fpathconf", posix_fpathconf, METH_VARARGS, posix_fpathconf__doc__},
8592#endif
8593#ifdef HAVE_PATHCONF
8594 {"pathconf", posix_pathconf, METH_VARARGS, posix_pathconf__doc__},
8595#endif
Neal Norwitze241ce82003-02-17 18:17:05 +00008596 {"abort", posix_abort, METH_NOARGS, posix_abort__doc__},
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00008597#ifdef MS_WINDOWS
Mark Hammondef8b6542001-05-13 08:04:26 +00008598 {"_getfullpathname", posix__getfullpathname, METH_VARARGS, NULL},
8599#endif
Martin v. Löwis438b5342002-12-27 10:16:42 +00008600#ifdef HAVE_GETLOADAVG
Neal Norwitze241ce82003-02-17 18:17:05 +00008601 {"getloadavg", posix_getloadavg, METH_NOARGS, posix_getloadavg__doc__},
Martin v. Löwis438b5342002-12-27 10:16:42 +00008602#endif
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008603 #ifdef MS_WINDOWS
8604 {"urandom", win32_urandom, METH_VARARGS, win32_urandom__doc__},
8605 #endif
Neal Norwitz2a30cd02006-07-10 01:18:57 +00008606 #ifdef __VMS
8607 {"urandom", vms_urandom, METH_VARARGS, vms_urandom__doc__},
8608 #endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00008609 {NULL, NULL} /* Sentinel */
8610};
8611
8612
Barry Warsaw4a342091996-12-19 23:50:02 +00008613static int
Fred Drake4d1e64b2002-04-15 19:40:07 +00008614ins(PyObject *module, char *symbol, long value)
Barry Warsaw4a342091996-12-19 23:50:02 +00008615{
Fred Drake4d1e64b2002-04-15 19:40:07 +00008616 return PyModule_AddIntConstant(module, symbol, value);
Barry Warsaw4a342091996-12-19 23:50:02 +00008617}
8618
Guido van Rossumd48f2521997-12-05 22:19:34 +00008619#if defined(PYOS_OS2)
8620/* Insert Platform-Specific Constant Values (Strings & Numbers) of Common Use */
Fred Drake4d1e64b2002-04-15 19:40:07 +00008621static int insertvalues(PyObject *module)
Guido van Rossumd48f2521997-12-05 22:19:34 +00008622{
8623 APIRET rc;
8624 ULONG values[QSV_MAX+1];
8625 PyObject *v;
Marc-André Lemburgd4c0a9c2001-11-28 11:47:00 +00008626 char *ver, tmp[50];
Guido van Rossumd48f2521997-12-05 22:19:34 +00008627
8628 Py_BEGIN_ALLOW_THREADS
Andrew MacIntyre75e01452003-04-21 14:19:51 +00008629 rc = DosQuerySysInfo(1L, QSV_MAX, &values[1], sizeof(ULONG) * QSV_MAX);
Guido van Rossumd48f2521997-12-05 22:19:34 +00008630 Py_END_ALLOW_THREADS
8631
8632 if (rc != NO_ERROR) {
8633 os2_error(rc);
8634 return -1;
8635 }
8636
Fred Drake4d1e64b2002-04-15 19:40:07 +00008637 if (ins(module, "meminstalled", values[QSV_TOTPHYSMEM])) return -1;
8638 if (ins(module, "memkernel", values[QSV_TOTRESMEM])) return -1;
8639 if (ins(module, "memvirtual", values[QSV_TOTAVAILMEM])) return -1;
8640 if (ins(module, "maxpathlen", values[QSV_MAX_PATH_LENGTH])) return -1;
8641 if (ins(module, "maxnamelen", values[QSV_MAX_COMP_LENGTH])) return -1;
8642 if (ins(module, "revision", values[QSV_VERSION_REVISION])) return -1;
8643 if (ins(module, "timeslice", values[QSV_MIN_SLICE])) return -1;
Guido van Rossumd48f2521997-12-05 22:19:34 +00008644
8645 switch (values[QSV_VERSION_MINOR]) {
8646 case 0: ver = "2.00"; break;
8647 case 10: ver = "2.10"; break;
8648 case 11: ver = "2.11"; break;
8649 case 30: ver = "3.00"; break;
8650 case 40: ver = "4.00"; break;
8651 case 50: ver = "5.00"; break;
8652 default:
Tim Peters885d4572001-11-28 20:27:42 +00008653 PyOS_snprintf(tmp, sizeof(tmp),
8654 "%d-%d", values[QSV_VERSION_MAJOR],
8655 values[QSV_VERSION_MINOR]);
Guido van Rossumd48f2521997-12-05 22:19:34 +00008656 ver = &tmp[0];
8657 }
8658
8659 /* Add Indicator of the Version of the Operating System */
Fred Drake4d1e64b2002-04-15 19:40:07 +00008660 if (PyModule_AddStringConstant(module, "version", tmp) < 0)
Guido van Rossumd48f2521997-12-05 22:19:34 +00008661 return -1;
Guido van Rossumd48f2521997-12-05 22:19:34 +00008662
8663 /* Add Indicator of Which Drive was Used to Boot the System */
8664 tmp[0] = 'A' + values[QSV_BOOT_DRIVE] - 1;
8665 tmp[1] = ':';
8666 tmp[2] = '\0';
8667
Fred Drake4d1e64b2002-04-15 19:40:07 +00008668 return PyModule_AddStringConstant(module, "bootdrive", tmp);
Guido van Rossumd48f2521997-12-05 22:19:34 +00008669}
8670#endif
8671
Barry Warsaw4a342091996-12-19 23:50:02 +00008672static int
Thomas Woutersf3f33dc2000-07-21 06:00:07 +00008673all_ins(PyObject *d)
Barry Warsaw4a342091996-12-19 23:50:02 +00008674{
Guido van Rossum94f6f721999-01-06 18:42:14 +00008675#ifdef F_OK
8676 if (ins(d, "F_OK", (long)F_OK)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00008677#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00008678#ifdef R_OK
8679 if (ins(d, "R_OK", (long)R_OK)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00008680#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00008681#ifdef W_OK
8682 if (ins(d, "W_OK", (long)W_OK)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00008683#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00008684#ifdef X_OK
8685 if (ins(d, "X_OK", (long)X_OK)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00008686#endif
Fred Drakec9680921999-12-13 16:37:25 +00008687#ifdef NGROUPS_MAX
8688 if (ins(d, "NGROUPS_MAX", (long)NGROUPS_MAX)) return -1;
8689#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008690#ifdef TMP_MAX
8691 if (ins(d, "TMP_MAX", (long)TMP_MAX)) return -1;
8692#endif
Fred Drake106c1a02002-04-23 15:58:02 +00008693#ifdef WCONTINUED
8694 if (ins(d, "WCONTINUED", (long)WCONTINUED)) return -1;
8695#endif
Barry Warsaw4a342091996-12-19 23:50:02 +00008696#ifdef WNOHANG
8697 if (ins(d, "WNOHANG", (long)WNOHANG)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00008698#endif
Fred Drake106c1a02002-04-23 15:58:02 +00008699#ifdef WUNTRACED
8700 if (ins(d, "WUNTRACED", (long)WUNTRACED)) return -1;
8701#endif
Barry Warsaw4a342091996-12-19 23:50:02 +00008702#ifdef O_RDONLY
8703 if (ins(d, "O_RDONLY", (long)O_RDONLY)) return -1;
8704#endif
8705#ifdef O_WRONLY
8706 if (ins(d, "O_WRONLY", (long)O_WRONLY)) return -1;
8707#endif
8708#ifdef O_RDWR
8709 if (ins(d, "O_RDWR", (long)O_RDWR)) return -1;
8710#endif
8711#ifdef O_NDELAY
8712 if (ins(d, "O_NDELAY", (long)O_NDELAY)) return -1;
8713#endif
8714#ifdef O_NONBLOCK
8715 if (ins(d, "O_NONBLOCK", (long)O_NONBLOCK)) return -1;
8716#endif
8717#ifdef O_APPEND
8718 if (ins(d, "O_APPEND", (long)O_APPEND)) return -1;
8719#endif
8720#ifdef O_DSYNC
8721 if (ins(d, "O_DSYNC", (long)O_DSYNC)) return -1;
8722#endif
8723#ifdef O_RSYNC
8724 if (ins(d, "O_RSYNC", (long)O_RSYNC)) return -1;
8725#endif
8726#ifdef O_SYNC
8727 if (ins(d, "O_SYNC", (long)O_SYNC)) return -1;
8728#endif
8729#ifdef O_NOCTTY
8730 if (ins(d, "O_NOCTTY", (long)O_NOCTTY)) return -1;
8731#endif
8732#ifdef O_CREAT
8733 if (ins(d, "O_CREAT", (long)O_CREAT)) return -1;
8734#endif
8735#ifdef O_EXCL
8736 if (ins(d, "O_EXCL", (long)O_EXCL)) return -1;
8737#endif
8738#ifdef O_TRUNC
8739 if (ins(d, "O_TRUNC", (long)O_TRUNC)) return -1;
8740#endif
Guido van Rossum98d9d091997-08-08 21:48:51 +00008741#ifdef O_BINARY
8742 if (ins(d, "O_BINARY", (long)O_BINARY)) return -1;
8743#endif
8744#ifdef O_TEXT
8745 if (ins(d, "O_TEXT", (long)O_TEXT)) return -1;
8746#endif
Martin v. Löwis4fe3c272001-10-18 22:05:36 +00008747#ifdef O_LARGEFILE
8748 if (ins(d, "O_LARGEFILE", (long)O_LARGEFILE)) return -1;
8749#endif
Skip Montanaro5ff14922005-05-16 02:42:22 +00008750#ifdef O_SHLOCK
8751 if (ins(d, "O_SHLOCK", (long)O_SHLOCK)) return -1;
8752#endif
8753#ifdef O_EXLOCK
8754 if (ins(d, "O_EXLOCK", (long)O_EXLOCK)) return -1;
8755#endif
Martin v. Löwis4fe3c272001-10-18 22:05:36 +00008756
Tim Peters5aa91602002-01-30 05:46:57 +00008757/* MS Windows */
8758#ifdef O_NOINHERIT
8759 /* Don't inherit in child processes. */
8760 if (ins(d, "O_NOINHERIT", (long)O_NOINHERIT)) return -1;
8761#endif
8762#ifdef _O_SHORT_LIVED
8763 /* Optimize for short life (keep in memory). */
8764 /* MS forgot to define this one with a non-underscore form too. */
8765 if (ins(d, "O_SHORT_LIVED", (long)_O_SHORT_LIVED)) return -1;
8766#endif
8767#ifdef O_TEMPORARY
8768 /* Automatically delete when last handle is closed. */
8769 if (ins(d, "O_TEMPORARY", (long)O_TEMPORARY)) return -1;
8770#endif
8771#ifdef O_RANDOM
8772 /* Optimize for random access. */
8773 if (ins(d, "O_RANDOM", (long)O_RANDOM)) return -1;
8774#endif
8775#ifdef O_SEQUENTIAL
8776 /* Optimize for sequential access. */
8777 if (ins(d, "O_SEQUENTIAL", (long)O_SEQUENTIAL)) return -1;
8778#endif
8779
Martin v. Löwis4fe3c272001-10-18 22:05:36 +00008780/* GNU extensions. */
Georg Brandl5049a852008-05-16 13:10:15 +00008781#ifdef O_ASYNC
8782 /* Send a SIGIO signal whenever input or output
8783 becomes available on file descriptor */
8784 if (ins(d, "O_ASYNC", (long)O_ASYNC)) return -1;
8785#endif
Martin v. Löwis4fe3c272001-10-18 22:05:36 +00008786#ifdef O_DIRECT
8787 /* Direct disk access. */
8788 if (ins(d, "O_DIRECT", (long)O_DIRECT)) return -1;
8789#endif
8790#ifdef O_DIRECTORY
8791 /* Must be a directory. */
8792 if (ins(d, "O_DIRECTORY", (long)O_DIRECTORY)) return -1;
8793#endif
8794#ifdef O_NOFOLLOW
8795 /* Do not follow links. */
8796 if (ins(d, "O_NOFOLLOW", (long)O_NOFOLLOW)) return -1;
8797#endif
Georg Brandlb67da6e2007-11-24 13:56:09 +00008798#ifdef O_NOATIME
8799 /* Do not update the access time. */
8800 if (ins(d, "O_NOATIME", (long)O_NOATIME)) return -1;
8801#endif
Guido van Rossumd48f2521997-12-05 22:19:34 +00008802
Barry Warsaw5676bd12003-01-07 20:57:09 +00008803 /* These come from sysexits.h */
8804#ifdef EX_OK
8805 if (ins(d, "EX_OK", (long)EX_OK)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008806#endif /* EX_OK */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008807#ifdef EX_USAGE
8808 if (ins(d, "EX_USAGE", (long)EX_USAGE)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008809#endif /* EX_USAGE */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008810#ifdef EX_DATAERR
8811 if (ins(d, "EX_DATAERR", (long)EX_DATAERR)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008812#endif /* EX_DATAERR */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008813#ifdef EX_NOINPUT
8814 if (ins(d, "EX_NOINPUT", (long)EX_NOINPUT)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008815#endif /* EX_NOINPUT */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008816#ifdef EX_NOUSER
8817 if (ins(d, "EX_NOUSER", (long)EX_NOUSER)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008818#endif /* EX_NOUSER */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008819#ifdef EX_NOHOST
8820 if (ins(d, "EX_NOHOST", (long)EX_NOHOST)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008821#endif /* EX_NOHOST */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008822#ifdef EX_UNAVAILABLE
8823 if (ins(d, "EX_UNAVAILABLE", (long)EX_UNAVAILABLE)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008824#endif /* EX_UNAVAILABLE */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008825#ifdef EX_SOFTWARE
8826 if (ins(d, "EX_SOFTWARE", (long)EX_SOFTWARE)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008827#endif /* EX_SOFTWARE */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008828#ifdef EX_OSERR
8829 if (ins(d, "EX_OSERR", (long)EX_OSERR)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008830#endif /* EX_OSERR */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008831#ifdef EX_OSFILE
8832 if (ins(d, "EX_OSFILE", (long)EX_OSFILE)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008833#endif /* EX_OSFILE */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008834#ifdef EX_CANTCREAT
8835 if (ins(d, "EX_CANTCREAT", (long)EX_CANTCREAT)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008836#endif /* EX_CANTCREAT */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008837#ifdef EX_IOERR
8838 if (ins(d, "EX_IOERR", (long)EX_IOERR)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008839#endif /* EX_IOERR */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008840#ifdef EX_TEMPFAIL
8841 if (ins(d, "EX_TEMPFAIL", (long)EX_TEMPFAIL)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008842#endif /* EX_TEMPFAIL */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008843#ifdef EX_PROTOCOL
8844 if (ins(d, "EX_PROTOCOL", (long)EX_PROTOCOL)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008845#endif /* EX_PROTOCOL */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008846#ifdef EX_NOPERM
8847 if (ins(d, "EX_NOPERM", (long)EX_NOPERM)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008848#endif /* EX_NOPERM */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008849#ifdef EX_CONFIG
8850 if (ins(d, "EX_CONFIG", (long)EX_CONFIG)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008851#endif /* EX_CONFIG */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008852#ifdef EX_NOTFOUND
8853 if (ins(d, "EX_NOTFOUND", (long)EX_NOTFOUND)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008854#endif /* EX_NOTFOUND */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008855
Guido van Rossum246bc171999-02-01 23:54:31 +00008856#ifdef HAVE_SPAWNV
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00008857#if defined(PYOS_OS2) && defined(PYCC_GCC)
8858 if (ins(d, "P_WAIT", (long)P_WAIT)) return -1;
8859 if (ins(d, "P_NOWAIT", (long)P_NOWAIT)) return -1;
8860 if (ins(d, "P_OVERLAY", (long)P_OVERLAY)) return -1;
8861 if (ins(d, "P_DEBUG", (long)P_DEBUG)) return -1;
8862 if (ins(d, "P_SESSION", (long)P_SESSION)) return -1;
8863 if (ins(d, "P_DETACH", (long)P_DETACH)) return -1;
8864 if (ins(d, "P_PM", (long)P_PM)) return -1;
8865 if (ins(d, "P_DEFAULT", (long)P_DEFAULT)) return -1;
8866 if (ins(d, "P_MINIMIZE", (long)P_MINIMIZE)) return -1;
8867 if (ins(d, "P_MAXIMIZE", (long)P_MAXIMIZE)) return -1;
8868 if (ins(d, "P_FULLSCREEN", (long)P_FULLSCREEN)) return -1;
8869 if (ins(d, "P_WINDOWED", (long)P_WINDOWED)) return -1;
8870 if (ins(d, "P_FOREGROUND", (long)P_FOREGROUND)) return -1;
8871 if (ins(d, "P_BACKGROUND", (long)P_BACKGROUND)) return -1;
8872 if (ins(d, "P_NOCLOSE", (long)P_NOCLOSE)) return -1;
8873 if (ins(d, "P_NOSESSION", (long)P_NOSESSION)) return -1;
8874 if (ins(d, "P_QUOTE", (long)P_QUOTE)) return -1;
8875 if (ins(d, "P_TILDE", (long)P_TILDE)) return -1;
8876 if (ins(d, "P_UNRELATED", (long)P_UNRELATED)) return -1;
8877 if (ins(d, "P_DEBUGDESC", (long)P_DEBUGDESC)) return -1;
8878#else
Guido van Rossum7d385291999-02-16 19:38:04 +00008879 if (ins(d, "P_WAIT", (long)_P_WAIT)) return -1;
8880 if (ins(d, "P_NOWAIT", (long)_P_NOWAIT)) return -1;
8881 if (ins(d, "P_OVERLAY", (long)_OLD_P_OVERLAY)) return -1;
8882 if (ins(d, "P_NOWAITO", (long)_P_NOWAITO)) return -1;
8883 if (ins(d, "P_DETACH", (long)_P_DETACH)) return -1;
Guido van Rossum246bc171999-02-01 23:54:31 +00008884#endif
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00008885#endif
Guido van Rossum246bc171999-02-01 23:54:31 +00008886
Guido van Rossumd48f2521997-12-05 22:19:34 +00008887#if defined(PYOS_OS2)
8888 if (insertvalues(d)) return -1;
8889#endif
Barry Warsaw4a342091996-12-19 23:50:02 +00008890 return 0;
8891}
8892
8893
Tim Peters5aa91602002-01-30 05:46:57 +00008894#if (defined(_MSC_VER) || defined(__WATCOMC__) || defined(__BORLANDC__)) && !defined(__QNX__)
Guido van Rossum0cb96de1997-10-01 04:29:29 +00008895#define INITFUNC initnt
8896#define MODNAME "nt"
Tim Peters58e0a8c2001-05-14 22:32:33 +00008897
8898#elif defined(PYOS_OS2)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00008899#define INITFUNC initos2
8900#define MODNAME "os2"
Tim Peters58e0a8c2001-05-14 22:32:33 +00008901
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00008902#else
Guido van Rossum0cb96de1997-10-01 04:29:29 +00008903#define INITFUNC initposix
8904#define MODNAME "posix"
8905#endif
8906
Mark Hammondfe51c6d2002-08-02 02:27:13 +00008907PyMODINIT_FUNC
Thomas Woutersf3f33dc2000-07-21 06:00:07 +00008908INITFUNC(void)
Guido van Rossumb6775db1994-08-01 11:34:53 +00008909{
Fred Drake4d1e64b2002-04-15 19:40:07 +00008910 PyObject *m, *v;
Tim Peters5aa91602002-01-30 05:46:57 +00008911
Fred Drake4d1e64b2002-04-15 19:40:07 +00008912 m = Py_InitModule3(MODNAME,
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00008913 posix_methods,
Fred Drake4d1e64b2002-04-15 19:40:07 +00008914 posix__doc__);
Neal Norwitz1ac754f2006-01-19 06:09:39 +00008915 if (m == NULL)
8916 return;
Tim Peters5aa91602002-01-30 05:46:57 +00008917
Guido van Rossum0cb96de1997-10-01 04:29:29 +00008918 /* Initialize environ dictionary */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008919 v = convertenviron();
Fred Drake4d1e64b2002-04-15 19:40:07 +00008920 Py_XINCREF(v);
8921 if (v == NULL || PyModule_AddObject(m, "environ", v) != 0)
Guido van Rossum0cb96de1997-10-01 04:29:29 +00008922 return;
Barry Warsaw53699e91996-12-10 23:23:01 +00008923 Py_DECREF(v);
Fred Drakec9680921999-12-13 16:37:25 +00008924
Fred Drake4d1e64b2002-04-15 19:40:07 +00008925 if (all_ins(m))
Barry Warsaw4a342091996-12-19 23:50:02 +00008926 return;
8927
Fred Drake4d1e64b2002-04-15 19:40:07 +00008928 if (setup_confname_tables(m))
Fred Drakebec628d1999-12-15 18:31:10 +00008929 return;
8930
Fred Drake4d1e64b2002-04-15 19:40:07 +00008931 Py_INCREF(PyExc_OSError);
8932 PyModule_AddObject(m, "error", PyExc_OSError);
Fred Drake762e2061999-08-26 17:23:54 +00008933
Guido van Rossumb3d39562000-01-31 18:41:26 +00008934#ifdef HAVE_PUTENV
Neil Schemenauer19030a02001-01-16 04:27:47 +00008935 if (posix_putenv_garbage == NULL)
8936 posix_putenv_garbage = PyDict_New();
Guido van Rossumb3d39562000-01-31 18:41:26 +00008937#endif
Guido van Rossum98bf58f2001-10-18 20:34:25 +00008938
Martin v. Löwis19ab6c92006-04-16 18:55:50 +00008939 if (!initialized) {
8940 stat_result_desc.name = MODNAME ".stat_result";
8941 stat_result_desc.fields[7].name = PyStructSequence_UnnamedField;
8942 stat_result_desc.fields[8].name = PyStructSequence_UnnamedField;
8943 stat_result_desc.fields[9].name = PyStructSequence_UnnamedField;
8944 PyStructSequence_InitType(&StatResultType, &stat_result_desc);
8945 structseq_new = StatResultType.tp_new;
8946 StatResultType.tp_new = statresult_new;
8947
8948 statvfs_result_desc.name = MODNAME ".statvfs_result";
8949 PyStructSequence_InitType(&StatVFSResultType, &statvfs_result_desc);
8950 }
Fred Drake4d1e64b2002-04-15 19:40:07 +00008951 Py_INCREF((PyObject*) &StatResultType);
8952 PyModule_AddObject(m, "stat_result", (PyObject*) &StatResultType);
Fred Drake4d1e64b2002-04-15 19:40:07 +00008953 Py_INCREF((PyObject*) &StatVFSResultType);
8954 PyModule_AddObject(m, "statvfs_result",
8955 (PyObject*) &StatVFSResultType);
Martin v. Löwis19ab6c92006-04-16 18:55:50 +00008956 initialized = 1;
Ronald Oussorend06b6f22006-04-23 11:59:25 +00008957
8958#ifdef __APPLE__
8959 /*
8960 * Step 2 of weak-linking support on Mac OS X.
8961 *
8962 * The code below removes functions that are not available on the
8963 * currently active platform.
8964 *
8965 * This block allow one to use a python binary that was build on
8966 * OSX 10.4 on OSX 10.3, without loosing access to new APIs on
8967 * OSX 10.4.
8968 */
8969#ifdef HAVE_FSTATVFS
8970 if (fstatvfs == NULL) {
8971 if (PyObject_DelAttrString(m, "fstatvfs") == -1) {
8972 return;
8973 }
8974 }
8975#endif /* HAVE_FSTATVFS */
8976
8977#ifdef HAVE_STATVFS
8978 if (statvfs == NULL) {
8979 if (PyObject_DelAttrString(m, "statvfs") == -1) {
8980 return;
8981 }
8982 }
8983#endif /* HAVE_STATVFS */
8984
8985# ifdef HAVE_LCHOWN
8986 if (lchown == NULL) {
8987 if (PyObject_DelAttrString(m, "lchown") == -1) {
8988 return;
8989 }
8990 }
8991#endif /* HAVE_LCHOWN */
8992
8993
8994#endif /* __APPLE__ */
8995
Guido van Rossumb6775db1994-08-01 11:34:53 +00008996}
Anthony Baxterac6bd462006-04-13 02:06:09 +00008997
8998#ifdef __cplusplus
8999}
9000#endif
9001
Martin v. Löwis18aaa562006-10-15 08:43:33 +00009002