blob: 8956e939c2be24c553463ebafc889bbd790cf9d2 [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"
Kristján Valur Jónssonfeab3342009-04-01 16:08:34 +0000272#include <malloc.h>
Guido van Rossumb6775db1994-08-01 11:34:53 +0000273#include <windows.h>
Tim Petersee66d0c2002-07-15 16:10:55 +0000274#include <shellapi.h> /* for ShellExecute() */
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000275#define popen _popen
Guido van Rossum794d8131994-08-23 13:48:48 +0000276#define pclose _pclose
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000277#endif /* _MSC_VER */
Guido van Rossumb6775db1994-08-01 11:34:53 +0000278
Guido van Rossumd48f2521997-12-05 22:19:34 +0000279#if defined(PYCC_VACPP) && defined(PYOS_OS2)
Guido van Rossumb6775db1994-08-01 11:34:53 +0000280#include <io.h>
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +0000281#endif /* OS2 */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000282
Tim Petersbc2e10e2002-03-03 23:17:02 +0000283#ifndef MAXPATHLEN
Thomas Wouters1ddba602006-04-25 15:29:46 +0000284#if defined(PATH_MAX) && PATH_MAX > 1024
285#define MAXPATHLEN PATH_MAX
286#else
Tim Petersbc2e10e2002-03-03 23:17:02 +0000287#define MAXPATHLEN 1024
Thomas Wouters1ddba602006-04-25 15:29:46 +0000288#endif
Tim Petersbc2e10e2002-03-03 23:17:02 +0000289#endif /* MAXPATHLEN */
290
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000291#ifdef UNION_WAIT
292/* Emulate some macros on systems that have a union instead of macros */
293
294#ifndef WIFEXITED
295#define WIFEXITED(u_wait) (!(u_wait).w_termsig && !(u_wait).w_coredump)
296#endif
297
298#ifndef WEXITSTATUS
299#define WEXITSTATUS(u_wait) (WIFEXITED(u_wait)?((u_wait).w_retcode):-1)
300#endif
301
302#ifndef WTERMSIG
303#define WTERMSIG(u_wait) ((u_wait).w_termsig)
304#endif
305
Neal Norwitzd5a37542006-03-20 06:48:34 +0000306#define WAIT_TYPE union wait
307#define WAIT_STATUS_INT(s) (s.w_status)
308
309#else /* !UNION_WAIT */
310#define WAIT_TYPE int
311#define WAIT_STATUS_INT(s) (s)
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000312#endif /* UNION_WAIT */
313
Antoine Pitrou5e858fe2009-05-23 15:37:45 +0000314/* Issue #1983: pid_t can be longer than a C long on some systems */
Antoine Pitrou4fe38582009-05-24 12:15:04 +0000315#if !defined(SIZEOF_PID_T) || SIZEOF_PID_T == SIZEOF_INT
Antoine Pitrou5e858fe2009-05-23 15:37:45 +0000316#define PARSE_PID "i"
317#define PyLong_FromPid PyInt_FromLong
318#define PyLong_AsPid PyInt_AsLong
319#elif SIZEOF_PID_T == SIZEOF_LONG
320#define PARSE_PID "l"
321#define PyLong_FromPid PyInt_FromLong
322#define PyLong_AsPid PyInt_AsLong
323#elif defined(SIZEOF_LONG_LONG) && SIZEOF_PID_T == SIZEOF_LONG_LONG
324#define PARSE_PID "L"
325#define PyLong_FromPid PyLong_FromLongLong
326#define PyLong_AsPid PyInt_AsLongLong
327#else
328#error "sizeof(pid_t) is neither sizeof(int), sizeof(long) or sizeof(long long)"
Antoine Pitrou5e858fe2009-05-23 15:37:45 +0000329#endif /* SIZEOF_PID_T */
330
Greg Wardb48bc172000-03-01 21:51:56 +0000331/* Don't use the "_r" form if we don't need it (also, won't have a
332 prototype for it, at least on Solaris -- maybe others as well?). */
333#if defined(HAVE_CTERMID_R) && defined(WITH_THREAD)
334#define USE_CTERMID_R
335#endif
336
337#if defined(HAVE_TMPNAM_R) && defined(WITH_THREAD)
338#define USE_TMPNAM_R
339#endif
340
Fred Drake699f3522000-06-29 21:12:41 +0000341/* choose the appropriate stat and fstat functions and return structs */
Guido van Rossum64529cd2000-06-30 22:45:12 +0000342#undef STAT
Martin v. Löwis6238d2b2002-06-30 15:26:10 +0000343#if defined(MS_WIN64) || defined(MS_WINDOWS)
Martin v. Löwis14694662006-02-03 12:54:16 +0000344# define STAT win32_stat
345# define FSTAT win32_fstat
346# define STRUCT_STAT struct win32_stat
Fred Drake699f3522000-06-29 21:12:41 +0000347#else
348# define STAT stat
349# define FSTAT fstat
350# define STRUCT_STAT struct stat
351#endif
352
Tim Peters11b23062003-04-23 02:39:17 +0000353#if defined(MAJOR_IN_MKDEV)
Martin v. Löwisdbe3f762002-10-10 14:27:30 +0000354#include <sys/mkdev.h>
355#else
356#if defined(MAJOR_IN_SYSMACROS)
357#include <sys/sysmacros.h>
358#endif
Neal Norwitz3d949422002-04-20 13:46:43 +0000359#if defined(HAVE_MKNOD) && defined(HAVE_SYS_MKDEV_H)
360#include <sys/mkdev.h>
361#endif
Martin v. Löwisdbe3f762002-10-10 14:27:30 +0000362#endif
Fred Drake699f3522000-06-29 21:12:41 +0000363
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +0000364#if defined _MSC_VER && _MSC_VER >= 1400
365/* Microsoft CRT in VS2005 and higher will verify that a filehandle is
366 * valid and throw an assertion if it isn't.
367 * Normally, an invalid fd is likely to be a C program error and therefore
368 * an assertion can be useful, but it does contradict the POSIX standard
369 * which for write(2) states:
370 * "Otherwise, -1 shall be returned and errno set to indicate the error."
371 * "[EBADF] The fildes argument is not a valid file descriptor open for
372 * writing."
373 * Furthermore, python allows the user to enter any old integer
374 * as a fd and should merely raise a python exception on error.
375 * The Microsoft CRT doesn't provide an official way to check for the
376 * validity of a file descriptor, but we can emulate its internal behaviour
377 * by using the exported __pinfo data member and knowledge of the
378 * internal structures involved.
379 * The structures below must be updated for each version of visual studio
380 * according to the file internal.h in the CRT source, until MS comes
381 * up with a less hacky way to do this.
382 * (all of this is to avoid globally modifying the CRT behaviour using
383 * _set_invalid_parameter_handler() and _CrtSetReportMode())
384 */
Kristján Valur Jónssonfeab3342009-04-01 16:08:34 +0000385/* The actual size of the structure is determined at runtime.
386 * Only the first items must be present.
387 */
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +0000388typedef struct {
389 intptr_t osfhnd;
390 char osfile;
Kristján Valur Jónssonfeab3342009-04-01 16:08:34 +0000391} my_ioinfo;
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +0000392
Kristján Valur Jónssonfeab3342009-04-01 16:08:34 +0000393extern __declspec(dllimport) char * __pioinfo[];
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +0000394#define IOINFO_L2E 5
395#define IOINFO_ARRAY_ELTS (1 << IOINFO_L2E)
396#define IOINFO_ARRAYS 64
397#define _NHANDLE_ (IOINFO_ARRAYS * IOINFO_ARRAY_ELTS)
398#define FOPEN 0x01
399#define _NO_CONSOLE_FILENO (intptr_t)-2
400
401/* This function emulates what the windows CRT does to validate file handles */
402int
403_PyVerify_fd(int fd)
404{
405 const int i1 = fd >> IOINFO_L2E;
406 const int i2 = fd & ((1 << IOINFO_L2E) - 1);
Kristján Valur Jónssonfeab3342009-04-01 16:08:34 +0000407
408 static int sizeof_ioinfo = 0;
409
410 /* Determine the actual size of the ioinfo structure,
411 * as used by the CRT loaded in memory
412 */
413 if (sizeof_ioinfo == 0 && __pioinfo[0] != NULL) {
414 sizeof_ioinfo = _msize(__pioinfo[0]) / IOINFO_ARRAY_ELTS;
415 }
416 if (sizeof_ioinfo == 0) {
417 /* This should not happen... */
418 goto fail;
419 }
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +0000420
421 /* See that it isn't a special CLEAR fileno */
422 if (fd != _NO_CONSOLE_FILENO) {
423 /* Microsoft CRT would check that 0<=fd<_nhandle but we can't do that. Instead
424 * we check pointer validity and other info
425 */
426 if (0 <= i1 && i1 < IOINFO_ARRAYS && __pioinfo[i1] != NULL) {
427 /* finally, check that the file is open */
Kristján Valur Jónssonfeab3342009-04-01 16:08:34 +0000428 my_ioinfo* info = (my_ioinfo*)(__pioinfo[i1] + i2 * sizeof_ioinfo);
429 if (info->osfile & FOPEN) {
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +0000430 return 1;
Kristján Valur Jónssonfeab3342009-04-01 16:08:34 +0000431 }
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +0000432 }
433 }
Kristján Valur Jónssonfeab3342009-04-01 16:08:34 +0000434 fail:
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +0000435 errno = EBADF;
436 return 0;
437}
438
439/* the special case of checking dup2. The target fd must be in a sensible range */
440static int
441_PyVerify_fd_dup2(int fd1, int fd2)
442{
443 if (!_PyVerify_fd(fd1))
444 return 0;
445 if (fd2 == _NO_CONSOLE_FILENO)
446 return 0;
447 if ((unsigned)fd2 < _NHANDLE_)
448 return 1;
449 else
450 return 0;
451}
452#else
453/* dummy version. _PyVerify_fd() is already defined in fileobject.h */
454#define _PyVerify_fd_dup2(A, B) (1)
455#endif
456
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000457/* Return a dictionary corresponding to the POSIX environment table */
Jack Jansenea0c3822002-08-01 21:57:49 +0000458#ifdef WITH_NEXT_FRAMEWORK
459/* On Darwin/MacOSX a shared library or framework has no access to
460** environ directly, we must obtain it with _NSGetEnviron().
461*/
462#include <crt_externs.h>
463static char **environ;
464#elif !defined(_MSC_VER) && ( !defined(__WATCOMC__) || defined(__QNX__) )
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000465extern char **environ;
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000466#endif /* !_MSC_VER */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000467
Barry Warsaw53699e91996-12-10 23:23:01 +0000468static PyObject *
Thomas Woutersf3f33dc2000-07-21 06:00:07 +0000469convertenviron(void)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000470{
Barry Warsaw53699e91996-12-10 23:23:01 +0000471 PyObject *d;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000472 char **e;
Barry Warsaw53699e91996-12-10 23:23:01 +0000473 d = PyDict_New();
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000474 if (d == NULL)
475 return NULL;
Jack Jansenea0c3822002-08-01 21:57:49 +0000476#ifdef WITH_NEXT_FRAMEWORK
477 if (environ == NULL)
478 environ = *_NSGetEnviron();
479#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000480 if (environ == NULL)
481 return d;
Guido van Rossum6a619f41999-08-03 19:41:10 +0000482 /* This part ignores errors */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000483 for (e = environ; *e != NULL; e++) {
Guido van Rossum6a619f41999-08-03 19:41:10 +0000484 PyObject *k;
Barry Warsaw53699e91996-12-10 23:23:01 +0000485 PyObject *v;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000486 char *p = strchr(*e, '=');
487 if (p == NULL)
488 continue;
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000489 k = PyString_FromStringAndSize(*e, (int)(p-*e));
Guido van Rossum6a619f41999-08-03 19:41:10 +0000490 if (k == NULL) {
491 PyErr_Clear();
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000492 continue;
Guido van Rossum6a619f41999-08-03 19:41:10 +0000493 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000494 v = PyString_FromString(p+1);
Guido van Rossum6a619f41999-08-03 19:41:10 +0000495 if (v == NULL) {
496 PyErr_Clear();
497 Py_DECREF(k);
498 continue;
499 }
500 if (PyDict_GetItem(d, k) == NULL) {
501 if (PyDict_SetItem(d, k, v) != 0)
502 PyErr_Clear();
503 }
504 Py_DECREF(k);
Barry Warsaw53699e91996-12-10 23:23:01 +0000505 Py_DECREF(v);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000506 }
Martin v. Löwisc16f3bd2003-05-03 09:14:54 +0000507#if defined(PYOS_OS2)
Guido van Rossumd48f2521997-12-05 22:19:34 +0000508 {
509 APIRET rc;
510 char buffer[1024]; /* OS/2 Provides a Documented Max of 1024 Chars */
511
512 rc = DosQueryExtLIBPATH(buffer, BEGIN_LIBPATH);
Fredrik Lundhff7df9d2000-07-08 22:48:53 +0000513 if (rc == NO_ERROR) { /* (not a type, envname is NOT 'BEGIN_LIBPATH') */
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000514 PyObject *v = PyString_FromString(buffer);
Guido van Rossumd48f2521997-12-05 22:19:34 +0000515 PyDict_SetItemString(d, "BEGINLIBPATH", v);
516 Py_DECREF(v);
517 }
518 rc = DosQueryExtLIBPATH(buffer, END_LIBPATH);
519 if (rc == NO_ERROR) { /* (not a typo, envname is NOT 'END_LIBPATH') */
Gregory P. Smithdd96db62008-06-09 04:58:54 +0000520 PyObject *v = PyString_FromString(buffer);
Guido van Rossumd48f2521997-12-05 22:19:34 +0000521 PyDict_SetItemString(d, "ENDLIBPATH", v);
522 Py_DECREF(v);
523 }
524 }
525#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000526 return d;
527}
528
529
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000530/* Set a POSIX-specific error from errno, and return NULL */
531
Barry Warsawd58d7641998-07-23 16:14:40 +0000532static PyObject *
Thomas Woutersf3f33dc2000-07-21 06:00:07 +0000533posix_error(void)
Guido van Rossumad0ee831995-03-01 10:34:45 +0000534{
Barry Warsawca74da41999-02-09 19:31:45 +0000535 return PyErr_SetFromErrno(PyExc_OSError);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000536}
Barry Warsawd58d7641998-07-23 16:14:40 +0000537static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +0000538posix_error_with_filename(char* name)
Barry Warsawd58d7641998-07-23 16:14:40 +0000539{
Barry Warsawca74da41999-02-09 19:31:45 +0000540 return PyErr_SetFromErrnoWithFilename(PyExc_OSError, name);
Barry Warsawd58d7641998-07-23 16:14:40 +0000541}
542
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +0000543#ifdef MS_WINDOWS
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000544static PyObject *
545posix_error_with_unicode_filename(Py_UNICODE* name)
546{
547 return PyErr_SetFromErrnoWithUnicodeFilename(PyExc_OSError, name);
548}
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +0000549#endif /* MS_WINDOWS */
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000550
551
Mark Hammondef8b6542001-05-13 08:04:26 +0000552static PyObject *
553posix_error_with_allocated_filename(char* name)
554{
555 PyObject *rc = PyErr_SetFromErrnoWithFilename(PyExc_OSError, name);
556 PyMem_Free(name);
557 return rc;
558}
559
Martin v. Löwis6238d2b2002-06-30 15:26:10 +0000560#ifdef MS_WINDOWS
Fredrik Lundhffb9c772000-07-09 14:49:51 +0000561static PyObject *
562win32_error(char* function, char* filename)
563{
Mark Hammond33a6da92000-08-15 00:46:38 +0000564 /* XXX We should pass the function name along in the future.
565 (_winreg.c also wants to pass the function name.)
Tim Peters5aa91602002-01-30 05:46:57 +0000566 This would however require an additional param to the
Mark Hammond33a6da92000-08-15 00:46:38 +0000567 Windows error object, which is non-trivial.
568 */
Fredrik Lundhffb9c772000-07-09 14:49:51 +0000569 errno = GetLastError();
570 if (filename)
Mark Hammond33a6da92000-08-15 00:46:38 +0000571 return PyErr_SetFromWindowsErrWithFilename(errno, filename);
Fredrik Lundhffb9c772000-07-09 14:49:51 +0000572 else
Mark Hammond33a6da92000-08-15 00:46:38 +0000573 return PyErr_SetFromWindowsErr(errno);
Fredrik Lundhffb9c772000-07-09 14:49:51 +0000574}
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000575
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000576static PyObject *
577win32_error_unicode(char* function, Py_UNICODE* filename)
578{
579 /* XXX - see win32_error for comments on 'function' */
580 errno = GetLastError();
581 if (filename)
582 return PyErr_SetFromWindowsErrWithUnicodeFilename(errno, filename);
583 else
584 return PyErr_SetFromWindowsErr(errno);
585}
586
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000587static int
Hirokazu Yamamotoa0fdd722008-08-17 09:19:52 +0000588convert_to_unicode(PyObject **param)
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000589{
Hirokazu Yamamotoa0fdd722008-08-17 09:19:52 +0000590 if (PyUnicode_CheckExact(*param))
591 Py_INCREF(*param);
592 else if (PyUnicode_Check(*param))
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000593 /* For a Unicode subtype that's not a Unicode object,
594 return a true Unicode object with the same data. */
Hirokazu Yamamotoa0fdd722008-08-17 09:19:52 +0000595 *param = PyUnicode_FromUnicode(PyUnicode_AS_UNICODE(*param),
596 PyUnicode_GET_SIZE(*param));
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000597 else
Hirokazu Yamamotoa0fdd722008-08-17 09:19:52 +0000598 *param = PyUnicode_FromEncodedObject(*param,
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000599 Py_FileSystemDefaultEncoding,
600 "strict");
601 return (*param) != NULL;
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000602}
603
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +0000604#endif /* MS_WINDOWS */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000605
Guido van Rossumd48f2521997-12-05 22:19:34 +0000606#if defined(PYOS_OS2)
607/**********************************************************************
608 * Helper Function to Trim and Format OS/2 Messages
609 **********************************************************************/
610 static void
611os2_formatmsg(char *msgbuf, int msglen, char *reason)
612{
613 msgbuf[msglen] = '\0'; /* OS/2 Doesn't Guarantee a Terminator */
614
615 if (strlen(msgbuf) > 0) { /* If Non-Empty Msg, Trim CRLF */
616 char *lastc = &msgbuf[ strlen(msgbuf)-1 ];
617
Neal Norwitz30b5c5d2005-12-19 06:05:18 +0000618 while (lastc > msgbuf && isspace(Py_CHARMASK(*lastc)))
Guido van Rossumd48f2521997-12-05 22:19:34 +0000619 *lastc-- = '\0'; /* Trim Trailing Whitespace (CRLF) */
620 }
621
622 /* Add Optional Reason Text */
623 if (reason) {
624 strcat(msgbuf, " : ");
625 strcat(msgbuf, reason);
626 }
627}
628
629/**********************************************************************
630 * Decode an OS/2 Operating System Error Code
631 *
632 * A convenience function to lookup an OS/2 error code and return a
633 * text message we can use to raise a Python exception.
634 *
635 * Notes:
636 * The messages for errors returned from the OS/2 kernel reside in
637 * the file OSO001.MSG in the \OS2 directory hierarchy.
638 *
639 **********************************************************************/
640 static char *
641os2_strerror(char *msgbuf, int msgbuflen, int errorcode, char *reason)
642{
643 APIRET rc;
644 ULONG msglen;
645
646 /* Retrieve Kernel-Related Error Message from OSO001.MSG File */
647 Py_BEGIN_ALLOW_THREADS
648 rc = DosGetMessage(NULL, 0, msgbuf, msgbuflen,
649 errorcode, "oso001.msg", &msglen);
650 Py_END_ALLOW_THREADS
651
652 if (rc == NO_ERROR)
653 os2_formatmsg(msgbuf, msglen, reason);
654 else
Tim Peters1ceb5fb2001-11-28 20:32:57 +0000655 PyOS_snprintf(msgbuf, msgbuflen,
Tim Peters885d4572001-11-28 20:27:42 +0000656 "unknown OS error #%d", errorcode);
Guido van Rossumd48f2521997-12-05 22:19:34 +0000657
658 return msgbuf;
659}
660
661/* Set an OS/2-specific error and return NULL. OS/2 kernel
662 errors are not in a global variable e.g. 'errno' nor are
663 they congruent with posix error numbers. */
664
665static PyObject * os2_error(int code)
666{
667 char text[1024];
668 PyObject *v;
669
670 os2_strerror(text, sizeof(text), code, "");
671
672 v = Py_BuildValue("(is)", code, text);
673 if (v != NULL) {
Barry Warsawca74da41999-02-09 19:31:45 +0000674 PyErr_SetObject(PyExc_OSError, v);
Guido van Rossumd48f2521997-12-05 22:19:34 +0000675 Py_DECREF(v);
676 }
677 return NULL; /* Signal to Python that an Exception is Pending */
678}
679
680#endif /* OS2 */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000681
682/* POSIX generic methods */
683
Barry Warsaw53699e91996-12-10 23:23:01 +0000684static PyObject *
Fred Drake4d1e64b2002-04-15 19:40:07 +0000685posix_fildes(PyObject *fdobj, int (*func)(int))
686{
687 int fd;
688 int res;
689 fd = PyObject_AsFileDescriptor(fdobj);
690 if (fd < 0)
691 return NULL;
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +0000692 if (!_PyVerify_fd(fd))
693 return posix_error();
Fred Drake4d1e64b2002-04-15 19:40:07 +0000694 Py_BEGIN_ALLOW_THREADS
695 res = (*func)(fd);
696 Py_END_ALLOW_THREADS
697 if (res < 0)
698 return posix_error();
699 Py_INCREF(Py_None);
700 return Py_None;
701}
Guido van Rossum21142a01999-01-08 21:05:37 +0000702
703static PyObject *
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000704posix_1str(PyObject *args, char *format, int (*func)(const char*))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000705{
Mark Hammondef8b6542001-05-13 08:04:26 +0000706 char *path1 = NULL;
Guido van Rossumff4949e1992-08-05 19:58:53 +0000707 int res;
Tim Peters5aa91602002-01-30 05:46:57 +0000708 if (!PyArg_ParseTuple(args, format,
Mark Hammondef8b6542001-05-13 08:04:26 +0000709 Py_FileSystemDefaultEncoding, &path1))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000710 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +0000711 Py_BEGIN_ALLOW_THREADS
Guido van Rossumff4949e1992-08-05 19:58:53 +0000712 res = (*func)(path1);
Barry Warsaw53699e91996-12-10 23:23:01 +0000713 Py_END_ALLOW_THREADS
Guido van Rossumff4949e1992-08-05 19:58:53 +0000714 if (res < 0)
Mark Hammondef8b6542001-05-13 08:04:26 +0000715 return posix_error_with_allocated_filename(path1);
716 PyMem_Free(path1);
Barry Warsaw53699e91996-12-10 23:23:01 +0000717 Py_INCREF(Py_None);
718 return Py_None;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000719}
720
Barry Warsaw53699e91996-12-10 23:23:01 +0000721static PyObject *
Tim Peters11b23062003-04-23 02:39:17 +0000722posix_2str(PyObject *args,
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000723 char *format,
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000724 int (*func)(const char *, const char *))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000725{
Mark Hammondef8b6542001-05-13 08:04:26 +0000726 char *path1 = NULL, *path2 = NULL;
Guido van Rossumff4949e1992-08-05 19:58:53 +0000727 int res;
Mark Hammondef8b6542001-05-13 08:04:26 +0000728 if (!PyArg_ParseTuple(args, format,
Tim Peters5aa91602002-01-30 05:46:57 +0000729 Py_FileSystemDefaultEncoding, &path1,
Mark Hammondef8b6542001-05-13 08:04:26 +0000730 Py_FileSystemDefaultEncoding, &path2))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000731 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +0000732 Py_BEGIN_ALLOW_THREADS
Guido van Rossumff4949e1992-08-05 19:58:53 +0000733 res = (*func)(path1, path2);
Barry Warsaw53699e91996-12-10 23:23:01 +0000734 Py_END_ALLOW_THREADS
Mark Hammondef8b6542001-05-13 08:04:26 +0000735 PyMem_Free(path1);
736 PyMem_Free(path2);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000737 if (res != 0)
Barry Warsawd58d7641998-07-23 16:14:40 +0000738 /* XXX how to report both path1 and path2??? */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000739 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +0000740 Py_INCREF(Py_None);
741 return Py_None;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000742}
743
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +0000744#ifdef MS_WINDOWS
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000745static PyObject*
746win32_1str(PyObject* args, char* func,
747 char* format, BOOL (__stdcall *funcA)(LPCSTR),
748 char* wformat, BOOL (__stdcall *funcW)(LPWSTR))
749{
750 PyObject *uni;
751 char *ansi;
752 BOOL result;
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +0000753
754 if (!PyArg_ParseTuple(args, wformat, &uni))
755 PyErr_Clear();
756 else {
757 Py_BEGIN_ALLOW_THREADS
758 result = funcW(PyUnicode_AsUnicode(uni));
759 Py_END_ALLOW_THREADS
760 if (!result)
761 return win32_error_unicode(func, PyUnicode_AsUnicode(uni));
762 Py_INCREF(Py_None);
763 return Py_None;
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000764 }
765 if (!PyArg_ParseTuple(args, format, &ansi))
766 return NULL;
767 Py_BEGIN_ALLOW_THREADS
768 result = funcA(ansi);
769 Py_END_ALLOW_THREADS
770 if (!result)
771 return win32_error(func, ansi);
772 Py_INCREF(Py_None);
773 return Py_None;
774
775}
776
777/* This is a reimplementation of the C library's chdir function,
778 but one that produces Win32 errors instead of DOS error codes.
779 chdir is essentially a wrapper around SetCurrentDirectory; however,
780 it also needs to set "magic" environment variables indicating
781 the per-drive current directory, which are of the form =<drive>: */
Hirokazu Yamamoto61376402008-10-16 06:25:25 +0000782static BOOL __stdcall
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000783win32_chdir(LPCSTR path)
784{
785 char new_path[MAX_PATH+1];
786 int result;
787 char env[4] = "=x:";
788
789 if(!SetCurrentDirectoryA(path))
790 return FALSE;
791 result = GetCurrentDirectoryA(MAX_PATH+1, new_path);
792 if (!result)
793 return FALSE;
794 /* In the ANSI API, there should not be any paths longer
795 than MAX_PATH. */
796 assert(result <= MAX_PATH+1);
797 if (strncmp(new_path, "\\\\", 2) == 0 ||
798 strncmp(new_path, "//", 2) == 0)
799 /* UNC path, nothing to do. */
800 return TRUE;
801 env[1] = new_path[0];
802 return SetEnvironmentVariableA(env, new_path);
803}
804
805/* The Unicode version differs from the ANSI version
806 since the current directory might exceed MAX_PATH characters */
Hirokazu Yamamoto61376402008-10-16 06:25:25 +0000807static BOOL __stdcall
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000808win32_wchdir(LPCWSTR path)
809{
810 wchar_t _new_path[MAX_PATH+1], *new_path = _new_path;
811 int result;
812 wchar_t env[4] = L"=x:";
813
814 if(!SetCurrentDirectoryW(path))
815 return FALSE;
816 result = GetCurrentDirectoryW(MAX_PATH+1, new_path);
817 if (!result)
818 return FALSE;
819 if (result > MAX_PATH+1) {
Hirokazu Yamamoto10a018c2008-10-09 10:00:30 +0000820 new_path = malloc(result * sizeof(wchar_t));
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000821 if (!new_path) {
822 SetLastError(ERROR_OUTOFMEMORY);
823 return FALSE;
824 }
Hirokazu Yamamoto10a018c2008-10-09 10:00:30 +0000825 result = GetCurrentDirectoryW(result, new_path);
Hirokazu Yamamoto6c75a302008-10-09 10:11:21 +0000826 if (!result) {
827 free(new_path);
Hirokazu Yamamoto10a018c2008-10-09 10:00:30 +0000828 return FALSE;
Hirokazu Yamamoto6c75a302008-10-09 10:11:21 +0000829 }
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000830 }
831 if (wcsncmp(new_path, L"\\\\", 2) == 0 ||
832 wcsncmp(new_path, L"//", 2) == 0)
833 /* UNC path, nothing to do. */
834 return TRUE;
835 env[1] = new_path[0];
836 result = SetEnvironmentVariableW(env, new_path);
837 if (new_path != _new_path)
838 free(new_path);
839 return result;
840}
841#endif
842
Martin v. Löwis14694662006-02-03 12:54:16 +0000843#ifdef MS_WINDOWS
844/* The CRT of Windows has a number of flaws wrt. its stat() implementation:
845 - time stamps are restricted to second resolution
846 - file modification times suffer from forth-and-back conversions between
847 UTC and local time
848 Therefore, we implement our own stat, based on the Win32 API directly.
849*/
850#define HAVE_STAT_NSEC 1
851
852struct win32_stat{
853 int st_dev;
854 __int64 st_ino;
855 unsigned short st_mode;
856 int st_nlink;
857 int st_uid;
858 int st_gid;
859 int st_rdev;
860 __int64 st_size;
861 int st_atime;
862 int st_atime_nsec;
863 int st_mtime;
864 int st_mtime_nsec;
865 int st_ctime;
866 int st_ctime_nsec;
867};
868
869static __int64 secs_between_epochs = 11644473600; /* Seconds between 1.1.1601 and 1.1.1970 */
870
871static void
872FILE_TIME_to_time_t_nsec(FILETIME *in_ptr, int *time_out, int* nsec_out)
873{
Martin v. Löwis77c176d2006-05-12 17:22:04 +0000874 /* XXX endianness. Shouldn't matter, as all Windows implementations are little-endian */
875 /* Cannot simply cast and dereference in_ptr,
876 since it might not be aligned properly */
877 __int64 in;
878 memcpy(&in, in_ptr, sizeof(in));
Martin v. Löwis14694662006-02-03 12:54:16 +0000879 *nsec_out = (int)(in % 10000000) * 100; /* FILETIME is in units of 100 nsec. */
880 /* XXX Win32 supports time stamps past 2038; we currently don't */
881 *time_out = Py_SAFE_DOWNCAST((in / 10000000) - secs_between_epochs, __int64, int);
882}
883
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +0000884static void
885time_t_to_FILE_TIME(int time_in, int nsec_in, FILETIME *out_ptr)
886{
887 /* XXX endianness */
888 __int64 out;
889 out = time_in + secs_between_epochs;
Martin v. Löwisf43893a2006-10-09 20:44:25 +0000890 out = out * 10000000 + nsec_in / 100;
Martin v. Löwis77c176d2006-05-12 17:22:04 +0000891 memcpy(out_ptr, &out, sizeof(out));
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +0000892}
893
Martin v. Löwis14694662006-02-03 12:54:16 +0000894/* Below, we *know* that ugo+r is 0444 */
895#if _S_IREAD != 0400
896#error Unsupported C library
897#endif
898static int
899attributes_to_mode(DWORD attr)
900{
901 int m = 0;
902 if (attr & FILE_ATTRIBUTE_DIRECTORY)
903 m |= _S_IFDIR | 0111; /* IFEXEC for user,group,other */
904 else
905 m |= _S_IFREG;
906 if (attr & FILE_ATTRIBUTE_READONLY)
907 m |= 0444;
908 else
909 m |= 0666;
910 return m;
911}
912
913static int
914attribute_data_to_stat(WIN32_FILE_ATTRIBUTE_DATA *info, struct win32_stat *result)
915{
916 memset(result, 0, sizeof(*result));
917 result->st_mode = attributes_to_mode(info->dwFileAttributes);
918 result->st_size = (((__int64)info->nFileSizeHigh)<<32) + info->nFileSizeLow;
919 FILE_TIME_to_time_t_nsec(&info->ftCreationTime, &result->st_ctime, &result->st_ctime_nsec);
920 FILE_TIME_to_time_t_nsec(&info->ftLastWriteTime, &result->st_mtime, &result->st_mtime_nsec);
921 FILE_TIME_to_time_t_nsec(&info->ftLastAccessTime, &result->st_atime, &result->st_atime_nsec);
922
923 return 0;
924}
925
Martin v. Löwis3bf573f2007-04-04 18:30:36 +0000926static BOOL
927attributes_from_dir(LPCSTR pszFile, LPWIN32_FILE_ATTRIBUTE_DATA pfad)
928{
929 HANDLE hFindFile;
930 WIN32_FIND_DATAA FileData;
931 hFindFile = FindFirstFileA(pszFile, &FileData);
932 if (hFindFile == INVALID_HANDLE_VALUE)
933 return FALSE;
934 FindClose(hFindFile);
935 pfad->dwFileAttributes = FileData.dwFileAttributes;
936 pfad->ftCreationTime = FileData.ftCreationTime;
937 pfad->ftLastAccessTime = FileData.ftLastAccessTime;
938 pfad->ftLastWriteTime = FileData.ftLastWriteTime;
939 pfad->nFileSizeHigh = FileData.nFileSizeHigh;
940 pfad->nFileSizeLow = FileData.nFileSizeLow;
941 return TRUE;
942}
943
944static BOOL
945attributes_from_dir_w(LPCWSTR pszFile, LPWIN32_FILE_ATTRIBUTE_DATA pfad)
946{
947 HANDLE hFindFile;
948 WIN32_FIND_DATAW FileData;
949 hFindFile = FindFirstFileW(pszFile, &FileData);
950 if (hFindFile == INVALID_HANDLE_VALUE)
951 return FALSE;
952 FindClose(hFindFile);
953 pfad->dwFileAttributes = FileData.dwFileAttributes;
954 pfad->ftCreationTime = FileData.ftCreationTime;
955 pfad->ftLastAccessTime = FileData.ftLastAccessTime;
956 pfad->ftLastWriteTime = FileData.ftLastWriteTime;
957 pfad->nFileSizeHigh = FileData.nFileSizeHigh;
958 pfad->nFileSizeLow = FileData.nFileSizeLow;
959 return TRUE;
960}
961
Martin v. Löwis14694662006-02-03 12:54:16 +0000962static int
963win32_stat(const char* path, struct win32_stat *result)
964{
965 WIN32_FILE_ATTRIBUTE_DATA info;
966 int code;
967 char *dot;
Hirokazu Yamamotobcff47a2009-06-29 11:27:03 +0000968 if (!GetFileAttributesExA(path, GetFileExInfoStandard, &info)) {
Martin v. Löwis3bf573f2007-04-04 18:30:36 +0000969 if (GetLastError() != ERROR_SHARING_VIOLATION) {
970 /* Protocol violation: we explicitly clear errno, instead of
971 setting it to a POSIX error. Callers should use GetLastError. */
972 errno = 0;
973 return -1;
974 } else {
975 /* Could not get attributes on open file. Fall back to
976 reading the directory. */
977 if (!attributes_from_dir(path, &info)) {
978 /* Very strange. This should not fail now */
979 errno = 0;
980 return -1;
981 }
982 }
Martin v. Löwis14694662006-02-03 12:54:16 +0000983 }
984 code = attribute_data_to_stat(&info, result);
985 if (code != 0)
986 return code;
987 /* Set S_IFEXEC if it is an .exe, .bat, ... */
988 dot = strrchr(path, '.');
989 if (dot) {
990 if (stricmp(dot, ".bat") == 0 ||
991 stricmp(dot, ".cmd") == 0 ||
992 stricmp(dot, ".exe") == 0 ||
993 stricmp(dot, ".com") == 0)
994 result->st_mode |= 0111;
995 }
996 return code;
997}
998
999static int
1000win32_wstat(const wchar_t* path, struct win32_stat *result)
1001{
1002 int code;
1003 const wchar_t *dot;
1004 WIN32_FILE_ATTRIBUTE_DATA info;
Hirokazu Yamamotobcff47a2009-06-29 11:27:03 +00001005 if (!GetFileAttributesExW(path, GetFileExInfoStandard, &info)) {
Martin v. Löwis3bf573f2007-04-04 18:30:36 +00001006 if (GetLastError() != ERROR_SHARING_VIOLATION) {
1007 /* Protocol violation: we explicitly clear errno, instead of
1008 setting it to a POSIX error. Callers should use GetLastError. */
1009 errno = 0;
1010 return -1;
1011 } else {
1012 /* Could not get attributes on open file. Fall back to
1013 reading the directory. */
1014 if (!attributes_from_dir_w(path, &info)) {
1015 /* Very strange. This should not fail now */
1016 errno = 0;
1017 return -1;
1018 }
1019 }
Martin v. Löwis14694662006-02-03 12:54:16 +00001020 }
1021 code = attribute_data_to_stat(&info, result);
1022 if (code < 0)
1023 return code;
1024 /* Set IFEXEC if it is an .exe, .bat, ... */
1025 dot = wcsrchr(path, '.');
1026 if (dot) {
1027 if (_wcsicmp(dot, L".bat") == 0 ||
1028 _wcsicmp(dot, L".cmd") == 0 ||
1029 _wcsicmp(dot, L".exe") == 0 ||
1030 _wcsicmp(dot, L".com") == 0)
1031 result->st_mode |= 0111;
1032 }
1033 return code;
1034}
1035
1036static int
1037win32_fstat(int file_number, struct win32_stat *result)
1038{
1039 BY_HANDLE_FILE_INFORMATION info;
1040 HANDLE h;
1041 int type;
1042
1043 h = (HANDLE)_get_osfhandle(file_number);
1044
1045 /* Protocol violation: we explicitly clear errno, instead of
1046 setting it to a POSIX error. Callers should use GetLastError. */
1047 errno = 0;
1048
1049 if (h == INVALID_HANDLE_VALUE) {
1050 /* This is really a C library error (invalid file handle).
1051 We set the Win32 error to the closes one matching. */
1052 SetLastError(ERROR_INVALID_HANDLE);
1053 return -1;
1054 }
1055 memset(result, 0, sizeof(*result));
1056
1057 type = GetFileType(h);
1058 if (type == FILE_TYPE_UNKNOWN) {
1059 DWORD error = GetLastError();
1060 if (error != 0) {
1061 return -1;
1062 }
1063 /* else: valid but unknown file */
1064 }
1065
1066 if (type != FILE_TYPE_DISK) {
1067 if (type == FILE_TYPE_CHAR)
1068 result->st_mode = _S_IFCHR;
1069 else if (type == FILE_TYPE_PIPE)
1070 result->st_mode = _S_IFIFO;
1071 return 0;
1072 }
1073
1074 if (!GetFileInformationByHandle(h, &info)) {
1075 return -1;
1076 }
1077
1078 /* similar to stat() */
1079 result->st_mode = attributes_to_mode(info.dwFileAttributes);
1080 result->st_size = (((__int64)info.nFileSizeHigh)<<32) + info.nFileSizeLow;
1081 FILE_TIME_to_time_t_nsec(&info.ftCreationTime, &result->st_ctime, &result->st_ctime_nsec);
1082 FILE_TIME_to_time_t_nsec(&info.ftLastWriteTime, &result->st_mtime, &result->st_mtime_nsec);
1083 FILE_TIME_to_time_t_nsec(&info.ftLastAccessTime, &result->st_atime, &result->st_atime_nsec);
1084 /* specific to fstat() */
1085 result->st_nlink = info.nNumberOfLinks;
1086 result->st_ino = (((__int64)info.nFileIndexHigh)<<32) + info.nFileIndexLow;
1087 return 0;
1088}
1089
1090#endif /* MS_WINDOWS */
1091
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001092PyDoc_STRVAR(stat_result__doc__,
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001093"stat_result: Result from stat or lstat.\n\n\
1094This object may be accessed either as a tuple of\n\
Fred Drakef7ce04d2002-06-20 18:31:21 +00001095 (mode, ino, dev, nlink, uid, gid, size, atime, mtime, ctime)\n\
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001096or via the attributes st_mode, st_ino, st_dev, st_nlink, st_uid, and so on.\n\
1097\n\
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001098Posix/windows: If your platform supports st_blksize, st_blocks, st_rdev,\n\
1099or st_flags, they are available as attributes only.\n\
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001100\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001101See os.stat for more information.");
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001102
1103static PyStructSequence_Field stat_result_fields[] = {
1104 {"st_mode", "protection bits"},
1105 {"st_ino", "inode"},
1106 {"st_dev", "device"},
1107 {"st_nlink", "number of hard links"},
1108 {"st_uid", "user ID of owner"},
1109 {"st_gid", "group ID of owner"},
1110 {"st_size", "total size, in bytes"},
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001111 /* The NULL is replaced with PyStructSequence_UnnamedField later. */
1112 {NULL, "integer time of last access"},
1113 {NULL, "integer time of last modification"},
1114 {NULL, "integer time of last change"},
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001115 {"st_atime", "time of last access"},
1116 {"st_mtime", "time of last modification"},
1117 {"st_ctime", "time of last change"},
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001118#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001119 {"st_blksize", "blocksize for filesystem I/O"},
1120#endif
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001121#ifdef HAVE_STRUCT_STAT_ST_BLOCKS
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001122 {"st_blocks", "number of blocks allocated"},
1123#endif
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001124#ifdef HAVE_STRUCT_STAT_ST_RDEV
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001125 {"st_rdev", "device type (if inode device)"},
1126#endif
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001127#ifdef HAVE_STRUCT_STAT_ST_FLAGS
1128 {"st_flags", "user defined flags for file"},
1129#endif
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001130#ifdef HAVE_STRUCT_STAT_ST_GEN
1131 {"st_gen", "generation number"},
1132#endif
1133#ifdef HAVE_STRUCT_STAT_ST_BIRTHTIME
1134 {"st_birthtime", "time of creation"},
1135#endif
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001136 {0}
1137};
1138
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001139#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001140#define ST_BLKSIZE_IDX 13
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001141#else
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001142#define ST_BLKSIZE_IDX 12
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001143#endif
1144
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001145#ifdef HAVE_STRUCT_STAT_ST_BLOCKS
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001146#define ST_BLOCKS_IDX (ST_BLKSIZE_IDX+1)
1147#else
1148#define ST_BLOCKS_IDX ST_BLKSIZE_IDX
1149#endif
1150
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001151#ifdef HAVE_STRUCT_STAT_ST_RDEV
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001152#define ST_RDEV_IDX (ST_BLOCKS_IDX+1)
1153#else
1154#define ST_RDEV_IDX ST_BLOCKS_IDX
1155#endif
1156
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001157#ifdef HAVE_STRUCT_STAT_ST_FLAGS
1158#define ST_FLAGS_IDX (ST_RDEV_IDX+1)
1159#else
1160#define ST_FLAGS_IDX ST_RDEV_IDX
1161#endif
1162
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001163#ifdef HAVE_STRUCT_STAT_ST_GEN
Martin v. Löwisf09582e2005-08-14 21:42:34 +00001164#define ST_GEN_IDX (ST_FLAGS_IDX+1)
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001165#else
Martin v. Löwisf09582e2005-08-14 21:42:34 +00001166#define ST_GEN_IDX ST_FLAGS_IDX
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001167#endif
1168
1169#ifdef HAVE_STRUCT_STAT_ST_BIRTHTIME
1170#define ST_BIRTHTIME_IDX (ST_GEN_IDX+1)
1171#else
1172#define ST_BIRTHTIME_IDX ST_GEN_IDX
1173#endif
1174
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001175static PyStructSequence_Desc stat_result_desc = {
1176 "stat_result", /* name */
1177 stat_result__doc__, /* doc */
1178 stat_result_fields,
1179 10
1180};
1181
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001182PyDoc_STRVAR(statvfs_result__doc__,
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001183"statvfs_result: Result from statvfs or fstatvfs.\n\n\
1184This object may be accessed either as a tuple of\n\
Fred Drakef7ce04d2002-06-20 18:31:21 +00001185 (bsize, frsize, blocks, bfree, bavail, files, ffree, favail, flag, namemax),\n\
Guido van Rossuma4dc73e2001-10-18 20:53:15 +00001186or via the attributes f_bsize, f_frsize, f_blocks, f_bfree, and so on.\n\
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001187\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001188See os.statvfs for more information.");
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001189
1190static PyStructSequence_Field statvfs_result_fields[] = {
1191 {"f_bsize", },
1192 {"f_frsize", },
1193 {"f_blocks", },
1194 {"f_bfree", },
1195 {"f_bavail", },
1196 {"f_files", },
1197 {"f_ffree", },
1198 {"f_favail", },
1199 {"f_flag", },
1200 {"f_namemax",},
1201 {0}
1202};
1203
1204static PyStructSequence_Desc statvfs_result_desc = {
1205 "statvfs_result", /* name */
1206 statvfs_result__doc__, /* doc */
1207 statvfs_result_fields,
1208 10
1209};
1210
Martin v. Löwis19ab6c92006-04-16 18:55:50 +00001211static int initialized;
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001212static PyTypeObject StatResultType;
1213static PyTypeObject StatVFSResultType;
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001214static newfunc structseq_new;
1215
1216static PyObject *
1217statresult_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
1218{
1219 PyStructSequence *result;
1220 int i;
1221
1222 result = (PyStructSequence*)structseq_new(type, args, kwds);
1223 if (!result)
1224 return NULL;
1225 /* If we have been initialized from a tuple,
1226 st_?time might be set to None. Initialize it
1227 from the int slots. */
1228 for (i = 7; i <= 9; i++) {
1229 if (result->ob_item[i+3] == Py_None) {
1230 Py_DECREF(Py_None);
1231 Py_INCREF(result->ob_item[i]);
1232 result->ob_item[i+3] = result->ob_item[i];
1233 }
1234 }
1235 return (PyObject*)result;
1236}
1237
1238
1239
1240/* If true, st_?time is float. */
Martin v. Löwisfe33d0b2005-01-16 08:57:39 +00001241static int _stat_float_times = 1;
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001242
1243PyDoc_STRVAR(stat_float_times__doc__,
1244"stat_float_times([newval]) -> oldval\n\n\
1245Determine whether os.[lf]stat represents time stamps as float objects.\n\
1246If newval is True, future calls to stat() return floats, if it is False,\n\
1247future calls return ints. \n\
1248If newval is omitted, return the current setting.\n");
1249
1250static PyObject*
1251stat_float_times(PyObject* self, PyObject *args)
1252{
1253 int newval = -1;
1254 if (!PyArg_ParseTuple(args, "|i:stat_float_times", &newval))
1255 return NULL;
1256 if (newval == -1)
1257 /* Return old value */
1258 return PyBool_FromLong(_stat_float_times);
1259 _stat_float_times = newval;
1260 Py_INCREF(Py_None);
1261 return Py_None;
1262}
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001263
Martin v. Löwis94717ed2002-09-09 14:24:16 +00001264static void
1265fill_time(PyObject *v, int index, time_t sec, unsigned long nsec)
1266{
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001267 PyObject *fval,*ival;
1268#if SIZEOF_TIME_T > SIZEOF_LONG
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00001269 ival = PyLong_FromLongLong((PY_LONG_LONG)sec);
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001270#else
1271 ival = PyInt_FromLong((long)sec);
1272#endif
Neal Norwitze0a81af2006-08-12 01:50:38 +00001273 if (!ival)
1274 return;
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001275 if (_stat_float_times) {
1276 fval = PyFloat_FromDouble(sec + 1e-9*nsec);
1277 } else {
1278 fval = ival;
1279 Py_INCREF(fval);
1280 }
1281 PyStructSequence_SET_ITEM(v, index, ival);
1282 PyStructSequence_SET_ITEM(v, index+3, fval);
Martin v. Löwis94717ed2002-09-09 14:24:16 +00001283}
1284
Tim Peters5aa91602002-01-30 05:46:57 +00001285/* pack a system stat C structure into the Python stat tuple
Fred Drake699f3522000-06-29 21:12:41 +00001286 (used by posix_stat() and posix_fstat()) */
1287static PyObject*
Martin v. Löwis14694662006-02-03 12:54:16 +00001288_pystat_fromstructstat(STRUCT_STAT *st)
Fred Drake699f3522000-06-29 21:12:41 +00001289{
Martin v. Löwis94717ed2002-09-09 14:24:16 +00001290 unsigned long ansec, mnsec, cnsec;
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001291 PyObject *v = PyStructSequence_New(&StatResultType);
Fred Drake699f3522000-06-29 21:12:41 +00001292 if (v == NULL)
1293 return NULL;
1294
Martin v. Löwis14694662006-02-03 12:54:16 +00001295 PyStructSequence_SET_ITEM(v, 0, PyInt_FromLong((long)st->st_mode));
Fred Drake699f3522000-06-29 21:12:41 +00001296#ifdef HAVE_LARGEFILE_SUPPORT
Tim Peters5aa91602002-01-30 05:46:57 +00001297 PyStructSequence_SET_ITEM(v, 1,
Martin v. Löwis14694662006-02-03 12:54:16 +00001298 PyLong_FromLongLong((PY_LONG_LONG)st->st_ino));
Fred Drake699f3522000-06-29 21:12:41 +00001299#else
Martin v. Löwis14694662006-02-03 12:54:16 +00001300 PyStructSequence_SET_ITEM(v, 1, PyInt_FromLong((long)st->st_ino));
Fred Drake699f3522000-06-29 21:12:41 +00001301#endif
1302#if defined(HAVE_LONG_LONG) && !defined(MS_WINDOWS)
Tim Peters5aa91602002-01-30 05:46:57 +00001303 PyStructSequence_SET_ITEM(v, 2,
Martin v. Löwis14694662006-02-03 12:54:16 +00001304 PyLong_FromLongLong((PY_LONG_LONG)st->st_dev));
Fred Drake699f3522000-06-29 21:12:41 +00001305#else
Martin v. Löwis14694662006-02-03 12:54:16 +00001306 PyStructSequence_SET_ITEM(v, 2, PyInt_FromLong((long)st->st_dev));
Fred Drake699f3522000-06-29 21:12:41 +00001307#endif
Martin v. Löwis14694662006-02-03 12:54:16 +00001308 PyStructSequence_SET_ITEM(v, 3, PyInt_FromLong((long)st->st_nlink));
1309 PyStructSequence_SET_ITEM(v, 4, PyInt_FromLong((long)st->st_uid));
1310 PyStructSequence_SET_ITEM(v, 5, PyInt_FromLong((long)st->st_gid));
Fred Drake699f3522000-06-29 21:12:41 +00001311#ifdef HAVE_LARGEFILE_SUPPORT
Tim Peters5aa91602002-01-30 05:46:57 +00001312 PyStructSequence_SET_ITEM(v, 6,
Martin v. Löwis14694662006-02-03 12:54:16 +00001313 PyLong_FromLongLong((PY_LONG_LONG)st->st_size));
Fred Drake699f3522000-06-29 21:12:41 +00001314#else
Martin v. Löwis14694662006-02-03 12:54:16 +00001315 PyStructSequence_SET_ITEM(v, 6, PyInt_FromLong(st->st_size));
Fred Drake699f3522000-06-29 21:12:41 +00001316#endif
Martin v. Löwis94717ed2002-09-09 14:24:16 +00001317
Martin v. Löwis14694662006-02-03 12:54:16 +00001318#if defined(HAVE_STAT_TV_NSEC)
1319 ansec = st->st_atim.tv_nsec;
1320 mnsec = st->st_mtim.tv_nsec;
1321 cnsec = st->st_ctim.tv_nsec;
1322#elif defined(HAVE_STAT_TV_NSEC2)
1323 ansec = st->st_atimespec.tv_nsec;
1324 mnsec = st->st_mtimespec.tv_nsec;
1325 cnsec = st->st_ctimespec.tv_nsec;
1326#elif defined(HAVE_STAT_NSEC)
1327 ansec = st->st_atime_nsec;
1328 mnsec = st->st_mtime_nsec;
1329 cnsec = st->st_ctime_nsec;
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001330#else
Martin v. Löwis94717ed2002-09-09 14:24:16 +00001331 ansec = mnsec = cnsec = 0;
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001332#endif
Martin v. Löwis14694662006-02-03 12:54:16 +00001333 fill_time(v, 7, st->st_atime, ansec);
1334 fill_time(v, 8, st->st_mtime, mnsec);
1335 fill_time(v, 9, st->st_ctime, cnsec);
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001336
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001337#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
Tim Peters5aa91602002-01-30 05:46:57 +00001338 PyStructSequence_SET_ITEM(v, ST_BLKSIZE_IDX,
Martin v. Löwis14694662006-02-03 12:54:16 +00001339 PyInt_FromLong((long)st->st_blksize));
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001340#endif
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001341#ifdef HAVE_STRUCT_STAT_ST_BLOCKS
Tim Peters5aa91602002-01-30 05:46:57 +00001342 PyStructSequence_SET_ITEM(v, ST_BLOCKS_IDX,
Martin v. Löwis14694662006-02-03 12:54:16 +00001343 PyInt_FromLong((long)st->st_blocks));
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001344#endif
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001345#ifdef HAVE_STRUCT_STAT_ST_RDEV
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001346 PyStructSequence_SET_ITEM(v, ST_RDEV_IDX,
Martin v. Löwis14694662006-02-03 12:54:16 +00001347 PyInt_FromLong((long)st->st_rdev));
Fred Drake699f3522000-06-29 21:12:41 +00001348#endif
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001349#ifdef HAVE_STRUCT_STAT_ST_GEN
1350 PyStructSequence_SET_ITEM(v, ST_GEN_IDX,
Martin v. Löwis14694662006-02-03 12:54:16 +00001351 PyInt_FromLong((long)st->st_gen));
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001352#endif
1353#ifdef HAVE_STRUCT_STAT_ST_BIRTHTIME
1354 {
1355 PyObject *val;
1356 unsigned long bsec,bnsec;
Martin v. Löwis14694662006-02-03 12:54:16 +00001357 bsec = (long)st->st_birthtime;
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001358#ifdef HAVE_STAT_TV_NSEC2
Hye-Shik Changd69e0342006-02-19 16:22:22 +00001359 bnsec = st->st_birthtimespec.tv_nsec;
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001360#else
1361 bnsec = 0;
1362#endif
1363 if (_stat_float_times) {
1364 val = PyFloat_FromDouble(bsec + 1e-9*bnsec);
1365 } else {
1366 val = PyInt_FromLong((long)bsec);
1367 }
1368 PyStructSequence_SET_ITEM(v, ST_BIRTHTIME_IDX,
1369 val);
1370 }
1371#endif
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001372#ifdef HAVE_STRUCT_STAT_ST_FLAGS
1373 PyStructSequence_SET_ITEM(v, ST_FLAGS_IDX,
Martin v. Löwis14694662006-02-03 12:54:16 +00001374 PyInt_FromLong((long)st->st_flags));
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001375#endif
Fred Drake699f3522000-06-29 21:12:41 +00001376
1377 if (PyErr_Occurred()) {
1378 Py_DECREF(v);
1379 return NULL;
1380 }
1381
1382 return v;
1383}
1384
Martin v. Löwisd8948722004-06-02 09:57:56 +00001385#ifdef MS_WINDOWS
1386
1387/* IsUNCRoot -- test whether the supplied path is of the form \\SERVER\SHARE\,
1388 where / can be used in place of \ and the trailing slash is optional.
1389 Both SERVER and SHARE must have at least one character.
1390*/
1391
1392#define ISSLASHA(c) ((c) == '\\' || (c) == '/')
1393#define ISSLASHW(c) ((c) == L'\\' || (c) == L'/')
Kristján Valur Jónssondbeaa692006-06-09 16:28:01 +00001394#ifndef ARRAYSIZE
Martin v. Löwisd8948722004-06-02 09:57:56 +00001395#define ARRAYSIZE(a) (sizeof(a) / sizeof(a[0]))
Kristján Valur Jónssondbeaa692006-06-09 16:28:01 +00001396#endif
Martin v. Löwisd8948722004-06-02 09:57:56 +00001397
Tim Peters4ad82172004-08-30 17:02:04 +00001398static BOOL
Martin v. Löwisd8948722004-06-02 09:57:56 +00001399IsUNCRootA(char *path, int pathlen)
1400{
1401 #define ISSLASH ISSLASHA
1402
1403 int i, share;
1404
1405 if (pathlen < 5 || !ISSLASH(path[0]) || !ISSLASH(path[1]))
1406 /* minimum UNCRoot is \\x\y */
1407 return FALSE;
1408 for (i = 2; i < pathlen ; i++)
1409 if (ISSLASH(path[i])) break;
1410 if (i == 2 || i == pathlen)
1411 /* do not allow \\\SHARE or \\SERVER */
1412 return FALSE;
1413 share = i+1;
1414 for (i = share; i < pathlen; i++)
1415 if (ISSLASH(path[i])) break;
1416 return (i != share && (i == pathlen || i == pathlen-1));
1417
1418 #undef ISSLASH
1419}
1420
Tim Peters4ad82172004-08-30 17:02:04 +00001421static BOOL
Martin v. Löwisd8948722004-06-02 09:57:56 +00001422IsUNCRootW(Py_UNICODE *path, int pathlen)
1423{
1424 #define ISSLASH ISSLASHW
1425
1426 int i, share;
1427
1428 if (pathlen < 5 || !ISSLASH(path[0]) || !ISSLASH(path[1]))
1429 /* minimum UNCRoot is \\x\y */
1430 return FALSE;
1431 for (i = 2; i < pathlen ; i++)
1432 if (ISSLASH(path[i])) break;
1433 if (i == 2 || i == pathlen)
1434 /* do not allow \\\SHARE or \\SERVER */
1435 return FALSE;
1436 share = i+1;
1437 for (i = share; i < pathlen; i++)
1438 if (ISSLASH(path[i])) break;
1439 return (i != share && (i == pathlen || i == pathlen-1));
1440
1441 #undef ISSLASH
1442}
Martin v. Löwisd8948722004-06-02 09:57:56 +00001443#endif /* MS_WINDOWS */
1444
Barry Warsaw53699e91996-12-10 23:23:01 +00001445static PyObject *
Tim Peters11b23062003-04-23 02:39:17 +00001446posix_do_stat(PyObject *self, PyObject *args,
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001447 char *format,
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001448#ifdef __VMS
1449 int (*statfunc)(const char *, STRUCT_STAT *, ...),
1450#else
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001451 int (*statfunc)(const char *, STRUCT_STAT *),
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001452#endif
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001453 char *wformat,
1454 int (*wstatfunc)(const Py_UNICODE *, STRUCT_STAT *))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001455{
Fred Drake699f3522000-06-29 21:12:41 +00001456 STRUCT_STAT st;
Tim Peters500bd032001-12-19 19:05:01 +00001457 char *path = NULL; /* pass this to stat; do not free() it */
1458 char *pathfree = NULL; /* this memory must be free'd */
Guido van Rossumff4949e1992-08-05 19:58:53 +00001459 int res;
Martin v. Löwis14694662006-02-03 12:54:16 +00001460 PyObject *result;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001461
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00001462#ifdef MS_WINDOWS
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00001463 PyUnicodeObject *po;
1464 if (PyArg_ParseTuple(args, wformat, &po)) {
1465 Py_UNICODE *wpath = PyUnicode_AS_UNICODE(po);
Martin v. Löwis14694662006-02-03 12:54:16 +00001466
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00001467 Py_BEGIN_ALLOW_THREADS
1468 /* PyUnicode_AS_UNICODE result OK without
1469 thread lock as it is a simple dereference. */
1470 res = wstatfunc(wpath, &st);
1471 Py_END_ALLOW_THREADS
Martin v. Löwis14694662006-02-03 12:54:16 +00001472
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00001473 if (res != 0)
1474 return win32_error_unicode("stat", wpath);
1475 return _pystat_fromstructstat(&st);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001476 }
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00001477 /* Drop the argument parsing error as narrow strings
1478 are also valid. */
1479 PyErr_Clear();
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001480#endif
1481
Tim Peters5aa91602002-01-30 05:46:57 +00001482 if (!PyArg_ParseTuple(args, format,
Mark Hammondef8b6542001-05-13 08:04:26 +00001483 Py_FileSystemDefaultEncoding, &path))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001484 return NULL;
Tim Peters500bd032001-12-19 19:05:01 +00001485 pathfree = path;
Guido van Rossumace88ae2000-04-21 18:54:45 +00001486
Barry Warsaw53699e91996-12-10 23:23:01 +00001487 Py_BEGIN_ALLOW_THREADS
Guido van Rossumff4949e1992-08-05 19:58:53 +00001488 res = (*statfunc)(path, &st);
Barry Warsaw53699e91996-12-10 23:23:01 +00001489 Py_END_ALLOW_THREADS
Martin v. Löwis14694662006-02-03 12:54:16 +00001490
1491 if (res != 0) {
1492#ifdef MS_WINDOWS
1493 result = win32_error("stat", pathfree);
1494#else
1495 result = posix_error_with_filename(pathfree);
1496#endif
1497 }
1498 else
1499 result = _pystat_fromstructstat(&st);
Fred Drake699f3522000-06-29 21:12:41 +00001500
Tim Peters500bd032001-12-19 19:05:01 +00001501 PyMem_Free(pathfree);
Martin v. Löwis14694662006-02-03 12:54:16 +00001502 return result;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001503}
1504
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001505/* POSIX methods */
1506
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001507PyDoc_STRVAR(posix_access__doc__,
Georg Brandl7a284472007-01-27 19:38:50 +00001508"access(path, mode) -> True if granted, False otherwise\n\n\
Guido van Rossuma0b90752002-06-18 16:22:43 +00001509Use the real uid/gid to test for access to a path. Note that most\n\
1510operations will use the effective uid/gid, therefore this routine can\n\
1511be used in a suid/sgid environment to test if the invoking user has the\n\
1512specified access to the path. The mode argument can be F_OK to test\n\
1513existence, or the inclusive-OR of R_OK, W_OK, and X_OK.");
Guido van Rossum94f6f721999-01-06 18:42:14 +00001514
1515static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00001516posix_access(PyObject *self, PyObject *args)
Guido van Rossum94f6f721999-01-06 18:42:14 +00001517{
Guido van Rossum015f22a1999-01-06 22:52:38 +00001518 char *path;
1519 int mode;
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001520
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00001521#ifdef MS_WINDOWS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001522 DWORD attr;
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00001523 PyUnicodeObject *po;
1524 if (PyArg_ParseTuple(args, "Ui:access", &po, &mode)) {
1525 Py_BEGIN_ALLOW_THREADS
1526 /* PyUnicode_AS_UNICODE OK without thread lock as
1527 it is a simple dereference. */
1528 attr = GetFileAttributesW(PyUnicode_AS_UNICODE(po));
1529 Py_END_ALLOW_THREADS
1530 goto finish;
Martin v. Löwis1b699a52003-09-12 16:25:38 +00001531 }
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00001532 /* Drop the argument parsing error as narrow strings
1533 are also valid. */
1534 PyErr_Clear();
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001535 if (!PyArg_ParseTuple(args, "eti:access",
1536 Py_FileSystemDefaultEncoding, &path, &mode))
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00001537 return NULL;
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001538 Py_BEGIN_ALLOW_THREADS
1539 attr = GetFileAttributesA(path);
1540 Py_END_ALLOW_THREADS
1541 PyMem_Free(path);
1542finish:
1543 if (attr == 0xFFFFFFFF)
1544 /* File does not exist, or cannot read attributes */
1545 return PyBool_FromLong(0);
1546 /* Access is possible if either write access wasn't requested, or
Martin v. Löwis7b3cc062007-12-03 23:09:04 +00001547 the file isn't read-only, or if it's a directory, as there are
1548 no read-only directories on Windows. */
1549 return PyBool_FromLong(!(mode & 2)
1550 || !(attr & FILE_ATTRIBUTE_READONLY)
1551 || (attr & FILE_ATTRIBUTE_DIRECTORY));
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00001552#else /* MS_WINDOWS */
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001553 int res;
Martin v. Löwisb60ae992005-03-08 09:10:29 +00001554 if (!PyArg_ParseTuple(args, "eti:access",
1555 Py_FileSystemDefaultEncoding, &path, &mode))
Guido van Rossum015f22a1999-01-06 22:52:38 +00001556 return NULL;
1557 Py_BEGIN_ALLOW_THREADS
1558 res = access(path, mode);
1559 Py_END_ALLOW_THREADS
Neal Norwitz24b3c222005-09-19 06:43:44 +00001560 PyMem_Free(path);
Neal Norwitz3efd0a12005-09-19 06:45:53 +00001561 return PyBool_FromLong(res == 0);
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00001562#endif /* MS_WINDOWS */
Guido van Rossum94f6f721999-01-06 18:42:14 +00001563}
1564
Guido van Rossumd371ff11999-01-25 16:12:23 +00001565#ifndef F_OK
1566#define F_OK 0
1567#endif
1568#ifndef R_OK
1569#define R_OK 4
1570#endif
1571#ifndef W_OK
1572#define W_OK 2
1573#endif
1574#ifndef X_OK
1575#define X_OK 1
1576#endif
1577
1578#ifdef HAVE_TTYNAME
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001579PyDoc_STRVAR(posix_ttyname__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001580"ttyname(fd) -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001581Return the name of the terminal device connected to 'fd'.");
Guido van Rossum94f6f721999-01-06 18:42:14 +00001582
1583static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00001584posix_ttyname(PyObject *self, PyObject *args)
Guido van Rossum94f6f721999-01-06 18:42:14 +00001585{
Guido van Rossum94f6f721999-01-06 18:42:14 +00001586 int id;
1587 char *ret;
1588
Fred Drake5ab8eaf1999-12-09 21:13:07 +00001589 if (!PyArg_ParseTuple(args, "i:ttyname", &id))
Guido van Rossum94f6f721999-01-06 18:42:14 +00001590 return NULL;
1591
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001592#if defined(__VMS)
Martin v. Löwisc16f3bd2003-05-03 09:14:54 +00001593 /* file descriptor 0 only, the default input device (stdin) */
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001594 if (id == 0) {
1595 ret = ttyname();
1596 }
1597 else {
1598 ret = NULL;
1599 }
1600#else
Guido van Rossum94f6f721999-01-06 18:42:14 +00001601 ret = ttyname(id);
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001602#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00001603 if (ret == NULL)
Neal Norwitz3efd0a12005-09-19 06:45:53 +00001604 return posix_error();
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001605 return PyString_FromString(ret);
Guido van Rossum94f6f721999-01-06 18:42:14 +00001606}
Guido van Rossumd371ff11999-01-25 16:12:23 +00001607#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00001608
Fred Drake5ab8eaf1999-12-09 21:13:07 +00001609#ifdef HAVE_CTERMID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001610PyDoc_STRVAR(posix_ctermid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001611"ctermid() -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001612Return the name of the controlling terminal for this process.");
Fred Drake5ab8eaf1999-12-09 21:13:07 +00001613
1614static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00001615posix_ctermid(PyObject *self, PyObject *noargs)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00001616{
1617 char *ret;
1618 char buffer[L_ctermid];
1619
Greg Wardb48bc172000-03-01 21:51:56 +00001620#ifdef USE_CTERMID_R
Fred Drake5ab8eaf1999-12-09 21:13:07 +00001621 ret = ctermid_r(buffer);
1622#else
1623 ret = ctermid(buffer);
1624#endif
1625 if (ret == NULL)
Neal Norwitz3efd0a12005-09-19 06:45:53 +00001626 return posix_error();
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001627 return PyString_FromString(buffer);
Fred Drake5ab8eaf1999-12-09 21:13:07 +00001628}
1629#endif
1630
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001631PyDoc_STRVAR(posix_chdir__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001632"chdir(path)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001633Change the current working directory to the specified path.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001634
Barry Warsaw53699e91996-12-10 23:23:01 +00001635static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00001636posix_chdir(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001637{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001638#ifdef MS_WINDOWS
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00001639 return win32_1str(args, "chdir", "s:chdir", win32_chdir, "U:chdir", win32_wchdir);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001640#elif defined(PYOS_OS2) && defined(PYCC_GCC)
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00001641 return posix_1str(args, "et:chdir", _chdir2);
Martin v. Löwis7a924e62003-03-05 14:15:21 +00001642#elif defined(__VMS)
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00001643 return posix_1str(args, "et:chdir", (int (*)(const char *))chdir);
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001644#else
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00001645 return posix_1str(args, "et:chdir", chdir);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00001646#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001647}
1648
Fred Drake4d1e64b2002-04-15 19:40:07 +00001649#ifdef HAVE_FCHDIR
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001650PyDoc_STRVAR(posix_fchdir__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001651"fchdir(fildes)\n\n\
Fred Drake4d1e64b2002-04-15 19:40:07 +00001652Change to the directory of the given file descriptor. fildes must be\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001653opened on a directory, not a file.");
Fred Drake4d1e64b2002-04-15 19:40:07 +00001654
1655static PyObject *
1656posix_fchdir(PyObject *self, PyObject *fdobj)
1657{
1658 return posix_fildes(fdobj, fchdir);
1659}
1660#endif /* HAVE_FCHDIR */
1661
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001662
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001663PyDoc_STRVAR(posix_chmod__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001664"chmod(path, mode)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001665Change the access permissions of a file.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001666
Barry Warsaw53699e91996-12-10 23:23:01 +00001667static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00001668posix_chmod(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001669{
Mark Hammondef8b6542001-05-13 08:04:26 +00001670 char *path = NULL;
Guido van Rossumffd15f52000-03-31 00:47:28 +00001671 int i;
1672 int res;
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00001673#ifdef MS_WINDOWS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001674 DWORD attr;
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00001675 PyUnicodeObject *po;
1676 if (PyArg_ParseTuple(args, "Ui|:chmod", &po, &i)) {
1677 Py_BEGIN_ALLOW_THREADS
1678 attr = GetFileAttributesW(PyUnicode_AS_UNICODE(po));
1679 if (attr != 0xFFFFFFFF) {
1680 if (i & _S_IWRITE)
1681 attr &= ~FILE_ATTRIBUTE_READONLY;
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001682 else
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00001683 attr |= FILE_ATTRIBUTE_READONLY;
1684 res = SetFileAttributesW(PyUnicode_AS_UNICODE(po), attr);
Mark Hammond817c9292003-12-03 01:22:38 +00001685 }
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00001686 else
1687 res = 0;
1688 Py_END_ALLOW_THREADS
1689 if (!res)
1690 return win32_error_unicode("chmod",
1691 PyUnicode_AS_UNICODE(po));
1692 Py_INCREF(Py_None);
1693 return Py_None;
Mark Hammond817c9292003-12-03 01:22:38 +00001694 }
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00001695 /* Drop the argument parsing error as narrow strings
1696 are also valid. */
1697 PyErr_Clear();
1698
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001699 if (!PyArg_ParseTuple(args, "eti:chmod", Py_FileSystemDefaultEncoding,
1700 &path, &i))
1701 return NULL;
1702 Py_BEGIN_ALLOW_THREADS
1703 attr = GetFileAttributesA(path);
1704 if (attr != 0xFFFFFFFF) {
1705 if (i & _S_IWRITE)
1706 attr &= ~FILE_ATTRIBUTE_READONLY;
1707 else
1708 attr |= FILE_ATTRIBUTE_READONLY;
1709 res = SetFileAttributesA(path, attr);
1710 }
1711 else
1712 res = 0;
1713 Py_END_ALLOW_THREADS
1714 if (!res) {
1715 win32_error("chmod", path);
1716 PyMem_Free(path);
1717 return NULL;
1718 }
Martin v. Löwis9f485bc2006-05-08 05:25:56 +00001719 PyMem_Free(path);
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001720 Py_INCREF(Py_None);
1721 return Py_None;
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00001722#else /* MS_WINDOWS */
Mark Hammond817c9292003-12-03 01:22:38 +00001723 if (!PyArg_ParseTuple(args, "eti:chmod", Py_FileSystemDefaultEncoding,
Mark Hammondef8b6542001-05-13 08:04:26 +00001724 &path, &i))
Guido van Rossumffd15f52000-03-31 00:47:28 +00001725 return NULL;
1726 Py_BEGIN_ALLOW_THREADS
Guido van Rossumef40e772000-03-31 01:26:23 +00001727 res = chmod(path, i);
Guido van Rossumffd15f52000-03-31 00:47:28 +00001728 Py_END_ALLOW_THREADS
1729 if (res < 0)
Mark Hammondef8b6542001-05-13 08:04:26 +00001730 return posix_error_with_allocated_filename(path);
1731 PyMem_Free(path);
Guido van Rossumffd15f52000-03-31 00:47:28 +00001732 Py_INCREF(Py_None);
1733 return Py_None;
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001734#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001735}
1736
Christian Heimes36281872007-11-30 21:11:28 +00001737#ifdef HAVE_FCHMOD
1738PyDoc_STRVAR(posix_fchmod__doc__,
1739"fchmod(fd, mode)\n\n\
1740Change the access permissions of the file given by file\n\
1741descriptor fd.");
1742
1743static PyObject *
1744posix_fchmod(PyObject *self, PyObject *args)
1745{
1746 int fd, mode, res;
1747 if (!PyArg_ParseTuple(args, "ii:fchmod", &fd, &mode))
1748 return NULL;
1749 Py_BEGIN_ALLOW_THREADS
1750 res = fchmod(fd, mode);
1751 Py_END_ALLOW_THREADS
1752 if (res < 0)
1753 return posix_error();
1754 Py_RETURN_NONE;
1755}
1756#endif /* HAVE_FCHMOD */
1757
1758#ifdef HAVE_LCHMOD
1759PyDoc_STRVAR(posix_lchmod__doc__,
1760"lchmod(path, mode)\n\n\
1761Change the access permissions of a file. If path is a symlink, this\n\
1762affects the link itself rather than the target.");
1763
1764static PyObject *
1765posix_lchmod(PyObject *self, PyObject *args)
1766{
1767 char *path = NULL;
1768 int i;
1769 int res;
1770 if (!PyArg_ParseTuple(args, "eti:lchmod", Py_FileSystemDefaultEncoding,
1771 &path, &i))
1772 return NULL;
1773 Py_BEGIN_ALLOW_THREADS
1774 res = lchmod(path, i);
1775 Py_END_ALLOW_THREADS
1776 if (res < 0)
1777 return posix_error_with_allocated_filename(path);
1778 PyMem_Free(path);
1779 Py_RETURN_NONE;
1780}
1781#endif /* HAVE_LCHMOD */
1782
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001783
Martin v. Löwis382abef2007-02-19 10:55:19 +00001784#ifdef HAVE_CHFLAGS
1785PyDoc_STRVAR(posix_chflags__doc__,
1786"chflags(path, flags)\n\n\
1787Set file flags.");
1788
1789static PyObject *
1790posix_chflags(PyObject *self, PyObject *args)
1791{
1792 char *path;
1793 unsigned long flags;
1794 int res;
1795 if (!PyArg_ParseTuple(args, "etk:chflags",
1796 Py_FileSystemDefaultEncoding, &path, &flags))
1797 return NULL;
1798 Py_BEGIN_ALLOW_THREADS
1799 res = chflags(path, flags);
1800 Py_END_ALLOW_THREADS
1801 if (res < 0)
1802 return posix_error_with_allocated_filename(path);
1803 PyMem_Free(path);
1804 Py_INCREF(Py_None);
1805 return Py_None;
1806}
1807#endif /* HAVE_CHFLAGS */
1808
1809#ifdef HAVE_LCHFLAGS
1810PyDoc_STRVAR(posix_lchflags__doc__,
1811"lchflags(path, flags)\n\n\
1812Set file flags.\n\
1813This function will not follow symbolic links.");
1814
1815static PyObject *
1816posix_lchflags(PyObject *self, PyObject *args)
1817{
1818 char *path;
1819 unsigned long flags;
1820 int res;
1821 if (!PyArg_ParseTuple(args, "etk:lchflags",
1822 Py_FileSystemDefaultEncoding, &path, &flags))
1823 return NULL;
1824 Py_BEGIN_ALLOW_THREADS
1825 res = lchflags(path, flags);
1826 Py_END_ALLOW_THREADS
1827 if (res < 0)
1828 return posix_error_with_allocated_filename(path);
1829 PyMem_Free(path);
1830 Py_INCREF(Py_None);
1831 return Py_None;
1832}
1833#endif /* HAVE_LCHFLAGS */
1834
Martin v. Löwis244edc82001-10-04 22:44:26 +00001835#ifdef HAVE_CHROOT
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001836PyDoc_STRVAR(posix_chroot__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001837"chroot(path)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001838Change root directory to path.");
Martin v. Löwis244edc82001-10-04 22:44:26 +00001839
1840static PyObject *
1841posix_chroot(PyObject *self, PyObject *args)
1842{
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00001843 return posix_1str(args, "et:chroot", chroot);
Martin v. Löwis244edc82001-10-04 22:44:26 +00001844}
1845#endif
1846
Guido van Rossum21142a01999-01-08 21:05:37 +00001847#ifdef HAVE_FSYNC
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001848PyDoc_STRVAR(posix_fsync__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001849"fsync(fildes)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001850force write of file with filedescriptor to disk.");
Guido van Rossum21142a01999-01-08 21:05:37 +00001851
1852static PyObject *
Fred Drake4d1e64b2002-04-15 19:40:07 +00001853posix_fsync(PyObject *self, PyObject *fdobj)
Guido van Rossum21142a01999-01-08 21:05:37 +00001854{
Fred Drake4d1e64b2002-04-15 19:40:07 +00001855 return posix_fildes(fdobj, fsync);
Guido van Rossum21142a01999-01-08 21:05:37 +00001856}
1857#endif /* HAVE_FSYNC */
1858
1859#ifdef HAVE_FDATASYNC
Guido van Rossumecc23b02000-09-22 16:01:05 +00001860
Guido van Rossum7f58e2e2000-09-22 17:26:14 +00001861#ifdef __hpux
Guido van Rossumecc23b02000-09-22 16:01:05 +00001862extern int fdatasync(int); /* On HP-UX, in libc but not in unistd.h */
1863#endif
1864
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001865PyDoc_STRVAR(posix_fdatasync__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001866"fdatasync(fildes)\n\n\
Guido van Rossum21142a01999-01-08 21:05:37 +00001867force write of file with filedescriptor to disk.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001868 does not force update of metadata.");
Guido van Rossum21142a01999-01-08 21:05:37 +00001869
1870static PyObject *
Fred Drake4d1e64b2002-04-15 19:40:07 +00001871posix_fdatasync(PyObject *self, PyObject *fdobj)
Guido van Rossum21142a01999-01-08 21:05:37 +00001872{
Fred Drake4d1e64b2002-04-15 19:40:07 +00001873 return posix_fildes(fdobj, fdatasync);
Guido van Rossum21142a01999-01-08 21:05:37 +00001874}
1875#endif /* HAVE_FDATASYNC */
1876
1877
Fredrik Lundh10723342000-07-10 16:38:09 +00001878#ifdef HAVE_CHOWN
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001879PyDoc_STRVAR(posix_chown__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001880"chown(path, uid, gid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001881Change the owner and group id of path to the numeric uid and gid.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001882
Barry Warsaw53699e91996-12-10 23:23:01 +00001883static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00001884posix_chown(PyObject *self, PyObject *args)
Guido van Rossumb6775db1994-08-01 11:34:53 +00001885{
Mark Hammondef8b6542001-05-13 08:04:26 +00001886 char *path = NULL;
Gregory P. Smithf48da8f2008-03-18 19:05:32 +00001887 long uid, gid;
Fredrik Lundh44328e62000-07-10 15:59:30 +00001888 int res;
Gregory P. Smithf48da8f2008-03-18 19:05:32 +00001889 if (!PyArg_ParseTuple(args, "etll:chown",
Tim Peters5aa91602002-01-30 05:46:57 +00001890 Py_FileSystemDefaultEncoding, &path,
Mark Hammondef8b6542001-05-13 08:04:26 +00001891 &uid, &gid))
Fredrik Lundh44328e62000-07-10 15:59:30 +00001892 return NULL;
1893 Py_BEGIN_ALLOW_THREADS
1894 res = chown(path, (uid_t) uid, (gid_t) gid);
1895 Py_END_ALLOW_THREADS
1896 if (res < 0)
Mark Hammondef8b6542001-05-13 08:04:26 +00001897 return posix_error_with_allocated_filename(path);
1898 PyMem_Free(path);
Fredrik Lundh44328e62000-07-10 15:59:30 +00001899 Py_INCREF(Py_None);
1900 return Py_None;
Guido van Rossumb6775db1994-08-01 11:34:53 +00001901}
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00001902#endif /* HAVE_CHOWN */
Guido van Rossumb6775db1994-08-01 11:34:53 +00001903
Christian Heimes36281872007-11-30 21:11:28 +00001904#ifdef HAVE_FCHOWN
1905PyDoc_STRVAR(posix_fchown__doc__,
1906"fchown(fd, uid, gid)\n\n\
1907Change the owner and group id of the file given by file descriptor\n\
1908fd to the numeric uid and gid.");
1909
1910static PyObject *
1911posix_fchown(PyObject *self, PyObject *args)
1912{
1913 int fd, uid, gid;
1914 int res;
1915 if (!PyArg_ParseTuple(args, "iii:chown", &fd, &uid, &gid))
1916 return NULL;
1917 Py_BEGIN_ALLOW_THREADS
1918 res = fchown(fd, (uid_t) uid, (gid_t) gid);
1919 Py_END_ALLOW_THREADS
1920 if (res < 0)
1921 return posix_error();
1922 Py_RETURN_NONE;
1923}
1924#endif /* HAVE_FCHOWN */
1925
Martin v. Löwis0cec0ff2002-07-28 16:33:45 +00001926#ifdef HAVE_LCHOWN
1927PyDoc_STRVAR(posix_lchown__doc__,
1928"lchown(path, uid, gid)\n\n\
1929Change the owner and group id of path to the numeric uid and gid.\n\
1930This function will not follow symbolic links.");
1931
1932static PyObject *
1933posix_lchown(PyObject *self, PyObject *args)
1934{
1935 char *path = NULL;
1936 int uid, gid;
1937 int res;
1938 if (!PyArg_ParseTuple(args, "etii:lchown",
1939 Py_FileSystemDefaultEncoding, &path,
1940 &uid, &gid))
1941 return NULL;
1942 Py_BEGIN_ALLOW_THREADS
1943 res = lchown(path, (uid_t) uid, (gid_t) gid);
1944 Py_END_ALLOW_THREADS
Tim Peters11b23062003-04-23 02:39:17 +00001945 if (res < 0)
Martin v. Löwis0cec0ff2002-07-28 16:33:45 +00001946 return posix_error_with_allocated_filename(path);
1947 PyMem_Free(path);
1948 Py_INCREF(Py_None);
1949 return Py_None;
1950}
1951#endif /* HAVE_LCHOWN */
1952
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001953
Guido van Rossum36bc6801995-06-14 22:54:23 +00001954#ifdef HAVE_GETCWD
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001955PyDoc_STRVAR(posix_getcwd__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001956"getcwd() -> path\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001957Return a string representing the current working directory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001958
Barry Warsaw53699e91996-12-10 23:23:01 +00001959static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00001960posix_getcwd(PyObject *self, PyObject *noargs)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001961{
Facundo Batista5596b0c2008-06-22 13:36:20 +00001962 int bufsize_incr = 1024;
1963 int bufsize = 0;
1964 char *tmpbuf = NULL;
1965 char *res = NULL;
1966 PyObject *dynamic_return;
Neal Norwitze241ce82003-02-17 18:17:05 +00001967
Barry Warsaw53699e91996-12-10 23:23:01 +00001968 Py_BEGIN_ALLOW_THREADS
Facundo Batista5596b0c2008-06-22 13:36:20 +00001969 do {
1970 bufsize = bufsize + bufsize_incr;
1971 tmpbuf = malloc(bufsize);
1972 if (tmpbuf == NULL) {
1973 break;
1974 }
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00001975#if defined(PYOS_OS2) && defined(PYCC_GCC)
Facundo Batista5596b0c2008-06-22 13:36:20 +00001976 res = _getcwd2(tmpbuf, bufsize);
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001977#else
Facundo Batista5596b0c2008-06-22 13:36:20 +00001978 res = getcwd(tmpbuf, bufsize);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00001979#endif
Facundo Batista5596b0c2008-06-22 13:36:20 +00001980
1981 if (res == NULL) {
1982 free(tmpbuf);
1983 }
1984 } while ((res == NULL) && (errno == ERANGE));
Barry Warsaw53699e91996-12-10 23:23:01 +00001985 Py_END_ALLOW_THREADS
Facundo Batista5596b0c2008-06-22 13:36:20 +00001986
Guido van Rossumff4949e1992-08-05 19:58:53 +00001987 if (res == NULL)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001988 return posix_error();
Facundo Batista5596b0c2008-06-22 13:36:20 +00001989
1990 dynamic_return = PyString_FromString(tmpbuf);
1991 free(tmpbuf);
1992
1993 return dynamic_return;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001994}
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001995
Walter Dörwald3b918c32002-11-21 20:18:46 +00001996#ifdef Py_USING_UNICODE
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001997PyDoc_STRVAR(posix_getcwdu__doc__,
1998"getcwdu() -> path\n\n\
1999Return a unicode string representing the current working directory.");
2000
2001static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00002002posix_getcwdu(PyObject *self, PyObject *noargs)
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002003{
2004 char buf[1026];
2005 char *res;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002006
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002007#ifdef MS_WINDOWS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002008 DWORD len;
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00002009 wchar_t wbuf[1026];
2010 wchar_t *wbuf2 = wbuf;
2011 PyObject *resobj;
2012 Py_BEGIN_ALLOW_THREADS
2013 len = GetCurrentDirectoryW(sizeof wbuf/ sizeof wbuf[0], wbuf);
2014 /* If the buffer is large enough, len does not include the
2015 terminating \0. If the buffer is too small, len includes
2016 the space needed for the terminator. */
2017 if (len >= sizeof wbuf/ sizeof wbuf[0]) {
2018 wbuf2 = malloc(len * sizeof(wchar_t));
2019 if (wbuf2)
2020 len = GetCurrentDirectoryW(len, wbuf2);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002021 }
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00002022 Py_END_ALLOW_THREADS
2023 if (!wbuf2) {
2024 PyErr_NoMemory();
2025 return NULL;
2026 }
2027 if (!len) {
2028 if (wbuf2 != wbuf) free(wbuf2);
2029 return win32_error("getcwdu", NULL);
2030 }
2031 resobj = PyUnicode_FromWideChar(wbuf2, len);
2032 if (wbuf2 != wbuf) free(wbuf2);
2033 return resobj;
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002034#endif /* MS_WINDOWS */
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002035
2036 Py_BEGIN_ALLOW_THREADS
2037#if defined(PYOS_OS2) && defined(PYCC_GCC)
2038 res = _getcwd2(buf, sizeof buf);
2039#else
2040 res = getcwd(buf, sizeof buf);
2041#endif
2042 Py_END_ALLOW_THREADS
2043 if (res == NULL)
2044 return posix_error();
2045 return PyUnicode_Decode(buf, strlen(buf), Py_FileSystemDefaultEncoding,"strict");
2046}
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002047#endif /* Py_USING_UNICODE */
2048#endif /* HAVE_GETCWD */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002049
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002050
Guido van Rossumb6775db1994-08-01 11:34:53 +00002051#ifdef HAVE_LINK
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002052PyDoc_STRVAR(posix_link__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002053"link(src, dst)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002054Create a hard link to a file.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002055
Barry Warsaw53699e91996-12-10 23:23:01 +00002056static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002057posix_link(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002058{
Martin v. Löwis4fc2bda2006-05-04 12:04:27 +00002059 return posix_2str(args, "etet:link", link);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002060}
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002061#endif /* HAVE_LINK */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002062
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002063
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002064PyDoc_STRVAR(posix_listdir__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002065"listdir(path) -> list_of_strings\n\n\
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002066Return a list containing the names of the entries in the directory.\n\
2067\n\
2068 path: path of directory to list\n\
2069\n\
2070The list is in arbitrary order. It does not include the special\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002071entries '.' and '..' even if they are present in the directory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002072
Barry Warsaw53699e91996-12-10 23:23:01 +00002073static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002074posix_listdir(PyObject *self, PyObject *args)
Guido van Rossumb6775db1994-08-01 11:34:53 +00002075{
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002076 /* XXX Should redo this putting the (now four) versions of opendir
Guido van Rossum6d8841c1997-08-14 19:57:39 +00002077 in separate files instead of having them all here... */
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00002078#if defined(MS_WINDOWS) && !defined(HAVE_OPENDIR)
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002079
Barry Warsaw53699e91996-12-10 23:23:01 +00002080 PyObject *d, *v;
Guido van Rossumb6775db1994-08-01 11:34:53 +00002081 HANDLE hFindFile;
Martin v. Löwise920f0d2006-03-07 23:59:33 +00002082 BOOL result;
Guido van Rossumb6775db1994-08-01 11:34:53 +00002083 WIN32_FIND_DATA FileData;
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002084 char namebuf[MAX_PATH+5]; /* Overallocate for \\*.*\0 */
Mark Hammondef8b6542001-05-13 08:04:26 +00002085 char *bufptr = namebuf;
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002086 Py_ssize_t len = sizeof(namebuf)-5; /* only claim to have space for MAX_PATH */
Guido van Rossumb6775db1994-08-01 11:34:53 +00002087
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00002088 PyObject *po;
2089 if (PyArg_ParseTuple(args, "U:listdir", &po)) {
2090 WIN32_FIND_DATAW wFileData;
2091 Py_UNICODE *wnamebuf;
2092 /* Overallocate for \\*.*\0 */
2093 len = PyUnicode_GET_SIZE(po);
2094 wnamebuf = malloc((len + 5) * sizeof(wchar_t));
2095 if (!wnamebuf) {
2096 PyErr_NoMemory();
2097 return NULL;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002098 }
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00002099 wcscpy(wnamebuf, PyUnicode_AS_UNICODE(po));
2100 if (len > 0) {
2101 Py_UNICODE wch = wnamebuf[len-1];
2102 if (wch != L'/' && wch != L'\\' && wch != L':')
2103 wnamebuf[len++] = L'\\';
2104 wcscpy(wnamebuf + len, L"*.*");
2105 }
2106 if ((d = PyList_New(0)) == NULL) {
2107 free(wnamebuf);
2108 return NULL;
2109 }
2110 hFindFile = FindFirstFileW(wnamebuf, &wFileData);
2111 if (hFindFile == INVALID_HANDLE_VALUE) {
2112 int error = GetLastError();
2113 if (error == ERROR_FILE_NOT_FOUND) {
2114 free(wnamebuf);
2115 return d;
2116 }
2117 Py_DECREF(d);
2118 win32_error_unicode("FindFirstFileW", wnamebuf);
2119 free(wnamebuf);
2120 return NULL;
2121 }
2122 do {
2123 /* Skip over . and .. */
2124 if (wcscmp(wFileData.cFileName, L".") != 0 &&
2125 wcscmp(wFileData.cFileName, L"..") != 0) {
2126 v = PyUnicode_FromUnicode(wFileData.cFileName, wcslen(wFileData.cFileName));
2127 if (v == NULL) {
2128 Py_DECREF(d);
2129 d = NULL;
2130 break;
2131 }
2132 if (PyList_Append(d, v) != 0) {
2133 Py_DECREF(v);
2134 Py_DECREF(d);
2135 d = NULL;
2136 break;
2137 }
2138 Py_DECREF(v);
2139 }
2140 Py_BEGIN_ALLOW_THREADS
2141 result = FindNextFileW(hFindFile, &wFileData);
2142 Py_END_ALLOW_THREADS
2143 /* FindNextFile sets error to ERROR_NO_MORE_FILES if
2144 it got to the end of the directory. */
2145 if (!result && GetLastError() != ERROR_NO_MORE_FILES) {
2146 Py_DECREF(d);
2147 win32_error_unicode("FindNextFileW", wnamebuf);
2148 FindClose(hFindFile);
2149 free(wnamebuf);
2150 return NULL;
2151 }
2152 } while (result == TRUE);
2153
2154 if (FindClose(hFindFile) == FALSE) {
2155 Py_DECREF(d);
2156 win32_error_unicode("FindClose", wnamebuf);
2157 free(wnamebuf);
2158 return NULL;
2159 }
2160 free(wnamebuf);
2161 return d;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002162 }
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00002163 /* Drop the argument parsing error as narrow strings
2164 are also valid. */
2165 PyErr_Clear();
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002166
Tim Peters5aa91602002-01-30 05:46:57 +00002167 if (!PyArg_ParseTuple(args, "et#:listdir",
Mark Hammondef8b6542001-05-13 08:04:26 +00002168 Py_FileSystemDefaultEncoding, &bufptr, &len))
Guido van Rossumb6775db1994-08-01 11:34:53 +00002169 return NULL;
Neil Schemenauer94b866a2002-03-22 20:51:58 +00002170 if (len > 0) {
2171 char ch = namebuf[len-1];
2172 if (ch != SEP && ch != ALTSEP && ch != ':')
2173 namebuf[len++] = '/';
Hirokazu Yamamoto406d7aa2009-05-04 05:28:39 +00002174 strcpy(namebuf + len, "*.*");
Neil Schemenauer94b866a2002-03-22 20:51:58 +00002175 }
Guido van Rossumb6775db1994-08-01 11:34:53 +00002176
Barry Warsaw53699e91996-12-10 23:23:01 +00002177 if ((d = PyList_New(0)) == NULL)
Guido van Rossumb6775db1994-08-01 11:34:53 +00002178 return NULL;
2179
2180 hFindFile = FindFirstFile(namebuf, &FileData);
2181 if (hFindFile == INVALID_HANDLE_VALUE) {
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002182 int error = GetLastError();
2183 if (error == ERROR_FILE_NOT_FOUND)
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002184 return d;
2185 Py_DECREF(d);
Mark Hammondef8b6542001-05-13 08:04:26 +00002186 return win32_error("FindFirstFile", namebuf);
Guido van Rossumb6775db1994-08-01 11:34:53 +00002187 }
2188 do {
Martin v. Löwise920f0d2006-03-07 23:59:33 +00002189 /* Skip over . and .. */
2190 if (strcmp(FileData.cFileName, ".") != 0 &&
2191 strcmp(FileData.cFileName, "..") != 0) {
Gregory P. Smithdd96db62008-06-09 04:58:54 +00002192 v = PyString_FromString(FileData.cFileName);
Martin v. Löwise920f0d2006-03-07 23:59:33 +00002193 if (v == NULL) {
2194 Py_DECREF(d);
2195 d = NULL;
2196 break;
2197 }
2198 if (PyList_Append(d, v) != 0) {
2199 Py_DECREF(v);
2200 Py_DECREF(d);
2201 d = NULL;
2202 break;
2203 }
Barry Warsaw53699e91996-12-10 23:23:01 +00002204 Py_DECREF(v);
Guido van Rossumb6775db1994-08-01 11:34:53 +00002205 }
Georg Brandl622927b2006-03-07 12:48:03 +00002206 Py_BEGIN_ALLOW_THREADS
2207 result = FindNextFile(hFindFile, &FileData);
2208 Py_END_ALLOW_THREADS
Martin v. Löwis982e9fe2006-07-24 12:54:17 +00002209 /* FindNextFile sets error to ERROR_NO_MORE_FILES if
2210 it got to the end of the directory. */
2211 if (!result && GetLastError() != ERROR_NO_MORE_FILES) {
2212 Py_DECREF(d);
2213 win32_error("FindNextFile", namebuf);
2214 FindClose(hFindFile);
2215 return NULL;
2216 }
Georg Brandl622927b2006-03-07 12:48:03 +00002217 } while (result == TRUE);
Guido van Rossumb6775db1994-08-01 11:34:53 +00002218
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002219 if (FindClose(hFindFile) == FALSE) {
2220 Py_DECREF(d);
Mark Hammondef8b6542001-05-13 08:04:26 +00002221 return win32_error("FindClose", namebuf);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002222 }
Guido van Rossumb6775db1994-08-01 11:34:53 +00002223
2224 return d;
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002225
Tim Peters0bb44a42000-09-15 07:44:49 +00002226#elif defined(PYOS_OS2)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002227
2228#ifndef MAX_PATH
2229#define MAX_PATH CCHMAXPATH
2230#endif
2231 char *name, *pt;
Thomas Wouters68bc4f92006-03-01 01:05:10 +00002232 Py_ssize_t len;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002233 PyObject *d, *v;
2234 char namebuf[MAX_PATH+5];
2235 HDIR hdir = 1;
2236 ULONG srchcnt = 1;
2237 FILEFINDBUF3 ep;
2238 APIRET rc;
2239
Fred Drake5ab8eaf1999-12-09 21:13:07 +00002240 if (!PyArg_ParseTuple(args, "t#:listdir", &name, &len))
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002241 return NULL;
2242 if (len >= MAX_PATH) {
2243 PyErr_SetString(PyExc_ValueError, "path too long");
2244 return NULL;
2245 }
2246 strcpy(namebuf, name);
2247 for (pt = namebuf; *pt; pt++)
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00002248 if (*pt == ALTSEP)
2249 *pt = SEP;
2250 if (namebuf[len-1] != SEP)
2251 namebuf[len++] = SEP;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002252 strcpy(namebuf + len, "*.*");
2253
2254 if ((d = PyList_New(0)) == NULL)
2255 return NULL;
2256
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002257 rc = DosFindFirst(namebuf, /* Wildcard Pattern to Match */
2258 &hdir, /* Handle to Use While Search Directory */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002259 FILE_READONLY | FILE_HIDDEN | FILE_SYSTEM | FILE_DIRECTORY,
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002260 &ep, sizeof(ep), /* Structure to Receive Directory Entry */
2261 &srchcnt, /* Max and Actual Count of Entries Per Iteration */
2262 FIL_STANDARD); /* Format of Entry (EAs or Not) */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002263
2264 if (rc != NO_ERROR) {
2265 errno = ENOENT;
Barry Warsawf63b8cc1999-05-27 23:13:21 +00002266 return posix_error_with_filename(name);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002267 }
2268
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002269 if (srchcnt > 0) { /* If Directory is NOT Totally Empty, */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002270 do {
2271 if (ep.achName[0] == '.'
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00002272 && (ep.achName[1] == '\0' || (ep.achName[1] == '.' && ep.achName[2] == '\0')))
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002273 continue; /* Skip Over "." and ".." Names */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002274
2275 strcpy(namebuf, ep.achName);
2276
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002277 /* Leave Case of Name Alone -- In Native Form */
2278 /* (Removed Forced Lowercasing Code) */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002279
Gregory P. Smithdd96db62008-06-09 04:58:54 +00002280 v = PyString_FromString(namebuf);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002281 if (v == NULL) {
2282 Py_DECREF(d);
2283 d = NULL;
2284 break;
2285 }
2286 if (PyList_Append(d, v) != 0) {
2287 Py_DECREF(v);
2288 Py_DECREF(d);
2289 d = NULL;
2290 break;
2291 }
2292 Py_DECREF(v);
2293 } while (DosFindNext(hdir, &ep, sizeof(ep), &srchcnt) == NO_ERROR && srchcnt > 0);
2294 }
2295
2296 return d;
2297#else
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002298
Just van Rossum2fe07fd2003-03-03 19:07:13 +00002299 char *name = NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00002300 PyObject *d, *v;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002301 DIR *dirp;
Guido van Rossumb6775db1994-08-01 11:34:53 +00002302 struct dirent *ep;
Just van Rossum96b1c902003-03-03 17:32:15 +00002303 int arg_is_unicode = 1;
2304
Georg Brandl05e89b82006-04-11 07:04:06 +00002305 errno = 0;
Just van Rossum96b1c902003-03-03 17:32:15 +00002306 if (!PyArg_ParseTuple(args, "U:listdir", &v)) {
2307 arg_is_unicode = 0;
2308 PyErr_Clear();
2309 }
2310 if (!PyArg_ParseTuple(args, "et:listdir", Py_FileSystemDefaultEncoding, &name))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002311 return NULL;
Guido van Rossumff4949e1992-08-05 19:58:53 +00002312 if ((dirp = opendir(name)) == NULL) {
Just van Rossum2fe07fd2003-03-03 19:07:13 +00002313 return posix_error_with_allocated_filename(name);
Guido van Rossumff4949e1992-08-05 19:58:53 +00002314 }
Barry Warsaw53699e91996-12-10 23:23:01 +00002315 if ((d = PyList_New(0)) == NULL) {
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002316 closedir(dirp);
Just van Rossum2fe07fd2003-03-03 19:07:13 +00002317 PyMem_Free(name);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002318 return NULL;
2319 }
Georg Brandl622927b2006-03-07 12:48:03 +00002320 for (;;) {
Georg Brandl86cbf812008-07-16 21:31:41 +00002321 errno = 0;
Georg Brandl622927b2006-03-07 12:48:03 +00002322 Py_BEGIN_ALLOW_THREADS
2323 ep = readdir(dirp);
2324 Py_END_ALLOW_THREADS
Georg Brandl86cbf812008-07-16 21:31:41 +00002325 if (ep == NULL) {
2326 if (errno == 0) {
2327 break;
2328 } else {
2329 closedir(dirp);
2330 Py_DECREF(d);
2331 return posix_error_with_allocated_filename(name);
2332 }
2333 }
Guido van Rossum24f42ac1995-07-18 18:16:52 +00002334 if (ep->d_name[0] == '.' &&
2335 (NAMLEN(ep) == 1 ||
Guido van Rossuma376cc51996-12-05 23:43:35 +00002336 (ep->d_name[1] == '.' && NAMLEN(ep) == 2)))
Guido van Rossum24f42ac1995-07-18 18:16:52 +00002337 continue;
Gregory P. Smithdd96db62008-06-09 04:58:54 +00002338 v = PyString_FromStringAndSize(ep->d_name, NAMLEN(ep));
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002339 if (v == NULL) {
Barry Warsaw53699e91996-12-10 23:23:01 +00002340 Py_DECREF(d);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002341 d = NULL;
2342 break;
2343 }
Just van Rossum46c97842003-02-25 21:42:15 +00002344#ifdef Py_USING_UNICODE
Just van Rossum96b1c902003-03-03 17:32:15 +00002345 if (arg_is_unicode) {
Just van Rossum46c97842003-02-25 21:42:15 +00002346 PyObject *w;
2347
2348 w = PyUnicode_FromEncodedObject(v,
Tim Peters11b23062003-04-23 02:39:17 +00002349 Py_FileSystemDefaultEncoding,
Just van Rossum46c97842003-02-25 21:42:15 +00002350 "strict");
Just van Rossum6a421832003-03-04 19:30:44 +00002351 if (w != NULL) {
2352 Py_DECREF(v);
2353 v = w;
2354 }
2355 else {
2356 /* fall back to the original byte string, as
2357 discussed in patch #683592 */
2358 PyErr_Clear();
Just van Rossum46c97842003-02-25 21:42:15 +00002359 }
Just van Rossum46c97842003-02-25 21:42:15 +00002360 }
2361#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00002362 if (PyList_Append(d, v) != 0) {
2363 Py_DECREF(v);
2364 Py_DECREF(d);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002365 d = NULL;
2366 break;
2367 }
Barry Warsaw53699e91996-12-10 23:23:01 +00002368 Py_DECREF(v);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002369 }
2370 closedir(dirp);
Just van Rossum2fe07fd2003-03-03 19:07:13 +00002371 PyMem_Free(name);
Guido van Rossum0ee42cd1991-04-08 21:01:03 +00002372
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002373 return d;
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002374
Tim Peters0bb44a42000-09-15 07:44:49 +00002375#endif /* which OS */
2376} /* end of posix_listdir */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002377
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00002378#ifdef MS_WINDOWS
Mark Hammondef8b6542001-05-13 08:04:26 +00002379/* A helper function for abspath on win32 */
2380static PyObject *
2381posix__getfullpathname(PyObject *self, PyObject *args)
2382{
Mark Dickinson3e4caeb2009-02-21 20:27:01 +00002383 /* assume encoded strings won't more than double no of chars */
Mark Hammondef8b6542001-05-13 08:04:26 +00002384 char inbuf[MAX_PATH*2];
2385 char *inbufp = inbuf;
Tim Peters67d70eb2006-03-01 04:35:45 +00002386 Py_ssize_t insize = sizeof(inbuf);
Mark Hammondef8b6542001-05-13 08:04:26 +00002387 char outbuf[MAX_PATH*2];
2388 char *temp;
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002389
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00002390 PyUnicodeObject *po;
2391 if (PyArg_ParseTuple(args, "U|:_getfullpathname", &po)) {
2392 Py_UNICODE *wpath = PyUnicode_AS_UNICODE(po);
2393 Py_UNICODE woutbuf[MAX_PATH*2], *woutbufp = woutbuf;
2394 Py_UNICODE *wtemp;
2395 DWORD result;
2396 PyObject *v;
2397 result = GetFullPathNameW(wpath,
2398 sizeof(woutbuf)/sizeof(woutbuf[0]),
2399 woutbuf, &wtemp);
2400 if (result > sizeof(woutbuf)/sizeof(woutbuf[0])) {
2401 woutbufp = malloc(result * sizeof(Py_UNICODE));
2402 if (!woutbufp)
2403 return PyErr_NoMemory();
2404 result = GetFullPathNameW(wpath, result, woutbufp, &wtemp);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002405 }
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00002406 if (result)
2407 v = PyUnicode_FromUnicode(woutbufp, wcslen(woutbufp));
2408 else
2409 v = win32_error_unicode("GetFullPathNameW", wpath);
2410 if (woutbufp != woutbuf)
2411 free(woutbufp);
2412 return v;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002413 }
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00002414 /* Drop the argument parsing error as narrow strings
2415 are also valid. */
2416 PyErr_Clear();
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002417
Tim Peters5aa91602002-01-30 05:46:57 +00002418 if (!PyArg_ParseTuple (args, "et#:_getfullpathname",
2419 Py_FileSystemDefaultEncoding, &inbufp,
Mark Hammondef8b6542001-05-13 08:04:26 +00002420 &insize))
2421 return NULL;
2422 if (!GetFullPathName(inbuf, sizeof(outbuf)/sizeof(outbuf[0]),
2423 outbuf, &temp))
2424 return win32_error("GetFullPathName", inbuf);
Martin v. Löwis969297f2004-06-15 18:49:58 +00002425 if (PyUnicode_Check(PyTuple_GetItem(args, 0))) {
2426 return PyUnicode_Decode(outbuf, strlen(outbuf),
2427 Py_FileSystemDefaultEncoding, NULL);
2428 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00002429 return PyString_FromString(outbuf);
Mark Hammondef8b6542001-05-13 08:04:26 +00002430} /* end of posix__getfullpathname */
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00002431#endif /* MS_WINDOWS */
Mark Hammondef8b6542001-05-13 08:04:26 +00002432
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002433PyDoc_STRVAR(posix_mkdir__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002434"mkdir(path [, mode=0777])\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002435Create a directory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002436
Barry Warsaw53699e91996-12-10 23:23:01 +00002437static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002438posix_mkdir(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002439{
Guido van Rossumb0824db1996-02-25 04:50:32 +00002440 int res;
Mark Hammondef8b6542001-05-13 08:04:26 +00002441 char *path = NULL;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002442 int mode = 0777;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002443
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002444#ifdef MS_WINDOWS
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00002445 PyUnicodeObject *po;
2446 if (PyArg_ParseTuple(args, "U|i:mkdir", &po, &mode)) {
2447 Py_BEGIN_ALLOW_THREADS
2448 /* PyUnicode_AS_UNICODE OK without thread lock as
2449 it is a simple dereference. */
2450 res = CreateDirectoryW(PyUnicode_AS_UNICODE(po), NULL);
2451 Py_END_ALLOW_THREADS
2452 if (!res)
2453 return win32_error_unicode("mkdir", PyUnicode_AS_UNICODE(po));
2454 Py_INCREF(Py_None);
2455 return Py_None;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002456 }
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00002457 /* Drop the argument parsing error as narrow strings
2458 are also valid. */
2459 PyErr_Clear();
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002460 if (!PyArg_ParseTuple(args, "et|i:mkdir",
2461 Py_FileSystemDefaultEncoding, &path, &mode))
2462 return NULL;
2463 Py_BEGIN_ALLOW_THREADS
2464 /* PyUnicode_AS_UNICODE OK without thread lock as
2465 it is a simple dereference. */
2466 res = CreateDirectoryA(path, NULL);
2467 Py_END_ALLOW_THREADS
2468 if (!res) {
2469 win32_error("mkdir", path);
2470 PyMem_Free(path);
2471 return NULL;
2472 }
2473 PyMem_Free(path);
2474 Py_INCREF(Py_None);
2475 return Py_None;
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002476#else /* MS_WINDOWS */
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002477
Tim Peters5aa91602002-01-30 05:46:57 +00002478 if (!PyArg_ParseTuple(args, "et|i:mkdir",
Mark Hammondef8b6542001-05-13 08:04:26 +00002479 Py_FileSystemDefaultEncoding, &path, &mode))
Guido van Rossumb0824db1996-02-25 04:50:32 +00002480 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00002481 Py_BEGIN_ALLOW_THREADS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002482#if ( defined(__WATCOMC__) || defined(PYCC_VACPP) ) && !defined(__QNX__)
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002483 res = mkdir(path);
2484#else
Guido van Rossumb0824db1996-02-25 04:50:32 +00002485 res = mkdir(path, mode);
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002486#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00002487 Py_END_ALLOW_THREADS
Guido van Rossumb0824db1996-02-25 04:50:32 +00002488 if (res < 0)
Mark Hammondef8b6542001-05-13 08:04:26 +00002489 return posix_error_with_allocated_filename(path);
2490 PyMem_Free(path);
Barry Warsaw53699e91996-12-10 23:23:01 +00002491 Py_INCREF(Py_None);
2492 return Py_None;
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002493#endif /* MS_WINDOWS */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002494}
2495
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002496
Neal Norwitz1818ed72006-03-26 00:29:48 +00002497/* sys/resource.h is needed for at least: wait3(), wait4(), broken nice. */
2498#if defined(HAVE_SYS_RESOURCE_H)
Thomas Wouterse38b2f12001-07-11 22:35:31 +00002499#include <sys/resource.h>
2500#endif
Thomas Wouterse38b2f12001-07-11 22:35:31 +00002501
Neal Norwitz1818ed72006-03-26 00:29:48 +00002502
2503#ifdef HAVE_NICE
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002504PyDoc_STRVAR(posix_nice__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002505"nice(inc) -> new_priority\n\n\
2506Decrease the priority of process by inc and return the new priority.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002507
Barry Warsaw53699e91996-12-10 23:23:01 +00002508static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002509posix_nice(PyObject *self, PyObject *args)
Guido van Rossum775f4da1993-01-09 17:18:52 +00002510{
2511 int increment, value;
2512
Fred Drake5ab8eaf1999-12-09 21:13:07 +00002513 if (!PyArg_ParseTuple(args, "i:nice", &increment))
Guido van Rossum775f4da1993-01-09 17:18:52 +00002514 return NULL;
Thomas Woutersc2c12dc2001-07-11 14:45:34 +00002515
2516 /* There are two flavours of 'nice': one that returns the new
2517 priority (as required by almost all standards out there) and the
Thomas Wouterse38b2f12001-07-11 22:35:31 +00002518 Linux/FreeBSD/BSDI one, which returns '0' on success and advices
2519 the use of getpriority() to get the new priority.
Tim Peters5aa91602002-01-30 05:46:57 +00002520
Thomas Woutersc2c12dc2001-07-11 14:45:34 +00002521 If we are of the nice family that returns the new priority, we
2522 need to clear errno before the call, and check if errno is filled
2523 before calling posix_error() on a returnvalue of -1, because the
2524 -1 may be the actual new priority! */
2525
2526 errno = 0;
Guido van Rossum775f4da1993-01-09 17:18:52 +00002527 value = nice(increment);
Thomas Wouterse38b2f12001-07-11 22:35:31 +00002528#if defined(HAVE_BROKEN_NICE) && defined(HAVE_GETPRIORITY)
Thomas Woutersc2c12dc2001-07-11 14:45:34 +00002529 if (value == 0)
2530 value = getpriority(PRIO_PROCESS, 0);
2531#endif
2532 if (value == -1 && errno != 0)
2533 /* either nice() or getpriority() returned an error */
Guido van Rossum775f4da1993-01-09 17:18:52 +00002534 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00002535 return PyInt_FromLong((long) value);
Guido van Rossum775f4da1993-01-09 17:18:52 +00002536}
Guido van Rossumb6775db1994-08-01 11:34:53 +00002537#endif /* HAVE_NICE */
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002538
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002539PyDoc_STRVAR(posix_rename__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002540"rename(old, new)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002541Rename a file or directory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002542
Barry Warsaw53699e91996-12-10 23:23:01 +00002543static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002544posix_rename(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002545{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002546#ifdef MS_WINDOWS
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002547 PyObject *o1, *o2;
2548 char *p1, *p2;
2549 BOOL result;
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00002550 if (!PyArg_ParseTuple(args, "OO:rename", &o1, &o2))
Hirokazu Yamamotoa0fdd722008-08-17 09:19:52 +00002551 goto error;
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00002552 if (!convert_to_unicode(&o1))
Hirokazu Yamamotoa0fdd722008-08-17 09:19:52 +00002553 goto error;
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00002554 if (!convert_to_unicode(&o2)) {
Hirokazu Yamamotoa0fdd722008-08-17 09:19:52 +00002555 Py_DECREF(o1);
2556 goto error;
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002557 }
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00002558 Py_BEGIN_ALLOW_THREADS
2559 result = MoveFileW(PyUnicode_AsUnicode(o1),
2560 PyUnicode_AsUnicode(o2));
2561 Py_END_ALLOW_THREADS
2562 Py_DECREF(o1);
2563 Py_DECREF(o2);
2564 if (!result)
2565 return win32_error("rename", NULL);
2566 Py_INCREF(Py_None);
2567 return Py_None;
2568error:
2569 PyErr_Clear();
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002570 if (!PyArg_ParseTuple(args, "ss:rename", &p1, &p2))
2571 return NULL;
2572 Py_BEGIN_ALLOW_THREADS
2573 result = MoveFileA(p1, p2);
2574 Py_END_ALLOW_THREADS
2575 if (!result)
2576 return win32_error("rename", NULL);
2577 Py_INCREF(Py_None);
2578 return Py_None;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002579#else
Martin v. Löwis4fc2bda2006-05-04 12:04:27 +00002580 return posix_2str(args, "etet:rename", rename);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002581#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002582}
2583
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002584
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002585PyDoc_STRVAR(posix_rmdir__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002586"rmdir(path)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002587Remove a directory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002588
Barry Warsaw53699e91996-12-10 23:23:01 +00002589static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002590posix_rmdir(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002591{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002592#ifdef MS_WINDOWS
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002593 return win32_1str(args, "rmdir", "s:rmdir", RemoveDirectoryA, "U:rmdir", RemoveDirectoryW);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002594#else
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002595 return posix_1str(args, "et:rmdir", rmdir);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002596#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002597}
2598
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002599
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002600PyDoc_STRVAR(posix_stat__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002601"stat(path) -> stat result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002602Perform a stat system call on the given path.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002603
Barry Warsaw53699e91996-12-10 23:23:01 +00002604static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002605posix_stat(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002606{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002607#ifdef MS_WINDOWS
Martin v. Löwis14694662006-02-03 12:54:16 +00002608 return posix_do_stat(self, args, "et:stat", STAT, "U:stat", win32_wstat);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002609#else
2610 return posix_do_stat(self, args, "et:stat", STAT, NULL, NULL);
2611#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002612}
2613
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002614
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002615#ifdef HAVE_SYSTEM
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002616PyDoc_STRVAR(posix_system__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002617"system(command) -> exit_status\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002618Execute the command (a string) in a subshell.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002619
Barry Warsaw53699e91996-12-10 23:23:01 +00002620static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002621posix_system(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002622{
Guido van Rossumef0a00e1992-01-27 16:51:30 +00002623 char *command;
Guido van Rossumff4949e1992-08-05 19:58:53 +00002624 long sts;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00002625 if (!PyArg_ParseTuple(args, "s:system", &command))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002626 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00002627 Py_BEGIN_ALLOW_THREADS
Guido van Rossumef0a00e1992-01-27 16:51:30 +00002628 sts = system(command);
Barry Warsaw53699e91996-12-10 23:23:01 +00002629 Py_END_ALLOW_THREADS
2630 return PyInt_FromLong(sts);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002631}
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002632#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002633
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002634
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002635PyDoc_STRVAR(posix_umask__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002636"umask(new_mask) -> old_mask\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002637Set the current numeric umask and return the previous umask.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002638
Barry Warsaw53699e91996-12-10 23:23:01 +00002639static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002640posix_umask(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002641{
2642 int i;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00002643 if (!PyArg_ParseTuple(args, "i:umask", &i))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002644 return NULL;
Fred Drake0368bc42001-07-19 20:48:32 +00002645 i = (int)umask(i);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002646 if (i < 0)
2647 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00002648 return PyInt_FromLong((long)i);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002649}
2650
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002651
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002652PyDoc_STRVAR(posix_unlink__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002653"unlink(path)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002654Remove a file (same as remove(path)).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002655
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002656PyDoc_STRVAR(posix_remove__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002657"remove(path)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002658Remove a file (same as unlink(path)).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002659
Barry Warsaw53699e91996-12-10 23:23:01 +00002660static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002661posix_unlink(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002662{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002663#ifdef MS_WINDOWS
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002664 return win32_1str(args, "remove", "s:remove", DeleteFileA, "U:remove", DeleteFileW);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002665#else
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002666 return posix_1str(args, "et:remove", unlink);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002667#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002668}
2669
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002670
Guido van Rossumb6775db1994-08-01 11:34:53 +00002671#ifdef HAVE_UNAME
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002672PyDoc_STRVAR(posix_uname__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002673"uname() -> (sysname, nodename, release, version, machine)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002674Return a tuple identifying the current operating system.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002675
Barry Warsaw53699e91996-12-10 23:23:01 +00002676static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00002677posix_uname(PyObject *self, PyObject *noargs)
Guido van Rossumc39de5f1992-02-05 11:15:54 +00002678{
Guido van Rossumc39de5f1992-02-05 11:15:54 +00002679 struct utsname u;
Guido van Rossumff4949e1992-08-05 19:58:53 +00002680 int res;
Neal Norwitze241ce82003-02-17 18:17:05 +00002681
Barry Warsaw53699e91996-12-10 23:23:01 +00002682 Py_BEGIN_ALLOW_THREADS
Guido van Rossumff4949e1992-08-05 19:58:53 +00002683 res = uname(&u);
Barry Warsaw53699e91996-12-10 23:23:01 +00002684 Py_END_ALLOW_THREADS
Guido van Rossumff4949e1992-08-05 19:58:53 +00002685 if (res < 0)
Guido van Rossumc39de5f1992-02-05 11:15:54 +00002686 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00002687 return Py_BuildValue("(sssss)",
Barry Warsaw43d68b81996-12-19 22:10:44 +00002688 u.sysname,
2689 u.nodename,
2690 u.release,
2691 u.version,
2692 u.machine);
Guido van Rossumc39de5f1992-02-05 11:15:54 +00002693}
Guido van Rossumb6775db1994-08-01 11:34:53 +00002694#endif /* HAVE_UNAME */
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002695
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002696static int
2697extract_time(PyObject *t, long* sec, long* usec)
2698{
2699 long intval;
2700 if (PyFloat_Check(t)) {
2701 double tval = PyFloat_AsDouble(t);
Christian Heimese93237d2007-12-19 02:37:44 +00002702 PyObject *intobj = Py_TYPE(t)->tp_as_number->nb_int(t);
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002703 if (!intobj)
2704 return -1;
2705 intval = PyInt_AsLong(intobj);
2706 Py_DECREF(intobj);
Michael W. Hudsonb8963812005-07-05 15:21:58 +00002707 if (intval == -1 && PyErr_Occurred())
2708 return -1;
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002709 *sec = intval;
Tim Peters96940cf2002-09-10 15:37:28 +00002710 *usec = (long)((tval - intval) * 1e6); /* can't exceed 1000000 */
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002711 if (*usec < 0)
2712 /* If rounding gave us a negative number,
2713 truncate. */
2714 *usec = 0;
2715 return 0;
2716 }
2717 intval = PyInt_AsLong(t);
2718 if (intval == -1 && PyErr_Occurred())
2719 return -1;
2720 *sec = intval;
2721 *usec = 0;
Martin v. Löwis076b2092002-09-10 15:04:41 +00002722 return 0;
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002723}
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002724
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002725PyDoc_STRVAR(posix_utime__doc__,
Georg Brandl9e5b5e42006-05-17 14:18:20 +00002726"utime(path, (atime, mtime))\n\
Fred Drakef7ce04d2002-06-20 18:31:21 +00002727utime(path, None)\n\n\
Barry Warsaw3cef8562000-05-01 16:17:24 +00002728Set the access and modified time of the file to the given values. If the\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002729second form is used, set the access and modified times to the current time.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002730
Barry Warsaw53699e91996-12-10 23:23:01 +00002731static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002732posix_utime(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002733{
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002734#ifdef MS_WINDOWS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002735 PyObject *arg;
2736 PyUnicodeObject *obwpath;
2737 wchar_t *wpath = NULL;
2738 char *apath = NULL;
2739 HANDLE hFile;
2740 long atimesec, mtimesec, ausec, musec;
2741 FILETIME atime, mtime;
2742 PyObject *result = NULL;
2743
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00002744 if (PyArg_ParseTuple(args, "UO|:utime", &obwpath, &arg)) {
2745 wpath = PyUnicode_AS_UNICODE(obwpath);
2746 Py_BEGIN_ALLOW_THREADS
2747 hFile = CreateFileW(wpath, FILE_WRITE_ATTRIBUTES, 0,
2748 NULL, OPEN_EXISTING,
2749 FILE_FLAG_BACKUP_SEMANTICS, NULL);
2750 Py_END_ALLOW_THREADS
2751 if (hFile == INVALID_HANDLE_VALUE)
2752 return win32_error_unicode("utime", wpath);
2753 } else
2754 /* Drop the argument parsing error as narrow strings
2755 are also valid. */
2756 PyErr_Clear();
2757
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002758 if (!wpath) {
2759 if (!PyArg_ParseTuple(args, "etO:utime",
2760 Py_FileSystemDefaultEncoding, &apath, &arg))
2761 return NULL;
2762 Py_BEGIN_ALLOW_THREADS
2763 hFile = CreateFileA(apath, FILE_WRITE_ATTRIBUTES, 0,
Martin v. Löwis18aaa562006-10-15 08:43:33 +00002764 NULL, OPEN_EXISTING,
2765 FILE_FLAG_BACKUP_SEMANTICS, NULL);
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002766 Py_END_ALLOW_THREADS
2767 if (hFile == INVALID_HANDLE_VALUE) {
2768 win32_error("utime", apath);
2769 PyMem_Free(apath);
2770 return NULL;
2771 }
2772 PyMem_Free(apath);
2773 }
2774
2775 if (arg == Py_None) {
2776 SYSTEMTIME now;
2777 GetSystemTime(&now);
2778 if (!SystemTimeToFileTime(&now, &mtime) ||
2779 !SystemTimeToFileTime(&now, &atime)) {
2780 win32_error("utime", NULL);
2781 goto done;
2782 }
2783 }
2784 else if (!PyTuple_Check(arg) || PyTuple_Size(arg) != 2) {
2785 PyErr_SetString(PyExc_TypeError,
2786 "utime() arg 2 must be a tuple (atime, mtime)");
2787 goto done;
2788 }
2789 else {
2790 if (extract_time(PyTuple_GET_ITEM(arg, 0),
2791 &atimesec, &ausec) == -1)
2792 goto done;
Martin v. Löwisf43893a2006-10-09 20:44:25 +00002793 time_t_to_FILE_TIME(atimesec, 1000*ausec, &atime);
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002794 if (extract_time(PyTuple_GET_ITEM(arg, 1),
2795 &mtimesec, &musec) == -1)
2796 goto done;
Martin v. Löwisf43893a2006-10-09 20:44:25 +00002797 time_t_to_FILE_TIME(mtimesec, 1000*musec, &mtime);
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002798 }
2799 if (!SetFileTime(hFile, NULL, &atime, &mtime)) {
2800 /* Avoid putting the file name into the error here,
2801 as that may confuse the user into believing that
2802 something is wrong with the file, when it also
2803 could be the time stamp that gives a problem. */
2804 win32_error("utime", NULL);
2805 }
2806 Py_INCREF(Py_None);
2807 result = Py_None;
2808done:
2809 CloseHandle(hFile);
2810 return result;
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002811#else /* MS_WINDOWS */
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002812
Neal Norwitz2adf2102004-06-09 01:46:02 +00002813 char *path = NULL;
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002814 long atime, mtime, ausec, musec;
Guido van Rossumff4949e1992-08-05 19:58:53 +00002815 int res;
Barry Warsaw3cef8562000-05-01 16:17:24 +00002816 PyObject* arg;
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002817
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002818#if defined(HAVE_UTIMES)
2819 struct timeval buf[2];
2820#define ATIME buf[0].tv_sec
2821#define MTIME buf[1].tv_sec
2822#elif defined(HAVE_UTIME_H)
Guido van Rossum6d8841c1997-08-14 19:57:39 +00002823/* XXX should define struct utimbuf instead, above */
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002824 struct utimbuf buf;
2825#define ATIME buf.actime
2826#define MTIME buf.modtime
2827#define UTIME_ARG &buf
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002828#else /* HAVE_UTIMES */
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002829 time_t buf[2];
2830#define ATIME buf[0]
2831#define MTIME buf[1]
2832#define UTIME_ARG buf
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002833#endif /* HAVE_UTIMES */
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002834
Mark Hammond817c9292003-12-03 01:22:38 +00002835
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002836 if (!PyArg_ParseTuple(args, "etO:utime",
Hye-Shik Chang2b2c9732004-01-04 13:54:25 +00002837 Py_FileSystemDefaultEncoding, &path, &arg))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002838 return NULL;
Barry Warsaw3cef8562000-05-01 16:17:24 +00002839 if (arg == Py_None) {
2840 /* optional time values not given */
2841 Py_BEGIN_ALLOW_THREADS
2842 res = utime(path, NULL);
2843 Py_END_ALLOW_THREADS
2844 }
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002845 else if (!PyTuple_Check(arg) || PyTuple_Size(arg) != 2) {
Barry Warsaw3cef8562000-05-01 16:17:24 +00002846 PyErr_SetString(PyExc_TypeError,
Fred Drake661ea262000-10-24 19:57:45 +00002847 "utime() arg 2 must be a tuple (atime, mtime)");
Neal Norwitz96652712004-06-06 20:40:27 +00002848 PyMem_Free(path);
Barry Warsaw3cef8562000-05-01 16:17:24 +00002849 return NULL;
2850 }
2851 else {
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002852 if (extract_time(PyTuple_GET_ITEM(arg, 0),
Neal Norwitz96652712004-06-06 20:40:27 +00002853 &atime, &ausec) == -1) {
2854 PyMem_Free(path);
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002855 return NULL;
Neal Norwitz96652712004-06-06 20:40:27 +00002856 }
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002857 if (extract_time(PyTuple_GET_ITEM(arg, 1),
Neal Norwitz96652712004-06-06 20:40:27 +00002858 &mtime, &musec) == -1) {
2859 PyMem_Free(path);
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002860 return NULL;
Neal Norwitz96652712004-06-06 20:40:27 +00002861 }
Barry Warsaw3cef8562000-05-01 16:17:24 +00002862 ATIME = atime;
2863 MTIME = mtime;
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002864#ifdef HAVE_UTIMES
2865 buf[0].tv_usec = ausec;
2866 buf[1].tv_usec = musec;
2867 Py_BEGIN_ALLOW_THREADS
2868 res = utimes(path, buf);
2869 Py_END_ALLOW_THREADS
2870#else
Barry Warsaw3cef8562000-05-01 16:17:24 +00002871 Py_BEGIN_ALLOW_THREADS
2872 res = utime(path, UTIME_ARG);
2873 Py_END_ALLOW_THREADS
Mark Hammond817c9292003-12-03 01:22:38 +00002874#endif /* HAVE_UTIMES */
Barry Warsaw3cef8562000-05-01 16:17:24 +00002875 }
Mark Hammond2d5914b2004-05-04 08:10:37 +00002876 if (res < 0) {
Neal Norwitz96652712004-06-06 20:40:27 +00002877 return posix_error_with_allocated_filename(path);
Mark Hammond2d5914b2004-05-04 08:10:37 +00002878 }
Neal Norwitz96652712004-06-06 20:40:27 +00002879 PyMem_Free(path);
Barry Warsaw53699e91996-12-10 23:23:01 +00002880 Py_INCREF(Py_None);
2881 return Py_None;
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002882#undef UTIME_ARG
2883#undef ATIME
2884#undef MTIME
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002885#endif /* MS_WINDOWS */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002886}
2887
Guido van Rossum85e3b011991-06-03 12:42:10 +00002888
Guido van Rossum3b066191991-06-04 19:40:25 +00002889/* Process operations */
Guido van Rossum85e3b011991-06-03 12:42:10 +00002890
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002891PyDoc_STRVAR(posix__exit__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002892"_exit(status)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002893Exit to the system with specified status, without normal exit processing.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002894
Barry Warsaw53699e91996-12-10 23:23:01 +00002895static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002896posix__exit(PyObject *self, PyObject *args)
Guido van Rossum85e3b011991-06-03 12:42:10 +00002897{
2898 int sts;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00002899 if (!PyArg_ParseTuple(args, "i:_exit", &sts))
Guido van Rossum85e3b011991-06-03 12:42:10 +00002900 return NULL;
2901 _exit(sts);
Guido van Rossuma376cc51996-12-05 23:43:35 +00002902 return NULL; /* Make gcc -Wall happy */
Guido van Rossum85e3b011991-06-03 12:42:10 +00002903}
2904
Martin v. Löwis114619e2002-10-07 06:44:21 +00002905#if defined(HAVE_EXECV) || defined(HAVE_SPAWNV)
2906static void
Martin v. Löwis725507b2006-03-07 12:08:51 +00002907free_string_array(char **array, Py_ssize_t count)
Martin v. Löwis114619e2002-10-07 06:44:21 +00002908{
Martin v. Löwis725507b2006-03-07 12:08:51 +00002909 Py_ssize_t i;
Martin v. Löwis114619e2002-10-07 06:44:21 +00002910 for (i = 0; i < count; i++)
2911 PyMem_Free(array[i]);
2912 PyMem_DEL(array);
2913}
2914#endif
2915
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002916
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002917#ifdef HAVE_EXECV
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002918PyDoc_STRVAR(posix_execv__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002919"execv(path, args)\n\n\
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002920Execute an executable path with arguments, replacing current process.\n\
2921\n\
2922 path: path of executable file\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002923 args: tuple or list of strings");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002924
Barry Warsaw53699e91996-12-10 23:23:01 +00002925static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002926posix_execv(PyObject *self, PyObject *args)
Guido van Rossum85e3b011991-06-03 12:42:10 +00002927{
Guido van Rossumef0a00e1992-01-27 16:51:30 +00002928 char *path;
Barry Warsaw53699e91996-12-10 23:23:01 +00002929 PyObject *argv;
Guido van Rossum85e3b011991-06-03 12:42:10 +00002930 char **argvlist;
Martin v. Löwis725507b2006-03-07 12:08:51 +00002931 Py_ssize_t i, argc;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002932 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Guido van Rossum85e3b011991-06-03 12:42:10 +00002933
Guido van Rossum89b33251993-10-22 14:26:06 +00002934 /* execv has two arguments: (path, argv), where
Guido van Rossum85e3b011991-06-03 12:42:10 +00002935 argv is a list or tuple of strings. */
2936
Martin v. Löwis114619e2002-10-07 06:44:21 +00002937 if (!PyArg_ParseTuple(args, "etO:execv",
2938 Py_FileSystemDefaultEncoding,
2939 &path, &argv))
Guido van Rossum85e3b011991-06-03 12:42:10 +00002940 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00002941 if (PyList_Check(argv)) {
2942 argc = PyList_Size(argv);
2943 getitem = PyList_GetItem;
Guido van Rossum85e3b011991-06-03 12:42:10 +00002944 }
Barry Warsaw53699e91996-12-10 23:23:01 +00002945 else if (PyTuple_Check(argv)) {
2946 argc = PyTuple_Size(argv);
2947 getitem = PyTuple_GetItem;
Guido van Rossum85e3b011991-06-03 12:42:10 +00002948 }
Guido van Rossumef0a00e1992-01-27 16:51:30 +00002949 else {
Fred Drake661ea262000-10-24 19:57:45 +00002950 PyErr_SetString(PyExc_TypeError, "execv() arg 2 must be a tuple or list");
Martin v. Löwis114619e2002-10-07 06:44:21 +00002951 PyMem_Free(path);
Guido van Rossum50422b42000-04-26 20:34:28 +00002952 return NULL;
2953 }
2954
Barry Warsaw53699e91996-12-10 23:23:01 +00002955 argvlist = PyMem_NEW(char *, argc+1);
Martin v. Löwis114619e2002-10-07 06:44:21 +00002956 if (argvlist == NULL) {
2957 PyMem_Free(path);
Neal Norwitzec74f2f2003-02-11 23:05:40 +00002958 return PyErr_NoMemory();
Martin v. Löwis114619e2002-10-07 06:44:21 +00002959 }
Guido van Rossum85e3b011991-06-03 12:42:10 +00002960 for (i = 0; i < argc; i++) {
Martin v. Löwis114619e2002-10-07 06:44:21 +00002961 if (!PyArg_Parse((*getitem)(argv, i), "et",
2962 Py_FileSystemDefaultEncoding,
2963 &argvlist[i])) {
2964 free_string_array(argvlist, i);
Tim Peters5aa91602002-01-30 05:46:57 +00002965 PyErr_SetString(PyExc_TypeError,
Fred Drake661ea262000-10-24 19:57:45 +00002966 "execv() arg 2 must contain only strings");
Martin v. Löwis114619e2002-10-07 06:44:21 +00002967 PyMem_Free(path);
Guido van Rossum50422b42000-04-26 20:34:28 +00002968 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00002969
Guido van Rossum85e3b011991-06-03 12:42:10 +00002970 }
Guido van Rossum85e3b011991-06-03 12:42:10 +00002971 }
2972 argvlist[argc] = NULL;
2973
Guido van Rossumef0a00e1992-01-27 16:51:30 +00002974 execv(path, argvlist);
Guido van Rossumb6775db1994-08-01 11:34:53 +00002975
Guido van Rossum85e3b011991-06-03 12:42:10 +00002976 /* If we get here it's definitely an error */
2977
Martin v. Löwis114619e2002-10-07 06:44:21 +00002978 free_string_array(argvlist, argc);
2979 PyMem_Free(path);
Guido van Rossum85e3b011991-06-03 12:42:10 +00002980 return posix_error();
2981}
2982
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002983
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002984PyDoc_STRVAR(posix_execve__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002985"execve(path, args, env)\n\n\
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002986Execute a path with arguments and environment, replacing current process.\n\
2987\n\
2988 path: path of executable file\n\
2989 args: tuple or list of arguments\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002990 env: dictionary of strings mapping to strings");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002991
Barry Warsaw53699e91996-12-10 23:23:01 +00002992static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002993posix_execve(PyObject *self, PyObject *args)
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00002994{
2995 char *path;
Barry Warsaw53699e91996-12-10 23:23:01 +00002996 PyObject *argv, *env;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00002997 char **argvlist;
2998 char **envlist;
Barry Warsaw5ed19dc1997-01-29 15:08:24 +00002999 PyObject *key, *val, *keys=NULL, *vals=NULL;
Martin v. Löwis725507b2006-03-07 12:08:51 +00003000 Py_ssize_t i, pos, argc, envc;
Martin v. Löwis18e16552006-02-15 17:27:45 +00003001 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Martin v. Löwis26fd9602006-04-22 11:15:41 +00003002 Py_ssize_t lastarg = 0;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003003
3004 /* execve has three arguments: (path, argv, env), where
3005 argv is a list or tuple of strings and env is a dictionary
3006 like posix.environ. */
3007
Martin v. Löwis114619e2002-10-07 06:44:21 +00003008 if (!PyArg_ParseTuple(args, "etOO:execve",
3009 Py_FileSystemDefaultEncoding,
3010 &path, &argv, &env))
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003011 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00003012 if (PyList_Check(argv)) {
3013 argc = PyList_Size(argv);
3014 getitem = PyList_GetItem;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003015 }
Barry Warsaw53699e91996-12-10 23:23:01 +00003016 else if (PyTuple_Check(argv)) {
3017 argc = PyTuple_Size(argv);
3018 getitem = PyTuple_GetItem;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003019 }
3020 else {
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003021 PyErr_SetString(PyExc_TypeError,
3022 "execve() arg 2 must be a tuple or list");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003023 goto fail_0;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003024 }
Barry Warsaw5ed19dc1997-01-29 15:08:24 +00003025 if (!PyMapping_Check(env)) {
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003026 PyErr_SetString(PyExc_TypeError,
3027 "execve() arg 3 must be a mapping object");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003028 goto fail_0;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003029 }
3030
Barry Warsaw53699e91996-12-10 23:23:01 +00003031 argvlist = PyMem_NEW(char *, argc+1);
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003032 if (argvlist == NULL) {
Barry Warsaw53699e91996-12-10 23:23:01 +00003033 PyErr_NoMemory();
Martin v. Löwis114619e2002-10-07 06:44:21 +00003034 goto fail_0;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003035 }
3036 for (i = 0; i < argc; i++) {
Barry Warsaw53699e91996-12-10 23:23:01 +00003037 if (!PyArg_Parse((*getitem)(argv, i),
Martin v. Löwis114619e2002-10-07 06:44:21 +00003038 "et;execve() arg 2 must contain only strings",
Guido van Rossum1e700d22002-10-16 16:52:11 +00003039 Py_FileSystemDefaultEncoding,
Barry Warsaw43d68b81996-12-19 22:10:44 +00003040 &argvlist[i]))
3041 {
Martin v. Löwis114619e2002-10-07 06:44:21 +00003042 lastarg = i;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003043 goto fail_1;
3044 }
3045 }
Martin v. Löwis114619e2002-10-07 06:44:21 +00003046 lastarg = argc;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003047 argvlist[argc] = NULL;
3048
Jeremy Hylton03657cf2000-07-12 13:05:33 +00003049 i = PyMapping_Size(env);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003050 if (i < 0)
3051 goto fail_1;
Barry Warsaw53699e91996-12-10 23:23:01 +00003052 envlist = PyMem_NEW(char *, i + 1);
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003053 if (envlist == NULL) {
Barry Warsaw53699e91996-12-10 23:23:01 +00003054 PyErr_NoMemory();
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003055 goto fail_1;
3056 }
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003057 envc = 0;
Barry Warsaw5ed19dc1997-01-29 15:08:24 +00003058 keys = PyMapping_Keys(env);
3059 vals = PyMapping_Values(env);
3060 if (!keys || !vals)
3061 goto fail_2;
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003062 if (!PyList_Check(keys) || !PyList_Check(vals)) {
3063 PyErr_SetString(PyExc_TypeError,
3064 "execve(): env.keys() or env.values() is not a list");
3065 goto fail_2;
3066 }
Tim Peters5aa91602002-01-30 05:46:57 +00003067
Barry Warsaw5ed19dc1997-01-29 15:08:24 +00003068 for (pos = 0; pos < i; pos++) {
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003069 char *p, *k, *v;
Tim Petersc8996f52001-12-03 20:41:00 +00003070 size_t len;
Barry Warsaw5ed19dc1997-01-29 15:08:24 +00003071
3072 key = PyList_GetItem(keys, pos);
3073 val = PyList_GetItem(vals, pos);
3074 if (!key || !val)
3075 goto fail_2;
Tim Peters5aa91602002-01-30 05:46:57 +00003076
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003077 if (!PyArg_Parse(
3078 key,
3079 "s;execve() arg 3 contains a non-string key",
3080 &k) ||
3081 !PyArg_Parse(
3082 val,
3083 "s;execve() arg 3 contains a non-string value",
3084 &v))
Barry Warsaw43d68b81996-12-19 22:10:44 +00003085 {
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003086 goto fail_2;
3087 }
Guido van Rossumd48f2521997-12-05 22:19:34 +00003088
3089#if defined(PYOS_OS2)
3090 /* Omit Pseudo-Env Vars that Would Confuse Programs if Passed On */
3091 if (stricmp(k, "BEGINLIBPATH") != 0 && stricmp(k, "ENDLIBPATH") != 0) {
3092#endif
Gregory P. Smithdd96db62008-06-09 04:58:54 +00003093 len = PyString_Size(key) + PyString_Size(val) + 2;
Tim Petersc8996f52001-12-03 20:41:00 +00003094 p = PyMem_NEW(char, len);
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003095 if (p == NULL) {
Barry Warsaw53699e91996-12-10 23:23:01 +00003096 PyErr_NoMemory();
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003097 goto fail_2;
3098 }
Tim Petersc8996f52001-12-03 20:41:00 +00003099 PyOS_snprintf(p, len, "%s=%s", k, v);
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003100 envlist[envc++] = p;
Guido van Rossumd48f2521997-12-05 22:19:34 +00003101#if defined(PYOS_OS2)
3102 }
3103#endif
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003104 }
3105 envlist[envc] = 0;
3106
3107 execve(path, argvlist, envlist);
Tim Peters5aa91602002-01-30 05:46:57 +00003108
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003109 /* If we get here it's definitely an error */
3110
3111 (void) posix_error();
3112
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003113 fail_2:
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003114 while (--envc >= 0)
Barry Warsaw53699e91996-12-10 23:23:01 +00003115 PyMem_DEL(envlist[envc]);
3116 PyMem_DEL(envlist);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003117 fail_1:
3118 free_string_array(argvlist, lastarg);
Barry Warsaw5ed19dc1997-01-29 15:08:24 +00003119 Py_XDECREF(vals);
3120 Py_XDECREF(keys);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003121 fail_0:
Martin v. Löwis114619e2002-10-07 06:44:21 +00003122 PyMem_Free(path);
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003123 return NULL;
3124}
Guido van Rossuma4916fa1996-05-23 22:58:55 +00003125#endif /* HAVE_EXECV */
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003126
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003127
Guido van Rossuma1065681999-01-25 23:20:23 +00003128#ifdef HAVE_SPAWNV
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003129PyDoc_STRVAR(posix_spawnv__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003130"spawnv(mode, path, args)\n\n\
Tim Peters25059d32001-12-07 20:35:43 +00003131Execute the program 'path' in a new process.\n\
Guido van Rossuma1065681999-01-25 23:20:23 +00003132\n\
Fred Drakea6dff3e1999-02-01 22:24:40 +00003133 mode: mode of process creation\n\
Guido van Rossuma1065681999-01-25 23:20:23 +00003134 path: path of executable file\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003135 args: tuple or list of strings");
Guido van Rossuma1065681999-01-25 23:20:23 +00003136
3137static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00003138posix_spawnv(PyObject *self, PyObject *args)
Guido van Rossuma1065681999-01-25 23:20:23 +00003139{
3140 char *path;
3141 PyObject *argv;
3142 char **argvlist;
Martin v. Löwis26fd9602006-04-22 11:15:41 +00003143 int mode, i;
3144 Py_ssize_t argc;
Tim Peters79248aa2001-08-29 21:37:10 +00003145 Py_intptr_t spawnval;
Martin v. Löwis18e16552006-02-15 17:27:45 +00003146 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Guido van Rossuma1065681999-01-25 23:20:23 +00003147
3148 /* spawnv has three arguments: (mode, path, argv), where
3149 argv is a list or tuple of strings. */
3150
Martin v. Löwis114619e2002-10-07 06:44:21 +00003151 if (!PyArg_ParseTuple(args, "ietO:spawnv", &mode,
3152 Py_FileSystemDefaultEncoding,
3153 &path, &argv))
Guido van Rossuma1065681999-01-25 23:20:23 +00003154 return NULL;
3155 if (PyList_Check(argv)) {
3156 argc = PyList_Size(argv);
3157 getitem = PyList_GetItem;
3158 }
3159 else if (PyTuple_Check(argv)) {
3160 argc = PyTuple_Size(argv);
3161 getitem = PyTuple_GetItem;
3162 }
3163 else {
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003164 PyErr_SetString(PyExc_TypeError,
3165 "spawnv() arg 2 must be a tuple or list");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003166 PyMem_Free(path);
Guido van Rossuma1065681999-01-25 23:20:23 +00003167 return NULL;
3168 }
3169
3170 argvlist = PyMem_NEW(char *, argc+1);
Martin v. Löwis114619e2002-10-07 06:44:21 +00003171 if (argvlist == NULL) {
3172 PyMem_Free(path);
Neal Norwitzec74f2f2003-02-11 23:05:40 +00003173 return PyErr_NoMemory();
Martin v. Löwis114619e2002-10-07 06:44:21 +00003174 }
Guido van Rossuma1065681999-01-25 23:20:23 +00003175 for (i = 0; i < argc; i++) {
Martin v. Löwis114619e2002-10-07 06:44:21 +00003176 if (!PyArg_Parse((*getitem)(argv, i), "et",
3177 Py_FileSystemDefaultEncoding,
3178 &argvlist[i])) {
3179 free_string_array(argvlist, i);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003180 PyErr_SetString(
3181 PyExc_TypeError,
3182 "spawnv() arg 2 must contain only strings");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003183 PyMem_Free(path);
Fred Drake137507e2000-06-01 02:02:46 +00003184 return NULL;
Guido van Rossuma1065681999-01-25 23:20:23 +00003185 }
3186 }
3187 argvlist[argc] = NULL;
3188
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00003189#if defined(PYOS_OS2) && defined(PYCC_GCC)
3190 Py_BEGIN_ALLOW_THREADS
3191 spawnval = spawnv(mode, path, argvlist);
3192 Py_END_ALLOW_THREADS
3193#else
Guido van Rossum246bc171999-02-01 23:54:31 +00003194 if (mode == _OLD_P_OVERLAY)
3195 mode = _P_OVERLAY;
Tim Peters5aa91602002-01-30 05:46:57 +00003196
Tim Peters25059d32001-12-07 20:35:43 +00003197 Py_BEGIN_ALLOW_THREADS
Fred Drake699f3522000-06-29 21:12:41 +00003198 spawnval = _spawnv(mode, path, argvlist);
Tim Peters25059d32001-12-07 20:35:43 +00003199 Py_END_ALLOW_THREADS
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00003200#endif
Tim Peters5aa91602002-01-30 05:46:57 +00003201
Martin v. Löwis114619e2002-10-07 06:44:21 +00003202 free_string_array(argvlist, argc);
3203 PyMem_Free(path);
Guido van Rossuma1065681999-01-25 23:20:23 +00003204
Fred Drake699f3522000-06-29 21:12:41 +00003205 if (spawnval == -1)
Guido van Rossuma1065681999-01-25 23:20:23 +00003206 return posix_error();
3207 else
Fredrik Lundhe25cfd82000-07-09 13:10:40 +00003208#if SIZEOF_LONG == SIZEOF_VOID_P
3209 return Py_BuildValue("l", (long) spawnval);
Fred Drake699f3522000-06-29 21:12:41 +00003210#else
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00003211 return Py_BuildValue("L", (PY_LONG_LONG) spawnval);
Fred Drake699f3522000-06-29 21:12:41 +00003212#endif
Guido van Rossuma1065681999-01-25 23:20:23 +00003213}
3214
3215
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003216PyDoc_STRVAR(posix_spawnve__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003217"spawnve(mode, path, args, env)\n\n\
Tim Peters25059d32001-12-07 20:35:43 +00003218Execute the program 'path' in a new process.\n\
Guido van Rossuma1065681999-01-25 23:20:23 +00003219\n\
Fred Drakea6dff3e1999-02-01 22:24:40 +00003220 mode: mode of process creation\n\
Guido van Rossuma1065681999-01-25 23:20:23 +00003221 path: path of executable file\n\
3222 args: tuple or list of arguments\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003223 env: dictionary of strings mapping to strings");
Guido van Rossuma1065681999-01-25 23:20:23 +00003224
3225static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00003226posix_spawnve(PyObject *self, PyObject *args)
Guido van Rossuma1065681999-01-25 23:20:23 +00003227{
3228 char *path;
3229 PyObject *argv, *env;
3230 char **argvlist;
3231 char **envlist;
3232 PyObject *key, *val, *keys=NULL, *vals=NULL, *res=NULL;
Martin v. Löwis26fd9602006-04-22 11:15:41 +00003233 int mode, pos, envc;
3234 Py_ssize_t argc, i;
Tim Peters79248aa2001-08-29 21:37:10 +00003235 Py_intptr_t spawnval;
Martin v. Löwis18e16552006-02-15 17:27:45 +00003236 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Martin v. Löwis26fd9602006-04-22 11:15:41 +00003237 Py_ssize_t lastarg = 0;
Guido van Rossuma1065681999-01-25 23:20:23 +00003238
3239 /* spawnve has four arguments: (mode, path, argv, env), where
3240 argv is a list or tuple of strings and env is a dictionary
3241 like posix.environ. */
3242
Martin v. Löwis114619e2002-10-07 06:44:21 +00003243 if (!PyArg_ParseTuple(args, "ietOO:spawnve", &mode,
3244 Py_FileSystemDefaultEncoding,
3245 &path, &argv, &env))
Guido van Rossuma1065681999-01-25 23:20:23 +00003246 return NULL;
3247 if (PyList_Check(argv)) {
3248 argc = PyList_Size(argv);
3249 getitem = PyList_GetItem;
3250 }
3251 else if (PyTuple_Check(argv)) {
3252 argc = PyTuple_Size(argv);
3253 getitem = PyTuple_GetItem;
3254 }
3255 else {
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003256 PyErr_SetString(PyExc_TypeError,
3257 "spawnve() arg 2 must be a tuple or list");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003258 goto fail_0;
Guido van Rossuma1065681999-01-25 23:20:23 +00003259 }
3260 if (!PyMapping_Check(env)) {
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003261 PyErr_SetString(PyExc_TypeError,
3262 "spawnve() arg 3 must be a mapping object");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003263 goto fail_0;
Guido van Rossuma1065681999-01-25 23:20:23 +00003264 }
3265
3266 argvlist = PyMem_NEW(char *, argc+1);
3267 if (argvlist == NULL) {
3268 PyErr_NoMemory();
Martin v. Löwis114619e2002-10-07 06:44:21 +00003269 goto fail_0;
Guido van Rossuma1065681999-01-25 23:20:23 +00003270 }
3271 for (i = 0; i < argc; i++) {
3272 if (!PyArg_Parse((*getitem)(argv, i),
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003273 "et;spawnve() arg 2 must contain only strings",
Martin v. Löwis114619e2002-10-07 06:44:21 +00003274 Py_FileSystemDefaultEncoding,
Guido van Rossuma1065681999-01-25 23:20:23 +00003275 &argvlist[i]))
3276 {
Martin v. Löwis114619e2002-10-07 06:44:21 +00003277 lastarg = i;
Guido van Rossuma1065681999-01-25 23:20:23 +00003278 goto fail_1;
3279 }
3280 }
Martin v. Löwis114619e2002-10-07 06:44:21 +00003281 lastarg = argc;
Guido van Rossuma1065681999-01-25 23:20:23 +00003282 argvlist[argc] = NULL;
3283
Jeremy Hylton03657cf2000-07-12 13:05:33 +00003284 i = PyMapping_Size(env);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003285 if (i < 0)
3286 goto fail_1;
Guido van Rossuma1065681999-01-25 23:20:23 +00003287 envlist = PyMem_NEW(char *, i + 1);
3288 if (envlist == NULL) {
3289 PyErr_NoMemory();
3290 goto fail_1;
3291 }
3292 envc = 0;
3293 keys = PyMapping_Keys(env);
3294 vals = PyMapping_Values(env);
3295 if (!keys || !vals)
3296 goto fail_2;
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003297 if (!PyList_Check(keys) || !PyList_Check(vals)) {
3298 PyErr_SetString(PyExc_TypeError,
3299 "spawnve(): env.keys() or env.values() is not a list");
3300 goto fail_2;
3301 }
Tim Peters5aa91602002-01-30 05:46:57 +00003302
Guido van Rossuma1065681999-01-25 23:20:23 +00003303 for (pos = 0; pos < i; pos++) {
3304 char *p, *k, *v;
Tim Petersc8996f52001-12-03 20:41:00 +00003305 size_t len;
Guido van Rossuma1065681999-01-25 23:20:23 +00003306
3307 key = PyList_GetItem(keys, pos);
3308 val = PyList_GetItem(vals, pos);
3309 if (!key || !val)
3310 goto fail_2;
Tim Peters5aa91602002-01-30 05:46:57 +00003311
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003312 if (!PyArg_Parse(
3313 key,
3314 "s;spawnve() arg 3 contains a non-string key",
3315 &k) ||
3316 !PyArg_Parse(
3317 val,
3318 "s;spawnve() arg 3 contains a non-string value",
3319 &v))
Guido van Rossuma1065681999-01-25 23:20:23 +00003320 {
3321 goto fail_2;
3322 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00003323 len = PyString_Size(key) + PyString_Size(val) + 2;
Tim Petersc8996f52001-12-03 20:41:00 +00003324 p = PyMem_NEW(char, len);
Guido van Rossuma1065681999-01-25 23:20:23 +00003325 if (p == NULL) {
3326 PyErr_NoMemory();
3327 goto fail_2;
3328 }
Tim Petersc8996f52001-12-03 20:41:00 +00003329 PyOS_snprintf(p, len, "%s=%s", k, v);
Guido van Rossuma1065681999-01-25 23:20:23 +00003330 envlist[envc++] = p;
3331 }
3332 envlist[envc] = 0;
3333
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00003334#if defined(PYOS_OS2) && defined(PYCC_GCC)
3335 Py_BEGIN_ALLOW_THREADS
3336 spawnval = spawnve(mode, path, argvlist, envlist);
3337 Py_END_ALLOW_THREADS
3338#else
Guido van Rossum246bc171999-02-01 23:54:31 +00003339 if (mode == _OLD_P_OVERLAY)
3340 mode = _P_OVERLAY;
Tim Peters25059d32001-12-07 20:35:43 +00003341
3342 Py_BEGIN_ALLOW_THREADS
Fred Drake699f3522000-06-29 21:12:41 +00003343 spawnval = _spawnve(mode, path, argvlist, envlist);
Tim Peters25059d32001-12-07 20:35:43 +00003344 Py_END_ALLOW_THREADS
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00003345#endif
Tim Peters25059d32001-12-07 20:35:43 +00003346
Fred Drake699f3522000-06-29 21:12:41 +00003347 if (spawnval == -1)
Guido van Rossuma1065681999-01-25 23:20:23 +00003348 (void) posix_error();
3349 else
Fredrik Lundhe25cfd82000-07-09 13:10:40 +00003350#if SIZEOF_LONG == SIZEOF_VOID_P
3351 res = Py_BuildValue("l", (long) spawnval);
Fred Drake699f3522000-06-29 21:12:41 +00003352#else
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00003353 res = Py_BuildValue("L", (PY_LONG_LONG) spawnval);
Fred Drake699f3522000-06-29 21:12:41 +00003354#endif
Guido van Rossuma1065681999-01-25 23:20:23 +00003355
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003356 fail_2:
Guido van Rossuma1065681999-01-25 23:20:23 +00003357 while (--envc >= 0)
3358 PyMem_DEL(envlist[envc]);
3359 PyMem_DEL(envlist);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003360 fail_1:
Martin v. Löwis114619e2002-10-07 06:44:21 +00003361 free_string_array(argvlist, lastarg);
Guido van Rossuma1065681999-01-25 23:20:23 +00003362 Py_XDECREF(vals);
3363 Py_XDECREF(keys);
Martin v. Löwis114619e2002-10-07 06:44:21 +00003364 fail_0:
3365 PyMem_Free(path);
Guido van Rossuma1065681999-01-25 23:20:23 +00003366 return res;
3367}
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003368
3369/* OS/2 supports spawnvp & spawnvpe natively */
3370#if defined(PYOS_OS2)
3371PyDoc_STRVAR(posix_spawnvp__doc__,
3372"spawnvp(mode, file, args)\n\n\
3373Execute the program 'file' in a new process, using the environment\n\
3374search path to find the file.\n\
3375\n\
3376 mode: mode of process creation\n\
3377 file: executable file name\n\
3378 args: tuple or list of strings");
3379
3380static PyObject *
3381posix_spawnvp(PyObject *self, PyObject *args)
3382{
3383 char *path;
3384 PyObject *argv;
3385 char **argvlist;
3386 int mode, i, argc;
3387 Py_intptr_t spawnval;
Martin v. Löwis18e16552006-02-15 17:27:45 +00003388 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003389
3390 /* spawnvp has three arguments: (mode, path, argv), where
3391 argv is a list or tuple of strings. */
3392
3393 if (!PyArg_ParseTuple(args, "ietO:spawnvp", &mode,
3394 Py_FileSystemDefaultEncoding,
3395 &path, &argv))
3396 return NULL;
3397 if (PyList_Check(argv)) {
3398 argc = PyList_Size(argv);
3399 getitem = PyList_GetItem;
3400 }
3401 else if (PyTuple_Check(argv)) {
3402 argc = PyTuple_Size(argv);
3403 getitem = PyTuple_GetItem;
3404 }
3405 else {
3406 PyErr_SetString(PyExc_TypeError,
3407 "spawnvp() arg 2 must be a tuple or list");
3408 PyMem_Free(path);
3409 return NULL;
3410 }
3411
3412 argvlist = PyMem_NEW(char *, argc+1);
3413 if (argvlist == NULL) {
3414 PyMem_Free(path);
3415 return PyErr_NoMemory();
3416 }
3417 for (i = 0; i < argc; i++) {
3418 if (!PyArg_Parse((*getitem)(argv, i), "et",
3419 Py_FileSystemDefaultEncoding,
3420 &argvlist[i])) {
3421 free_string_array(argvlist, i);
3422 PyErr_SetString(
3423 PyExc_TypeError,
3424 "spawnvp() arg 2 must contain only strings");
3425 PyMem_Free(path);
3426 return NULL;
3427 }
3428 }
3429 argvlist[argc] = NULL;
3430
3431 Py_BEGIN_ALLOW_THREADS
3432#if defined(PYCC_GCC)
3433 spawnval = spawnvp(mode, path, argvlist);
3434#else
3435 spawnval = _spawnvp(mode, path, argvlist);
3436#endif
3437 Py_END_ALLOW_THREADS
3438
3439 free_string_array(argvlist, argc);
3440 PyMem_Free(path);
3441
3442 if (spawnval == -1)
3443 return posix_error();
3444 else
3445 return Py_BuildValue("l", (long) spawnval);
3446}
3447
3448
3449PyDoc_STRVAR(posix_spawnvpe__doc__,
3450"spawnvpe(mode, file, args, env)\n\n\
3451Execute the program 'file' in a new process, using the environment\n\
3452search path to find the file.\n\
3453\n\
3454 mode: mode of process creation\n\
3455 file: executable file name\n\
3456 args: tuple or list of arguments\n\
3457 env: dictionary of strings mapping to strings");
3458
3459static PyObject *
3460posix_spawnvpe(PyObject *self, PyObject *args)
3461{
3462 char *path;
3463 PyObject *argv, *env;
3464 char **argvlist;
3465 char **envlist;
3466 PyObject *key, *val, *keys=NULL, *vals=NULL, *res=NULL;
3467 int mode, i, pos, argc, envc;
3468 Py_intptr_t spawnval;
Martin v. Löwis18e16552006-02-15 17:27:45 +00003469 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003470 int lastarg = 0;
3471
3472 /* spawnvpe has four arguments: (mode, path, argv, env), where
3473 argv is a list or tuple of strings and env is a dictionary
3474 like posix.environ. */
3475
3476 if (!PyArg_ParseTuple(args, "ietOO:spawnvpe", &mode,
3477 Py_FileSystemDefaultEncoding,
3478 &path, &argv, &env))
3479 return NULL;
3480 if (PyList_Check(argv)) {
3481 argc = PyList_Size(argv);
3482 getitem = PyList_GetItem;
3483 }
3484 else if (PyTuple_Check(argv)) {
3485 argc = PyTuple_Size(argv);
3486 getitem = PyTuple_GetItem;
3487 }
3488 else {
3489 PyErr_SetString(PyExc_TypeError,
3490 "spawnvpe() arg 2 must be a tuple or list");
3491 goto fail_0;
3492 }
3493 if (!PyMapping_Check(env)) {
3494 PyErr_SetString(PyExc_TypeError,
3495 "spawnvpe() arg 3 must be a mapping object");
3496 goto fail_0;
3497 }
3498
3499 argvlist = PyMem_NEW(char *, argc+1);
3500 if (argvlist == NULL) {
3501 PyErr_NoMemory();
3502 goto fail_0;
3503 }
3504 for (i = 0; i < argc; i++) {
3505 if (!PyArg_Parse((*getitem)(argv, i),
3506 "et;spawnvpe() arg 2 must contain only strings",
3507 Py_FileSystemDefaultEncoding,
3508 &argvlist[i]))
3509 {
3510 lastarg = i;
3511 goto fail_1;
3512 }
3513 }
3514 lastarg = argc;
3515 argvlist[argc] = NULL;
3516
3517 i = PyMapping_Size(env);
3518 if (i < 0)
3519 goto fail_1;
3520 envlist = PyMem_NEW(char *, i + 1);
3521 if (envlist == NULL) {
3522 PyErr_NoMemory();
3523 goto fail_1;
3524 }
3525 envc = 0;
3526 keys = PyMapping_Keys(env);
3527 vals = PyMapping_Values(env);
3528 if (!keys || !vals)
3529 goto fail_2;
3530 if (!PyList_Check(keys) || !PyList_Check(vals)) {
3531 PyErr_SetString(PyExc_TypeError,
3532 "spawnvpe(): env.keys() or env.values() is not a list");
3533 goto fail_2;
3534 }
3535
3536 for (pos = 0; pos < i; pos++) {
3537 char *p, *k, *v;
3538 size_t len;
3539
3540 key = PyList_GetItem(keys, pos);
3541 val = PyList_GetItem(vals, pos);
3542 if (!key || !val)
3543 goto fail_2;
3544
3545 if (!PyArg_Parse(
3546 key,
3547 "s;spawnvpe() arg 3 contains a non-string key",
3548 &k) ||
3549 !PyArg_Parse(
3550 val,
3551 "s;spawnvpe() arg 3 contains a non-string value",
3552 &v))
3553 {
3554 goto fail_2;
3555 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00003556 len = PyString_Size(key) + PyString_Size(val) + 2;
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003557 p = PyMem_NEW(char, len);
3558 if (p == NULL) {
3559 PyErr_NoMemory();
3560 goto fail_2;
3561 }
3562 PyOS_snprintf(p, len, "%s=%s", k, v);
3563 envlist[envc++] = p;
3564 }
3565 envlist[envc] = 0;
3566
3567 Py_BEGIN_ALLOW_THREADS
3568#if defined(PYCC_GCC)
Andrew MacIntyre94dcf0d2008-02-03 07:07:31 +00003569 spawnval = spawnvpe(mode, path, argvlist, envlist);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003570#else
Andrew MacIntyre94dcf0d2008-02-03 07:07:31 +00003571 spawnval = _spawnvpe(mode, path, argvlist, envlist);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003572#endif
3573 Py_END_ALLOW_THREADS
3574
3575 if (spawnval == -1)
3576 (void) posix_error();
3577 else
3578 res = Py_BuildValue("l", (long) spawnval);
3579
3580 fail_2:
3581 while (--envc >= 0)
3582 PyMem_DEL(envlist[envc]);
3583 PyMem_DEL(envlist);
3584 fail_1:
3585 free_string_array(argvlist, lastarg);
3586 Py_XDECREF(vals);
3587 Py_XDECREF(keys);
3588 fail_0:
3589 PyMem_Free(path);
3590 return res;
3591}
3592#endif /* PYOS_OS2 */
Guido van Rossuma1065681999-01-25 23:20:23 +00003593#endif /* HAVE_SPAWNV */
3594
3595
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003596#ifdef HAVE_FORK1
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003597PyDoc_STRVAR(posix_fork1__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003598"fork1() -> pid\n\n\
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003599Fork a child process with a single multiplexed (i.e., not bound) thread.\n\
3600\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003601Return 0 to child process and PID of child to parent process.");
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003602
3603static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003604posix_fork1(PyObject *self, PyObject *noargs)
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003605{
Thomas Woutersc4dcb382009-09-16 19:55:54 +00003606 pid_t pid;
3607 int result;
3608 _PyImport_AcquireLock();
3609 pid = fork1();
3610 result = _PyImport_ReleaseLock();
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003611 if (pid == -1)
3612 return posix_error();
Gregory P. Smithfb7a50f2008-07-14 06:06:48 +00003613 if (pid == 0)
3614 PyOS_AfterFork();
Thomas Woutersc4dcb382009-09-16 19:55:54 +00003615 if (result < 0) {
3616 /* Don't clobber the OSError if the fork failed. */
3617 PyErr_SetString(PyExc_RuntimeError,
3618 "not holding the import lock");
3619 return NULL;
3620 }
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00003621 return PyLong_FromPid(pid);
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003622}
3623#endif
3624
3625
Guido van Rossumad0ee831995-03-01 10:34:45 +00003626#ifdef HAVE_FORK
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003627PyDoc_STRVAR(posix_fork__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003628"fork() -> pid\n\n\
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003629Fork a child process.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003630Return 0 to child process and PID of child to parent process.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003631
Barry Warsaw53699e91996-12-10 23:23:01 +00003632static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003633posix_fork(PyObject *self, PyObject *noargs)
Guido van Rossum85e3b011991-06-03 12:42:10 +00003634{
Thomas Woutersc4dcb382009-09-16 19:55:54 +00003635 pid_t pid;
3636 int result;
3637 _PyImport_AcquireLock();
3638 pid = fork();
3639 result = _PyImport_ReleaseLock();
Guido van Rossum85e3b011991-06-03 12:42:10 +00003640 if (pid == -1)
3641 return posix_error();
Fred Drake49b0c3b2000-07-06 19:42:19 +00003642 if (pid == 0)
3643 PyOS_AfterFork();
Thomas Woutersc4dcb382009-09-16 19:55:54 +00003644 if (result < 0) {
3645 /* Don't clobber the OSError if the fork failed. */
3646 PyErr_SetString(PyExc_RuntimeError,
3647 "not holding the import lock");
3648 return NULL;
3649 }
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00003650 return PyLong_FromPid(pid);
Guido van Rossum85e3b011991-06-03 12:42:10 +00003651}
Guido van Rossumad0ee831995-03-01 10:34:45 +00003652#endif
Guido van Rossum85e3b011991-06-03 12:42:10 +00003653
Neal Norwitzb59798b2003-03-21 01:43:31 +00003654/* AIX uses /dev/ptc but is otherwise the same as /dev/ptmx */
Neal Norwitz2deaddb2003-03-21 03:08:31 +00003655/* IRIX has both /dev/ptc and /dev/ptmx, use ptmx */
3656#if defined(HAVE_DEV_PTC) && !defined(HAVE_DEV_PTMX)
Neal Norwitzb59798b2003-03-21 01:43:31 +00003657#define DEV_PTY_FILE "/dev/ptc"
3658#define HAVE_DEV_PTMX
3659#else
3660#define DEV_PTY_FILE "/dev/ptmx"
3661#endif
3662
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003663#if defined(HAVE_OPENPTY) || defined(HAVE_FORKPTY) || defined(HAVE_DEV_PTMX)
Fred Drake8cef4cf2000-06-28 16:40:38 +00003664#ifdef HAVE_PTY_H
3665#include <pty.h>
3666#else
3667#ifdef HAVE_LIBUTIL_H
3668#include <libutil.h>
Fred Drake8cef4cf2000-06-28 16:40:38 +00003669#endif /* HAVE_LIBUTIL_H */
3670#endif /* HAVE_PTY_H */
Martin v. Löwis14e73b12003-01-01 09:51:12 +00003671#ifdef HAVE_STROPTS_H
3672#include <stropts.h>
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003673#endif
3674#endif /* defined(HAVE_OPENPTY) || defined(HAVE_FORKPTY) || defined(HAVE_DEV_PTMX */
Fred Drake8cef4cf2000-06-28 16:40:38 +00003675
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003676#if defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX)
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003677PyDoc_STRVAR(posix_openpty__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003678"openpty() -> (master_fd, slave_fd)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003679Open a pseudo-terminal, returning open fd's for both master and slave end.\n");
Fred Drake8cef4cf2000-06-28 16:40:38 +00003680
3681static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003682posix_openpty(PyObject *self, PyObject *noargs)
Fred Drake8cef4cf2000-06-28 16:40:38 +00003683{
3684 int master_fd, slave_fd;
Thomas Wouters70c21a12000-07-14 14:28:33 +00003685#ifndef HAVE_OPENPTY
3686 char * slave_name;
Thomas Wouters70c21a12000-07-14 14:28:33 +00003687#endif
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003688#if defined(HAVE_DEV_PTMX) && !defined(HAVE_OPENPTY) && !defined(HAVE__GETPTY)
Martin v. Löwisc8b2e772002-12-31 14:30:26 +00003689 PyOS_sighandler_t sig_saved;
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003690#ifdef sun
Neal Norwitz84a98e02006-04-10 07:44:23 +00003691 extern char *ptsname(int fildes);
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003692#endif
3693#endif
Thomas Wouters70c21a12000-07-14 14:28:33 +00003694
Thomas Wouters70c21a12000-07-14 14:28:33 +00003695#ifdef HAVE_OPENPTY
Fred Drake8cef4cf2000-06-28 16:40:38 +00003696 if (openpty(&master_fd, &slave_fd, NULL, NULL, NULL) != 0)
3697 return posix_error();
Neal Norwitzb59798b2003-03-21 01:43:31 +00003698#elif defined(HAVE__GETPTY)
Thomas Wouters70c21a12000-07-14 14:28:33 +00003699 slave_name = _getpty(&master_fd, O_RDWR, 0666, 0);
3700 if (slave_name == NULL)
3701 return posix_error();
3702
3703 slave_fd = open(slave_name, O_RDWR);
3704 if (slave_fd < 0)
3705 return posix_error();
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003706#else
Neal Norwitzb59798b2003-03-21 01:43:31 +00003707 master_fd = open(DEV_PTY_FILE, O_RDWR | O_NOCTTY); /* open master */
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003708 if (master_fd < 0)
3709 return posix_error();
Anthony Baxter9ceaa722004-10-13 14:48:50 +00003710 sig_saved = PyOS_setsig(SIGCHLD, SIG_DFL);
Martin v. Löwisc8b2e772002-12-31 14:30:26 +00003711 /* change permission of slave */
3712 if (grantpt(master_fd) < 0) {
Anthony Baxter9ceaa722004-10-13 14:48:50 +00003713 PyOS_setsig(SIGCHLD, sig_saved);
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003714 return posix_error();
Martin v. Löwisc8b2e772002-12-31 14:30:26 +00003715 }
3716 /* unlock slave */
3717 if (unlockpt(master_fd) < 0) {
Anthony Baxter9ceaa722004-10-13 14:48:50 +00003718 PyOS_setsig(SIGCHLD, sig_saved);
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003719 return posix_error();
Martin v. Löwisc8b2e772002-12-31 14:30:26 +00003720 }
Anthony Baxter9ceaa722004-10-13 14:48:50 +00003721 PyOS_setsig(SIGCHLD, sig_saved);
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003722 slave_name = ptsname(master_fd); /* get name of slave */
3723 if (slave_name == NULL)
3724 return posix_error();
3725 slave_fd = open(slave_name, O_RDWR | O_NOCTTY); /* open slave */
3726 if (slave_fd < 0)
3727 return posix_error();
Neal Norwitzb59798b2003-03-21 01:43:31 +00003728#if !defined(__CYGWIN__) && !defined(HAVE_DEV_PTC)
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003729 ioctl(slave_fd, I_PUSH, "ptem"); /* push ptem */
3730 ioctl(slave_fd, I_PUSH, "ldterm"); /* push ldterm */
Neal Norwitz6700e472002-12-31 16:16:07 +00003731#ifndef __hpux
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003732 ioctl(slave_fd, I_PUSH, "ttcompat"); /* push ttcompat */
Neal Norwitz6700e472002-12-31 16:16:07 +00003733#endif /* __hpux */
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003734#endif /* HAVE_CYGWIN */
Thomas Wouters1e0c2f42000-07-24 16:06:23 +00003735#endif /* HAVE_OPENPTY */
Thomas Wouters70c21a12000-07-14 14:28:33 +00003736
Fred Drake8cef4cf2000-06-28 16:40:38 +00003737 return Py_BuildValue("(ii)", master_fd, slave_fd);
Thomas Wouters70c21a12000-07-14 14:28:33 +00003738
Fred Drake8cef4cf2000-06-28 16:40:38 +00003739}
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003740#endif /* defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX) */
Fred Drake8cef4cf2000-06-28 16:40:38 +00003741
3742#ifdef HAVE_FORKPTY
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003743PyDoc_STRVAR(posix_forkpty__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003744"forkpty() -> (pid, master_fd)\n\n\
Fred Drake8cef4cf2000-06-28 16:40:38 +00003745Fork a new process with a new pseudo-terminal as controlling tty.\n\n\
3746Like fork(), return 0 as pid to child process, and PID of child to parent.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003747To both, return fd of newly opened pseudo-terminal.\n");
Fred Drake8cef4cf2000-06-28 16:40:38 +00003748
3749static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003750posix_forkpty(PyObject *self, PyObject *noargs)
Fred Drake8cef4cf2000-06-28 16:40:38 +00003751{
Thomas Woutersc4dcb382009-09-16 19:55:54 +00003752 int master_fd = -1, result;
Christian Heimes951cc0f2008-01-31 23:08:23 +00003753 pid_t pid;
Tim Peters5aa91602002-01-30 05:46:57 +00003754
Thomas Woutersc4dcb382009-09-16 19:55:54 +00003755 _PyImport_AcquireLock();
Fred Drake8cef4cf2000-06-28 16:40:38 +00003756 pid = forkpty(&master_fd, NULL, NULL, NULL);
Thomas Woutersc4dcb382009-09-16 19:55:54 +00003757 result = _PyImport_ReleaseLock();
Fred Drake8cef4cf2000-06-28 16:40:38 +00003758 if (pid == -1)
3759 return posix_error();
Fred Drake49b0c3b2000-07-06 19:42:19 +00003760 if (pid == 0)
3761 PyOS_AfterFork();
Thomas Woutersc4dcb382009-09-16 19:55:54 +00003762 if (result < 0) {
3763 /* Don't clobber the OSError if the fork failed. */
3764 PyErr_SetString(PyExc_RuntimeError,
3765 "not holding the import lock");
3766 return NULL;
3767 }
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00003768 return Py_BuildValue("(Ni)", PyLong_FromPid(pid), master_fd);
Fred Drake8cef4cf2000-06-28 16:40:38 +00003769}
3770#endif
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003771
Guido van Rossumad0ee831995-03-01 10:34:45 +00003772#ifdef HAVE_GETEGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003773PyDoc_STRVAR(posix_getegid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003774"getegid() -> egid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003775Return the current process's effective group id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003776
Barry Warsaw53699e91996-12-10 23:23:01 +00003777static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003778posix_getegid(PyObject *self, PyObject *noargs)
Guido van Rossum46003ff1992-05-15 11:05:24 +00003779{
Barry Warsaw53699e91996-12-10 23:23:01 +00003780 return PyInt_FromLong((long)getegid());
Guido van Rossum46003ff1992-05-15 11:05:24 +00003781}
Guido van Rossumad0ee831995-03-01 10:34:45 +00003782#endif
Guido van Rossum46003ff1992-05-15 11:05:24 +00003783
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003784
Guido van Rossumad0ee831995-03-01 10:34:45 +00003785#ifdef HAVE_GETEUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003786PyDoc_STRVAR(posix_geteuid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003787"geteuid() -> euid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003788Return the current process's effective user id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003789
Barry Warsaw53699e91996-12-10 23:23:01 +00003790static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003791posix_geteuid(PyObject *self, PyObject *noargs)
Guido van Rossum46003ff1992-05-15 11:05:24 +00003792{
Barry Warsaw53699e91996-12-10 23:23:01 +00003793 return PyInt_FromLong((long)geteuid());
Guido van Rossum46003ff1992-05-15 11:05:24 +00003794}
Guido van Rossumad0ee831995-03-01 10:34:45 +00003795#endif
Guido van Rossum46003ff1992-05-15 11:05:24 +00003796
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003797
Guido van Rossumad0ee831995-03-01 10:34:45 +00003798#ifdef HAVE_GETGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003799PyDoc_STRVAR(posix_getgid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003800"getgid() -> gid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003801Return the current process's group id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003802
Barry Warsaw53699e91996-12-10 23:23:01 +00003803static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003804posix_getgid(PyObject *self, PyObject *noargs)
Guido van Rossum46003ff1992-05-15 11:05:24 +00003805{
Barry Warsaw53699e91996-12-10 23:23:01 +00003806 return PyInt_FromLong((long)getgid());
Guido van Rossum46003ff1992-05-15 11:05:24 +00003807}
Guido van Rossumad0ee831995-03-01 10:34:45 +00003808#endif
Guido van Rossum46003ff1992-05-15 11:05:24 +00003809
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003810
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003811PyDoc_STRVAR(posix_getpid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003812"getpid() -> pid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003813Return the current process id");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003814
Barry Warsaw53699e91996-12-10 23:23:01 +00003815static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003816posix_getpid(PyObject *self, PyObject *noargs)
Guido van Rossum85e3b011991-06-03 12:42:10 +00003817{
Antoine Pitrou76dd2d12009-05-23 16:06:49 +00003818 return PyLong_FromPid(getpid());
Guido van Rossum85e3b011991-06-03 12:42:10 +00003819}
3820
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003821
Fred Drakec9680921999-12-13 16:37:25 +00003822#ifdef HAVE_GETGROUPS
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003823PyDoc_STRVAR(posix_getgroups__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003824"getgroups() -> list of group IDs\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003825Return list of supplemental group IDs for the process.");
Fred Drakec9680921999-12-13 16:37:25 +00003826
3827static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003828posix_getgroups(PyObject *self, PyObject *noargs)
Fred Drakec9680921999-12-13 16:37:25 +00003829{
3830 PyObject *result = NULL;
3831
Fred Drakec9680921999-12-13 16:37:25 +00003832#ifdef NGROUPS_MAX
3833#define MAX_GROUPS NGROUPS_MAX
3834#else
3835 /* defined to be 16 on Solaris7, so this should be a small number */
3836#define MAX_GROUPS 64
3837#endif
3838 gid_t grouplist[MAX_GROUPS];
3839 int n;
3840
3841 n = getgroups(MAX_GROUPS, grouplist);
3842 if (n < 0)
3843 posix_error();
3844 else {
3845 result = PyList_New(n);
3846 if (result != NULL) {
Fred Drakec9680921999-12-13 16:37:25 +00003847 int i;
3848 for (i = 0; i < n; ++i) {
Neal Norwitze241ce82003-02-17 18:17:05 +00003849 PyObject *o = PyInt_FromLong((long)grouplist[i]);
Fred Drakec9680921999-12-13 16:37:25 +00003850 if (o == NULL) {
3851 Py_DECREF(result);
3852 result = NULL;
3853 break;
3854 }
3855 PyList_SET_ITEM(result, i, o);
3856 }
3857 }
3858 }
Neal Norwitze241ce82003-02-17 18:17:05 +00003859
Fred Drakec9680921999-12-13 16:37:25 +00003860 return result;
3861}
3862#endif
3863
Antoine Pitrou30b3b352009-12-02 20:37:54 +00003864#ifdef HAVE_INITGROUPS
3865PyDoc_STRVAR(posix_initgroups__doc__,
3866"initgroups(username, gid) -> None\n\n\
3867Call the system initgroups() to initialize the group access list with all of\n\
3868the groups of which the specified username is a member, plus the specified\n\
3869group id.");
3870
3871static PyObject *
3872posix_initgroups(PyObject *self, PyObject *args)
3873{
3874 char *username;
3875 long gid;
3876
3877 if (!PyArg_ParseTuple(args, "sl:initgroups", &username, &gid))
3878 return NULL;
3879
3880 if (initgroups(username, (gid_t) gid) == -1)
3881 return PyErr_SetFromErrno(PyExc_OSError);
3882
3883 Py_INCREF(Py_None);
3884 return Py_None;
3885}
3886#endif
3887
Martin v. Löwis606edc12002-06-13 21:09:11 +00003888#ifdef HAVE_GETPGID
Neal Norwitz0c2c17c2002-06-13 21:22:11 +00003889PyDoc_STRVAR(posix_getpgid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003890"getpgid(pid) -> pgid\n\n\
Neal Norwitz0c2c17c2002-06-13 21:22:11 +00003891Call the system call getpgid().");
Martin v. Löwis606edc12002-06-13 21:09:11 +00003892
3893static PyObject *
3894posix_getpgid(PyObject *self, PyObject *args)
3895{
Antoine Pitrou76dd2d12009-05-23 16:06:49 +00003896 pid_t pid, pgid;
3897 if (!PyArg_ParseTuple(args, PARSE_PID ":getpgid", &pid))
Martin v. Löwis606edc12002-06-13 21:09:11 +00003898 return NULL;
3899 pgid = getpgid(pid);
3900 if (pgid < 0)
3901 return posix_error();
Antoine Pitrou76dd2d12009-05-23 16:06:49 +00003902 return PyLong_FromPid(pgid);
Martin v. Löwis606edc12002-06-13 21:09:11 +00003903}
3904#endif /* HAVE_GETPGID */
3905
3906
Guido van Rossumb6775db1994-08-01 11:34:53 +00003907#ifdef HAVE_GETPGRP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003908PyDoc_STRVAR(posix_getpgrp__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003909"getpgrp() -> pgrp\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003910Return the current process group id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003911
Barry Warsaw53699e91996-12-10 23:23:01 +00003912static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003913posix_getpgrp(PyObject *self, PyObject *noargs)
Guido van Rossum04814471991-06-04 20:23:49 +00003914{
Guido van Rossumb6775db1994-08-01 11:34:53 +00003915#ifdef GETPGRP_HAVE_ARG
Antoine Pitrou76dd2d12009-05-23 16:06:49 +00003916 return PyLong_FromPid(getpgrp(0));
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00003917#else /* GETPGRP_HAVE_ARG */
Antoine Pitrou76dd2d12009-05-23 16:06:49 +00003918 return PyLong_FromPid(getpgrp());
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00003919#endif /* GETPGRP_HAVE_ARG */
Guido van Rossum04814471991-06-04 20:23:49 +00003920}
Guido van Rossumb6775db1994-08-01 11:34:53 +00003921#endif /* HAVE_GETPGRP */
Guido van Rossum04814471991-06-04 20:23:49 +00003922
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003923
Guido van Rossumb6775db1994-08-01 11:34:53 +00003924#ifdef HAVE_SETPGRP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003925PyDoc_STRVAR(posix_setpgrp__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003926"setpgrp()\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003927Make this process a session leader.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003928
Barry Warsaw53699e91996-12-10 23:23:01 +00003929static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003930posix_setpgrp(PyObject *self, PyObject *noargs)
Guido van Rossumc2670a01992-09-13 20:07:29 +00003931{
Guido van Rossum64933891994-10-20 21:56:42 +00003932#ifdef SETPGRP_HAVE_ARG
Guido van Rossumc2670a01992-09-13 20:07:29 +00003933 if (setpgrp(0, 0) < 0)
Guido van Rossum64933891994-10-20 21:56:42 +00003934#else /* SETPGRP_HAVE_ARG */
Guido van Rossumb6775db1994-08-01 11:34:53 +00003935 if (setpgrp() < 0)
Guido van Rossum64933891994-10-20 21:56:42 +00003936#endif /* SETPGRP_HAVE_ARG */
Guido van Rossum687dd131993-05-17 08:34:16 +00003937 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00003938 Py_INCREF(Py_None);
3939 return Py_None;
Guido van Rossumc2670a01992-09-13 20:07:29 +00003940}
3941
Guido van Rossumb6775db1994-08-01 11:34:53 +00003942#endif /* HAVE_SETPGRP */
3943
Guido van Rossumad0ee831995-03-01 10:34:45 +00003944#ifdef HAVE_GETPPID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003945PyDoc_STRVAR(posix_getppid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003946"getppid() -> ppid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003947Return the parent's process id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003948
Barry Warsaw53699e91996-12-10 23:23:01 +00003949static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003950posix_getppid(PyObject *self, PyObject *noargs)
Guido van Rossum85e3b011991-06-03 12:42:10 +00003951{
Antoine Pitrou76dd2d12009-05-23 16:06:49 +00003952 return PyLong_FromPid(getppid());
Guido van Rossum85e3b011991-06-03 12:42:10 +00003953}
Guido van Rossumad0ee831995-03-01 10:34:45 +00003954#endif
Guido van Rossum85e3b011991-06-03 12:42:10 +00003955
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003956
Fred Drake12c6e2d1999-12-14 21:25:03 +00003957#ifdef HAVE_GETLOGIN
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003958PyDoc_STRVAR(posix_getlogin__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003959"getlogin() -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003960Return the actual login name.");
Fred Drake12c6e2d1999-12-14 21:25:03 +00003961
3962static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003963posix_getlogin(PyObject *self, PyObject *noargs)
Fred Drake12c6e2d1999-12-14 21:25:03 +00003964{
Neal Norwitze241ce82003-02-17 18:17:05 +00003965 PyObject *result = NULL;
Fred Drakea30680b2000-12-06 21:24:28 +00003966 char *name;
3967 int old_errno = errno;
Fred Drake12c6e2d1999-12-14 21:25:03 +00003968
Fred Drakea30680b2000-12-06 21:24:28 +00003969 errno = 0;
3970 name = getlogin();
3971 if (name == NULL) {
3972 if (errno)
3973 posix_error();
3974 else
3975 PyErr_SetString(PyExc_OSError,
Fred Drakee63544f2000-12-06 21:45:33 +00003976 "unable to determine login name");
Fred Drakea30680b2000-12-06 21:24:28 +00003977 }
Fred Drake12c6e2d1999-12-14 21:25:03 +00003978 else
Gregory P. Smithdd96db62008-06-09 04:58:54 +00003979 result = PyString_FromString(name);
Fred Drakea30680b2000-12-06 21:24:28 +00003980 errno = old_errno;
Neal Norwitze241ce82003-02-17 18:17:05 +00003981
Fred Drake12c6e2d1999-12-14 21:25:03 +00003982 return result;
3983}
3984#endif
3985
Guido van Rossumad0ee831995-03-01 10:34:45 +00003986#ifdef HAVE_GETUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003987PyDoc_STRVAR(posix_getuid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003988"getuid() -> uid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003989Return the current process's user id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003990
Barry Warsaw53699e91996-12-10 23:23:01 +00003991static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003992posix_getuid(PyObject *self, PyObject *noargs)
Guido van Rossum46003ff1992-05-15 11:05:24 +00003993{
Barry Warsaw53699e91996-12-10 23:23:01 +00003994 return PyInt_FromLong((long)getuid());
Guido van Rossum46003ff1992-05-15 11:05:24 +00003995}
Guido van Rossumad0ee831995-03-01 10:34:45 +00003996#endif
Guido van Rossum46003ff1992-05-15 11:05:24 +00003997
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003998
Guido van Rossumad0ee831995-03-01 10:34:45 +00003999#ifdef HAVE_KILL
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004000PyDoc_STRVAR(posix_kill__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00004001"kill(pid, sig)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004002Kill a process with a signal.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004003
Barry Warsaw53699e91996-12-10 23:23:01 +00004004static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00004005posix_kill(PyObject *self, PyObject *args)
Guido van Rossum85e3b011991-06-03 12:42:10 +00004006{
Christian Heimesd491d712008-02-01 18:49:26 +00004007 pid_t pid;
4008 int sig;
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00004009 if (!PyArg_ParseTuple(args, PARSE_PID "i:kill", &pid, &sig))
Guido van Rossum85e3b011991-06-03 12:42:10 +00004010 return NULL;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004011#if defined(PYOS_OS2) && !defined(PYCC_GCC)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004012 if (sig == XCPT_SIGNAL_INTR || sig == XCPT_SIGNAL_BREAK) {
4013 APIRET rc;
4014 if ((rc = DosSendSignalException(pid, sig)) != NO_ERROR)
Guido van Rossumd48f2521997-12-05 22:19:34 +00004015 return os2_error(rc);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004016
4017 } else if (sig == XCPT_SIGNAL_KILLPROC) {
4018 APIRET rc;
4019 if ((rc = DosKillProcess(DKP_PROCESS, pid)) != NO_ERROR)
Guido van Rossumd48f2521997-12-05 22:19:34 +00004020 return os2_error(rc);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004021
4022 } else
Guido van Rossumc5a0f531997-12-02 20:36:02 +00004023 return NULL; /* Unrecognized Signal Requested */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004024#else
Guido van Rossum85e3b011991-06-03 12:42:10 +00004025 if (kill(pid, sig) == -1)
4026 return posix_error();
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004027#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00004028 Py_INCREF(Py_None);
4029 return Py_None;
Guido van Rossum85e3b011991-06-03 12:42:10 +00004030}
Guido van Rossumad0ee831995-03-01 10:34:45 +00004031#endif
Guido van Rossum85e3b011991-06-03 12:42:10 +00004032
Martin v. Löwisb2c92f42002-02-16 23:35:41 +00004033#ifdef HAVE_KILLPG
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004034PyDoc_STRVAR(posix_killpg__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00004035"killpg(pgid, sig)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004036Kill a process group with a signal.");
Martin v. Löwisb2c92f42002-02-16 23:35:41 +00004037
4038static PyObject *
4039posix_killpg(PyObject *self, PyObject *args)
4040{
Antoine Pitrou76dd2d12009-05-23 16:06:49 +00004041 int sig;
4042 pid_t pgid;
4043 /* XXX some man pages make the `pgid` parameter an int, others
4044 a pid_t. Since getpgrp() returns a pid_t, we assume killpg should
4045 take the same type. Moreover, pid_t is always at least as wide as
4046 int (else compilation of this module fails), which is safe. */
4047 if (!PyArg_ParseTuple(args, PARSE_PID "i:killpg", &pgid, &sig))
Martin v. Löwisb2c92f42002-02-16 23:35:41 +00004048 return NULL;
4049 if (killpg(pgid, sig) == -1)
4050 return posix_error();
4051 Py_INCREF(Py_None);
4052 return Py_None;
4053}
4054#endif
4055
Guido van Rossumc0125471996-06-28 18:55:32 +00004056#ifdef HAVE_PLOCK
4057
4058#ifdef HAVE_SYS_LOCK_H
4059#include <sys/lock.h>
4060#endif
4061
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004062PyDoc_STRVAR(posix_plock__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00004063"plock(op)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004064Lock program segments into memory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004065
Barry Warsaw53699e91996-12-10 23:23:01 +00004066static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00004067posix_plock(PyObject *self, PyObject *args)
Guido van Rossumc0125471996-06-28 18:55:32 +00004068{
4069 int op;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00004070 if (!PyArg_ParseTuple(args, "i:plock", &op))
Guido van Rossumc0125471996-06-28 18:55:32 +00004071 return NULL;
4072 if (plock(op) == -1)
4073 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00004074 Py_INCREF(Py_None);
4075 return Py_None;
Guido van Rossumc0125471996-06-28 18:55:32 +00004076}
4077#endif
4078
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004079
Guido van Rossuma4916fa1996-05-23 22:58:55 +00004080#ifdef HAVE_POPEN
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004081PyDoc_STRVAR(posix_popen__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00004082"popen(command [, mode='r' [, bufsize]]) -> pipe\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004083Open a pipe to/from a command returning a file object.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004084
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004085#if defined(PYOS_OS2)
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004086#if defined(PYCC_VACPP)
Guido van Rossumd48f2521997-12-05 22:19:34 +00004087static int
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004088async_system(const char *command)
4089{
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004090 char errormsg[256], args[1024];
4091 RESULTCODES rcodes;
4092 APIRET rc;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004093
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004094 char *shell = getenv("COMSPEC");
4095 if (!shell)
4096 shell = "cmd";
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004097
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004098 /* avoid overflowing the argument buffer */
4099 if (strlen(shell) + 3 + strlen(command) >= 1024)
4100 return ERROR_NOT_ENOUGH_MEMORY
4101
4102 args[0] = '\0';
4103 strcat(args, shell);
4104 strcat(args, "/c ");
4105 strcat(args, command);
4106
4107 /* execute asynchronously, inheriting the environment */
4108 rc = DosExecPgm(errormsg,
4109 sizeof(errormsg),
4110 EXEC_ASYNC,
4111 args,
4112 NULL,
4113 &rcodes,
4114 shell);
4115 return rc;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004116}
4117
Guido van Rossumd48f2521997-12-05 22:19:34 +00004118static FILE *
4119popen(const char *command, const char *mode, int pipesize, int *err)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004120{
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004121 int oldfd, tgtfd;
4122 HFILE pipeh[2];
4123 APIRET rc;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004124
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004125 /* mode determines which of stdin or stdout is reconnected to
4126 * the pipe to the child
4127 */
4128 if (strchr(mode, 'r') != NULL) {
4129 tgt_fd = 1; /* stdout */
4130 } else if (strchr(mode, 'w')) {
4131 tgt_fd = 0; /* stdin */
4132 } else {
4133 *err = ERROR_INVALID_ACCESS;
4134 return NULL;
4135 }
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004136
Andrew MacIntyrea3be2582004-12-18 09:51:05 +00004137 /* setup the pipe */
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004138 if ((rc = DosCreatePipe(&pipeh[0], &pipeh[1], pipesize)) != NO_ERROR) {
4139 *err = rc;
4140 return NULL;
4141 }
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004142
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004143 /* prevent other threads accessing stdio */
4144 DosEnterCritSec();
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004145
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004146 /* reconnect stdio and execute child */
4147 oldfd = dup(tgtfd);
4148 close(tgtfd);
4149 if (dup2(pipeh[tgtfd], tgtfd) == 0) {
4150 DosClose(pipeh[tgtfd]);
4151 rc = async_system(command);
4152 }
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004153
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004154 /* restore stdio */
4155 dup2(oldfd, tgtfd);
4156 close(oldfd);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004157
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004158 /* allow other threads access to stdio */
4159 DosExitCritSec();
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004160
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004161 /* if execution of child was successful return file stream */
4162 if (rc == NO_ERROR)
4163 return fdopen(pipeh[1 - tgtfd], mode);
4164 else {
4165 DosClose(pipeh[1 - tgtfd]);
4166 *err = rc;
4167 return NULL;
4168 }
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004169}
4170
4171static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00004172posix_popen(PyObject *self, PyObject *args)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004173{
4174 char *name;
4175 char *mode = "r";
Guido van Rossumd48f2521997-12-05 22:19:34 +00004176 int err, bufsize = -1;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004177 FILE *fp;
4178 PyObject *f;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00004179 if (!PyArg_ParseTuple(args, "s|si:popen", &name, &mode, &bufsize))
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004180 return NULL;
4181 Py_BEGIN_ALLOW_THREADS
Guido van Rossumd48f2521997-12-05 22:19:34 +00004182 fp = popen(name, mode, (bufsize > 0) ? bufsize : 4096, &err);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004183 Py_END_ALLOW_THREADS
4184 if (fp == NULL)
Guido van Rossumd48f2521997-12-05 22:19:34 +00004185 return os2_error(err);
4186
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004187 f = PyFile_FromFile(fp, name, mode, fclose);
4188 if (f != NULL)
4189 PyFile_SetBufSize(f, bufsize);
4190 return f;
4191}
4192
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004193#elif defined(PYCC_GCC)
4194
4195/* standard posix version of popen() support */
4196static PyObject *
4197posix_popen(PyObject *self, PyObject *args)
4198{
4199 char *name;
4200 char *mode = "r";
4201 int bufsize = -1;
4202 FILE *fp;
4203 PyObject *f;
4204 if (!PyArg_ParseTuple(args, "s|si:popen", &name, &mode, &bufsize))
4205 return NULL;
4206 Py_BEGIN_ALLOW_THREADS
4207 fp = popen(name, mode);
4208 Py_END_ALLOW_THREADS
4209 if (fp == NULL)
4210 return posix_error();
4211 f = PyFile_FromFile(fp, name, mode, pclose);
4212 if (f != NULL)
4213 PyFile_SetBufSize(f, bufsize);
4214 return f;
4215}
4216
4217/* fork() under OS/2 has lots'o'warts
4218 * EMX supports pipe() and spawn*() so we can synthesize popen[234]()
4219 * most of this code is a ripoff of the win32 code, but using the
4220 * capabilities of EMX's C library routines
4221 */
4222
4223/* These tell _PyPopen() whether to return 1, 2, or 3 file objects. */
4224#define POPEN_1 1
4225#define POPEN_2 2
4226#define POPEN_3 3
4227#define POPEN_4 4
4228
4229static PyObject *_PyPopen(char *, int, int, int);
4230static int _PyPclose(FILE *file);
4231
4232/*
4233 * Internal dictionary mapping popen* file pointers to process handles,
4234 * for use when retrieving the process exit code. See _PyPclose() below
4235 * for more information on this dictionary's use.
4236 */
4237static PyObject *_PyPopenProcs = NULL;
4238
4239/* os2emx version of popen2()
4240 *
4241 * The result of this function is a pipe (file) connected to the
4242 * process's stdin, and a pipe connected to the process's stdout.
4243 */
4244
4245static PyObject *
4246os2emx_popen2(PyObject *self, PyObject *args)
4247{
4248 PyObject *f;
4249 int tm=0;
4250
4251 char *cmdstring;
4252 char *mode = "t";
4253 int bufsize = -1;
4254 if (!PyArg_ParseTuple(args, "s|si:popen2", &cmdstring, &mode, &bufsize))
4255 return NULL;
4256
4257 if (*mode == 't')
4258 tm = O_TEXT;
4259 else if (*mode != 'b') {
4260 PyErr_SetString(PyExc_ValueError, "mode must be 't' or 'b'");
4261 return NULL;
4262 } else
4263 tm = O_BINARY;
4264
4265 f = _PyPopen(cmdstring, tm, POPEN_2, bufsize);
4266
4267 return f;
4268}
4269
4270/*
4271 * Variation on os2emx.popen2
4272 *
4273 * The result of this function is 3 pipes - the process's stdin,
4274 * stdout and stderr
4275 */
4276
4277static PyObject *
4278os2emx_popen3(PyObject *self, PyObject *args)
4279{
4280 PyObject *f;
4281 int tm = 0;
4282
4283 char *cmdstring;
4284 char *mode = "t";
4285 int bufsize = -1;
4286 if (!PyArg_ParseTuple(args, "s|si:popen3", &cmdstring, &mode, &bufsize))
4287 return NULL;
4288
4289 if (*mode == 't')
4290 tm = O_TEXT;
4291 else if (*mode != 'b') {
4292 PyErr_SetString(PyExc_ValueError, "mode must be 't' or 'b'");
4293 return NULL;
4294 } else
4295 tm = O_BINARY;
4296
4297 f = _PyPopen(cmdstring, tm, POPEN_3, bufsize);
4298
4299 return f;
4300}
4301
4302/*
4303 * Variation on os2emx.popen2
4304 *
Tim Peters11b23062003-04-23 02:39:17 +00004305 * The result of this function is 2 pipes - the processes stdin,
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004306 * and stdout+stderr combined as a single pipe.
4307 */
4308
4309static PyObject *
4310os2emx_popen4(PyObject *self, PyObject *args)
4311{
4312 PyObject *f;
4313 int tm = 0;
4314
4315 char *cmdstring;
4316 char *mode = "t";
4317 int bufsize = -1;
4318 if (!PyArg_ParseTuple(args, "s|si:popen4", &cmdstring, &mode, &bufsize))
4319 return NULL;
4320
4321 if (*mode == 't')
4322 tm = O_TEXT;
4323 else if (*mode != 'b') {
4324 PyErr_SetString(PyExc_ValueError, "mode must be 't' or 'b'");
4325 return NULL;
4326 } else
4327 tm = O_BINARY;
4328
4329 f = _PyPopen(cmdstring, tm, POPEN_4, bufsize);
4330
4331 return f;
4332}
4333
4334/* a couple of structures for convenient handling of multiple
4335 * file handles and pipes
4336 */
4337struct file_ref
4338{
4339 int handle;
4340 int flags;
4341};
4342
4343struct pipe_ref
4344{
4345 int rd;
4346 int wr;
4347};
4348
4349/* The following code is derived from the win32 code */
4350
4351static PyObject *
4352_PyPopen(char *cmdstring, int mode, int n, int bufsize)
4353{
4354 struct file_ref stdio[3];
4355 struct pipe_ref p_fd[3];
4356 FILE *p_s[3];
Christian Heimesd491d712008-02-01 18:49:26 +00004357 int file_count, i, pipe_err;
4358 pid_t pipe_pid;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004359 char *shell, *sh_name, *opt, *rd_mode, *wr_mode;
4360 PyObject *f, *p_f[3];
4361
4362 /* file modes for subsequent fdopen's on pipe handles */
4363 if (mode == O_TEXT)
4364 {
4365 rd_mode = "rt";
4366 wr_mode = "wt";
4367 }
4368 else
4369 {
4370 rd_mode = "rb";
4371 wr_mode = "wb";
4372 }
4373
4374 /* prepare shell references */
4375 if ((shell = getenv("EMXSHELL")) == NULL)
4376 if ((shell = getenv("COMSPEC")) == NULL)
4377 {
4378 errno = ENOENT;
4379 return posix_error();
4380 }
4381
4382 sh_name = _getname(shell);
4383 if (stricmp(sh_name, "cmd.exe") == 0 || stricmp(sh_name, "4os2.exe") == 0)
4384 opt = "/c";
4385 else
4386 opt = "-c";
4387
4388 /* save current stdio fds + their flags, and set not inheritable */
4389 i = pipe_err = 0;
4390 while (pipe_err >= 0 && i < 3)
4391 {
4392 pipe_err = stdio[i].handle = dup(i);
4393 stdio[i].flags = fcntl(i, F_GETFD, 0);
4394 fcntl(stdio[i].handle, F_SETFD, stdio[i].flags | FD_CLOEXEC);
4395 i++;
4396 }
4397 if (pipe_err < 0)
4398 {
4399 /* didn't get them all saved - clean up and bail out */
4400 int saved_err = errno;
4401 while (i-- > 0)
4402 {
4403 close(stdio[i].handle);
4404 }
4405 errno = saved_err;
4406 return posix_error();
4407 }
4408
4409 /* create pipe ends */
4410 file_count = 2;
4411 if (n == POPEN_3)
4412 file_count = 3;
4413 i = pipe_err = 0;
4414 while ((pipe_err == 0) && (i < file_count))
4415 pipe_err = pipe((int *)&p_fd[i++]);
4416 if (pipe_err < 0)
4417 {
4418 /* didn't get them all made - clean up and bail out */
4419 while (i-- > 0)
4420 {
4421 close(p_fd[i].wr);
4422 close(p_fd[i].rd);
4423 }
4424 errno = EPIPE;
4425 return posix_error();
4426 }
4427
4428 /* change the actual standard IO streams over temporarily,
4429 * making the retained pipe ends non-inheritable
4430 */
4431 pipe_err = 0;
4432
4433 /* - stdin */
4434 if (dup2(p_fd[0].rd, 0) == 0)
4435 {
4436 close(p_fd[0].rd);
4437 i = fcntl(p_fd[0].wr, F_GETFD, 0);
4438 fcntl(p_fd[0].wr, F_SETFD, i | FD_CLOEXEC);
4439 if ((p_s[0] = fdopen(p_fd[0].wr, wr_mode)) == NULL)
4440 {
4441 close(p_fd[0].wr);
4442 pipe_err = -1;
4443 }
4444 }
4445 else
4446 {
4447 pipe_err = -1;
4448 }
4449
4450 /* - stdout */
4451 if (pipe_err == 0)
4452 {
4453 if (dup2(p_fd[1].wr, 1) == 1)
4454 {
4455 close(p_fd[1].wr);
4456 i = fcntl(p_fd[1].rd, F_GETFD, 0);
4457 fcntl(p_fd[1].rd, F_SETFD, i | FD_CLOEXEC);
4458 if ((p_s[1] = fdopen(p_fd[1].rd, rd_mode)) == NULL)
4459 {
4460 close(p_fd[1].rd);
4461 pipe_err = -1;
4462 }
4463 }
4464 else
4465 {
4466 pipe_err = -1;
4467 }
4468 }
4469
4470 /* - stderr, as required */
4471 if (pipe_err == 0)
4472 switch (n)
4473 {
4474 case POPEN_3:
4475 {
4476 if (dup2(p_fd[2].wr, 2) == 2)
4477 {
4478 close(p_fd[2].wr);
4479 i = fcntl(p_fd[2].rd, F_GETFD, 0);
4480 fcntl(p_fd[2].rd, F_SETFD, i | FD_CLOEXEC);
4481 if ((p_s[2] = fdopen(p_fd[2].rd, rd_mode)) == NULL)
4482 {
4483 close(p_fd[2].rd);
4484 pipe_err = -1;
4485 }
4486 }
4487 else
4488 {
4489 pipe_err = -1;
4490 }
4491 break;
4492 }
4493
4494 case POPEN_4:
4495 {
4496 if (dup2(1, 2) != 2)
4497 {
4498 pipe_err = -1;
4499 }
4500 break;
4501 }
4502 }
4503
4504 /* spawn the child process */
4505 if (pipe_err == 0)
4506 {
4507 pipe_pid = spawnlp(P_NOWAIT, shell, shell, opt, cmdstring, (char *)0);
4508 if (pipe_pid == -1)
4509 {
4510 pipe_err = -1;
4511 }
4512 else
4513 {
4514 /* save the PID into the FILE structure
4515 * NOTE: this implementation doesn't actually
4516 * take advantage of this, but do it for
4517 * completeness - AIM Apr01
4518 */
4519 for (i = 0; i < file_count; i++)
4520 p_s[i]->_pid = pipe_pid;
4521 }
4522 }
4523
4524 /* reset standard IO to normal */
4525 for (i = 0; i < 3; i++)
4526 {
4527 dup2(stdio[i].handle, i);
4528 fcntl(i, F_SETFD, stdio[i].flags);
4529 close(stdio[i].handle);
4530 }
4531
4532 /* if any remnant problems, clean up and bail out */
4533 if (pipe_err < 0)
4534 {
4535 for (i = 0; i < 3; i++)
4536 {
4537 close(p_fd[i].rd);
4538 close(p_fd[i].wr);
4539 }
4540 errno = EPIPE;
4541 return posix_error_with_filename(cmdstring);
4542 }
4543
4544 /* build tuple of file objects to return */
4545 if ((p_f[0] = PyFile_FromFile(p_s[0], cmdstring, wr_mode, _PyPclose)) != NULL)
4546 PyFile_SetBufSize(p_f[0], bufsize);
4547 if ((p_f[1] = PyFile_FromFile(p_s[1], cmdstring, rd_mode, _PyPclose)) != NULL)
4548 PyFile_SetBufSize(p_f[1], bufsize);
4549 if (n == POPEN_3)
4550 {
4551 if ((p_f[2] = PyFile_FromFile(p_s[2], cmdstring, rd_mode, _PyPclose)) != NULL)
4552 PyFile_SetBufSize(p_f[0], bufsize);
Raymond Hettinger8ae46892003-10-12 19:09:37 +00004553 f = PyTuple_Pack(3, p_f[0], p_f[1], p_f[2]);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004554 }
4555 else
Raymond Hettinger8ae46892003-10-12 19:09:37 +00004556 f = PyTuple_Pack(2, p_f[0], p_f[1]);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004557
4558 /*
4559 * Insert the files we've created into the process dictionary
4560 * all referencing the list with the process handle and the
4561 * initial number of files (see description below in _PyPclose).
4562 * Since if _PyPclose later tried to wait on a process when all
4563 * handles weren't closed, it could create a deadlock with the
4564 * child, we spend some energy here to try to ensure that we
4565 * either insert all file handles into the dictionary or none
4566 * at all. It's a little clumsy with the various popen modes
4567 * and variable number of files involved.
4568 */
4569 if (!_PyPopenProcs)
4570 {
4571 _PyPopenProcs = PyDict_New();
4572 }
4573
4574 if (_PyPopenProcs)
4575 {
4576 PyObject *procObj, *pidObj, *intObj, *fileObj[3];
4577 int ins_rc[3];
4578
4579 fileObj[0] = fileObj[1] = fileObj[2] = NULL;
4580 ins_rc[0] = ins_rc[1] = ins_rc[2] = 0;
4581
4582 procObj = PyList_New(2);
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00004583 pidObj = PyLong_FromPid(pipe_pid);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004584 intObj = PyInt_FromLong((long) file_count);
4585
4586 if (procObj && pidObj && intObj)
4587 {
4588 PyList_SetItem(procObj, 0, pidObj);
4589 PyList_SetItem(procObj, 1, intObj);
4590
4591 fileObj[0] = PyLong_FromVoidPtr(p_s[0]);
4592 if (fileObj[0])
4593 {
4594 ins_rc[0] = PyDict_SetItem(_PyPopenProcs,
4595 fileObj[0],
4596 procObj);
4597 }
4598 fileObj[1] = PyLong_FromVoidPtr(p_s[1]);
4599 if (fileObj[1])
4600 {
4601 ins_rc[1] = PyDict_SetItem(_PyPopenProcs,
4602 fileObj[1],
4603 procObj);
4604 }
4605 if (file_count >= 3)
4606 {
4607 fileObj[2] = PyLong_FromVoidPtr(p_s[2]);
4608 if (fileObj[2])
4609 {
4610 ins_rc[2] = PyDict_SetItem(_PyPopenProcs,
4611 fileObj[2],
4612 procObj);
4613 }
4614 }
4615
4616 if (ins_rc[0] < 0 || !fileObj[0] ||
4617 ins_rc[1] < 0 || (file_count > 1 && !fileObj[1]) ||
4618 ins_rc[2] < 0 || (file_count > 2 && !fileObj[2]))
4619 {
4620 /* Something failed - remove any dictionary
4621 * entries that did make it.
4622 */
4623 if (!ins_rc[0] && fileObj[0])
4624 {
4625 PyDict_DelItem(_PyPopenProcs,
4626 fileObj[0]);
4627 }
4628 if (!ins_rc[1] && fileObj[1])
4629 {
4630 PyDict_DelItem(_PyPopenProcs,
4631 fileObj[1]);
4632 }
4633 if (!ins_rc[2] && fileObj[2])
4634 {
4635 PyDict_DelItem(_PyPopenProcs,
4636 fileObj[2]);
4637 }
4638 }
4639 }
Tim Peters11b23062003-04-23 02:39:17 +00004640
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004641 /*
4642 * Clean up our localized references for the dictionary keys
4643 * and value since PyDict_SetItem will Py_INCREF any copies
4644 * that got placed in the dictionary.
4645 */
4646 Py_XDECREF(procObj);
4647 Py_XDECREF(fileObj[0]);
4648 Py_XDECREF(fileObj[1]);
4649 Py_XDECREF(fileObj[2]);
4650 }
4651
4652 /* Child is launched. */
4653 return f;
4654}
4655
4656/*
4657 * Wrapper for fclose() to use for popen* files, so we can retrieve the
4658 * exit code for the child process and return as a result of the close.
4659 *
4660 * This function uses the _PyPopenProcs dictionary in order to map the
4661 * input file pointer to information about the process that was
4662 * originally created by the popen* call that created the file pointer.
4663 * The dictionary uses the file pointer as a key (with one entry
4664 * inserted for each file returned by the original popen* call) and a
4665 * single list object as the value for all files from a single call.
4666 * The list object contains the Win32 process handle at [0], and a file
4667 * count at [1], which is initialized to the total number of file
4668 * handles using that list.
4669 *
4670 * This function closes whichever handle it is passed, and decrements
4671 * the file count in the dictionary for the process handle pointed to
4672 * by this file. On the last close (when the file count reaches zero),
4673 * this function will wait for the child process and then return its
4674 * exit code as the result of the close() operation. This permits the
4675 * files to be closed in any order - it is always the close() of the
4676 * final handle that will return the exit code.
Andrew MacIntyrebaf25b02003-04-21 14:22:36 +00004677 *
4678 * NOTE: This function is currently called with the GIL released.
4679 * hence we use the GILState API to manage our state.
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004680 */
4681
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004682static int _PyPclose(FILE *file)
4683{
4684 int result;
4685 int exit_code;
Christian Heimesd491d712008-02-01 18:49:26 +00004686 pid_t pipe_pid;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004687 PyObject *procObj, *pidObj, *intObj, *fileObj;
4688 int file_count;
4689#ifdef WITH_THREAD
Andrew MacIntyrebaf25b02003-04-21 14:22:36 +00004690 PyGILState_STATE state;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004691#endif
4692
4693 /* Close the file handle first, to ensure it can't block the
4694 * child from exiting if it's the last handle.
4695 */
4696 result = fclose(file);
4697
4698#ifdef WITH_THREAD
Andrew MacIntyrebaf25b02003-04-21 14:22:36 +00004699 state = PyGILState_Ensure();
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004700#endif
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004701 if (_PyPopenProcs)
4702 {
4703 if ((fileObj = PyLong_FromVoidPtr(file)) != NULL &&
4704 (procObj = PyDict_GetItem(_PyPopenProcs,
4705 fileObj)) != NULL &&
4706 (pidObj = PyList_GetItem(procObj,0)) != NULL &&
4707 (intObj = PyList_GetItem(procObj,1)) != NULL)
4708 {
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00004709 pipe_pid = (pid_t) PyLong_AsPid(pidObj);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004710 file_count = (int) PyInt_AsLong(intObj);
4711
4712 if (file_count > 1)
4713 {
4714 /* Still other files referencing process */
4715 file_count--;
4716 PyList_SetItem(procObj,1,
4717 PyInt_FromLong((long) file_count));
4718 }
4719 else
4720 {
4721 /* Last file for this process */
4722 if (result != EOF &&
4723 waitpid(pipe_pid, &exit_code, 0) == pipe_pid)
4724 {
4725 /* extract exit status */
4726 if (WIFEXITED(exit_code))
4727 {
4728 result = WEXITSTATUS(exit_code);
4729 }
4730 else
4731 {
4732 errno = EPIPE;
4733 result = -1;
4734 }
4735 }
4736 else
4737 {
4738 /* Indicate failure - this will cause the file object
4739 * to raise an I/O error and translate the last
4740 * error code from errno. We do have a problem with
4741 * last errors that overlap the normal errno table,
4742 * but that's a consistent problem with the file object.
4743 */
4744 result = -1;
4745 }
4746 }
4747
4748 /* Remove this file pointer from dictionary */
4749 PyDict_DelItem(_PyPopenProcs, fileObj);
4750
4751 if (PyDict_Size(_PyPopenProcs) == 0)
4752 {
4753 Py_DECREF(_PyPopenProcs);
4754 _PyPopenProcs = NULL;
4755 }
4756
4757 } /* if object retrieval ok */
4758
4759 Py_XDECREF(fileObj);
4760 } /* if _PyPopenProcs */
4761
4762#ifdef WITH_THREAD
Andrew MacIntyrebaf25b02003-04-21 14:22:36 +00004763 PyGILState_Release(state);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004764#endif
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004765 return result;
4766}
4767
4768#endif /* PYCC_??? */
4769
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00004770#elif defined(MS_WINDOWS)
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004771
4772/*
4773 * Portable 'popen' replacement for Win32.
4774 *
4775 * Written by Bill Tutt <billtut@microsoft.com>. Minor tweaks
4776 * and 2.0 integration by Fredrik Lundh <fredrik@pythonware.com>
Mark Hammondb37a3732000-08-14 04:47:33 +00004777 * Return code handling by David Bolen <db3l@fitlinxx.com>.
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004778 */
4779
4780#include <malloc.h>
4781#include <io.h>
4782#include <fcntl.h>
4783
4784/* These tell _PyPopen() wether to return 1, 2, or 3 file objects. */
4785#define POPEN_1 1
4786#define POPEN_2 2
4787#define POPEN_3 3
4788#define POPEN_4 4
4789
4790static PyObject *_PyPopen(char *, int, int);
Fredrik Lundh56055a42000-07-23 19:47:12 +00004791static int _PyPclose(FILE *file);
4792
4793/*
4794 * Internal dictionary mapping popen* file pointers to process handles,
Mark Hammondb37a3732000-08-14 04:47:33 +00004795 * for use when retrieving the process exit code. See _PyPclose() below
4796 * for more information on this dictionary's use.
Fredrik Lundh56055a42000-07-23 19:47:12 +00004797 */
4798static PyObject *_PyPopenProcs = NULL;
4799
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004800
4801/* popen that works from a GUI.
4802 *
4803 * The result of this function is a pipe (file) connected to the
4804 * processes stdin or stdout, depending on the requested mode.
4805 */
4806
4807static PyObject *
4808posix_popen(PyObject *self, PyObject *args)
4809{
Raymond Hettingerb5cb6652003-09-01 22:25:41 +00004810 PyObject *f;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004811 int tm = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00004812
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004813 char *cmdstring;
4814 char *mode = "r";
Fredrik Lundhbb7eeff2000-07-09 17:59:32 +00004815 int bufsize = -1;
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004816 if (!PyArg_ParseTuple(args, "s|si:popen", &cmdstring, &mode, &bufsize))
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004817 return NULL;
4818
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004819 if (*mode == 'r')
4820 tm = _O_RDONLY;
4821 else if (*mode != 'w') {
Fred Drake661ea262000-10-24 19:57:45 +00004822 PyErr_SetString(PyExc_ValueError, "popen() arg 2 must be 'r' or 'w'");
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004823 return NULL;
4824 } else
4825 tm = _O_WRONLY;
Tim Peters5aa91602002-01-30 05:46:57 +00004826
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004827 if (bufsize != -1) {
Fred Drake661ea262000-10-24 19:57:45 +00004828 PyErr_SetString(PyExc_ValueError, "popen() arg 3 must be -1");
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004829 return NULL;
4830 }
4831
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004832 if (*(mode+1) == 't')
Fredrik Lundhbb7eeff2000-07-09 17:59:32 +00004833 f = _PyPopen(cmdstring, tm | _O_TEXT, POPEN_1);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004834 else if (*(mode+1) == 'b')
Fredrik Lundhbb7eeff2000-07-09 17:59:32 +00004835 f = _PyPopen(cmdstring, tm | _O_BINARY, POPEN_1);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004836 else
4837 f = _PyPopen(cmdstring, tm | _O_TEXT, POPEN_1);
4838
4839 return f;
4840}
4841
4842/* Variation on win32pipe.popen
4843 *
4844 * The result of this function is a pipe (file) connected to the
4845 * process's stdin, and a pipe connected to the process's stdout.
4846 */
4847
4848static PyObject *
4849win32_popen2(PyObject *self, PyObject *args)
4850{
4851 PyObject *f;
4852 int tm=0;
Tim Peters5aa91602002-01-30 05:46:57 +00004853
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004854 char *cmdstring;
4855 char *mode = "t";
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004856 int bufsize = -1;
4857 if (!PyArg_ParseTuple(args, "s|si:popen2", &cmdstring, &mode, &bufsize))
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004858 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00004859
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004860 if (*mode == 't')
4861 tm = _O_TEXT;
4862 else if (*mode != 'b') {
Fred Drake661ea262000-10-24 19:57:45 +00004863 PyErr_SetString(PyExc_ValueError, "popen2() arg 2 must be 't' or 'b'");
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004864 return NULL;
4865 } else
4866 tm = _O_BINARY;
Tim Peters5aa91602002-01-30 05:46:57 +00004867
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004868 if (bufsize != -1) {
Fred Drake661ea262000-10-24 19:57:45 +00004869 PyErr_SetString(PyExc_ValueError, "popen2() arg 3 must be -1");
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004870 return NULL;
4871 }
4872
4873 f = _PyPopen(cmdstring, tm, POPEN_2);
Tim Peters5aa91602002-01-30 05:46:57 +00004874
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004875 return f;
4876}
4877
4878/*
4879 * Variation on <om win32pipe.popen>
Fredrik Lundhbb7eeff2000-07-09 17:59:32 +00004880 *
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004881 * The result of this function is 3 pipes - the process's stdin,
4882 * stdout and stderr
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004883 */
4884
4885static PyObject *
4886win32_popen3(PyObject *self, PyObject *args)
4887{
4888 PyObject *f;
4889 int tm = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00004890
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004891 char *cmdstring;
4892 char *mode = "t";
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004893 int bufsize = -1;
4894 if (!PyArg_ParseTuple(args, "s|si:popen3", &cmdstring, &mode, &bufsize))
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004895 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00004896
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004897 if (*mode == 't')
4898 tm = _O_TEXT;
4899 else if (*mode != 'b') {
Fred Drake661ea262000-10-24 19:57:45 +00004900 PyErr_SetString(PyExc_ValueError, "popen3() arg 2 must be 't' or 'b'");
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004901 return NULL;
4902 } else
4903 tm = _O_BINARY;
Tim Peters5aa91602002-01-30 05:46:57 +00004904
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004905 if (bufsize != -1) {
Fred Drake661ea262000-10-24 19:57:45 +00004906 PyErr_SetString(PyExc_ValueError, "popen3() arg 3 must be -1");
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004907 return NULL;
4908 }
4909
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004910 f = _PyPopen(cmdstring, tm, POPEN_3);
Tim Peters5aa91602002-01-30 05:46:57 +00004911
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004912 return f;
4913}
4914
4915/*
4916 * Variation on win32pipe.popen
4917 *
Tim Peters5aa91602002-01-30 05:46:57 +00004918 * The result of this function is 2 pipes - the processes stdin,
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004919 * and stdout+stderr combined as a single pipe.
4920 */
4921
4922static PyObject *
4923win32_popen4(PyObject *self, PyObject *args)
4924{
4925 PyObject *f;
4926 int tm = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00004927
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004928 char *cmdstring;
4929 char *mode = "t";
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004930 int bufsize = -1;
4931 if (!PyArg_ParseTuple(args, "s|si:popen4", &cmdstring, &mode, &bufsize))
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004932 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00004933
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004934 if (*mode == 't')
4935 tm = _O_TEXT;
4936 else if (*mode != 'b') {
Fred Drake661ea262000-10-24 19:57:45 +00004937 PyErr_SetString(PyExc_ValueError, "popen4() arg 2 must be 't' or 'b'");
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004938 return NULL;
4939 } else
4940 tm = _O_BINARY;
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004941
4942 if (bufsize != -1) {
Fred Drake661ea262000-10-24 19:57:45 +00004943 PyErr_SetString(PyExc_ValueError, "popen4() arg 3 must be -1");
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004944 return NULL;
4945 }
4946
Fredrik Lundhbb7eeff2000-07-09 17:59:32 +00004947 f = _PyPopen(cmdstring, tm, POPEN_4);
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004948
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004949 return f;
4950}
4951
Mark Hammond08501372001-01-31 07:30:29 +00004952static BOOL
Mark Hammondb37a3732000-08-14 04:47:33 +00004953_PyPopenCreateProcess(char *cmdstring,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00004954 HANDLE hStdin,
4955 HANDLE hStdout,
Mark Hammondb37a3732000-08-14 04:47:33 +00004956 HANDLE hStderr,
4957 HANDLE *hProcess)
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004958{
4959 PROCESS_INFORMATION piProcInfo;
4960 STARTUPINFO siStartInfo;
Mark Hammondfe51c6d2002-08-02 02:27:13 +00004961 DWORD dwProcessFlags = 0; /* no NEW_CONSOLE by default for Ctrl+C handling */
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004962 char *s1,*s2, *s3 = " /c ";
Mark Hammond08501372001-01-31 07:30:29 +00004963 const char *szConsoleSpawn = "w9xpopen.exe";
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004964 int i;
Martin v. Löwis18e16552006-02-15 17:27:45 +00004965 Py_ssize_t x;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004966
4967 if (i = GetEnvironmentVariable("COMSPEC",NULL,0)) {
Tim Peters402d5982001-08-27 06:37:48 +00004968 char *comshell;
4969
Tim Peters92e4dd82002-10-05 01:47:34 +00004970 s1 = (char *)alloca(i);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004971 if (!(x = GetEnvironmentVariable("COMSPEC", s1, i)))
Martin v. Löwis18e16552006-02-15 17:27:45 +00004972 /* x < i, so x fits into an integer */
4973 return (int)x;
Tim Peters402d5982001-08-27 06:37:48 +00004974
4975 /* Explicitly check if we are using COMMAND.COM. If we are
4976 * then use the w9xpopen hack.
4977 */
4978 comshell = s1 + x;
4979 while (comshell >= s1 && *comshell != '\\')
4980 --comshell;
4981 ++comshell;
4982
4983 if (GetVersion() < 0x80000000 &&
4984 _stricmp(comshell, "command.com") != 0) {
4985 /* NT/2000 and not using command.com. */
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004986 x = i + strlen(s3) + strlen(cmdstring) + 1;
Tim Peters92e4dd82002-10-05 01:47:34 +00004987 s2 = (char *)alloca(x);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004988 ZeroMemory(s2, x);
Tim Peters75cdad52001-11-28 22:07:30 +00004989 PyOS_snprintf(s2, x, "%s%s%s", s1, s3, cmdstring);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004990 }
4991 else {
4992 /*
Tim Peters402d5982001-08-27 06:37:48 +00004993 * Oh gag, we're on Win9x or using COMMAND.COM. Use
4994 * the workaround listed in KB: Q150956
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004995 */
Mark Hammond08501372001-01-31 07:30:29 +00004996 char modulepath[_MAX_PATH];
4997 struct stat statinfo;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004998 GetModuleFileName(NULL, modulepath, sizeof(modulepath));
Martin v. Löwis26fd9602006-04-22 11:15:41 +00004999 for (x = i = 0; modulepath[i]; i++)
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00005000 if (modulepath[i] == SEP)
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005001 x = i+1;
5002 modulepath[x] = '\0';
Mark Hammond08501372001-01-31 07:30:29 +00005003 /* Create the full-name to w9xpopen, so we can test it exists */
Tim Peters5aa91602002-01-30 05:46:57 +00005004 strncat(modulepath,
5005 szConsoleSpawn,
Mark Hammond08501372001-01-31 07:30:29 +00005006 (sizeof(modulepath)/sizeof(modulepath[0]))
5007 -strlen(modulepath));
5008 if (stat(modulepath, &statinfo) != 0) {
Kristján Valur Jónsson17b8e972007-04-25 00:10:50 +00005009 size_t mplen = sizeof(modulepath)/sizeof(modulepath[0]);
Tim Peters5aa91602002-01-30 05:46:57 +00005010 /* Eeek - file-not-found - possibly an embedding
5011 situation - see if we can locate it in sys.prefix
Mark Hammond08501372001-01-31 07:30:29 +00005012 */
Tim Peters5aa91602002-01-30 05:46:57 +00005013 strncpy(modulepath,
5014 Py_GetExecPrefix(),
Kristján Valur Jónsson17b8e972007-04-25 00:10:50 +00005015 mplen);
5016 modulepath[mplen-1] = '\0';
Mark Hammond08501372001-01-31 07:30:29 +00005017 if (modulepath[strlen(modulepath)-1] != '\\')
5018 strcat(modulepath, "\\");
Tim Peters5aa91602002-01-30 05:46:57 +00005019 strncat(modulepath,
5020 szConsoleSpawn,
Kristján Valur Jónsson17b8e972007-04-25 00:10:50 +00005021 mplen-strlen(modulepath));
Mark Hammond08501372001-01-31 07:30:29 +00005022 /* No where else to look - raise an easily identifiable
5023 error, rather than leaving Windows to report
5024 "file not found" - as the user is probably blissfully
5025 unaware this shim EXE is used, and it will confuse them.
5026 (well, it confused me for a while ;-)
5027 */
5028 if (stat(modulepath, &statinfo) != 0) {
Tim Peters5aa91602002-01-30 05:46:57 +00005029 PyErr_Format(PyExc_RuntimeError,
Mark Hammond08501372001-01-31 07:30:29 +00005030 "Can not locate '%s' which is needed "
Tim Peters402d5982001-08-27 06:37:48 +00005031 "for popen to work with your shell "
5032 "or platform.",
Mark Hammond08501372001-01-31 07:30:29 +00005033 szConsoleSpawn);
5034 return FALSE;
5035 }
5036 }
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005037 x = i + strlen(s3) + strlen(cmdstring) + 1 +
Tim Peters5aa91602002-01-30 05:46:57 +00005038 strlen(modulepath) +
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005039 strlen(szConsoleSpawn) + 1;
Mark Hammond08501372001-01-31 07:30:29 +00005040
Tim Peters92e4dd82002-10-05 01:47:34 +00005041 s2 = (char *)alloca(x);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005042 ZeroMemory(s2, x);
Mark Hammonde7fefbf2002-04-03 01:47:00 +00005043 /* To maintain correct argument passing semantics,
5044 we pass the command-line as it stands, and allow
5045 quoting to be applied. w9xpopen.exe will then
5046 use its argv vector, and re-quote the necessary
5047 args for the ultimate child process.
5048 */
Tim Peters75cdad52001-11-28 22:07:30 +00005049 PyOS_snprintf(
5050 s2, x,
Mark Hammonde7fefbf2002-04-03 01:47:00 +00005051 "\"%s\" %s%s%s",
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005052 modulepath,
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005053 s1,
5054 s3,
5055 cmdstring);
Mark Hammondfe51c6d2002-08-02 02:27:13 +00005056 /* Not passing CREATE_NEW_CONSOLE has been known to
Tim Peters11b23062003-04-23 02:39:17 +00005057 cause random failures on win9x. Specifically a
Mark Hammondfe51c6d2002-08-02 02:27:13 +00005058 dialog:
5059 "Your program accessed mem currently in use at xxx"
5060 and a hopeful warning about the stability of your
5061 system.
Mark Dickinson3e4caeb2009-02-21 20:27:01 +00005062 Cost is Ctrl+C won't kill children, but anyone
Mark Hammondfe51c6d2002-08-02 02:27:13 +00005063 who cares can have a go!
5064 */
5065 dwProcessFlags |= CREATE_NEW_CONSOLE;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005066 }
5067 }
5068
5069 /* Could be an else here to try cmd.exe / command.com in the path
5070 Now we'll just error out.. */
Mark Hammond08501372001-01-31 07:30:29 +00005071 else {
Tim Peters402d5982001-08-27 06:37:48 +00005072 PyErr_SetString(PyExc_RuntimeError,
5073 "Cannot locate a COMSPEC environment variable to "
5074 "use as the shell");
Mark Hammond08501372001-01-31 07:30:29 +00005075 return FALSE;
5076 }
Tim Peters5aa91602002-01-30 05:46:57 +00005077
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005078 ZeroMemory(&siStartInfo, sizeof(STARTUPINFO));
5079 siStartInfo.cb = sizeof(STARTUPINFO);
5080 siStartInfo.dwFlags = STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW;
5081 siStartInfo.hStdInput = hStdin;
5082 siStartInfo.hStdOutput = hStdout;
5083 siStartInfo.hStdError = hStderr;
5084 siStartInfo.wShowWindow = SW_HIDE;
5085
5086 if (CreateProcess(NULL,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005087 s2,
5088 NULL,
5089 NULL,
5090 TRUE,
Mark Hammondfe51c6d2002-08-02 02:27:13 +00005091 dwProcessFlags,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005092 NULL,
5093 NULL,
5094 &siStartInfo,
5095 &piProcInfo) ) {
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005096 /* Close the handles now so anyone waiting is woken. */
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005097 CloseHandle(piProcInfo.hThread);
Fredrik Lundh56055a42000-07-23 19:47:12 +00005098
Mark Hammondb37a3732000-08-14 04:47:33 +00005099 /* Return process handle */
5100 *hProcess = piProcInfo.hProcess;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005101 return TRUE;
5102 }
Tim Peters402d5982001-08-27 06:37:48 +00005103 win32_error("CreateProcess", s2);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005104 return FALSE;
5105}
5106
5107/* The following code is based off of KB: Q190351 */
5108
5109static PyObject *
5110_PyPopen(char *cmdstring, int mode, int n)
5111{
5112 HANDLE hChildStdinRd, hChildStdinWr, hChildStdoutRd, hChildStdoutWr,
5113 hChildStderrRd, hChildStderrWr, hChildStdinWrDup, hChildStdoutRdDup,
Mark Hammondb37a3732000-08-14 04:47:33 +00005114 hChildStderrRdDup, hProcess; /* hChildStdoutWrDup; */
Tim Peters5aa91602002-01-30 05:46:57 +00005115
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005116 SECURITY_ATTRIBUTES saAttr;
5117 BOOL fSuccess;
5118 int fd1, fd2, fd3;
5119 FILE *f1, *f2, *f3;
Mark Hammondb37a3732000-08-14 04:47:33 +00005120 long file_count;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005121 PyObject *f;
5122
5123 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
5124 saAttr.bInheritHandle = TRUE;
5125 saAttr.lpSecurityDescriptor = NULL;
5126
5127 if (!CreatePipe(&hChildStdinRd, &hChildStdinWr, &saAttr, 0))
5128 return win32_error("CreatePipe", NULL);
5129
5130 /* Create new output read handle and the input write handle. Set
5131 * the inheritance properties to FALSE. Otherwise, the child inherits
Walter Dörwaldf0dfc7a2003-10-20 14:01:56 +00005132 * these handles; resulting in non-closeable handles to the pipes
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005133 * being created. */
5134 fSuccess = DuplicateHandle(GetCurrentProcess(), hChildStdinWr,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005135 GetCurrentProcess(), &hChildStdinWrDup, 0,
5136 FALSE,
5137 DUPLICATE_SAME_ACCESS);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005138 if (!fSuccess)
5139 return win32_error("DuplicateHandle", NULL);
5140
5141 /* Close the inheritable version of ChildStdin
5142 that we're using. */
5143 CloseHandle(hChildStdinWr);
5144
5145 if (!CreatePipe(&hChildStdoutRd, &hChildStdoutWr, &saAttr, 0))
5146 return win32_error("CreatePipe", NULL);
5147
5148 fSuccess = DuplicateHandle(GetCurrentProcess(), hChildStdoutRd,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005149 GetCurrentProcess(), &hChildStdoutRdDup, 0,
5150 FALSE, DUPLICATE_SAME_ACCESS);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005151 if (!fSuccess)
5152 return win32_error("DuplicateHandle", NULL);
5153
5154 /* Close the inheritable version of ChildStdout
5155 that we're using. */
5156 CloseHandle(hChildStdoutRd);
5157
5158 if (n != POPEN_4) {
5159 if (!CreatePipe(&hChildStderrRd, &hChildStderrWr, &saAttr, 0))
5160 return win32_error("CreatePipe", NULL);
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005161 fSuccess = DuplicateHandle(GetCurrentProcess(),
5162 hChildStderrRd,
5163 GetCurrentProcess(),
5164 &hChildStderrRdDup, 0,
5165 FALSE, DUPLICATE_SAME_ACCESS);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005166 if (!fSuccess)
5167 return win32_error("DuplicateHandle", NULL);
5168 /* Close the inheritable version of ChildStdErr that we're using. */
5169 CloseHandle(hChildStderrRd);
5170 }
Tim Peters5aa91602002-01-30 05:46:57 +00005171
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005172 switch (n) {
5173 case POPEN_1:
5174 switch (mode & (_O_RDONLY | _O_TEXT | _O_BINARY | _O_WRONLY)) {
5175 case _O_WRONLY | _O_TEXT:
5176 /* Case for writing to child Stdin in text mode. */
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005177 fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005178 f1 = _fdopen(fd1, "w");
Fredrik Lundh56055a42000-07-23 19:47:12 +00005179 f = PyFile_FromFile(f1, cmdstring, "w", _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005180 PyFile_SetBufSize(f, 0);
5181 /* We don't care about these pipes anymore, so close them. */
5182 CloseHandle(hChildStdoutRdDup);
5183 CloseHandle(hChildStderrRdDup);
5184 break;
5185
5186 case _O_RDONLY | _O_TEXT:
5187 /* Case for reading from child Stdout in text mode. */
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005188 fd1 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005189 f1 = _fdopen(fd1, "r");
Fredrik Lundh56055a42000-07-23 19:47:12 +00005190 f = PyFile_FromFile(f1, cmdstring, "r", _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005191 PyFile_SetBufSize(f, 0);
5192 /* We don't care about these pipes anymore, so close them. */
5193 CloseHandle(hChildStdinWrDup);
5194 CloseHandle(hChildStderrRdDup);
5195 break;
5196
5197 case _O_RDONLY | _O_BINARY:
5198 /* Case for readinig from child Stdout in binary mode. */
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005199 fd1 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005200 f1 = _fdopen(fd1, "rb");
Fredrik Lundh56055a42000-07-23 19:47:12 +00005201 f = PyFile_FromFile(f1, cmdstring, "rb", _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005202 PyFile_SetBufSize(f, 0);
5203 /* We don't care about these pipes anymore, so close them. */
5204 CloseHandle(hChildStdinWrDup);
5205 CloseHandle(hChildStderrRdDup);
5206 break;
5207
5208 case _O_WRONLY | _O_BINARY:
5209 /* Case for writing to child Stdin in binary mode. */
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005210 fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005211 f1 = _fdopen(fd1, "wb");
Fredrik Lundh56055a42000-07-23 19:47:12 +00005212 f = PyFile_FromFile(f1, cmdstring, "wb", _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005213 PyFile_SetBufSize(f, 0);
5214 /* We don't care about these pipes anymore, so close them. */
5215 CloseHandle(hChildStdoutRdDup);
5216 CloseHandle(hChildStderrRdDup);
5217 break;
5218 }
Mark Hammondb37a3732000-08-14 04:47:33 +00005219 file_count = 1;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005220 break;
Tim Peters5aa91602002-01-30 05:46:57 +00005221
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005222 case POPEN_2:
5223 case POPEN_4:
5224 {
5225 char *m1, *m2;
5226 PyObject *p1, *p2;
Tim Peters5aa91602002-01-30 05:46:57 +00005227
Tim Peters7dca21e2002-08-19 00:42:29 +00005228 if (mode & _O_TEXT) {
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005229 m1 = "r";
5230 m2 = "w";
5231 } else {
5232 m1 = "rb";
5233 m2 = "wb";
5234 }
5235
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005236 fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005237 f1 = _fdopen(fd1, m2);
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005238 fd2 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005239 f2 = _fdopen(fd2, m1);
Fredrik Lundh56055a42000-07-23 19:47:12 +00005240 p1 = PyFile_FromFile(f1, cmdstring, m2, _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005241 PyFile_SetBufSize(p1, 0);
Mark Hammondb37a3732000-08-14 04:47:33 +00005242 p2 = PyFile_FromFile(f2, cmdstring, m1, _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005243 PyFile_SetBufSize(p2, 0);
5244
5245 if (n != 4)
5246 CloseHandle(hChildStderrRdDup);
5247
Raymond Hettinger8ae46892003-10-12 19:09:37 +00005248 f = PyTuple_Pack(2,p1,p2);
Mark Hammond64aae662001-01-31 05:38:47 +00005249 Py_XDECREF(p1);
5250 Py_XDECREF(p2);
Mark Hammondb37a3732000-08-14 04:47:33 +00005251 file_count = 2;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005252 break;
5253 }
Tim Peters5aa91602002-01-30 05:46:57 +00005254
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005255 case POPEN_3:
5256 {
5257 char *m1, *m2;
5258 PyObject *p1, *p2, *p3;
Tim Peters5aa91602002-01-30 05:46:57 +00005259
Tim Peters7dca21e2002-08-19 00:42:29 +00005260 if (mode & _O_TEXT) {
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005261 m1 = "r";
5262 m2 = "w";
5263 } else {
5264 m1 = "rb";
5265 m2 = "wb";
5266 }
5267
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005268 fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005269 f1 = _fdopen(fd1, m2);
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005270 fd2 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005271 f2 = _fdopen(fd2, m1);
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005272 fd3 = _open_osfhandle((Py_intptr_t)hChildStderrRdDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005273 f3 = _fdopen(fd3, m1);
Fredrik Lundh56055a42000-07-23 19:47:12 +00005274 p1 = PyFile_FromFile(f1, cmdstring, m2, _PyPclose);
Mark Hammondb37a3732000-08-14 04:47:33 +00005275 p2 = PyFile_FromFile(f2, cmdstring, m1, _PyPclose);
5276 p3 = PyFile_FromFile(f3, cmdstring, m1, _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005277 PyFile_SetBufSize(p1, 0);
5278 PyFile_SetBufSize(p2, 0);
5279 PyFile_SetBufSize(p3, 0);
Raymond Hettinger8ae46892003-10-12 19:09:37 +00005280 f = PyTuple_Pack(3,p1,p2,p3);
Mark Hammond64aae662001-01-31 05:38:47 +00005281 Py_XDECREF(p1);
5282 Py_XDECREF(p2);
5283 Py_XDECREF(p3);
Mark Hammondb37a3732000-08-14 04:47:33 +00005284 file_count = 3;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005285 break;
5286 }
5287 }
5288
5289 if (n == POPEN_4) {
5290 if (!_PyPopenCreateProcess(cmdstring,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005291 hChildStdinRd,
5292 hChildStdoutWr,
Mark Hammondb37a3732000-08-14 04:47:33 +00005293 hChildStdoutWr,
5294 &hProcess))
Mark Hammond08501372001-01-31 07:30:29 +00005295 return NULL;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005296 }
5297 else {
5298 if (!_PyPopenCreateProcess(cmdstring,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005299 hChildStdinRd,
5300 hChildStdoutWr,
Mark Hammondb37a3732000-08-14 04:47:33 +00005301 hChildStderrWr,
5302 &hProcess))
Mark Hammond08501372001-01-31 07:30:29 +00005303 return NULL;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005304 }
5305
Mark Hammondb37a3732000-08-14 04:47:33 +00005306 /*
5307 * Insert the files we've created into the process dictionary
5308 * all referencing the list with the process handle and the
5309 * initial number of files (see description below in _PyPclose).
5310 * Since if _PyPclose later tried to wait on a process when all
5311 * handles weren't closed, it could create a deadlock with the
5312 * child, we spend some energy here to try to ensure that we
5313 * either insert all file handles into the dictionary or none
5314 * at all. It's a little clumsy with the various popen modes
5315 * and variable number of files involved.
5316 */
5317 if (!_PyPopenProcs) {
5318 _PyPopenProcs = PyDict_New();
5319 }
5320
5321 if (_PyPopenProcs) {
5322 PyObject *procObj, *hProcessObj, *intObj, *fileObj[3];
5323 int ins_rc[3];
5324
5325 fileObj[0] = fileObj[1] = fileObj[2] = NULL;
5326 ins_rc[0] = ins_rc[1] = ins_rc[2] = 0;
5327
5328 procObj = PyList_New(2);
5329 hProcessObj = PyLong_FromVoidPtr(hProcess);
5330 intObj = PyInt_FromLong(file_count);
5331
5332 if (procObj && hProcessObj && intObj) {
5333 PyList_SetItem(procObj,0,hProcessObj);
5334 PyList_SetItem(procObj,1,intObj);
5335
5336 fileObj[0] = PyLong_FromVoidPtr(f1);
5337 if (fileObj[0]) {
5338 ins_rc[0] = PyDict_SetItem(_PyPopenProcs,
5339 fileObj[0],
5340 procObj);
5341 }
5342 if (file_count >= 2) {
5343 fileObj[1] = PyLong_FromVoidPtr(f2);
5344 if (fileObj[1]) {
5345 ins_rc[1] = PyDict_SetItem(_PyPopenProcs,
5346 fileObj[1],
5347 procObj);
5348 }
5349 }
5350 if (file_count >= 3) {
5351 fileObj[2] = PyLong_FromVoidPtr(f3);
5352 if (fileObj[2]) {
5353 ins_rc[2] = PyDict_SetItem(_PyPopenProcs,
5354 fileObj[2],
5355 procObj);
5356 }
5357 }
5358
5359 if (ins_rc[0] < 0 || !fileObj[0] ||
5360 ins_rc[1] < 0 || (file_count > 1 && !fileObj[1]) ||
5361 ins_rc[2] < 0 || (file_count > 2 && !fileObj[2])) {
5362 /* Something failed - remove any dictionary
5363 * entries that did make it.
5364 */
5365 if (!ins_rc[0] && fileObj[0]) {
5366 PyDict_DelItem(_PyPopenProcs,
5367 fileObj[0]);
5368 }
5369 if (!ins_rc[1] && fileObj[1]) {
5370 PyDict_DelItem(_PyPopenProcs,
5371 fileObj[1]);
5372 }
5373 if (!ins_rc[2] && fileObj[2]) {
5374 PyDict_DelItem(_PyPopenProcs,
5375 fileObj[2]);
5376 }
5377 }
5378 }
Tim Peters5aa91602002-01-30 05:46:57 +00005379
Mark Hammondb37a3732000-08-14 04:47:33 +00005380 /*
5381 * Clean up our localized references for the dictionary keys
5382 * and value since PyDict_SetItem will Py_INCREF any copies
5383 * that got placed in the dictionary.
5384 */
5385 Py_XDECREF(procObj);
5386 Py_XDECREF(fileObj[0]);
5387 Py_XDECREF(fileObj[1]);
5388 Py_XDECREF(fileObj[2]);
5389 }
5390
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005391 /* Child is launched. Close the parents copy of those pipe
5392 * handles that only the child should have open. You need to
5393 * make sure that no handles to the write end of the output pipe
5394 * are maintained in this process or else the pipe will not close
5395 * when the child process exits and the ReadFile will hang. */
5396
5397 if (!CloseHandle(hChildStdinRd))
5398 return win32_error("CloseHandle", NULL);
Tim Peters5aa91602002-01-30 05:46:57 +00005399
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005400 if (!CloseHandle(hChildStdoutWr))
5401 return win32_error("CloseHandle", NULL);
Tim Peters5aa91602002-01-30 05:46:57 +00005402
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005403 if ((n != 4) && (!CloseHandle(hChildStderrWr)))
5404 return win32_error("CloseHandle", NULL);
5405
5406 return f;
5407}
Fredrik Lundh56055a42000-07-23 19:47:12 +00005408
5409/*
5410 * Wrapper for fclose() to use for popen* files, so we can retrieve the
5411 * exit code for the child process and return as a result of the close.
Mark Hammondb37a3732000-08-14 04:47:33 +00005412 *
5413 * This function uses the _PyPopenProcs dictionary in order to map the
5414 * input file pointer to information about the process that was
5415 * originally created by the popen* call that created the file pointer.
5416 * The dictionary uses the file pointer as a key (with one entry
5417 * inserted for each file returned by the original popen* call) and a
5418 * single list object as the value for all files from a single call.
5419 * The list object contains the Win32 process handle at [0], and a file
5420 * count at [1], which is initialized to the total number of file
5421 * handles using that list.
5422 *
5423 * This function closes whichever handle it is passed, and decrements
5424 * the file count in the dictionary for the process handle pointed to
5425 * by this file. On the last close (when the file count reaches zero),
5426 * this function will wait for the child process and then return its
5427 * exit code as the result of the close() operation. This permits the
5428 * files to be closed in any order - it is always the close() of the
5429 * final handle that will return the exit code.
Mark Hammond8d98d2c2003-04-19 15:41:53 +00005430 *
5431 * NOTE: This function is currently called with the GIL released.
5432 * hence we use the GILState API to manage our state.
Fredrik Lundh56055a42000-07-23 19:47:12 +00005433 */
Tim Peters736aa322000-09-01 06:51:24 +00005434
Fredrik Lundh56055a42000-07-23 19:47:12 +00005435static int _PyPclose(FILE *file)
5436{
Fredrik Lundh20318932000-07-26 17:29:12 +00005437 int result;
Fredrik Lundh56055a42000-07-23 19:47:12 +00005438 DWORD exit_code;
5439 HANDLE hProcess;
Mark Hammondb37a3732000-08-14 04:47:33 +00005440 PyObject *procObj, *hProcessObj, *intObj, *fileObj;
5441 long file_count;
Tim Peters736aa322000-09-01 06:51:24 +00005442#ifdef WITH_THREAD
Mark Hammond8d98d2c2003-04-19 15:41:53 +00005443 PyGILState_STATE state;
Tim Peters736aa322000-09-01 06:51:24 +00005444#endif
5445
Fredrik Lundh20318932000-07-26 17:29:12 +00005446 /* Close the file handle first, to ensure it can't block the
Mark Hammondb37a3732000-08-14 04:47:33 +00005447 * child from exiting if it's the last handle.
Fredrik Lundh20318932000-07-26 17:29:12 +00005448 */
5449 result = fclose(file);
Tim Peters736aa322000-09-01 06:51:24 +00005450#ifdef WITH_THREAD
Mark Hammond8d98d2c2003-04-19 15:41:53 +00005451 state = PyGILState_Ensure();
Tim Peters736aa322000-09-01 06:51:24 +00005452#endif
Fredrik Lundh56055a42000-07-23 19:47:12 +00005453 if (_PyPopenProcs) {
Mark Hammondb37a3732000-08-14 04:47:33 +00005454 if ((fileObj = PyLong_FromVoidPtr(file)) != NULL &&
5455 (procObj = PyDict_GetItem(_PyPopenProcs,
5456 fileObj)) != NULL &&
5457 (hProcessObj = PyList_GetItem(procObj,0)) != NULL &&
5458 (intObj = PyList_GetItem(procObj,1)) != NULL) {
5459
5460 hProcess = PyLong_AsVoidPtr(hProcessObj);
5461 file_count = PyInt_AsLong(intObj);
5462
5463 if (file_count > 1) {
5464 /* Still other files referencing process */
5465 file_count--;
5466 PyList_SetItem(procObj,1,
5467 PyInt_FromLong(file_count));
5468 } else {
5469 /* Last file for this process */
Fredrik Lundh20318932000-07-26 17:29:12 +00005470 if (result != EOF &&
5471 WaitForSingleObject(hProcess, INFINITE) != WAIT_FAILED &&
5472 GetExitCodeProcess(hProcess, &exit_code)) {
Fredrik Lundh56055a42000-07-23 19:47:12 +00005473 /* Possible truncation here in 16-bit environments, but
5474 * real exit codes are just the lower byte in any event.
5475 */
5476 result = exit_code;
Fredrik Lundh56055a42000-07-23 19:47:12 +00005477 } else {
Fredrik Lundh20318932000-07-26 17:29:12 +00005478 /* Indicate failure - this will cause the file object
5479 * to raise an I/O error and translate the last Win32
5480 * error code from errno. We do have a problem with
5481 * last errors that overlap the normal errno table,
5482 * but that's a consistent problem with the file object.
Fredrik Lundh56055a42000-07-23 19:47:12 +00005483 */
Fredrik Lundh20318932000-07-26 17:29:12 +00005484 if (result != EOF) {
5485 /* If the error wasn't from the fclose(), then
5486 * set errno for the file object error handling.
5487 */
5488 errno = GetLastError();
5489 }
5490 result = -1;
Fredrik Lundh56055a42000-07-23 19:47:12 +00005491 }
5492
5493 /* Free up the native handle at this point */
5494 CloseHandle(hProcess);
Mark Hammondb37a3732000-08-14 04:47:33 +00005495 }
Fredrik Lundh56055a42000-07-23 19:47:12 +00005496
Mark Hammondb37a3732000-08-14 04:47:33 +00005497 /* Remove this file pointer from dictionary */
5498 PyDict_DelItem(_PyPopenProcs, fileObj);
5499
5500 if (PyDict_Size(_PyPopenProcs) == 0) {
5501 Py_DECREF(_PyPopenProcs);
5502 _PyPopenProcs = NULL;
5503 }
5504
5505 } /* if object retrieval ok */
5506
5507 Py_XDECREF(fileObj);
Fredrik Lundh56055a42000-07-23 19:47:12 +00005508 } /* if _PyPopenProcs */
5509
Tim Peters736aa322000-09-01 06:51:24 +00005510#ifdef WITH_THREAD
Mark Hammond8d98d2c2003-04-19 15:41:53 +00005511 PyGILState_Release(state);
Tim Peters736aa322000-09-01 06:51:24 +00005512#endif
Fredrik Lundh56055a42000-07-23 19:47:12 +00005513 return result;
5514}
Tim Peters9acdd3a2000-09-01 19:26:36 +00005515
5516#else /* which OS? */
Barry Warsaw53699e91996-12-10 23:23:01 +00005517static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005518posix_popen(PyObject *self, PyObject *args)
Guido van Rossum3b066191991-06-04 19:40:25 +00005519{
Guido van Rossuma6a1e531995-01-10 15:36:38 +00005520 char *name;
5521 char *mode = "r";
5522 int bufsize = -1;
Guido van Rossum3b066191991-06-04 19:40:25 +00005523 FILE *fp;
Barry Warsaw53699e91996-12-10 23:23:01 +00005524 PyObject *f;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00005525 if (!PyArg_ParseTuple(args, "s|si:popen", &name, &mode, &bufsize))
Guido van Rossum3b066191991-06-04 19:40:25 +00005526 return NULL;
Martin v. Löwis9ad853b2003-10-31 10:01:53 +00005527 /* Strip mode of binary or text modifiers */
5528 if (strcmp(mode, "rb") == 0 || strcmp(mode, "rt") == 0)
5529 mode = "r";
5530 else if (strcmp(mode, "wb") == 0 || strcmp(mode, "wt") == 0)
5531 mode = "w";
Barry Warsaw53699e91996-12-10 23:23:01 +00005532 Py_BEGIN_ALLOW_THREADS
Guido van Rossumef0a00e1992-01-27 16:51:30 +00005533 fp = popen(name, mode);
Barry Warsaw53699e91996-12-10 23:23:01 +00005534 Py_END_ALLOW_THREADS
Guido van Rossum3b066191991-06-04 19:40:25 +00005535 if (fp == NULL)
5536 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00005537 f = PyFile_FromFile(fp, name, mode, pclose);
Guido van Rossuma6a1e531995-01-10 15:36:38 +00005538 if (f != NULL)
Barry Warsaw53699e91996-12-10 23:23:01 +00005539 PyFile_SetBufSize(f, bufsize);
Guido van Rossuma6a1e531995-01-10 15:36:38 +00005540 return f;
Guido van Rossum3b066191991-06-04 19:40:25 +00005541}
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00005542
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00005543#endif /* PYOS_??? */
Guido van Rossuma4916fa1996-05-23 22:58:55 +00005544#endif /* HAVE_POPEN */
Guido van Rossum3b066191991-06-04 19:40:25 +00005545
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005546
Guido van Rossumb6775db1994-08-01 11:34:53 +00005547#ifdef HAVE_SETUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005548PyDoc_STRVAR(posix_setuid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005549"setuid(uid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005550Set the current process's user id.");
5551
Barry Warsaw53699e91996-12-10 23:23:01 +00005552static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005553posix_setuid(PyObject *self, PyObject *args)
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005554{
Gregory P. Smith6d307932009-04-05 23:43:58 +00005555 long uid_arg;
5556 uid_t uid;
5557 if (!PyArg_ParseTuple(args, "l:setuid", &uid_arg))
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005558 return NULL;
Gregory P. Smith6d307932009-04-05 23:43:58 +00005559 uid = uid_arg;
5560 if (uid != uid_arg) {
5561 PyErr_SetString(PyExc_OverflowError, "user id too big");
5562 return NULL;
5563 }
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005564 if (setuid(uid) < 0)
5565 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00005566 Py_INCREF(Py_None);
5567 return Py_None;
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005568}
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00005569#endif /* HAVE_SETUID */
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005570
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005571
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005572#ifdef HAVE_SETEUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005573PyDoc_STRVAR(posix_seteuid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005574"seteuid(uid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005575Set the current process's effective user id.");
5576
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005577static PyObject *
5578posix_seteuid (PyObject *self, PyObject *args)
5579{
Gregory P. Smith6d307932009-04-05 23:43:58 +00005580 long euid_arg;
5581 uid_t euid;
5582 if (!PyArg_ParseTuple(args, "l", &euid_arg))
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005583 return NULL;
Gregory P. Smith6d307932009-04-05 23:43:58 +00005584 euid = euid_arg;
5585 if (euid != euid_arg) {
5586 PyErr_SetString(PyExc_OverflowError, "user id too big");
5587 return NULL;
5588 }
5589 if (seteuid(euid) < 0) {
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005590 return posix_error();
5591 } else {
5592 Py_INCREF(Py_None);
5593 return Py_None;
5594 }
5595}
5596#endif /* HAVE_SETEUID */
5597
5598#ifdef HAVE_SETEGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005599PyDoc_STRVAR(posix_setegid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005600"setegid(gid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005601Set the current process's effective group id.");
5602
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005603static PyObject *
5604posix_setegid (PyObject *self, PyObject *args)
5605{
Gregory P. Smith6d307932009-04-05 23:43:58 +00005606 long egid_arg;
5607 gid_t egid;
5608 if (!PyArg_ParseTuple(args, "l", &egid_arg))
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005609 return NULL;
Gregory P. Smith6d307932009-04-05 23:43:58 +00005610 egid = egid_arg;
5611 if (egid != egid_arg) {
5612 PyErr_SetString(PyExc_OverflowError, "group id too big");
5613 return NULL;
5614 }
5615 if (setegid(egid) < 0) {
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005616 return posix_error();
5617 } else {
5618 Py_INCREF(Py_None);
5619 return Py_None;
5620 }
5621}
5622#endif /* HAVE_SETEGID */
5623
5624#ifdef HAVE_SETREUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005625PyDoc_STRVAR(posix_setreuid__doc__,
Neal Norwitz94f1d712004-02-16 01:26:34 +00005626"setreuid(ruid, euid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005627Set the current process's real and effective user ids.");
5628
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005629static PyObject *
5630posix_setreuid (PyObject *self, PyObject *args)
5631{
Gregory P. Smith6d307932009-04-05 23:43:58 +00005632 long ruid_arg, euid_arg;
5633 uid_t ruid, euid;
5634 if (!PyArg_ParseTuple(args, "ll", &ruid_arg, &euid_arg))
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005635 return NULL;
Gregory P. Smith6d307932009-04-05 23:43:58 +00005636 ruid = ruid_arg;
5637 euid = euid_arg;
5638 if (euid != euid_arg || ruid != ruid_arg) {
5639 PyErr_SetString(PyExc_OverflowError, "user id too big");
5640 return NULL;
5641 }
5642 if (setreuid(ruid, euid) < 0) {
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005643 return posix_error();
5644 } else {
5645 Py_INCREF(Py_None);
5646 return Py_None;
5647 }
5648}
5649#endif /* HAVE_SETREUID */
5650
5651#ifdef HAVE_SETREGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005652PyDoc_STRVAR(posix_setregid__doc__,
Neal Norwitz94f1d712004-02-16 01:26:34 +00005653"setregid(rgid, egid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005654Set the current process's real and effective group ids.");
5655
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005656static PyObject *
5657posix_setregid (PyObject *self, PyObject *args)
5658{
Gregory P. Smith6d307932009-04-05 23:43:58 +00005659 long rgid_arg, egid_arg;
5660 gid_t rgid, egid;
5661 if (!PyArg_ParseTuple(args, "ll", &rgid_arg, &egid_arg))
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005662 return NULL;
Gregory P. Smith6d307932009-04-05 23:43:58 +00005663 rgid = rgid_arg;
5664 egid = egid_arg;
5665 if (egid != egid_arg || rgid != rgid_arg) {
5666 PyErr_SetString(PyExc_OverflowError, "group id too big");
5667 return NULL;
5668 }
5669 if (setregid(rgid, egid) < 0) {
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005670 return posix_error();
5671 } else {
5672 Py_INCREF(Py_None);
5673 return Py_None;
5674 }
5675}
5676#endif /* HAVE_SETREGID */
5677
Guido van Rossumb6775db1994-08-01 11:34:53 +00005678#ifdef HAVE_SETGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005679PyDoc_STRVAR(posix_setgid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005680"setgid(gid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005681Set the current process's group id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005682
Barry Warsaw53699e91996-12-10 23:23:01 +00005683static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005684posix_setgid(PyObject *self, PyObject *args)
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005685{
Gregory P. Smith6d307932009-04-05 23:43:58 +00005686 long gid_arg;
5687 gid_t gid;
5688 if (!PyArg_ParseTuple(args, "l:setgid", &gid_arg))
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005689 return NULL;
Gregory P. Smith6d307932009-04-05 23:43:58 +00005690 gid = gid_arg;
5691 if (gid != gid_arg) {
5692 PyErr_SetString(PyExc_OverflowError, "group id too big");
5693 return NULL;
5694 }
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005695 if (setgid(gid) < 0)
5696 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00005697 Py_INCREF(Py_None);
5698 return Py_None;
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005699}
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00005700#endif /* HAVE_SETGID */
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005701
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005702#ifdef HAVE_SETGROUPS
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005703PyDoc_STRVAR(posix_setgroups__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005704"setgroups(list)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005705Set the groups of the current process to list.");
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005706
5707static PyObject *
Georg Brandl96a8c392006-05-29 21:04:52 +00005708posix_setgroups(PyObject *self, PyObject *groups)
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005709{
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005710 int i, len;
5711 gid_t grouplist[MAX_GROUPS];
Tim Peters5aa91602002-01-30 05:46:57 +00005712
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005713 if (!PySequence_Check(groups)) {
5714 PyErr_SetString(PyExc_TypeError, "setgroups argument must be a sequence");
5715 return NULL;
5716 }
5717 len = PySequence_Size(groups);
5718 if (len > MAX_GROUPS) {
5719 PyErr_SetString(PyExc_ValueError, "too many groups");
5720 return NULL;
5721 }
5722 for(i = 0; i < len; i++) {
5723 PyObject *elem;
5724 elem = PySequence_GetItem(groups, i);
5725 if (!elem)
5726 return NULL;
5727 if (!PyInt_Check(elem)) {
Georg Brandla13c2442005-11-22 19:30:31 +00005728 if (!PyLong_Check(elem)) {
5729 PyErr_SetString(PyExc_TypeError,
5730 "groups must be integers");
5731 Py_DECREF(elem);
5732 return NULL;
5733 } else {
5734 unsigned long x = PyLong_AsUnsignedLong(elem);
5735 if (PyErr_Occurred()) {
5736 PyErr_SetString(PyExc_TypeError,
5737 "group id too big");
5738 Py_DECREF(elem);
5739 return NULL;
5740 }
5741 grouplist[i] = x;
Gregory P. Smith6d307932009-04-05 23:43:58 +00005742 /* read back to see if it fits in gid_t */
Georg Brandla13c2442005-11-22 19:30:31 +00005743 if (grouplist[i] != x) {
5744 PyErr_SetString(PyExc_TypeError,
5745 "group id too big");
5746 Py_DECREF(elem);
5747 return NULL;
5748 }
5749 }
5750 } else {
5751 long x = PyInt_AsLong(elem);
5752 grouplist[i] = x;
5753 if (grouplist[i] != x) {
5754 PyErr_SetString(PyExc_TypeError,
5755 "group id too big");
5756 Py_DECREF(elem);
5757 return NULL;
5758 }
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005759 }
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005760 Py_DECREF(elem);
5761 }
5762
5763 if (setgroups(len, grouplist) < 0)
5764 return posix_error();
5765 Py_INCREF(Py_None);
5766 return Py_None;
5767}
5768#endif /* HAVE_SETGROUPS */
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005769
Neal Norwitz6c2f9132006-03-20 07:25:26 +00005770#if defined(HAVE_WAIT3) || defined(HAVE_WAIT4)
Neal Norwitz05a45592006-03-20 06:30:08 +00005771static PyObject *
Christian Heimesd491d712008-02-01 18:49:26 +00005772wait_helper(pid_t pid, int status, struct rusage *ru)
Neal Norwitz05a45592006-03-20 06:30:08 +00005773{
5774 PyObject *result;
5775 static PyObject *struct_rusage;
5776
5777 if (pid == -1)
5778 return posix_error();
5779
5780 if (struct_rusage == NULL) {
Christian Heimes000a0742008-01-03 22:16:32 +00005781 PyObject *m = PyImport_ImportModuleNoBlock("resource");
Neal Norwitz05a45592006-03-20 06:30:08 +00005782 if (m == NULL)
5783 return NULL;
5784 struct_rusage = PyObject_GetAttrString(m, "struct_rusage");
5785 Py_DECREF(m);
5786 if (struct_rusage == NULL)
5787 return NULL;
5788 }
5789
5790 /* XXX(nnorwitz): Copied (w/mods) from resource.c, there should be only one. */
5791 result = PyStructSequence_New((PyTypeObject*) struct_rusage);
5792 if (!result)
5793 return NULL;
5794
5795#ifndef doubletime
5796#define doubletime(TV) ((double)(TV).tv_sec + (TV).tv_usec * 0.000001)
5797#endif
5798
5799 PyStructSequence_SET_ITEM(result, 0,
5800 PyFloat_FromDouble(doubletime(ru->ru_utime)));
5801 PyStructSequence_SET_ITEM(result, 1,
5802 PyFloat_FromDouble(doubletime(ru->ru_stime)));
5803#define SET_INT(result, index, value)\
5804 PyStructSequence_SET_ITEM(result, index, PyInt_FromLong(value))
5805 SET_INT(result, 2, ru->ru_maxrss);
5806 SET_INT(result, 3, ru->ru_ixrss);
5807 SET_INT(result, 4, ru->ru_idrss);
5808 SET_INT(result, 5, ru->ru_isrss);
5809 SET_INT(result, 6, ru->ru_minflt);
5810 SET_INT(result, 7, ru->ru_majflt);
5811 SET_INT(result, 8, ru->ru_nswap);
5812 SET_INT(result, 9, ru->ru_inblock);
5813 SET_INT(result, 10, ru->ru_oublock);
5814 SET_INT(result, 11, ru->ru_msgsnd);
5815 SET_INT(result, 12, ru->ru_msgrcv);
5816 SET_INT(result, 13, ru->ru_nsignals);
5817 SET_INT(result, 14, ru->ru_nvcsw);
5818 SET_INT(result, 15, ru->ru_nivcsw);
5819#undef SET_INT
5820
5821 if (PyErr_Occurred()) {
5822 Py_DECREF(result);
5823 return NULL;
5824 }
5825
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00005826 return Py_BuildValue("NiN", PyLong_FromPid(pid), status, result);
Neal Norwitz05a45592006-03-20 06:30:08 +00005827}
Neal Norwitz6c2f9132006-03-20 07:25:26 +00005828#endif /* HAVE_WAIT3 || HAVE_WAIT4 */
Neal Norwitz05a45592006-03-20 06:30:08 +00005829
5830#ifdef HAVE_WAIT3
5831PyDoc_STRVAR(posix_wait3__doc__,
5832"wait3(options) -> (pid, status, rusage)\n\n\
5833Wait for completion of a child process.");
5834
5835static PyObject *
5836posix_wait3(PyObject *self, PyObject *args)
5837{
Christian Heimesd491d712008-02-01 18:49:26 +00005838 pid_t pid;
5839 int options;
Neal Norwitz05a45592006-03-20 06:30:08 +00005840 struct rusage ru;
Neal Norwitzd5a37542006-03-20 06:48:34 +00005841 WAIT_TYPE status;
5842 WAIT_STATUS_INT(status) = 0;
Neal Norwitz05a45592006-03-20 06:30:08 +00005843
5844 if (!PyArg_ParseTuple(args, "i:wait3", &options))
5845 return NULL;
5846
5847 Py_BEGIN_ALLOW_THREADS
5848 pid = wait3(&status, options, &ru);
5849 Py_END_ALLOW_THREADS
5850
Neal Norwitzd5a37542006-03-20 06:48:34 +00005851 return wait_helper(pid, WAIT_STATUS_INT(status), &ru);
Neal Norwitz05a45592006-03-20 06:30:08 +00005852}
5853#endif /* HAVE_WAIT3 */
5854
5855#ifdef HAVE_WAIT4
5856PyDoc_STRVAR(posix_wait4__doc__,
5857"wait4(pid, options) -> (pid, status, rusage)\n\n\
5858Wait for completion of a given child process.");
5859
5860static PyObject *
5861posix_wait4(PyObject *self, PyObject *args)
5862{
Christian Heimesd491d712008-02-01 18:49:26 +00005863 pid_t pid;
5864 int options;
Neal Norwitz05a45592006-03-20 06:30:08 +00005865 struct rusage ru;
Neal Norwitzd5a37542006-03-20 06:48:34 +00005866 WAIT_TYPE status;
5867 WAIT_STATUS_INT(status) = 0;
Neal Norwitz05a45592006-03-20 06:30:08 +00005868
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00005869 if (!PyArg_ParseTuple(args, PARSE_PID "i:wait4", &pid, &options))
Neal Norwitz05a45592006-03-20 06:30:08 +00005870 return NULL;
5871
5872 Py_BEGIN_ALLOW_THREADS
5873 pid = wait4(pid, &status, options, &ru);
5874 Py_END_ALLOW_THREADS
5875
Neal Norwitzd5a37542006-03-20 06:48:34 +00005876 return wait_helper(pid, WAIT_STATUS_INT(status), &ru);
Neal Norwitz05a45592006-03-20 06:30:08 +00005877}
5878#endif /* HAVE_WAIT4 */
5879
Guido van Rossumb6775db1994-08-01 11:34:53 +00005880#ifdef HAVE_WAITPID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005881PyDoc_STRVAR(posix_waitpid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005882"waitpid(pid, options) -> (pid, status)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005883Wait for completion of a given child process.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005884
Barry Warsaw53699e91996-12-10 23:23:01 +00005885static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005886posix_waitpid(PyObject *self, PyObject *args)
Guido van Rossum85e3b011991-06-03 12:42:10 +00005887{
Christian Heimesd491d712008-02-01 18:49:26 +00005888 pid_t pid;
5889 int options;
Neal Norwitzd5a37542006-03-20 06:48:34 +00005890 WAIT_TYPE status;
5891 WAIT_STATUS_INT(status) = 0;
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00005892
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00005893 if (!PyArg_ParseTuple(args, PARSE_PID "i:waitpid", &pid, &options))
Guido van Rossum21803b81992-08-09 12:55:27 +00005894 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00005895 Py_BEGIN_ALLOW_THREADS
Guido van Rossume6a3aa61999-02-01 16:15:30 +00005896 pid = waitpid(pid, &status, options);
Barry Warsaw53699e91996-12-10 23:23:01 +00005897 Py_END_ALLOW_THREADS
Guido van Rossum85e3b011991-06-03 12:42:10 +00005898 if (pid == -1)
5899 return posix_error();
Neal Norwitzd5a37542006-03-20 06:48:34 +00005900
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00005901 return Py_BuildValue("Ni", PyLong_FromPid(pid), WAIT_STATUS_INT(status));
Guido van Rossum21803b81992-08-09 12:55:27 +00005902}
5903
Tim Petersab034fa2002-02-01 11:27:43 +00005904#elif defined(HAVE_CWAIT)
5905
5906/* MS C has a variant of waitpid() that's usable for most purposes. */
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005907PyDoc_STRVAR(posix_waitpid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005908"waitpid(pid, options) -> (pid, status << 8)\n\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005909"Wait for completion of a given process. options is ignored on Windows.");
Tim Petersab034fa2002-02-01 11:27:43 +00005910
5911static PyObject *
5912posix_waitpid(PyObject *self, PyObject *args)
5913{
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005914 Py_intptr_t pid;
Martin v. Löwis18e16552006-02-15 17:27:45 +00005915 int status, options;
Tim Petersab034fa2002-02-01 11:27:43 +00005916
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00005917 if (!PyArg_ParseTuple(args, PARSE_PID "i:waitpid", &pid, &options))
Tim Petersab034fa2002-02-01 11:27:43 +00005918 return NULL;
5919 Py_BEGIN_ALLOW_THREADS
5920 pid = _cwait(&status, pid, options);
5921 Py_END_ALLOW_THREADS
5922 if (pid == -1)
5923 return posix_error();
Neal Norwitzd5a37542006-03-20 06:48:34 +00005924
5925 /* shift the status left a byte so this is more like the POSIX waitpid */
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00005926 return Py_BuildValue("Ni", PyLong_FromPid(pid), status << 8);
Tim Petersab034fa2002-02-01 11:27:43 +00005927}
5928#endif /* HAVE_WAITPID || HAVE_CWAIT */
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005929
Guido van Rossumad0ee831995-03-01 10:34:45 +00005930#ifdef HAVE_WAIT
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005931PyDoc_STRVAR(posix_wait__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005932"wait() -> (pid, status)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005933Wait for completion of a child process.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005934
Barry Warsaw53699e91996-12-10 23:23:01 +00005935static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00005936posix_wait(PyObject *self, PyObject *noargs)
Guido van Rossum21803b81992-08-09 12:55:27 +00005937{
Christian Heimesd491d712008-02-01 18:49:26 +00005938 pid_t pid;
Neal Norwitzd5a37542006-03-20 06:48:34 +00005939 WAIT_TYPE status;
5940 WAIT_STATUS_INT(status) = 0;
Neal Norwitze241ce82003-02-17 18:17:05 +00005941
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00005942 Py_BEGIN_ALLOW_THREADS
5943 pid = wait(&status);
Barry Warsaw53699e91996-12-10 23:23:01 +00005944 Py_END_ALLOW_THREADS
Guido van Rossum21803b81992-08-09 12:55:27 +00005945 if (pid == -1)
5946 return posix_error();
Neal Norwitzd5a37542006-03-20 06:48:34 +00005947
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00005948 return Py_BuildValue("Ni", PyLong_FromPid(pid), WAIT_STATUS_INT(status));
Guido van Rossum85e3b011991-06-03 12:42:10 +00005949}
Guido van Rossumad0ee831995-03-01 10:34:45 +00005950#endif
Guido van Rossum85e3b011991-06-03 12:42:10 +00005951
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005952
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005953PyDoc_STRVAR(posix_lstat__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005954"lstat(path) -> stat result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005955Like stat(path), but do not follow symbolic links.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005956
Barry Warsaw53699e91996-12-10 23:23:01 +00005957static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005958posix_lstat(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00005959{
Guido van Rossumb6775db1994-08-01 11:34:53 +00005960#ifdef HAVE_LSTAT
Mark Hammondc2e85bd2002-10-03 05:10:39 +00005961 return posix_do_stat(self, args, "et:lstat", lstat, NULL, NULL);
Guido van Rossumb6775db1994-08-01 11:34:53 +00005962#else /* !HAVE_LSTAT */
Mark Hammondc2e85bd2002-10-03 05:10:39 +00005963#ifdef MS_WINDOWS
Martin v. Löwis14694662006-02-03 12:54:16 +00005964 return posix_do_stat(self, args, "et:lstat", STAT, "U:lstat", win32_wstat);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00005965#else
5966 return posix_do_stat(self, args, "et:lstat", STAT, NULL, NULL);
5967#endif
Guido van Rossumb6775db1994-08-01 11:34:53 +00005968#endif /* !HAVE_LSTAT */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00005969}
5970
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005971
Guido van Rossumb6775db1994-08-01 11:34:53 +00005972#ifdef HAVE_READLINK
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005973PyDoc_STRVAR(posix_readlink__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005974"readlink(path) -> path\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005975Return a string representing the path to which the symbolic link points.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005976
Barry Warsaw53699e91996-12-10 23:23:01 +00005977static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005978posix_readlink(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00005979{
Ronald Oussoren10168f22006-10-22 10:45:18 +00005980 PyObject* v;
Guido van Rossumb6775db1994-08-01 11:34:53 +00005981 char buf[MAXPATHLEN];
Guido van Rossumef0a00e1992-01-27 16:51:30 +00005982 char *path;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00005983 int n;
Ronald Oussoren10168f22006-10-22 10:45:18 +00005984#ifdef Py_USING_UNICODE
5985 int arg_is_unicode = 0;
5986#endif
5987
5988 if (!PyArg_ParseTuple(args, "et:readlink",
5989 Py_FileSystemDefaultEncoding, &path))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00005990 return NULL;
Ronald Oussoren10168f22006-10-22 10:45:18 +00005991#ifdef Py_USING_UNICODE
5992 v = PySequence_GetItem(args, 0);
Neal Norwitz91a57212007-08-12 17:11:13 +00005993 if (v == NULL) {
5994 PyMem_Free(path);
5995 return NULL;
5996 }
Ronald Oussoren10168f22006-10-22 10:45:18 +00005997
5998 if (PyUnicode_Check(v)) {
5999 arg_is_unicode = 1;
6000 }
6001 Py_DECREF(v);
6002#endif
6003
Barry Warsaw53699e91996-12-10 23:23:01 +00006004 Py_BEGIN_ALLOW_THREADS
Guido van Rossum50e61dc1992-03-27 17:22:31 +00006005 n = readlink(path, buf, (int) sizeof buf);
Barry Warsaw53699e91996-12-10 23:23:01 +00006006 Py_END_ALLOW_THREADS
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00006007 if (n < 0)
Neal Norwitz91a57212007-08-12 17:11:13 +00006008 return posix_error_with_allocated_filename(path);
Ronald Oussoren10168f22006-10-22 10:45:18 +00006009
Neal Norwitz91a57212007-08-12 17:11:13 +00006010 PyMem_Free(path);
Gregory P. Smithdd96db62008-06-09 04:58:54 +00006011 v = PyString_FromStringAndSize(buf, n);
Ronald Oussoren10168f22006-10-22 10:45:18 +00006012#ifdef Py_USING_UNICODE
6013 if (arg_is_unicode) {
6014 PyObject *w;
6015
6016 w = PyUnicode_FromEncodedObject(v,
6017 Py_FileSystemDefaultEncoding,
6018 "strict");
6019 if (w != NULL) {
6020 Py_DECREF(v);
6021 v = w;
6022 }
6023 else {
6024 /* fall back to the original byte string, as
6025 discussed in patch #683592 */
6026 PyErr_Clear();
6027 }
6028 }
6029#endif
6030 return v;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00006031}
Guido van Rossumb6775db1994-08-01 11:34:53 +00006032#endif /* HAVE_READLINK */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00006033
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006034
Guido van Rossumb6775db1994-08-01 11:34:53 +00006035#ifdef HAVE_SYMLINK
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006036PyDoc_STRVAR(posix_symlink__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006037"symlink(src, dst)\n\n\
Brett Cannon807413d2003-06-11 00:18:09 +00006038Create a symbolic link pointing to src named dst.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006039
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006040static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006041posix_symlink(PyObject *self, PyObject *args)
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006042{
Martin v. Löwis4fc2bda2006-05-04 12:04:27 +00006043 return posix_2str(args, "etet:symlink", symlink);
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006044}
6045#endif /* HAVE_SYMLINK */
6046
6047
6048#ifdef HAVE_TIMES
Guido van Rossumd48f2521997-12-05 22:19:34 +00006049#if defined(PYCC_VACPP) && defined(PYOS_OS2)
6050static long
Thomas Woutersf3f33dc2000-07-21 06:00:07 +00006051system_uptime(void)
Guido van Rossumd48f2521997-12-05 22:19:34 +00006052{
6053 ULONG value = 0;
6054
6055 Py_BEGIN_ALLOW_THREADS
6056 DosQuerySysInfo(QSV_MS_COUNT, QSV_MS_COUNT, &value, sizeof(value));
6057 Py_END_ALLOW_THREADS
6058
6059 return value;
6060}
6061
6062static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00006063posix_times(PyObject *self, PyObject *noargs)
Guido van Rossumd48f2521997-12-05 22:19:34 +00006064{
Guido van Rossumd48f2521997-12-05 22:19:34 +00006065 /* Currently Only Uptime is Provided -- Others Later */
6066 return Py_BuildValue("ddddd",
6067 (double)0 /* t.tms_utime / HZ */,
6068 (double)0 /* t.tms_stime / HZ */,
6069 (double)0 /* t.tms_cutime / HZ */,
6070 (double)0 /* t.tms_cstime / HZ */,
6071 (double)system_uptime() / 1000);
6072}
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006073#else /* not OS2 */
Martin v. Löwis03824e42008-12-29 18:17:34 +00006074#define NEED_TICKS_PER_SECOND
6075static long ticks_per_second = -1;
Barry Warsaw53699e91996-12-10 23:23:01 +00006076static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00006077posix_times(PyObject *self, PyObject *noargs)
Guido van Rossum22db57e1992-04-05 14:25:30 +00006078{
6079 struct tms t;
6080 clock_t c;
Guido van Rossum22db57e1992-04-05 14:25:30 +00006081 errno = 0;
6082 c = times(&t);
Guido van Rossum687dd131993-05-17 08:34:16 +00006083 if (c == (clock_t) -1)
6084 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006085 return Py_BuildValue("ddddd",
Martin v. Löwis03824e42008-12-29 18:17:34 +00006086 (double)t.tms_utime / ticks_per_second,
6087 (double)t.tms_stime / ticks_per_second,
6088 (double)t.tms_cutime / ticks_per_second,
6089 (double)t.tms_cstime / ticks_per_second,
6090 (double)c / ticks_per_second);
Guido van Rossum22db57e1992-04-05 14:25:30 +00006091}
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006092#endif /* not OS2 */
Guido van Rossumb6775db1994-08-01 11:34:53 +00006093#endif /* HAVE_TIMES */
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006094
6095
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006096#ifdef MS_WINDOWS
Guido van Rossum14ed0b21994-09-29 09:50:09 +00006097#define HAVE_TIMES /* so the method table will pick it up */
Barry Warsaw53699e91996-12-10 23:23:01 +00006098static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00006099posix_times(PyObject *self, PyObject *noargs)
Guido van Rossum14ed0b21994-09-29 09:50:09 +00006100{
6101 FILETIME create, exit, kernel, user;
6102 HANDLE hProc;
Guido van Rossum14ed0b21994-09-29 09:50:09 +00006103 hProc = GetCurrentProcess();
Guido van Rossumb8c3cbd1999-02-16 14:37:28 +00006104 GetProcessTimes(hProc, &create, &exit, &kernel, &user);
6105 /* The fields of a FILETIME structure are the hi and lo part
6106 of a 64-bit value expressed in 100 nanosecond units.
6107 1e7 is one second in such units; 1e-7 the inverse.
6108 429.4967296 is 2**32 / 1e7 or 2**32 * 1e-7.
6109 */
Barry Warsaw53699e91996-12-10 23:23:01 +00006110 return Py_BuildValue(
6111 "ddddd",
Guido van Rossumb8c3cbd1999-02-16 14:37:28 +00006112 (double)(user.dwHighDateTime*429.4967296 +
6113 user.dwLowDateTime*1e-7),
Georg Brandl0a40ffb2008-02-13 07:20:22 +00006114 (double)(kernel.dwHighDateTime*429.4967296 +
6115 kernel.dwLowDateTime*1e-7),
Barry Warsaw53699e91996-12-10 23:23:01 +00006116 (double)0,
6117 (double)0,
6118 (double)0);
Guido van Rossum14ed0b21994-09-29 09:50:09 +00006119}
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006120#endif /* MS_WINDOWS */
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006121
6122#ifdef HAVE_TIMES
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006123PyDoc_STRVAR(posix_times__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006124"times() -> (utime, stime, cutime, cstime, elapsed_time)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006125Return a tuple of floating point numbers indicating process times.");
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006126#endif
Guido van Rossum22db57e1992-04-05 14:25:30 +00006127
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006128
Martin v. Löwis49ee14d2003-11-10 06:35:36 +00006129#ifdef HAVE_GETSID
6130PyDoc_STRVAR(posix_getsid__doc__,
6131"getsid(pid) -> sid\n\n\
6132Call the system call getsid().");
6133
6134static PyObject *
6135posix_getsid(PyObject *self, PyObject *args)
6136{
Christian Heimesd491d712008-02-01 18:49:26 +00006137 pid_t pid;
6138 int sid;
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00006139 if (!PyArg_ParseTuple(args, PARSE_PID ":getsid", &pid))
Martin v. Löwis49ee14d2003-11-10 06:35:36 +00006140 return NULL;
6141 sid = getsid(pid);
6142 if (sid < 0)
6143 return posix_error();
6144 return PyInt_FromLong((long)sid);
6145}
6146#endif /* HAVE_GETSID */
6147
6148
Guido van Rossumb6775db1994-08-01 11:34:53 +00006149#ifdef HAVE_SETSID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006150PyDoc_STRVAR(posix_setsid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006151"setsid()\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006152Call the system call setsid().");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006153
Barry Warsaw53699e91996-12-10 23:23:01 +00006154static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00006155posix_setsid(PyObject *self, PyObject *noargs)
Guido van Rossumc2670a01992-09-13 20:07:29 +00006156{
Guido van Rossum687dd131993-05-17 08:34:16 +00006157 if (setsid() < 0)
6158 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006159 Py_INCREF(Py_None);
6160 return Py_None;
Guido van Rossumc2670a01992-09-13 20:07:29 +00006161}
Guido van Rossumb6775db1994-08-01 11:34:53 +00006162#endif /* HAVE_SETSID */
Guido van Rossumc2670a01992-09-13 20:07:29 +00006163
Guido van Rossumb6775db1994-08-01 11:34:53 +00006164#ifdef HAVE_SETPGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006165PyDoc_STRVAR(posix_setpgid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006166"setpgid(pid, pgrp)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006167Call the system call setpgid().");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006168
Barry Warsaw53699e91996-12-10 23:23:01 +00006169static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006170posix_setpgid(PyObject *self, PyObject *args)
Guido van Rossumc2670a01992-09-13 20:07:29 +00006171{
Christian Heimesd491d712008-02-01 18:49:26 +00006172 pid_t pid;
6173 int pgrp;
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00006174 if (!PyArg_ParseTuple(args, PARSE_PID "i:setpgid", &pid, &pgrp))
Guido van Rossumc2670a01992-09-13 20:07:29 +00006175 return NULL;
Guido van Rossum687dd131993-05-17 08:34:16 +00006176 if (setpgid(pid, pgrp) < 0)
6177 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006178 Py_INCREF(Py_None);
6179 return Py_None;
Guido van Rossumc2670a01992-09-13 20:07:29 +00006180}
Guido van Rossumb6775db1994-08-01 11:34:53 +00006181#endif /* HAVE_SETPGID */
Guido van Rossumc2670a01992-09-13 20:07:29 +00006182
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006183
Guido van Rossumb6775db1994-08-01 11:34:53 +00006184#ifdef HAVE_TCGETPGRP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006185PyDoc_STRVAR(posix_tcgetpgrp__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006186"tcgetpgrp(fd) -> pgid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006187Return the process group associated with the terminal given by a fd.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006188
Barry Warsaw53699e91996-12-10 23:23:01 +00006189static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006190posix_tcgetpgrp(PyObject *self, PyObject *args)
Guido van Rossum7066dd71992-09-17 17:54:56 +00006191{
Christian Heimese6a80742008-02-03 19:51:13 +00006192 int fd;
6193 pid_t pgid;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006194 if (!PyArg_ParseTuple(args, "i:tcgetpgrp", &fd))
Guido van Rossum7066dd71992-09-17 17:54:56 +00006195 return NULL;
6196 pgid = tcgetpgrp(fd);
Guido van Rossum687dd131993-05-17 08:34:16 +00006197 if (pgid < 0)
6198 return posix_error();
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00006199 return PyLong_FromPid(pgid);
Guido van Rossum7066dd71992-09-17 17:54:56 +00006200}
Guido van Rossumb6775db1994-08-01 11:34:53 +00006201#endif /* HAVE_TCGETPGRP */
Guido van Rossum7066dd71992-09-17 17:54:56 +00006202
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006203
Guido van Rossumb6775db1994-08-01 11:34:53 +00006204#ifdef HAVE_TCSETPGRP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006205PyDoc_STRVAR(posix_tcsetpgrp__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006206"tcsetpgrp(fd, pgid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006207Set the process group associated with the terminal given by a fd.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006208
Barry Warsaw53699e91996-12-10 23:23:01 +00006209static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006210posix_tcsetpgrp(PyObject *self, PyObject *args)
Guido van Rossum7066dd71992-09-17 17:54:56 +00006211{
Antoine Pitrou76dd2d12009-05-23 16:06:49 +00006212 int fd;
6213 pid_t pgid;
6214 if (!PyArg_ParseTuple(args, "i" PARSE_PID ":tcsetpgrp", &fd, &pgid))
Guido van Rossum7066dd71992-09-17 17:54:56 +00006215 return NULL;
Guido van Rossum687dd131993-05-17 08:34:16 +00006216 if (tcsetpgrp(fd, pgid) < 0)
6217 return posix_error();
Barry Warsaw43d68b81996-12-19 22:10:44 +00006218 Py_INCREF(Py_None);
Barry Warsaw53699e91996-12-10 23:23:01 +00006219 return Py_None;
Guido van Rossum7066dd71992-09-17 17:54:56 +00006220}
Guido van Rossumb6775db1994-08-01 11:34:53 +00006221#endif /* HAVE_TCSETPGRP */
Guido van Rossum22db57e1992-04-05 14:25:30 +00006222
Guido van Rossum687dd131993-05-17 08:34:16 +00006223/* Functions acting on file descriptors */
6224
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006225PyDoc_STRVAR(posix_open__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006226"open(filename, flag [, mode=0777]) -> fd\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006227Open a file (for low level IO).");
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_open(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006231{
Mark Hammondef8b6542001-05-13 08:04:26 +00006232 char *file = NULL;
Guido van Rossum687dd131993-05-17 08:34:16 +00006233 int flag;
6234 int mode = 0777;
6235 int fd;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00006236
6237#ifdef MS_WINDOWS
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00006238 PyUnicodeObject *po;
6239 if (PyArg_ParseTuple(args, "Ui|i:mkdir", &po, &flag, &mode)) {
6240 Py_BEGIN_ALLOW_THREADS
6241 /* PyUnicode_AS_UNICODE OK without thread
6242 lock as it is a simple dereference. */
6243 fd = _wopen(PyUnicode_AS_UNICODE(po), flag, mode);
6244 Py_END_ALLOW_THREADS
6245 if (fd < 0)
6246 return posix_error();
6247 return PyInt_FromLong((long)fd);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00006248 }
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00006249 /* Drop the argument parsing error as narrow strings
6250 are also valid. */
6251 PyErr_Clear();
Mark Hammondc2e85bd2002-10-03 05:10:39 +00006252#endif
6253
Tim Peters5aa91602002-01-30 05:46:57 +00006254 if (!PyArg_ParseTuple(args, "eti|i",
Mark Hammondef8b6542001-05-13 08:04:26 +00006255 Py_FileSystemDefaultEncoding, &file,
6256 &flag, &mode))
Barry Warsaw43d68b81996-12-19 22:10:44 +00006257 return NULL;
6258
Barry Warsaw53699e91996-12-10 23:23:01 +00006259 Py_BEGIN_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006260 fd = open(file, flag, mode);
Barry Warsaw53699e91996-12-10 23:23:01 +00006261 Py_END_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006262 if (fd < 0)
Mark Hammondef8b6542001-05-13 08:04:26 +00006263 return posix_error_with_allocated_filename(file);
6264 PyMem_Free(file);
Barry Warsaw53699e91996-12-10 23:23:01 +00006265 return PyInt_FromLong((long)fd);
Guido van Rossum687dd131993-05-17 08:34:16 +00006266}
6267
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006268
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006269PyDoc_STRVAR(posix_close__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006270"close(fd)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006271Close a file descriptor (for low level IO).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006272
Barry Warsaw53699e91996-12-10 23:23:01 +00006273static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006274posix_close(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006275{
6276 int fd, res;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006277 if (!PyArg_ParseTuple(args, "i:close", &fd))
Guido van Rossum687dd131993-05-17 08:34:16 +00006278 return NULL;
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006279 if (!_PyVerify_fd(fd))
6280 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006281 Py_BEGIN_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006282 res = close(fd);
Barry Warsaw53699e91996-12-10 23:23:01 +00006283 Py_END_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006284 if (res < 0)
6285 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006286 Py_INCREF(Py_None);
6287 return Py_None;
Guido van Rossum687dd131993-05-17 08:34:16 +00006288}
6289
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006290
Georg Brandl309501a2008-01-19 20:22:13 +00006291PyDoc_STRVAR(posix_closerange__doc__,
6292"closerange(fd_low, fd_high)\n\n\
6293Closes all file descriptors in [fd_low, fd_high), ignoring errors.");
6294
6295static PyObject *
6296posix_closerange(PyObject *self, PyObject *args)
6297{
6298 int fd_from, fd_to, i;
6299 if (!PyArg_ParseTuple(args, "ii:closerange", &fd_from, &fd_to))
6300 return NULL;
6301 Py_BEGIN_ALLOW_THREADS
6302 for (i = fd_from; i < fd_to; i++)
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006303 if (_PyVerify_fd(i))
6304 close(i);
Georg Brandl309501a2008-01-19 20:22:13 +00006305 Py_END_ALLOW_THREADS
6306 Py_RETURN_NONE;
6307}
6308
6309
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006310PyDoc_STRVAR(posix_dup__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006311"dup(fd) -> fd2\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006312Return a duplicate of a file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006313
Barry Warsaw53699e91996-12-10 23:23:01 +00006314static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006315posix_dup(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006316{
6317 int fd;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006318 if (!PyArg_ParseTuple(args, "i:dup", &fd))
Guido van Rossum687dd131993-05-17 08:34:16 +00006319 return NULL;
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006320 if (!_PyVerify_fd(fd))
6321 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006322 Py_BEGIN_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006323 fd = dup(fd);
Barry Warsaw53699e91996-12-10 23:23:01 +00006324 Py_END_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006325 if (fd < 0)
6326 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006327 return PyInt_FromLong((long)fd);
Guido van Rossum687dd131993-05-17 08:34:16 +00006328}
6329
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006330
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006331PyDoc_STRVAR(posix_dup2__doc__,
Andrew M. Kuchling8135fd52004-01-16 13:18:42 +00006332"dup2(old_fd, new_fd)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006333Duplicate file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006334
Barry Warsaw53699e91996-12-10 23:23:01 +00006335static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006336posix_dup2(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006337{
6338 int fd, fd2, res;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006339 if (!PyArg_ParseTuple(args, "ii:dup2", &fd, &fd2))
Guido van Rossum687dd131993-05-17 08:34:16 +00006340 return NULL;
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006341 if (!_PyVerify_fd_dup2(fd, fd2))
6342 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006343 Py_BEGIN_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006344 res = dup2(fd, fd2);
Barry Warsaw53699e91996-12-10 23:23:01 +00006345 Py_END_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006346 if (res < 0)
6347 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006348 Py_INCREF(Py_None);
6349 return Py_None;
Guido van Rossum687dd131993-05-17 08:34:16 +00006350}
6351
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006352
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006353PyDoc_STRVAR(posix_lseek__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006354"lseek(fd, pos, how) -> newpos\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006355Set the current position of a file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006356
Barry Warsaw53699e91996-12-10 23:23:01 +00006357static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006358posix_lseek(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006359{
6360 int fd, how;
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006361#if defined(MS_WIN64) || defined(MS_WINDOWS)
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00006362 PY_LONG_LONG pos, res;
Fred Drake699f3522000-06-29 21:12:41 +00006363#else
Guido van Rossum94f6f721999-01-06 18:42:14 +00006364 off_t pos, res;
Fred Drake699f3522000-06-29 21:12:41 +00006365#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00006366 PyObject *posobj;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006367 if (!PyArg_ParseTuple(args, "iOi:lseek", &fd, &posobj, &how))
Guido van Rossum687dd131993-05-17 08:34:16 +00006368 return NULL;
6369#ifdef SEEK_SET
6370 /* Turn 0, 1, 2 into SEEK_{SET,CUR,END} */
6371 switch (how) {
6372 case 0: how = SEEK_SET; break;
6373 case 1: how = SEEK_CUR; break;
6374 case 2: how = SEEK_END; break;
6375 }
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00006376#endif /* SEEK_END */
Guido van Rossum94f6f721999-01-06 18:42:14 +00006377
6378#if !defined(HAVE_LARGEFILE_SUPPORT)
6379 pos = PyInt_AsLong(posobj);
6380#else
6381 pos = PyLong_Check(posobj) ?
6382 PyLong_AsLongLong(posobj) : PyInt_AsLong(posobj);
6383#endif
6384 if (PyErr_Occurred())
6385 return NULL;
6386
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006387 if (!_PyVerify_fd(fd))
6388 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006389 Py_BEGIN_ALLOW_THREADS
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006390#if defined(MS_WIN64) || defined(MS_WINDOWS)
Fred Drake699f3522000-06-29 21:12:41 +00006391 res = _lseeki64(fd, pos, how);
6392#else
Guido van Rossum687dd131993-05-17 08:34:16 +00006393 res = lseek(fd, pos, how);
Fred Drake699f3522000-06-29 21:12:41 +00006394#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00006395 Py_END_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006396 if (res < 0)
6397 return posix_error();
Guido van Rossum94f6f721999-01-06 18:42:14 +00006398
6399#if !defined(HAVE_LARGEFILE_SUPPORT)
Barry Warsaw53699e91996-12-10 23:23:01 +00006400 return PyInt_FromLong(res);
Guido van Rossum94f6f721999-01-06 18:42:14 +00006401#else
6402 return PyLong_FromLongLong(res);
6403#endif
Guido van Rossum687dd131993-05-17 08:34:16 +00006404}
6405
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006406
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006407PyDoc_STRVAR(posix_read__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006408"read(fd, buffersize) -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006409Read a file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006410
Barry Warsaw53699e91996-12-10 23:23:01 +00006411static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006412posix_read(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006413{
Guido van Rossum8bac5461996-06-11 18:38:48 +00006414 int fd, size, n;
Barry Warsaw53699e91996-12-10 23:23:01 +00006415 PyObject *buffer;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006416 if (!PyArg_ParseTuple(args, "ii:read", &fd, &size))
Guido van Rossum687dd131993-05-17 08:34:16 +00006417 return NULL;
Michael W. Hudson9867ced2005-01-31 17:01:59 +00006418 if (size < 0) {
6419 errno = EINVAL;
6420 return posix_error();
6421 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00006422 buffer = PyString_FromStringAndSize((char *)NULL, size);
Guido van Rossum687dd131993-05-17 08:34:16 +00006423 if (buffer == NULL)
6424 return NULL;
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006425 if (!_PyVerify_fd(fd))
6426 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006427 Py_BEGIN_ALLOW_THREADS
Gregory P. Smithdd96db62008-06-09 04:58:54 +00006428 n = read(fd, PyString_AsString(buffer), size);
Barry Warsaw53699e91996-12-10 23:23:01 +00006429 Py_END_ALLOW_THREADS
Guido van Rossum8bac5461996-06-11 18:38:48 +00006430 if (n < 0) {
Barry Warsaw53699e91996-12-10 23:23:01 +00006431 Py_DECREF(buffer);
Guido van Rossum687dd131993-05-17 08:34:16 +00006432 return posix_error();
6433 }
Guido van Rossum8bac5461996-06-11 18:38:48 +00006434 if (n != size)
Gregory P. Smithdd96db62008-06-09 04:58:54 +00006435 _PyString_Resize(&buffer, n);
Guido van Rossum687dd131993-05-17 08:34:16 +00006436 return buffer;
6437}
6438
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006439
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006440PyDoc_STRVAR(posix_write__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006441"write(fd, string) -> byteswritten\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006442Write a string to a file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006443
Barry Warsaw53699e91996-12-10 23:23:01 +00006444static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006445posix_write(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006446{
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00006447 Py_buffer pbuf;
Thomas Wouters68bc4f92006-03-01 01:05:10 +00006448 int fd;
6449 Py_ssize_t size;
Thomas Wouters68bc4f92006-03-01 01:05:10 +00006450
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00006451 if (!PyArg_ParseTuple(args, "is*:write", &fd, &pbuf))
Guido van Rossum687dd131993-05-17 08:34:16 +00006452 return NULL;
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006453 if (!_PyVerify_fd(fd))
6454 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006455 Py_BEGIN_ALLOW_THREADS
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00006456 size = write(fd, pbuf.buf, (size_t)pbuf.len);
Barry Warsaw53699e91996-12-10 23:23:01 +00006457 Py_END_ALLOW_THREADS
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00006458 PyBuffer_Release(&pbuf);
Guido van Rossum687dd131993-05-17 08:34:16 +00006459 if (size < 0)
6460 return posix_error();
Thomas Wouters68bc4f92006-03-01 01:05:10 +00006461 return PyInt_FromSsize_t(size);
Guido van Rossum687dd131993-05-17 08:34:16 +00006462}
6463
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006464
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006465PyDoc_STRVAR(posix_fstat__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006466"fstat(fd) -> stat result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006467Like stat(), but for an open file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006468
Barry Warsaw53699e91996-12-10 23:23:01 +00006469static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006470posix_fstat(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006471{
6472 int fd;
Fred Drake699f3522000-06-29 21:12:41 +00006473 STRUCT_STAT st;
Guido van Rossum687dd131993-05-17 08:34:16 +00006474 int res;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006475 if (!PyArg_ParseTuple(args, "i:fstat", &fd))
Guido van Rossum687dd131993-05-17 08:34:16 +00006476 return NULL;
Martin v. Löwis7a924e62003-03-05 14:15:21 +00006477#ifdef __VMS
6478 /* on OpenVMS we must ensure that all bytes are written to the file */
6479 fsync(fd);
6480#endif
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006481 if (!_PyVerify_fd(fd))
6482 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006483 Py_BEGIN_ALLOW_THREADS
Fred Drake699f3522000-06-29 21:12:41 +00006484 res = FSTAT(fd, &st);
Barry Warsaw53699e91996-12-10 23:23:01 +00006485 Py_END_ALLOW_THREADS
Martin v. Löwis14694662006-02-03 12:54:16 +00006486 if (res != 0) {
6487#ifdef MS_WINDOWS
6488 return win32_error("fstat", NULL);
6489#else
Guido van Rossum687dd131993-05-17 08:34:16 +00006490 return posix_error();
Martin v. Löwis14694662006-02-03 12:54:16 +00006491#endif
6492 }
Tim Peters5aa91602002-01-30 05:46:57 +00006493
Martin v. Löwis14694662006-02-03 12:54:16 +00006494 return _pystat_fromstructstat(&st);
Guido van Rossum687dd131993-05-17 08:34:16 +00006495}
6496
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006497
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006498PyDoc_STRVAR(posix_fdopen__doc__,
Neal Norwitzc18b3082002-10-11 22:19:42 +00006499"fdopen(fd [, mode='r' [, bufsize]]) -> file_object\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006500Return an open file object connected to a file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006501
Barry Warsaw53699e91996-12-10 23:23:01 +00006502static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006503posix_fdopen(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006504{
Guido van Rossum687dd131993-05-17 08:34:16 +00006505 int fd;
Kristján Valur Jónsson0a440d42007-04-26 09:15:08 +00006506 char *orgmode = "r";
Guido van Rossuma6a1e531995-01-10 15:36:38 +00006507 int bufsize = -1;
Guido van Rossum687dd131993-05-17 08:34:16 +00006508 FILE *fp;
Barry Warsaw53699e91996-12-10 23:23:01 +00006509 PyObject *f;
Kristján Valur Jónsson0a440d42007-04-26 09:15:08 +00006510 char *mode;
6511 if (!PyArg_ParseTuple(args, "i|si", &fd, &orgmode, &bufsize))
Guido van Rossum687dd131993-05-17 08:34:16 +00006512 return NULL;
Barry Warsaw43d68b81996-12-19 22:10:44 +00006513
Kristján Valur Jónsson0a440d42007-04-26 09:15:08 +00006514 /* Sanitize mode. See fileobject.c */
6515 mode = PyMem_MALLOC(strlen(orgmode)+3);
6516 if (!mode) {
6517 PyErr_NoMemory();
6518 return NULL;
6519 }
6520 strcpy(mode, orgmode);
6521 if (_PyFile_SanitizeMode(mode)) {
6522 PyMem_FREE(mode);
Thomas Heller1f043e22002-11-07 16:00:59 +00006523 return NULL;
6524 }
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006525 if (!_PyVerify_fd(fd))
6526 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006527 Py_BEGIN_ALLOW_THREADS
Georg Brandl644b1e72006-03-31 20:27:22 +00006528#if !defined(MS_WINDOWS) && defined(HAVE_FCNTL_H)
Georg Brandl54a188a2006-03-31 20:00:11 +00006529 if (mode[0] == 'a') {
6530 /* try to make sure the O_APPEND flag is set */
6531 int flags;
6532 flags = fcntl(fd, F_GETFL);
6533 if (flags != -1)
6534 fcntl(fd, F_SETFL, flags | O_APPEND);
6535 fp = fdopen(fd, mode);
Thomas Wouters2a9a6b02006-03-31 22:38:19 +00006536 if (fp == NULL && flags != -1)
Georg Brandl54a188a2006-03-31 20:00:11 +00006537 /* restore old mode if fdopen failed */
6538 fcntl(fd, F_SETFL, flags);
6539 } else {
6540 fp = fdopen(fd, mode);
6541 }
Georg Brandl644b1e72006-03-31 20:27:22 +00006542#else
6543 fp = fdopen(fd, mode);
6544#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00006545 Py_END_ALLOW_THREADS
Neal Norwitzd83eb312007-05-02 04:47:55 +00006546 PyMem_FREE(mode);
Guido van Rossum687dd131993-05-17 08:34:16 +00006547 if (fp == NULL)
6548 return posix_error();
Kristján Valur Jónsson0a440d42007-04-26 09:15:08 +00006549 f = PyFile_FromFile(fp, "<fdopen>", orgmode, fclose);
Guido van Rossuma6a1e531995-01-10 15:36:38 +00006550 if (f != NULL)
Barry Warsaw53699e91996-12-10 23:23:01 +00006551 PyFile_SetBufSize(f, bufsize);
Guido van Rossuma6a1e531995-01-10 15:36:38 +00006552 return f;
Guido van Rossum687dd131993-05-17 08:34:16 +00006553}
6554
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006555PyDoc_STRVAR(posix_isatty__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006556"isatty(fd) -> bool\n\n\
Fred Drake106c1a02002-04-23 15:58:02 +00006557Return True if the file descriptor 'fd' is an open file descriptor\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006558connected to the slave end of a terminal.");
Skip Montanaro1517d842000-07-19 14:34:14 +00006559
6560static PyObject *
Thomas Wouters616607a2000-07-19 14:45:40 +00006561posix_isatty(PyObject *self, PyObject *args)
Skip Montanaro1517d842000-07-19 14:34:14 +00006562{
6563 int fd;
6564 if (!PyArg_ParseTuple(args, "i:isatty", &fd))
6565 return NULL;
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006566 if (!_PyVerify_fd(fd))
6567 return PyBool_FromLong(0);
Fred Drake106c1a02002-04-23 15:58:02 +00006568 return PyBool_FromLong(isatty(fd));
Skip Montanaro1517d842000-07-19 14:34:14 +00006569}
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006570
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006571#ifdef HAVE_PIPE
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006572PyDoc_STRVAR(posix_pipe__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006573"pipe() -> (read_end, write_end)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006574Create a pipe.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006575
Barry Warsaw53699e91996-12-10 23:23:01 +00006576static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00006577posix_pipe(PyObject *self, PyObject *noargs)
Guido van Rossum687dd131993-05-17 08:34:16 +00006578{
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00006579#if defined(PYOS_OS2)
6580 HFILE read, write;
6581 APIRET rc;
6582
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00006583 Py_BEGIN_ALLOW_THREADS
6584 rc = DosCreatePipe( &read, &write, 4096);
6585 Py_END_ALLOW_THREADS
6586 if (rc != NO_ERROR)
Guido van Rossumd48f2521997-12-05 22:19:34 +00006587 return os2_error(rc);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00006588
6589 return Py_BuildValue("(ii)", read, write);
6590#else
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006591#if !defined(MS_WINDOWS)
Guido van Rossum687dd131993-05-17 08:34:16 +00006592 int fds[2];
6593 int res;
Barry Warsaw53699e91996-12-10 23:23:01 +00006594 Py_BEGIN_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006595 res = pipe(fds);
Barry Warsaw53699e91996-12-10 23:23:01 +00006596 Py_END_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006597 if (res != 0)
6598 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006599 return Py_BuildValue("(ii)", fds[0], fds[1]);
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006600#else /* MS_WINDOWS */
Guido van Rossum794d8131994-08-23 13:48:48 +00006601 HANDLE read, write;
Guido van Rossumb3f9f4b1998-06-12 15:05:15 +00006602 int read_fd, write_fd;
Guido van Rossum794d8131994-08-23 13:48:48 +00006603 BOOL ok;
Barry Warsaw53699e91996-12-10 23:23:01 +00006604 Py_BEGIN_ALLOW_THREADS
Guido van Rossumb3f9f4b1998-06-12 15:05:15 +00006605 ok = CreatePipe(&read, &write, NULL, 0);
Barry Warsaw53699e91996-12-10 23:23:01 +00006606 Py_END_ALLOW_THREADS
Guido van Rossum794d8131994-08-23 13:48:48 +00006607 if (!ok)
Fredrik Lundhffb9c772000-07-09 14:49:51 +00006608 return win32_error("CreatePipe", NULL);
Tim Peters79248aa2001-08-29 21:37:10 +00006609 read_fd = _open_osfhandle((Py_intptr_t)read, 0);
6610 write_fd = _open_osfhandle((Py_intptr_t)write, 1);
Guido van Rossumb3f9f4b1998-06-12 15:05:15 +00006611 return Py_BuildValue("(ii)", read_fd, write_fd);
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006612#endif /* MS_WINDOWS */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00006613#endif
Guido van Rossum687dd131993-05-17 08:34:16 +00006614}
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006615#endif /* HAVE_PIPE */
6616
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006617
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006618#ifdef HAVE_MKFIFO
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006619PyDoc_STRVAR(posix_mkfifo__doc__,
Neal Norwitzc18b3082002-10-11 22:19:42 +00006620"mkfifo(filename [, mode=0666])\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006621Create a FIFO (a POSIX named pipe).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006622
Barry Warsaw53699e91996-12-10 23:23:01 +00006623static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006624posix_mkfifo(PyObject *self, PyObject *args)
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006625{
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006626 char *filename;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006627 int mode = 0666;
6628 int res;
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006629 if (!PyArg_ParseTuple(args, "s|i:mkfifo", &filename, &mode))
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006630 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00006631 Py_BEGIN_ALLOW_THREADS
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006632 res = mkfifo(filename, mode);
6633 Py_END_ALLOW_THREADS
6634 if (res < 0)
6635 return posix_error();
6636 Py_INCREF(Py_None);
6637 return Py_None;
6638}
6639#endif
6640
6641
Neal Norwitz11690112002-07-30 01:08:28 +00006642#if defined(HAVE_MKNOD) && defined(HAVE_MAKEDEV)
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006643PyDoc_STRVAR(posix_mknod__doc__,
Neal Norwitzc18b3082002-10-11 22:19:42 +00006644"mknod(filename [, mode=0600, device])\n\n\
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006645Create a filesystem node (file, device special file or named pipe)\n\
6646named filename. mode specifies both the permissions to use and the\n\
6647type of node to be created, being combined (bitwise OR) with one of\n\
6648S_IFREG, S_IFCHR, S_IFBLK, and S_IFIFO. For S_IFCHR and S_IFBLK,\n\
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00006649device defines the newly created device special file (probably using\n\
6650os.makedev()), otherwise it is ignored.");
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006651
6652
6653static PyObject *
6654posix_mknod(PyObject *self, PyObject *args)
6655{
6656 char *filename;
6657 int mode = 0600;
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00006658 int device = 0;
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006659 int res;
Martin v. Löwisd631ebe2002-11-02 17:42:33 +00006660 if (!PyArg_ParseTuple(args, "s|ii:mknod", &filename, &mode, &device))
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006661 return NULL;
6662 Py_BEGIN_ALLOW_THREADS
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00006663 res = mknod(filename, mode, device);
Barry Warsaw53699e91996-12-10 23:23:01 +00006664 Py_END_ALLOW_THREADS
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006665 if (res < 0)
6666 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006667 Py_INCREF(Py_None);
6668 return Py_None;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006669}
6670#endif
6671
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00006672#ifdef HAVE_DEVICE_MACROS
6673PyDoc_STRVAR(posix_major__doc__,
6674"major(device) -> major number\n\
6675Extracts a device major number from a raw device number.");
6676
6677static PyObject *
6678posix_major(PyObject *self, PyObject *args)
6679{
6680 int device;
6681 if (!PyArg_ParseTuple(args, "i:major", &device))
6682 return NULL;
6683 return PyInt_FromLong((long)major(device));
6684}
6685
6686PyDoc_STRVAR(posix_minor__doc__,
6687"minor(device) -> minor number\n\
6688Extracts a device minor number from a raw device number.");
6689
6690static PyObject *
6691posix_minor(PyObject *self, PyObject *args)
6692{
6693 int device;
6694 if (!PyArg_ParseTuple(args, "i:minor", &device))
6695 return NULL;
6696 return PyInt_FromLong((long)minor(device));
6697}
6698
6699PyDoc_STRVAR(posix_makedev__doc__,
6700"makedev(major, minor) -> device number\n\
6701Composes a raw device number from the major and minor device numbers.");
6702
6703static PyObject *
6704posix_makedev(PyObject *self, PyObject *args)
6705{
6706 int major, minor;
6707 if (!PyArg_ParseTuple(args, "ii:makedev", &major, &minor))
6708 return NULL;
6709 return PyInt_FromLong((long)makedev(major, minor));
6710}
6711#endif /* device macros */
6712
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006713
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006714#ifdef HAVE_FTRUNCATE
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006715PyDoc_STRVAR(posix_ftruncate__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006716"ftruncate(fd, length)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006717Truncate a file to a specified length.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006718
Barry Warsaw53699e91996-12-10 23:23:01 +00006719static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006720posix_ftruncate(PyObject *self, PyObject *args)
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006721{
6722 int fd;
Guido van Rossum94f6f721999-01-06 18:42:14 +00006723 off_t length;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006724 int res;
Guido van Rossum94f6f721999-01-06 18:42:14 +00006725 PyObject *lenobj;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006726
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006727 if (!PyArg_ParseTuple(args, "iO:ftruncate", &fd, &lenobj))
Guido van Rossum94f6f721999-01-06 18:42:14 +00006728 return NULL;
6729
6730#if !defined(HAVE_LARGEFILE_SUPPORT)
6731 length = PyInt_AsLong(lenobj);
6732#else
6733 length = PyLong_Check(lenobj) ?
6734 PyLong_AsLongLong(lenobj) : PyInt_AsLong(lenobj);
6735#endif
6736 if (PyErr_Occurred())
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006737 return NULL;
6738
Barry Warsaw53699e91996-12-10 23:23:01 +00006739 Py_BEGIN_ALLOW_THREADS
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006740 res = ftruncate(fd, length);
Barry Warsaw53699e91996-12-10 23:23:01 +00006741 Py_END_ALLOW_THREADS
Benjamin Peterson943a6dd2009-01-19 15:51:27 +00006742 if (res < 0)
6743 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006744 Py_INCREF(Py_None);
6745 return Py_None;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006746}
6747#endif
Guido van Rossum22db57e1992-04-05 14:25:30 +00006748
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006749#ifdef HAVE_PUTENV
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006750PyDoc_STRVAR(posix_putenv__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006751"putenv(key, value)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006752Change or add an environment variable.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006753
Fred Drake762e2061999-08-26 17:23:54 +00006754/* Save putenv() parameters as values here, so we can collect them when they
6755 * get re-set with another call for the same key. */
6756static PyObject *posix_putenv_garbage;
6757
Tim Peters5aa91602002-01-30 05:46:57 +00006758static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006759posix_putenv(PyObject *self, PyObject *args)
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006760{
6761 char *s1, *s2;
Anthony Baxter64182fe2006-04-11 12:14:09 +00006762 char *newenv;
Fred Drake762e2061999-08-26 17:23:54 +00006763 PyObject *newstr;
Tim Petersc8996f52001-12-03 20:41:00 +00006764 size_t len;
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006765
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006766 if (!PyArg_ParseTuple(args, "ss:putenv", &s1, &s2))
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006767 return NULL;
Guido van Rossumd48f2521997-12-05 22:19:34 +00006768
6769#if defined(PYOS_OS2)
6770 if (stricmp(s1, "BEGINLIBPATH") == 0) {
6771 APIRET rc;
6772
Guido van Rossumd48f2521997-12-05 22:19:34 +00006773 rc = DosSetExtLIBPATH(s2, BEGIN_LIBPATH);
6774 if (rc != NO_ERROR)
6775 return os2_error(rc);
6776
6777 } else if (stricmp(s1, "ENDLIBPATH") == 0) {
6778 APIRET rc;
6779
Guido van Rossumd48f2521997-12-05 22:19:34 +00006780 rc = DosSetExtLIBPATH(s2, END_LIBPATH);
6781 if (rc != NO_ERROR)
6782 return os2_error(rc);
6783 } else {
6784#endif
6785
Fred Drake762e2061999-08-26 17:23:54 +00006786 /* XXX This can leak memory -- not easy to fix :-( */
Tim Petersc8996f52001-12-03 20:41:00 +00006787 len = strlen(s1) + strlen(s2) + 2;
6788 /* len includes space for a trailing \0; the size arg to
Gregory P. Smithdd96db62008-06-09 04:58:54 +00006789 PyString_FromStringAndSize does not count that */
6790 newstr = PyString_FromStringAndSize(NULL, (int)len - 1);
Fred Drake762e2061999-08-26 17:23:54 +00006791 if (newstr == NULL)
6792 return PyErr_NoMemory();
Gregory P. Smithdd96db62008-06-09 04:58:54 +00006793 newenv = PyString_AS_STRING(newstr);
Anthony Baxter64182fe2006-04-11 12:14:09 +00006794 PyOS_snprintf(newenv, len, "%s=%s", s1, s2);
6795 if (putenv(newenv)) {
Neal Norwitz4adc9ab2003-02-10 03:10:43 +00006796 Py_DECREF(newstr);
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006797 posix_error();
6798 return NULL;
6799 }
Fred Drake762e2061999-08-26 17:23:54 +00006800 /* Install the first arg and newstr in posix_putenv_garbage;
6801 * this will cause previous value to be collected. This has to
6802 * happen after the real putenv() call because the old value
6803 * was still accessible until then. */
6804 if (PyDict_SetItem(posix_putenv_garbage,
6805 PyTuple_GET_ITEM(args, 0), newstr)) {
6806 /* really not much we can do; just leak */
6807 PyErr_Clear();
6808 }
6809 else {
6810 Py_DECREF(newstr);
6811 }
Guido van Rossumd48f2521997-12-05 22:19:34 +00006812
6813#if defined(PYOS_OS2)
6814 }
6815#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00006816 Py_INCREF(Py_None);
6817 return Py_None;
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006818}
Guido van Rossumb6a47161997-09-15 22:54:34 +00006819#endif /* putenv */
6820
Guido van Rossumc524d952001-10-19 01:31:59 +00006821#ifdef HAVE_UNSETENV
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006822PyDoc_STRVAR(posix_unsetenv__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006823"unsetenv(key)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006824Delete an environment variable.");
Guido van Rossumc524d952001-10-19 01:31:59 +00006825
6826static PyObject *
6827posix_unsetenv(PyObject *self, PyObject *args)
6828{
6829 char *s1;
6830
6831 if (!PyArg_ParseTuple(args, "s:unsetenv", &s1))
6832 return NULL;
6833
6834 unsetenv(s1);
6835
6836 /* Remove the key from posix_putenv_garbage;
6837 * this will cause it to be collected. This has to
Tim Peters5aa91602002-01-30 05:46:57 +00006838 * happen after the real unsetenv() call because the
Guido van Rossumc524d952001-10-19 01:31:59 +00006839 * old value was still accessible until then.
6840 */
6841 if (PyDict_DelItem(posix_putenv_garbage,
6842 PyTuple_GET_ITEM(args, 0))) {
6843 /* really not much we can do; just leak */
6844 PyErr_Clear();
6845 }
6846
6847 Py_INCREF(Py_None);
6848 return Py_None;
6849}
6850#endif /* unsetenv */
6851
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006852PyDoc_STRVAR(posix_strerror__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006853"strerror(code) -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006854Translate an error code to a message string.");
Guido van Rossumb6a47161997-09-15 22:54:34 +00006855
Guido van Rossumf68d8e52001-04-14 17:55:09 +00006856static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006857posix_strerror(PyObject *self, PyObject *args)
Guido van Rossumb6a47161997-09-15 22:54:34 +00006858{
6859 int code;
6860 char *message;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006861 if (!PyArg_ParseTuple(args, "i:strerror", &code))
Guido van Rossumb6a47161997-09-15 22:54:34 +00006862 return NULL;
6863 message = strerror(code);
6864 if (message == NULL) {
6865 PyErr_SetString(PyExc_ValueError,
Fred Drake661ea262000-10-24 19:57:45 +00006866 "strerror() argument out of range");
Guido van Rossumb6a47161997-09-15 22:54:34 +00006867 return NULL;
6868 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00006869 return PyString_FromString(message);
Guido van Rossumb6a47161997-09-15 22:54:34 +00006870}
Guido van Rossumb6a47161997-09-15 22:54:34 +00006871
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006872
Guido van Rossumc9641791998-08-04 15:26:23 +00006873#ifdef HAVE_SYS_WAIT_H
6874
Fred Drake106c1a02002-04-23 15:58:02 +00006875#ifdef WCOREDUMP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006876PyDoc_STRVAR(posix_WCOREDUMP__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006877"WCOREDUMP(status) -> bool\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006878Return True if the process returning 'status' was dumped to a core file.");
Fred Drake106c1a02002-04-23 15:58:02 +00006879
6880static PyObject *
6881posix_WCOREDUMP(PyObject *self, PyObject *args)
6882{
Neal Norwitzd5a37542006-03-20 06:48:34 +00006883 WAIT_TYPE status;
6884 WAIT_STATUS_INT(status) = 0;
Fred Drake106c1a02002-04-23 15:58:02 +00006885
Neal Norwitzd5a37542006-03-20 06:48:34 +00006886 if (!PyArg_ParseTuple(args, "i:WCOREDUMP", &WAIT_STATUS_INT(status)))
Fred Drake106c1a02002-04-23 15:58:02 +00006887 return NULL;
Fred Drake106c1a02002-04-23 15:58:02 +00006888
6889 return PyBool_FromLong(WCOREDUMP(status));
Fred Drake106c1a02002-04-23 15:58:02 +00006890}
6891#endif /* WCOREDUMP */
6892
6893#ifdef WIFCONTINUED
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006894PyDoc_STRVAR(posix_WIFCONTINUED__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006895"WIFCONTINUED(status) -> bool\n\n\
Fred Drake106c1a02002-04-23 15:58:02 +00006896Return True if the process returning 'status' was continued from a\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006897job control stop.");
Fred Drake106c1a02002-04-23 15:58:02 +00006898
6899static PyObject *
Martin v. Löwis2b41b0d2002-05-04 13:13:41 +00006900posix_WIFCONTINUED(PyObject *self, PyObject *args)
Fred Drake106c1a02002-04-23 15:58:02 +00006901{
Neal Norwitzd5a37542006-03-20 06:48:34 +00006902 WAIT_TYPE status;
6903 WAIT_STATUS_INT(status) = 0;
Fred Drake106c1a02002-04-23 15:58:02 +00006904
Neal Norwitzd5a37542006-03-20 06:48:34 +00006905 if (!PyArg_ParseTuple(args, "i:WCONTINUED", &WAIT_STATUS_INT(status)))
Fred Drake106c1a02002-04-23 15:58:02 +00006906 return NULL;
Fred Drake106c1a02002-04-23 15:58:02 +00006907
Martin v. Löwis2b41b0d2002-05-04 13:13:41 +00006908 return PyBool_FromLong(WIFCONTINUED(status));
Fred Drake106c1a02002-04-23 15:58:02 +00006909}
6910#endif /* WIFCONTINUED */
6911
Guido van Rossumc9641791998-08-04 15:26:23 +00006912#ifdef WIFSTOPPED
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006913PyDoc_STRVAR(posix_WIFSTOPPED__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006914"WIFSTOPPED(status) -> bool\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006915Return True if the process returning 'status' was stopped.");
Guido van Rossumc9641791998-08-04 15:26:23 +00006916
6917static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006918posix_WIFSTOPPED(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00006919{
Neal Norwitzd5a37542006-03-20 06:48:34 +00006920 WAIT_TYPE status;
6921 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00006922
Neal Norwitzd5a37542006-03-20 06:48:34 +00006923 if (!PyArg_ParseTuple(args, "i:WIFSTOPPED", &WAIT_STATUS_INT(status)))
Guido van Rossumc9641791998-08-04 15:26:23 +00006924 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00006925
Fred Drake106c1a02002-04-23 15:58:02 +00006926 return PyBool_FromLong(WIFSTOPPED(status));
Guido van Rossumc9641791998-08-04 15:26:23 +00006927}
6928#endif /* WIFSTOPPED */
6929
6930#ifdef WIFSIGNALED
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006931PyDoc_STRVAR(posix_WIFSIGNALED__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006932"WIFSIGNALED(status) -> bool\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006933Return True if the process returning 'status' was terminated by a signal.");
Guido van Rossumc9641791998-08-04 15:26:23 +00006934
6935static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006936posix_WIFSIGNALED(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00006937{
Neal Norwitzd5a37542006-03-20 06:48:34 +00006938 WAIT_TYPE status;
6939 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00006940
Neal Norwitzd5a37542006-03-20 06:48:34 +00006941 if (!PyArg_ParseTuple(args, "i:WIFSIGNALED", &WAIT_STATUS_INT(status)))
Guido van Rossumc9641791998-08-04 15:26:23 +00006942 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00006943
Fred Drake106c1a02002-04-23 15:58:02 +00006944 return PyBool_FromLong(WIFSIGNALED(status));
Guido van Rossumc9641791998-08-04 15:26:23 +00006945}
6946#endif /* WIFSIGNALED */
6947
6948#ifdef WIFEXITED
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006949PyDoc_STRVAR(posix_WIFEXITED__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006950"WIFEXITED(status) -> bool\n\n\
Fred Drake7e3535c1999-02-02 16:37:11 +00006951Return true if the process returning 'status' exited using the exit()\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006952system call.");
Guido van Rossumc9641791998-08-04 15:26:23 +00006953
6954static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006955posix_WIFEXITED(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00006956{
Neal Norwitzd5a37542006-03-20 06:48:34 +00006957 WAIT_TYPE status;
6958 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00006959
Neal Norwitzd5a37542006-03-20 06:48:34 +00006960 if (!PyArg_ParseTuple(args, "i:WIFEXITED", &WAIT_STATUS_INT(status)))
Guido van Rossumc9641791998-08-04 15:26:23 +00006961 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00006962
Fred Drake106c1a02002-04-23 15:58:02 +00006963 return PyBool_FromLong(WIFEXITED(status));
Guido van Rossumc9641791998-08-04 15:26:23 +00006964}
6965#endif /* WIFEXITED */
6966
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00006967#ifdef WEXITSTATUS
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006968PyDoc_STRVAR(posix_WEXITSTATUS__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006969"WEXITSTATUS(status) -> integer\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006970Return the process return code from 'status'.");
Guido van Rossumc9641791998-08-04 15:26:23 +00006971
6972static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006973posix_WEXITSTATUS(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00006974{
Neal Norwitzd5a37542006-03-20 06:48:34 +00006975 WAIT_TYPE status;
6976 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00006977
Neal Norwitzd5a37542006-03-20 06:48:34 +00006978 if (!PyArg_ParseTuple(args, "i:WEXITSTATUS", &WAIT_STATUS_INT(status)))
Guido van Rossumc9641791998-08-04 15:26:23 +00006979 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00006980
Guido van Rossumc9641791998-08-04 15:26:23 +00006981 return Py_BuildValue("i", WEXITSTATUS(status));
6982}
6983#endif /* WEXITSTATUS */
6984
6985#ifdef WTERMSIG
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006986PyDoc_STRVAR(posix_WTERMSIG__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006987"WTERMSIG(status) -> integer\n\n\
Fred Drake7e3535c1999-02-02 16:37:11 +00006988Return the signal that terminated the process that provided the 'status'\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006989value.");
Guido van Rossumc9641791998-08-04 15:26:23 +00006990
6991static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006992posix_WTERMSIG(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00006993{
Neal Norwitzd5a37542006-03-20 06:48:34 +00006994 WAIT_TYPE status;
6995 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00006996
Neal Norwitzd5a37542006-03-20 06:48:34 +00006997 if (!PyArg_ParseTuple(args, "i:WTERMSIG", &WAIT_STATUS_INT(status)))
Guido van Rossumc9641791998-08-04 15:26:23 +00006998 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00006999
Guido van Rossumc9641791998-08-04 15:26:23 +00007000 return Py_BuildValue("i", WTERMSIG(status));
7001}
7002#endif /* WTERMSIG */
7003
7004#ifdef WSTOPSIG
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007005PyDoc_STRVAR(posix_WSTOPSIG__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007006"WSTOPSIG(status) -> integer\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007007Return the signal that stopped the process that provided\n\
7008the 'status' value.");
Guido van Rossumc9641791998-08-04 15:26:23 +00007009
7010static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007011posix_WSTOPSIG(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00007012{
Neal Norwitzd5a37542006-03-20 06:48:34 +00007013 WAIT_TYPE status;
7014 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00007015
Neal Norwitzd5a37542006-03-20 06:48:34 +00007016 if (!PyArg_ParseTuple(args, "i:WSTOPSIG", &WAIT_STATUS_INT(status)))
Guido van Rossumc9641791998-08-04 15:26:23 +00007017 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00007018
Guido van Rossumc9641791998-08-04 15:26:23 +00007019 return Py_BuildValue("i", WSTOPSIG(status));
7020}
7021#endif /* WSTOPSIG */
7022
7023#endif /* HAVE_SYS_WAIT_H */
7024
7025
Martin v. Löwis5f5d99c2006-05-16 07:05:37 +00007026#if defined(HAVE_FSTATVFS) && defined(HAVE_SYS_STATVFS_H)
Guido van Rossumd5753e11999-10-19 13:29:23 +00007027#ifdef _SCO_DS
7028/* SCO OpenServer 5.0 and later requires _SVID3 before it reveals the
7029 needed definitions in sys/statvfs.h */
7030#define _SVID3
7031#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00007032#include <sys/statvfs.h>
7033
Guido van Rossum98bf58f2001-10-18 20:34:25 +00007034static PyObject*
7035_pystatvfs_fromstructstatvfs(struct statvfs st) {
7036 PyObject *v = PyStructSequence_New(&StatVFSResultType);
7037 if (v == NULL)
7038 return NULL;
7039
7040#if !defined(HAVE_LARGEFILE_SUPPORT)
7041 PyStructSequence_SET_ITEM(v, 0, PyInt_FromLong((long) st.f_bsize));
7042 PyStructSequence_SET_ITEM(v, 1, PyInt_FromLong((long) st.f_frsize));
7043 PyStructSequence_SET_ITEM(v, 2, PyInt_FromLong((long) st.f_blocks));
7044 PyStructSequence_SET_ITEM(v, 3, PyInt_FromLong((long) st.f_bfree));
7045 PyStructSequence_SET_ITEM(v, 4, PyInt_FromLong((long) st.f_bavail));
7046 PyStructSequence_SET_ITEM(v, 5, PyInt_FromLong((long) st.f_files));
7047 PyStructSequence_SET_ITEM(v, 6, PyInt_FromLong((long) st.f_ffree));
7048 PyStructSequence_SET_ITEM(v, 7, PyInt_FromLong((long) st.f_favail));
7049 PyStructSequence_SET_ITEM(v, 8, PyInt_FromLong((long) st.f_flag));
7050 PyStructSequence_SET_ITEM(v, 9, PyInt_FromLong((long) st.f_namemax));
7051#else
7052 PyStructSequence_SET_ITEM(v, 0, PyInt_FromLong((long) st.f_bsize));
7053 PyStructSequence_SET_ITEM(v, 1, PyInt_FromLong((long) st.f_frsize));
Tim Peters5aa91602002-01-30 05:46:57 +00007054 PyStructSequence_SET_ITEM(v, 2,
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00007055 PyLong_FromLongLong((PY_LONG_LONG) st.f_blocks));
Tim Peters5aa91602002-01-30 05:46:57 +00007056 PyStructSequence_SET_ITEM(v, 3,
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00007057 PyLong_FromLongLong((PY_LONG_LONG) st.f_bfree));
Guido van Rossum98bf58f2001-10-18 20:34:25 +00007058 PyStructSequence_SET_ITEM(v, 4,
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00007059 PyLong_FromLongLong((PY_LONG_LONG) st.f_bavail));
Tim Peters5aa91602002-01-30 05:46:57 +00007060 PyStructSequence_SET_ITEM(v, 5,
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00007061 PyLong_FromLongLong((PY_LONG_LONG) st.f_files));
Tim Peters5aa91602002-01-30 05:46:57 +00007062 PyStructSequence_SET_ITEM(v, 6,
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00007063 PyLong_FromLongLong((PY_LONG_LONG) st.f_ffree));
Tim Peters5aa91602002-01-30 05:46:57 +00007064 PyStructSequence_SET_ITEM(v, 7,
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00007065 PyLong_FromLongLong((PY_LONG_LONG) st.f_favail));
Guido van Rossum98bf58f2001-10-18 20:34:25 +00007066 PyStructSequence_SET_ITEM(v, 8, PyInt_FromLong((long) st.f_flag));
7067 PyStructSequence_SET_ITEM(v, 9, PyInt_FromLong((long) st.f_namemax));
7068#endif
7069
7070 return v;
7071}
7072
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007073PyDoc_STRVAR(posix_fstatvfs__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007074"fstatvfs(fd) -> statvfs result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007075Perform an fstatvfs system call on the given fd.");
Guido van Rossum94f6f721999-01-06 18:42:14 +00007076
7077static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007078posix_fstatvfs(PyObject *self, PyObject *args)
Guido van Rossum94f6f721999-01-06 18:42:14 +00007079{
7080 int fd, res;
7081 struct statvfs st;
Guido van Rossum98bf58f2001-10-18 20:34:25 +00007082
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007083 if (!PyArg_ParseTuple(args, "i:fstatvfs", &fd))
Guido van Rossum94f6f721999-01-06 18:42:14 +00007084 return NULL;
7085 Py_BEGIN_ALLOW_THREADS
7086 res = fstatvfs(fd, &st);
7087 Py_END_ALLOW_THREADS
7088 if (res != 0)
7089 return posix_error();
Guido van Rossum98bf58f2001-10-18 20:34:25 +00007090
7091 return _pystatvfs_fromstructstatvfs(st);
Guido van Rossum94f6f721999-01-06 18:42:14 +00007092}
Martin v. Löwis5f5d99c2006-05-16 07:05:37 +00007093#endif /* HAVE_FSTATVFS && HAVE_SYS_STATVFS_H */
Guido van Rossum94f6f721999-01-06 18:42:14 +00007094
7095
Martin v. Löwis5f5d99c2006-05-16 07:05:37 +00007096#if defined(HAVE_STATVFS) && defined(HAVE_SYS_STATVFS_H)
Guido van Rossum94f6f721999-01-06 18:42:14 +00007097#include <sys/statvfs.h>
7098
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007099PyDoc_STRVAR(posix_statvfs__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007100"statvfs(path) -> statvfs result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007101Perform a statvfs system call on the given path.");
Guido van Rossum94f6f721999-01-06 18:42:14 +00007102
7103static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007104posix_statvfs(PyObject *self, PyObject *args)
Guido van Rossum94f6f721999-01-06 18:42:14 +00007105{
7106 char *path;
7107 int res;
7108 struct statvfs st;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007109 if (!PyArg_ParseTuple(args, "s:statvfs", &path))
Guido van Rossum94f6f721999-01-06 18:42:14 +00007110 return NULL;
7111 Py_BEGIN_ALLOW_THREADS
7112 res = statvfs(path, &st);
7113 Py_END_ALLOW_THREADS
7114 if (res != 0)
7115 return posix_error_with_filename(path);
Guido van Rossum98bf58f2001-10-18 20:34:25 +00007116
7117 return _pystatvfs_fromstructstatvfs(st);
Guido van Rossum94f6f721999-01-06 18:42:14 +00007118}
7119#endif /* HAVE_STATVFS */
7120
7121
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007122#ifdef HAVE_TEMPNAM
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007123PyDoc_STRVAR(posix_tempnam__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007124"tempnam([dir[, prefix]]) -> string\n\n\
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007125Return a unique name for a temporary file.\n\
Neal Norwitz50d5d4f2002-07-30 01:17:43 +00007126The directory and a prefix may be specified as strings; they may be omitted\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007127or None if not needed.");
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007128
7129static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007130posix_tempnam(PyObject *self, PyObject *args)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007131{
7132 PyObject *result = NULL;
7133 char *dir = NULL;
7134 char *pfx = NULL;
7135 char *name;
7136
7137 if (!PyArg_ParseTuple(args, "|zz:tempnam", &dir, &pfx))
7138 return NULL;
Skip Montanaro95618b52001-08-18 18:52:10 +00007139
7140 if (PyErr_Warn(PyExc_RuntimeWarning,
7141 "tempnam is a potential security risk to your program") < 0)
7142 return NULL;
7143
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00007144#ifdef MS_WINDOWS
Fred Drake78b71c22001-07-17 20:37:36 +00007145 name = _tempnam(dir, pfx);
7146#else
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007147 name = tempnam(dir, pfx);
Fred Drake78b71c22001-07-17 20:37:36 +00007148#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007149 if (name == NULL)
7150 return PyErr_NoMemory();
Gregory P. Smithdd96db62008-06-09 04:58:54 +00007151 result = PyString_FromString(name);
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007152 free(name);
7153 return result;
7154}
Guido van Rossumd371ff11999-01-25 16:12:23 +00007155#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007156
7157
7158#ifdef HAVE_TMPFILE
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007159PyDoc_STRVAR(posix_tmpfile__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007160"tmpfile() -> file object\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007161Create a temporary file with no directory entries.");
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007162
7163static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00007164posix_tmpfile(PyObject *self, PyObject *noargs)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007165{
7166 FILE *fp;
7167
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007168 fp = tmpfile();
7169 if (fp == NULL)
7170 return posix_error();
Guido van Rossumdb9198a2002-06-10 19:23:22 +00007171 return PyFile_FromFile(fp, "<tmpfile>", "w+b", fclose);
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007172}
7173#endif
7174
7175
7176#ifdef HAVE_TMPNAM
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007177PyDoc_STRVAR(posix_tmpnam__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007178"tmpnam() -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007179Return a unique name for a temporary file.");
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007180
7181static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00007182posix_tmpnam(PyObject *self, PyObject *noargs)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007183{
7184 char buffer[L_tmpnam];
7185 char *name;
7186
Skip Montanaro95618b52001-08-18 18:52:10 +00007187 if (PyErr_Warn(PyExc_RuntimeWarning,
7188 "tmpnam is a potential security risk to your program") < 0)
7189 return NULL;
7190
Greg Wardb48bc172000-03-01 21:51:56 +00007191#ifdef USE_TMPNAM_R
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007192 name = tmpnam_r(buffer);
7193#else
7194 name = tmpnam(buffer);
7195#endif
7196 if (name == NULL) {
Neal Norwitzd1e0ef62006-03-20 04:08:12 +00007197 PyObject *err = Py_BuildValue("is", 0,
Greg Wardb48bc172000-03-01 21:51:56 +00007198#ifdef USE_TMPNAM_R
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007199 "unexpected NULL from tmpnam_r"
7200#else
7201 "unexpected NULL from tmpnam"
7202#endif
Neal Norwitzd1e0ef62006-03-20 04:08:12 +00007203 );
7204 PyErr_SetObject(PyExc_OSError, err);
7205 Py_XDECREF(err);
7206 return NULL;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007207 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00007208 return PyString_FromString(buffer);
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007209}
7210#endif
7211
7212
Fred Drakec9680921999-12-13 16:37:25 +00007213/* This is used for fpathconf(), pathconf(), confstr() and sysconf().
7214 * It maps strings representing configuration variable names to
7215 * integer values, allowing those functions to be called with the
Thomas Wouters7e474022000-07-16 12:04:32 +00007216 * magic names instead of polluting the module's namespace with tons of
Fred Drake12c6e2d1999-12-14 21:25:03 +00007217 * rarely-used constants. There are three separate tables that use
7218 * these definitions.
Fred Drakebec628d1999-12-15 18:31:10 +00007219 *
7220 * This code is always included, even if none of the interfaces that
7221 * need it are included. The #if hackery needed to avoid it would be
7222 * sufficiently pervasive that it's not worth the loss of readability.
Fred Drakec9680921999-12-13 16:37:25 +00007223 */
7224struct constdef {
7225 char *name;
7226 long value;
7227};
7228
Fred Drake12c6e2d1999-12-14 21:25:03 +00007229static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007230conv_confname(PyObject *arg, int *valuep, struct constdef *table,
7231 size_t tablesize)
Fred Drake12c6e2d1999-12-14 21:25:03 +00007232{
7233 if (PyInt_Check(arg)) {
7234 *valuep = PyInt_AS_LONG(arg);
7235 return 1;
7236 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00007237 if (PyString_Check(arg)) {
Fred Drake12c6e2d1999-12-14 21:25:03 +00007238 /* look up the value in the table using a binary search */
Fred Drake699f3522000-06-29 21:12:41 +00007239 size_t lo = 0;
7240 size_t mid;
7241 size_t hi = tablesize;
7242 int cmp;
Gregory P. Smithdd96db62008-06-09 04:58:54 +00007243 char *confname = PyString_AS_STRING(arg);
Fred Drake12c6e2d1999-12-14 21:25:03 +00007244 while (lo < hi) {
7245 mid = (lo + hi) / 2;
7246 cmp = strcmp(confname, table[mid].name);
7247 if (cmp < 0)
7248 hi = mid;
7249 else if (cmp > 0)
7250 lo = mid + 1;
7251 else {
7252 *valuep = table[mid].value;
7253 return 1;
7254 }
7255 }
7256 PyErr_SetString(PyExc_ValueError, "unrecognized configuration name");
7257 }
7258 else
7259 PyErr_SetString(PyExc_TypeError,
7260 "configuration names must be strings or integers");
7261 return 0;
7262}
7263
7264
7265#if defined(HAVE_FPATHCONF) || defined(HAVE_PATHCONF)
7266static struct constdef posix_constants_pathconf[] = {
Fred Draked86ed291999-12-15 15:34:33 +00007267#ifdef _PC_ABI_AIO_XFER_MAX
7268 {"PC_ABI_AIO_XFER_MAX", _PC_ABI_AIO_XFER_MAX},
7269#endif
7270#ifdef _PC_ABI_ASYNC_IO
7271 {"PC_ABI_ASYNC_IO", _PC_ABI_ASYNC_IO},
7272#endif
Fred Drakec9680921999-12-13 16:37:25 +00007273#ifdef _PC_ASYNC_IO
7274 {"PC_ASYNC_IO", _PC_ASYNC_IO},
7275#endif
7276#ifdef _PC_CHOWN_RESTRICTED
7277 {"PC_CHOWN_RESTRICTED", _PC_CHOWN_RESTRICTED},
7278#endif
7279#ifdef _PC_FILESIZEBITS
7280 {"PC_FILESIZEBITS", _PC_FILESIZEBITS},
7281#endif
7282#ifdef _PC_LAST
7283 {"PC_LAST", _PC_LAST},
7284#endif
7285#ifdef _PC_LINK_MAX
7286 {"PC_LINK_MAX", _PC_LINK_MAX},
7287#endif
7288#ifdef _PC_MAX_CANON
7289 {"PC_MAX_CANON", _PC_MAX_CANON},
7290#endif
7291#ifdef _PC_MAX_INPUT
7292 {"PC_MAX_INPUT", _PC_MAX_INPUT},
7293#endif
7294#ifdef _PC_NAME_MAX
7295 {"PC_NAME_MAX", _PC_NAME_MAX},
7296#endif
7297#ifdef _PC_NO_TRUNC
7298 {"PC_NO_TRUNC", _PC_NO_TRUNC},
7299#endif
7300#ifdef _PC_PATH_MAX
7301 {"PC_PATH_MAX", _PC_PATH_MAX},
7302#endif
7303#ifdef _PC_PIPE_BUF
7304 {"PC_PIPE_BUF", _PC_PIPE_BUF},
7305#endif
7306#ifdef _PC_PRIO_IO
7307 {"PC_PRIO_IO", _PC_PRIO_IO},
7308#endif
7309#ifdef _PC_SOCK_MAXBUF
7310 {"PC_SOCK_MAXBUF", _PC_SOCK_MAXBUF},
7311#endif
7312#ifdef _PC_SYNC_IO
7313 {"PC_SYNC_IO", _PC_SYNC_IO},
7314#endif
7315#ifdef _PC_VDISABLE
7316 {"PC_VDISABLE", _PC_VDISABLE},
7317#endif
7318};
7319
Fred Drakec9680921999-12-13 16:37:25 +00007320static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007321conv_path_confname(PyObject *arg, int *valuep)
Fred Drakec9680921999-12-13 16:37:25 +00007322{
7323 return conv_confname(arg, valuep, posix_constants_pathconf,
7324 sizeof(posix_constants_pathconf)
7325 / sizeof(struct constdef));
7326}
7327#endif
7328
7329#ifdef HAVE_FPATHCONF
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007330PyDoc_STRVAR(posix_fpathconf__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007331"fpathconf(fd, name) -> integer\n\n\
Fred Drakec9680921999-12-13 16:37:25 +00007332Return the configuration limit name for the file descriptor fd.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007333If there is no limit, return -1.");
Fred Drakec9680921999-12-13 16:37:25 +00007334
7335static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007336posix_fpathconf(PyObject *self, PyObject *args)
Fred Drakec9680921999-12-13 16:37:25 +00007337{
7338 PyObject *result = NULL;
7339 int name, fd;
7340
Fred Drake12c6e2d1999-12-14 21:25:03 +00007341 if (PyArg_ParseTuple(args, "iO&:fpathconf", &fd,
7342 conv_path_confname, &name)) {
Fred Drakec9680921999-12-13 16:37:25 +00007343 long limit;
7344
7345 errno = 0;
7346 limit = fpathconf(fd, name);
7347 if (limit == -1 && errno != 0)
7348 posix_error();
7349 else
7350 result = PyInt_FromLong(limit);
7351 }
7352 return result;
7353}
7354#endif
7355
7356
7357#ifdef HAVE_PATHCONF
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007358PyDoc_STRVAR(posix_pathconf__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007359"pathconf(path, name) -> integer\n\n\
Fred Drakec9680921999-12-13 16:37:25 +00007360Return the configuration limit name for the file or directory path.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007361If there is no limit, return -1.");
Fred Drakec9680921999-12-13 16:37:25 +00007362
7363static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007364posix_pathconf(PyObject *self, PyObject *args)
Fred Drakec9680921999-12-13 16:37:25 +00007365{
7366 PyObject *result = NULL;
7367 int name;
7368 char *path;
7369
7370 if (PyArg_ParseTuple(args, "sO&:pathconf", &path,
7371 conv_path_confname, &name)) {
7372 long limit;
7373
7374 errno = 0;
7375 limit = pathconf(path, name);
Fred Drake12c6e2d1999-12-14 21:25:03 +00007376 if (limit == -1 && errno != 0) {
Fred Drakec9680921999-12-13 16:37:25 +00007377 if (errno == EINVAL)
7378 /* could be a path or name problem */
7379 posix_error();
7380 else
7381 posix_error_with_filename(path);
Fred Drake12c6e2d1999-12-14 21:25:03 +00007382 }
Fred Drakec9680921999-12-13 16:37:25 +00007383 else
7384 result = PyInt_FromLong(limit);
7385 }
7386 return result;
7387}
7388#endif
7389
7390#ifdef HAVE_CONFSTR
7391static struct constdef posix_constants_confstr[] = {
Fred Draked86ed291999-12-15 15:34:33 +00007392#ifdef _CS_ARCHITECTURE
7393 {"CS_ARCHITECTURE", _CS_ARCHITECTURE},
7394#endif
7395#ifdef _CS_HOSTNAME
7396 {"CS_HOSTNAME", _CS_HOSTNAME},
7397#endif
7398#ifdef _CS_HW_PROVIDER
7399 {"CS_HW_PROVIDER", _CS_HW_PROVIDER},
7400#endif
7401#ifdef _CS_HW_SERIAL
7402 {"CS_HW_SERIAL", _CS_HW_SERIAL},
7403#endif
7404#ifdef _CS_INITTAB_NAME
7405 {"CS_INITTAB_NAME", _CS_INITTAB_NAME},
7406#endif
Fred Drakec9680921999-12-13 16:37:25 +00007407#ifdef _CS_LFS64_CFLAGS
7408 {"CS_LFS64_CFLAGS", _CS_LFS64_CFLAGS},
7409#endif
7410#ifdef _CS_LFS64_LDFLAGS
7411 {"CS_LFS64_LDFLAGS", _CS_LFS64_LDFLAGS},
7412#endif
7413#ifdef _CS_LFS64_LIBS
7414 {"CS_LFS64_LIBS", _CS_LFS64_LIBS},
7415#endif
7416#ifdef _CS_LFS64_LINTFLAGS
7417 {"CS_LFS64_LINTFLAGS", _CS_LFS64_LINTFLAGS},
7418#endif
7419#ifdef _CS_LFS_CFLAGS
7420 {"CS_LFS_CFLAGS", _CS_LFS_CFLAGS},
7421#endif
7422#ifdef _CS_LFS_LDFLAGS
7423 {"CS_LFS_LDFLAGS", _CS_LFS_LDFLAGS},
7424#endif
7425#ifdef _CS_LFS_LIBS
7426 {"CS_LFS_LIBS", _CS_LFS_LIBS},
7427#endif
7428#ifdef _CS_LFS_LINTFLAGS
7429 {"CS_LFS_LINTFLAGS", _CS_LFS_LINTFLAGS},
7430#endif
Fred Draked86ed291999-12-15 15:34:33 +00007431#ifdef _CS_MACHINE
7432 {"CS_MACHINE", _CS_MACHINE},
7433#endif
Fred Drakec9680921999-12-13 16:37:25 +00007434#ifdef _CS_PATH
7435 {"CS_PATH", _CS_PATH},
7436#endif
Fred Draked86ed291999-12-15 15:34:33 +00007437#ifdef _CS_RELEASE
7438 {"CS_RELEASE", _CS_RELEASE},
7439#endif
7440#ifdef _CS_SRPC_DOMAIN
7441 {"CS_SRPC_DOMAIN", _CS_SRPC_DOMAIN},
7442#endif
7443#ifdef _CS_SYSNAME
7444 {"CS_SYSNAME", _CS_SYSNAME},
7445#endif
7446#ifdef _CS_VERSION
7447 {"CS_VERSION", _CS_VERSION},
7448#endif
Fred Drakec9680921999-12-13 16:37:25 +00007449#ifdef _CS_XBS5_ILP32_OFF32_CFLAGS
7450 {"CS_XBS5_ILP32_OFF32_CFLAGS", _CS_XBS5_ILP32_OFF32_CFLAGS},
7451#endif
7452#ifdef _CS_XBS5_ILP32_OFF32_LDFLAGS
7453 {"CS_XBS5_ILP32_OFF32_LDFLAGS", _CS_XBS5_ILP32_OFF32_LDFLAGS},
7454#endif
7455#ifdef _CS_XBS5_ILP32_OFF32_LIBS
7456 {"CS_XBS5_ILP32_OFF32_LIBS", _CS_XBS5_ILP32_OFF32_LIBS},
7457#endif
7458#ifdef _CS_XBS5_ILP32_OFF32_LINTFLAGS
7459 {"CS_XBS5_ILP32_OFF32_LINTFLAGS", _CS_XBS5_ILP32_OFF32_LINTFLAGS},
7460#endif
7461#ifdef _CS_XBS5_ILP32_OFFBIG_CFLAGS
7462 {"CS_XBS5_ILP32_OFFBIG_CFLAGS", _CS_XBS5_ILP32_OFFBIG_CFLAGS},
7463#endif
7464#ifdef _CS_XBS5_ILP32_OFFBIG_LDFLAGS
7465 {"CS_XBS5_ILP32_OFFBIG_LDFLAGS", _CS_XBS5_ILP32_OFFBIG_LDFLAGS},
7466#endif
7467#ifdef _CS_XBS5_ILP32_OFFBIG_LIBS
7468 {"CS_XBS5_ILP32_OFFBIG_LIBS", _CS_XBS5_ILP32_OFFBIG_LIBS},
7469#endif
7470#ifdef _CS_XBS5_ILP32_OFFBIG_LINTFLAGS
7471 {"CS_XBS5_ILP32_OFFBIG_LINTFLAGS", _CS_XBS5_ILP32_OFFBIG_LINTFLAGS},
7472#endif
7473#ifdef _CS_XBS5_LP64_OFF64_CFLAGS
7474 {"CS_XBS5_LP64_OFF64_CFLAGS", _CS_XBS5_LP64_OFF64_CFLAGS},
7475#endif
7476#ifdef _CS_XBS5_LP64_OFF64_LDFLAGS
7477 {"CS_XBS5_LP64_OFF64_LDFLAGS", _CS_XBS5_LP64_OFF64_LDFLAGS},
7478#endif
7479#ifdef _CS_XBS5_LP64_OFF64_LIBS
7480 {"CS_XBS5_LP64_OFF64_LIBS", _CS_XBS5_LP64_OFF64_LIBS},
7481#endif
7482#ifdef _CS_XBS5_LP64_OFF64_LINTFLAGS
7483 {"CS_XBS5_LP64_OFF64_LINTFLAGS", _CS_XBS5_LP64_OFF64_LINTFLAGS},
7484#endif
7485#ifdef _CS_XBS5_LPBIG_OFFBIG_CFLAGS
7486 {"CS_XBS5_LPBIG_OFFBIG_CFLAGS", _CS_XBS5_LPBIG_OFFBIG_CFLAGS},
7487#endif
7488#ifdef _CS_XBS5_LPBIG_OFFBIG_LDFLAGS
7489 {"CS_XBS5_LPBIG_OFFBIG_LDFLAGS", _CS_XBS5_LPBIG_OFFBIG_LDFLAGS},
7490#endif
7491#ifdef _CS_XBS5_LPBIG_OFFBIG_LIBS
7492 {"CS_XBS5_LPBIG_OFFBIG_LIBS", _CS_XBS5_LPBIG_OFFBIG_LIBS},
7493#endif
7494#ifdef _CS_XBS5_LPBIG_OFFBIG_LINTFLAGS
7495 {"CS_XBS5_LPBIG_OFFBIG_LINTFLAGS", _CS_XBS5_LPBIG_OFFBIG_LINTFLAGS},
7496#endif
Fred Draked86ed291999-12-15 15:34:33 +00007497#ifdef _MIPS_CS_AVAIL_PROCESSORS
7498 {"MIPS_CS_AVAIL_PROCESSORS", _MIPS_CS_AVAIL_PROCESSORS},
7499#endif
7500#ifdef _MIPS_CS_BASE
7501 {"MIPS_CS_BASE", _MIPS_CS_BASE},
7502#endif
7503#ifdef _MIPS_CS_HOSTID
7504 {"MIPS_CS_HOSTID", _MIPS_CS_HOSTID},
7505#endif
7506#ifdef _MIPS_CS_HW_NAME
7507 {"MIPS_CS_HW_NAME", _MIPS_CS_HW_NAME},
7508#endif
7509#ifdef _MIPS_CS_NUM_PROCESSORS
7510 {"MIPS_CS_NUM_PROCESSORS", _MIPS_CS_NUM_PROCESSORS},
7511#endif
7512#ifdef _MIPS_CS_OSREL_MAJ
7513 {"MIPS_CS_OSREL_MAJ", _MIPS_CS_OSREL_MAJ},
7514#endif
7515#ifdef _MIPS_CS_OSREL_MIN
7516 {"MIPS_CS_OSREL_MIN", _MIPS_CS_OSREL_MIN},
7517#endif
7518#ifdef _MIPS_CS_OSREL_PATCH
7519 {"MIPS_CS_OSREL_PATCH", _MIPS_CS_OSREL_PATCH},
7520#endif
7521#ifdef _MIPS_CS_OS_NAME
7522 {"MIPS_CS_OS_NAME", _MIPS_CS_OS_NAME},
7523#endif
7524#ifdef _MIPS_CS_OS_PROVIDER
7525 {"MIPS_CS_OS_PROVIDER", _MIPS_CS_OS_PROVIDER},
7526#endif
7527#ifdef _MIPS_CS_PROCESSORS
7528 {"MIPS_CS_PROCESSORS", _MIPS_CS_PROCESSORS},
7529#endif
7530#ifdef _MIPS_CS_SERIAL
7531 {"MIPS_CS_SERIAL", _MIPS_CS_SERIAL},
7532#endif
7533#ifdef _MIPS_CS_VENDOR
7534 {"MIPS_CS_VENDOR", _MIPS_CS_VENDOR},
7535#endif
Fred Drakec9680921999-12-13 16:37:25 +00007536};
7537
7538static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007539conv_confstr_confname(PyObject *arg, int *valuep)
Fred Drakec9680921999-12-13 16:37:25 +00007540{
7541 return conv_confname(arg, valuep, posix_constants_confstr,
7542 sizeof(posix_constants_confstr)
7543 / sizeof(struct constdef));
7544}
7545
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007546PyDoc_STRVAR(posix_confstr__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007547"confstr(name) -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007548Return a string-valued system configuration variable.");
Fred Drakec9680921999-12-13 16:37:25 +00007549
7550static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007551posix_confstr(PyObject *self, PyObject *args)
Fred Drakec9680921999-12-13 16:37:25 +00007552{
7553 PyObject *result = NULL;
7554 int name;
Neal Norwitz449b24e2006-04-20 06:56:05 +00007555 char buffer[256];
Fred Drakec9680921999-12-13 16:37:25 +00007556
7557 if (PyArg_ParseTuple(args, "O&:confstr", conv_confstr_confname, &name)) {
Skip Montanarodd527fc2006-04-18 00:49:49 +00007558 int len;
Fred Drakec9680921999-12-13 16:37:25 +00007559
Fred Drakec9680921999-12-13 16:37:25 +00007560 errno = 0;
Skip Montanarodd527fc2006-04-18 00:49:49 +00007561 len = confstr(name, buffer, sizeof(buffer));
Skip Montanaro94785ef2006-04-20 01:29:48 +00007562 if (len == 0) {
7563 if (errno) {
7564 posix_error();
7565 }
7566 else {
7567 result = Py_None;
7568 Py_INCREF(Py_None);
7569 }
Fred Drakec9680921999-12-13 16:37:25 +00007570 }
7571 else {
Neal Norwitz0d21b1e2006-04-20 06:44:42 +00007572 if ((unsigned int)len >= sizeof(buffer)) {
Gregory P. Smithdd96db62008-06-09 04:58:54 +00007573 result = PyString_FromStringAndSize(NULL, len-1);
Fred Drakec9680921999-12-13 16:37:25 +00007574 if (result != NULL)
Gregory P. Smithdd96db62008-06-09 04:58:54 +00007575 confstr(name, PyString_AS_STRING(result), len);
Fred Drakec9680921999-12-13 16:37:25 +00007576 }
7577 else
Gregory P. Smithdd96db62008-06-09 04:58:54 +00007578 result = PyString_FromStringAndSize(buffer, len-1);
Fred Drakec9680921999-12-13 16:37:25 +00007579 }
7580 }
7581 return result;
7582}
7583#endif
7584
7585
7586#ifdef HAVE_SYSCONF
7587static struct constdef posix_constants_sysconf[] = {
7588#ifdef _SC_2_CHAR_TERM
7589 {"SC_2_CHAR_TERM", _SC_2_CHAR_TERM},
7590#endif
7591#ifdef _SC_2_C_BIND
7592 {"SC_2_C_BIND", _SC_2_C_BIND},
7593#endif
7594#ifdef _SC_2_C_DEV
7595 {"SC_2_C_DEV", _SC_2_C_DEV},
7596#endif
7597#ifdef _SC_2_C_VERSION
7598 {"SC_2_C_VERSION", _SC_2_C_VERSION},
7599#endif
7600#ifdef _SC_2_FORT_DEV
7601 {"SC_2_FORT_DEV", _SC_2_FORT_DEV},
7602#endif
7603#ifdef _SC_2_FORT_RUN
7604 {"SC_2_FORT_RUN", _SC_2_FORT_RUN},
7605#endif
7606#ifdef _SC_2_LOCALEDEF
7607 {"SC_2_LOCALEDEF", _SC_2_LOCALEDEF},
7608#endif
7609#ifdef _SC_2_SW_DEV
7610 {"SC_2_SW_DEV", _SC_2_SW_DEV},
7611#endif
7612#ifdef _SC_2_UPE
7613 {"SC_2_UPE", _SC_2_UPE},
7614#endif
7615#ifdef _SC_2_VERSION
7616 {"SC_2_VERSION", _SC_2_VERSION},
7617#endif
Fred Draked86ed291999-12-15 15:34:33 +00007618#ifdef _SC_ABI_ASYNCHRONOUS_IO
7619 {"SC_ABI_ASYNCHRONOUS_IO", _SC_ABI_ASYNCHRONOUS_IO},
7620#endif
7621#ifdef _SC_ACL
7622 {"SC_ACL", _SC_ACL},
7623#endif
Fred Drakec9680921999-12-13 16:37:25 +00007624#ifdef _SC_AIO_LISTIO_MAX
7625 {"SC_AIO_LISTIO_MAX", _SC_AIO_LISTIO_MAX},
7626#endif
Fred Drakec9680921999-12-13 16:37:25 +00007627#ifdef _SC_AIO_MAX
7628 {"SC_AIO_MAX", _SC_AIO_MAX},
7629#endif
7630#ifdef _SC_AIO_PRIO_DELTA_MAX
7631 {"SC_AIO_PRIO_DELTA_MAX", _SC_AIO_PRIO_DELTA_MAX},
7632#endif
7633#ifdef _SC_ARG_MAX
7634 {"SC_ARG_MAX", _SC_ARG_MAX},
7635#endif
7636#ifdef _SC_ASYNCHRONOUS_IO
7637 {"SC_ASYNCHRONOUS_IO", _SC_ASYNCHRONOUS_IO},
7638#endif
7639#ifdef _SC_ATEXIT_MAX
7640 {"SC_ATEXIT_MAX", _SC_ATEXIT_MAX},
7641#endif
Fred Draked86ed291999-12-15 15:34:33 +00007642#ifdef _SC_AUDIT
7643 {"SC_AUDIT", _SC_AUDIT},
7644#endif
Fred Drakec9680921999-12-13 16:37:25 +00007645#ifdef _SC_AVPHYS_PAGES
7646 {"SC_AVPHYS_PAGES", _SC_AVPHYS_PAGES},
7647#endif
7648#ifdef _SC_BC_BASE_MAX
7649 {"SC_BC_BASE_MAX", _SC_BC_BASE_MAX},
7650#endif
7651#ifdef _SC_BC_DIM_MAX
7652 {"SC_BC_DIM_MAX", _SC_BC_DIM_MAX},
7653#endif
7654#ifdef _SC_BC_SCALE_MAX
7655 {"SC_BC_SCALE_MAX", _SC_BC_SCALE_MAX},
7656#endif
7657#ifdef _SC_BC_STRING_MAX
7658 {"SC_BC_STRING_MAX", _SC_BC_STRING_MAX},
7659#endif
Fred Draked86ed291999-12-15 15:34:33 +00007660#ifdef _SC_CAP
7661 {"SC_CAP", _SC_CAP},
7662#endif
Fred Drakec9680921999-12-13 16:37:25 +00007663#ifdef _SC_CHARCLASS_NAME_MAX
7664 {"SC_CHARCLASS_NAME_MAX", _SC_CHARCLASS_NAME_MAX},
7665#endif
7666#ifdef _SC_CHAR_BIT
7667 {"SC_CHAR_BIT", _SC_CHAR_BIT},
7668#endif
7669#ifdef _SC_CHAR_MAX
7670 {"SC_CHAR_MAX", _SC_CHAR_MAX},
7671#endif
7672#ifdef _SC_CHAR_MIN
7673 {"SC_CHAR_MIN", _SC_CHAR_MIN},
7674#endif
7675#ifdef _SC_CHILD_MAX
7676 {"SC_CHILD_MAX", _SC_CHILD_MAX},
7677#endif
7678#ifdef _SC_CLK_TCK
7679 {"SC_CLK_TCK", _SC_CLK_TCK},
7680#endif
7681#ifdef _SC_COHER_BLKSZ
7682 {"SC_COHER_BLKSZ", _SC_COHER_BLKSZ},
7683#endif
7684#ifdef _SC_COLL_WEIGHTS_MAX
7685 {"SC_COLL_WEIGHTS_MAX", _SC_COLL_WEIGHTS_MAX},
7686#endif
7687#ifdef _SC_DCACHE_ASSOC
7688 {"SC_DCACHE_ASSOC", _SC_DCACHE_ASSOC},
7689#endif
7690#ifdef _SC_DCACHE_BLKSZ
7691 {"SC_DCACHE_BLKSZ", _SC_DCACHE_BLKSZ},
7692#endif
7693#ifdef _SC_DCACHE_LINESZ
7694 {"SC_DCACHE_LINESZ", _SC_DCACHE_LINESZ},
7695#endif
7696#ifdef _SC_DCACHE_SZ
7697 {"SC_DCACHE_SZ", _SC_DCACHE_SZ},
7698#endif
7699#ifdef _SC_DCACHE_TBLKSZ
7700 {"SC_DCACHE_TBLKSZ", _SC_DCACHE_TBLKSZ},
7701#endif
7702#ifdef _SC_DELAYTIMER_MAX
7703 {"SC_DELAYTIMER_MAX", _SC_DELAYTIMER_MAX},
7704#endif
7705#ifdef _SC_EQUIV_CLASS_MAX
7706 {"SC_EQUIV_CLASS_MAX", _SC_EQUIV_CLASS_MAX},
7707#endif
7708#ifdef _SC_EXPR_NEST_MAX
7709 {"SC_EXPR_NEST_MAX", _SC_EXPR_NEST_MAX},
7710#endif
7711#ifdef _SC_FSYNC
7712 {"SC_FSYNC", _SC_FSYNC},
7713#endif
7714#ifdef _SC_GETGR_R_SIZE_MAX
7715 {"SC_GETGR_R_SIZE_MAX", _SC_GETGR_R_SIZE_MAX},
7716#endif
7717#ifdef _SC_GETPW_R_SIZE_MAX
7718 {"SC_GETPW_R_SIZE_MAX", _SC_GETPW_R_SIZE_MAX},
7719#endif
7720#ifdef _SC_ICACHE_ASSOC
7721 {"SC_ICACHE_ASSOC", _SC_ICACHE_ASSOC},
7722#endif
7723#ifdef _SC_ICACHE_BLKSZ
7724 {"SC_ICACHE_BLKSZ", _SC_ICACHE_BLKSZ},
7725#endif
7726#ifdef _SC_ICACHE_LINESZ
7727 {"SC_ICACHE_LINESZ", _SC_ICACHE_LINESZ},
7728#endif
7729#ifdef _SC_ICACHE_SZ
7730 {"SC_ICACHE_SZ", _SC_ICACHE_SZ},
7731#endif
Fred Draked86ed291999-12-15 15:34:33 +00007732#ifdef _SC_INF
7733 {"SC_INF", _SC_INF},
7734#endif
Fred Drakec9680921999-12-13 16:37:25 +00007735#ifdef _SC_INT_MAX
7736 {"SC_INT_MAX", _SC_INT_MAX},
7737#endif
7738#ifdef _SC_INT_MIN
7739 {"SC_INT_MIN", _SC_INT_MIN},
7740#endif
7741#ifdef _SC_IOV_MAX
7742 {"SC_IOV_MAX", _SC_IOV_MAX},
7743#endif
Fred Draked86ed291999-12-15 15:34:33 +00007744#ifdef _SC_IP_SECOPTS
7745 {"SC_IP_SECOPTS", _SC_IP_SECOPTS},
7746#endif
Fred Drakec9680921999-12-13 16:37:25 +00007747#ifdef _SC_JOB_CONTROL
7748 {"SC_JOB_CONTROL", _SC_JOB_CONTROL},
7749#endif
Fred Draked86ed291999-12-15 15:34:33 +00007750#ifdef _SC_KERN_POINTERS
7751 {"SC_KERN_POINTERS", _SC_KERN_POINTERS},
7752#endif
7753#ifdef _SC_KERN_SIM
7754 {"SC_KERN_SIM", _SC_KERN_SIM},
7755#endif
Fred Drakec9680921999-12-13 16:37:25 +00007756#ifdef _SC_LINE_MAX
7757 {"SC_LINE_MAX", _SC_LINE_MAX},
7758#endif
7759#ifdef _SC_LOGIN_NAME_MAX
7760 {"SC_LOGIN_NAME_MAX", _SC_LOGIN_NAME_MAX},
7761#endif
7762#ifdef _SC_LOGNAME_MAX
7763 {"SC_LOGNAME_MAX", _SC_LOGNAME_MAX},
7764#endif
7765#ifdef _SC_LONG_BIT
7766 {"SC_LONG_BIT", _SC_LONG_BIT},
7767#endif
Fred Draked86ed291999-12-15 15:34:33 +00007768#ifdef _SC_MAC
7769 {"SC_MAC", _SC_MAC},
7770#endif
Fred Drakec9680921999-12-13 16:37:25 +00007771#ifdef _SC_MAPPED_FILES
7772 {"SC_MAPPED_FILES", _SC_MAPPED_FILES},
7773#endif
7774#ifdef _SC_MAXPID
7775 {"SC_MAXPID", _SC_MAXPID},
7776#endif
7777#ifdef _SC_MB_LEN_MAX
7778 {"SC_MB_LEN_MAX", _SC_MB_LEN_MAX},
7779#endif
7780#ifdef _SC_MEMLOCK
7781 {"SC_MEMLOCK", _SC_MEMLOCK},
7782#endif
7783#ifdef _SC_MEMLOCK_RANGE
7784 {"SC_MEMLOCK_RANGE", _SC_MEMLOCK_RANGE},
7785#endif
7786#ifdef _SC_MEMORY_PROTECTION
7787 {"SC_MEMORY_PROTECTION", _SC_MEMORY_PROTECTION},
7788#endif
7789#ifdef _SC_MESSAGE_PASSING
7790 {"SC_MESSAGE_PASSING", _SC_MESSAGE_PASSING},
7791#endif
Fred Draked86ed291999-12-15 15:34:33 +00007792#ifdef _SC_MMAP_FIXED_ALIGNMENT
7793 {"SC_MMAP_FIXED_ALIGNMENT", _SC_MMAP_FIXED_ALIGNMENT},
7794#endif
Fred Drakec9680921999-12-13 16:37:25 +00007795#ifdef _SC_MQ_OPEN_MAX
7796 {"SC_MQ_OPEN_MAX", _SC_MQ_OPEN_MAX},
7797#endif
7798#ifdef _SC_MQ_PRIO_MAX
7799 {"SC_MQ_PRIO_MAX", _SC_MQ_PRIO_MAX},
7800#endif
Fred Draked86ed291999-12-15 15:34:33 +00007801#ifdef _SC_NACLS_MAX
7802 {"SC_NACLS_MAX", _SC_NACLS_MAX},
7803#endif
Fred Drakec9680921999-12-13 16:37:25 +00007804#ifdef _SC_NGROUPS_MAX
7805 {"SC_NGROUPS_MAX", _SC_NGROUPS_MAX},
7806#endif
7807#ifdef _SC_NL_ARGMAX
7808 {"SC_NL_ARGMAX", _SC_NL_ARGMAX},
7809#endif
7810#ifdef _SC_NL_LANGMAX
7811 {"SC_NL_LANGMAX", _SC_NL_LANGMAX},
7812#endif
7813#ifdef _SC_NL_MSGMAX
7814 {"SC_NL_MSGMAX", _SC_NL_MSGMAX},
7815#endif
7816#ifdef _SC_NL_NMAX
7817 {"SC_NL_NMAX", _SC_NL_NMAX},
7818#endif
7819#ifdef _SC_NL_SETMAX
7820 {"SC_NL_SETMAX", _SC_NL_SETMAX},
7821#endif
7822#ifdef _SC_NL_TEXTMAX
7823 {"SC_NL_TEXTMAX", _SC_NL_TEXTMAX},
7824#endif
7825#ifdef _SC_NPROCESSORS_CONF
7826 {"SC_NPROCESSORS_CONF", _SC_NPROCESSORS_CONF},
7827#endif
7828#ifdef _SC_NPROCESSORS_ONLN
7829 {"SC_NPROCESSORS_ONLN", _SC_NPROCESSORS_ONLN},
7830#endif
Fred Draked86ed291999-12-15 15:34:33 +00007831#ifdef _SC_NPROC_CONF
7832 {"SC_NPROC_CONF", _SC_NPROC_CONF},
7833#endif
7834#ifdef _SC_NPROC_ONLN
7835 {"SC_NPROC_ONLN", _SC_NPROC_ONLN},
7836#endif
Fred Drakec9680921999-12-13 16:37:25 +00007837#ifdef _SC_NZERO
7838 {"SC_NZERO", _SC_NZERO},
7839#endif
7840#ifdef _SC_OPEN_MAX
7841 {"SC_OPEN_MAX", _SC_OPEN_MAX},
7842#endif
7843#ifdef _SC_PAGESIZE
7844 {"SC_PAGESIZE", _SC_PAGESIZE},
7845#endif
7846#ifdef _SC_PAGE_SIZE
7847 {"SC_PAGE_SIZE", _SC_PAGE_SIZE},
7848#endif
7849#ifdef _SC_PASS_MAX
7850 {"SC_PASS_MAX", _SC_PASS_MAX},
7851#endif
7852#ifdef _SC_PHYS_PAGES
7853 {"SC_PHYS_PAGES", _SC_PHYS_PAGES},
7854#endif
7855#ifdef _SC_PII
7856 {"SC_PII", _SC_PII},
7857#endif
7858#ifdef _SC_PII_INTERNET
7859 {"SC_PII_INTERNET", _SC_PII_INTERNET},
7860#endif
7861#ifdef _SC_PII_INTERNET_DGRAM
7862 {"SC_PII_INTERNET_DGRAM", _SC_PII_INTERNET_DGRAM},
7863#endif
7864#ifdef _SC_PII_INTERNET_STREAM
7865 {"SC_PII_INTERNET_STREAM", _SC_PII_INTERNET_STREAM},
7866#endif
7867#ifdef _SC_PII_OSI
7868 {"SC_PII_OSI", _SC_PII_OSI},
7869#endif
7870#ifdef _SC_PII_OSI_CLTS
7871 {"SC_PII_OSI_CLTS", _SC_PII_OSI_CLTS},
7872#endif
7873#ifdef _SC_PII_OSI_COTS
7874 {"SC_PII_OSI_COTS", _SC_PII_OSI_COTS},
7875#endif
7876#ifdef _SC_PII_OSI_M
7877 {"SC_PII_OSI_M", _SC_PII_OSI_M},
7878#endif
7879#ifdef _SC_PII_SOCKET
7880 {"SC_PII_SOCKET", _SC_PII_SOCKET},
7881#endif
7882#ifdef _SC_PII_XTI
7883 {"SC_PII_XTI", _SC_PII_XTI},
7884#endif
7885#ifdef _SC_POLL
7886 {"SC_POLL", _SC_POLL},
7887#endif
7888#ifdef _SC_PRIORITIZED_IO
7889 {"SC_PRIORITIZED_IO", _SC_PRIORITIZED_IO},
7890#endif
7891#ifdef _SC_PRIORITY_SCHEDULING
7892 {"SC_PRIORITY_SCHEDULING", _SC_PRIORITY_SCHEDULING},
7893#endif
7894#ifdef _SC_REALTIME_SIGNALS
7895 {"SC_REALTIME_SIGNALS", _SC_REALTIME_SIGNALS},
7896#endif
7897#ifdef _SC_RE_DUP_MAX
7898 {"SC_RE_DUP_MAX", _SC_RE_DUP_MAX},
7899#endif
7900#ifdef _SC_RTSIG_MAX
7901 {"SC_RTSIG_MAX", _SC_RTSIG_MAX},
7902#endif
7903#ifdef _SC_SAVED_IDS
7904 {"SC_SAVED_IDS", _SC_SAVED_IDS},
7905#endif
7906#ifdef _SC_SCHAR_MAX
7907 {"SC_SCHAR_MAX", _SC_SCHAR_MAX},
7908#endif
7909#ifdef _SC_SCHAR_MIN
7910 {"SC_SCHAR_MIN", _SC_SCHAR_MIN},
7911#endif
7912#ifdef _SC_SELECT
7913 {"SC_SELECT", _SC_SELECT},
7914#endif
7915#ifdef _SC_SEMAPHORES
7916 {"SC_SEMAPHORES", _SC_SEMAPHORES},
7917#endif
7918#ifdef _SC_SEM_NSEMS_MAX
7919 {"SC_SEM_NSEMS_MAX", _SC_SEM_NSEMS_MAX},
7920#endif
7921#ifdef _SC_SEM_VALUE_MAX
7922 {"SC_SEM_VALUE_MAX", _SC_SEM_VALUE_MAX},
7923#endif
7924#ifdef _SC_SHARED_MEMORY_OBJECTS
7925 {"SC_SHARED_MEMORY_OBJECTS", _SC_SHARED_MEMORY_OBJECTS},
7926#endif
7927#ifdef _SC_SHRT_MAX
7928 {"SC_SHRT_MAX", _SC_SHRT_MAX},
7929#endif
7930#ifdef _SC_SHRT_MIN
7931 {"SC_SHRT_MIN", _SC_SHRT_MIN},
7932#endif
7933#ifdef _SC_SIGQUEUE_MAX
7934 {"SC_SIGQUEUE_MAX", _SC_SIGQUEUE_MAX},
7935#endif
7936#ifdef _SC_SIGRT_MAX
7937 {"SC_SIGRT_MAX", _SC_SIGRT_MAX},
7938#endif
7939#ifdef _SC_SIGRT_MIN
7940 {"SC_SIGRT_MIN", _SC_SIGRT_MIN},
7941#endif
Fred Draked86ed291999-12-15 15:34:33 +00007942#ifdef _SC_SOFTPOWER
7943 {"SC_SOFTPOWER", _SC_SOFTPOWER},
7944#endif
Fred Drakec9680921999-12-13 16:37:25 +00007945#ifdef _SC_SPLIT_CACHE
7946 {"SC_SPLIT_CACHE", _SC_SPLIT_CACHE},
7947#endif
7948#ifdef _SC_SSIZE_MAX
7949 {"SC_SSIZE_MAX", _SC_SSIZE_MAX},
7950#endif
7951#ifdef _SC_STACK_PROT
7952 {"SC_STACK_PROT", _SC_STACK_PROT},
7953#endif
7954#ifdef _SC_STREAM_MAX
7955 {"SC_STREAM_MAX", _SC_STREAM_MAX},
7956#endif
7957#ifdef _SC_SYNCHRONIZED_IO
7958 {"SC_SYNCHRONIZED_IO", _SC_SYNCHRONIZED_IO},
7959#endif
7960#ifdef _SC_THREADS
7961 {"SC_THREADS", _SC_THREADS},
7962#endif
7963#ifdef _SC_THREAD_ATTR_STACKADDR
7964 {"SC_THREAD_ATTR_STACKADDR", _SC_THREAD_ATTR_STACKADDR},
7965#endif
7966#ifdef _SC_THREAD_ATTR_STACKSIZE
7967 {"SC_THREAD_ATTR_STACKSIZE", _SC_THREAD_ATTR_STACKSIZE},
7968#endif
7969#ifdef _SC_THREAD_DESTRUCTOR_ITERATIONS
7970 {"SC_THREAD_DESTRUCTOR_ITERATIONS", _SC_THREAD_DESTRUCTOR_ITERATIONS},
7971#endif
7972#ifdef _SC_THREAD_KEYS_MAX
7973 {"SC_THREAD_KEYS_MAX", _SC_THREAD_KEYS_MAX},
7974#endif
7975#ifdef _SC_THREAD_PRIORITY_SCHEDULING
7976 {"SC_THREAD_PRIORITY_SCHEDULING", _SC_THREAD_PRIORITY_SCHEDULING},
7977#endif
7978#ifdef _SC_THREAD_PRIO_INHERIT
7979 {"SC_THREAD_PRIO_INHERIT", _SC_THREAD_PRIO_INHERIT},
7980#endif
7981#ifdef _SC_THREAD_PRIO_PROTECT
7982 {"SC_THREAD_PRIO_PROTECT", _SC_THREAD_PRIO_PROTECT},
7983#endif
7984#ifdef _SC_THREAD_PROCESS_SHARED
7985 {"SC_THREAD_PROCESS_SHARED", _SC_THREAD_PROCESS_SHARED},
7986#endif
7987#ifdef _SC_THREAD_SAFE_FUNCTIONS
7988 {"SC_THREAD_SAFE_FUNCTIONS", _SC_THREAD_SAFE_FUNCTIONS},
7989#endif
7990#ifdef _SC_THREAD_STACK_MIN
7991 {"SC_THREAD_STACK_MIN", _SC_THREAD_STACK_MIN},
7992#endif
7993#ifdef _SC_THREAD_THREADS_MAX
7994 {"SC_THREAD_THREADS_MAX", _SC_THREAD_THREADS_MAX},
7995#endif
7996#ifdef _SC_TIMERS
7997 {"SC_TIMERS", _SC_TIMERS},
7998#endif
7999#ifdef _SC_TIMER_MAX
8000 {"SC_TIMER_MAX", _SC_TIMER_MAX},
8001#endif
8002#ifdef _SC_TTY_NAME_MAX
8003 {"SC_TTY_NAME_MAX", _SC_TTY_NAME_MAX},
8004#endif
8005#ifdef _SC_TZNAME_MAX
8006 {"SC_TZNAME_MAX", _SC_TZNAME_MAX},
8007#endif
8008#ifdef _SC_T_IOV_MAX
8009 {"SC_T_IOV_MAX", _SC_T_IOV_MAX},
8010#endif
8011#ifdef _SC_UCHAR_MAX
8012 {"SC_UCHAR_MAX", _SC_UCHAR_MAX},
8013#endif
8014#ifdef _SC_UINT_MAX
8015 {"SC_UINT_MAX", _SC_UINT_MAX},
8016#endif
8017#ifdef _SC_UIO_MAXIOV
8018 {"SC_UIO_MAXIOV", _SC_UIO_MAXIOV},
8019#endif
8020#ifdef _SC_ULONG_MAX
8021 {"SC_ULONG_MAX", _SC_ULONG_MAX},
8022#endif
8023#ifdef _SC_USHRT_MAX
8024 {"SC_USHRT_MAX", _SC_USHRT_MAX},
8025#endif
8026#ifdef _SC_VERSION
8027 {"SC_VERSION", _SC_VERSION},
8028#endif
8029#ifdef _SC_WORD_BIT
8030 {"SC_WORD_BIT", _SC_WORD_BIT},
8031#endif
8032#ifdef _SC_XBS5_ILP32_OFF32
8033 {"SC_XBS5_ILP32_OFF32", _SC_XBS5_ILP32_OFF32},
8034#endif
8035#ifdef _SC_XBS5_ILP32_OFFBIG
8036 {"SC_XBS5_ILP32_OFFBIG", _SC_XBS5_ILP32_OFFBIG},
8037#endif
8038#ifdef _SC_XBS5_LP64_OFF64
8039 {"SC_XBS5_LP64_OFF64", _SC_XBS5_LP64_OFF64},
8040#endif
8041#ifdef _SC_XBS5_LPBIG_OFFBIG
8042 {"SC_XBS5_LPBIG_OFFBIG", _SC_XBS5_LPBIG_OFFBIG},
8043#endif
8044#ifdef _SC_XOPEN_CRYPT
8045 {"SC_XOPEN_CRYPT", _SC_XOPEN_CRYPT},
8046#endif
8047#ifdef _SC_XOPEN_ENH_I18N
8048 {"SC_XOPEN_ENH_I18N", _SC_XOPEN_ENH_I18N},
8049#endif
8050#ifdef _SC_XOPEN_LEGACY
8051 {"SC_XOPEN_LEGACY", _SC_XOPEN_LEGACY},
8052#endif
8053#ifdef _SC_XOPEN_REALTIME
8054 {"SC_XOPEN_REALTIME", _SC_XOPEN_REALTIME},
8055#endif
8056#ifdef _SC_XOPEN_REALTIME_THREADS
8057 {"SC_XOPEN_REALTIME_THREADS", _SC_XOPEN_REALTIME_THREADS},
8058#endif
8059#ifdef _SC_XOPEN_SHM
8060 {"SC_XOPEN_SHM", _SC_XOPEN_SHM},
8061#endif
8062#ifdef _SC_XOPEN_UNIX
8063 {"SC_XOPEN_UNIX", _SC_XOPEN_UNIX},
8064#endif
8065#ifdef _SC_XOPEN_VERSION
8066 {"SC_XOPEN_VERSION", _SC_XOPEN_VERSION},
8067#endif
8068#ifdef _SC_XOPEN_XCU_VERSION
8069 {"SC_XOPEN_XCU_VERSION", _SC_XOPEN_XCU_VERSION},
8070#endif
8071#ifdef _SC_XOPEN_XPG2
8072 {"SC_XOPEN_XPG2", _SC_XOPEN_XPG2},
8073#endif
8074#ifdef _SC_XOPEN_XPG3
8075 {"SC_XOPEN_XPG3", _SC_XOPEN_XPG3},
8076#endif
8077#ifdef _SC_XOPEN_XPG4
8078 {"SC_XOPEN_XPG4", _SC_XOPEN_XPG4},
8079#endif
8080};
8081
8082static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00008083conv_sysconf_confname(PyObject *arg, int *valuep)
Fred Drakec9680921999-12-13 16:37:25 +00008084{
8085 return conv_confname(arg, valuep, posix_constants_sysconf,
8086 sizeof(posix_constants_sysconf)
8087 / sizeof(struct constdef));
8088}
8089
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008090PyDoc_STRVAR(posix_sysconf__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00008091"sysconf(name) -> integer\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008092Return an integer-valued system configuration variable.");
Fred Drakec9680921999-12-13 16:37:25 +00008093
8094static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00008095posix_sysconf(PyObject *self, PyObject *args)
Fred Drakec9680921999-12-13 16:37:25 +00008096{
8097 PyObject *result = NULL;
8098 int name;
8099
8100 if (PyArg_ParseTuple(args, "O&:sysconf", conv_sysconf_confname, &name)) {
8101 int value;
8102
8103 errno = 0;
8104 value = sysconf(name);
8105 if (value == -1 && errno != 0)
8106 posix_error();
8107 else
8108 result = PyInt_FromLong(value);
8109 }
8110 return result;
8111}
8112#endif
8113
8114
Fred Drakebec628d1999-12-15 18:31:10 +00008115/* This code is used to ensure that the tables of configuration value names
8116 * are in sorted order as required by conv_confname(), and also to build the
8117 * the exported dictionaries that are used to publish information about the
8118 * names available on the host platform.
8119 *
8120 * Sorting the table at runtime ensures that the table is properly ordered
8121 * when used, even for platforms we're not able to test on. It also makes
8122 * it easier to add additional entries to the tables.
Fred Draked86ed291999-12-15 15:34:33 +00008123 */
Fred Drakebec628d1999-12-15 18:31:10 +00008124
8125static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00008126cmp_constdefs(const void *v1, const void *v2)
Fred Drakebec628d1999-12-15 18:31:10 +00008127{
8128 const struct constdef *c1 =
8129 (const struct constdef *) v1;
8130 const struct constdef *c2 =
8131 (const struct constdef *) v2;
8132
8133 return strcmp(c1->name, c2->name);
8134}
8135
8136static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00008137setup_confname_table(struct constdef *table, size_t tablesize,
Fred Drake4d1e64b2002-04-15 19:40:07 +00008138 char *tablename, PyObject *module)
Fred Draked86ed291999-12-15 15:34:33 +00008139{
Fred Drakebec628d1999-12-15 18:31:10 +00008140 PyObject *d = NULL;
Barry Warsaw3155db32000-04-13 15:20:40 +00008141 size_t i;
Fred Drakebec628d1999-12-15 18:31:10 +00008142
8143 qsort(table, tablesize, sizeof(struct constdef), cmp_constdefs);
8144 d = PyDict_New();
Barry Warsaw3155db32000-04-13 15:20:40 +00008145 if (d == NULL)
8146 return -1;
Fred Draked86ed291999-12-15 15:34:33 +00008147
Barry Warsaw3155db32000-04-13 15:20:40 +00008148 for (i=0; i < tablesize; ++i) {
8149 PyObject *o = PyInt_FromLong(table[i].value);
8150 if (o == NULL || PyDict_SetItemString(d, table[i].name, o) == -1) {
8151 Py_XDECREF(o);
8152 Py_DECREF(d);
8153 return -1;
Fred Draked86ed291999-12-15 15:34:33 +00008154 }
Barry Warsaw3155db32000-04-13 15:20:40 +00008155 Py_DECREF(o);
Fred Draked86ed291999-12-15 15:34:33 +00008156 }
Fred Drake4d1e64b2002-04-15 19:40:07 +00008157 return PyModule_AddObject(module, tablename, d);
Fred Draked86ed291999-12-15 15:34:33 +00008158}
8159
Fred Drakebec628d1999-12-15 18:31:10 +00008160/* Return -1 on failure, 0 on success. */
8161static int
Fred Drake4d1e64b2002-04-15 19:40:07 +00008162setup_confname_tables(PyObject *module)
Fred Draked86ed291999-12-15 15:34:33 +00008163{
8164#if defined(HAVE_FPATHCONF) || defined(HAVE_PATHCONF)
Fred Drakebec628d1999-12-15 18:31:10 +00008165 if (setup_confname_table(posix_constants_pathconf,
Fred Draked86ed291999-12-15 15:34:33 +00008166 sizeof(posix_constants_pathconf)
8167 / sizeof(struct constdef),
Fred Drake4d1e64b2002-04-15 19:40:07 +00008168 "pathconf_names", module))
Fred Drakebec628d1999-12-15 18:31:10 +00008169 return -1;
Fred Draked86ed291999-12-15 15:34:33 +00008170#endif
8171#ifdef HAVE_CONFSTR
Fred Drakebec628d1999-12-15 18:31:10 +00008172 if (setup_confname_table(posix_constants_confstr,
Fred Draked86ed291999-12-15 15:34:33 +00008173 sizeof(posix_constants_confstr)
8174 / sizeof(struct constdef),
Fred Drake4d1e64b2002-04-15 19:40:07 +00008175 "confstr_names", module))
Fred Drakebec628d1999-12-15 18:31:10 +00008176 return -1;
Fred Draked86ed291999-12-15 15:34:33 +00008177#endif
8178#ifdef HAVE_SYSCONF
Fred Drakebec628d1999-12-15 18:31:10 +00008179 if (setup_confname_table(posix_constants_sysconf,
Fred Draked86ed291999-12-15 15:34:33 +00008180 sizeof(posix_constants_sysconf)
8181 / sizeof(struct constdef),
Fred Drake4d1e64b2002-04-15 19:40:07 +00008182 "sysconf_names", module))
Fred Drakebec628d1999-12-15 18:31:10 +00008183 return -1;
Fred Draked86ed291999-12-15 15:34:33 +00008184#endif
Fred Drakebec628d1999-12-15 18:31:10 +00008185 return 0;
Fred Draked86ed291999-12-15 15:34:33 +00008186}
Fred Draked86ed291999-12-15 15:34:33 +00008187
8188
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008189PyDoc_STRVAR(posix_abort__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00008190"abort() -> does not return!\n\n\
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008191Abort the interpreter immediately. This 'dumps core' or otherwise fails\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008192in the hardest way possible on the hosting operating system.");
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008193
8194static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00008195posix_abort(PyObject *self, PyObject *noargs)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008196{
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008197 abort();
8198 /*NOTREACHED*/
8199 Py_FatalError("abort() called from Python code didn't abort!");
8200 return NULL;
8201}
Fred Drakebec628d1999-12-15 18:31:10 +00008202
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00008203#ifdef MS_WINDOWS
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008204PyDoc_STRVAR(win32_startfile__doc__,
Georg Brandlf4f44152006-02-18 22:29:33 +00008205"startfile(filepath [, operation]) - Start a file with its associated\n\
8206application.\n\
Tim Petersf58a7aa2000-09-22 10:05:54 +00008207\n\
Georg Brandlf4f44152006-02-18 22:29:33 +00008208When \"operation\" is not specified or \"open\", this acts like\n\
8209double-clicking the file in Explorer, or giving the file name as an\n\
8210argument to the DOS \"start\" command: the file is opened with whatever\n\
8211application (if any) its extension is associated.\n\
8212When another \"operation\" is given, it specifies what should be done with\n\
8213the file. A typical operation is \"print\".\n\
Tim Petersf58a7aa2000-09-22 10:05:54 +00008214\n\
8215startfile returns as soon as the associated application is launched.\n\
8216There is no option to wait for the application to close, and no way\n\
8217to retrieve the application's exit status.\n\
8218\n\
8219The filepath is relative to the current directory. If you want to use\n\
8220an absolute path, make sure the first character is not a slash (\"/\");\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008221the underlying Win32 ShellExecute function doesn't work if it is.");
Tim Petersf58a7aa2000-09-22 10:05:54 +00008222
8223static PyObject *
8224win32_startfile(PyObject *self, PyObject *args)
8225{
8226 char *filepath;
Georg Brandlf4f44152006-02-18 22:29:33 +00008227 char *operation = NULL;
Tim Petersf58a7aa2000-09-22 10:05:54 +00008228 HINSTANCE rc;
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00008229
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00008230 PyObject *unipath, *woperation = NULL;
8231 if (!PyArg_ParseTuple(args, "U|s:startfile",
8232 &unipath, &operation)) {
8233 PyErr_Clear();
8234 goto normal;
8235 }
8236
8237 if (operation) {
8238 woperation = PyUnicode_DecodeASCII(operation,
8239 strlen(operation), NULL);
8240 if (!woperation) {
Georg Brandlad89dc82006-04-03 12:26:26 +00008241 PyErr_Clear();
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00008242 operation = NULL;
Georg Brandlad89dc82006-04-03 12:26:26 +00008243 goto normal;
8244 }
Georg Brandlad89dc82006-04-03 12:26:26 +00008245 }
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00008246
8247 Py_BEGIN_ALLOW_THREADS
8248 rc = ShellExecuteW((HWND)0, woperation ? PyUnicode_AS_UNICODE(woperation) : 0,
8249 PyUnicode_AS_UNICODE(unipath),
8250 NULL, NULL, SW_SHOWNORMAL);
8251 Py_END_ALLOW_THREADS
8252
8253 Py_XDECREF(woperation);
8254 if (rc <= (HINSTANCE)32) {
8255 PyObject *errval = win32_error_unicode("startfile",
8256 PyUnicode_AS_UNICODE(unipath));
8257 return errval;
8258 }
8259 Py_INCREF(Py_None);
8260 return Py_None;
Georg Brandlad89dc82006-04-03 12:26:26 +00008261
8262normal:
Georg Brandlf4f44152006-02-18 22:29:33 +00008263 if (!PyArg_ParseTuple(args, "et|s:startfile",
8264 Py_FileSystemDefaultEncoding, &filepath,
8265 &operation))
Tim Petersf58a7aa2000-09-22 10:05:54 +00008266 return NULL;
8267 Py_BEGIN_ALLOW_THREADS
Georg Brandlf4f44152006-02-18 22:29:33 +00008268 rc = ShellExecute((HWND)0, operation, filepath,
8269 NULL, NULL, SW_SHOWNORMAL);
Tim Petersf58a7aa2000-09-22 10:05:54 +00008270 Py_END_ALLOW_THREADS
Georg Brandle9f8ec92005-09-25 06:16:40 +00008271 if (rc <= (HINSTANCE)32) {
8272 PyObject *errval = win32_error("startfile", filepath);
8273 PyMem_Free(filepath);
8274 return errval;
8275 }
8276 PyMem_Free(filepath);
Tim Petersf58a7aa2000-09-22 10:05:54 +00008277 Py_INCREF(Py_None);
8278 return Py_None;
8279}
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00008280#endif /* MS_WINDOWS */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008281
Martin v. Löwis438b5342002-12-27 10:16:42 +00008282#ifdef HAVE_GETLOADAVG
8283PyDoc_STRVAR(posix_getloadavg__doc__,
8284"getloadavg() -> (float, float, float)\n\n\
8285Return the number of processes in the system run queue averaged over\n\
8286the last 1, 5, and 15 minutes or raises OSError if the load average\n\
8287was unobtainable");
8288
8289static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00008290posix_getloadavg(PyObject *self, PyObject *noargs)
Martin v. Löwis438b5342002-12-27 10:16:42 +00008291{
8292 double loadavg[3];
Martin v. Löwis438b5342002-12-27 10:16:42 +00008293 if (getloadavg(loadavg, 3)!=3) {
8294 PyErr_SetString(PyExc_OSError, "Load averages are unobtainable");
8295 return NULL;
8296 } else
8297 return Py_BuildValue("ddd", loadavg[0], loadavg[1], loadavg[2]);
8298}
8299#endif
8300
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008301#ifdef MS_WINDOWS
8302
8303PyDoc_STRVAR(win32_urandom__doc__,
8304"urandom(n) -> str\n\n\
8305Return a string of n random bytes suitable for cryptographic use.");
8306
8307typedef BOOL (WINAPI *CRYPTACQUIRECONTEXTA)(HCRYPTPROV *phProv,\
8308 LPCSTR pszContainer, LPCSTR pszProvider, DWORD dwProvType,\
8309 DWORD dwFlags );
8310typedef BOOL (WINAPI *CRYPTGENRANDOM)(HCRYPTPROV hProv, DWORD dwLen,\
8311 BYTE *pbBuffer );
8312
8313static CRYPTGENRANDOM pCryptGenRandom = NULL;
Martin v. Löwisaf699dd2007-09-04 09:51:57 +00008314/* This handle is never explicitly released. Instead, the operating
8315 system will release it when the process terminates. */
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008316static HCRYPTPROV hCryptProv = 0;
8317
Tim Peters4ad82172004-08-30 17:02:04 +00008318static PyObject*
8319win32_urandom(PyObject *self, PyObject *args)
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008320{
Tim Petersd3115382004-08-30 17:36:46 +00008321 int howMany;
8322 PyObject* result;
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008323
Tim Peters4ad82172004-08-30 17:02:04 +00008324 /* Read arguments */
Tim Peters9b279a82004-08-30 17:10:53 +00008325 if (! PyArg_ParseTuple(args, "i:urandom", &howMany))
Tim Peters4ad82172004-08-30 17:02:04 +00008326 return NULL;
Tim Peters51eba612004-08-30 17:08:02 +00008327 if (howMany < 0)
8328 return PyErr_Format(PyExc_ValueError,
8329 "negative argument not allowed");
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008330
Tim Peters4ad82172004-08-30 17:02:04 +00008331 if (hCryptProv == 0) {
8332 HINSTANCE hAdvAPI32 = NULL;
8333 CRYPTACQUIRECONTEXTA pCryptAcquireContext = NULL;
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008334
Tim Peters4ad82172004-08-30 17:02:04 +00008335 /* Obtain handle to the DLL containing CryptoAPI
8336 This should not fail */
8337 hAdvAPI32 = GetModuleHandle("advapi32.dll");
8338 if(hAdvAPI32 == NULL)
8339 return win32_error("GetModuleHandle", NULL);
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008340
Tim Peters4ad82172004-08-30 17:02:04 +00008341 /* Obtain pointers to the CryptoAPI functions
8342 This will fail on some early versions of Win95 */
8343 pCryptAcquireContext = (CRYPTACQUIRECONTEXTA)GetProcAddress(
8344 hAdvAPI32,
8345 "CryptAcquireContextA");
8346 if (pCryptAcquireContext == NULL)
8347 return PyErr_Format(PyExc_NotImplementedError,
8348 "CryptAcquireContextA not found");
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008349
Tim Peters4ad82172004-08-30 17:02:04 +00008350 pCryptGenRandom = (CRYPTGENRANDOM)GetProcAddress(
8351 hAdvAPI32, "CryptGenRandom");
Georg Brandl74bb7832006-09-06 06:03:59 +00008352 if (pCryptGenRandom == NULL)
Tim Peters4ad82172004-08-30 17:02:04 +00008353 return PyErr_Format(PyExc_NotImplementedError,
8354 "CryptGenRandom not found");
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008355
Tim Peters4ad82172004-08-30 17:02:04 +00008356 /* Acquire context */
8357 if (! pCryptAcquireContext(&hCryptProv, NULL, NULL,
8358 PROV_RSA_FULL, CRYPT_VERIFYCONTEXT))
8359 return win32_error("CryptAcquireContext", NULL);
8360 }
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008361
Tim Peters4ad82172004-08-30 17:02:04 +00008362 /* Allocate bytes */
Gregory P. Smithdd96db62008-06-09 04:58:54 +00008363 result = PyString_FromStringAndSize(NULL, howMany);
Tim Petersd3115382004-08-30 17:36:46 +00008364 if (result != NULL) {
8365 /* Get random data */
Amaury Forgeot d'Arc74bd40d2008-07-21 21:06:46 +00008366 memset(PyString_AS_STRING(result), 0, howMany); /* zero seed */
Tim Petersd3115382004-08-30 17:36:46 +00008367 if (! pCryptGenRandom(hCryptProv, howMany, (unsigned char*)
Gregory P. Smithdd96db62008-06-09 04:58:54 +00008368 PyString_AS_STRING(result))) {
Tim Petersd3115382004-08-30 17:36:46 +00008369 Py_DECREF(result);
8370 return win32_error("CryptGenRandom", NULL);
8371 }
Tim Peters4ad82172004-08-30 17:02:04 +00008372 }
Tim Petersd3115382004-08-30 17:36:46 +00008373 return result;
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008374}
8375#endif
Martin v. Löwis438b5342002-12-27 10:16:42 +00008376
Neal Norwitz2a30cd02006-07-10 01:18:57 +00008377#ifdef __VMS
8378/* Use openssl random routine */
8379#include <openssl/rand.h>
8380PyDoc_STRVAR(vms_urandom__doc__,
8381"urandom(n) -> str\n\n\
8382Return a string of n random bytes suitable for cryptographic use.");
8383
8384static PyObject*
8385vms_urandom(PyObject *self, PyObject *args)
8386{
8387 int howMany;
8388 PyObject* result;
8389
8390 /* Read arguments */
8391 if (! PyArg_ParseTuple(args, "i:urandom", &howMany))
8392 return NULL;
8393 if (howMany < 0)
8394 return PyErr_Format(PyExc_ValueError,
8395 "negative argument not allowed");
8396
8397 /* Allocate bytes */
Gregory P. Smithdd96db62008-06-09 04:58:54 +00008398 result = PyString_FromStringAndSize(NULL, howMany);
Neal Norwitz2a30cd02006-07-10 01:18:57 +00008399 if (result != NULL) {
8400 /* Get random data */
8401 if (RAND_pseudo_bytes((unsigned char*)
Gregory P. Smithdd96db62008-06-09 04:58:54 +00008402 PyString_AS_STRING(result),
Neal Norwitz2a30cd02006-07-10 01:18:57 +00008403 howMany) < 0) {
8404 Py_DECREF(result);
8405 return PyErr_Format(PyExc_ValueError,
8406 "RAND_pseudo_bytes");
8407 }
8408 }
8409 return result;
8410}
8411#endif
8412
Martin v. Löwis50ea4562009-11-27 13:56:01 +00008413#ifdef HAVE_SETRESUID
8414PyDoc_STRVAR(posix_setresuid__doc__,
8415"setresuid(ruid, euid, suid)\n\n\
8416Set the current process's real, effective, and saved user ids.");
8417
8418static PyObject*
8419posix_setresuid (PyObject *self, PyObject *args)
8420{
8421 /* We assume uid_t is no larger than a long. */
8422 long ruid, euid, suid;
8423 if (!PyArg_ParseTuple(args, "lll", &ruid, &euid, &suid))
8424 return NULL;
8425 if (setresuid(ruid, euid, suid) < 0)
8426 return posix_error();
8427 Py_RETURN_NONE;
8428}
8429#endif
8430
8431#ifdef HAVE_SETRESGID
8432PyDoc_STRVAR(posix_setresgid__doc__,
8433"setresgid(rgid, egid, sgid)\n\n\
8434Set the current process's real, effective, and saved group ids.");
8435
8436static PyObject*
8437posix_setresgid (PyObject *self, PyObject *args)
8438{
8439 /* We assume uid_t is no larger than a long. */
8440 long rgid, egid, sgid;
8441 if (!PyArg_ParseTuple(args, "lll", &rgid, &egid, &sgid))
8442 return NULL;
8443 if (setresgid(rgid, egid, sgid) < 0)
8444 return posix_error();
8445 Py_RETURN_NONE;
8446}
8447#endif
8448
8449#ifdef HAVE_GETRESUID
8450PyDoc_STRVAR(posix_getresuid__doc__,
8451"getresuid() -> (ruid, euid, suid)\n\n\
8452Get tuple of the current process's real, effective, and saved user ids.");
8453
8454static PyObject*
8455posix_getresuid (PyObject *self, PyObject *noargs)
8456{
8457 uid_t ruid, euid, suid;
8458 long l_ruid, l_euid, l_suid;
8459 if (getresuid(&ruid, &euid, &suid) < 0)
8460 return posix_error();
8461 /* Force the values into long's as we don't know the size of uid_t. */
8462 l_ruid = ruid;
8463 l_euid = euid;
8464 l_suid = suid;
8465 return Py_BuildValue("(lll)", l_ruid, l_euid, l_suid);
8466}
8467#endif
8468
8469#ifdef HAVE_GETRESGID
8470PyDoc_STRVAR(posix_getresgid__doc__,
8471"getresgid() -> (rgid, egid, sgid)\n\n\
8472Get tuple of the current process's real, effective, and saved user ids.");
8473
8474static PyObject*
8475posix_getresgid (PyObject *self, PyObject *noargs)
8476{
8477 uid_t rgid, egid, sgid;
8478 long l_rgid, l_egid, l_sgid;
8479 if (getresgid(&rgid, &egid, &sgid) < 0)
8480 return posix_error();
8481 /* Force the values into long's as we don't know the size of uid_t. */
8482 l_rgid = rgid;
8483 l_egid = egid;
8484 l_sgid = sgid;
8485 return Py_BuildValue("(lll)", l_rgid, l_egid, l_sgid);
8486}
8487#endif
8488
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008489static PyMethodDef posix_methods[] = {
8490 {"access", posix_access, METH_VARARGS, posix_access__doc__},
8491#ifdef HAVE_TTYNAME
8492 {"ttyname", posix_ttyname, METH_VARARGS, posix_ttyname__doc__},
8493#endif
8494 {"chdir", posix_chdir, METH_VARARGS, posix_chdir__doc__},
Martin v. Löwis382abef2007-02-19 10:55:19 +00008495#ifdef HAVE_CHFLAGS
8496 {"chflags", posix_chflags, METH_VARARGS, posix_chflags__doc__},
8497#endif /* HAVE_CHFLAGS */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008498 {"chmod", posix_chmod, METH_VARARGS, posix_chmod__doc__},
Christian Heimes36281872007-11-30 21:11:28 +00008499#ifdef HAVE_FCHMOD
8500 {"fchmod", posix_fchmod, METH_VARARGS, posix_fchmod__doc__},
8501#endif /* HAVE_FCHMOD */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008502#ifdef HAVE_CHOWN
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008503 {"chown", posix_chown, METH_VARARGS, posix_chown__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008504#endif /* HAVE_CHOWN */
Christian Heimes36281872007-11-30 21:11:28 +00008505#ifdef HAVE_LCHMOD
8506 {"lchmod", posix_lchmod, METH_VARARGS, posix_lchmod__doc__},
8507#endif /* HAVE_LCHMOD */
8508#ifdef HAVE_FCHOWN
8509 {"fchown", posix_fchown, METH_VARARGS, posix_fchown__doc__},
8510#endif /* HAVE_FCHOWN */
Martin v. Löwis382abef2007-02-19 10:55:19 +00008511#ifdef HAVE_LCHFLAGS
8512 {"lchflags", posix_lchflags, METH_VARARGS, posix_lchflags__doc__},
8513#endif /* HAVE_LCHFLAGS */
Martin v. Löwis0cec0ff2002-07-28 16:33:45 +00008514#ifdef HAVE_LCHOWN
8515 {"lchown", posix_lchown, METH_VARARGS, posix_lchown__doc__},
8516#endif /* HAVE_LCHOWN */
Martin v. Löwis244edc82001-10-04 22:44:26 +00008517#ifdef HAVE_CHROOT
8518 {"chroot", posix_chroot, METH_VARARGS, posix_chroot__doc__},
8519#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008520#ifdef HAVE_CTERMID
Neal Norwitze241ce82003-02-17 18:17:05 +00008521 {"ctermid", posix_ctermid, METH_NOARGS, posix_ctermid__doc__},
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008522#endif
Guido van Rossum36bc6801995-06-14 22:54:23 +00008523#ifdef HAVE_GETCWD
Neal Norwitze241ce82003-02-17 18:17:05 +00008524 {"getcwd", posix_getcwd, METH_NOARGS, posix_getcwd__doc__},
Walter Dörwald3b918c32002-11-21 20:18:46 +00008525#ifdef Py_USING_UNICODE
Neal Norwitze241ce82003-02-17 18:17:05 +00008526 {"getcwdu", posix_getcwdu, METH_NOARGS, posix_getcwdu__doc__},
Guido van Rossum36bc6801995-06-14 22:54:23 +00008527#endif
Walter Dörwald3b918c32002-11-21 20:18:46 +00008528#endif
Guido van Rossumb6775db1994-08-01 11:34:53 +00008529#ifdef HAVE_LINK
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008530 {"link", posix_link, METH_VARARGS, posix_link__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008531#endif /* HAVE_LINK */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008532 {"listdir", posix_listdir, METH_VARARGS, posix_listdir__doc__},
8533 {"lstat", posix_lstat, METH_VARARGS, posix_lstat__doc__},
8534 {"mkdir", posix_mkdir, METH_VARARGS, posix_mkdir__doc__},
Guido van Rossumb6775db1994-08-01 11:34:53 +00008535#ifdef HAVE_NICE
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008536 {"nice", posix_nice, METH_VARARGS, posix_nice__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008537#endif /* HAVE_NICE */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008538#ifdef HAVE_READLINK
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008539 {"readlink", posix_readlink, METH_VARARGS, posix_readlink__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008540#endif /* HAVE_READLINK */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008541 {"rename", posix_rename, METH_VARARGS, posix_rename__doc__},
8542 {"rmdir", posix_rmdir, METH_VARARGS, posix_rmdir__doc__},
8543 {"stat", posix_stat, METH_VARARGS, posix_stat__doc__},
Martin v. Löwisf607bda2002-10-16 18:27:39 +00008544 {"stat_float_times", stat_float_times, METH_VARARGS, stat_float_times__doc__},
Guido van Rossumb6775db1994-08-01 11:34:53 +00008545#ifdef HAVE_SYMLINK
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008546 {"symlink", posix_symlink, METH_VARARGS, posix_symlink__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008547#endif /* HAVE_SYMLINK */
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008548#ifdef HAVE_SYSTEM
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008549 {"system", posix_system, METH_VARARGS, posix_system__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008550#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008551 {"umask", posix_umask, METH_VARARGS, posix_umask__doc__},
Guido van Rossumb6775db1994-08-01 11:34:53 +00008552#ifdef HAVE_UNAME
Neal Norwitze241ce82003-02-17 18:17:05 +00008553 {"uname", posix_uname, METH_NOARGS, posix_uname__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008554#endif /* HAVE_UNAME */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008555 {"unlink", posix_unlink, METH_VARARGS, posix_unlink__doc__},
8556 {"remove", posix_unlink, METH_VARARGS, posix_remove__doc__},
8557 {"utime", posix_utime, METH_VARARGS, posix_utime__doc__},
Guido van Rossumb6775db1994-08-01 11:34:53 +00008558#ifdef HAVE_TIMES
Neal Norwitze241ce82003-02-17 18:17:05 +00008559 {"times", posix_times, METH_NOARGS, posix_times__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008560#endif /* HAVE_TIMES */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008561 {"_exit", posix__exit, METH_VARARGS, posix__exit__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008562#ifdef HAVE_EXECV
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008563 {"execv", posix_execv, METH_VARARGS, posix_execv__doc__},
8564 {"execve", posix_execve, METH_VARARGS, posix_execve__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008565#endif /* HAVE_EXECV */
Guido van Rossuma1065681999-01-25 23:20:23 +00008566#ifdef HAVE_SPAWNV
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008567 {"spawnv", posix_spawnv, METH_VARARGS, posix_spawnv__doc__},
8568 {"spawnve", posix_spawnve, METH_VARARGS, posix_spawnve__doc__},
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00008569#if defined(PYOS_OS2)
8570 {"spawnvp", posix_spawnvp, METH_VARARGS, posix_spawnvp__doc__},
8571 {"spawnvpe", posix_spawnvpe, METH_VARARGS, posix_spawnvpe__doc__},
8572#endif /* PYOS_OS2 */
Guido van Rossuma1065681999-01-25 23:20:23 +00008573#endif /* HAVE_SPAWNV */
Guido van Rossum2242f2f2001-04-11 20:58:20 +00008574#ifdef HAVE_FORK1
Neal Norwitze241ce82003-02-17 18:17:05 +00008575 {"fork1", posix_fork1, METH_NOARGS, posix_fork1__doc__},
Guido van Rossum2242f2f2001-04-11 20:58:20 +00008576#endif /* HAVE_FORK1 */
Guido van Rossumad0ee831995-03-01 10:34:45 +00008577#ifdef HAVE_FORK
Neal Norwitze241ce82003-02-17 18:17:05 +00008578 {"fork", posix_fork, METH_NOARGS, posix_fork__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008579#endif /* HAVE_FORK */
Martin v. Löwis24a880b2002-12-31 12:55:15 +00008580#if defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX)
Neal Norwitze241ce82003-02-17 18:17:05 +00008581 {"openpty", posix_openpty, METH_NOARGS, posix_openpty__doc__},
Martin v. Löwis24a880b2002-12-31 12:55:15 +00008582#endif /* HAVE_OPENPTY || HAVE__GETPTY || HAVE_DEV_PTMX */
Fred Drake8cef4cf2000-06-28 16:40:38 +00008583#ifdef HAVE_FORKPTY
Neal Norwitze241ce82003-02-17 18:17:05 +00008584 {"forkpty", posix_forkpty, METH_NOARGS, posix_forkpty__doc__},
Fred Drake8cef4cf2000-06-28 16:40:38 +00008585#endif /* HAVE_FORKPTY */
Guido van Rossumad0ee831995-03-01 10:34:45 +00008586#ifdef HAVE_GETEGID
Neal Norwitze241ce82003-02-17 18:17:05 +00008587 {"getegid", posix_getegid, METH_NOARGS, posix_getegid__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008588#endif /* HAVE_GETEGID */
8589#ifdef HAVE_GETEUID
Neal Norwitze241ce82003-02-17 18:17:05 +00008590 {"geteuid", posix_geteuid, METH_NOARGS, posix_geteuid__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008591#endif /* HAVE_GETEUID */
8592#ifdef HAVE_GETGID
Neal Norwitze241ce82003-02-17 18:17:05 +00008593 {"getgid", posix_getgid, METH_NOARGS, posix_getgid__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008594#endif /* HAVE_GETGID */
Fred Drakec9680921999-12-13 16:37:25 +00008595#ifdef HAVE_GETGROUPS
Neal Norwitze241ce82003-02-17 18:17:05 +00008596 {"getgroups", posix_getgroups, METH_NOARGS, posix_getgroups__doc__},
Fred Drakec9680921999-12-13 16:37:25 +00008597#endif
Neal Norwitze241ce82003-02-17 18:17:05 +00008598 {"getpid", posix_getpid, METH_NOARGS, posix_getpid__doc__},
Guido van Rossumb6775db1994-08-01 11:34:53 +00008599#ifdef HAVE_GETPGRP
Neal Norwitze241ce82003-02-17 18:17:05 +00008600 {"getpgrp", posix_getpgrp, METH_NOARGS, posix_getpgrp__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008601#endif /* HAVE_GETPGRP */
Guido van Rossumad0ee831995-03-01 10:34:45 +00008602#ifdef HAVE_GETPPID
Neal Norwitze241ce82003-02-17 18:17:05 +00008603 {"getppid", posix_getppid, METH_NOARGS, posix_getppid__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008604#endif /* HAVE_GETPPID */
8605#ifdef HAVE_GETUID
Neal Norwitze241ce82003-02-17 18:17:05 +00008606 {"getuid", posix_getuid, METH_NOARGS, posix_getuid__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008607#endif /* HAVE_GETUID */
Fred Drake12c6e2d1999-12-14 21:25:03 +00008608#ifdef HAVE_GETLOGIN
Neal Norwitze241ce82003-02-17 18:17:05 +00008609 {"getlogin", posix_getlogin, METH_NOARGS, posix_getlogin__doc__},
Fred Drake12c6e2d1999-12-14 21:25:03 +00008610#endif
Guido van Rossumad0ee831995-03-01 10:34:45 +00008611#ifdef HAVE_KILL
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008612 {"kill", posix_kill, METH_VARARGS, posix_kill__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008613#endif /* HAVE_KILL */
Martin v. Löwisb2c92f42002-02-16 23:35:41 +00008614#ifdef HAVE_KILLPG
8615 {"killpg", posix_killpg, METH_VARARGS, posix_killpg__doc__},
8616#endif /* HAVE_KILLPG */
Guido van Rossumc0125471996-06-28 18:55:32 +00008617#ifdef HAVE_PLOCK
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008618 {"plock", posix_plock, METH_VARARGS, posix_plock__doc__},
Guido van Rossumc0125471996-06-28 18:55:32 +00008619#endif /* HAVE_PLOCK */
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008620#ifdef HAVE_POPEN
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008621 {"popen", posix_popen, METH_VARARGS, posix_popen__doc__},
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00008622#ifdef MS_WINDOWS
Fredrik Lundhffb9c772000-07-09 14:49:51 +00008623 {"popen2", win32_popen2, METH_VARARGS},
8624 {"popen3", win32_popen3, METH_VARARGS},
8625 {"popen4", win32_popen4, METH_VARARGS},
Tim Petersf58a7aa2000-09-22 10:05:54 +00008626 {"startfile", win32_startfile, METH_VARARGS, win32_startfile__doc__},
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00008627#else
8628#if defined(PYOS_OS2) && defined(PYCC_GCC)
8629 {"popen2", os2emx_popen2, METH_VARARGS},
8630 {"popen3", os2emx_popen3, METH_VARARGS},
8631 {"popen4", os2emx_popen4, METH_VARARGS},
8632#endif
Fredrik Lundhffb9c772000-07-09 14:49:51 +00008633#endif
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008634#endif /* HAVE_POPEN */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008635#ifdef HAVE_SETUID
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008636 {"setuid", posix_setuid, METH_VARARGS, posix_setuid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008637#endif /* HAVE_SETUID */
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00008638#ifdef HAVE_SETEUID
8639 {"seteuid", posix_seteuid, METH_VARARGS, posix_seteuid__doc__},
8640#endif /* HAVE_SETEUID */
8641#ifdef HAVE_SETEGID
8642 {"setegid", posix_setegid, METH_VARARGS, posix_setegid__doc__},
8643#endif /* HAVE_SETEGID */
8644#ifdef HAVE_SETREUID
8645 {"setreuid", posix_setreuid, METH_VARARGS, posix_setreuid__doc__},
8646#endif /* HAVE_SETREUID */
8647#ifdef HAVE_SETREGID
8648 {"setregid", posix_setregid, METH_VARARGS, posix_setregid__doc__},
8649#endif /* HAVE_SETREGID */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008650#ifdef HAVE_SETGID
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008651 {"setgid", posix_setgid, METH_VARARGS, posix_setgid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008652#endif /* HAVE_SETGID */
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00008653#ifdef HAVE_SETGROUPS
Georg Brandl96a8c392006-05-29 21:04:52 +00008654 {"setgroups", posix_setgroups, METH_O, posix_setgroups__doc__},
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00008655#endif /* HAVE_SETGROUPS */
Antoine Pitrou30b3b352009-12-02 20:37:54 +00008656#ifdef HAVE_INITGROUPS
8657 {"initgroups", posix_initgroups, METH_VARARGS, posix_initgroups__doc__},
8658#endif /* HAVE_INITGROUPS */
Martin v. Löwis606edc12002-06-13 21:09:11 +00008659#ifdef HAVE_GETPGID
8660 {"getpgid", posix_getpgid, METH_VARARGS, posix_getpgid__doc__},
8661#endif /* HAVE_GETPGID */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008662#ifdef HAVE_SETPGRP
Neal Norwitze241ce82003-02-17 18:17:05 +00008663 {"setpgrp", posix_setpgrp, METH_NOARGS, posix_setpgrp__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008664#endif /* HAVE_SETPGRP */
Guido van Rossumad0ee831995-03-01 10:34:45 +00008665#ifdef HAVE_WAIT
Neal Norwitze241ce82003-02-17 18:17:05 +00008666 {"wait", posix_wait, METH_NOARGS, posix_wait__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008667#endif /* HAVE_WAIT */
Neal Norwitz05a45592006-03-20 06:30:08 +00008668#ifdef HAVE_WAIT3
8669 {"wait3", posix_wait3, METH_VARARGS, posix_wait3__doc__},
8670#endif /* HAVE_WAIT3 */
8671#ifdef HAVE_WAIT4
8672 {"wait4", posix_wait4, METH_VARARGS, posix_wait4__doc__},
8673#endif /* HAVE_WAIT4 */
Tim Petersab034fa2002-02-01 11:27:43 +00008674#if defined(HAVE_WAITPID) || defined(HAVE_CWAIT)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008675 {"waitpid", posix_waitpid, METH_VARARGS, posix_waitpid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008676#endif /* HAVE_WAITPID */
Martin v. Löwis49ee14d2003-11-10 06:35:36 +00008677#ifdef HAVE_GETSID
8678 {"getsid", posix_getsid, METH_VARARGS, posix_getsid__doc__},
8679#endif /* HAVE_GETSID */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008680#ifdef HAVE_SETSID
Neal Norwitze241ce82003-02-17 18:17:05 +00008681 {"setsid", posix_setsid, METH_NOARGS, posix_setsid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008682#endif /* HAVE_SETSID */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008683#ifdef HAVE_SETPGID
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008684 {"setpgid", posix_setpgid, METH_VARARGS, posix_setpgid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008685#endif /* HAVE_SETPGID */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008686#ifdef HAVE_TCGETPGRP
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008687 {"tcgetpgrp", posix_tcgetpgrp, METH_VARARGS, posix_tcgetpgrp__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008688#endif /* HAVE_TCGETPGRP */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008689#ifdef HAVE_TCSETPGRP
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008690 {"tcsetpgrp", posix_tcsetpgrp, METH_VARARGS, posix_tcsetpgrp__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008691#endif /* HAVE_TCSETPGRP */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008692 {"open", posix_open, METH_VARARGS, posix_open__doc__},
8693 {"close", posix_close, METH_VARARGS, posix_close__doc__},
Georg Brandl309501a2008-01-19 20:22:13 +00008694 {"closerange", posix_closerange, METH_VARARGS, posix_closerange__doc__},
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008695 {"dup", posix_dup, METH_VARARGS, posix_dup__doc__},
8696 {"dup2", posix_dup2, METH_VARARGS, posix_dup2__doc__},
8697 {"lseek", posix_lseek, METH_VARARGS, posix_lseek__doc__},
8698 {"read", posix_read, METH_VARARGS, posix_read__doc__},
8699 {"write", posix_write, METH_VARARGS, posix_write__doc__},
8700 {"fstat", posix_fstat, METH_VARARGS, posix_fstat__doc__},
8701 {"fdopen", posix_fdopen, METH_VARARGS, posix_fdopen__doc__},
Skip Montanaro1517d842000-07-19 14:34:14 +00008702 {"isatty", posix_isatty, METH_VARARGS, posix_isatty__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008703#ifdef HAVE_PIPE
Neal Norwitze241ce82003-02-17 18:17:05 +00008704 {"pipe", posix_pipe, METH_NOARGS, posix_pipe__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008705#endif
8706#ifdef HAVE_MKFIFO
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008707 {"mkfifo", posix_mkfifo, METH_VARARGS, posix_mkfifo__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008708#endif
Neal Norwitz11690112002-07-30 01:08:28 +00008709#if defined(HAVE_MKNOD) && defined(HAVE_MAKEDEV)
Martin v. Löwis06a83e92002-04-14 10:19:44 +00008710 {"mknod", posix_mknod, METH_VARARGS, posix_mknod__doc__},
8711#endif
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00008712#ifdef HAVE_DEVICE_MACROS
8713 {"major", posix_major, METH_VARARGS, posix_major__doc__},
8714 {"minor", posix_minor, METH_VARARGS, posix_minor__doc__},
8715 {"makedev", posix_makedev, METH_VARARGS, posix_makedev__doc__},
8716#endif
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008717#ifdef HAVE_FTRUNCATE
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008718 {"ftruncate", posix_ftruncate, METH_VARARGS, posix_ftruncate__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008719#endif
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00008720#ifdef HAVE_PUTENV
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008721 {"putenv", posix_putenv, METH_VARARGS, posix_putenv__doc__},
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00008722#endif
Guido van Rossumc524d952001-10-19 01:31:59 +00008723#ifdef HAVE_UNSETENV
8724 {"unsetenv", posix_unsetenv, METH_VARARGS, posix_unsetenv__doc__},
8725#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008726 {"strerror", posix_strerror, METH_VARARGS, posix_strerror__doc__},
Fred Drake4d1e64b2002-04-15 19:40:07 +00008727#ifdef HAVE_FCHDIR
8728 {"fchdir", posix_fchdir, METH_O, posix_fchdir__doc__},
8729#endif
Guido van Rossum21142a01999-01-08 21:05:37 +00008730#ifdef HAVE_FSYNC
Fred Drake4d1e64b2002-04-15 19:40:07 +00008731 {"fsync", posix_fsync, METH_O, posix_fsync__doc__},
Guido van Rossum21142a01999-01-08 21:05:37 +00008732#endif
8733#ifdef HAVE_FDATASYNC
Fred Drake4d1e64b2002-04-15 19:40:07 +00008734 {"fdatasync", posix_fdatasync, METH_O, posix_fdatasync__doc__},
Guido van Rossum21142a01999-01-08 21:05:37 +00008735#endif
Guido van Rossumc9641791998-08-04 15:26:23 +00008736#ifdef HAVE_SYS_WAIT_H
Fred Drake106c1a02002-04-23 15:58:02 +00008737#ifdef WCOREDUMP
8738 {"WCOREDUMP", posix_WCOREDUMP, METH_VARARGS, posix_WCOREDUMP__doc__},
8739#endif /* WCOREDUMP */
Martin v. Löwis2b41b0d2002-05-04 13:13:41 +00008740#ifdef WIFCONTINUED
8741 {"WIFCONTINUED",posix_WIFCONTINUED, METH_VARARGS, posix_WIFCONTINUED__doc__},
8742#endif /* WIFCONTINUED */
Guido van Rossumc9641791998-08-04 15:26:23 +00008743#ifdef WIFSTOPPED
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008744 {"WIFSTOPPED", posix_WIFSTOPPED, METH_VARARGS, posix_WIFSTOPPED__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008745#endif /* WIFSTOPPED */
8746#ifdef WIFSIGNALED
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008747 {"WIFSIGNALED", posix_WIFSIGNALED, METH_VARARGS, posix_WIFSIGNALED__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008748#endif /* WIFSIGNALED */
8749#ifdef WIFEXITED
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008750 {"WIFEXITED", posix_WIFEXITED, METH_VARARGS, posix_WIFEXITED__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008751#endif /* WIFEXITED */
8752#ifdef WEXITSTATUS
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008753 {"WEXITSTATUS", posix_WEXITSTATUS, METH_VARARGS, posix_WEXITSTATUS__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008754#endif /* WEXITSTATUS */
8755#ifdef WTERMSIG
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008756 {"WTERMSIG", posix_WTERMSIG, METH_VARARGS, posix_WTERMSIG__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008757#endif /* WTERMSIG */
8758#ifdef WSTOPSIG
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008759 {"WSTOPSIG", posix_WSTOPSIG, METH_VARARGS, posix_WSTOPSIG__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008760#endif /* WSTOPSIG */
8761#endif /* HAVE_SYS_WAIT_H */
Martin v. Löwis5f5d99c2006-05-16 07:05:37 +00008762#if defined(HAVE_FSTATVFS) && defined(HAVE_SYS_STATVFS_H)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008763 {"fstatvfs", posix_fstatvfs, METH_VARARGS, posix_fstatvfs__doc__},
Guido van Rossum94f6f721999-01-06 18:42:14 +00008764#endif
Martin v. Löwis5f5d99c2006-05-16 07:05:37 +00008765#if defined(HAVE_STATVFS) && defined(HAVE_SYS_STATVFS_H)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008766 {"statvfs", posix_statvfs, METH_VARARGS, posix_statvfs__doc__},
Guido van Rossum94f6f721999-01-06 18:42:14 +00008767#endif
Guido van Rossume2ad6332001-01-08 17:51:55 +00008768#ifdef HAVE_TMPFILE
Neal Norwitze241ce82003-02-17 18:17:05 +00008769 {"tmpfile", posix_tmpfile, METH_NOARGS, posix_tmpfile__doc__},
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008770#endif
8771#ifdef HAVE_TEMPNAM
8772 {"tempnam", posix_tempnam, METH_VARARGS, posix_tempnam__doc__},
8773#endif
8774#ifdef HAVE_TMPNAM
Neal Norwitze241ce82003-02-17 18:17:05 +00008775 {"tmpnam", posix_tmpnam, METH_NOARGS, posix_tmpnam__doc__},
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008776#endif
Fred Drakec9680921999-12-13 16:37:25 +00008777#ifdef HAVE_CONFSTR
8778 {"confstr", posix_confstr, METH_VARARGS, posix_confstr__doc__},
8779#endif
8780#ifdef HAVE_SYSCONF
8781 {"sysconf", posix_sysconf, METH_VARARGS, posix_sysconf__doc__},
8782#endif
8783#ifdef HAVE_FPATHCONF
8784 {"fpathconf", posix_fpathconf, METH_VARARGS, posix_fpathconf__doc__},
8785#endif
8786#ifdef HAVE_PATHCONF
8787 {"pathconf", posix_pathconf, METH_VARARGS, posix_pathconf__doc__},
8788#endif
Neal Norwitze241ce82003-02-17 18:17:05 +00008789 {"abort", posix_abort, METH_NOARGS, posix_abort__doc__},
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00008790#ifdef MS_WINDOWS
Mark Hammondef8b6542001-05-13 08:04:26 +00008791 {"_getfullpathname", posix__getfullpathname, METH_VARARGS, NULL},
8792#endif
Martin v. Löwis438b5342002-12-27 10:16:42 +00008793#ifdef HAVE_GETLOADAVG
Neal Norwitze241ce82003-02-17 18:17:05 +00008794 {"getloadavg", posix_getloadavg, METH_NOARGS, posix_getloadavg__doc__},
Martin v. Löwis438b5342002-12-27 10:16:42 +00008795#endif
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008796 #ifdef MS_WINDOWS
8797 {"urandom", win32_urandom, METH_VARARGS, win32_urandom__doc__},
8798 #endif
Neal Norwitz2a30cd02006-07-10 01:18:57 +00008799 #ifdef __VMS
8800 {"urandom", vms_urandom, METH_VARARGS, vms_urandom__doc__},
8801 #endif
Martin v. Löwis50ea4562009-11-27 13:56:01 +00008802#ifdef HAVE_SETRESUID
8803 {"setresuid", posix_setresuid, METH_VARARGS, posix_setresuid__doc__},
8804#endif
8805#ifdef HAVE_SETRESGID
8806 {"setresgid", posix_setresgid, METH_VARARGS, posix_setresgid__doc__},
8807#endif
8808#ifdef HAVE_GETRESUID
8809 {"getresuid", posix_getresuid, METH_NOARGS, posix_getresuid__doc__},
8810#endif
8811#ifdef HAVE_GETRESGID
8812 {"getresgid", posix_getresgid, METH_NOARGS, posix_getresgid__doc__},
8813#endif
8814
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00008815 {NULL, NULL} /* Sentinel */
8816};
8817
8818
Barry Warsaw4a342091996-12-19 23:50:02 +00008819static int
Fred Drake4d1e64b2002-04-15 19:40:07 +00008820ins(PyObject *module, char *symbol, long value)
Barry Warsaw4a342091996-12-19 23:50:02 +00008821{
Fred Drake4d1e64b2002-04-15 19:40:07 +00008822 return PyModule_AddIntConstant(module, symbol, value);
Barry Warsaw4a342091996-12-19 23:50:02 +00008823}
8824
Guido van Rossumd48f2521997-12-05 22:19:34 +00008825#if defined(PYOS_OS2)
8826/* Insert Platform-Specific Constant Values (Strings & Numbers) of Common Use */
Fred Drake4d1e64b2002-04-15 19:40:07 +00008827static int insertvalues(PyObject *module)
Guido van Rossumd48f2521997-12-05 22:19:34 +00008828{
8829 APIRET rc;
8830 ULONG values[QSV_MAX+1];
8831 PyObject *v;
Marc-André Lemburgd4c0a9c2001-11-28 11:47:00 +00008832 char *ver, tmp[50];
Guido van Rossumd48f2521997-12-05 22:19:34 +00008833
8834 Py_BEGIN_ALLOW_THREADS
Andrew MacIntyre75e01452003-04-21 14:19:51 +00008835 rc = DosQuerySysInfo(1L, QSV_MAX, &values[1], sizeof(ULONG) * QSV_MAX);
Guido van Rossumd48f2521997-12-05 22:19:34 +00008836 Py_END_ALLOW_THREADS
8837
8838 if (rc != NO_ERROR) {
8839 os2_error(rc);
8840 return -1;
8841 }
8842
Fred Drake4d1e64b2002-04-15 19:40:07 +00008843 if (ins(module, "meminstalled", values[QSV_TOTPHYSMEM])) return -1;
8844 if (ins(module, "memkernel", values[QSV_TOTRESMEM])) return -1;
8845 if (ins(module, "memvirtual", values[QSV_TOTAVAILMEM])) return -1;
8846 if (ins(module, "maxpathlen", values[QSV_MAX_PATH_LENGTH])) return -1;
8847 if (ins(module, "maxnamelen", values[QSV_MAX_COMP_LENGTH])) return -1;
8848 if (ins(module, "revision", values[QSV_VERSION_REVISION])) return -1;
8849 if (ins(module, "timeslice", values[QSV_MIN_SLICE])) return -1;
Guido van Rossumd48f2521997-12-05 22:19:34 +00008850
8851 switch (values[QSV_VERSION_MINOR]) {
8852 case 0: ver = "2.00"; break;
8853 case 10: ver = "2.10"; break;
8854 case 11: ver = "2.11"; break;
8855 case 30: ver = "3.00"; break;
8856 case 40: ver = "4.00"; break;
8857 case 50: ver = "5.00"; break;
8858 default:
Tim Peters885d4572001-11-28 20:27:42 +00008859 PyOS_snprintf(tmp, sizeof(tmp),
8860 "%d-%d", values[QSV_VERSION_MAJOR],
8861 values[QSV_VERSION_MINOR]);
Guido van Rossumd48f2521997-12-05 22:19:34 +00008862 ver = &tmp[0];
8863 }
8864
8865 /* Add Indicator of the Version of the Operating System */
Fred Drake4d1e64b2002-04-15 19:40:07 +00008866 if (PyModule_AddStringConstant(module, "version", tmp) < 0)
Guido van Rossumd48f2521997-12-05 22:19:34 +00008867 return -1;
Guido van Rossumd48f2521997-12-05 22:19:34 +00008868
8869 /* Add Indicator of Which Drive was Used to Boot the System */
8870 tmp[0] = 'A' + values[QSV_BOOT_DRIVE] - 1;
8871 tmp[1] = ':';
8872 tmp[2] = '\0';
8873
Fred Drake4d1e64b2002-04-15 19:40:07 +00008874 return PyModule_AddStringConstant(module, "bootdrive", tmp);
Guido van Rossumd48f2521997-12-05 22:19:34 +00008875}
8876#endif
8877
Barry Warsaw4a342091996-12-19 23:50:02 +00008878static int
Thomas Woutersf3f33dc2000-07-21 06:00:07 +00008879all_ins(PyObject *d)
Barry Warsaw4a342091996-12-19 23:50:02 +00008880{
Guido van Rossum94f6f721999-01-06 18:42:14 +00008881#ifdef F_OK
8882 if (ins(d, "F_OK", (long)F_OK)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00008883#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00008884#ifdef R_OK
8885 if (ins(d, "R_OK", (long)R_OK)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00008886#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00008887#ifdef W_OK
8888 if (ins(d, "W_OK", (long)W_OK)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00008889#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00008890#ifdef X_OK
8891 if (ins(d, "X_OK", (long)X_OK)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00008892#endif
Fred Drakec9680921999-12-13 16:37:25 +00008893#ifdef NGROUPS_MAX
8894 if (ins(d, "NGROUPS_MAX", (long)NGROUPS_MAX)) return -1;
8895#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008896#ifdef TMP_MAX
8897 if (ins(d, "TMP_MAX", (long)TMP_MAX)) return -1;
8898#endif
Fred Drake106c1a02002-04-23 15:58:02 +00008899#ifdef WCONTINUED
8900 if (ins(d, "WCONTINUED", (long)WCONTINUED)) return -1;
8901#endif
Barry Warsaw4a342091996-12-19 23:50:02 +00008902#ifdef WNOHANG
8903 if (ins(d, "WNOHANG", (long)WNOHANG)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00008904#endif
Fred Drake106c1a02002-04-23 15:58:02 +00008905#ifdef WUNTRACED
8906 if (ins(d, "WUNTRACED", (long)WUNTRACED)) return -1;
8907#endif
Barry Warsaw4a342091996-12-19 23:50:02 +00008908#ifdef O_RDONLY
8909 if (ins(d, "O_RDONLY", (long)O_RDONLY)) return -1;
8910#endif
8911#ifdef O_WRONLY
8912 if (ins(d, "O_WRONLY", (long)O_WRONLY)) return -1;
8913#endif
8914#ifdef O_RDWR
8915 if (ins(d, "O_RDWR", (long)O_RDWR)) return -1;
8916#endif
8917#ifdef O_NDELAY
8918 if (ins(d, "O_NDELAY", (long)O_NDELAY)) return -1;
8919#endif
8920#ifdef O_NONBLOCK
8921 if (ins(d, "O_NONBLOCK", (long)O_NONBLOCK)) return -1;
8922#endif
8923#ifdef O_APPEND
8924 if (ins(d, "O_APPEND", (long)O_APPEND)) return -1;
8925#endif
8926#ifdef O_DSYNC
8927 if (ins(d, "O_DSYNC", (long)O_DSYNC)) return -1;
8928#endif
8929#ifdef O_RSYNC
8930 if (ins(d, "O_RSYNC", (long)O_RSYNC)) return -1;
8931#endif
8932#ifdef O_SYNC
8933 if (ins(d, "O_SYNC", (long)O_SYNC)) return -1;
8934#endif
8935#ifdef O_NOCTTY
8936 if (ins(d, "O_NOCTTY", (long)O_NOCTTY)) return -1;
8937#endif
8938#ifdef O_CREAT
8939 if (ins(d, "O_CREAT", (long)O_CREAT)) return -1;
8940#endif
8941#ifdef O_EXCL
8942 if (ins(d, "O_EXCL", (long)O_EXCL)) return -1;
8943#endif
8944#ifdef O_TRUNC
8945 if (ins(d, "O_TRUNC", (long)O_TRUNC)) return -1;
8946#endif
Guido van Rossum98d9d091997-08-08 21:48:51 +00008947#ifdef O_BINARY
8948 if (ins(d, "O_BINARY", (long)O_BINARY)) return -1;
8949#endif
8950#ifdef O_TEXT
8951 if (ins(d, "O_TEXT", (long)O_TEXT)) return -1;
8952#endif
Martin v. Löwis4fe3c272001-10-18 22:05:36 +00008953#ifdef O_LARGEFILE
8954 if (ins(d, "O_LARGEFILE", (long)O_LARGEFILE)) return -1;
8955#endif
Skip Montanaro5ff14922005-05-16 02:42:22 +00008956#ifdef O_SHLOCK
8957 if (ins(d, "O_SHLOCK", (long)O_SHLOCK)) return -1;
8958#endif
8959#ifdef O_EXLOCK
8960 if (ins(d, "O_EXLOCK", (long)O_EXLOCK)) return -1;
8961#endif
Martin v. Löwis4fe3c272001-10-18 22:05:36 +00008962
Tim Peters5aa91602002-01-30 05:46:57 +00008963/* MS Windows */
8964#ifdef O_NOINHERIT
8965 /* Don't inherit in child processes. */
8966 if (ins(d, "O_NOINHERIT", (long)O_NOINHERIT)) return -1;
8967#endif
8968#ifdef _O_SHORT_LIVED
8969 /* Optimize for short life (keep in memory). */
8970 /* MS forgot to define this one with a non-underscore form too. */
8971 if (ins(d, "O_SHORT_LIVED", (long)_O_SHORT_LIVED)) return -1;
8972#endif
8973#ifdef O_TEMPORARY
8974 /* Automatically delete when last handle is closed. */
8975 if (ins(d, "O_TEMPORARY", (long)O_TEMPORARY)) return -1;
8976#endif
8977#ifdef O_RANDOM
8978 /* Optimize for random access. */
8979 if (ins(d, "O_RANDOM", (long)O_RANDOM)) return -1;
8980#endif
8981#ifdef O_SEQUENTIAL
8982 /* Optimize for sequential access. */
8983 if (ins(d, "O_SEQUENTIAL", (long)O_SEQUENTIAL)) return -1;
8984#endif
8985
Martin v. Löwis4fe3c272001-10-18 22:05:36 +00008986/* GNU extensions. */
Georg Brandl5049a852008-05-16 13:10:15 +00008987#ifdef O_ASYNC
8988 /* Send a SIGIO signal whenever input or output
8989 becomes available on file descriptor */
8990 if (ins(d, "O_ASYNC", (long)O_ASYNC)) return -1;
8991#endif
Martin v. Löwis4fe3c272001-10-18 22:05:36 +00008992#ifdef O_DIRECT
8993 /* Direct disk access. */
8994 if (ins(d, "O_DIRECT", (long)O_DIRECT)) return -1;
8995#endif
8996#ifdef O_DIRECTORY
8997 /* Must be a directory. */
8998 if (ins(d, "O_DIRECTORY", (long)O_DIRECTORY)) return -1;
8999#endif
9000#ifdef O_NOFOLLOW
9001 /* Do not follow links. */
9002 if (ins(d, "O_NOFOLLOW", (long)O_NOFOLLOW)) return -1;
9003#endif
Georg Brandlb67da6e2007-11-24 13:56:09 +00009004#ifdef O_NOATIME
9005 /* Do not update the access time. */
9006 if (ins(d, "O_NOATIME", (long)O_NOATIME)) return -1;
9007#endif
Guido van Rossumd48f2521997-12-05 22:19:34 +00009008
Barry Warsaw5676bd12003-01-07 20:57:09 +00009009 /* These come from sysexits.h */
9010#ifdef EX_OK
9011 if (ins(d, "EX_OK", (long)EX_OK)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009012#endif /* EX_OK */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009013#ifdef EX_USAGE
9014 if (ins(d, "EX_USAGE", (long)EX_USAGE)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009015#endif /* EX_USAGE */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009016#ifdef EX_DATAERR
9017 if (ins(d, "EX_DATAERR", (long)EX_DATAERR)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009018#endif /* EX_DATAERR */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009019#ifdef EX_NOINPUT
9020 if (ins(d, "EX_NOINPUT", (long)EX_NOINPUT)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009021#endif /* EX_NOINPUT */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009022#ifdef EX_NOUSER
9023 if (ins(d, "EX_NOUSER", (long)EX_NOUSER)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009024#endif /* EX_NOUSER */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009025#ifdef EX_NOHOST
9026 if (ins(d, "EX_NOHOST", (long)EX_NOHOST)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009027#endif /* EX_NOHOST */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009028#ifdef EX_UNAVAILABLE
9029 if (ins(d, "EX_UNAVAILABLE", (long)EX_UNAVAILABLE)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009030#endif /* EX_UNAVAILABLE */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009031#ifdef EX_SOFTWARE
9032 if (ins(d, "EX_SOFTWARE", (long)EX_SOFTWARE)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009033#endif /* EX_SOFTWARE */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009034#ifdef EX_OSERR
9035 if (ins(d, "EX_OSERR", (long)EX_OSERR)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009036#endif /* EX_OSERR */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009037#ifdef EX_OSFILE
9038 if (ins(d, "EX_OSFILE", (long)EX_OSFILE)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009039#endif /* EX_OSFILE */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009040#ifdef EX_CANTCREAT
9041 if (ins(d, "EX_CANTCREAT", (long)EX_CANTCREAT)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009042#endif /* EX_CANTCREAT */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009043#ifdef EX_IOERR
9044 if (ins(d, "EX_IOERR", (long)EX_IOERR)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009045#endif /* EX_IOERR */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009046#ifdef EX_TEMPFAIL
9047 if (ins(d, "EX_TEMPFAIL", (long)EX_TEMPFAIL)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009048#endif /* EX_TEMPFAIL */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009049#ifdef EX_PROTOCOL
9050 if (ins(d, "EX_PROTOCOL", (long)EX_PROTOCOL)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009051#endif /* EX_PROTOCOL */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009052#ifdef EX_NOPERM
9053 if (ins(d, "EX_NOPERM", (long)EX_NOPERM)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009054#endif /* EX_NOPERM */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009055#ifdef EX_CONFIG
9056 if (ins(d, "EX_CONFIG", (long)EX_CONFIG)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009057#endif /* EX_CONFIG */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009058#ifdef EX_NOTFOUND
9059 if (ins(d, "EX_NOTFOUND", (long)EX_NOTFOUND)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009060#endif /* EX_NOTFOUND */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009061
Guido van Rossum246bc171999-02-01 23:54:31 +00009062#ifdef HAVE_SPAWNV
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00009063#if defined(PYOS_OS2) && defined(PYCC_GCC)
9064 if (ins(d, "P_WAIT", (long)P_WAIT)) return -1;
9065 if (ins(d, "P_NOWAIT", (long)P_NOWAIT)) return -1;
9066 if (ins(d, "P_OVERLAY", (long)P_OVERLAY)) return -1;
9067 if (ins(d, "P_DEBUG", (long)P_DEBUG)) return -1;
9068 if (ins(d, "P_SESSION", (long)P_SESSION)) return -1;
9069 if (ins(d, "P_DETACH", (long)P_DETACH)) return -1;
9070 if (ins(d, "P_PM", (long)P_PM)) return -1;
9071 if (ins(d, "P_DEFAULT", (long)P_DEFAULT)) return -1;
9072 if (ins(d, "P_MINIMIZE", (long)P_MINIMIZE)) return -1;
9073 if (ins(d, "P_MAXIMIZE", (long)P_MAXIMIZE)) return -1;
9074 if (ins(d, "P_FULLSCREEN", (long)P_FULLSCREEN)) return -1;
9075 if (ins(d, "P_WINDOWED", (long)P_WINDOWED)) return -1;
9076 if (ins(d, "P_FOREGROUND", (long)P_FOREGROUND)) return -1;
9077 if (ins(d, "P_BACKGROUND", (long)P_BACKGROUND)) return -1;
9078 if (ins(d, "P_NOCLOSE", (long)P_NOCLOSE)) return -1;
9079 if (ins(d, "P_NOSESSION", (long)P_NOSESSION)) return -1;
9080 if (ins(d, "P_QUOTE", (long)P_QUOTE)) return -1;
9081 if (ins(d, "P_TILDE", (long)P_TILDE)) return -1;
9082 if (ins(d, "P_UNRELATED", (long)P_UNRELATED)) return -1;
9083 if (ins(d, "P_DEBUGDESC", (long)P_DEBUGDESC)) return -1;
9084#else
Guido van Rossum7d385291999-02-16 19:38:04 +00009085 if (ins(d, "P_WAIT", (long)_P_WAIT)) return -1;
9086 if (ins(d, "P_NOWAIT", (long)_P_NOWAIT)) return -1;
9087 if (ins(d, "P_OVERLAY", (long)_OLD_P_OVERLAY)) return -1;
9088 if (ins(d, "P_NOWAITO", (long)_P_NOWAITO)) return -1;
9089 if (ins(d, "P_DETACH", (long)_P_DETACH)) return -1;
Guido van Rossum246bc171999-02-01 23:54:31 +00009090#endif
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00009091#endif
Guido van Rossum246bc171999-02-01 23:54:31 +00009092
Guido van Rossumd48f2521997-12-05 22:19:34 +00009093#if defined(PYOS_OS2)
9094 if (insertvalues(d)) return -1;
9095#endif
Barry Warsaw4a342091996-12-19 23:50:02 +00009096 return 0;
9097}
9098
9099
Tim Peters5aa91602002-01-30 05:46:57 +00009100#if (defined(_MSC_VER) || defined(__WATCOMC__) || defined(__BORLANDC__)) && !defined(__QNX__)
Guido van Rossum0cb96de1997-10-01 04:29:29 +00009101#define INITFUNC initnt
9102#define MODNAME "nt"
Tim Peters58e0a8c2001-05-14 22:32:33 +00009103
9104#elif defined(PYOS_OS2)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00009105#define INITFUNC initos2
9106#define MODNAME "os2"
Tim Peters58e0a8c2001-05-14 22:32:33 +00009107
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00009108#else
Guido van Rossum0cb96de1997-10-01 04:29:29 +00009109#define INITFUNC initposix
9110#define MODNAME "posix"
9111#endif
9112
Mark Hammondfe51c6d2002-08-02 02:27:13 +00009113PyMODINIT_FUNC
Thomas Woutersf3f33dc2000-07-21 06:00:07 +00009114INITFUNC(void)
Guido van Rossumb6775db1994-08-01 11:34:53 +00009115{
Fred Drake4d1e64b2002-04-15 19:40:07 +00009116 PyObject *m, *v;
Tim Peters5aa91602002-01-30 05:46:57 +00009117
Fred Drake4d1e64b2002-04-15 19:40:07 +00009118 m = Py_InitModule3(MODNAME,
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00009119 posix_methods,
Fred Drake4d1e64b2002-04-15 19:40:07 +00009120 posix__doc__);
Neal Norwitz1ac754f2006-01-19 06:09:39 +00009121 if (m == NULL)
9122 return;
Tim Peters5aa91602002-01-30 05:46:57 +00009123
Guido van Rossum0cb96de1997-10-01 04:29:29 +00009124 /* Initialize environ dictionary */
Guido van Rossumb6775db1994-08-01 11:34:53 +00009125 v = convertenviron();
Fred Drake4d1e64b2002-04-15 19:40:07 +00009126 Py_XINCREF(v);
9127 if (v == NULL || PyModule_AddObject(m, "environ", v) != 0)
Guido van Rossum0cb96de1997-10-01 04:29:29 +00009128 return;
Barry Warsaw53699e91996-12-10 23:23:01 +00009129 Py_DECREF(v);
Fred Drakec9680921999-12-13 16:37:25 +00009130
Fred Drake4d1e64b2002-04-15 19:40:07 +00009131 if (all_ins(m))
Barry Warsaw4a342091996-12-19 23:50:02 +00009132 return;
9133
Fred Drake4d1e64b2002-04-15 19:40:07 +00009134 if (setup_confname_tables(m))
Fred Drakebec628d1999-12-15 18:31:10 +00009135 return;
9136
Fred Drake4d1e64b2002-04-15 19:40:07 +00009137 Py_INCREF(PyExc_OSError);
9138 PyModule_AddObject(m, "error", PyExc_OSError);
Fred Drake762e2061999-08-26 17:23:54 +00009139
Guido van Rossumb3d39562000-01-31 18:41:26 +00009140#ifdef HAVE_PUTENV
Neil Schemenauer19030a02001-01-16 04:27:47 +00009141 if (posix_putenv_garbage == NULL)
9142 posix_putenv_garbage = PyDict_New();
Guido van Rossumb3d39562000-01-31 18:41:26 +00009143#endif
Guido van Rossum98bf58f2001-10-18 20:34:25 +00009144
Martin v. Löwis19ab6c92006-04-16 18:55:50 +00009145 if (!initialized) {
9146 stat_result_desc.name = MODNAME ".stat_result";
9147 stat_result_desc.fields[7].name = PyStructSequence_UnnamedField;
9148 stat_result_desc.fields[8].name = PyStructSequence_UnnamedField;
9149 stat_result_desc.fields[9].name = PyStructSequence_UnnamedField;
9150 PyStructSequence_InitType(&StatResultType, &stat_result_desc);
9151 structseq_new = StatResultType.tp_new;
9152 StatResultType.tp_new = statresult_new;
9153
9154 statvfs_result_desc.name = MODNAME ".statvfs_result";
9155 PyStructSequence_InitType(&StatVFSResultType, &statvfs_result_desc);
Martin v. Löwis03824e42008-12-29 18:17:34 +00009156#ifdef NEED_TICKS_PER_SECOND
9157# if defined(HAVE_SYSCONF) && defined(_SC_CLK_TCK)
9158 ticks_per_second = sysconf(_SC_CLK_TCK);
9159# elif defined(HZ)
9160 ticks_per_second = HZ;
9161# else
9162 ticks_per_second = 60; /* magic fallback value; may be bogus */
9163# endif
9164#endif
Martin v. Löwis19ab6c92006-04-16 18:55:50 +00009165 }
Fred Drake4d1e64b2002-04-15 19:40:07 +00009166 Py_INCREF((PyObject*) &StatResultType);
9167 PyModule_AddObject(m, "stat_result", (PyObject*) &StatResultType);
Fred Drake4d1e64b2002-04-15 19:40:07 +00009168 Py_INCREF((PyObject*) &StatVFSResultType);
9169 PyModule_AddObject(m, "statvfs_result",
9170 (PyObject*) &StatVFSResultType);
Martin v. Löwis19ab6c92006-04-16 18:55:50 +00009171 initialized = 1;
Ronald Oussorend06b6f22006-04-23 11:59:25 +00009172
9173#ifdef __APPLE__
9174 /*
9175 * Step 2 of weak-linking support on Mac OS X.
9176 *
9177 * The code below removes functions that are not available on the
9178 * currently active platform.
9179 *
9180 * This block allow one to use a python binary that was build on
9181 * OSX 10.4 on OSX 10.3, without loosing access to new APIs on
9182 * OSX 10.4.
9183 */
9184#ifdef HAVE_FSTATVFS
9185 if (fstatvfs == NULL) {
9186 if (PyObject_DelAttrString(m, "fstatvfs") == -1) {
9187 return;
9188 }
9189 }
9190#endif /* HAVE_FSTATVFS */
9191
9192#ifdef HAVE_STATVFS
9193 if (statvfs == NULL) {
9194 if (PyObject_DelAttrString(m, "statvfs") == -1) {
9195 return;
9196 }
9197 }
9198#endif /* HAVE_STATVFS */
9199
9200# ifdef HAVE_LCHOWN
9201 if (lchown == NULL) {
9202 if (PyObject_DelAttrString(m, "lchown") == -1) {
9203 return;
9204 }
9205 }
9206#endif /* HAVE_LCHOWN */
9207
9208
9209#endif /* __APPLE__ */
9210
Guido van Rossumb6775db1994-08-01 11:34:53 +00009211}
Anthony Baxterac6bd462006-04-13 02:06:09 +00009212
9213#ifdef __cplusplus
9214}
9215#endif
9216
Martin v. Löwis18aaa562006-10-15 08:43:33 +00009217