blob: f729e88dab1372f51a5dce26f91e00f43f0ba822 [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{
Gregory P. Smith9f12d462009-12-23 09:31:11 +00001913 int fd;
1914 long uid, gid;
Christian Heimes36281872007-11-30 21:11:28 +00001915 int res;
Gregory P. Smith9f12d462009-12-23 09:31:11 +00001916 if (!PyArg_ParseTuple(args, "ill:chown", &fd, &uid, &gid))
Christian Heimes36281872007-11-30 21:11:28 +00001917 return NULL;
1918 Py_BEGIN_ALLOW_THREADS
1919 res = fchown(fd, (uid_t) uid, (gid_t) gid);
1920 Py_END_ALLOW_THREADS
1921 if (res < 0)
1922 return posix_error();
1923 Py_RETURN_NONE;
1924}
1925#endif /* HAVE_FCHOWN */
1926
Martin v. Löwis0cec0ff2002-07-28 16:33:45 +00001927#ifdef HAVE_LCHOWN
1928PyDoc_STRVAR(posix_lchown__doc__,
1929"lchown(path, uid, gid)\n\n\
1930Change the owner and group id of path to the numeric uid and gid.\n\
1931This function will not follow symbolic links.");
1932
1933static PyObject *
1934posix_lchown(PyObject *self, PyObject *args)
1935{
1936 char *path = NULL;
Gregory P. Smith9f12d462009-12-23 09:31:11 +00001937 long uid, gid;
Martin v. Löwis0cec0ff2002-07-28 16:33:45 +00001938 int res;
Gregory P. Smith9f12d462009-12-23 09:31:11 +00001939 if (!PyArg_ParseTuple(args, "etll:lchown",
Martin v. Löwis0cec0ff2002-07-28 16:33:45 +00001940 Py_FileSystemDefaultEncoding, &path,
1941 &uid, &gid))
1942 return NULL;
1943 Py_BEGIN_ALLOW_THREADS
1944 res = lchown(path, (uid_t) uid, (gid_t) gid);
1945 Py_END_ALLOW_THREADS
Tim Peters11b23062003-04-23 02:39:17 +00001946 if (res < 0)
Martin v. Löwis0cec0ff2002-07-28 16:33:45 +00001947 return posix_error_with_allocated_filename(path);
1948 PyMem_Free(path);
1949 Py_INCREF(Py_None);
1950 return Py_None;
1951}
1952#endif /* HAVE_LCHOWN */
1953
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001954
Guido van Rossum36bc6801995-06-14 22:54:23 +00001955#ifdef HAVE_GETCWD
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001956PyDoc_STRVAR(posix_getcwd__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001957"getcwd() -> path\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001958Return a string representing the current working directory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001959
Barry Warsaw53699e91996-12-10 23:23:01 +00001960static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00001961posix_getcwd(PyObject *self, PyObject *noargs)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001962{
Facundo Batista5596b0c2008-06-22 13:36:20 +00001963 int bufsize_incr = 1024;
1964 int bufsize = 0;
1965 char *tmpbuf = NULL;
1966 char *res = NULL;
1967 PyObject *dynamic_return;
Neal Norwitze241ce82003-02-17 18:17:05 +00001968
Barry Warsaw53699e91996-12-10 23:23:01 +00001969 Py_BEGIN_ALLOW_THREADS
Facundo Batista5596b0c2008-06-22 13:36:20 +00001970 do {
1971 bufsize = bufsize + bufsize_incr;
1972 tmpbuf = malloc(bufsize);
1973 if (tmpbuf == NULL) {
1974 break;
1975 }
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00001976#if defined(PYOS_OS2) && defined(PYCC_GCC)
Facundo Batista5596b0c2008-06-22 13:36:20 +00001977 res = _getcwd2(tmpbuf, bufsize);
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001978#else
Facundo Batista5596b0c2008-06-22 13:36:20 +00001979 res = getcwd(tmpbuf, bufsize);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00001980#endif
Facundo Batista5596b0c2008-06-22 13:36:20 +00001981
1982 if (res == NULL) {
1983 free(tmpbuf);
1984 }
1985 } while ((res == NULL) && (errno == ERANGE));
Barry Warsaw53699e91996-12-10 23:23:01 +00001986 Py_END_ALLOW_THREADS
Facundo Batista5596b0c2008-06-22 13:36:20 +00001987
Guido van Rossumff4949e1992-08-05 19:58:53 +00001988 if (res == NULL)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001989 return posix_error();
Facundo Batista5596b0c2008-06-22 13:36:20 +00001990
1991 dynamic_return = PyString_FromString(tmpbuf);
1992 free(tmpbuf);
1993
1994 return dynamic_return;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001995}
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001996
Walter Dörwald3b918c32002-11-21 20:18:46 +00001997#ifdef Py_USING_UNICODE
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001998PyDoc_STRVAR(posix_getcwdu__doc__,
1999"getcwdu() -> path\n\n\
2000Return a unicode string representing the current working directory.");
2001
2002static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00002003posix_getcwdu(PyObject *self, PyObject *noargs)
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002004{
2005 char buf[1026];
2006 char *res;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002007
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002008#ifdef MS_WINDOWS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002009 DWORD len;
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00002010 wchar_t wbuf[1026];
2011 wchar_t *wbuf2 = wbuf;
2012 PyObject *resobj;
2013 Py_BEGIN_ALLOW_THREADS
2014 len = GetCurrentDirectoryW(sizeof wbuf/ sizeof wbuf[0], wbuf);
2015 /* If the buffer is large enough, len does not include the
2016 terminating \0. If the buffer is too small, len includes
2017 the space needed for the terminator. */
2018 if (len >= sizeof wbuf/ sizeof wbuf[0]) {
2019 wbuf2 = malloc(len * sizeof(wchar_t));
2020 if (wbuf2)
2021 len = GetCurrentDirectoryW(len, wbuf2);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002022 }
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00002023 Py_END_ALLOW_THREADS
2024 if (!wbuf2) {
2025 PyErr_NoMemory();
2026 return NULL;
2027 }
2028 if (!len) {
2029 if (wbuf2 != wbuf) free(wbuf2);
2030 return win32_error("getcwdu", NULL);
2031 }
2032 resobj = PyUnicode_FromWideChar(wbuf2, len);
2033 if (wbuf2 != wbuf) free(wbuf2);
2034 return resobj;
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002035#endif /* MS_WINDOWS */
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002036
2037 Py_BEGIN_ALLOW_THREADS
2038#if defined(PYOS_OS2) && defined(PYCC_GCC)
2039 res = _getcwd2(buf, sizeof buf);
2040#else
2041 res = getcwd(buf, sizeof buf);
2042#endif
2043 Py_END_ALLOW_THREADS
2044 if (res == NULL)
2045 return posix_error();
2046 return PyUnicode_Decode(buf, strlen(buf), Py_FileSystemDefaultEncoding,"strict");
2047}
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002048#endif /* Py_USING_UNICODE */
2049#endif /* HAVE_GETCWD */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002050
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002051
Guido van Rossumb6775db1994-08-01 11:34:53 +00002052#ifdef HAVE_LINK
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002053PyDoc_STRVAR(posix_link__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002054"link(src, dst)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002055Create a hard link to a file.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002056
Barry Warsaw53699e91996-12-10 23:23:01 +00002057static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002058posix_link(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002059{
Martin v. Löwis4fc2bda2006-05-04 12:04:27 +00002060 return posix_2str(args, "etet:link", link);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002061}
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002062#endif /* HAVE_LINK */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002063
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002064
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002065PyDoc_STRVAR(posix_listdir__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002066"listdir(path) -> list_of_strings\n\n\
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002067Return a list containing the names of the entries in the directory.\n\
2068\n\
2069 path: path of directory to list\n\
2070\n\
2071The list is in arbitrary order. It does not include the special\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002072entries '.' and '..' even if they are present in the directory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002073
Barry Warsaw53699e91996-12-10 23:23:01 +00002074static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002075posix_listdir(PyObject *self, PyObject *args)
Guido van Rossumb6775db1994-08-01 11:34:53 +00002076{
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002077 /* XXX Should redo this putting the (now four) versions of opendir
Guido van Rossum6d8841c1997-08-14 19:57:39 +00002078 in separate files instead of having them all here... */
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00002079#if defined(MS_WINDOWS) && !defined(HAVE_OPENDIR)
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002080
Barry Warsaw53699e91996-12-10 23:23:01 +00002081 PyObject *d, *v;
Guido van Rossumb6775db1994-08-01 11:34:53 +00002082 HANDLE hFindFile;
Martin v. Löwise920f0d2006-03-07 23:59:33 +00002083 BOOL result;
Guido van Rossumb6775db1994-08-01 11:34:53 +00002084 WIN32_FIND_DATA FileData;
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002085 char namebuf[MAX_PATH+5]; /* Overallocate for \\*.*\0 */
Mark Hammondef8b6542001-05-13 08:04:26 +00002086 char *bufptr = namebuf;
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002087 Py_ssize_t len = sizeof(namebuf)-5; /* only claim to have space for MAX_PATH */
Guido van Rossumb6775db1994-08-01 11:34:53 +00002088
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00002089 PyObject *po;
2090 if (PyArg_ParseTuple(args, "U:listdir", &po)) {
2091 WIN32_FIND_DATAW wFileData;
2092 Py_UNICODE *wnamebuf;
2093 /* Overallocate for \\*.*\0 */
2094 len = PyUnicode_GET_SIZE(po);
2095 wnamebuf = malloc((len + 5) * sizeof(wchar_t));
2096 if (!wnamebuf) {
2097 PyErr_NoMemory();
2098 return NULL;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002099 }
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00002100 wcscpy(wnamebuf, PyUnicode_AS_UNICODE(po));
2101 if (len > 0) {
2102 Py_UNICODE wch = wnamebuf[len-1];
2103 if (wch != L'/' && wch != L'\\' && wch != L':')
2104 wnamebuf[len++] = L'\\';
2105 wcscpy(wnamebuf + len, L"*.*");
2106 }
2107 if ((d = PyList_New(0)) == NULL) {
2108 free(wnamebuf);
2109 return NULL;
2110 }
2111 hFindFile = FindFirstFileW(wnamebuf, &wFileData);
2112 if (hFindFile == INVALID_HANDLE_VALUE) {
2113 int error = GetLastError();
2114 if (error == ERROR_FILE_NOT_FOUND) {
2115 free(wnamebuf);
2116 return d;
2117 }
2118 Py_DECREF(d);
2119 win32_error_unicode("FindFirstFileW", wnamebuf);
2120 free(wnamebuf);
2121 return NULL;
2122 }
2123 do {
2124 /* Skip over . and .. */
2125 if (wcscmp(wFileData.cFileName, L".") != 0 &&
2126 wcscmp(wFileData.cFileName, L"..") != 0) {
2127 v = PyUnicode_FromUnicode(wFileData.cFileName, wcslen(wFileData.cFileName));
2128 if (v == NULL) {
2129 Py_DECREF(d);
2130 d = NULL;
2131 break;
2132 }
2133 if (PyList_Append(d, v) != 0) {
2134 Py_DECREF(v);
2135 Py_DECREF(d);
2136 d = NULL;
2137 break;
2138 }
2139 Py_DECREF(v);
2140 }
2141 Py_BEGIN_ALLOW_THREADS
2142 result = FindNextFileW(hFindFile, &wFileData);
2143 Py_END_ALLOW_THREADS
2144 /* FindNextFile sets error to ERROR_NO_MORE_FILES if
2145 it got to the end of the directory. */
2146 if (!result && GetLastError() != ERROR_NO_MORE_FILES) {
2147 Py_DECREF(d);
2148 win32_error_unicode("FindNextFileW", wnamebuf);
2149 FindClose(hFindFile);
2150 free(wnamebuf);
2151 return NULL;
2152 }
2153 } while (result == TRUE);
2154
2155 if (FindClose(hFindFile) == FALSE) {
2156 Py_DECREF(d);
2157 win32_error_unicode("FindClose", wnamebuf);
2158 free(wnamebuf);
2159 return NULL;
2160 }
2161 free(wnamebuf);
2162 return d;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002163 }
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00002164 /* Drop the argument parsing error as narrow strings
2165 are also valid. */
2166 PyErr_Clear();
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002167
Tim Peters5aa91602002-01-30 05:46:57 +00002168 if (!PyArg_ParseTuple(args, "et#:listdir",
Mark Hammondef8b6542001-05-13 08:04:26 +00002169 Py_FileSystemDefaultEncoding, &bufptr, &len))
Guido van Rossumb6775db1994-08-01 11:34:53 +00002170 return NULL;
Neil Schemenauer94b866a2002-03-22 20:51:58 +00002171 if (len > 0) {
2172 char ch = namebuf[len-1];
2173 if (ch != SEP && ch != ALTSEP && ch != ':')
2174 namebuf[len++] = '/';
Hirokazu Yamamoto406d7aa2009-05-04 05:28:39 +00002175 strcpy(namebuf + len, "*.*");
Neil Schemenauer94b866a2002-03-22 20:51:58 +00002176 }
Guido van Rossumb6775db1994-08-01 11:34:53 +00002177
Barry Warsaw53699e91996-12-10 23:23:01 +00002178 if ((d = PyList_New(0)) == NULL)
Guido van Rossumb6775db1994-08-01 11:34:53 +00002179 return NULL;
2180
2181 hFindFile = FindFirstFile(namebuf, &FileData);
2182 if (hFindFile == INVALID_HANDLE_VALUE) {
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002183 int error = GetLastError();
2184 if (error == ERROR_FILE_NOT_FOUND)
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002185 return d;
2186 Py_DECREF(d);
Mark Hammondef8b6542001-05-13 08:04:26 +00002187 return win32_error("FindFirstFile", namebuf);
Guido van Rossumb6775db1994-08-01 11:34:53 +00002188 }
2189 do {
Martin v. Löwise920f0d2006-03-07 23:59:33 +00002190 /* Skip over . and .. */
2191 if (strcmp(FileData.cFileName, ".") != 0 &&
2192 strcmp(FileData.cFileName, "..") != 0) {
Gregory P. Smithdd96db62008-06-09 04:58:54 +00002193 v = PyString_FromString(FileData.cFileName);
Martin v. Löwise920f0d2006-03-07 23:59:33 +00002194 if (v == NULL) {
2195 Py_DECREF(d);
2196 d = NULL;
2197 break;
2198 }
2199 if (PyList_Append(d, v) != 0) {
2200 Py_DECREF(v);
2201 Py_DECREF(d);
2202 d = NULL;
2203 break;
2204 }
Barry Warsaw53699e91996-12-10 23:23:01 +00002205 Py_DECREF(v);
Guido van Rossumb6775db1994-08-01 11:34:53 +00002206 }
Georg Brandl622927b2006-03-07 12:48:03 +00002207 Py_BEGIN_ALLOW_THREADS
2208 result = FindNextFile(hFindFile, &FileData);
2209 Py_END_ALLOW_THREADS
Martin v. Löwis982e9fe2006-07-24 12:54:17 +00002210 /* FindNextFile sets error to ERROR_NO_MORE_FILES if
2211 it got to the end of the directory. */
2212 if (!result && GetLastError() != ERROR_NO_MORE_FILES) {
2213 Py_DECREF(d);
2214 win32_error("FindNextFile", namebuf);
2215 FindClose(hFindFile);
2216 return NULL;
2217 }
Georg Brandl622927b2006-03-07 12:48:03 +00002218 } while (result == TRUE);
Guido van Rossumb6775db1994-08-01 11:34:53 +00002219
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002220 if (FindClose(hFindFile) == FALSE) {
2221 Py_DECREF(d);
Mark Hammondef8b6542001-05-13 08:04:26 +00002222 return win32_error("FindClose", namebuf);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002223 }
Guido van Rossumb6775db1994-08-01 11:34:53 +00002224
2225 return d;
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002226
Tim Peters0bb44a42000-09-15 07:44:49 +00002227#elif defined(PYOS_OS2)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002228
2229#ifndef MAX_PATH
2230#define MAX_PATH CCHMAXPATH
2231#endif
2232 char *name, *pt;
Thomas Wouters68bc4f92006-03-01 01:05:10 +00002233 Py_ssize_t len;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002234 PyObject *d, *v;
2235 char namebuf[MAX_PATH+5];
2236 HDIR hdir = 1;
2237 ULONG srchcnt = 1;
2238 FILEFINDBUF3 ep;
2239 APIRET rc;
2240
Fred Drake5ab8eaf1999-12-09 21:13:07 +00002241 if (!PyArg_ParseTuple(args, "t#:listdir", &name, &len))
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002242 return NULL;
2243 if (len >= MAX_PATH) {
2244 PyErr_SetString(PyExc_ValueError, "path too long");
2245 return NULL;
2246 }
2247 strcpy(namebuf, name);
2248 for (pt = namebuf; *pt; pt++)
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00002249 if (*pt == ALTSEP)
2250 *pt = SEP;
2251 if (namebuf[len-1] != SEP)
2252 namebuf[len++] = SEP;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002253 strcpy(namebuf + len, "*.*");
2254
2255 if ((d = PyList_New(0)) == NULL)
2256 return NULL;
2257
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002258 rc = DosFindFirst(namebuf, /* Wildcard Pattern to Match */
2259 &hdir, /* Handle to Use While Search Directory */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002260 FILE_READONLY | FILE_HIDDEN | FILE_SYSTEM | FILE_DIRECTORY,
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002261 &ep, sizeof(ep), /* Structure to Receive Directory Entry */
2262 &srchcnt, /* Max and Actual Count of Entries Per Iteration */
2263 FIL_STANDARD); /* Format of Entry (EAs or Not) */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002264
2265 if (rc != NO_ERROR) {
2266 errno = ENOENT;
Barry Warsawf63b8cc1999-05-27 23:13:21 +00002267 return posix_error_with_filename(name);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002268 }
2269
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002270 if (srchcnt > 0) { /* If Directory is NOT Totally Empty, */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002271 do {
2272 if (ep.achName[0] == '.'
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00002273 && (ep.achName[1] == '\0' || (ep.achName[1] == '.' && ep.achName[2] == '\0')))
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002274 continue; /* Skip Over "." and ".." Names */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002275
2276 strcpy(namebuf, ep.achName);
2277
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002278 /* Leave Case of Name Alone -- In Native Form */
2279 /* (Removed Forced Lowercasing Code) */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002280
Gregory P. Smithdd96db62008-06-09 04:58:54 +00002281 v = PyString_FromString(namebuf);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002282 if (v == NULL) {
2283 Py_DECREF(d);
2284 d = NULL;
2285 break;
2286 }
2287 if (PyList_Append(d, v) != 0) {
2288 Py_DECREF(v);
2289 Py_DECREF(d);
2290 d = NULL;
2291 break;
2292 }
2293 Py_DECREF(v);
2294 } while (DosFindNext(hdir, &ep, sizeof(ep), &srchcnt) == NO_ERROR && srchcnt > 0);
2295 }
2296
2297 return d;
2298#else
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002299
Just van Rossum2fe07fd2003-03-03 19:07:13 +00002300 char *name = NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00002301 PyObject *d, *v;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002302 DIR *dirp;
Guido van Rossumb6775db1994-08-01 11:34:53 +00002303 struct dirent *ep;
Just van Rossum96b1c902003-03-03 17:32:15 +00002304 int arg_is_unicode = 1;
2305
Georg Brandl05e89b82006-04-11 07:04:06 +00002306 errno = 0;
Just van Rossum96b1c902003-03-03 17:32:15 +00002307 if (!PyArg_ParseTuple(args, "U:listdir", &v)) {
2308 arg_is_unicode = 0;
2309 PyErr_Clear();
2310 }
2311 if (!PyArg_ParseTuple(args, "et:listdir", Py_FileSystemDefaultEncoding, &name))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002312 return NULL;
Guido van Rossumff4949e1992-08-05 19:58:53 +00002313 if ((dirp = opendir(name)) == NULL) {
Just van Rossum2fe07fd2003-03-03 19:07:13 +00002314 return posix_error_with_allocated_filename(name);
Guido van Rossumff4949e1992-08-05 19:58:53 +00002315 }
Barry Warsaw53699e91996-12-10 23:23:01 +00002316 if ((d = PyList_New(0)) == NULL) {
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002317 closedir(dirp);
Just van Rossum2fe07fd2003-03-03 19:07:13 +00002318 PyMem_Free(name);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002319 return NULL;
2320 }
Georg Brandl622927b2006-03-07 12:48:03 +00002321 for (;;) {
Georg Brandl86cbf812008-07-16 21:31:41 +00002322 errno = 0;
Georg Brandl622927b2006-03-07 12:48:03 +00002323 Py_BEGIN_ALLOW_THREADS
2324 ep = readdir(dirp);
2325 Py_END_ALLOW_THREADS
Georg Brandl86cbf812008-07-16 21:31:41 +00002326 if (ep == NULL) {
2327 if (errno == 0) {
2328 break;
2329 } else {
2330 closedir(dirp);
2331 Py_DECREF(d);
2332 return posix_error_with_allocated_filename(name);
2333 }
2334 }
Guido van Rossum24f42ac1995-07-18 18:16:52 +00002335 if (ep->d_name[0] == '.' &&
2336 (NAMLEN(ep) == 1 ||
Guido van Rossuma376cc51996-12-05 23:43:35 +00002337 (ep->d_name[1] == '.' && NAMLEN(ep) == 2)))
Guido van Rossum24f42ac1995-07-18 18:16:52 +00002338 continue;
Gregory P. Smithdd96db62008-06-09 04:58:54 +00002339 v = PyString_FromStringAndSize(ep->d_name, NAMLEN(ep));
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002340 if (v == NULL) {
Barry Warsaw53699e91996-12-10 23:23:01 +00002341 Py_DECREF(d);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002342 d = NULL;
2343 break;
2344 }
Just van Rossum46c97842003-02-25 21:42:15 +00002345#ifdef Py_USING_UNICODE
Just van Rossum96b1c902003-03-03 17:32:15 +00002346 if (arg_is_unicode) {
Just van Rossum46c97842003-02-25 21:42:15 +00002347 PyObject *w;
2348
2349 w = PyUnicode_FromEncodedObject(v,
Tim Peters11b23062003-04-23 02:39:17 +00002350 Py_FileSystemDefaultEncoding,
Just van Rossum46c97842003-02-25 21:42:15 +00002351 "strict");
Just van Rossum6a421832003-03-04 19:30:44 +00002352 if (w != NULL) {
2353 Py_DECREF(v);
2354 v = w;
2355 }
2356 else {
2357 /* fall back to the original byte string, as
2358 discussed in patch #683592 */
2359 PyErr_Clear();
Just van Rossum46c97842003-02-25 21:42:15 +00002360 }
Just van Rossum46c97842003-02-25 21:42:15 +00002361 }
2362#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00002363 if (PyList_Append(d, v) != 0) {
2364 Py_DECREF(v);
2365 Py_DECREF(d);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002366 d = NULL;
2367 break;
2368 }
Barry Warsaw53699e91996-12-10 23:23:01 +00002369 Py_DECREF(v);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002370 }
2371 closedir(dirp);
Just van Rossum2fe07fd2003-03-03 19:07:13 +00002372 PyMem_Free(name);
Guido van Rossum0ee42cd1991-04-08 21:01:03 +00002373
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002374 return d;
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002375
Tim Peters0bb44a42000-09-15 07:44:49 +00002376#endif /* which OS */
2377} /* end of posix_listdir */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002378
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00002379#ifdef MS_WINDOWS
Mark Hammondef8b6542001-05-13 08:04:26 +00002380/* A helper function for abspath on win32 */
2381static PyObject *
2382posix__getfullpathname(PyObject *self, PyObject *args)
2383{
Mark Dickinson3e4caeb2009-02-21 20:27:01 +00002384 /* assume encoded strings won't more than double no of chars */
Mark Hammondef8b6542001-05-13 08:04:26 +00002385 char inbuf[MAX_PATH*2];
2386 char *inbufp = inbuf;
Tim Peters67d70eb2006-03-01 04:35:45 +00002387 Py_ssize_t insize = sizeof(inbuf);
Mark Hammondef8b6542001-05-13 08:04:26 +00002388 char outbuf[MAX_PATH*2];
2389 char *temp;
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002390
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00002391 PyUnicodeObject *po;
2392 if (PyArg_ParseTuple(args, "U|:_getfullpathname", &po)) {
2393 Py_UNICODE *wpath = PyUnicode_AS_UNICODE(po);
2394 Py_UNICODE woutbuf[MAX_PATH*2], *woutbufp = woutbuf;
2395 Py_UNICODE *wtemp;
2396 DWORD result;
2397 PyObject *v;
2398 result = GetFullPathNameW(wpath,
2399 sizeof(woutbuf)/sizeof(woutbuf[0]),
2400 woutbuf, &wtemp);
2401 if (result > sizeof(woutbuf)/sizeof(woutbuf[0])) {
2402 woutbufp = malloc(result * sizeof(Py_UNICODE));
2403 if (!woutbufp)
2404 return PyErr_NoMemory();
2405 result = GetFullPathNameW(wpath, result, woutbufp, &wtemp);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002406 }
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00002407 if (result)
2408 v = PyUnicode_FromUnicode(woutbufp, wcslen(woutbufp));
2409 else
2410 v = win32_error_unicode("GetFullPathNameW", wpath);
2411 if (woutbufp != woutbuf)
2412 free(woutbufp);
2413 return v;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002414 }
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00002415 /* Drop the argument parsing error as narrow strings
2416 are also valid. */
2417 PyErr_Clear();
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002418
Tim Peters5aa91602002-01-30 05:46:57 +00002419 if (!PyArg_ParseTuple (args, "et#:_getfullpathname",
2420 Py_FileSystemDefaultEncoding, &inbufp,
Mark Hammondef8b6542001-05-13 08:04:26 +00002421 &insize))
2422 return NULL;
2423 if (!GetFullPathName(inbuf, sizeof(outbuf)/sizeof(outbuf[0]),
2424 outbuf, &temp))
2425 return win32_error("GetFullPathName", inbuf);
Martin v. Löwis969297f2004-06-15 18:49:58 +00002426 if (PyUnicode_Check(PyTuple_GetItem(args, 0))) {
2427 return PyUnicode_Decode(outbuf, strlen(outbuf),
2428 Py_FileSystemDefaultEncoding, NULL);
2429 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00002430 return PyString_FromString(outbuf);
Mark Hammondef8b6542001-05-13 08:04:26 +00002431} /* end of posix__getfullpathname */
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00002432#endif /* MS_WINDOWS */
Mark Hammondef8b6542001-05-13 08:04:26 +00002433
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002434PyDoc_STRVAR(posix_mkdir__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002435"mkdir(path [, mode=0777])\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002436Create a directory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002437
Barry Warsaw53699e91996-12-10 23:23:01 +00002438static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002439posix_mkdir(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002440{
Guido van Rossumb0824db1996-02-25 04:50:32 +00002441 int res;
Mark Hammondef8b6542001-05-13 08:04:26 +00002442 char *path = NULL;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002443 int mode = 0777;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002444
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002445#ifdef MS_WINDOWS
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00002446 PyUnicodeObject *po;
2447 if (PyArg_ParseTuple(args, "U|i:mkdir", &po, &mode)) {
2448 Py_BEGIN_ALLOW_THREADS
2449 /* PyUnicode_AS_UNICODE OK without thread lock as
2450 it is a simple dereference. */
2451 res = CreateDirectoryW(PyUnicode_AS_UNICODE(po), NULL);
2452 Py_END_ALLOW_THREADS
2453 if (!res)
2454 return win32_error_unicode("mkdir", PyUnicode_AS_UNICODE(po));
2455 Py_INCREF(Py_None);
2456 return Py_None;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002457 }
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00002458 /* Drop the argument parsing error as narrow strings
2459 are also valid. */
2460 PyErr_Clear();
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002461 if (!PyArg_ParseTuple(args, "et|i:mkdir",
2462 Py_FileSystemDefaultEncoding, &path, &mode))
2463 return NULL;
2464 Py_BEGIN_ALLOW_THREADS
2465 /* PyUnicode_AS_UNICODE OK without thread lock as
2466 it is a simple dereference. */
2467 res = CreateDirectoryA(path, NULL);
2468 Py_END_ALLOW_THREADS
2469 if (!res) {
2470 win32_error("mkdir", path);
2471 PyMem_Free(path);
2472 return NULL;
2473 }
2474 PyMem_Free(path);
2475 Py_INCREF(Py_None);
2476 return Py_None;
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002477#else /* MS_WINDOWS */
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002478
Tim Peters5aa91602002-01-30 05:46:57 +00002479 if (!PyArg_ParseTuple(args, "et|i:mkdir",
Mark Hammondef8b6542001-05-13 08:04:26 +00002480 Py_FileSystemDefaultEncoding, &path, &mode))
Guido van Rossumb0824db1996-02-25 04:50:32 +00002481 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00002482 Py_BEGIN_ALLOW_THREADS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002483#if ( defined(__WATCOMC__) || defined(PYCC_VACPP) ) && !defined(__QNX__)
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002484 res = mkdir(path);
2485#else
Guido van Rossumb0824db1996-02-25 04:50:32 +00002486 res = mkdir(path, mode);
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002487#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00002488 Py_END_ALLOW_THREADS
Guido van Rossumb0824db1996-02-25 04:50:32 +00002489 if (res < 0)
Mark Hammondef8b6542001-05-13 08:04:26 +00002490 return posix_error_with_allocated_filename(path);
2491 PyMem_Free(path);
Barry Warsaw53699e91996-12-10 23:23:01 +00002492 Py_INCREF(Py_None);
2493 return Py_None;
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002494#endif /* MS_WINDOWS */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002495}
2496
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002497
Neal Norwitz1818ed72006-03-26 00:29:48 +00002498/* sys/resource.h is needed for at least: wait3(), wait4(), broken nice. */
2499#if defined(HAVE_SYS_RESOURCE_H)
Thomas Wouterse38b2f12001-07-11 22:35:31 +00002500#include <sys/resource.h>
2501#endif
Thomas Wouterse38b2f12001-07-11 22:35:31 +00002502
Neal Norwitz1818ed72006-03-26 00:29:48 +00002503
2504#ifdef HAVE_NICE
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002505PyDoc_STRVAR(posix_nice__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002506"nice(inc) -> new_priority\n\n\
2507Decrease the priority of process by inc and return the new priority.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002508
Barry Warsaw53699e91996-12-10 23:23:01 +00002509static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002510posix_nice(PyObject *self, PyObject *args)
Guido van Rossum775f4da1993-01-09 17:18:52 +00002511{
2512 int increment, value;
2513
Fred Drake5ab8eaf1999-12-09 21:13:07 +00002514 if (!PyArg_ParseTuple(args, "i:nice", &increment))
Guido van Rossum775f4da1993-01-09 17:18:52 +00002515 return NULL;
Thomas Woutersc2c12dc2001-07-11 14:45:34 +00002516
2517 /* There are two flavours of 'nice': one that returns the new
2518 priority (as required by almost all standards out there) and the
Thomas Wouterse38b2f12001-07-11 22:35:31 +00002519 Linux/FreeBSD/BSDI one, which returns '0' on success and advices
2520 the use of getpriority() to get the new priority.
Tim Peters5aa91602002-01-30 05:46:57 +00002521
Thomas Woutersc2c12dc2001-07-11 14:45:34 +00002522 If we are of the nice family that returns the new priority, we
2523 need to clear errno before the call, and check if errno is filled
2524 before calling posix_error() on a returnvalue of -1, because the
2525 -1 may be the actual new priority! */
2526
2527 errno = 0;
Guido van Rossum775f4da1993-01-09 17:18:52 +00002528 value = nice(increment);
Thomas Wouterse38b2f12001-07-11 22:35:31 +00002529#if defined(HAVE_BROKEN_NICE) && defined(HAVE_GETPRIORITY)
Thomas Woutersc2c12dc2001-07-11 14:45:34 +00002530 if (value == 0)
2531 value = getpriority(PRIO_PROCESS, 0);
2532#endif
2533 if (value == -1 && errno != 0)
2534 /* either nice() or getpriority() returned an error */
Guido van Rossum775f4da1993-01-09 17:18:52 +00002535 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00002536 return PyInt_FromLong((long) value);
Guido van Rossum775f4da1993-01-09 17:18:52 +00002537}
Guido van Rossumb6775db1994-08-01 11:34:53 +00002538#endif /* HAVE_NICE */
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002539
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002540PyDoc_STRVAR(posix_rename__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002541"rename(old, new)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002542Rename a file or directory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002543
Barry Warsaw53699e91996-12-10 23:23:01 +00002544static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002545posix_rename(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002546{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002547#ifdef MS_WINDOWS
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002548 PyObject *o1, *o2;
2549 char *p1, *p2;
2550 BOOL result;
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00002551 if (!PyArg_ParseTuple(args, "OO:rename", &o1, &o2))
Hirokazu Yamamotoa0fdd722008-08-17 09:19:52 +00002552 goto error;
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00002553 if (!convert_to_unicode(&o1))
Hirokazu Yamamotoa0fdd722008-08-17 09:19:52 +00002554 goto error;
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00002555 if (!convert_to_unicode(&o2)) {
Hirokazu Yamamotoa0fdd722008-08-17 09:19:52 +00002556 Py_DECREF(o1);
2557 goto error;
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002558 }
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00002559 Py_BEGIN_ALLOW_THREADS
2560 result = MoveFileW(PyUnicode_AsUnicode(o1),
2561 PyUnicode_AsUnicode(o2));
2562 Py_END_ALLOW_THREADS
2563 Py_DECREF(o1);
2564 Py_DECREF(o2);
2565 if (!result)
2566 return win32_error("rename", NULL);
2567 Py_INCREF(Py_None);
2568 return Py_None;
2569error:
2570 PyErr_Clear();
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002571 if (!PyArg_ParseTuple(args, "ss:rename", &p1, &p2))
2572 return NULL;
2573 Py_BEGIN_ALLOW_THREADS
2574 result = MoveFileA(p1, p2);
2575 Py_END_ALLOW_THREADS
2576 if (!result)
2577 return win32_error("rename", NULL);
2578 Py_INCREF(Py_None);
2579 return Py_None;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002580#else
Martin v. Löwis4fc2bda2006-05-04 12:04:27 +00002581 return posix_2str(args, "etet:rename", rename);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002582#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002583}
2584
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002585
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002586PyDoc_STRVAR(posix_rmdir__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002587"rmdir(path)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002588Remove a directory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002589
Barry Warsaw53699e91996-12-10 23:23:01 +00002590static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002591posix_rmdir(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002592{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002593#ifdef MS_WINDOWS
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002594 return win32_1str(args, "rmdir", "s:rmdir", RemoveDirectoryA, "U:rmdir", RemoveDirectoryW);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002595#else
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002596 return posix_1str(args, "et:rmdir", rmdir);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002597#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002598}
2599
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002600
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002601PyDoc_STRVAR(posix_stat__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002602"stat(path) -> stat result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002603Perform a stat system call on the given path.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002604
Barry Warsaw53699e91996-12-10 23:23:01 +00002605static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002606posix_stat(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002607{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002608#ifdef MS_WINDOWS
Martin v. Löwis14694662006-02-03 12:54:16 +00002609 return posix_do_stat(self, args, "et:stat", STAT, "U:stat", win32_wstat);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002610#else
2611 return posix_do_stat(self, args, "et:stat", STAT, NULL, NULL);
2612#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002613}
2614
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002615
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002616#ifdef HAVE_SYSTEM
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002617PyDoc_STRVAR(posix_system__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002618"system(command) -> exit_status\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002619Execute the command (a string) in a subshell.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002620
Barry Warsaw53699e91996-12-10 23:23:01 +00002621static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002622posix_system(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002623{
Guido van Rossumef0a00e1992-01-27 16:51:30 +00002624 char *command;
Guido van Rossumff4949e1992-08-05 19:58:53 +00002625 long sts;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00002626 if (!PyArg_ParseTuple(args, "s:system", &command))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002627 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00002628 Py_BEGIN_ALLOW_THREADS
Guido van Rossumef0a00e1992-01-27 16:51:30 +00002629 sts = system(command);
Barry Warsaw53699e91996-12-10 23:23:01 +00002630 Py_END_ALLOW_THREADS
2631 return PyInt_FromLong(sts);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002632}
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002633#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002634
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002635
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002636PyDoc_STRVAR(posix_umask__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002637"umask(new_mask) -> old_mask\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002638Set the current numeric umask and return the previous umask.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002639
Barry Warsaw53699e91996-12-10 23:23:01 +00002640static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002641posix_umask(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002642{
2643 int i;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00002644 if (!PyArg_ParseTuple(args, "i:umask", &i))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002645 return NULL;
Fred Drake0368bc42001-07-19 20:48:32 +00002646 i = (int)umask(i);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002647 if (i < 0)
2648 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00002649 return PyInt_FromLong((long)i);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002650}
2651
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002652
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002653PyDoc_STRVAR(posix_unlink__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002654"unlink(path)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002655Remove a file (same as remove(path)).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002656
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002657PyDoc_STRVAR(posix_remove__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002658"remove(path)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002659Remove a file (same as unlink(path)).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002660
Barry Warsaw53699e91996-12-10 23:23:01 +00002661static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002662posix_unlink(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002663{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002664#ifdef MS_WINDOWS
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002665 return win32_1str(args, "remove", "s:remove", DeleteFileA, "U:remove", DeleteFileW);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002666#else
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002667 return posix_1str(args, "et:remove", unlink);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002668#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002669}
2670
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002671
Guido van Rossumb6775db1994-08-01 11:34:53 +00002672#ifdef HAVE_UNAME
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002673PyDoc_STRVAR(posix_uname__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002674"uname() -> (sysname, nodename, release, version, machine)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002675Return a tuple identifying the current operating system.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002676
Barry Warsaw53699e91996-12-10 23:23:01 +00002677static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00002678posix_uname(PyObject *self, PyObject *noargs)
Guido van Rossumc39de5f1992-02-05 11:15:54 +00002679{
Guido van Rossumc39de5f1992-02-05 11:15:54 +00002680 struct utsname u;
Guido van Rossumff4949e1992-08-05 19:58:53 +00002681 int res;
Neal Norwitze241ce82003-02-17 18:17:05 +00002682
Barry Warsaw53699e91996-12-10 23:23:01 +00002683 Py_BEGIN_ALLOW_THREADS
Guido van Rossumff4949e1992-08-05 19:58:53 +00002684 res = uname(&u);
Barry Warsaw53699e91996-12-10 23:23:01 +00002685 Py_END_ALLOW_THREADS
Guido van Rossumff4949e1992-08-05 19:58:53 +00002686 if (res < 0)
Guido van Rossumc39de5f1992-02-05 11:15:54 +00002687 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00002688 return Py_BuildValue("(sssss)",
Barry Warsaw43d68b81996-12-19 22:10:44 +00002689 u.sysname,
2690 u.nodename,
2691 u.release,
2692 u.version,
2693 u.machine);
Guido van Rossumc39de5f1992-02-05 11:15:54 +00002694}
Guido van Rossumb6775db1994-08-01 11:34:53 +00002695#endif /* HAVE_UNAME */
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002696
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002697static int
2698extract_time(PyObject *t, long* sec, long* usec)
2699{
2700 long intval;
2701 if (PyFloat_Check(t)) {
2702 double tval = PyFloat_AsDouble(t);
Christian Heimese93237d2007-12-19 02:37:44 +00002703 PyObject *intobj = Py_TYPE(t)->tp_as_number->nb_int(t);
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002704 if (!intobj)
2705 return -1;
2706 intval = PyInt_AsLong(intobj);
2707 Py_DECREF(intobj);
Michael W. Hudsonb8963812005-07-05 15:21:58 +00002708 if (intval == -1 && PyErr_Occurred())
2709 return -1;
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002710 *sec = intval;
Tim Peters96940cf2002-09-10 15:37:28 +00002711 *usec = (long)((tval - intval) * 1e6); /* can't exceed 1000000 */
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002712 if (*usec < 0)
2713 /* If rounding gave us a negative number,
2714 truncate. */
2715 *usec = 0;
2716 return 0;
2717 }
2718 intval = PyInt_AsLong(t);
2719 if (intval == -1 && PyErr_Occurred())
2720 return -1;
2721 *sec = intval;
2722 *usec = 0;
Martin v. Löwis076b2092002-09-10 15:04:41 +00002723 return 0;
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002724}
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002725
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002726PyDoc_STRVAR(posix_utime__doc__,
Georg Brandl9e5b5e42006-05-17 14:18:20 +00002727"utime(path, (atime, mtime))\n\
Fred Drakef7ce04d2002-06-20 18:31:21 +00002728utime(path, None)\n\n\
Barry Warsaw3cef8562000-05-01 16:17:24 +00002729Set the access and modified time of the file to the given values. If the\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002730second form is used, set the access and modified times to the current time.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002731
Barry Warsaw53699e91996-12-10 23:23:01 +00002732static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002733posix_utime(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002734{
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002735#ifdef MS_WINDOWS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002736 PyObject *arg;
2737 PyUnicodeObject *obwpath;
2738 wchar_t *wpath = NULL;
2739 char *apath = NULL;
2740 HANDLE hFile;
2741 long atimesec, mtimesec, ausec, musec;
2742 FILETIME atime, mtime;
2743 PyObject *result = NULL;
2744
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00002745 if (PyArg_ParseTuple(args, "UO|:utime", &obwpath, &arg)) {
2746 wpath = PyUnicode_AS_UNICODE(obwpath);
2747 Py_BEGIN_ALLOW_THREADS
2748 hFile = CreateFileW(wpath, FILE_WRITE_ATTRIBUTES, 0,
2749 NULL, OPEN_EXISTING,
2750 FILE_FLAG_BACKUP_SEMANTICS, NULL);
2751 Py_END_ALLOW_THREADS
2752 if (hFile == INVALID_HANDLE_VALUE)
2753 return win32_error_unicode("utime", wpath);
2754 } else
2755 /* Drop the argument parsing error as narrow strings
2756 are also valid. */
2757 PyErr_Clear();
2758
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002759 if (!wpath) {
2760 if (!PyArg_ParseTuple(args, "etO:utime",
2761 Py_FileSystemDefaultEncoding, &apath, &arg))
2762 return NULL;
2763 Py_BEGIN_ALLOW_THREADS
2764 hFile = CreateFileA(apath, FILE_WRITE_ATTRIBUTES, 0,
Martin v. Löwis18aaa562006-10-15 08:43:33 +00002765 NULL, OPEN_EXISTING,
2766 FILE_FLAG_BACKUP_SEMANTICS, NULL);
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002767 Py_END_ALLOW_THREADS
2768 if (hFile == INVALID_HANDLE_VALUE) {
2769 win32_error("utime", apath);
2770 PyMem_Free(apath);
2771 return NULL;
2772 }
2773 PyMem_Free(apath);
2774 }
2775
2776 if (arg == Py_None) {
2777 SYSTEMTIME now;
2778 GetSystemTime(&now);
2779 if (!SystemTimeToFileTime(&now, &mtime) ||
2780 !SystemTimeToFileTime(&now, &atime)) {
2781 win32_error("utime", NULL);
2782 goto done;
2783 }
2784 }
2785 else if (!PyTuple_Check(arg) || PyTuple_Size(arg) != 2) {
2786 PyErr_SetString(PyExc_TypeError,
2787 "utime() arg 2 must be a tuple (atime, mtime)");
2788 goto done;
2789 }
2790 else {
2791 if (extract_time(PyTuple_GET_ITEM(arg, 0),
2792 &atimesec, &ausec) == -1)
2793 goto done;
Martin v. Löwisf43893a2006-10-09 20:44:25 +00002794 time_t_to_FILE_TIME(atimesec, 1000*ausec, &atime);
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002795 if (extract_time(PyTuple_GET_ITEM(arg, 1),
2796 &mtimesec, &musec) == -1)
2797 goto done;
Martin v. Löwisf43893a2006-10-09 20:44:25 +00002798 time_t_to_FILE_TIME(mtimesec, 1000*musec, &mtime);
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002799 }
2800 if (!SetFileTime(hFile, NULL, &atime, &mtime)) {
2801 /* Avoid putting the file name into the error here,
2802 as that may confuse the user into believing that
2803 something is wrong with the file, when it also
2804 could be the time stamp that gives a problem. */
2805 win32_error("utime", NULL);
2806 }
2807 Py_INCREF(Py_None);
2808 result = Py_None;
2809done:
2810 CloseHandle(hFile);
2811 return result;
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002812#else /* MS_WINDOWS */
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002813
Neal Norwitz2adf2102004-06-09 01:46:02 +00002814 char *path = NULL;
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002815 long atime, mtime, ausec, musec;
Guido van Rossumff4949e1992-08-05 19:58:53 +00002816 int res;
Barry Warsaw3cef8562000-05-01 16:17:24 +00002817 PyObject* arg;
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002818
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002819#if defined(HAVE_UTIMES)
2820 struct timeval buf[2];
2821#define ATIME buf[0].tv_sec
2822#define MTIME buf[1].tv_sec
2823#elif defined(HAVE_UTIME_H)
Guido van Rossum6d8841c1997-08-14 19:57:39 +00002824/* XXX should define struct utimbuf instead, above */
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002825 struct utimbuf buf;
2826#define ATIME buf.actime
2827#define MTIME buf.modtime
2828#define UTIME_ARG &buf
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002829#else /* HAVE_UTIMES */
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002830 time_t buf[2];
2831#define ATIME buf[0]
2832#define MTIME buf[1]
2833#define UTIME_ARG buf
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002834#endif /* HAVE_UTIMES */
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002835
Mark Hammond817c9292003-12-03 01:22:38 +00002836
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002837 if (!PyArg_ParseTuple(args, "etO:utime",
Hye-Shik Chang2b2c9732004-01-04 13:54:25 +00002838 Py_FileSystemDefaultEncoding, &path, &arg))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002839 return NULL;
Barry Warsaw3cef8562000-05-01 16:17:24 +00002840 if (arg == Py_None) {
2841 /* optional time values not given */
2842 Py_BEGIN_ALLOW_THREADS
2843 res = utime(path, NULL);
2844 Py_END_ALLOW_THREADS
2845 }
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002846 else if (!PyTuple_Check(arg) || PyTuple_Size(arg) != 2) {
Barry Warsaw3cef8562000-05-01 16:17:24 +00002847 PyErr_SetString(PyExc_TypeError,
Fred Drake661ea262000-10-24 19:57:45 +00002848 "utime() arg 2 must be a tuple (atime, mtime)");
Neal Norwitz96652712004-06-06 20:40:27 +00002849 PyMem_Free(path);
Barry Warsaw3cef8562000-05-01 16:17:24 +00002850 return NULL;
2851 }
2852 else {
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002853 if (extract_time(PyTuple_GET_ITEM(arg, 0),
Neal Norwitz96652712004-06-06 20:40:27 +00002854 &atime, &ausec) == -1) {
2855 PyMem_Free(path);
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002856 return NULL;
Neal Norwitz96652712004-06-06 20:40:27 +00002857 }
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002858 if (extract_time(PyTuple_GET_ITEM(arg, 1),
Neal Norwitz96652712004-06-06 20:40:27 +00002859 &mtime, &musec) == -1) {
2860 PyMem_Free(path);
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002861 return NULL;
Neal Norwitz96652712004-06-06 20:40:27 +00002862 }
Barry Warsaw3cef8562000-05-01 16:17:24 +00002863 ATIME = atime;
2864 MTIME = mtime;
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002865#ifdef HAVE_UTIMES
2866 buf[0].tv_usec = ausec;
2867 buf[1].tv_usec = musec;
2868 Py_BEGIN_ALLOW_THREADS
2869 res = utimes(path, buf);
2870 Py_END_ALLOW_THREADS
2871#else
Barry Warsaw3cef8562000-05-01 16:17:24 +00002872 Py_BEGIN_ALLOW_THREADS
2873 res = utime(path, UTIME_ARG);
2874 Py_END_ALLOW_THREADS
Mark Hammond817c9292003-12-03 01:22:38 +00002875#endif /* HAVE_UTIMES */
Barry Warsaw3cef8562000-05-01 16:17:24 +00002876 }
Mark Hammond2d5914b2004-05-04 08:10:37 +00002877 if (res < 0) {
Neal Norwitz96652712004-06-06 20:40:27 +00002878 return posix_error_with_allocated_filename(path);
Mark Hammond2d5914b2004-05-04 08:10:37 +00002879 }
Neal Norwitz96652712004-06-06 20:40:27 +00002880 PyMem_Free(path);
Barry Warsaw53699e91996-12-10 23:23:01 +00002881 Py_INCREF(Py_None);
2882 return Py_None;
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002883#undef UTIME_ARG
2884#undef ATIME
2885#undef MTIME
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002886#endif /* MS_WINDOWS */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002887}
2888
Guido van Rossum85e3b011991-06-03 12:42:10 +00002889
Guido van Rossum3b066191991-06-04 19:40:25 +00002890/* Process operations */
Guido van Rossum85e3b011991-06-03 12:42:10 +00002891
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002892PyDoc_STRVAR(posix__exit__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002893"_exit(status)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002894Exit to the system with specified status, without normal exit processing.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002895
Barry Warsaw53699e91996-12-10 23:23:01 +00002896static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002897posix__exit(PyObject *self, PyObject *args)
Guido van Rossum85e3b011991-06-03 12:42:10 +00002898{
2899 int sts;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00002900 if (!PyArg_ParseTuple(args, "i:_exit", &sts))
Guido van Rossum85e3b011991-06-03 12:42:10 +00002901 return NULL;
2902 _exit(sts);
Guido van Rossuma376cc51996-12-05 23:43:35 +00002903 return NULL; /* Make gcc -Wall happy */
Guido van Rossum85e3b011991-06-03 12:42:10 +00002904}
2905
Martin v. Löwis114619e2002-10-07 06:44:21 +00002906#if defined(HAVE_EXECV) || defined(HAVE_SPAWNV)
2907static void
Martin v. Löwis725507b2006-03-07 12:08:51 +00002908free_string_array(char **array, Py_ssize_t count)
Martin v. Löwis114619e2002-10-07 06:44:21 +00002909{
Martin v. Löwis725507b2006-03-07 12:08:51 +00002910 Py_ssize_t i;
Martin v. Löwis114619e2002-10-07 06:44:21 +00002911 for (i = 0; i < count; i++)
2912 PyMem_Free(array[i]);
2913 PyMem_DEL(array);
2914}
2915#endif
2916
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002917
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002918#ifdef HAVE_EXECV
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002919PyDoc_STRVAR(posix_execv__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002920"execv(path, args)\n\n\
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002921Execute an executable path with arguments, replacing current process.\n\
2922\n\
2923 path: path of executable file\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002924 args: tuple or list of strings");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002925
Barry Warsaw53699e91996-12-10 23:23:01 +00002926static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002927posix_execv(PyObject *self, PyObject *args)
Guido van Rossum85e3b011991-06-03 12:42:10 +00002928{
Guido van Rossumef0a00e1992-01-27 16:51:30 +00002929 char *path;
Barry Warsaw53699e91996-12-10 23:23:01 +00002930 PyObject *argv;
Guido van Rossum85e3b011991-06-03 12:42:10 +00002931 char **argvlist;
Martin v. Löwis725507b2006-03-07 12:08:51 +00002932 Py_ssize_t i, argc;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002933 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Guido van Rossum85e3b011991-06-03 12:42:10 +00002934
Guido van Rossum89b33251993-10-22 14:26:06 +00002935 /* execv has two arguments: (path, argv), where
Guido van Rossum85e3b011991-06-03 12:42:10 +00002936 argv is a list or tuple of strings. */
2937
Martin v. Löwis114619e2002-10-07 06:44:21 +00002938 if (!PyArg_ParseTuple(args, "etO:execv",
2939 Py_FileSystemDefaultEncoding,
2940 &path, &argv))
Guido van Rossum85e3b011991-06-03 12:42:10 +00002941 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00002942 if (PyList_Check(argv)) {
2943 argc = PyList_Size(argv);
2944 getitem = PyList_GetItem;
Guido van Rossum85e3b011991-06-03 12:42:10 +00002945 }
Barry Warsaw53699e91996-12-10 23:23:01 +00002946 else if (PyTuple_Check(argv)) {
2947 argc = PyTuple_Size(argv);
2948 getitem = PyTuple_GetItem;
Guido van Rossum85e3b011991-06-03 12:42:10 +00002949 }
Guido van Rossumef0a00e1992-01-27 16:51:30 +00002950 else {
Fred Drake661ea262000-10-24 19:57:45 +00002951 PyErr_SetString(PyExc_TypeError, "execv() arg 2 must be a tuple or list");
Martin v. Löwis114619e2002-10-07 06:44:21 +00002952 PyMem_Free(path);
Guido van Rossum50422b42000-04-26 20:34:28 +00002953 return NULL;
2954 }
2955
Barry Warsaw53699e91996-12-10 23:23:01 +00002956 argvlist = PyMem_NEW(char *, argc+1);
Martin v. Löwis114619e2002-10-07 06:44:21 +00002957 if (argvlist == NULL) {
2958 PyMem_Free(path);
Neal Norwitzec74f2f2003-02-11 23:05:40 +00002959 return PyErr_NoMemory();
Martin v. Löwis114619e2002-10-07 06:44:21 +00002960 }
Guido van Rossum85e3b011991-06-03 12:42:10 +00002961 for (i = 0; i < argc; i++) {
Martin v. Löwis114619e2002-10-07 06:44:21 +00002962 if (!PyArg_Parse((*getitem)(argv, i), "et",
2963 Py_FileSystemDefaultEncoding,
2964 &argvlist[i])) {
2965 free_string_array(argvlist, i);
Tim Peters5aa91602002-01-30 05:46:57 +00002966 PyErr_SetString(PyExc_TypeError,
Fred Drake661ea262000-10-24 19:57:45 +00002967 "execv() arg 2 must contain only strings");
Martin v. Löwis114619e2002-10-07 06:44:21 +00002968 PyMem_Free(path);
Guido van Rossum50422b42000-04-26 20:34:28 +00002969 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00002970
Guido van Rossum85e3b011991-06-03 12:42:10 +00002971 }
Guido van Rossum85e3b011991-06-03 12:42:10 +00002972 }
2973 argvlist[argc] = NULL;
2974
Guido van Rossumef0a00e1992-01-27 16:51:30 +00002975 execv(path, argvlist);
Guido van Rossumb6775db1994-08-01 11:34:53 +00002976
Guido van Rossum85e3b011991-06-03 12:42:10 +00002977 /* If we get here it's definitely an error */
2978
Martin v. Löwis114619e2002-10-07 06:44:21 +00002979 free_string_array(argvlist, argc);
2980 PyMem_Free(path);
Guido van Rossum85e3b011991-06-03 12:42:10 +00002981 return posix_error();
2982}
2983
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002984
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002985PyDoc_STRVAR(posix_execve__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002986"execve(path, args, env)\n\n\
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002987Execute a path with arguments and environment, replacing current process.\n\
2988\n\
2989 path: path of executable file\n\
2990 args: tuple or list of arguments\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002991 env: dictionary of strings mapping to strings");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002992
Barry Warsaw53699e91996-12-10 23:23:01 +00002993static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002994posix_execve(PyObject *self, PyObject *args)
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00002995{
2996 char *path;
Barry Warsaw53699e91996-12-10 23:23:01 +00002997 PyObject *argv, *env;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00002998 char **argvlist;
2999 char **envlist;
Barry Warsaw5ed19dc1997-01-29 15:08:24 +00003000 PyObject *key, *val, *keys=NULL, *vals=NULL;
Martin v. Löwis725507b2006-03-07 12:08:51 +00003001 Py_ssize_t i, pos, argc, envc;
Martin v. Löwis18e16552006-02-15 17:27:45 +00003002 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Martin v. Löwis26fd9602006-04-22 11:15:41 +00003003 Py_ssize_t lastarg = 0;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003004
3005 /* execve has three arguments: (path, argv, env), where
3006 argv is a list or tuple of strings and env is a dictionary
3007 like posix.environ. */
3008
Martin v. Löwis114619e2002-10-07 06:44:21 +00003009 if (!PyArg_ParseTuple(args, "etOO:execve",
3010 Py_FileSystemDefaultEncoding,
3011 &path, &argv, &env))
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003012 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00003013 if (PyList_Check(argv)) {
3014 argc = PyList_Size(argv);
3015 getitem = PyList_GetItem;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003016 }
Barry Warsaw53699e91996-12-10 23:23:01 +00003017 else if (PyTuple_Check(argv)) {
3018 argc = PyTuple_Size(argv);
3019 getitem = PyTuple_GetItem;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003020 }
3021 else {
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003022 PyErr_SetString(PyExc_TypeError,
3023 "execve() arg 2 must be a tuple or list");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003024 goto fail_0;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003025 }
Barry Warsaw5ed19dc1997-01-29 15:08:24 +00003026 if (!PyMapping_Check(env)) {
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003027 PyErr_SetString(PyExc_TypeError,
3028 "execve() arg 3 must be a mapping object");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003029 goto fail_0;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003030 }
3031
Barry Warsaw53699e91996-12-10 23:23:01 +00003032 argvlist = PyMem_NEW(char *, argc+1);
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003033 if (argvlist == NULL) {
Barry Warsaw53699e91996-12-10 23:23:01 +00003034 PyErr_NoMemory();
Martin v. Löwis114619e2002-10-07 06:44:21 +00003035 goto fail_0;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003036 }
3037 for (i = 0; i < argc; i++) {
Barry Warsaw53699e91996-12-10 23:23:01 +00003038 if (!PyArg_Parse((*getitem)(argv, i),
Martin v. Löwis114619e2002-10-07 06:44:21 +00003039 "et;execve() arg 2 must contain only strings",
Guido van Rossum1e700d22002-10-16 16:52:11 +00003040 Py_FileSystemDefaultEncoding,
Barry Warsaw43d68b81996-12-19 22:10:44 +00003041 &argvlist[i]))
3042 {
Martin v. Löwis114619e2002-10-07 06:44:21 +00003043 lastarg = i;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003044 goto fail_1;
3045 }
3046 }
Martin v. Löwis114619e2002-10-07 06:44:21 +00003047 lastarg = argc;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003048 argvlist[argc] = NULL;
3049
Jeremy Hylton03657cf2000-07-12 13:05:33 +00003050 i = PyMapping_Size(env);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003051 if (i < 0)
3052 goto fail_1;
Barry Warsaw53699e91996-12-10 23:23:01 +00003053 envlist = PyMem_NEW(char *, i + 1);
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003054 if (envlist == NULL) {
Barry Warsaw53699e91996-12-10 23:23:01 +00003055 PyErr_NoMemory();
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003056 goto fail_1;
3057 }
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003058 envc = 0;
Barry Warsaw5ed19dc1997-01-29 15:08:24 +00003059 keys = PyMapping_Keys(env);
3060 vals = PyMapping_Values(env);
3061 if (!keys || !vals)
3062 goto fail_2;
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003063 if (!PyList_Check(keys) || !PyList_Check(vals)) {
3064 PyErr_SetString(PyExc_TypeError,
3065 "execve(): env.keys() or env.values() is not a list");
3066 goto fail_2;
3067 }
Tim Peters5aa91602002-01-30 05:46:57 +00003068
Barry Warsaw5ed19dc1997-01-29 15:08:24 +00003069 for (pos = 0; pos < i; pos++) {
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003070 char *p, *k, *v;
Tim Petersc8996f52001-12-03 20:41:00 +00003071 size_t len;
Barry Warsaw5ed19dc1997-01-29 15:08:24 +00003072
3073 key = PyList_GetItem(keys, pos);
3074 val = PyList_GetItem(vals, pos);
3075 if (!key || !val)
3076 goto fail_2;
Tim Peters5aa91602002-01-30 05:46:57 +00003077
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003078 if (!PyArg_Parse(
3079 key,
3080 "s;execve() arg 3 contains a non-string key",
3081 &k) ||
3082 !PyArg_Parse(
3083 val,
3084 "s;execve() arg 3 contains a non-string value",
3085 &v))
Barry Warsaw43d68b81996-12-19 22:10:44 +00003086 {
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003087 goto fail_2;
3088 }
Guido van Rossumd48f2521997-12-05 22:19:34 +00003089
3090#if defined(PYOS_OS2)
3091 /* Omit Pseudo-Env Vars that Would Confuse Programs if Passed On */
3092 if (stricmp(k, "BEGINLIBPATH") != 0 && stricmp(k, "ENDLIBPATH") != 0) {
3093#endif
Gregory P. Smithdd96db62008-06-09 04:58:54 +00003094 len = PyString_Size(key) + PyString_Size(val) + 2;
Tim Petersc8996f52001-12-03 20:41:00 +00003095 p = PyMem_NEW(char, len);
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003096 if (p == NULL) {
Barry Warsaw53699e91996-12-10 23:23:01 +00003097 PyErr_NoMemory();
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003098 goto fail_2;
3099 }
Tim Petersc8996f52001-12-03 20:41:00 +00003100 PyOS_snprintf(p, len, "%s=%s", k, v);
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003101 envlist[envc++] = p;
Guido van Rossumd48f2521997-12-05 22:19:34 +00003102#if defined(PYOS_OS2)
3103 }
3104#endif
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003105 }
3106 envlist[envc] = 0;
3107
3108 execve(path, argvlist, envlist);
Tim Peters5aa91602002-01-30 05:46:57 +00003109
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003110 /* If we get here it's definitely an error */
3111
3112 (void) posix_error();
3113
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003114 fail_2:
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003115 while (--envc >= 0)
Barry Warsaw53699e91996-12-10 23:23:01 +00003116 PyMem_DEL(envlist[envc]);
3117 PyMem_DEL(envlist);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003118 fail_1:
3119 free_string_array(argvlist, lastarg);
Barry Warsaw5ed19dc1997-01-29 15:08:24 +00003120 Py_XDECREF(vals);
3121 Py_XDECREF(keys);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003122 fail_0:
Martin v. Löwis114619e2002-10-07 06:44:21 +00003123 PyMem_Free(path);
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003124 return NULL;
3125}
Guido van Rossuma4916fa1996-05-23 22:58:55 +00003126#endif /* HAVE_EXECV */
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003127
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003128
Guido van Rossuma1065681999-01-25 23:20:23 +00003129#ifdef HAVE_SPAWNV
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003130PyDoc_STRVAR(posix_spawnv__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003131"spawnv(mode, path, args)\n\n\
Tim Peters25059d32001-12-07 20:35:43 +00003132Execute the program 'path' in a new process.\n\
Guido van Rossuma1065681999-01-25 23:20:23 +00003133\n\
Fred Drakea6dff3e1999-02-01 22:24:40 +00003134 mode: mode of process creation\n\
Guido van Rossuma1065681999-01-25 23:20:23 +00003135 path: path of executable file\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003136 args: tuple or list of strings");
Guido van Rossuma1065681999-01-25 23:20:23 +00003137
3138static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00003139posix_spawnv(PyObject *self, PyObject *args)
Guido van Rossuma1065681999-01-25 23:20:23 +00003140{
3141 char *path;
3142 PyObject *argv;
3143 char **argvlist;
Martin v. Löwis26fd9602006-04-22 11:15:41 +00003144 int mode, i;
3145 Py_ssize_t argc;
Tim Peters79248aa2001-08-29 21:37:10 +00003146 Py_intptr_t spawnval;
Martin v. Löwis18e16552006-02-15 17:27:45 +00003147 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Guido van Rossuma1065681999-01-25 23:20:23 +00003148
3149 /* spawnv has three arguments: (mode, path, argv), where
3150 argv is a list or tuple of strings. */
3151
Martin v. Löwis114619e2002-10-07 06:44:21 +00003152 if (!PyArg_ParseTuple(args, "ietO:spawnv", &mode,
3153 Py_FileSystemDefaultEncoding,
3154 &path, &argv))
Guido van Rossuma1065681999-01-25 23:20:23 +00003155 return NULL;
3156 if (PyList_Check(argv)) {
3157 argc = PyList_Size(argv);
3158 getitem = PyList_GetItem;
3159 }
3160 else if (PyTuple_Check(argv)) {
3161 argc = PyTuple_Size(argv);
3162 getitem = PyTuple_GetItem;
3163 }
3164 else {
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003165 PyErr_SetString(PyExc_TypeError,
3166 "spawnv() arg 2 must be a tuple or list");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003167 PyMem_Free(path);
Guido van Rossuma1065681999-01-25 23:20:23 +00003168 return NULL;
3169 }
3170
3171 argvlist = PyMem_NEW(char *, argc+1);
Martin v. Löwis114619e2002-10-07 06:44:21 +00003172 if (argvlist == NULL) {
3173 PyMem_Free(path);
Neal Norwitzec74f2f2003-02-11 23:05:40 +00003174 return PyErr_NoMemory();
Martin v. Löwis114619e2002-10-07 06:44:21 +00003175 }
Guido van Rossuma1065681999-01-25 23:20:23 +00003176 for (i = 0; i < argc; i++) {
Martin v. Löwis114619e2002-10-07 06:44:21 +00003177 if (!PyArg_Parse((*getitem)(argv, i), "et",
3178 Py_FileSystemDefaultEncoding,
3179 &argvlist[i])) {
3180 free_string_array(argvlist, i);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003181 PyErr_SetString(
3182 PyExc_TypeError,
3183 "spawnv() arg 2 must contain only strings");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003184 PyMem_Free(path);
Fred Drake137507e2000-06-01 02:02:46 +00003185 return NULL;
Guido van Rossuma1065681999-01-25 23:20:23 +00003186 }
3187 }
3188 argvlist[argc] = NULL;
3189
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00003190#if defined(PYOS_OS2) && defined(PYCC_GCC)
3191 Py_BEGIN_ALLOW_THREADS
3192 spawnval = spawnv(mode, path, argvlist);
3193 Py_END_ALLOW_THREADS
3194#else
Guido van Rossum246bc171999-02-01 23:54:31 +00003195 if (mode == _OLD_P_OVERLAY)
3196 mode = _P_OVERLAY;
Tim Peters5aa91602002-01-30 05:46:57 +00003197
Tim Peters25059d32001-12-07 20:35:43 +00003198 Py_BEGIN_ALLOW_THREADS
Fred Drake699f3522000-06-29 21:12:41 +00003199 spawnval = _spawnv(mode, path, argvlist);
Tim Peters25059d32001-12-07 20:35:43 +00003200 Py_END_ALLOW_THREADS
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00003201#endif
Tim Peters5aa91602002-01-30 05:46:57 +00003202
Martin v. Löwis114619e2002-10-07 06:44:21 +00003203 free_string_array(argvlist, argc);
3204 PyMem_Free(path);
Guido van Rossuma1065681999-01-25 23:20:23 +00003205
Fred Drake699f3522000-06-29 21:12:41 +00003206 if (spawnval == -1)
Guido van Rossuma1065681999-01-25 23:20:23 +00003207 return posix_error();
3208 else
Fredrik Lundhe25cfd82000-07-09 13:10:40 +00003209#if SIZEOF_LONG == SIZEOF_VOID_P
3210 return Py_BuildValue("l", (long) spawnval);
Fred Drake699f3522000-06-29 21:12:41 +00003211#else
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00003212 return Py_BuildValue("L", (PY_LONG_LONG) spawnval);
Fred Drake699f3522000-06-29 21:12:41 +00003213#endif
Guido van Rossuma1065681999-01-25 23:20:23 +00003214}
3215
3216
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003217PyDoc_STRVAR(posix_spawnve__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003218"spawnve(mode, path, args, env)\n\n\
Tim Peters25059d32001-12-07 20:35:43 +00003219Execute the program 'path' in a new process.\n\
Guido van Rossuma1065681999-01-25 23:20:23 +00003220\n\
Fred Drakea6dff3e1999-02-01 22:24:40 +00003221 mode: mode of process creation\n\
Guido van Rossuma1065681999-01-25 23:20:23 +00003222 path: path of executable file\n\
3223 args: tuple or list of arguments\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003224 env: dictionary of strings mapping to strings");
Guido van Rossuma1065681999-01-25 23:20:23 +00003225
3226static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00003227posix_spawnve(PyObject *self, PyObject *args)
Guido van Rossuma1065681999-01-25 23:20:23 +00003228{
3229 char *path;
3230 PyObject *argv, *env;
3231 char **argvlist;
3232 char **envlist;
3233 PyObject *key, *val, *keys=NULL, *vals=NULL, *res=NULL;
Martin v. Löwis26fd9602006-04-22 11:15:41 +00003234 int mode, pos, envc;
3235 Py_ssize_t argc, i;
Tim Peters79248aa2001-08-29 21:37:10 +00003236 Py_intptr_t spawnval;
Martin v. Löwis18e16552006-02-15 17:27:45 +00003237 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Martin v. Löwis26fd9602006-04-22 11:15:41 +00003238 Py_ssize_t lastarg = 0;
Guido van Rossuma1065681999-01-25 23:20:23 +00003239
3240 /* spawnve has four arguments: (mode, path, argv, env), where
3241 argv is a list or tuple of strings and env is a dictionary
3242 like posix.environ. */
3243
Martin v. Löwis114619e2002-10-07 06:44:21 +00003244 if (!PyArg_ParseTuple(args, "ietOO:spawnve", &mode,
3245 Py_FileSystemDefaultEncoding,
3246 &path, &argv, &env))
Guido van Rossuma1065681999-01-25 23:20:23 +00003247 return NULL;
3248 if (PyList_Check(argv)) {
3249 argc = PyList_Size(argv);
3250 getitem = PyList_GetItem;
3251 }
3252 else if (PyTuple_Check(argv)) {
3253 argc = PyTuple_Size(argv);
3254 getitem = PyTuple_GetItem;
3255 }
3256 else {
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003257 PyErr_SetString(PyExc_TypeError,
3258 "spawnve() arg 2 must be a tuple or list");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003259 goto fail_0;
Guido van Rossuma1065681999-01-25 23:20:23 +00003260 }
3261 if (!PyMapping_Check(env)) {
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003262 PyErr_SetString(PyExc_TypeError,
3263 "spawnve() arg 3 must be a mapping object");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003264 goto fail_0;
Guido van Rossuma1065681999-01-25 23:20:23 +00003265 }
3266
3267 argvlist = PyMem_NEW(char *, argc+1);
3268 if (argvlist == NULL) {
3269 PyErr_NoMemory();
Martin v. Löwis114619e2002-10-07 06:44:21 +00003270 goto fail_0;
Guido van Rossuma1065681999-01-25 23:20:23 +00003271 }
3272 for (i = 0; i < argc; i++) {
3273 if (!PyArg_Parse((*getitem)(argv, i),
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003274 "et;spawnve() arg 2 must contain only strings",
Martin v. Löwis114619e2002-10-07 06:44:21 +00003275 Py_FileSystemDefaultEncoding,
Guido van Rossuma1065681999-01-25 23:20:23 +00003276 &argvlist[i]))
3277 {
Martin v. Löwis114619e2002-10-07 06:44:21 +00003278 lastarg = i;
Guido van Rossuma1065681999-01-25 23:20:23 +00003279 goto fail_1;
3280 }
3281 }
Martin v. Löwis114619e2002-10-07 06:44:21 +00003282 lastarg = argc;
Guido van Rossuma1065681999-01-25 23:20:23 +00003283 argvlist[argc] = NULL;
3284
Jeremy Hylton03657cf2000-07-12 13:05:33 +00003285 i = PyMapping_Size(env);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003286 if (i < 0)
3287 goto fail_1;
Guido van Rossuma1065681999-01-25 23:20:23 +00003288 envlist = PyMem_NEW(char *, i + 1);
3289 if (envlist == NULL) {
3290 PyErr_NoMemory();
3291 goto fail_1;
3292 }
3293 envc = 0;
3294 keys = PyMapping_Keys(env);
3295 vals = PyMapping_Values(env);
3296 if (!keys || !vals)
3297 goto fail_2;
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003298 if (!PyList_Check(keys) || !PyList_Check(vals)) {
3299 PyErr_SetString(PyExc_TypeError,
3300 "spawnve(): env.keys() or env.values() is not a list");
3301 goto fail_2;
3302 }
Tim Peters5aa91602002-01-30 05:46:57 +00003303
Guido van Rossuma1065681999-01-25 23:20:23 +00003304 for (pos = 0; pos < i; pos++) {
3305 char *p, *k, *v;
Tim Petersc8996f52001-12-03 20:41:00 +00003306 size_t len;
Guido van Rossuma1065681999-01-25 23:20:23 +00003307
3308 key = PyList_GetItem(keys, pos);
3309 val = PyList_GetItem(vals, pos);
3310 if (!key || !val)
3311 goto fail_2;
Tim Peters5aa91602002-01-30 05:46:57 +00003312
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003313 if (!PyArg_Parse(
3314 key,
3315 "s;spawnve() arg 3 contains a non-string key",
3316 &k) ||
3317 !PyArg_Parse(
3318 val,
3319 "s;spawnve() arg 3 contains a non-string value",
3320 &v))
Guido van Rossuma1065681999-01-25 23:20:23 +00003321 {
3322 goto fail_2;
3323 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00003324 len = PyString_Size(key) + PyString_Size(val) + 2;
Tim Petersc8996f52001-12-03 20:41:00 +00003325 p = PyMem_NEW(char, len);
Guido van Rossuma1065681999-01-25 23:20:23 +00003326 if (p == NULL) {
3327 PyErr_NoMemory();
3328 goto fail_2;
3329 }
Tim Petersc8996f52001-12-03 20:41:00 +00003330 PyOS_snprintf(p, len, "%s=%s", k, v);
Guido van Rossuma1065681999-01-25 23:20:23 +00003331 envlist[envc++] = p;
3332 }
3333 envlist[envc] = 0;
3334
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00003335#if defined(PYOS_OS2) && defined(PYCC_GCC)
3336 Py_BEGIN_ALLOW_THREADS
3337 spawnval = spawnve(mode, path, argvlist, envlist);
3338 Py_END_ALLOW_THREADS
3339#else
Guido van Rossum246bc171999-02-01 23:54:31 +00003340 if (mode == _OLD_P_OVERLAY)
3341 mode = _P_OVERLAY;
Tim Peters25059d32001-12-07 20:35:43 +00003342
3343 Py_BEGIN_ALLOW_THREADS
Fred Drake699f3522000-06-29 21:12:41 +00003344 spawnval = _spawnve(mode, path, argvlist, envlist);
Tim Peters25059d32001-12-07 20:35:43 +00003345 Py_END_ALLOW_THREADS
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00003346#endif
Tim Peters25059d32001-12-07 20:35:43 +00003347
Fred Drake699f3522000-06-29 21:12:41 +00003348 if (spawnval == -1)
Guido van Rossuma1065681999-01-25 23:20:23 +00003349 (void) posix_error();
3350 else
Fredrik Lundhe25cfd82000-07-09 13:10:40 +00003351#if SIZEOF_LONG == SIZEOF_VOID_P
3352 res = Py_BuildValue("l", (long) spawnval);
Fred Drake699f3522000-06-29 21:12:41 +00003353#else
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00003354 res = Py_BuildValue("L", (PY_LONG_LONG) spawnval);
Fred Drake699f3522000-06-29 21:12:41 +00003355#endif
Guido van Rossuma1065681999-01-25 23:20:23 +00003356
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003357 fail_2:
Guido van Rossuma1065681999-01-25 23:20:23 +00003358 while (--envc >= 0)
3359 PyMem_DEL(envlist[envc]);
3360 PyMem_DEL(envlist);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003361 fail_1:
Martin v. Löwis114619e2002-10-07 06:44:21 +00003362 free_string_array(argvlist, lastarg);
Guido van Rossuma1065681999-01-25 23:20:23 +00003363 Py_XDECREF(vals);
3364 Py_XDECREF(keys);
Martin v. Löwis114619e2002-10-07 06:44:21 +00003365 fail_0:
3366 PyMem_Free(path);
Guido van Rossuma1065681999-01-25 23:20:23 +00003367 return res;
3368}
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003369
3370/* OS/2 supports spawnvp & spawnvpe natively */
3371#if defined(PYOS_OS2)
3372PyDoc_STRVAR(posix_spawnvp__doc__,
3373"spawnvp(mode, file, args)\n\n\
3374Execute the program 'file' in a new process, using the environment\n\
3375search path to find the file.\n\
3376\n\
3377 mode: mode of process creation\n\
3378 file: executable file name\n\
3379 args: tuple or list of strings");
3380
3381static PyObject *
3382posix_spawnvp(PyObject *self, PyObject *args)
3383{
3384 char *path;
3385 PyObject *argv;
3386 char **argvlist;
3387 int mode, i, argc;
3388 Py_intptr_t spawnval;
Martin v. Löwis18e16552006-02-15 17:27:45 +00003389 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003390
3391 /* spawnvp has three arguments: (mode, path, argv), where
3392 argv is a list or tuple of strings. */
3393
3394 if (!PyArg_ParseTuple(args, "ietO:spawnvp", &mode,
3395 Py_FileSystemDefaultEncoding,
3396 &path, &argv))
3397 return NULL;
3398 if (PyList_Check(argv)) {
3399 argc = PyList_Size(argv);
3400 getitem = PyList_GetItem;
3401 }
3402 else if (PyTuple_Check(argv)) {
3403 argc = PyTuple_Size(argv);
3404 getitem = PyTuple_GetItem;
3405 }
3406 else {
3407 PyErr_SetString(PyExc_TypeError,
3408 "spawnvp() arg 2 must be a tuple or list");
3409 PyMem_Free(path);
3410 return NULL;
3411 }
3412
3413 argvlist = PyMem_NEW(char *, argc+1);
3414 if (argvlist == NULL) {
3415 PyMem_Free(path);
3416 return PyErr_NoMemory();
3417 }
3418 for (i = 0; i < argc; i++) {
3419 if (!PyArg_Parse((*getitem)(argv, i), "et",
3420 Py_FileSystemDefaultEncoding,
3421 &argvlist[i])) {
3422 free_string_array(argvlist, i);
3423 PyErr_SetString(
3424 PyExc_TypeError,
3425 "spawnvp() arg 2 must contain only strings");
3426 PyMem_Free(path);
3427 return NULL;
3428 }
3429 }
3430 argvlist[argc] = NULL;
3431
3432 Py_BEGIN_ALLOW_THREADS
3433#if defined(PYCC_GCC)
3434 spawnval = spawnvp(mode, path, argvlist);
3435#else
3436 spawnval = _spawnvp(mode, path, argvlist);
3437#endif
3438 Py_END_ALLOW_THREADS
3439
3440 free_string_array(argvlist, argc);
3441 PyMem_Free(path);
3442
3443 if (spawnval == -1)
3444 return posix_error();
3445 else
3446 return Py_BuildValue("l", (long) spawnval);
3447}
3448
3449
3450PyDoc_STRVAR(posix_spawnvpe__doc__,
3451"spawnvpe(mode, file, args, env)\n\n\
3452Execute the program 'file' in a new process, using the environment\n\
3453search path to find the file.\n\
3454\n\
3455 mode: mode of process creation\n\
3456 file: executable file name\n\
3457 args: tuple or list of arguments\n\
3458 env: dictionary of strings mapping to strings");
3459
3460static PyObject *
3461posix_spawnvpe(PyObject *self, PyObject *args)
3462{
3463 char *path;
3464 PyObject *argv, *env;
3465 char **argvlist;
3466 char **envlist;
3467 PyObject *key, *val, *keys=NULL, *vals=NULL, *res=NULL;
3468 int mode, i, pos, argc, envc;
3469 Py_intptr_t spawnval;
Martin v. Löwis18e16552006-02-15 17:27:45 +00003470 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003471 int lastarg = 0;
3472
3473 /* spawnvpe has four arguments: (mode, path, argv, env), where
3474 argv is a list or tuple of strings and env is a dictionary
3475 like posix.environ. */
3476
3477 if (!PyArg_ParseTuple(args, "ietOO:spawnvpe", &mode,
3478 Py_FileSystemDefaultEncoding,
3479 &path, &argv, &env))
3480 return NULL;
3481 if (PyList_Check(argv)) {
3482 argc = PyList_Size(argv);
3483 getitem = PyList_GetItem;
3484 }
3485 else if (PyTuple_Check(argv)) {
3486 argc = PyTuple_Size(argv);
3487 getitem = PyTuple_GetItem;
3488 }
3489 else {
3490 PyErr_SetString(PyExc_TypeError,
3491 "spawnvpe() arg 2 must be a tuple or list");
3492 goto fail_0;
3493 }
3494 if (!PyMapping_Check(env)) {
3495 PyErr_SetString(PyExc_TypeError,
3496 "spawnvpe() arg 3 must be a mapping object");
3497 goto fail_0;
3498 }
3499
3500 argvlist = PyMem_NEW(char *, argc+1);
3501 if (argvlist == NULL) {
3502 PyErr_NoMemory();
3503 goto fail_0;
3504 }
3505 for (i = 0; i < argc; i++) {
3506 if (!PyArg_Parse((*getitem)(argv, i),
3507 "et;spawnvpe() arg 2 must contain only strings",
3508 Py_FileSystemDefaultEncoding,
3509 &argvlist[i]))
3510 {
3511 lastarg = i;
3512 goto fail_1;
3513 }
3514 }
3515 lastarg = argc;
3516 argvlist[argc] = NULL;
3517
3518 i = PyMapping_Size(env);
3519 if (i < 0)
3520 goto fail_1;
3521 envlist = PyMem_NEW(char *, i + 1);
3522 if (envlist == NULL) {
3523 PyErr_NoMemory();
3524 goto fail_1;
3525 }
3526 envc = 0;
3527 keys = PyMapping_Keys(env);
3528 vals = PyMapping_Values(env);
3529 if (!keys || !vals)
3530 goto fail_2;
3531 if (!PyList_Check(keys) || !PyList_Check(vals)) {
3532 PyErr_SetString(PyExc_TypeError,
3533 "spawnvpe(): env.keys() or env.values() is not a list");
3534 goto fail_2;
3535 }
3536
3537 for (pos = 0; pos < i; pos++) {
3538 char *p, *k, *v;
3539 size_t len;
3540
3541 key = PyList_GetItem(keys, pos);
3542 val = PyList_GetItem(vals, pos);
3543 if (!key || !val)
3544 goto fail_2;
3545
3546 if (!PyArg_Parse(
3547 key,
3548 "s;spawnvpe() arg 3 contains a non-string key",
3549 &k) ||
3550 !PyArg_Parse(
3551 val,
3552 "s;spawnvpe() arg 3 contains a non-string value",
3553 &v))
3554 {
3555 goto fail_2;
3556 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00003557 len = PyString_Size(key) + PyString_Size(val) + 2;
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003558 p = PyMem_NEW(char, len);
3559 if (p == NULL) {
3560 PyErr_NoMemory();
3561 goto fail_2;
3562 }
3563 PyOS_snprintf(p, len, "%s=%s", k, v);
3564 envlist[envc++] = p;
3565 }
3566 envlist[envc] = 0;
3567
3568 Py_BEGIN_ALLOW_THREADS
3569#if defined(PYCC_GCC)
Andrew MacIntyre94dcf0d2008-02-03 07:07:31 +00003570 spawnval = spawnvpe(mode, path, argvlist, envlist);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003571#else
Andrew MacIntyre94dcf0d2008-02-03 07:07:31 +00003572 spawnval = _spawnvpe(mode, path, argvlist, envlist);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003573#endif
3574 Py_END_ALLOW_THREADS
3575
3576 if (spawnval == -1)
3577 (void) posix_error();
3578 else
3579 res = Py_BuildValue("l", (long) spawnval);
3580
3581 fail_2:
3582 while (--envc >= 0)
3583 PyMem_DEL(envlist[envc]);
3584 PyMem_DEL(envlist);
3585 fail_1:
3586 free_string_array(argvlist, lastarg);
3587 Py_XDECREF(vals);
3588 Py_XDECREF(keys);
3589 fail_0:
3590 PyMem_Free(path);
3591 return res;
3592}
3593#endif /* PYOS_OS2 */
Guido van Rossuma1065681999-01-25 23:20:23 +00003594#endif /* HAVE_SPAWNV */
3595
3596
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003597#ifdef HAVE_FORK1
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003598PyDoc_STRVAR(posix_fork1__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003599"fork1() -> pid\n\n\
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003600Fork a child process with a single multiplexed (i.e., not bound) thread.\n\
3601\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003602Return 0 to child process and PID of child to parent process.");
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003603
3604static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003605posix_fork1(PyObject *self, PyObject *noargs)
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003606{
Thomas Woutersc4dcb382009-09-16 19:55:54 +00003607 pid_t pid;
Gregory P. Smith9e5d1322010-03-01 01:22:39 +00003608 int result = 0;
Thomas Woutersc4dcb382009-09-16 19:55:54 +00003609 _PyImport_AcquireLock();
3610 pid = fork1();
Gregory P. Smith9e5d1322010-03-01 01:22:39 +00003611 if (pid == 0) {
3612 /* child: this clobbers and resets the import lock. */
3613 PyOS_AfterFork();
3614 } else {
3615 /* parent: release the import lock. */
3616 result = _PyImport_ReleaseLock();
3617 }
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003618 if (pid == -1)
3619 return posix_error();
Thomas Woutersc4dcb382009-09-16 19:55:54 +00003620 if (result < 0) {
3621 /* Don't clobber the OSError if the fork failed. */
3622 PyErr_SetString(PyExc_RuntimeError,
3623 "not holding the import lock");
3624 return NULL;
3625 }
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00003626 return PyLong_FromPid(pid);
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003627}
3628#endif
3629
3630
Guido van Rossumad0ee831995-03-01 10:34:45 +00003631#ifdef HAVE_FORK
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003632PyDoc_STRVAR(posix_fork__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003633"fork() -> pid\n\n\
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003634Fork a child process.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003635Return 0 to child process and PID of child to parent process.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003636
Barry Warsaw53699e91996-12-10 23:23:01 +00003637static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003638posix_fork(PyObject *self, PyObject *noargs)
Guido van Rossum85e3b011991-06-03 12:42:10 +00003639{
Thomas Woutersc4dcb382009-09-16 19:55:54 +00003640 pid_t pid;
Gregory P. Smith9e5d1322010-03-01 01:22:39 +00003641 int result = 0;
Thomas Woutersc4dcb382009-09-16 19:55:54 +00003642 _PyImport_AcquireLock();
3643 pid = fork();
Gregory P. Smith9e5d1322010-03-01 01:22:39 +00003644 if (pid == 0) {
3645 /* child: this clobbers and resets the import lock. */
3646 PyOS_AfterFork();
3647 } else {
3648 /* parent: release the import lock. */
3649 result = _PyImport_ReleaseLock();
3650 }
Guido van Rossum85e3b011991-06-03 12:42:10 +00003651 if (pid == -1)
3652 return posix_error();
Thomas Woutersc4dcb382009-09-16 19:55:54 +00003653 if (result < 0) {
3654 /* Don't clobber the OSError if the fork failed. */
3655 PyErr_SetString(PyExc_RuntimeError,
3656 "not holding the import lock");
3657 return NULL;
3658 }
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00003659 return PyLong_FromPid(pid);
Guido van Rossum85e3b011991-06-03 12:42:10 +00003660}
Guido van Rossumad0ee831995-03-01 10:34:45 +00003661#endif
Guido van Rossum85e3b011991-06-03 12:42:10 +00003662
Neal Norwitzb59798b2003-03-21 01:43:31 +00003663/* AIX uses /dev/ptc but is otherwise the same as /dev/ptmx */
Neal Norwitz2deaddb2003-03-21 03:08:31 +00003664/* IRIX has both /dev/ptc and /dev/ptmx, use ptmx */
3665#if defined(HAVE_DEV_PTC) && !defined(HAVE_DEV_PTMX)
Neal Norwitzb59798b2003-03-21 01:43:31 +00003666#define DEV_PTY_FILE "/dev/ptc"
3667#define HAVE_DEV_PTMX
3668#else
3669#define DEV_PTY_FILE "/dev/ptmx"
3670#endif
3671
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003672#if defined(HAVE_OPENPTY) || defined(HAVE_FORKPTY) || defined(HAVE_DEV_PTMX)
Fred Drake8cef4cf2000-06-28 16:40:38 +00003673#ifdef HAVE_PTY_H
3674#include <pty.h>
3675#else
3676#ifdef HAVE_LIBUTIL_H
3677#include <libutil.h>
Ronald Oussorena55af9a2010-01-17 16:25:57 +00003678#else
3679#ifdef HAVE_UTIL_H
3680#include <util.h>
3681#endif /* HAVE_UTIL_H */
Fred Drake8cef4cf2000-06-28 16:40:38 +00003682#endif /* HAVE_LIBUTIL_H */
3683#endif /* HAVE_PTY_H */
Martin v. Löwis14e73b12003-01-01 09:51:12 +00003684#ifdef HAVE_STROPTS_H
3685#include <stropts.h>
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003686#endif
3687#endif /* defined(HAVE_OPENPTY) || defined(HAVE_FORKPTY) || defined(HAVE_DEV_PTMX */
Fred Drake8cef4cf2000-06-28 16:40:38 +00003688
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003689#if defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX)
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003690PyDoc_STRVAR(posix_openpty__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003691"openpty() -> (master_fd, slave_fd)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003692Open a pseudo-terminal, returning open fd's for both master and slave end.\n");
Fred Drake8cef4cf2000-06-28 16:40:38 +00003693
3694static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003695posix_openpty(PyObject *self, PyObject *noargs)
Fred Drake8cef4cf2000-06-28 16:40:38 +00003696{
3697 int master_fd, slave_fd;
Thomas Wouters70c21a12000-07-14 14:28:33 +00003698#ifndef HAVE_OPENPTY
3699 char * slave_name;
Thomas Wouters70c21a12000-07-14 14:28:33 +00003700#endif
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003701#if defined(HAVE_DEV_PTMX) && !defined(HAVE_OPENPTY) && !defined(HAVE__GETPTY)
Martin v. Löwisc8b2e772002-12-31 14:30:26 +00003702 PyOS_sighandler_t sig_saved;
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003703#ifdef sun
Neal Norwitz84a98e02006-04-10 07:44:23 +00003704 extern char *ptsname(int fildes);
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003705#endif
3706#endif
Thomas Wouters70c21a12000-07-14 14:28:33 +00003707
Thomas Wouters70c21a12000-07-14 14:28:33 +00003708#ifdef HAVE_OPENPTY
Fred Drake8cef4cf2000-06-28 16:40:38 +00003709 if (openpty(&master_fd, &slave_fd, NULL, NULL, NULL) != 0)
3710 return posix_error();
Neal Norwitzb59798b2003-03-21 01:43:31 +00003711#elif defined(HAVE__GETPTY)
Thomas Wouters70c21a12000-07-14 14:28:33 +00003712 slave_name = _getpty(&master_fd, O_RDWR, 0666, 0);
3713 if (slave_name == NULL)
3714 return posix_error();
3715
3716 slave_fd = open(slave_name, O_RDWR);
3717 if (slave_fd < 0)
3718 return posix_error();
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003719#else
Neal Norwitzb59798b2003-03-21 01:43:31 +00003720 master_fd = open(DEV_PTY_FILE, O_RDWR | O_NOCTTY); /* open master */
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003721 if (master_fd < 0)
3722 return posix_error();
Anthony Baxter9ceaa722004-10-13 14:48:50 +00003723 sig_saved = PyOS_setsig(SIGCHLD, SIG_DFL);
Martin v. Löwisc8b2e772002-12-31 14:30:26 +00003724 /* change permission of slave */
3725 if (grantpt(master_fd) < 0) {
Anthony Baxter9ceaa722004-10-13 14:48:50 +00003726 PyOS_setsig(SIGCHLD, sig_saved);
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003727 return posix_error();
Martin v. Löwisc8b2e772002-12-31 14:30:26 +00003728 }
3729 /* unlock slave */
3730 if (unlockpt(master_fd) < 0) {
Anthony Baxter9ceaa722004-10-13 14:48:50 +00003731 PyOS_setsig(SIGCHLD, sig_saved);
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003732 return posix_error();
Martin v. Löwisc8b2e772002-12-31 14:30:26 +00003733 }
Anthony Baxter9ceaa722004-10-13 14:48:50 +00003734 PyOS_setsig(SIGCHLD, sig_saved);
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003735 slave_name = ptsname(master_fd); /* get name of slave */
3736 if (slave_name == NULL)
3737 return posix_error();
3738 slave_fd = open(slave_name, O_RDWR | O_NOCTTY); /* open slave */
3739 if (slave_fd < 0)
3740 return posix_error();
Neal Norwitzb59798b2003-03-21 01:43:31 +00003741#if !defined(__CYGWIN__) && !defined(HAVE_DEV_PTC)
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003742 ioctl(slave_fd, I_PUSH, "ptem"); /* push ptem */
3743 ioctl(slave_fd, I_PUSH, "ldterm"); /* push ldterm */
Neal Norwitz6700e472002-12-31 16:16:07 +00003744#ifndef __hpux
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003745 ioctl(slave_fd, I_PUSH, "ttcompat"); /* push ttcompat */
Neal Norwitz6700e472002-12-31 16:16:07 +00003746#endif /* __hpux */
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003747#endif /* HAVE_CYGWIN */
Thomas Wouters1e0c2f42000-07-24 16:06:23 +00003748#endif /* HAVE_OPENPTY */
Thomas Wouters70c21a12000-07-14 14:28:33 +00003749
Fred Drake8cef4cf2000-06-28 16:40:38 +00003750 return Py_BuildValue("(ii)", master_fd, slave_fd);
Thomas Wouters70c21a12000-07-14 14:28:33 +00003751
Fred Drake8cef4cf2000-06-28 16:40:38 +00003752}
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003753#endif /* defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX) */
Fred Drake8cef4cf2000-06-28 16:40:38 +00003754
3755#ifdef HAVE_FORKPTY
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003756PyDoc_STRVAR(posix_forkpty__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003757"forkpty() -> (pid, master_fd)\n\n\
Fred Drake8cef4cf2000-06-28 16:40:38 +00003758Fork a new process with a new pseudo-terminal as controlling tty.\n\n\
3759Like fork(), return 0 as pid to child process, and PID of child to parent.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003760To both, return fd of newly opened pseudo-terminal.\n");
Fred Drake8cef4cf2000-06-28 16:40:38 +00003761
3762static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003763posix_forkpty(PyObject *self, PyObject *noargs)
Fred Drake8cef4cf2000-06-28 16:40:38 +00003764{
Gregory P. Smith4b862362010-03-01 02:31:33 +00003765 int master_fd = -1, result = 0;
Christian Heimes951cc0f2008-01-31 23:08:23 +00003766 pid_t pid;
Tim Peters5aa91602002-01-30 05:46:57 +00003767
Thomas Woutersc4dcb382009-09-16 19:55:54 +00003768 _PyImport_AcquireLock();
Fred Drake8cef4cf2000-06-28 16:40:38 +00003769 pid = forkpty(&master_fd, NULL, NULL, NULL);
Gregory P. Smith4b862362010-03-01 02:31:33 +00003770 if (pid == 0) {
3771 /* child: this clobbers and resets the import lock. */
Gregory P. Smith9e5d1322010-03-01 01:22:39 +00003772 PyOS_AfterFork();
Gregory P. Smith4b862362010-03-01 02:31:33 +00003773 } else {
3774 /* parent: release the import lock. */
3775 result = _PyImport_ReleaseLock();
3776 }
Fred Drake8cef4cf2000-06-28 16:40:38 +00003777 if (pid == -1)
3778 return posix_error();
Thomas Woutersc4dcb382009-09-16 19:55:54 +00003779 if (result < 0) {
3780 /* Don't clobber the OSError if the fork failed. */
3781 PyErr_SetString(PyExc_RuntimeError,
3782 "not holding the import lock");
3783 return NULL;
3784 }
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00003785 return Py_BuildValue("(Ni)", PyLong_FromPid(pid), master_fd);
Fred Drake8cef4cf2000-06-28 16:40:38 +00003786}
3787#endif
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003788
Guido van Rossumad0ee831995-03-01 10:34:45 +00003789#ifdef HAVE_GETEGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003790PyDoc_STRVAR(posix_getegid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003791"getegid() -> egid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003792Return the current process's effective group id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003793
Barry Warsaw53699e91996-12-10 23:23:01 +00003794static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003795posix_getegid(PyObject *self, PyObject *noargs)
Guido van Rossum46003ff1992-05-15 11:05:24 +00003796{
Barry Warsaw53699e91996-12-10 23:23:01 +00003797 return PyInt_FromLong((long)getegid());
Guido van Rossum46003ff1992-05-15 11:05:24 +00003798}
Guido van Rossumad0ee831995-03-01 10:34:45 +00003799#endif
Guido van Rossum46003ff1992-05-15 11:05:24 +00003800
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003801
Guido van Rossumad0ee831995-03-01 10:34:45 +00003802#ifdef HAVE_GETEUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003803PyDoc_STRVAR(posix_geteuid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003804"geteuid() -> euid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003805Return the current process's effective user id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003806
Barry Warsaw53699e91996-12-10 23:23:01 +00003807static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003808posix_geteuid(PyObject *self, PyObject *noargs)
Guido van Rossum46003ff1992-05-15 11:05:24 +00003809{
Barry Warsaw53699e91996-12-10 23:23:01 +00003810 return PyInt_FromLong((long)geteuid());
Guido van Rossum46003ff1992-05-15 11:05:24 +00003811}
Guido van Rossumad0ee831995-03-01 10:34:45 +00003812#endif
Guido van Rossum46003ff1992-05-15 11:05:24 +00003813
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003814
Guido van Rossumad0ee831995-03-01 10:34:45 +00003815#ifdef HAVE_GETGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003816PyDoc_STRVAR(posix_getgid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003817"getgid() -> gid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003818Return the current process's group id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003819
Barry Warsaw53699e91996-12-10 23:23:01 +00003820static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003821posix_getgid(PyObject *self, PyObject *noargs)
Guido van Rossum46003ff1992-05-15 11:05:24 +00003822{
Barry Warsaw53699e91996-12-10 23:23:01 +00003823 return PyInt_FromLong((long)getgid());
Guido van Rossum46003ff1992-05-15 11:05:24 +00003824}
Guido van Rossumad0ee831995-03-01 10:34:45 +00003825#endif
Guido van Rossum46003ff1992-05-15 11:05:24 +00003826
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003827
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003828PyDoc_STRVAR(posix_getpid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003829"getpid() -> pid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003830Return the current process id");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003831
Barry Warsaw53699e91996-12-10 23:23:01 +00003832static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003833posix_getpid(PyObject *self, PyObject *noargs)
Guido van Rossum85e3b011991-06-03 12:42:10 +00003834{
Antoine Pitrou76dd2d12009-05-23 16:06:49 +00003835 return PyLong_FromPid(getpid());
Guido van Rossum85e3b011991-06-03 12:42:10 +00003836}
3837
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003838
Fred Drakec9680921999-12-13 16:37:25 +00003839#ifdef HAVE_GETGROUPS
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003840PyDoc_STRVAR(posix_getgroups__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003841"getgroups() -> list of group IDs\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003842Return list of supplemental group IDs for the process.");
Fred Drakec9680921999-12-13 16:37:25 +00003843
3844static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003845posix_getgroups(PyObject *self, PyObject *noargs)
Fred Drakec9680921999-12-13 16:37:25 +00003846{
3847 PyObject *result = NULL;
3848
Fred Drakec9680921999-12-13 16:37:25 +00003849#ifdef NGROUPS_MAX
3850#define MAX_GROUPS NGROUPS_MAX
3851#else
3852 /* defined to be 16 on Solaris7, so this should be a small number */
3853#define MAX_GROUPS 64
3854#endif
3855 gid_t grouplist[MAX_GROUPS];
3856 int n;
3857
3858 n = getgroups(MAX_GROUPS, grouplist);
3859 if (n < 0)
3860 posix_error();
3861 else {
3862 result = PyList_New(n);
3863 if (result != NULL) {
Fred Drakec9680921999-12-13 16:37:25 +00003864 int i;
3865 for (i = 0; i < n; ++i) {
Neal Norwitze241ce82003-02-17 18:17:05 +00003866 PyObject *o = PyInt_FromLong((long)grouplist[i]);
Fred Drakec9680921999-12-13 16:37:25 +00003867 if (o == NULL) {
3868 Py_DECREF(result);
3869 result = NULL;
3870 break;
3871 }
3872 PyList_SET_ITEM(result, i, o);
3873 }
3874 }
3875 }
Neal Norwitze241ce82003-02-17 18:17:05 +00003876
Fred Drakec9680921999-12-13 16:37:25 +00003877 return result;
3878}
3879#endif
3880
Antoine Pitrou30b3b352009-12-02 20:37:54 +00003881#ifdef HAVE_INITGROUPS
3882PyDoc_STRVAR(posix_initgroups__doc__,
3883"initgroups(username, gid) -> None\n\n\
3884Call the system initgroups() to initialize the group access list with all of\n\
3885the groups of which the specified username is a member, plus the specified\n\
3886group id.");
3887
3888static PyObject *
3889posix_initgroups(PyObject *self, PyObject *args)
3890{
3891 char *username;
3892 long gid;
3893
3894 if (!PyArg_ParseTuple(args, "sl:initgroups", &username, &gid))
3895 return NULL;
3896
3897 if (initgroups(username, (gid_t) gid) == -1)
3898 return PyErr_SetFromErrno(PyExc_OSError);
3899
3900 Py_INCREF(Py_None);
3901 return Py_None;
3902}
3903#endif
3904
Martin v. Löwis606edc12002-06-13 21:09:11 +00003905#ifdef HAVE_GETPGID
Neal Norwitz0c2c17c2002-06-13 21:22:11 +00003906PyDoc_STRVAR(posix_getpgid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003907"getpgid(pid) -> pgid\n\n\
Neal Norwitz0c2c17c2002-06-13 21:22:11 +00003908Call the system call getpgid().");
Martin v. Löwis606edc12002-06-13 21:09:11 +00003909
3910static PyObject *
3911posix_getpgid(PyObject *self, PyObject *args)
3912{
Antoine Pitrou76dd2d12009-05-23 16:06:49 +00003913 pid_t pid, pgid;
3914 if (!PyArg_ParseTuple(args, PARSE_PID ":getpgid", &pid))
Martin v. Löwis606edc12002-06-13 21:09:11 +00003915 return NULL;
3916 pgid = getpgid(pid);
3917 if (pgid < 0)
3918 return posix_error();
Antoine Pitrou76dd2d12009-05-23 16:06:49 +00003919 return PyLong_FromPid(pgid);
Martin v. Löwis606edc12002-06-13 21:09:11 +00003920}
3921#endif /* HAVE_GETPGID */
3922
3923
Guido van Rossumb6775db1994-08-01 11:34:53 +00003924#ifdef HAVE_GETPGRP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003925PyDoc_STRVAR(posix_getpgrp__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003926"getpgrp() -> pgrp\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003927Return the current process group id.");
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_getpgrp(PyObject *self, PyObject *noargs)
Guido van Rossum04814471991-06-04 20:23:49 +00003931{
Guido van Rossumb6775db1994-08-01 11:34:53 +00003932#ifdef GETPGRP_HAVE_ARG
Antoine Pitrou76dd2d12009-05-23 16:06:49 +00003933 return PyLong_FromPid(getpgrp(0));
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00003934#else /* GETPGRP_HAVE_ARG */
Antoine Pitrou76dd2d12009-05-23 16:06:49 +00003935 return PyLong_FromPid(getpgrp());
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00003936#endif /* GETPGRP_HAVE_ARG */
Guido van Rossum04814471991-06-04 20:23:49 +00003937}
Guido van Rossumb6775db1994-08-01 11:34:53 +00003938#endif /* HAVE_GETPGRP */
Guido van Rossum04814471991-06-04 20:23:49 +00003939
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003940
Guido van Rossumb6775db1994-08-01 11:34:53 +00003941#ifdef HAVE_SETPGRP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003942PyDoc_STRVAR(posix_setpgrp__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003943"setpgrp()\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003944Make this process a session leader.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003945
Barry Warsaw53699e91996-12-10 23:23:01 +00003946static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003947posix_setpgrp(PyObject *self, PyObject *noargs)
Guido van Rossumc2670a01992-09-13 20:07:29 +00003948{
Guido van Rossum64933891994-10-20 21:56:42 +00003949#ifdef SETPGRP_HAVE_ARG
Guido van Rossumc2670a01992-09-13 20:07:29 +00003950 if (setpgrp(0, 0) < 0)
Guido van Rossum64933891994-10-20 21:56:42 +00003951#else /* SETPGRP_HAVE_ARG */
Guido van Rossumb6775db1994-08-01 11:34:53 +00003952 if (setpgrp() < 0)
Guido van Rossum64933891994-10-20 21:56:42 +00003953#endif /* SETPGRP_HAVE_ARG */
Guido van Rossum687dd131993-05-17 08:34:16 +00003954 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00003955 Py_INCREF(Py_None);
3956 return Py_None;
Guido van Rossumc2670a01992-09-13 20:07:29 +00003957}
3958
Guido van Rossumb6775db1994-08-01 11:34:53 +00003959#endif /* HAVE_SETPGRP */
3960
Guido van Rossumad0ee831995-03-01 10:34:45 +00003961#ifdef HAVE_GETPPID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003962PyDoc_STRVAR(posix_getppid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003963"getppid() -> ppid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003964Return the parent's process id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003965
Barry Warsaw53699e91996-12-10 23:23:01 +00003966static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003967posix_getppid(PyObject *self, PyObject *noargs)
Guido van Rossum85e3b011991-06-03 12:42:10 +00003968{
Antoine Pitrou76dd2d12009-05-23 16:06:49 +00003969 return PyLong_FromPid(getppid());
Guido van Rossum85e3b011991-06-03 12:42:10 +00003970}
Guido van Rossumad0ee831995-03-01 10:34:45 +00003971#endif
Guido van Rossum85e3b011991-06-03 12:42:10 +00003972
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003973
Fred Drake12c6e2d1999-12-14 21:25:03 +00003974#ifdef HAVE_GETLOGIN
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003975PyDoc_STRVAR(posix_getlogin__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003976"getlogin() -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003977Return the actual login name.");
Fred Drake12c6e2d1999-12-14 21:25:03 +00003978
3979static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003980posix_getlogin(PyObject *self, PyObject *noargs)
Fred Drake12c6e2d1999-12-14 21:25:03 +00003981{
Neal Norwitze241ce82003-02-17 18:17:05 +00003982 PyObject *result = NULL;
Fred Drakea30680b2000-12-06 21:24:28 +00003983 char *name;
3984 int old_errno = errno;
Fred Drake12c6e2d1999-12-14 21:25:03 +00003985
Fred Drakea30680b2000-12-06 21:24:28 +00003986 errno = 0;
3987 name = getlogin();
3988 if (name == NULL) {
3989 if (errno)
3990 posix_error();
3991 else
3992 PyErr_SetString(PyExc_OSError,
Fred Drakee63544f2000-12-06 21:45:33 +00003993 "unable to determine login name");
Fred Drakea30680b2000-12-06 21:24:28 +00003994 }
Fred Drake12c6e2d1999-12-14 21:25:03 +00003995 else
Gregory P. Smithdd96db62008-06-09 04:58:54 +00003996 result = PyString_FromString(name);
Fred Drakea30680b2000-12-06 21:24:28 +00003997 errno = old_errno;
Neal Norwitze241ce82003-02-17 18:17:05 +00003998
Fred Drake12c6e2d1999-12-14 21:25:03 +00003999 return result;
4000}
4001#endif
4002
Guido van Rossumad0ee831995-03-01 10:34:45 +00004003#ifdef HAVE_GETUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004004PyDoc_STRVAR(posix_getuid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00004005"getuid() -> uid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004006Return the current process's user id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004007
Barry Warsaw53699e91996-12-10 23:23:01 +00004008static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00004009posix_getuid(PyObject *self, PyObject *noargs)
Guido van Rossum46003ff1992-05-15 11:05:24 +00004010{
Barry Warsaw53699e91996-12-10 23:23:01 +00004011 return PyInt_FromLong((long)getuid());
Guido van Rossum46003ff1992-05-15 11:05:24 +00004012}
Guido van Rossumad0ee831995-03-01 10:34:45 +00004013#endif
Guido van Rossum46003ff1992-05-15 11:05:24 +00004014
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004015
Guido van Rossumad0ee831995-03-01 10:34:45 +00004016#ifdef HAVE_KILL
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004017PyDoc_STRVAR(posix_kill__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00004018"kill(pid, sig)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004019Kill a process with a signal.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004020
Barry Warsaw53699e91996-12-10 23:23:01 +00004021static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00004022posix_kill(PyObject *self, PyObject *args)
Guido van Rossum85e3b011991-06-03 12:42:10 +00004023{
Christian Heimesd491d712008-02-01 18:49:26 +00004024 pid_t pid;
4025 int sig;
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00004026 if (!PyArg_ParseTuple(args, PARSE_PID "i:kill", &pid, &sig))
Guido van Rossum85e3b011991-06-03 12:42:10 +00004027 return NULL;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004028#if defined(PYOS_OS2) && !defined(PYCC_GCC)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004029 if (sig == XCPT_SIGNAL_INTR || sig == XCPT_SIGNAL_BREAK) {
4030 APIRET rc;
4031 if ((rc = DosSendSignalException(pid, sig)) != NO_ERROR)
Guido van Rossumd48f2521997-12-05 22:19:34 +00004032 return os2_error(rc);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004033
4034 } else if (sig == XCPT_SIGNAL_KILLPROC) {
4035 APIRET rc;
4036 if ((rc = DosKillProcess(DKP_PROCESS, pid)) != NO_ERROR)
Guido van Rossumd48f2521997-12-05 22:19:34 +00004037 return os2_error(rc);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004038
4039 } else
Guido van Rossumc5a0f531997-12-02 20:36:02 +00004040 return NULL; /* Unrecognized Signal Requested */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004041#else
Guido van Rossum85e3b011991-06-03 12:42:10 +00004042 if (kill(pid, sig) == -1)
4043 return posix_error();
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004044#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00004045 Py_INCREF(Py_None);
4046 return Py_None;
Guido van Rossum85e3b011991-06-03 12:42:10 +00004047}
Guido van Rossumad0ee831995-03-01 10:34:45 +00004048#endif
Guido van Rossum85e3b011991-06-03 12:42:10 +00004049
Martin v. Löwisb2c92f42002-02-16 23:35:41 +00004050#ifdef HAVE_KILLPG
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004051PyDoc_STRVAR(posix_killpg__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00004052"killpg(pgid, sig)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004053Kill a process group with a signal.");
Martin v. Löwisb2c92f42002-02-16 23:35:41 +00004054
4055static PyObject *
4056posix_killpg(PyObject *self, PyObject *args)
4057{
Antoine Pitrou76dd2d12009-05-23 16:06:49 +00004058 int sig;
4059 pid_t pgid;
4060 /* XXX some man pages make the `pgid` parameter an int, others
4061 a pid_t. Since getpgrp() returns a pid_t, we assume killpg should
4062 take the same type. Moreover, pid_t is always at least as wide as
4063 int (else compilation of this module fails), which is safe. */
4064 if (!PyArg_ParseTuple(args, PARSE_PID "i:killpg", &pgid, &sig))
Martin v. Löwisb2c92f42002-02-16 23:35:41 +00004065 return NULL;
4066 if (killpg(pgid, sig) == -1)
4067 return posix_error();
4068 Py_INCREF(Py_None);
4069 return Py_None;
4070}
4071#endif
4072
Guido van Rossumc0125471996-06-28 18:55:32 +00004073#ifdef HAVE_PLOCK
4074
4075#ifdef HAVE_SYS_LOCK_H
4076#include <sys/lock.h>
4077#endif
4078
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004079PyDoc_STRVAR(posix_plock__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00004080"plock(op)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004081Lock program segments into memory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004082
Barry Warsaw53699e91996-12-10 23:23:01 +00004083static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00004084posix_plock(PyObject *self, PyObject *args)
Guido van Rossumc0125471996-06-28 18:55:32 +00004085{
4086 int op;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00004087 if (!PyArg_ParseTuple(args, "i:plock", &op))
Guido van Rossumc0125471996-06-28 18:55:32 +00004088 return NULL;
4089 if (plock(op) == -1)
4090 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00004091 Py_INCREF(Py_None);
4092 return Py_None;
Guido van Rossumc0125471996-06-28 18:55:32 +00004093}
4094#endif
4095
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004096
Guido van Rossuma4916fa1996-05-23 22:58:55 +00004097#ifdef HAVE_POPEN
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004098PyDoc_STRVAR(posix_popen__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00004099"popen(command [, mode='r' [, bufsize]]) -> pipe\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004100Open a pipe to/from a command returning a file object.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004101
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004102#if defined(PYOS_OS2)
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004103#if defined(PYCC_VACPP)
Guido van Rossumd48f2521997-12-05 22:19:34 +00004104static int
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004105async_system(const char *command)
4106{
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004107 char errormsg[256], args[1024];
4108 RESULTCODES rcodes;
4109 APIRET rc;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004110
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004111 char *shell = getenv("COMSPEC");
4112 if (!shell)
4113 shell = "cmd";
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004114
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004115 /* avoid overflowing the argument buffer */
4116 if (strlen(shell) + 3 + strlen(command) >= 1024)
4117 return ERROR_NOT_ENOUGH_MEMORY
4118
4119 args[0] = '\0';
4120 strcat(args, shell);
4121 strcat(args, "/c ");
4122 strcat(args, command);
4123
4124 /* execute asynchronously, inheriting the environment */
4125 rc = DosExecPgm(errormsg,
4126 sizeof(errormsg),
4127 EXEC_ASYNC,
4128 args,
4129 NULL,
4130 &rcodes,
4131 shell);
4132 return rc;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004133}
4134
Guido van Rossumd48f2521997-12-05 22:19:34 +00004135static FILE *
4136popen(const char *command, const char *mode, int pipesize, int *err)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004137{
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004138 int oldfd, tgtfd;
4139 HFILE pipeh[2];
4140 APIRET rc;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004141
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004142 /* mode determines which of stdin or stdout is reconnected to
4143 * the pipe to the child
4144 */
4145 if (strchr(mode, 'r') != NULL) {
4146 tgt_fd = 1; /* stdout */
4147 } else if (strchr(mode, 'w')) {
4148 tgt_fd = 0; /* stdin */
4149 } else {
4150 *err = ERROR_INVALID_ACCESS;
4151 return NULL;
4152 }
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004153
Andrew MacIntyrea3be2582004-12-18 09:51:05 +00004154 /* setup the pipe */
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004155 if ((rc = DosCreatePipe(&pipeh[0], &pipeh[1], pipesize)) != NO_ERROR) {
4156 *err = rc;
4157 return NULL;
4158 }
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004159
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004160 /* prevent other threads accessing stdio */
4161 DosEnterCritSec();
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004162
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004163 /* reconnect stdio and execute child */
4164 oldfd = dup(tgtfd);
4165 close(tgtfd);
4166 if (dup2(pipeh[tgtfd], tgtfd) == 0) {
4167 DosClose(pipeh[tgtfd]);
4168 rc = async_system(command);
4169 }
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004170
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004171 /* restore stdio */
4172 dup2(oldfd, tgtfd);
4173 close(oldfd);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004174
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004175 /* allow other threads access to stdio */
4176 DosExitCritSec();
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004177
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004178 /* if execution of child was successful return file stream */
4179 if (rc == NO_ERROR)
4180 return fdopen(pipeh[1 - tgtfd], mode);
4181 else {
4182 DosClose(pipeh[1 - tgtfd]);
4183 *err = rc;
4184 return NULL;
4185 }
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004186}
4187
4188static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00004189posix_popen(PyObject *self, PyObject *args)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004190{
4191 char *name;
4192 char *mode = "r";
Guido van Rossumd48f2521997-12-05 22:19:34 +00004193 int err, bufsize = -1;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004194 FILE *fp;
4195 PyObject *f;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00004196 if (!PyArg_ParseTuple(args, "s|si:popen", &name, &mode, &bufsize))
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004197 return NULL;
4198 Py_BEGIN_ALLOW_THREADS
Guido van Rossumd48f2521997-12-05 22:19:34 +00004199 fp = popen(name, mode, (bufsize > 0) ? bufsize : 4096, &err);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004200 Py_END_ALLOW_THREADS
4201 if (fp == NULL)
Guido van Rossumd48f2521997-12-05 22:19:34 +00004202 return os2_error(err);
4203
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004204 f = PyFile_FromFile(fp, name, mode, fclose);
4205 if (f != NULL)
4206 PyFile_SetBufSize(f, bufsize);
4207 return f;
4208}
4209
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004210#elif defined(PYCC_GCC)
4211
4212/* standard posix version of popen() support */
4213static PyObject *
4214posix_popen(PyObject *self, PyObject *args)
4215{
4216 char *name;
4217 char *mode = "r";
4218 int bufsize = -1;
4219 FILE *fp;
4220 PyObject *f;
4221 if (!PyArg_ParseTuple(args, "s|si:popen", &name, &mode, &bufsize))
4222 return NULL;
4223 Py_BEGIN_ALLOW_THREADS
4224 fp = popen(name, mode);
4225 Py_END_ALLOW_THREADS
4226 if (fp == NULL)
4227 return posix_error();
4228 f = PyFile_FromFile(fp, name, mode, pclose);
4229 if (f != NULL)
4230 PyFile_SetBufSize(f, bufsize);
4231 return f;
4232}
4233
4234/* fork() under OS/2 has lots'o'warts
4235 * EMX supports pipe() and spawn*() so we can synthesize popen[234]()
4236 * most of this code is a ripoff of the win32 code, but using the
4237 * capabilities of EMX's C library routines
4238 */
4239
4240/* These tell _PyPopen() whether to return 1, 2, or 3 file objects. */
4241#define POPEN_1 1
4242#define POPEN_2 2
4243#define POPEN_3 3
4244#define POPEN_4 4
4245
4246static PyObject *_PyPopen(char *, int, int, int);
4247static int _PyPclose(FILE *file);
4248
4249/*
4250 * Internal dictionary mapping popen* file pointers to process handles,
4251 * for use when retrieving the process exit code. See _PyPclose() below
4252 * for more information on this dictionary's use.
4253 */
4254static PyObject *_PyPopenProcs = NULL;
4255
4256/* os2emx version of popen2()
4257 *
4258 * The result of this function is a pipe (file) connected to the
4259 * process's stdin, and a pipe connected to the process's stdout.
4260 */
4261
4262static PyObject *
4263os2emx_popen2(PyObject *self, PyObject *args)
4264{
4265 PyObject *f;
4266 int tm=0;
4267
4268 char *cmdstring;
4269 char *mode = "t";
4270 int bufsize = -1;
4271 if (!PyArg_ParseTuple(args, "s|si:popen2", &cmdstring, &mode, &bufsize))
4272 return NULL;
4273
4274 if (*mode == 't')
4275 tm = O_TEXT;
4276 else if (*mode != 'b') {
4277 PyErr_SetString(PyExc_ValueError, "mode must be 't' or 'b'");
4278 return NULL;
4279 } else
4280 tm = O_BINARY;
4281
4282 f = _PyPopen(cmdstring, tm, POPEN_2, bufsize);
4283
4284 return f;
4285}
4286
4287/*
4288 * Variation on os2emx.popen2
4289 *
4290 * The result of this function is 3 pipes - the process's stdin,
4291 * stdout and stderr
4292 */
4293
4294static PyObject *
4295os2emx_popen3(PyObject *self, PyObject *args)
4296{
4297 PyObject *f;
4298 int tm = 0;
4299
4300 char *cmdstring;
4301 char *mode = "t";
4302 int bufsize = -1;
4303 if (!PyArg_ParseTuple(args, "s|si:popen3", &cmdstring, &mode, &bufsize))
4304 return NULL;
4305
4306 if (*mode == 't')
4307 tm = O_TEXT;
4308 else if (*mode != 'b') {
4309 PyErr_SetString(PyExc_ValueError, "mode must be 't' or 'b'");
4310 return NULL;
4311 } else
4312 tm = O_BINARY;
4313
4314 f = _PyPopen(cmdstring, tm, POPEN_3, bufsize);
4315
4316 return f;
4317}
4318
4319/*
4320 * Variation on os2emx.popen2
4321 *
Tim Peters11b23062003-04-23 02:39:17 +00004322 * The result of this function is 2 pipes - the processes stdin,
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004323 * and stdout+stderr combined as a single pipe.
4324 */
4325
4326static PyObject *
4327os2emx_popen4(PyObject *self, PyObject *args)
4328{
4329 PyObject *f;
4330 int tm = 0;
4331
4332 char *cmdstring;
4333 char *mode = "t";
4334 int bufsize = -1;
4335 if (!PyArg_ParseTuple(args, "s|si:popen4", &cmdstring, &mode, &bufsize))
4336 return NULL;
4337
4338 if (*mode == 't')
4339 tm = O_TEXT;
4340 else if (*mode != 'b') {
4341 PyErr_SetString(PyExc_ValueError, "mode must be 't' or 'b'");
4342 return NULL;
4343 } else
4344 tm = O_BINARY;
4345
4346 f = _PyPopen(cmdstring, tm, POPEN_4, bufsize);
4347
4348 return f;
4349}
4350
4351/* a couple of structures for convenient handling of multiple
4352 * file handles and pipes
4353 */
4354struct file_ref
4355{
4356 int handle;
4357 int flags;
4358};
4359
4360struct pipe_ref
4361{
4362 int rd;
4363 int wr;
4364};
4365
4366/* The following code is derived from the win32 code */
4367
4368static PyObject *
4369_PyPopen(char *cmdstring, int mode, int n, int bufsize)
4370{
4371 struct file_ref stdio[3];
4372 struct pipe_ref p_fd[3];
4373 FILE *p_s[3];
Christian Heimesd491d712008-02-01 18:49:26 +00004374 int file_count, i, pipe_err;
4375 pid_t pipe_pid;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004376 char *shell, *sh_name, *opt, *rd_mode, *wr_mode;
4377 PyObject *f, *p_f[3];
4378
4379 /* file modes for subsequent fdopen's on pipe handles */
4380 if (mode == O_TEXT)
4381 {
4382 rd_mode = "rt";
4383 wr_mode = "wt";
4384 }
4385 else
4386 {
4387 rd_mode = "rb";
4388 wr_mode = "wb";
4389 }
4390
4391 /* prepare shell references */
4392 if ((shell = getenv("EMXSHELL")) == NULL)
4393 if ((shell = getenv("COMSPEC")) == NULL)
4394 {
4395 errno = ENOENT;
4396 return posix_error();
4397 }
4398
4399 sh_name = _getname(shell);
4400 if (stricmp(sh_name, "cmd.exe") == 0 || stricmp(sh_name, "4os2.exe") == 0)
4401 opt = "/c";
4402 else
4403 opt = "-c";
4404
4405 /* save current stdio fds + their flags, and set not inheritable */
4406 i = pipe_err = 0;
4407 while (pipe_err >= 0 && i < 3)
4408 {
4409 pipe_err = stdio[i].handle = dup(i);
4410 stdio[i].flags = fcntl(i, F_GETFD, 0);
4411 fcntl(stdio[i].handle, F_SETFD, stdio[i].flags | FD_CLOEXEC);
4412 i++;
4413 }
4414 if (pipe_err < 0)
4415 {
4416 /* didn't get them all saved - clean up and bail out */
4417 int saved_err = errno;
4418 while (i-- > 0)
4419 {
4420 close(stdio[i].handle);
4421 }
4422 errno = saved_err;
4423 return posix_error();
4424 }
4425
4426 /* create pipe ends */
4427 file_count = 2;
4428 if (n == POPEN_3)
4429 file_count = 3;
4430 i = pipe_err = 0;
4431 while ((pipe_err == 0) && (i < file_count))
4432 pipe_err = pipe((int *)&p_fd[i++]);
4433 if (pipe_err < 0)
4434 {
4435 /* didn't get them all made - clean up and bail out */
4436 while (i-- > 0)
4437 {
4438 close(p_fd[i].wr);
4439 close(p_fd[i].rd);
4440 }
4441 errno = EPIPE;
4442 return posix_error();
4443 }
4444
4445 /* change the actual standard IO streams over temporarily,
4446 * making the retained pipe ends non-inheritable
4447 */
4448 pipe_err = 0;
4449
4450 /* - stdin */
4451 if (dup2(p_fd[0].rd, 0) == 0)
4452 {
4453 close(p_fd[0].rd);
4454 i = fcntl(p_fd[0].wr, F_GETFD, 0);
4455 fcntl(p_fd[0].wr, F_SETFD, i | FD_CLOEXEC);
4456 if ((p_s[0] = fdopen(p_fd[0].wr, wr_mode)) == NULL)
4457 {
4458 close(p_fd[0].wr);
4459 pipe_err = -1;
4460 }
4461 }
4462 else
4463 {
4464 pipe_err = -1;
4465 }
4466
4467 /* - stdout */
4468 if (pipe_err == 0)
4469 {
4470 if (dup2(p_fd[1].wr, 1) == 1)
4471 {
4472 close(p_fd[1].wr);
4473 i = fcntl(p_fd[1].rd, F_GETFD, 0);
4474 fcntl(p_fd[1].rd, F_SETFD, i | FD_CLOEXEC);
4475 if ((p_s[1] = fdopen(p_fd[1].rd, rd_mode)) == NULL)
4476 {
4477 close(p_fd[1].rd);
4478 pipe_err = -1;
4479 }
4480 }
4481 else
4482 {
4483 pipe_err = -1;
4484 }
4485 }
4486
4487 /* - stderr, as required */
4488 if (pipe_err == 0)
4489 switch (n)
4490 {
4491 case POPEN_3:
4492 {
4493 if (dup2(p_fd[2].wr, 2) == 2)
4494 {
4495 close(p_fd[2].wr);
4496 i = fcntl(p_fd[2].rd, F_GETFD, 0);
4497 fcntl(p_fd[2].rd, F_SETFD, i | FD_CLOEXEC);
4498 if ((p_s[2] = fdopen(p_fd[2].rd, rd_mode)) == NULL)
4499 {
4500 close(p_fd[2].rd);
4501 pipe_err = -1;
4502 }
4503 }
4504 else
4505 {
4506 pipe_err = -1;
4507 }
4508 break;
4509 }
4510
4511 case POPEN_4:
4512 {
4513 if (dup2(1, 2) != 2)
4514 {
4515 pipe_err = -1;
4516 }
4517 break;
4518 }
4519 }
4520
4521 /* spawn the child process */
4522 if (pipe_err == 0)
4523 {
4524 pipe_pid = spawnlp(P_NOWAIT, shell, shell, opt, cmdstring, (char *)0);
4525 if (pipe_pid == -1)
4526 {
4527 pipe_err = -1;
4528 }
4529 else
4530 {
4531 /* save the PID into the FILE structure
4532 * NOTE: this implementation doesn't actually
4533 * take advantage of this, but do it for
4534 * completeness - AIM Apr01
4535 */
4536 for (i = 0; i < file_count; i++)
4537 p_s[i]->_pid = pipe_pid;
4538 }
4539 }
4540
4541 /* reset standard IO to normal */
4542 for (i = 0; i < 3; i++)
4543 {
4544 dup2(stdio[i].handle, i);
4545 fcntl(i, F_SETFD, stdio[i].flags);
4546 close(stdio[i].handle);
4547 }
4548
4549 /* if any remnant problems, clean up and bail out */
4550 if (pipe_err < 0)
4551 {
4552 for (i = 0; i < 3; i++)
4553 {
4554 close(p_fd[i].rd);
4555 close(p_fd[i].wr);
4556 }
4557 errno = EPIPE;
4558 return posix_error_with_filename(cmdstring);
4559 }
4560
4561 /* build tuple of file objects to return */
4562 if ((p_f[0] = PyFile_FromFile(p_s[0], cmdstring, wr_mode, _PyPclose)) != NULL)
4563 PyFile_SetBufSize(p_f[0], bufsize);
4564 if ((p_f[1] = PyFile_FromFile(p_s[1], cmdstring, rd_mode, _PyPclose)) != NULL)
4565 PyFile_SetBufSize(p_f[1], bufsize);
4566 if (n == POPEN_3)
4567 {
4568 if ((p_f[2] = PyFile_FromFile(p_s[2], cmdstring, rd_mode, _PyPclose)) != NULL)
4569 PyFile_SetBufSize(p_f[0], bufsize);
Raymond Hettinger8ae46892003-10-12 19:09:37 +00004570 f = PyTuple_Pack(3, p_f[0], p_f[1], p_f[2]);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004571 }
4572 else
Raymond Hettinger8ae46892003-10-12 19:09:37 +00004573 f = PyTuple_Pack(2, p_f[0], p_f[1]);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004574
4575 /*
4576 * Insert the files we've created into the process dictionary
4577 * all referencing the list with the process handle and the
4578 * initial number of files (see description below in _PyPclose).
4579 * Since if _PyPclose later tried to wait on a process when all
4580 * handles weren't closed, it could create a deadlock with the
4581 * child, we spend some energy here to try to ensure that we
4582 * either insert all file handles into the dictionary or none
4583 * at all. It's a little clumsy with the various popen modes
4584 * and variable number of files involved.
4585 */
4586 if (!_PyPopenProcs)
4587 {
4588 _PyPopenProcs = PyDict_New();
4589 }
4590
4591 if (_PyPopenProcs)
4592 {
4593 PyObject *procObj, *pidObj, *intObj, *fileObj[3];
4594 int ins_rc[3];
4595
4596 fileObj[0] = fileObj[1] = fileObj[2] = NULL;
4597 ins_rc[0] = ins_rc[1] = ins_rc[2] = 0;
4598
4599 procObj = PyList_New(2);
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00004600 pidObj = PyLong_FromPid(pipe_pid);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004601 intObj = PyInt_FromLong((long) file_count);
4602
4603 if (procObj && pidObj && intObj)
4604 {
4605 PyList_SetItem(procObj, 0, pidObj);
4606 PyList_SetItem(procObj, 1, intObj);
4607
4608 fileObj[0] = PyLong_FromVoidPtr(p_s[0]);
4609 if (fileObj[0])
4610 {
4611 ins_rc[0] = PyDict_SetItem(_PyPopenProcs,
4612 fileObj[0],
4613 procObj);
4614 }
4615 fileObj[1] = PyLong_FromVoidPtr(p_s[1]);
4616 if (fileObj[1])
4617 {
4618 ins_rc[1] = PyDict_SetItem(_PyPopenProcs,
4619 fileObj[1],
4620 procObj);
4621 }
4622 if (file_count >= 3)
4623 {
4624 fileObj[2] = PyLong_FromVoidPtr(p_s[2]);
4625 if (fileObj[2])
4626 {
4627 ins_rc[2] = PyDict_SetItem(_PyPopenProcs,
4628 fileObj[2],
4629 procObj);
4630 }
4631 }
4632
4633 if (ins_rc[0] < 0 || !fileObj[0] ||
4634 ins_rc[1] < 0 || (file_count > 1 && !fileObj[1]) ||
4635 ins_rc[2] < 0 || (file_count > 2 && !fileObj[2]))
4636 {
4637 /* Something failed - remove any dictionary
4638 * entries that did make it.
4639 */
4640 if (!ins_rc[0] && fileObj[0])
4641 {
4642 PyDict_DelItem(_PyPopenProcs,
4643 fileObj[0]);
4644 }
4645 if (!ins_rc[1] && fileObj[1])
4646 {
4647 PyDict_DelItem(_PyPopenProcs,
4648 fileObj[1]);
4649 }
4650 if (!ins_rc[2] && fileObj[2])
4651 {
4652 PyDict_DelItem(_PyPopenProcs,
4653 fileObj[2]);
4654 }
4655 }
4656 }
Tim Peters11b23062003-04-23 02:39:17 +00004657
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004658 /*
4659 * Clean up our localized references for the dictionary keys
4660 * and value since PyDict_SetItem will Py_INCREF any copies
4661 * that got placed in the dictionary.
4662 */
4663 Py_XDECREF(procObj);
4664 Py_XDECREF(fileObj[0]);
4665 Py_XDECREF(fileObj[1]);
4666 Py_XDECREF(fileObj[2]);
4667 }
4668
4669 /* Child is launched. */
4670 return f;
4671}
4672
4673/*
4674 * Wrapper for fclose() to use for popen* files, so we can retrieve the
4675 * exit code for the child process and return as a result of the close.
4676 *
4677 * This function uses the _PyPopenProcs dictionary in order to map the
4678 * input file pointer to information about the process that was
4679 * originally created by the popen* call that created the file pointer.
4680 * The dictionary uses the file pointer as a key (with one entry
4681 * inserted for each file returned by the original popen* call) and a
4682 * single list object as the value for all files from a single call.
4683 * The list object contains the Win32 process handle at [0], and a file
4684 * count at [1], which is initialized to the total number of file
4685 * handles using that list.
4686 *
4687 * This function closes whichever handle it is passed, and decrements
4688 * the file count in the dictionary for the process handle pointed to
4689 * by this file. On the last close (when the file count reaches zero),
4690 * this function will wait for the child process and then return its
4691 * exit code as the result of the close() operation. This permits the
4692 * files to be closed in any order - it is always the close() of the
4693 * final handle that will return the exit code.
Andrew MacIntyrebaf25b02003-04-21 14:22:36 +00004694 *
4695 * NOTE: This function is currently called with the GIL released.
4696 * hence we use the GILState API to manage our state.
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004697 */
4698
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004699static int _PyPclose(FILE *file)
4700{
4701 int result;
4702 int exit_code;
Christian Heimesd491d712008-02-01 18:49:26 +00004703 pid_t pipe_pid;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004704 PyObject *procObj, *pidObj, *intObj, *fileObj;
4705 int file_count;
4706#ifdef WITH_THREAD
Andrew MacIntyrebaf25b02003-04-21 14:22:36 +00004707 PyGILState_STATE state;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004708#endif
4709
4710 /* Close the file handle first, to ensure it can't block the
4711 * child from exiting if it's the last handle.
4712 */
4713 result = fclose(file);
4714
4715#ifdef WITH_THREAD
Andrew MacIntyrebaf25b02003-04-21 14:22:36 +00004716 state = PyGILState_Ensure();
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004717#endif
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004718 if (_PyPopenProcs)
4719 {
4720 if ((fileObj = PyLong_FromVoidPtr(file)) != NULL &&
4721 (procObj = PyDict_GetItem(_PyPopenProcs,
4722 fileObj)) != NULL &&
4723 (pidObj = PyList_GetItem(procObj,0)) != NULL &&
4724 (intObj = PyList_GetItem(procObj,1)) != NULL)
4725 {
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00004726 pipe_pid = (pid_t) PyLong_AsPid(pidObj);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004727 file_count = (int) PyInt_AsLong(intObj);
4728
4729 if (file_count > 1)
4730 {
4731 /* Still other files referencing process */
4732 file_count--;
4733 PyList_SetItem(procObj,1,
4734 PyInt_FromLong((long) file_count));
4735 }
4736 else
4737 {
4738 /* Last file for this process */
4739 if (result != EOF &&
4740 waitpid(pipe_pid, &exit_code, 0) == pipe_pid)
4741 {
4742 /* extract exit status */
4743 if (WIFEXITED(exit_code))
4744 {
4745 result = WEXITSTATUS(exit_code);
4746 }
4747 else
4748 {
4749 errno = EPIPE;
4750 result = -1;
4751 }
4752 }
4753 else
4754 {
4755 /* Indicate failure - this will cause the file object
4756 * to raise an I/O error and translate the last
4757 * error code from errno. We do have a problem with
4758 * last errors that overlap the normal errno table,
4759 * but that's a consistent problem with the file object.
4760 */
4761 result = -1;
4762 }
4763 }
4764
4765 /* Remove this file pointer from dictionary */
4766 PyDict_DelItem(_PyPopenProcs, fileObj);
4767
4768 if (PyDict_Size(_PyPopenProcs) == 0)
4769 {
4770 Py_DECREF(_PyPopenProcs);
4771 _PyPopenProcs = NULL;
4772 }
4773
4774 } /* if object retrieval ok */
4775
4776 Py_XDECREF(fileObj);
4777 } /* if _PyPopenProcs */
4778
4779#ifdef WITH_THREAD
Andrew MacIntyrebaf25b02003-04-21 14:22:36 +00004780 PyGILState_Release(state);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004781#endif
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004782 return result;
4783}
4784
4785#endif /* PYCC_??? */
4786
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00004787#elif defined(MS_WINDOWS)
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004788
4789/*
4790 * Portable 'popen' replacement for Win32.
4791 *
4792 * Written by Bill Tutt <billtut@microsoft.com>. Minor tweaks
4793 * and 2.0 integration by Fredrik Lundh <fredrik@pythonware.com>
Mark Hammondb37a3732000-08-14 04:47:33 +00004794 * Return code handling by David Bolen <db3l@fitlinxx.com>.
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004795 */
4796
4797#include <malloc.h>
4798#include <io.h>
4799#include <fcntl.h>
4800
4801/* These tell _PyPopen() wether to return 1, 2, or 3 file objects. */
4802#define POPEN_1 1
4803#define POPEN_2 2
4804#define POPEN_3 3
4805#define POPEN_4 4
4806
4807static PyObject *_PyPopen(char *, int, int);
Fredrik Lundh56055a42000-07-23 19:47:12 +00004808static int _PyPclose(FILE *file);
4809
4810/*
4811 * Internal dictionary mapping popen* file pointers to process handles,
Mark Hammondb37a3732000-08-14 04:47:33 +00004812 * for use when retrieving the process exit code. See _PyPclose() below
4813 * for more information on this dictionary's use.
Fredrik Lundh56055a42000-07-23 19:47:12 +00004814 */
4815static PyObject *_PyPopenProcs = NULL;
4816
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004817
4818/* popen that works from a GUI.
4819 *
4820 * The result of this function is a pipe (file) connected to the
4821 * processes stdin or stdout, depending on the requested mode.
4822 */
4823
4824static PyObject *
4825posix_popen(PyObject *self, PyObject *args)
4826{
Raymond Hettingerb5cb6652003-09-01 22:25:41 +00004827 PyObject *f;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004828 int tm = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00004829
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004830 char *cmdstring;
4831 char *mode = "r";
Fredrik Lundhbb7eeff2000-07-09 17:59:32 +00004832 int bufsize = -1;
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004833 if (!PyArg_ParseTuple(args, "s|si:popen", &cmdstring, &mode, &bufsize))
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004834 return NULL;
4835
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004836 if (*mode == 'r')
4837 tm = _O_RDONLY;
4838 else if (*mode != 'w') {
Fred Drake661ea262000-10-24 19:57:45 +00004839 PyErr_SetString(PyExc_ValueError, "popen() arg 2 must be 'r' or 'w'");
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004840 return NULL;
4841 } else
4842 tm = _O_WRONLY;
Tim Peters5aa91602002-01-30 05:46:57 +00004843
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004844 if (bufsize != -1) {
Fred Drake661ea262000-10-24 19:57:45 +00004845 PyErr_SetString(PyExc_ValueError, "popen() arg 3 must be -1");
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004846 return NULL;
4847 }
4848
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004849 if (*(mode+1) == 't')
Fredrik Lundhbb7eeff2000-07-09 17:59:32 +00004850 f = _PyPopen(cmdstring, tm | _O_TEXT, POPEN_1);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004851 else if (*(mode+1) == 'b')
Fredrik Lundhbb7eeff2000-07-09 17:59:32 +00004852 f = _PyPopen(cmdstring, tm | _O_BINARY, POPEN_1);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004853 else
4854 f = _PyPopen(cmdstring, tm | _O_TEXT, POPEN_1);
4855
4856 return f;
4857}
4858
4859/* Variation on win32pipe.popen
4860 *
4861 * The result of this function is a pipe (file) connected to the
4862 * process's stdin, and a pipe connected to the process's stdout.
4863 */
4864
4865static PyObject *
4866win32_popen2(PyObject *self, PyObject *args)
4867{
4868 PyObject *f;
4869 int tm=0;
Tim Peters5aa91602002-01-30 05:46:57 +00004870
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004871 char *cmdstring;
4872 char *mode = "t";
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004873 int bufsize = -1;
4874 if (!PyArg_ParseTuple(args, "s|si:popen2", &cmdstring, &mode, &bufsize))
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004875 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00004876
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004877 if (*mode == 't')
4878 tm = _O_TEXT;
4879 else if (*mode != 'b') {
Fred Drake661ea262000-10-24 19:57:45 +00004880 PyErr_SetString(PyExc_ValueError, "popen2() arg 2 must be 't' or 'b'");
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004881 return NULL;
4882 } else
4883 tm = _O_BINARY;
Tim Peters5aa91602002-01-30 05:46:57 +00004884
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004885 if (bufsize != -1) {
Fred Drake661ea262000-10-24 19:57:45 +00004886 PyErr_SetString(PyExc_ValueError, "popen2() arg 3 must be -1");
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004887 return NULL;
4888 }
4889
4890 f = _PyPopen(cmdstring, tm, POPEN_2);
Tim Peters5aa91602002-01-30 05:46:57 +00004891
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004892 return f;
4893}
4894
4895/*
4896 * Variation on <om win32pipe.popen>
Fredrik Lundhbb7eeff2000-07-09 17:59:32 +00004897 *
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004898 * The result of this function is 3 pipes - the process's stdin,
4899 * stdout and stderr
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004900 */
4901
4902static PyObject *
4903win32_popen3(PyObject *self, PyObject *args)
4904{
4905 PyObject *f;
4906 int tm = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00004907
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004908 char *cmdstring;
4909 char *mode = "t";
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004910 int bufsize = -1;
4911 if (!PyArg_ParseTuple(args, "s|si:popen3", &cmdstring, &mode, &bufsize))
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004912 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00004913
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004914 if (*mode == 't')
4915 tm = _O_TEXT;
4916 else if (*mode != 'b') {
Fred Drake661ea262000-10-24 19:57:45 +00004917 PyErr_SetString(PyExc_ValueError, "popen3() arg 2 must be 't' or 'b'");
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004918 return NULL;
4919 } else
4920 tm = _O_BINARY;
Tim Peters5aa91602002-01-30 05:46:57 +00004921
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004922 if (bufsize != -1) {
Fred Drake661ea262000-10-24 19:57:45 +00004923 PyErr_SetString(PyExc_ValueError, "popen3() arg 3 must be -1");
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004924 return NULL;
4925 }
4926
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004927 f = _PyPopen(cmdstring, tm, POPEN_3);
Tim Peters5aa91602002-01-30 05:46:57 +00004928
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004929 return f;
4930}
4931
4932/*
4933 * Variation on win32pipe.popen
4934 *
Tim Peters5aa91602002-01-30 05:46:57 +00004935 * The result of this function is 2 pipes - the processes stdin,
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004936 * and stdout+stderr combined as a single pipe.
4937 */
4938
4939static PyObject *
4940win32_popen4(PyObject *self, PyObject *args)
4941{
4942 PyObject *f;
4943 int tm = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00004944
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004945 char *cmdstring;
4946 char *mode = "t";
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004947 int bufsize = -1;
4948 if (!PyArg_ParseTuple(args, "s|si:popen4", &cmdstring, &mode, &bufsize))
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004949 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00004950
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004951 if (*mode == 't')
4952 tm = _O_TEXT;
4953 else if (*mode != 'b') {
Fred Drake661ea262000-10-24 19:57:45 +00004954 PyErr_SetString(PyExc_ValueError, "popen4() arg 2 must be 't' or 'b'");
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004955 return NULL;
4956 } else
4957 tm = _O_BINARY;
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004958
4959 if (bufsize != -1) {
Fred Drake661ea262000-10-24 19:57:45 +00004960 PyErr_SetString(PyExc_ValueError, "popen4() arg 3 must be -1");
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004961 return NULL;
4962 }
4963
Fredrik Lundhbb7eeff2000-07-09 17:59:32 +00004964 f = _PyPopen(cmdstring, tm, POPEN_4);
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004965
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004966 return f;
4967}
4968
Mark Hammond08501372001-01-31 07:30:29 +00004969static BOOL
Mark Hammondb37a3732000-08-14 04:47:33 +00004970_PyPopenCreateProcess(char *cmdstring,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00004971 HANDLE hStdin,
4972 HANDLE hStdout,
Mark Hammondb37a3732000-08-14 04:47:33 +00004973 HANDLE hStderr,
4974 HANDLE *hProcess)
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004975{
4976 PROCESS_INFORMATION piProcInfo;
4977 STARTUPINFO siStartInfo;
Mark Hammondfe51c6d2002-08-02 02:27:13 +00004978 DWORD dwProcessFlags = 0; /* no NEW_CONSOLE by default for Ctrl+C handling */
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004979 char *s1,*s2, *s3 = " /c ";
Mark Hammond08501372001-01-31 07:30:29 +00004980 const char *szConsoleSpawn = "w9xpopen.exe";
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004981 int i;
Martin v. Löwis18e16552006-02-15 17:27:45 +00004982 Py_ssize_t x;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004983
4984 if (i = GetEnvironmentVariable("COMSPEC",NULL,0)) {
Tim Peters402d5982001-08-27 06:37:48 +00004985 char *comshell;
4986
Tim Peters92e4dd82002-10-05 01:47:34 +00004987 s1 = (char *)alloca(i);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004988 if (!(x = GetEnvironmentVariable("COMSPEC", s1, i)))
Martin v. Löwis18e16552006-02-15 17:27:45 +00004989 /* x < i, so x fits into an integer */
4990 return (int)x;
Tim Peters402d5982001-08-27 06:37:48 +00004991
4992 /* Explicitly check if we are using COMMAND.COM. If we are
4993 * then use the w9xpopen hack.
4994 */
4995 comshell = s1 + x;
4996 while (comshell >= s1 && *comshell != '\\')
4997 --comshell;
4998 ++comshell;
4999
5000 if (GetVersion() < 0x80000000 &&
5001 _stricmp(comshell, "command.com") != 0) {
5002 /* NT/2000 and not using command.com. */
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005003 x = i + strlen(s3) + strlen(cmdstring) + 1;
Tim Peters92e4dd82002-10-05 01:47:34 +00005004 s2 = (char *)alloca(x);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005005 ZeroMemory(s2, x);
Tim Peters75cdad52001-11-28 22:07:30 +00005006 PyOS_snprintf(s2, x, "%s%s%s", s1, s3, cmdstring);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005007 }
5008 else {
5009 /*
Tim Peters402d5982001-08-27 06:37:48 +00005010 * Oh gag, we're on Win9x or using COMMAND.COM. Use
5011 * the workaround listed in KB: Q150956
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005012 */
Mark Hammond08501372001-01-31 07:30:29 +00005013 char modulepath[_MAX_PATH];
5014 struct stat statinfo;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005015 GetModuleFileName(NULL, modulepath, sizeof(modulepath));
Martin v. Löwis26fd9602006-04-22 11:15:41 +00005016 for (x = i = 0; modulepath[i]; i++)
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00005017 if (modulepath[i] == SEP)
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005018 x = i+1;
5019 modulepath[x] = '\0';
Mark Hammond08501372001-01-31 07:30:29 +00005020 /* Create the full-name to w9xpopen, so we can test it exists */
Tim Peters5aa91602002-01-30 05:46:57 +00005021 strncat(modulepath,
5022 szConsoleSpawn,
Mark Hammond08501372001-01-31 07:30:29 +00005023 (sizeof(modulepath)/sizeof(modulepath[0]))
5024 -strlen(modulepath));
5025 if (stat(modulepath, &statinfo) != 0) {
Kristján Valur Jónsson17b8e972007-04-25 00:10:50 +00005026 size_t mplen = sizeof(modulepath)/sizeof(modulepath[0]);
Tim Peters5aa91602002-01-30 05:46:57 +00005027 /* Eeek - file-not-found - possibly an embedding
5028 situation - see if we can locate it in sys.prefix
Mark Hammond08501372001-01-31 07:30:29 +00005029 */
Tim Peters5aa91602002-01-30 05:46:57 +00005030 strncpy(modulepath,
5031 Py_GetExecPrefix(),
Kristján Valur Jónsson17b8e972007-04-25 00:10:50 +00005032 mplen);
5033 modulepath[mplen-1] = '\0';
Mark Hammond08501372001-01-31 07:30:29 +00005034 if (modulepath[strlen(modulepath)-1] != '\\')
5035 strcat(modulepath, "\\");
Tim Peters5aa91602002-01-30 05:46:57 +00005036 strncat(modulepath,
5037 szConsoleSpawn,
Kristján Valur Jónsson17b8e972007-04-25 00:10:50 +00005038 mplen-strlen(modulepath));
Mark Hammond08501372001-01-31 07:30:29 +00005039 /* No where else to look - raise an easily identifiable
5040 error, rather than leaving Windows to report
5041 "file not found" - as the user is probably blissfully
5042 unaware this shim EXE is used, and it will confuse them.
5043 (well, it confused me for a while ;-)
5044 */
5045 if (stat(modulepath, &statinfo) != 0) {
Tim Peters5aa91602002-01-30 05:46:57 +00005046 PyErr_Format(PyExc_RuntimeError,
Mark Hammond08501372001-01-31 07:30:29 +00005047 "Can not locate '%s' which is needed "
Tim Peters402d5982001-08-27 06:37:48 +00005048 "for popen to work with your shell "
5049 "or platform.",
Mark Hammond08501372001-01-31 07:30:29 +00005050 szConsoleSpawn);
5051 return FALSE;
5052 }
5053 }
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005054 x = i + strlen(s3) + strlen(cmdstring) + 1 +
Tim Peters5aa91602002-01-30 05:46:57 +00005055 strlen(modulepath) +
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005056 strlen(szConsoleSpawn) + 1;
Mark Hammond08501372001-01-31 07:30:29 +00005057
Tim Peters92e4dd82002-10-05 01:47:34 +00005058 s2 = (char *)alloca(x);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005059 ZeroMemory(s2, x);
Mark Hammonde7fefbf2002-04-03 01:47:00 +00005060 /* To maintain correct argument passing semantics,
5061 we pass the command-line as it stands, and allow
5062 quoting to be applied. w9xpopen.exe will then
5063 use its argv vector, and re-quote the necessary
5064 args for the ultimate child process.
5065 */
Tim Peters75cdad52001-11-28 22:07:30 +00005066 PyOS_snprintf(
5067 s2, x,
Mark Hammonde7fefbf2002-04-03 01:47:00 +00005068 "\"%s\" %s%s%s",
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005069 modulepath,
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005070 s1,
5071 s3,
5072 cmdstring);
Mark Hammondfe51c6d2002-08-02 02:27:13 +00005073 /* Not passing CREATE_NEW_CONSOLE has been known to
Tim Peters11b23062003-04-23 02:39:17 +00005074 cause random failures on win9x. Specifically a
Mark Hammondfe51c6d2002-08-02 02:27:13 +00005075 dialog:
5076 "Your program accessed mem currently in use at xxx"
5077 and a hopeful warning about the stability of your
5078 system.
Mark Dickinson3e4caeb2009-02-21 20:27:01 +00005079 Cost is Ctrl+C won't kill children, but anyone
Mark Hammondfe51c6d2002-08-02 02:27:13 +00005080 who cares can have a go!
5081 */
5082 dwProcessFlags |= CREATE_NEW_CONSOLE;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005083 }
5084 }
5085
5086 /* Could be an else here to try cmd.exe / command.com in the path
5087 Now we'll just error out.. */
Mark Hammond08501372001-01-31 07:30:29 +00005088 else {
Tim Peters402d5982001-08-27 06:37:48 +00005089 PyErr_SetString(PyExc_RuntimeError,
5090 "Cannot locate a COMSPEC environment variable to "
5091 "use as the shell");
Mark Hammond08501372001-01-31 07:30:29 +00005092 return FALSE;
5093 }
Tim Peters5aa91602002-01-30 05:46:57 +00005094
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005095 ZeroMemory(&siStartInfo, sizeof(STARTUPINFO));
5096 siStartInfo.cb = sizeof(STARTUPINFO);
5097 siStartInfo.dwFlags = STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW;
5098 siStartInfo.hStdInput = hStdin;
5099 siStartInfo.hStdOutput = hStdout;
5100 siStartInfo.hStdError = hStderr;
5101 siStartInfo.wShowWindow = SW_HIDE;
5102
5103 if (CreateProcess(NULL,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005104 s2,
5105 NULL,
5106 NULL,
5107 TRUE,
Mark Hammondfe51c6d2002-08-02 02:27:13 +00005108 dwProcessFlags,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005109 NULL,
5110 NULL,
5111 &siStartInfo,
5112 &piProcInfo) ) {
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005113 /* Close the handles now so anyone waiting is woken. */
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005114 CloseHandle(piProcInfo.hThread);
Fredrik Lundh56055a42000-07-23 19:47:12 +00005115
Mark Hammondb37a3732000-08-14 04:47:33 +00005116 /* Return process handle */
5117 *hProcess = piProcInfo.hProcess;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005118 return TRUE;
5119 }
Tim Peters402d5982001-08-27 06:37:48 +00005120 win32_error("CreateProcess", s2);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005121 return FALSE;
5122}
5123
5124/* The following code is based off of KB: Q190351 */
5125
5126static PyObject *
5127_PyPopen(char *cmdstring, int mode, int n)
5128{
5129 HANDLE hChildStdinRd, hChildStdinWr, hChildStdoutRd, hChildStdoutWr,
5130 hChildStderrRd, hChildStderrWr, hChildStdinWrDup, hChildStdoutRdDup,
Mark Hammondb37a3732000-08-14 04:47:33 +00005131 hChildStderrRdDup, hProcess; /* hChildStdoutWrDup; */
Tim Peters5aa91602002-01-30 05:46:57 +00005132
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005133 SECURITY_ATTRIBUTES saAttr;
5134 BOOL fSuccess;
5135 int fd1, fd2, fd3;
5136 FILE *f1, *f2, *f3;
Mark Hammondb37a3732000-08-14 04:47:33 +00005137 long file_count;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005138 PyObject *f;
5139
5140 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
5141 saAttr.bInheritHandle = TRUE;
5142 saAttr.lpSecurityDescriptor = NULL;
5143
5144 if (!CreatePipe(&hChildStdinRd, &hChildStdinWr, &saAttr, 0))
5145 return win32_error("CreatePipe", NULL);
5146
5147 /* Create new output read handle and the input write handle. Set
5148 * the inheritance properties to FALSE. Otherwise, the child inherits
Walter Dörwaldf0dfc7a2003-10-20 14:01:56 +00005149 * these handles; resulting in non-closeable handles to the pipes
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005150 * being created. */
5151 fSuccess = DuplicateHandle(GetCurrentProcess(), hChildStdinWr,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005152 GetCurrentProcess(), &hChildStdinWrDup, 0,
5153 FALSE,
5154 DUPLICATE_SAME_ACCESS);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005155 if (!fSuccess)
5156 return win32_error("DuplicateHandle", NULL);
5157
5158 /* Close the inheritable version of ChildStdin
5159 that we're using. */
5160 CloseHandle(hChildStdinWr);
5161
5162 if (!CreatePipe(&hChildStdoutRd, &hChildStdoutWr, &saAttr, 0))
5163 return win32_error("CreatePipe", NULL);
5164
5165 fSuccess = DuplicateHandle(GetCurrentProcess(), hChildStdoutRd,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005166 GetCurrentProcess(), &hChildStdoutRdDup, 0,
5167 FALSE, DUPLICATE_SAME_ACCESS);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005168 if (!fSuccess)
5169 return win32_error("DuplicateHandle", NULL);
5170
5171 /* Close the inheritable version of ChildStdout
5172 that we're using. */
5173 CloseHandle(hChildStdoutRd);
5174
5175 if (n != POPEN_4) {
5176 if (!CreatePipe(&hChildStderrRd, &hChildStderrWr, &saAttr, 0))
5177 return win32_error("CreatePipe", NULL);
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005178 fSuccess = DuplicateHandle(GetCurrentProcess(),
5179 hChildStderrRd,
5180 GetCurrentProcess(),
5181 &hChildStderrRdDup, 0,
5182 FALSE, DUPLICATE_SAME_ACCESS);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005183 if (!fSuccess)
5184 return win32_error("DuplicateHandle", NULL);
5185 /* Close the inheritable version of ChildStdErr that we're using. */
5186 CloseHandle(hChildStderrRd);
5187 }
Tim Peters5aa91602002-01-30 05:46:57 +00005188
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005189 switch (n) {
5190 case POPEN_1:
5191 switch (mode & (_O_RDONLY | _O_TEXT | _O_BINARY | _O_WRONLY)) {
5192 case _O_WRONLY | _O_TEXT:
5193 /* Case for writing to child Stdin in text mode. */
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005194 fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005195 f1 = _fdopen(fd1, "w");
Fredrik Lundh56055a42000-07-23 19:47:12 +00005196 f = PyFile_FromFile(f1, cmdstring, "w", _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005197 PyFile_SetBufSize(f, 0);
5198 /* We don't care about these pipes anymore, so close them. */
5199 CloseHandle(hChildStdoutRdDup);
5200 CloseHandle(hChildStderrRdDup);
5201 break;
5202
5203 case _O_RDONLY | _O_TEXT:
5204 /* Case for reading from child Stdout in text mode. */
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005205 fd1 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005206 f1 = _fdopen(fd1, "r");
Fredrik Lundh56055a42000-07-23 19:47:12 +00005207 f = PyFile_FromFile(f1, cmdstring, "r", _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005208 PyFile_SetBufSize(f, 0);
5209 /* We don't care about these pipes anymore, so close them. */
5210 CloseHandle(hChildStdinWrDup);
5211 CloseHandle(hChildStderrRdDup);
5212 break;
5213
5214 case _O_RDONLY | _O_BINARY:
5215 /* Case for readinig from child Stdout in binary mode. */
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005216 fd1 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005217 f1 = _fdopen(fd1, "rb");
Fredrik Lundh56055a42000-07-23 19:47:12 +00005218 f = PyFile_FromFile(f1, cmdstring, "rb", _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005219 PyFile_SetBufSize(f, 0);
5220 /* We don't care about these pipes anymore, so close them. */
5221 CloseHandle(hChildStdinWrDup);
5222 CloseHandle(hChildStderrRdDup);
5223 break;
5224
5225 case _O_WRONLY | _O_BINARY:
5226 /* Case for writing to child Stdin in binary mode. */
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005227 fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005228 f1 = _fdopen(fd1, "wb");
Fredrik Lundh56055a42000-07-23 19:47:12 +00005229 f = PyFile_FromFile(f1, cmdstring, "wb", _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005230 PyFile_SetBufSize(f, 0);
5231 /* We don't care about these pipes anymore, so close them. */
5232 CloseHandle(hChildStdoutRdDup);
5233 CloseHandle(hChildStderrRdDup);
5234 break;
5235 }
Mark Hammondb37a3732000-08-14 04:47:33 +00005236 file_count = 1;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005237 break;
Tim Peters5aa91602002-01-30 05:46:57 +00005238
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005239 case POPEN_2:
5240 case POPEN_4:
5241 {
5242 char *m1, *m2;
5243 PyObject *p1, *p2;
Tim Peters5aa91602002-01-30 05:46:57 +00005244
Tim Peters7dca21e2002-08-19 00:42:29 +00005245 if (mode & _O_TEXT) {
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005246 m1 = "r";
5247 m2 = "w";
5248 } else {
5249 m1 = "rb";
5250 m2 = "wb";
5251 }
5252
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005253 fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005254 f1 = _fdopen(fd1, m2);
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005255 fd2 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005256 f2 = _fdopen(fd2, m1);
Fredrik Lundh56055a42000-07-23 19:47:12 +00005257 p1 = PyFile_FromFile(f1, cmdstring, m2, _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005258 PyFile_SetBufSize(p1, 0);
Mark Hammondb37a3732000-08-14 04:47:33 +00005259 p2 = PyFile_FromFile(f2, cmdstring, m1, _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005260 PyFile_SetBufSize(p2, 0);
5261
5262 if (n != 4)
5263 CloseHandle(hChildStderrRdDup);
5264
Raymond Hettinger8ae46892003-10-12 19:09:37 +00005265 f = PyTuple_Pack(2,p1,p2);
Mark Hammond64aae662001-01-31 05:38:47 +00005266 Py_XDECREF(p1);
5267 Py_XDECREF(p2);
Mark Hammondb37a3732000-08-14 04:47:33 +00005268 file_count = 2;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005269 break;
5270 }
Tim Peters5aa91602002-01-30 05:46:57 +00005271
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005272 case POPEN_3:
5273 {
5274 char *m1, *m2;
5275 PyObject *p1, *p2, *p3;
Tim Peters5aa91602002-01-30 05:46:57 +00005276
Tim Peters7dca21e2002-08-19 00:42:29 +00005277 if (mode & _O_TEXT) {
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005278 m1 = "r";
5279 m2 = "w";
5280 } else {
5281 m1 = "rb";
5282 m2 = "wb";
5283 }
5284
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005285 fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005286 f1 = _fdopen(fd1, m2);
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005287 fd2 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005288 f2 = _fdopen(fd2, m1);
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005289 fd3 = _open_osfhandle((Py_intptr_t)hChildStderrRdDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005290 f3 = _fdopen(fd3, m1);
Fredrik Lundh56055a42000-07-23 19:47:12 +00005291 p1 = PyFile_FromFile(f1, cmdstring, m2, _PyPclose);
Mark Hammondb37a3732000-08-14 04:47:33 +00005292 p2 = PyFile_FromFile(f2, cmdstring, m1, _PyPclose);
5293 p3 = PyFile_FromFile(f3, cmdstring, m1, _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005294 PyFile_SetBufSize(p1, 0);
5295 PyFile_SetBufSize(p2, 0);
5296 PyFile_SetBufSize(p3, 0);
Raymond Hettinger8ae46892003-10-12 19:09:37 +00005297 f = PyTuple_Pack(3,p1,p2,p3);
Mark Hammond64aae662001-01-31 05:38:47 +00005298 Py_XDECREF(p1);
5299 Py_XDECREF(p2);
5300 Py_XDECREF(p3);
Mark Hammondb37a3732000-08-14 04:47:33 +00005301 file_count = 3;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005302 break;
5303 }
5304 }
5305
5306 if (n == POPEN_4) {
5307 if (!_PyPopenCreateProcess(cmdstring,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005308 hChildStdinRd,
5309 hChildStdoutWr,
Mark Hammondb37a3732000-08-14 04:47:33 +00005310 hChildStdoutWr,
5311 &hProcess))
Mark Hammond08501372001-01-31 07:30:29 +00005312 return NULL;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005313 }
5314 else {
5315 if (!_PyPopenCreateProcess(cmdstring,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005316 hChildStdinRd,
5317 hChildStdoutWr,
Mark Hammondb37a3732000-08-14 04:47:33 +00005318 hChildStderrWr,
5319 &hProcess))
Mark Hammond08501372001-01-31 07:30:29 +00005320 return NULL;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005321 }
5322
Mark Hammondb37a3732000-08-14 04:47:33 +00005323 /*
5324 * Insert the files we've created into the process dictionary
5325 * all referencing the list with the process handle and the
5326 * initial number of files (see description below in _PyPclose).
5327 * Since if _PyPclose later tried to wait on a process when all
5328 * handles weren't closed, it could create a deadlock with the
5329 * child, we spend some energy here to try to ensure that we
5330 * either insert all file handles into the dictionary or none
5331 * at all. It's a little clumsy with the various popen modes
5332 * and variable number of files involved.
5333 */
5334 if (!_PyPopenProcs) {
5335 _PyPopenProcs = PyDict_New();
5336 }
5337
5338 if (_PyPopenProcs) {
5339 PyObject *procObj, *hProcessObj, *intObj, *fileObj[3];
5340 int ins_rc[3];
5341
5342 fileObj[0] = fileObj[1] = fileObj[2] = NULL;
5343 ins_rc[0] = ins_rc[1] = ins_rc[2] = 0;
5344
5345 procObj = PyList_New(2);
5346 hProcessObj = PyLong_FromVoidPtr(hProcess);
5347 intObj = PyInt_FromLong(file_count);
5348
5349 if (procObj && hProcessObj && intObj) {
5350 PyList_SetItem(procObj,0,hProcessObj);
5351 PyList_SetItem(procObj,1,intObj);
5352
5353 fileObj[0] = PyLong_FromVoidPtr(f1);
5354 if (fileObj[0]) {
5355 ins_rc[0] = PyDict_SetItem(_PyPopenProcs,
5356 fileObj[0],
5357 procObj);
5358 }
5359 if (file_count >= 2) {
5360 fileObj[1] = PyLong_FromVoidPtr(f2);
5361 if (fileObj[1]) {
5362 ins_rc[1] = PyDict_SetItem(_PyPopenProcs,
5363 fileObj[1],
5364 procObj);
5365 }
5366 }
5367 if (file_count >= 3) {
5368 fileObj[2] = PyLong_FromVoidPtr(f3);
5369 if (fileObj[2]) {
5370 ins_rc[2] = PyDict_SetItem(_PyPopenProcs,
5371 fileObj[2],
5372 procObj);
5373 }
5374 }
5375
5376 if (ins_rc[0] < 0 || !fileObj[0] ||
5377 ins_rc[1] < 0 || (file_count > 1 && !fileObj[1]) ||
5378 ins_rc[2] < 0 || (file_count > 2 && !fileObj[2])) {
5379 /* Something failed - remove any dictionary
5380 * entries that did make it.
5381 */
5382 if (!ins_rc[0] && fileObj[0]) {
5383 PyDict_DelItem(_PyPopenProcs,
5384 fileObj[0]);
5385 }
5386 if (!ins_rc[1] && fileObj[1]) {
5387 PyDict_DelItem(_PyPopenProcs,
5388 fileObj[1]);
5389 }
5390 if (!ins_rc[2] && fileObj[2]) {
5391 PyDict_DelItem(_PyPopenProcs,
5392 fileObj[2]);
5393 }
5394 }
5395 }
Tim Peters5aa91602002-01-30 05:46:57 +00005396
Mark Hammondb37a3732000-08-14 04:47:33 +00005397 /*
5398 * Clean up our localized references for the dictionary keys
5399 * and value since PyDict_SetItem will Py_INCREF any copies
5400 * that got placed in the dictionary.
5401 */
5402 Py_XDECREF(procObj);
5403 Py_XDECREF(fileObj[0]);
5404 Py_XDECREF(fileObj[1]);
5405 Py_XDECREF(fileObj[2]);
5406 }
5407
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005408 /* Child is launched. Close the parents copy of those pipe
5409 * handles that only the child should have open. You need to
5410 * make sure that no handles to the write end of the output pipe
5411 * are maintained in this process or else the pipe will not close
5412 * when the child process exits and the ReadFile will hang. */
5413
5414 if (!CloseHandle(hChildStdinRd))
5415 return win32_error("CloseHandle", NULL);
Tim Peters5aa91602002-01-30 05:46:57 +00005416
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005417 if (!CloseHandle(hChildStdoutWr))
5418 return win32_error("CloseHandle", NULL);
Tim Peters5aa91602002-01-30 05:46:57 +00005419
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005420 if ((n != 4) && (!CloseHandle(hChildStderrWr)))
5421 return win32_error("CloseHandle", NULL);
5422
5423 return f;
5424}
Fredrik Lundh56055a42000-07-23 19:47:12 +00005425
5426/*
5427 * Wrapper for fclose() to use for popen* files, so we can retrieve the
5428 * exit code for the child process and return as a result of the close.
Mark Hammondb37a3732000-08-14 04:47:33 +00005429 *
5430 * This function uses the _PyPopenProcs dictionary in order to map the
5431 * input file pointer to information about the process that was
5432 * originally created by the popen* call that created the file pointer.
5433 * The dictionary uses the file pointer as a key (with one entry
5434 * inserted for each file returned by the original popen* call) and a
5435 * single list object as the value for all files from a single call.
5436 * The list object contains the Win32 process handle at [0], and a file
5437 * count at [1], which is initialized to the total number of file
5438 * handles using that list.
5439 *
5440 * This function closes whichever handle it is passed, and decrements
5441 * the file count in the dictionary for the process handle pointed to
5442 * by this file. On the last close (when the file count reaches zero),
5443 * this function will wait for the child process and then return its
5444 * exit code as the result of the close() operation. This permits the
5445 * files to be closed in any order - it is always the close() of the
5446 * final handle that will return the exit code.
Mark Hammond8d98d2c2003-04-19 15:41:53 +00005447 *
5448 * NOTE: This function is currently called with the GIL released.
5449 * hence we use the GILState API to manage our state.
Fredrik Lundh56055a42000-07-23 19:47:12 +00005450 */
Tim Peters736aa322000-09-01 06:51:24 +00005451
Fredrik Lundh56055a42000-07-23 19:47:12 +00005452static int _PyPclose(FILE *file)
5453{
Fredrik Lundh20318932000-07-26 17:29:12 +00005454 int result;
Fredrik Lundh56055a42000-07-23 19:47:12 +00005455 DWORD exit_code;
5456 HANDLE hProcess;
Mark Hammondb37a3732000-08-14 04:47:33 +00005457 PyObject *procObj, *hProcessObj, *intObj, *fileObj;
5458 long file_count;
Tim Peters736aa322000-09-01 06:51:24 +00005459#ifdef WITH_THREAD
Mark Hammond8d98d2c2003-04-19 15:41:53 +00005460 PyGILState_STATE state;
Tim Peters736aa322000-09-01 06:51:24 +00005461#endif
5462
Fredrik Lundh20318932000-07-26 17:29:12 +00005463 /* Close the file handle first, to ensure it can't block the
Mark Hammondb37a3732000-08-14 04:47:33 +00005464 * child from exiting if it's the last handle.
Fredrik Lundh20318932000-07-26 17:29:12 +00005465 */
5466 result = fclose(file);
Tim Peters736aa322000-09-01 06:51:24 +00005467#ifdef WITH_THREAD
Mark Hammond8d98d2c2003-04-19 15:41:53 +00005468 state = PyGILState_Ensure();
Tim Peters736aa322000-09-01 06:51:24 +00005469#endif
Fredrik Lundh56055a42000-07-23 19:47:12 +00005470 if (_PyPopenProcs) {
Mark Hammondb37a3732000-08-14 04:47:33 +00005471 if ((fileObj = PyLong_FromVoidPtr(file)) != NULL &&
5472 (procObj = PyDict_GetItem(_PyPopenProcs,
5473 fileObj)) != NULL &&
5474 (hProcessObj = PyList_GetItem(procObj,0)) != NULL &&
5475 (intObj = PyList_GetItem(procObj,1)) != NULL) {
5476
5477 hProcess = PyLong_AsVoidPtr(hProcessObj);
5478 file_count = PyInt_AsLong(intObj);
5479
5480 if (file_count > 1) {
5481 /* Still other files referencing process */
5482 file_count--;
5483 PyList_SetItem(procObj,1,
5484 PyInt_FromLong(file_count));
5485 } else {
5486 /* Last file for this process */
Fredrik Lundh20318932000-07-26 17:29:12 +00005487 if (result != EOF &&
5488 WaitForSingleObject(hProcess, INFINITE) != WAIT_FAILED &&
5489 GetExitCodeProcess(hProcess, &exit_code)) {
Fredrik Lundh56055a42000-07-23 19:47:12 +00005490 /* Possible truncation here in 16-bit environments, but
5491 * real exit codes are just the lower byte in any event.
5492 */
5493 result = exit_code;
Fredrik Lundh56055a42000-07-23 19:47:12 +00005494 } else {
Fredrik Lundh20318932000-07-26 17:29:12 +00005495 /* Indicate failure - this will cause the file object
5496 * to raise an I/O error and translate the last Win32
5497 * error code from errno. We do have a problem with
5498 * last errors that overlap the normal errno table,
5499 * but that's a consistent problem with the file object.
Fredrik Lundh56055a42000-07-23 19:47:12 +00005500 */
Fredrik Lundh20318932000-07-26 17:29:12 +00005501 if (result != EOF) {
5502 /* If the error wasn't from the fclose(), then
5503 * set errno for the file object error handling.
5504 */
5505 errno = GetLastError();
5506 }
5507 result = -1;
Fredrik Lundh56055a42000-07-23 19:47:12 +00005508 }
5509
5510 /* Free up the native handle at this point */
5511 CloseHandle(hProcess);
Mark Hammondb37a3732000-08-14 04:47:33 +00005512 }
Fredrik Lundh56055a42000-07-23 19:47:12 +00005513
Mark Hammondb37a3732000-08-14 04:47:33 +00005514 /* Remove this file pointer from dictionary */
5515 PyDict_DelItem(_PyPopenProcs, fileObj);
5516
5517 if (PyDict_Size(_PyPopenProcs) == 0) {
5518 Py_DECREF(_PyPopenProcs);
5519 _PyPopenProcs = NULL;
5520 }
5521
5522 } /* if object retrieval ok */
5523
5524 Py_XDECREF(fileObj);
Fredrik Lundh56055a42000-07-23 19:47:12 +00005525 } /* if _PyPopenProcs */
5526
Tim Peters736aa322000-09-01 06:51:24 +00005527#ifdef WITH_THREAD
Mark Hammond8d98d2c2003-04-19 15:41:53 +00005528 PyGILState_Release(state);
Tim Peters736aa322000-09-01 06:51:24 +00005529#endif
Fredrik Lundh56055a42000-07-23 19:47:12 +00005530 return result;
5531}
Tim Peters9acdd3a2000-09-01 19:26:36 +00005532
5533#else /* which OS? */
Barry Warsaw53699e91996-12-10 23:23:01 +00005534static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005535posix_popen(PyObject *self, PyObject *args)
Guido van Rossum3b066191991-06-04 19:40:25 +00005536{
Guido van Rossuma6a1e531995-01-10 15:36:38 +00005537 char *name;
5538 char *mode = "r";
5539 int bufsize = -1;
Guido van Rossum3b066191991-06-04 19:40:25 +00005540 FILE *fp;
Barry Warsaw53699e91996-12-10 23:23:01 +00005541 PyObject *f;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00005542 if (!PyArg_ParseTuple(args, "s|si:popen", &name, &mode, &bufsize))
Guido van Rossum3b066191991-06-04 19:40:25 +00005543 return NULL;
Martin v. Löwis9ad853b2003-10-31 10:01:53 +00005544 /* Strip mode of binary or text modifiers */
5545 if (strcmp(mode, "rb") == 0 || strcmp(mode, "rt") == 0)
5546 mode = "r";
5547 else if (strcmp(mode, "wb") == 0 || strcmp(mode, "wt") == 0)
5548 mode = "w";
Barry Warsaw53699e91996-12-10 23:23:01 +00005549 Py_BEGIN_ALLOW_THREADS
Guido van Rossumef0a00e1992-01-27 16:51:30 +00005550 fp = popen(name, mode);
Barry Warsaw53699e91996-12-10 23:23:01 +00005551 Py_END_ALLOW_THREADS
Guido van Rossum3b066191991-06-04 19:40:25 +00005552 if (fp == NULL)
5553 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00005554 f = PyFile_FromFile(fp, name, mode, pclose);
Guido van Rossuma6a1e531995-01-10 15:36:38 +00005555 if (f != NULL)
Barry Warsaw53699e91996-12-10 23:23:01 +00005556 PyFile_SetBufSize(f, bufsize);
Guido van Rossuma6a1e531995-01-10 15:36:38 +00005557 return f;
Guido van Rossum3b066191991-06-04 19:40:25 +00005558}
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00005559
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00005560#endif /* PYOS_??? */
Guido van Rossuma4916fa1996-05-23 22:58:55 +00005561#endif /* HAVE_POPEN */
Guido van Rossum3b066191991-06-04 19:40:25 +00005562
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005563
Guido van Rossumb6775db1994-08-01 11:34:53 +00005564#ifdef HAVE_SETUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005565PyDoc_STRVAR(posix_setuid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005566"setuid(uid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005567Set the current process's user id.");
5568
Barry Warsaw53699e91996-12-10 23:23:01 +00005569static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005570posix_setuid(PyObject *self, PyObject *args)
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005571{
Gregory P. Smith6d307932009-04-05 23:43:58 +00005572 long uid_arg;
5573 uid_t uid;
5574 if (!PyArg_ParseTuple(args, "l:setuid", &uid_arg))
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005575 return NULL;
Gregory P. Smith6d307932009-04-05 23:43:58 +00005576 uid = uid_arg;
5577 if (uid != uid_arg) {
5578 PyErr_SetString(PyExc_OverflowError, "user id too big");
5579 return NULL;
5580 }
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005581 if (setuid(uid) < 0)
5582 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00005583 Py_INCREF(Py_None);
5584 return Py_None;
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005585}
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00005586#endif /* HAVE_SETUID */
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005587
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005588
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005589#ifdef HAVE_SETEUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005590PyDoc_STRVAR(posix_seteuid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005591"seteuid(uid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005592Set the current process's effective user id.");
5593
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005594static PyObject *
5595posix_seteuid (PyObject *self, PyObject *args)
5596{
Gregory P. Smith6d307932009-04-05 23:43:58 +00005597 long euid_arg;
5598 uid_t euid;
5599 if (!PyArg_ParseTuple(args, "l", &euid_arg))
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005600 return NULL;
Gregory P. Smith6d307932009-04-05 23:43:58 +00005601 euid = euid_arg;
5602 if (euid != euid_arg) {
5603 PyErr_SetString(PyExc_OverflowError, "user id too big");
5604 return NULL;
5605 }
5606 if (seteuid(euid) < 0) {
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005607 return posix_error();
5608 } else {
5609 Py_INCREF(Py_None);
5610 return Py_None;
5611 }
5612}
5613#endif /* HAVE_SETEUID */
5614
5615#ifdef HAVE_SETEGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005616PyDoc_STRVAR(posix_setegid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005617"setegid(gid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005618Set the current process's effective group id.");
5619
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005620static PyObject *
5621posix_setegid (PyObject *self, PyObject *args)
5622{
Gregory P. Smith6d307932009-04-05 23:43:58 +00005623 long egid_arg;
5624 gid_t egid;
5625 if (!PyArg_ParseTuple(args, "l", &egid_arg))
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005626 return NULL;
Gregory P. Smith6d307932009-04-05 23:43:58 +00005627 egid = egid_arg;
5628 if (egid != egid_arg) {
5629 PyErr_SetString(PyExc_OverflowError, "group id too big");
5630 return NULL;
5631 }
5632 if (setegid(egid) < 0) {
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005633 return posix_error();
5634 } else {
5635 Py_INCREF(Py_None);
5636 return Py_None;
5637 }
5638}
5639#endif /* HAVE_SETEGID */
5640
5641#ifdef HAVE_SETREUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005642PyDoc_STRVAR(posix_setreuid__doc__,
Neal Norwitz94f1d712004-02-16 01:26:34 +00005643"setreuid(ruid, euid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005644Set the current process's real and effective user ids.");
5645
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005646static PyObject *
5647posix_setreuid (PyObject *self, PyObject *args)
5648{
Gregory P. Smith6d307932009-04-05 23:43:58 +00005649 long ruid_arg, euid_arg;
5650 uid_t ruid, euid;
5651 if (!PyArg_ParseTuple(args, "ll", &ruid_arg, &euid_arg))
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005652 return NULL;
Gregory P. Smith6a65f852010-03-01 05:43:43 +00005653 if (ruid_arg == -1)
5654 ruid = (uid_t)-1; /* let the compiler choose how -1 fits */
5655 else
5656 ruid = ruid_arg; /* otherwise, assign from our long */
5657 if (euid_arg == -1)
5658 euid = (uid_t)-1;
5659 else
5660 euid = euid_arg;
5661 if ((euid_arg != -1 && euid != euid_arg) ||
5662 (ruid_arg != -1 && ruid != ruid_arg)) {
Gregory P. Smith6d307932009-04-05 23:43:58 +00005663 PyErr_SetString(PyExc_OverflowError, "user id too big");
5664 return NULL;
5665 }
5666 if (setreuid(ruid, euid) < 0) {
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005667 return posix_error();
5668 } else {
5669 Py_INCREF(Py_None);
5670 return Py_None;
5671 }
5672}
5673#endif /* HAVE_SETREUID */
5674
5675#ifdef HAVE_SETREGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005676PyDoc_STRVAR(posix_setregid__doc__,
Neal Norwitz94f1d712004-02-16 01:26:34 +00005677"setregid(rgid, egid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005678Set the current process's real and effective group ids.");
5679
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005680static PyObject *
5681posix_setregid (PyObject *self, PyObject *args)
5682{
Gregory P. Smith6d307932009-04-05 23:43:58 +00005683 long rgid_arg, egid_arg;
5684 gid_t rgid, egid;
5685 if (!PyArg_ParseTuple(args, "ll", &rgid_arg, &egid_arg))
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005686 return NULL;
Gregory P. Smith6a65f852010-03-01 05:43:43 +00005687 if (rgid_arg == -1)
5688 rgid = (gid_t)-1; /* let the compiler choose how -1 fits */
5689 else
5690 rgid = rgid_arg; /* otherwise, assign from our long */
5691 if (egid_arg == -1)
5692 egid = (gid_t)-1;
5693 else
5694 egid = egid_arg;
5695 if ((egid_arg != -1 && egid != egid_arg) ||
5696 (rgid_arg != -1 && rgid != rgid_arg)) {
Gregory P. Smith6d307932009-04-05 23:43:58 +00005697 PyErr_SetString(PyExc_OverflowError, "group id too big");
5698 return NULL;
5699 }
5700 if (setregid(rgid, egid) < 0) {
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005701 return posix_error();
5702 } else {
5703 Py_INCREF(Py_None);
5704 return Py_None;
5705 }
5706}
5707#endif /* HAVE_SETREGID */
5708
Guido van Rossumb6775db1994-08-01 11:34:53 +00005709#ifdef HAVE_SETGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005710PyDoc_STRVAR(posix_setgid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005711"setgid(gid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005712Set the current process's group id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005713
Barry Warsaw53699e91996-12-10 23:23:01 +00005714static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005715posix_setgid(PyObject *self, PyObject *args)
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005716{
Gregory P. Smith6d307932009-04-05 23:43:58 +00005717 long gid_arg;
5718 gid_t gid;
5719 if (!PyArg_ParseTuple(args, "l:setgid", &gid_arg))
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005720 return NULL;
Gregory P. Smith6d307932009-04-05 23:43:58 +00005721 gid = gid_arg;
5722 if (gid != gid_arg) {
5723 PyErr_SetString(PyExc_OverflowError, "group id too big");
5724 return NULL;
5725 }
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005726 if (setgid(gid) < 0)
5727 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00005728 Py_INCREF(Py_None);
5729 return Py_None;
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005730}
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00005731#endif /* HAVE_SETGID */
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005732
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005733#ifdef HAVE_SETGROUPS
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005734PyDoc_STRVAR(posix_setgroups__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005735"setgroups(list)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005736Set the groups of the current process to list.");
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005737
5738static PyObject *
Georg Brandl96a8c392006-05-29 21:04:52 +00005739posix_setgroups(PyObject *self, PyObject *groups)
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005740{
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005741 int i, len;
5742 gid_t grouplist[MAX_GROUPS];
Tim Peters5aa91602002-01-30 05:46:57 +00005743
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005744 if (!PySequence_Check(groups)) {
5745 PyErr_SetString(PyExc_TypeError, "setgroups argument must be a sequence");
5746 return NULL;
5747 }
5748 len = PySequence_Size(groups);
5749 if (len > MAX_GROUPS) {
5750 PyErr_SetString(PyExc_ValueError, "too many groups");
5751 return NULL;
5752 }
5753 for(i = 0; i < len; i++) {
5754 PyObject *elem;
5755 elem = PySequence_GetItem(groups, i);
5756 if (!elem)
5757 return NULL;
5758 if (!PyInt_Check(elem)) {
Georg Brandla13c2442005-11-22 19:30:31 +00005759 if (!PyLong_Check(elem)) {
5760 PyErr_SetString(PyExc_TypeError,
5761 "groups must be integers");
5762 Py_DECREF(elem);
5763 return NULL;
5764 } else {
5765 unsigned long x = PyLong_AsUnsignedLong(elem);
5766 if (PyErr_Occurred()) {
5767 PyErr_SetString(PyExc_TypeError,
5768 "group id too big");
5769 Py_DECREF(elem);
5770 return NULL;
5771 }
5772 grouplist[i] = x;
Gregory P. Smith6d307932009-04-05 23:43:58 +00005773 /* read back to see if it fits in gid_t */
Georg Brandla13c2442005-11-22 19:30:31 +00005774 if (grouplist[i] != x) {
5775 PyErr_SetString(PyExc_TypeError,
5776 "group id too big");
5777 Py_DECREF(elem);
5778 return NULL;
5779 }
5780 }
5781 } else {
5782 long x = PyInt_AsLong(elem);
5783 grouplist[i] = x;
5784 if (grouplist[i] != x) {
5785 PyErr_SetString(PyExc_TypeError,
5786 "group id too big");
5787 Py_DECREF(elem);
5788 return NULL;
5789 }
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005790 }
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005791 Py_DECREF(elem);
5792 }
5793
5794 if (setgroups(len, grouplist) < 0)
5795 return posix_error();
5796 Py_INCREF(Py_None);
5797 return Py_None;
5798}
5799#endif /* HAVE_SETGROUPS */
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005800
Neal Norwitz6c2f9132006-03-20 07:25:26 +00005801#if defined(HAVE_WAIT3) || defined(HAVE_WAIT4)
Neal Norwitz05a45592006-03-20 06:30:08 +00005802static PyObject *
Christian Heimesd491d712008-02-01 18:49:26 +00005803wait_helper(pid_t pid, int status, struct rusage *ru)
Neal Norwitz05a45592006-03-20 06:30:08 +00005804{
5805 PyObject *result;
5806 static PyObject *struct_rusage;
5807
5808 if (pid == -1)
5809 return posix_error();
5810
5811 if (struct_rusage == NULL) {
Christian Heimes000a0742008-01-03 22:16:32 +00005812 PyObject *m = PyImport_ImportModuleNoBlock("resource");
Neal Norwitz05a45592006-03-20 06:30:08 +00005813 if (m == NULL)
5814 return NULL;
5815 struct_rusage = PyObject_GetAttrString(m, "struct_rusage");
5816 Py_DECREF(m);
5817 if (struct_rusage == NULL)
5818 return NULL;
5819 }
5820
5821 /* XXX(nnorwitz): Copied (w/mods) from resource.c, there should be only one. */
5822 result = PyStructSequence_New((PyTypeObject*) struct_rusage);
5823 if (!result)
5824 return NULL;
5825
5826#ifndef doubletime
5827#define doubletime(TV) ((double)(TV).tv_sec + (TV).tv_usec * 0.000001)
5828#endif
5829
5830 PyStructSequence_SET_ITEM(result, 0,
5831 PyFloat_FromDouble(doubletime(ru->ru_utime)));
5832 PyStructSequence_SET_ITEM(result, 1,
5833 PyFloat_FromDouble(doubletime(ru->ru_stime)));
5834#define SET_INT(result, index, value)\
5835 PyStructSequence_SET_ITEM(result, index, PyInt_FromLong(value))
5836 SET_INT(result, 2, ru->ru_maxrss);
5837 SET_INT(result, 3, ru->ru_ixrss);
5838 SET_INT(result, 4, ru->ru_idrss);
5839 SET_INT(result, 5, ru->ru_isrss);
5840 SET_INT(result, 6, ru->ru_minflt);
5841 SET_INT(result, 7, ru->ru_majflt);
5842 SET_INT(result, 8, ru->ru_nswap);
5843 SET_INT(result, 9, ru->ru_inblock);
5844 SET_INT(result, 10, ru->ru_oublock);
5845 SET_INT(result, 11, ru->ru_msgsnd);
5846 SET_INT(result, 12, ru->ru_msgrcv);
5847 SET_INT(result, 13, ru->ru_nsignals);
5848 SET_INT(result, 14, ru->ru_nvcsw);
5849 SET_INT(result, 15, ru->ru_nivcsw);
5850#undef SET_INT
5851
5852 if (PyErr_Occurred()) {
5853 Py_DECREF(result);
5854 return NULL;
5855 }
5856
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00005857 return Py_BuildValue("NiN", PyLong_FromPid(pid), status, result);
Neal Norwitz05a45592006-03-20 06:30:08 +00005858}
Neal Norwitz6c2f9132006-03-20 07:25:26 +00005859#endif /* HAVE_WAIT3 || HAVE_WAIT4 */
Neal Norwitz05a45592006-03-20 06:30:08 +00005860
5861#ifdef HAVE_WAIT3
5862PyDoc_STRVAR(posix_wait3__doc__,
5863"wait3(options) -> (pid, status, rusage)\n\n\
5864Wait for completion of a child process.");
5865
5866static PyObject *
5867posix_wait3(PyObject *self, PyObject *args)
5868{
Christian Heimesd491d712008-02-01 18:49:26 +00005869 pid_t pid;
5870 int options;
Neal Norwitz05a45592006-03-20 06:30:08 +00005871 struct rusage ru;
Neal Norwitzd5a37542006-03-20 06:48:34 +00005872 WAIT_TYPE status;
5873 WAIT_STATUS_INT(status) = 0;
Neal Norwitz05a45592006-03-20 06:30:08 +00005874
5875 if (!PyArg_ParseTuple(args, "i:wait3", &options))
5876 return NULL;
5877
5878 Py_BEGIN_ALLOW_THREADS
5879 pid = wait3(&status, options, &ru);
5880 Py_END_ALLOW_THREADS
5881
Neal Norwitzd5a37542006-03-20 06:48:34 +00005882 return wait_helper(pid, WAIT_STATUS_INT(status), &ru);
Neal Norwitz05a45592006-03-20 06:30:08 +00005883}
5884#endif /* HAVE_WAIT3 */
5885
5886#ifdef HAVE_WAIT4
5887PyDoc_STRVAR(posix_wait4__doc__,
5888"wait4(pid, options) -> (pid, status, rusage)\n\n\
5889Wait for completion of a given child process.");
5890
5891static PyObject *
5892posix_wait4(PyObject *self, PyObject *args)
5893{
Christian Heimesd491d712008-02-01 18:49:26 +00005894 pid_t pid;
5895 int options;
Neal Norwitz05a45592006-03-20 06:30:08 +00005896 struct rusage ru;
Neal Norwitzd5a37542006-03-20 06:48:34 +00005897 WAIT_TYPE status;
5898 WAIT_STATUS_INT(status) = 0;
Neal Norwitz05a45592006-03-20 06:30:08 +00005899
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00005900 if (!PyArg_ParseTuple(args, PARSE_PID "i:wait4", &pid, &options))
Neal Norwitz05a45592006-03-20 06:30:08 +00005901 return NULL;
5902
5903 Py_BEGIN_ALLOW_THREADS
5904 pid = wait4(pid, &status, options, &ru);
5905 Py_END_ALLOW_THREADS
5906
Neal Norwitzd5a37542006-03-20 06:48:34 +00005907 return wait_helper(pid, WAIT_STATUS_INT(status), &ru);
Neal Norwitz05a45592006-03-20 06:30:08 +00005908}
5909#endif /* HAVE_WAIT4 */
5910
Guido van Rossumb6775db1994-08-01 11:34:53 +00005911#ifdef HAVE_WAITPID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005912PyDoc_STRVAR(posix_waitpid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005913"waitpid(pid, options) -> (pid, status)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005914Wait for completion of a given child process.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005915
Barry Warsaw53699e91996-12-10 23:23:01 +00005916static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005917posix_waitpid(PyObject *self, PyObject *args)
Guido van Rossum85e3b011991-06-03 12:42:10 +00005918{
Christian Heimesd491d712008-02-01 18:49:26 +00005919 pid_t pid;
5920 int options;
Neal Norwitzd5a37542006-03-20 06:48:34 +00005921 WAIT_TYPE status;
5922 WAIT_STATUS_INT(status) = 0;
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00005923
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00005924 if (!PyArg_ParseTuple(args, PARSE_PID "i:waitpid", &pid, &options))
Guido van Rossum21803b81992-08-09 12:55:27 +00005925 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00005926 Py_BEGIN_ALLOW_THREADS
Guido van Rossume6a3aa61999-02-01 16:15:30 +00005927 pid = waitpid(pid, &status, options);
Barry Warsaw53699e91996-12-10 23:23:01 +00005928 Py_END_ALLOW_THREADS
Guido van Rossum85e3b011991-06-03 12:42:10 +00005929 if (pid == -1)
5930 return posix_error();
Neal Norwitzd5a37542006-03-20 06:48:34 +00005931
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00005932 return Py_BuildValue("Ni", PyLong_FromPid(pid), WAIT_STATUS_INT(status));
Guido van Rossum21803b81992-08-09 12:55:27 +00005933}
5934
Tim Petersab034fa2002-02-01 11:27:43 +00005935#elif defined(HAVE_CWAIT)
5936
5937/* MS C has a variant of waitpid() that's usable for most purposes. */
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005938PyDoc_STRVAR(posix_waitpid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005939"waitpid(pid, options) -> (pid, status << 8)\n\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005940"Wait for completion of a given process. options is ignored on Windows.");
Tim Petersab034fa2002-02-01 11:27:43 +00005941
5942static PyObject *
5943posix_waitpid(PyObject *self, PyObject *args)
5944{
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005945 Py_intptr_t pid;
Martin v. Löwis18e16552006-02-15 17:27:45 +00005946 int status, options;
Tim Petersab034fa2002-02-01 11:27:43 +00005947
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00005948 if (!PyArg_ParseTuple(args, PARSE_PID "i:waitpid", &pid, &options))
Tim Petersab034fa2002-02-01 11:27:43 +00005949 return NULL;
5950 Py_BEGIN_ALLOW_THREADS
5951 pid = _cwait(&status, pid, options);
5952 Py_END_ALLOW_THREADS
5953 if (pid == -1)
5954 return posix_error();
Neal Norwitzd5a37542006-03-20 06:48:34 +00005955
5956 /* shift the status left a byte so this is more like the POSIX waitpid */
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00005957 return Py_BuildValue("Ni", PyLong_FromPid(pid), status << 8);
Tim Petersab034fa2002-02-01 11:27:43 +00005958}
5959#endif /* HAVE_WAITPID || HAVE_CWAIT */
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005960
Guido van Rossumad0ee831995-03-01 10:34:45 +00005961#ifdef HAVE_WAIT
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005962PyDoc_STRVAR(posix_wait__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005963"wait() -> (pid, status)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005964Wait for completion of a child process.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005965
Barry Warsaw53699e91996-12-10 23:23:01 +00005966static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00005967posix_wait(PyObject *self, PyObject *noargs)
Guido van Rossum21803b81992-08-09 12:55:27 +00005968{
Christian Heimesd491d712008-02-01 18:49:26 +00005969 pid_t pid;
Neal Norwitzd5a37542006-03-20 06:48:34 +00005970 WAIT_TYPE status;
5971 WAIT_STATUS_INT(status) = 0;
Neal Norwitze241ce82003-02-17 18:17:05 +00005972
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00005973 Py_BEGIN_ALLOW_THREADS
5974 pid = wait(&status);
Barry Warsaw53699e91996-12-10 23:23:01 +00005975 Py_END_ALLOW_THREADS
Guido van Rossum21803b81992-08-09 12:55:27 +00005976 if (pid == -1)
5977 return posix_error();
Neal Norwitzd5a37542006-03-20 06:48:34 +00005978
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00005979 return Py_BuildValue("Ni", PyLong_FromPid(pid), WAIT_STATUS_INT(status));
Guido van Rossum85e3b011991-06-03 12:42:10 +00005980}
Guido van Rossumad0ee831995-03-01 10:34:45 +00005981#endif
Guido van Rossum85e3b011991-06-03 12:42:10 +00005982
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005983
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005984PyDoc_STRVAR(posix_lstat__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005985"lstat(path) -> stat result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005986Like stat(path), but do not follow symbolic links.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005987
Barry Warsaw53699e91996-12-10 23:23:01 +00005988static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005989posix_lstat(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00005990{
Guido van Rossumb6775db1994-08-01 11:34:53 +00005991#ifdef HAVE_LSTAT
Mark Hammondc2e85bd2002-10-03 05:10:39 +00005992 return posix_do_stat(self, args, "et:lstat", lstat, NULL, NULL);
Guido van Rossumb6775db1994-08-01 11:34:53 +00005993#else /* !HAVE_LSTAT */
Mark Hammondc2e85bd2002-10-03 05:10:39 +00005994#ifdef MS_WINDOWS
Martin v. Löwis14694662006-02-03 12:54:16 +00005995 return posix_do_stat(self, args, "et:lstat", STAT, "U:lstat", win32_wstat);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00005996#else
5997 return posix_do_stat(self, args, "et:lstat", STAT, NULL, NULL);
5998#endif
Guido van Rossumb6775db1994-08-01 11:34:53 +00005999#endif /* !HAVE_LSTAT */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00006000}
6001
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006002
Guido van Rossumb6775db1994-08-01 11:34:53 +00006003#ifdef HAVE_READLINK
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006004PyDoc_STRVAR(posix_readlink__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006005"readlink(path) -> path\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006006Return a string representing the path to which the symbolic link points.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006007
Barry Warsaw53699e91996-12-10 23:23:01 +00006008static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006009posix_readlink(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00006010{
Ronald Oussoren10168f22006-10-22 10:45:18 +00006011 PyObject* v;
Guido van Rossumb6775db1994-08-01 11:34:53 +00006012 char buf[MAXPATHLEN];
Guido van Rossumef0a00e1992-01-27 16:51:30 +00006013 char *path;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00006014 int n;
Ronald Oussoren10168f22006-10-22 10:45:18 +00006015#ifdef Py_USING_UNICODE
6016 int arg_is_unicode = 0;
6017#endif
6018
6019 if (!PyArg_ParseTuple(args, "et:readlink",
6020 Py_FileSystemDefaultEncoding, &path))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00006021 return NULL;
Ronald Oussoren10168f22006-10-22 10:45:18 +00006022#ifdef Py_USING_UNICODE
6023 v = PySequence_GetItem(args, 0);
Neal Norwitz91a57212007-08-12 17:11:13 +00006024 if (v == NULL) {
6025 PyMem_Free(path);
6026 return NULL;
6027 }
Ronald Oussoren10168f22006-10-22 10:45:18 +00006028
6029 if (PyUnicode_Check(v)) {
6030 arg_is_unicode = 1;
6031 }
6032 Py_DECREF(v);
6033#endif
6034
Barry Warsaw53699e91996-12-10 23:23:01 +00006035 Py_BEGIN_ALLOW_THREADS
Guido van Rossum50e61dc1992-03-27 17:22:31 +00006036 n = readlink(path, buf, (int) sizeof buf);
Barry Warsaw53699e91996-12-10 23:23:01 +00006037 Py_END_ALLOW_THREADS
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00006038 if (n < 0)
Neal Norwitz91a57212007-08-12 17:11:13 +00006039 return posix_error_with_allocated_filename(path);
Ronald Oussoren10168f22006-10-22 10:45:18 +00006040
Neal Norwitz91a57212007-08-12 17:11:13 +00006041 PyMem_Free(path);
Gregory P. Smithdd96db62008-06-09 04:58:54 +00006042 v = PyString_FromStringAndSize(buf, n);
Ronald Oussoren10168f22006-10-22 10:45:18 +00006043#ifdef Py_USING_UNICODE
6044 if (arg_is_unicode) {
6045 PyObject *w;
6046
6047 w = PyUnicode_FromEncodedObject(v,
6048 Py_FileSystemDefaultEncoding,
6049 "strict");
6050 if (w != NULL) {
6051 Py_DECREF(v);
6052 v = w;
6053 }
6054 else {
6055 /* fall back to the original byte string, as
6056 discussed in patch #683592 */
6057 PyErr_Clear();
6058 }
6059 }
6060#endif
6061 return v;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00006062}
Guido van Rossumb6775db1994-08-01 11:34:53 +00006063#endif /* HAVE_READLINK */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00006064
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006065
Guido van Rossumb6775db1994-08-01 11:34:53 +00006066#ifdef HAVE_SYMLINK
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006067PyDoc_STRVAR(posix_symlink__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006068"symlink(src, dst)\n\n\
Brett Cannon807413d2003-06-11 00:18:09 +00006069Create a symbolic link pointing to src named dst.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006070
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006071static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006072posix_symlink(PyObject *self, PyObject *args)
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006073{
Martin v. Löwis4fc2bda2006-05-04 12:04:27 +00006074 return posix_2str(args, "etet:symlink", symlink);
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006075}
6076#endif /* HAVE_SYMLINK */
6077
6078
6079#ifdef HAVE_TIMES
Guido van Rossumd48f2521997-12-05 22:19:34 +00006080#if defined(PYCC_VACPP) && defined(PYOS_OS2)
6081static long
Thomas Woutersf3f33dc2000-07-21 06:00:07 +00006082system_uptime(void)
Guido van Rossumd48f2521997-12-05 22:19:34 +00006083{
6084 ULONG value = 0;
6085
6086 Py_BEGIN_ALLOW_THREADS
6087 DosQuerySysInfo(QSV_MS_COUNT, QSV_MS_COUNT, &value, sizeof(value));
6088 Py_END_ALLOW_THREADS
6089
6090 return value;
6091}
6092
6093static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00006094posix_times(PyObject *self, PyObject *noargs)
Guido van Rossumd48f2521997-12-05 22:19:34 +00006095{
Guido van Rossumd48f2521997-12-05 22:19:34 +00006096 /* Currently Only Uptime is Provided -- Others Later */
6097 return Py_BuildValue("ddddd",
6098 (double)0 /* t.tms_utime / HZ */,
6099 (double)0 /* t.tms_stime / HZ */,
6100 (double)0 /* t.tms_cutime / HZ */,
6101 (double)0 /* t.tms_cstime / HZ */,
6102 (double)system_uptime() / 1000);
6103}
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006104#else /* not OS2 */
Martin v. Löwis03824e42008-12-29 18:17:34 +00006105#define NEED_TICKS_PER_SECOND
6106static long ticks_per_second = -1;
Barry Warsaw53699e91996-12-10 23:23:01 +00006107static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00006108posix_times(PyObject *self, PyObject *noargs)
Guido van Rossum22db57e1992-04-05 14:25:30 +00006109{
6110 struct tms t;
6111 clock_t c;
Guido van Rossum22db57e1992-04-05 14:25:30 +00006112 errno = 0;
6113 c = times(&t);
Guido van Rossum687dd131993-05-17 08:34:16 +00006114 if (c == (clock_t) -1)
6115 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006116 return Py_BuildValue("ddddd",
Martin v. Löwis03824e42008-12-29 18:17:34 +00006117 (double)t.tms_utime / ticks_per_second,
6118 (double)t.tms_stime / ticks_per_second,
6119 (double)t.tms_cutime / ticks_per_second,
6120 (double)t.tms_cstime / ticks_per_second,
6121 (double)c / ticks_per_second);
Guido van Rossum22db57e1992-04-05 14:25:30 +00006122}
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006123#endif /* not OS2 */
Guido van Rossumb6775db1994-08-01 11:34:53 +00006124#endif /* HAVE_TIMES */
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006125
6126
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006127#ifdef MS_WINDOWS
Guido van Rossum14ed0b21994-09-29 09:50:09 +00006128#define HAVE_TIMES /* so the method table will pick it up */
Barry Warsaw53699e91996-12-10 23:23:01 +00006129static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00006130posix_times(PyObject *self, PyObject *noargs)
Guido van Rossum14ed0b21994-09-29 09:50:09 +00006131{
6132 FILETIME create, exit, kernel, user;
6133 HANDLE hProc;
Guido van Rossum14ed0b21994-09-29 09:50:09 +00006134 hProc = GetCurrentProcess();
Guido van Rossumb8c3cbd1999-02-16 14:37:28 +00006135 GetProcessTimes(hProc, &create, &exit, &kernel, &user);
6136 /* The fields of a FILETIME structure are the hi and lo part
6137 of a 64-bit value expressed in 100 nanosecond units.
6138 1e7 is one second in such units; 1e-7 the inverse.
6139 429.4967296 is 2**32 / 1e7 or 2**32 * 1e-7.
6140 */
Barry Warsaw53699e91996-12-10 23:23:01 +00006141 return Py_BuildValue(
6142 "ddddd",
Guido van Rossumb8c3cbd1999-02-16 14:37:28 +00006143 (double)(user.dwHighDateTime*429.4967296 +
6144 user.dwLowDateTime*1e-7),
Georg Brandl0a40ffb2008-02-13 07:20:22 +00006145 (double)(kernel.dwHighDateTime*429.4967296 +
6146 kernel.dwLowDateTime*1e-7),
Barry Warsaw53699e91996-12-10 23:23:01 +00006147 (double)0,
6148 (double)0,
6149 (double)0);
Guido van Rossum14ed0b21994-09-29 09:50:09 +00006150}
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006151#endif /* MS_WINDOWS */
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006152
6153#ifdef HAVE_TIMES
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006154PyDoc_STRVAR(posix_times__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006155"times() -> (utime, stime, cutime, cstime, elapsed_time)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006156Return a tuple of floating point numbers indicating process times.");
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006157#endif
Guido van Rossum22db57e1992-04-05 14:25:30 +00006158
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006159
Martin v. Löwis49ee14d2003-11-10 06:35:36 +00006160#ifdef HAVE_GETSID
6161PyDoc_STRVAR(posix_getsid__doc__,
6162"getsid(pid) -> sid\n\n\
6163Call the system call getsid().");
6164
6165static PyObject *
6166posix_getsid(PyObject *self, PyObject *args)
6167{
Christian Heimesd491d712008-02-01 18:49:26 +00006168 pid_t pid;
6169 int sid;
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00006170 if (!PyArg_ParseTuple(args, PARSE_PID ":getsid", &pid))
Martin v. Löwis49ee14d2003-11-10 06:35:36 +00006171 return NULL;
6172 sid = getsid(pid);
6173 if (sid < 0)
6174 return posix_error();
6175 return PyInt_FromLong((long)sid);
6176}
6177#endif /* HAVE_GETSID */
6178
6179
Guido van Rossumb6775db1994-08-01 11:34:53 +00006180#ifdef HAVE_SETSID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006181PyDoc_STRVAR(posix_setsid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006182"setsid()\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006183Call the system call setsid().");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006184
Barry Warsaw53699e91996-12-10 23:23:01 +00006185static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00006186posix_setsid(PyObject *self, PyObject *noargs)
Guido van Rossumc2670a01992-09-13 20:07:29 +00006187{
Guido van Rossum687dd131993-05-17 08:34:16 +00006188 if (setsid() < 0)
6189 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006190 Py_INCREF(Py_None);
6191 return Py_None;
Guido van Rossumc2670a01992-09-13 20:07:29 +00006192}
Guido van Rossumb6775db1994-08-01 11:34:53 +00006193#endif /* HAVE_SETSID */
Guido van Rossumc2670a01992-09-13 20:07:29 +00006194
Guido van Rossumb6775db1994-08-01 11:34:53 +00006195#ifdef HAVE_SETPGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006196PyDoc_STRVAR(posix_setpgid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006197"setpgid(pid, pgrp)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006198Call the system call setpgid().");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006199
Barry Warsaw53699e91996-12-10 23:23:01 +00006200static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006201posix_setpgid(PyObject *self, PyObject *args)
Guido van Rossumc2670a01992-09-13 20:07:29 +00006202{
Christian Heimesd491d712008-02-01 18:49:26 +00006203 pid_t pid;
6204 int pgrp;
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00006205 if (!PyArg_ParseTuple(args, PARSE_PID "i:setpgid", &pid, &pgrp))
Guido van Rossumc2670a01992-09-13 20:07:29 +00006206 return NULL;
Guido van Rossum687dd131993-05-17 08:34:16 +00006207 if (setpgid(pid, pgrp) < 0)
6208 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006209 Py_INCREF(Py_None);
6210 return Py_None;
Guido van Rossumc2670a01992-09-13 20:07:29 +00006211}
Guido van Rossumb6775db1994-08-01 11:34:53 +00006212#endif /* HAVE_SETPGID */
Guido van Rossumc2670a01992-09-13 20:07:29 +00006213
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006214
Guido van Rossumb6775db1994-08-01 11:34:53 +00006215#ifdef HAVE_TCGETPGRP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006216PyDoc_STRVAR(posix_tcgetpgrp__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006217"tcgetpgrp(fd) -> pgid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006218Return the process group associated with the terminal given by a fd.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006219
Barry Warsaw53699e91996-12-10 23:23:01 +00006220static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006221posix_tcgetpgrp(PyObject *self, PyObject *args)
Guido van Rossum7066dd71992-09-17 17:54:56 +00006222{
Christian Heimese6a80742008-02-03 19:51:13 +00006223 int fd;
6224 pid_t pgid;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006225 if (!PyArg_ParseTuple(args, "i:tcgetpgrp", &fd))
Guido van Rossum7066dd71992-09-17 17:54:56 +00006226 return NULL;
6227 pgid = tcgetpgrp(fd);
Guido van Rossum687dd131993-05-17 08:34:16 +00006228 if (pgid < 0)
6229 return posix_error();
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00006230 return PyLong_FromPid(pgid);
Guido van Rossum7066dd71992-09-17 17:54:56 +00006231}
Guido van Rossumb6775db1994-08-01 11:34:53 +00006232#endif /* HAVE_TCGETPGRP */
Guido van Rossum7066dd71992-09-17 17:54:56 +00006233
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006234
Guido van Rossumb6775db1994-08-01 11:34:53 +00006235#ifdef HAVE_TCSETPGRP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006236PyDoc_STRVAR(posix_tcsetpgrp__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006237"tcsetpgrp(fd, pgid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006238Set the process group associated with the terminal given by a fd.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006239
Barry Warsaw53699e91996-12-10 23:23:01 +00006240static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006241posix_tcsetpgrp(PyObject *self, PyObject *args)
Guido van Rossum7066dd71992-09-17 17:54:56 +00006242{
Antoine Pitrou76dd2d12009-05-23 16:06:49 +00006243 int fd;
6244 pid_t pgid;
6245 if (!PyArg_ParseTuple(args, "i" PARSE_PID ":tcsetpgrp", &fd, &pgid))
Guido van Rossum7066dd71992-09-17 17:54:56 +00006246 return NULL;
Guido van Rossum687dd131993-05-17 08:34:16 +00006247 if (tcsetpgrp(fd, pgid) < 0)
6248 return posix_error();
Barry Warsaw43d68b81996-12-19 22:10:44 +00006249 Py_INCREF(Py_None);
Barry Warsaw53699e91996-12-10 23:23:01 +00006250 return Py_None;
Guido van Rossum7066dd71992-09-17 17:54:56 +00006251}
Guido van Rossumb6775db1994-08-01 11:34:53 +00006252#endif /* HAVE_TCSETPGRP */
Guido van Rossum22db57e1992-04-05 14:25:30 +00006253
Guido van Rossum687dd131993-05-17 08:34:16 +00006254/* Functions acting on file descriptors */
6255
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006256PyDoc_STRVAR(posix_open__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006257"open(filename, flag [, mode=0777]) -> fd\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006258Open a file (for low level IO).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006259
Barry Warsaw53699e91996-12-10 23:23:01 +00006260static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006261posix_open(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006262{
Mark Hammondef8b6542001-05-13 08:04:26 +00006263 char *file = NULL;
Guido van Rossum687dd131993-05-17 08:34:16 +00006264 int flag;
6265 int mode = 0777;
6266 int fd;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00006267
6268#ifdef MS_WINDOWS
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00006269 PyUnicodeObject *po;
6270 if (PyArg_ParseTuple(args, "Ui|i:mkdir", &po, &flag, &mode)) {
6271 Py_BEGIN_ALLOW_THREADS
6272 /* PyUnicode_AS_UNICODE OK without thread
6273 lock as it is a simple dereference. */
6274 fd = _wopen(PyUnicode_AS_UNICODE(po), flag, mode);
6275 Py_END_ALLOW_THREADS
6276 if (fd < 0)
6277 return posix_error();
6278 return PyInt_FromLong((long)fd);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00006279 }
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00006280 /* Drop the argument parsing error as narrow strings
6281 are also valid. */
6282 PyErr_Clear();
Mark Hammondc2e85bd2002-10-03 05:10:39 +00006283#endif
6284
Tim Peters5aa91602002-01-30 05:46:57 +00006285 if (!PyArg_ParseTuple(args, "eti|i",
Mark Hammondef8b6542001-05-13 08:04:26 +00006286 Py_FileSystemDefaultEncoding, &file,
6287 &flag, &mode))
Barry Warsaw43d68b81996-12-19 22:10:44 +00006288 return NULL;
6289
Barry Warsaw53699e91996-12-10 23:23:01 +00006290 Py_BEGIN_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006291 fd = open(file, flag, mode);
Barry Warsaw53699e91996-12-10 23:23:01 +00006292 Py_END_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006293 if (fd < 0)
Mark Hammondef8b6542001-05-13 08:04:26 +00006294 return posix_error_with_allocated_filename(file);
6295 PyMem_Free(file);
Barry Warsaw53699e91996-12-10 23:23:01 +00006296 return PyInt_FromLong((long)fd);
Guido van Rossum687dd131993-05-17 08:34:16 +00006297}
6298
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006299
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006300PyDoc_STRVAR(posix_close__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006301"close(fd)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006302Close a file descriptor (for low level IO).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006303
Barry Warsaw53699e91996-12-10 23:23:01 +00006304static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006305posix_close(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006306{
6307 int fd, res;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006308 if (!PyArg_ParseTuple(args, "i:close", &fd))
Guido van Rossum687dd131993-05-17 08:34:16 +00006309 return NULL;
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006310 if (!_PyVerify_fd(fd))
6311 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006312 Py_BEGIN_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006313 res = close(fd);
Barry Warsaw53699e91996-12-10 23:23:01 +00006314 Py_END_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006315 if (res < 0)
6316 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006317 Py_INCREF(Py_None);
6318 return Py_None;
Guido van Rossum687dd131993-05-17 08:34:16 +00006319}
6320
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006321
Georg Brandl309501a2008-01-19 20:22:13 +00006322PyDoc_STRVAR(posix_closerange__doc__,
6323"closerange(fd_low, fd_high)\n\n\
6324Closes all file descriptors in [fd_low, fd_high), ignoring errors.");
6325
6326static PyObject *
6327posix_closerange(PyObject *self, PyObject *args)
6328{
6329 int fd_from, fd_to, i;
6330 if (!PyArg_ParseTuple(args, "ii:closerange", &fd_from, &fd_to))
6331 return NULL;
6332 Py_BEGIN_ALLOW_THREADS
6333 for (i = fd_from; i < fd_to; i++)
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006334 if (_PyVerify_fd(i))
6335 close(i);
Georg Brandl309501a2008-01-19 20:22:13 +00006336 Py_END_ALLOW_THREADS
6337 Py_RETURN_NONE;
6338}
6339
6340
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006341PyDoc_STRVAR(posix_dup__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006342"dup(fd) -> fd2\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006343Return a duplicate of a file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006344
Barry Warsaw53699e91996-12-10 23:23:01 +00006345static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006346posix_dup(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006347{
6348 int fd;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006349 if (!PyArg_ParseTuple(args, "i:dup", &fd))
Guido van Rossum687dd131993-05-17 08:34:16 +00006350 return NULL;
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006351 if (!_PyVerify_fd(fd))
6352 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006353 Py_BEGIN_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006354 fd = dup(fd);
Barry Warsaw53699e91996-12-10 23:23:01 +00006355 Py_END_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006356 if (fd < 0)
6357 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006358 return PyInt_FromLong((long)fd);
Guido van Rossum687dd131993-05-17 08:34:16 +00006359}
6360
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006361
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006362PyDoc_STRVAR(posix_dup2__doc__,
Andrew M. Kuchling8135fd52004-01-16 13:18:42 +00006363"dup2(old_fd, new_fd)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006364Duplicate file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006365
Barry Warsaw53699e91996-12-10 23:23:01 +00006366static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006367posix_dup2(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006368{
6369 int fd, fd2, res;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006370 if (!PyArg_ParseTuple(args, "ii:dup2", &fd, &fd2))
Guido van Rossum687dd131993-05-17 08:34:16 +00006371 return NULL;
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006372 if (!_PyVerify_fd_dup2(fd, fd2))
6373 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006374 Py_BEGIN_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006375 res = dup2(fd, fd2);
Barry Warsaw53699e91996-12-10 23:23:01 +00006376 Py_END_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006377 if (res < 0)
6378 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006379 Py_INCREF(Py_None);
6380 return Py_None;
Guido van Rossum687dd131993-05-17 08:34:16 +00006381}
6382
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006383
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006384PyDoc_STRVAR(posix_lseek__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006385"lseek(fd, pos, how) -> newpos\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006386Set the current position of a file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006387
Barry Warsaw53699e91996-12-10 23:23:01 +00006388static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006389posix_lseek(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006390{
6391 int fd, how;
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006392#if defined(MS_WIN64) || defined(MS_WINDOWS)
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00006393 PY_LONG_LONG pos, res;
Fred Drake699f3522000-06-29 21:12:41 +00006394#else
Guido van Rossum94f6f721999-01-06 18:42:14 +00006395 off_t pos, res;
Fred Drake699f3522000-06-29 21:12:41 +00006396#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00006397 PyObject *posobj;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006398 if (!PyArg_ParseTuple(args, "iOi:lseek", &fd, &posobj, &how))
Guido van Rossum687dd131993-05-17 08:34:16 +00006399 return NULL;
6400#ifdef SEEK_SET
6401 /* Turn 0, 1, 2 into SEEK_{SET,CUR,END} */
6402 switch (how) {
6403 case 0: how = SEEK_SET; break;
6404 case 1: how = SEEK_CUR; break;
6405 case 2: how = SEEK_END; break;
6406 }
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00006407#endif /* SEEK_END */
Guido van Rossum94f6f721999-01-06 18:42:14 +00006408
6409#if !defined(HAVE_LARGEFILE_SUPPORT)
6410 pos = PyInt_AsLong(posobj);
6411#else
6412 pos = PyLong_Check(posobj) ?
6413 PyLong_AsLongLong(posobj) : PyInt_AsLong(posobj);
6414#endif
6415 if (PyErr_Occurred())
6416 return NULL;
6417
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006418 if (!_PyVerify_fd(fd))
6419 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006420 Py_BEGIN_ALLOW_THREADS
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006421#if defined(MS_WIN64) || defined(MS_WINDOWS)
Fred Drake699f3522000-06-29 21:12:41 +00006422 res = _lseeki64(fd, pos, how);
6423#else
Guido van Rossum687dd131993-05-17 08:34:16 +00006424 res = lseek(fd, pos, how);
Fred Drake699f3522000-06-29 21:12:41 +00006425#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00006426 Py_END_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006427 if (res < 0)
6428 return posix_error();
Guido van Rossum94f6f721999-01-06 18:42:14 +00006429
6430#if !defined(HAVE_LARGEFILE_SUPPORT)
Barry Warsaw53699e91996-12-10 23:23:01 +00006431 return PyInt_FromLong(res);
Guido van Rossum94f6f721999-01-06 18:42:14 +00006432#else
6433 return PyLong_FromLongLong(res);
6434#endif
Guido van Rossum687dd131993-05-17 08:34:16 +00006435}
6436
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006437
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006438PyDoc_STRVAR(posix_read__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006439"read(fd, buffersize) -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006440Read a file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006441
Barry Warsaw53699e91996-12-10 23:23:01 +00006442static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006443posix_read(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006444{
Guido van Rossum8bac5461996-06-11 18:38:48 +00006445 int fd, size, n;
Barry Warsaw53699e91996-12-10 23:23:01 +00006446 PyObject *buffer;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006447 if (!PyArg_ParseTuple(args, "ii:read", &fd, &size))
Guido van Rossum687dd131993-05-17 08:34:16 +00006448 return NULL;
Michael W. Hudson9867ced2005-01-31 17:01:59 +00006449 if (size < 0) {
6450 errno = EINVAL;
6451 return posix_error();
6452 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00006453 buffer = PyString_FromStringAndSize((char *)NULL, size);
Guido van Rossum687dd131993-05-17 08:34:16 +00006454 if (buffer == NULL)
6455 return NULL;
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006456 if (!_PyVerify_fd(fd))
6457 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006458 Py_BEGIN_ALLOW_THREADS
Gregory P. Smithdd96db62008-06-09 04:58:54 +00006459 n = read(fd, PyString_AsString(buffer), size);
Barry Warsaw53699e91996-12-10 23:23:01 +00006460 Py_END_ALLOW_THREADS
Guido van Rossum8bac5461996-06-11 18:38:48 +00006461 if (n < 0) {
Barry Warsaw53699e91996-12-10 23:23:01 +00006462 Py_DECREF(buffer);
Guido van Rossum687dd131993-05-17 08:34:16 +00006463 return posix_error();
6464 }
Guido van Rossum8bac5461996-06-11 18:38:48 +00006465 if (n != size)
Gregory P. Smithdd96db62008-06-09 04:58:54 +00006466 _PyString_Resize(&buffer, n);
Guido van Rossum687dd131993-05-17 08:34:16 +00006467 return buffer;
6468}
6469
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006470
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006471PyDoc_STRVAR(posix_write__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006472"write(fd, string) -> byteswritten\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006473Write a string to a file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006474
Barry Warsaw53699e91996-12-10 23:23:01 +00006475static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006476posix_write(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006477{
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00006478 Py_buffer pbuf;
Thomas Wouters68bc4f92006-03-01 01:05:10 +00006479 int fd;
6480 Py_ssize_t size;
Thomas Wouters68bc4f92006-03-01 01:05:10 +00006481
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00006482 if (!PyArg_ParseTuple(args, "is*:write", &fd, &pbuf))
Guido van Rossum687dd131993-05-17 08:34:16 +00006483 return NULL;
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006484 if (!_PyVerify_fd(fd))
6485 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006486 Py_BEGIN_ALLOW_THREADS
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00006487 size = write(fd, pbuf.buf, (size_t)pbuf.len);
Barry Warsaw53699e91996-12-10 23:23:01 +00006488 Py_END_ALLOW_THREADS
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00006489 PyBuffer_Release(&pbuf);
Guido van Rossum687dd131993-05-17 08:34:16 +00006490 if (size < 0)
6491 return posix_error();
Thomas Wouters68bc4f92006-03-01 01:05:10 +00006492 return PyInt_FromSsize_t(size);
Guido van Rossum687dd131993-05-17 08:34:16 +00006493}
6494
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006495
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006496PyDoc_STRVAR(posix_fstat__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006497"fstat(fd) -> stat result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006498Like stat(), but for an open file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006499
Barry Warsaw53699e91996-12-10 23:23:01 +00006500static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006501posix_fstat(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006502{
6503 int fd;
Fred Drake699f3522000-06-29 21:12:41 +00006504 STRUCT_STAT st;
Guido van Rossum687dd131993-05-17 08:34:16 +00006505 int res;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006506 if (!PyArg_ParseTuple(args, "i:fstat", &fd))
Guido van Rossum687dd131993-05-17 08:34:16 +00006507 return NULL;
Martin v. Löwis7a924e62003-03-05 14:15:21 +00006508#ifdef __VMS
6509 /* on OpenVMS we must ensure that all bytes are written to the file */
6510 fsync(fd);
6511#endif
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006512 if (!_PyVerify_fd(fd))
6513 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006514 Py_BEGIN_ALLOW_THREADS
Fred Drake699f3522000-06-29 21:12:41 +00006515 res = FSTAT(fd, &st);
Barry Warsaw53699e91996-12-10 23:23:01 +00006516 Py_END_ALLOW_THREADS
Martin v. Löwis14694662006-02-03 12:54:16 +00006517 if (res != 0) {
6518#ifdef MS_WINDOWS
6519 return win32_error("fstat", NULL);
6520#else
Guido van Rossum687dd131993-05-17 08:34:16 +00006521 return posix_error();
Martin v. Löwis14694662006-02-03 12:54:16 +00006522#endif
6523 }
Tim Peters5aa91602002-01-30 05:46:57 +00006524
Martin v. Löwis14694662006-02-03 12:54:16 +00006525 return _pystat_fromstructstat(&st);
Guido van Rossum687dd131993-05-17 08:34:16 +00006526}
6527
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006528
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006529PyDoc_STRVAR(posix_fdopen__doc__,
Neal Norwitzc18b3082002-10-11 22:19:42 +00006530"fdopen(fd [, mode='r' [, bufsize]]) -> file_object\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006531Return an open file object connected to a file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006532
Barry Warsaw53699e91996-12-10 23:23:01 +00006533static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006534posix_fdopen(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006535{
Guido van Rossum687dd131993-05-17 08:34:16 +00006536 int fd;
Kristján Valur Jónsson0a440d42007-04-26 09:15:08 +00006537 char *orgmode = "r";
Guido van Rossuma6a1e531995-01-10 15:36:38 +00006538 int bufsize = -1;
Guido van Rossum687dd131993-05-17 08:34:16 +00006539 FILE *fp;
Barry Warsaw53699e91996-12-10 23:23:01 +00006540 PyObject *f;
Kristján Valur Jónsson0a440d42007-04-26 09:15:08 +00006541 char *mode;
6542 if (!PyArg_ParseTuple(args, "i|si", &fd, &orgmode, &bufsize))
Guido van Rossum687dd131993-05-17 08:34:16 +00006543 return NULL;
Barry Warsaw43d68b81996-12-19 22:10:44 +00006544
Kristján Valur Jónsson0a440d42007-04-26 09:15:08 +00006545 /* Sanitize mode. See fileobject.c */
6546 mode = PyMem_MALLOC(strlen(orgmode)+3);
6547 if (!mode) {
6548 PyErr_NoMemory();
6549 return NULL;
6550 }
6551 strcpy(mode, orgmode);
6552 if (_PyFile_SanitizeMode(mode)) {
6553 PyMem_FREE(mode);
Thomas Heller1f043e22002-11-07 16:00:59 +00006554 return NULL;
6555 }
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006556 if (!_PyVerify_fd(fd))
6557 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006558 Py_BEGIN_ALLOW_THREADS
Georg Brandl644b1e72006-03-31 20:27:22 +00006559#if !defined(MS_WINDOWS) && defined(HAVE_FCNTL_H)
Georg Brandl54a188a2006-03-31 20:00:11 +00006560 if (mode[0] == 'a') {
6561 /* try to make sure the O_APPEND flag is set */
6562 int flags;
6563 flags = fcntl(fd, F_GETFL);
6564 if (flags != -1)
6565 fcntl(fd, F_SETFL, flags | O_APPEND);
6566 fp = fdopen(fd, mode);
Thomas Wouters2a9a6b02006-03-31 22:38:19 +00006567 if (fp == NULL && flags != -1)
Georg Brandl54a188a2006-03-31 20:00:11 +00006568 /* restore old mode if fdopen failed */
6569 fcntl(fd, F_SETFL, flags);
6570 } else {
6571 fp = fdopen(fd, mode);
6572 }
Georg Brandl644b1e72006-03-31 20:27:22 +00006573#else
6574 fp = fdopen(fd, mode);
6575#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00006576 Py_END_ALLOW_THREADS
Neal Norwitzd83eb312007-05-02 04:47:55 +00006577 PyMem_FREE(mode);
Guido van Rossum687dd131993-05-17 08:34:16 +00006578 if (fp == NULL)
6579 return posix_error();
Kristján Valur Jónsson0a440d42007-04-26 09:15:08 +00006580 f = PyFile_FromFile(fp, "<fdopen>", orgmode, fclose);
Guido van Rossuma6a1e531995-01-10 15:36:38 +00006581 if (f != NULL)
Barry Warsaw53699e91996-12-10 23:23:01 +00006582 PyFile_SetBufSize(f, bufsize);
Guido van Rossuma6a1e531995-01-10 15:36:38 +00006583 return f;
Guido van Rossum687dd131993-05-17 08:34:16 +00006584}
6585
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006586PyDoc_STRVAR(posix_isatty__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006587"isatty(fd) -> bool\n\n\
Fred Drake106c1a02002-04-23 15:58:02 +00006588Return True if the file descriptor 'fd' is an open file descriptor\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006589connected to the slave end of a terminal.");
Skip Montanaro1517d842000-07-19 14:34:14 +00006590
6591static PyObject *
Thomas Wouters616607a2000-07-19 14:45:40 +00006592posix_isatty(PyObject *self, PyObject *args)
Skip Montanaro1517d842000-07-19 14:34:14 +00006593{
6594 int fd;
6595 if (!PyArg_ParseTuple(args, "i:isatty", &fd))
6596 return NULL;
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006597 if (!_PyVerify_fd(fd))
6598 return PyBool_FromLong(0);
Fred Drake106c1a02002-04-23 15:58:02 +00006599 return PyBool_FromLong(isatty(fd));
Skip Montanaro1517d842000-07-19 14:34:14 +00006600}
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006601
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006602#ifdef HAVE_PIPE
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006603PyDoc_STRVAR(posix_pipe__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006604"pipe() -> (read_end, write_end)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006605Create a pipe.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006606
Barry Warsaw53699e91996-12-10 23:23:01 +00006607static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00006608posix_pipe(PyObject *self, PyObject *noargs)
Guido van Rossum687dd131993-05-17 08:34:16 +00006609{
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00006610#if defined(PYOS_OS2)
6611 HFILE read, write;
6612 APIRET rc;
6613
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00006614 Py_BEGIN_ALLOW_THREADS
6615 rc = DosCreatePipe( &read, &write, 4096);
6616 Py_END_ALLOW_THREADS
6617 if (rc != NO_ERROR)
Guido van Rossumd48f2521997-12-05 22:19:34 +00006618 return os2_error(rc);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00006619
6620 return Py_BuildValue("(ii)", read, write);
6621#else
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006622#if !defined(MS_WINDOWS)
Guido van Rossum687dd131993-05-17 08:34:16 +00006623 int fds[2];
6624 int res;
Barry Warsaw53699e91996-12-10 23:23:01 +00006625 Py_BEGIN_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006626 res = pipe(fds);
Barry Warsaw53699e91996-12-10 23:23:01 +00006627 Py_END_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006628 if (res != 0)
6629 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006630 return Py_BuildValue("(ii)", fds[0], fds[1]);
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006631#else /* MS_WINDOWS */
Guido van Rossum794d8131994-08-23 13:48:48 +00006632 HANDLE read, write;
Guido van Rossumb3f9f4b1998-06-12 15:05:15 +00006633 int read_fd, write_fd;
Guido van Rossum794d8131994-08-23 13:48:48 +00006634 BOOL ok;
Barry Warsaw53699e91996-12-10 23:23:01 +00006635 Py_BEGIN_ALLOW_THREADS
Guido van Rossumb3f9f4b1998-06-12 15:05:15 +00006636 ok = CreatePipe(&read, &write, NULL, 0);
Barry Warsaw53699e91996-12-10 23:23:01 +00006637 Py_END_ALLOW_THREADS
Guido van Rossum794d8131994-08-23 13:48:48 +00006638 if (!ok)
Fredrik Lundhffb9c772000-07-09 14:49:51 +00006639 return win32_error("CreatePipe", NULL);
Tim Peters79248aa2001-08-29 21:37:10 +00006640 read_fd = _open_osfhandle((Py_intptr_t)read, 0);
6641 write_fd = _open_osfhandle((Py_intptr_t)write, 1);
Guido van Rossumb3f9f4b1998-06-12 15:05:15 +00006642 return Py_BuildValue("(ii)", read_fd, write_fd);
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006643#endif /* MS_WINDOWS */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00006644#endif
Guido van Rossum687dd131993-05-17 08:34:16 +00006645}
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006646#endif /* HAVE_PIPE */
6647
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006648
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006649#ifdef HAVE_MKFIFO
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006650PyDoc_STRVAR(posix_mkfifo__doc__,
Neal Norwitzc18b3082002-10-11 22:19:42 +00006651"mkfifo(filename [, mode=0666])\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006652Create a FIFO (a POSIX named pipe).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006653
Barry Warsaw53699e91996-12-10 23:23:01 +00006654static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006655posix_mkfifo(PyObject *self, PyObject *args)
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006656{
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006657 char *filename;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006658 int mode = 0666;
6659 int res;
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006660 if (!PyArg_ParseTuple(args, "s|i:mkfifo", &filename, &mode))
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006661 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00006662 Py_BEGIN_ALLOW_THREADS
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006663 res = mkfifo(filename, mode);
6664 Py_END_ALLOW_THREADS
6665 if (res < 0)
6666 return posix_error();
6667 Py_INCREF(Py_None);
6668 return Py_None;
6669}
6670#endif
6671
6672
Neal Norwitz11690112002-07-30 01:08:28 +00006673#if defined(HAVE_MKNOD) && defined(HAVE_MAKEDEV)
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006674PyDoc_STRVAR(posix_mknod__doc__,
Neal Norwitzc18b3082002-10-11 22:19:42 +00006675"mknod(filename [, mode=0600, device])\n\n\
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006676Create a filesystem node (file, device special file or named pipe)\n\
6677named filename. mode specifies both the permissions to use and the\n\
6678type of node to be created, being combined (bitwise OR) with one of\n\
6679S_IFREG, S_IFCHR, S_IFBLK, and S_IFIFO. For S_IFCHR and S_IFBLK,\n\
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00006680device defines the newly created device special file (probably using\n\
6681os.makedev()), otherwise it is ignored.");
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006682
6683
6684static PyObject *
6685posix_mknod(PyObject *self, PyObject *args)
6686{
6687 char *filename;
6688 int mode = 0600;
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00006689 int device = 0;
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006690 int res;
Martin v. Löwisd631ebe2002-11-02 17:42:33 +00006691 if (!PyArg_ParseTuple(args, "s|ii:mknod", &filename, &mode, &device))
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006692 return NULL;
6693 Py_BEGIN_ALLOW_THREADS
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00006694 res = mknod(filename, mode, device);
Barry Warsaw53699e91996-12-10 23:23:01 +00006695 Py_END_ALLOW_THREADS
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006696 if (res < 0)
6697 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006698 Py_INCREF(Py_None);
6699 return Py_None;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006700}
6701#endif
6702
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00006703#ifdef HAVE_DEVICE_MACROS
6704PyDoc_STRVAR(posix_major__doc__,
6705"major(device) -> major number\n\
6706Extracts a device major number from a raw device number.");
6707
6708static PyObject *
6709posix_major(PyObject *self, PyObject *args)
6710{
6711 int device;
6712 if (!PyArg_ParseTuple(args, "i:major", &device))
6713 return NULL;
6714 return PyInt_FromLong((long)major(device));
6715}
6716
6717PyDoc_STRVAR(posix_minor__doc__,
6718"minor(device) -> minor number\n\
6719Extracts a device minor number from a raw device number.");
6720
6721static PyObject *
6722posix_minor(PyObject *self, PyObject *args)
6723{
6724 int device;
6725 if (!PyArg_ParseTuple(args, "i:minor", &device))
6726 return NULL;
6727 return PyInt_FromLong((long)minor(device));
6728}
6729
6730PyDoc_STRVAR(posix_makedev__doc__,
6731"makedev(major, minor) -> device number\n\
6732Composes a raw device number from the major and minor device numbers.");
6733
6734static PyObject *
6735posix_makedev(PyObject *self, PyObject *args)
6736{
6737 int major, minor;
6738 if (!PyArg_ParseTuple(args, "ii:makedev", &major, &minor))
6739 return NULL;
6740 return PyInt_FromLong((long)makedev(major, minor));
6741}
6742#endif /* device macros */
6743
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006744
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006745#ifdef HAVE_FTRUNCATE
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006746PyDoc_STRVAR(posix_ftruncate__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006747"ftruncate(fd, length)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006748Truncate a file to a specified length.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006749
Barry Warsaw53699e91996-12-10 23:23:01 +00006750static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006751posix_ftruncate(PyObject *self, PyObject *args)
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006752{
6753 int fd;
Guido van Rossum94f6f721999-01-06 18:42:14 +00006754 off_t length;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006755 int res;
Guido van Rossum94f6f721999-01-06 18:42:14 +00006756 PyObject *lenobj;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006757
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006758 if (!PyArg_ParseTuple(args, "iO:ftruncate", &fd, &lenobj))
Guido van Rossum94f6f721999-01-06 18:42:14 +00006759 return NULL;
6760
6761#if !defined(HAVE_LARGEFILE_SUPPORT)
6762 length = PyInt_AsLong(lenobj);
6763#else
6764 length = PyLong_Check(lenobj) ?
6765 PyLong_AsLongLong(lenobj) : PyInt_AsLong(lenobj);
6766#endif
6767 if (PyErr_Occurred())
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006768 return NULL;
6769
Barry Warsaw53699e91996-12-10 23:23:01 +00006770 Py_BEGIN_ALLOW_THREADS
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006771 res = ftruncate(fd, length);
Barry Warsaw53699e91996-12-10 23:23:01 +00006772 Py_END_ALLOW_THREADS
Benjamin Peterson943a6dd2009-01-19 15:51:27 +00006773 if (res < 0)
6774 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006775 Py_INCREF(Py_None);
6776 return Py_None;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006777}
6778#endif
Guido van Rossum22db57e1992-04-05 14:25:30 +00006779
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006780#ifdef HAVE_PUTENV
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006781PyDoc_STRVAR(posix_putenv__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006782"putenv(key, value)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006783Change or add an environment variable.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006784
Fred Drake762e2061999-08-26 17:23:54 +00006785/* Save putenv() parameters as values here, so we can collect them when they
6786 * get re-set with another call for the same key. */
6787static PyObject *posix_putenv_garbage;
6788
Tim Peters5aa91602002-01-30 05:46:57 +00006789static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006790posix_putenv(PyObject *self, PyObject *args)
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006791{
6792 char *s1, *s2;
Anthony Baxter64182fe2006-04-11 12:14:09 +00006793 char *newenv;
Fred Drake762e2061999-08-26 17:23:54 +00006794 PyObject *newstr;
Tim Petersc8996f52001-12-03 20:41:00 +00006795 size_t len;
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006796
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006797 if (!PyArg_ParseTuple(args, "ss:putenv", &s1, &s2))
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006798 return NULL;
Guido van Rossumd48f2521997-12-05 22:19:34 +00006799
6800#if defined(PYOS_OS2)
6801 if (stricmp(s1, "BEGINLIBPATH") == 0) {
6802 APIRET rc;
6803
Guido van Rossumd48f2521997-12-05 22:19:34 +00006804 rc = DosSetExtLIBPATH(s2, BEGIN_LIBPATH);
6805 if (rc != NO_ERROR)
6806 return os2_error(rc);
6807
6808 } else if (stricmp(s1, "ENDLIBPATH") == 0) {
6809 APIRET rc;
6810
Guido van Rossumd48f2521997-12-05 22:19:34 +00006811 rc = DosSetExtLIBPATH(s2, END_LIBPATH);
6812 if (rc != NO_ERROR)
6813 return os2_error(rc);
6814 } else {
6815#endif
6816
Fred Drake762e2061999-08-26 17:23:54 +00006817 /* XXX This can leak memory -- not easy to fix :-( */
Tim Petersc8996f52001-12-03 20:41:00 +00006818 len = strlen(s1) + strlen(s2) + 2;
6819 /* len includes space for a trailing \0; the size arg to
Gregory P. Smithdd96db62008-06-09 04:58:54 +00006820 PyString_FromStringAndSize does not count that */
6821 newstr = PyString_FromStringAndSize(NULL, (int)len - 1);
Fred Drake762e2061999-08-26 17:23:54 +00006822 if (newstr == NULL)
6823 return PyErr_NoMemory();
Gregory P. Smithdd96db62008-06-09 04:58:54 +00006824 newenv = PyString_AS_STRING(newstr);
Anthony Baxter64182fe2006-04-11 12:14:09 +00006825 PyOS_snprintf(newenv, len, "%s=%s", s1, s2);
6826 if (putenv(newenv)) {
Neal Norwitz4adc9ab2003-02-10 03:10:43 +00006827 Py_DECREF(newstr);
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006828 posix_error();
6829 return NULL;
6830 }
Fred Drake762e2061999-08-26 17:23:54 +00006831 /* Install the first arg and newstr in posix_putenv_garbage;
6832 * this will cause previous value to be collected. This has to
6833 * happen after the real putenv() call because the old value
6834 * was still accessible until then. */
6835 if (PyDict_SetItem(posix_putenv_garbage,
6836 PyTuple_GET_ITEM(args, 0), newstr)) {
6837 /* really not much we can do; just leak */
6838 PyErr_Clear();
6839 }
6840 else {
6841 Py_DECREF(newstr);
6842 }
Guido van Rossumd48f2521997-12-05 22:19:34 +00006843
6844#if defined(PYOS_OS2)
6845 }
6846#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00006847 Py_INCREF(Py_None);
6848 return Py_None;
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006849}
Guido van Rossumb6a47161997-09-15 22:54:34 +00006850#endif /* putenv */
6851
Guido van Rossumc524d952001-10-19 01:31:59 +00006852#ifdef HAVE_UNSETENV
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006853PyDoc_STRVAR(posix_unsetenv__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006854"unsetenv(key)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006855Delete an environment variable.");
Guido van Rossumc524d952001-10-19 01:31:59 +00006856
6857static PyObject *
6858posix_unsetenv(PyObject *self, PyObject *args)
6859{
6860 char *s1;
6861
6862 if (!PyArg_ParseTuple(args, "s:unsetenv", &s1))
6863 return NULL;
6864
6865 unsetenv(s1);
6866
6867 /* Remove the key from posix_putenv_garbage;
6868 * this will cause it to be collected. This has to
Tim Peters5aa91602002-01-30 05:46:57 +00006869 * happen after the real unsetenv() call because the
Guido van Rossumc524d952001-10-19 01:31:59 +00006870 * old value was still accessible until then.
6871 */
6872 if (PyDict_DelItem(posix_putenv_garbage,
6873 PyTuple_GET_ITEM(args, 0))) {
6874 /* really not much we can do; just leak */
6875 PyErr_Clear();
6876 }
6877
6878 Py_INCREF(Py_None);
6879 return Py_None;
6880}
6881#endif /* unsetenv */
6882
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006883PyDoc_STRVAR(posix_strerror__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006884"strerror(code) -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006885Translate an error code to a message string.");
Guido van Rossumb6a47161997-09-15 22:54:34 +00006886
Guido van Rossumf68d8e52001-04-14 17:55:09 +00006887static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006888posix_strerror(PyObject *self, PyObject *args)
Guido van Rossumb6a47161997-09-15 22:54:34 +00006889{
6890 int code;
6891 char *message;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006892 if (!PyArg_ParseTuple(args, "i:strerror", &code))
Guido van Rossumb6a47161997-09-15 22:54:34 +00006893 return NULL;
6894 message = strerror(code);
6895 if (message == NULL) {
6896 PyErr_SetString(PyExc_ValueError,
Fred Drake661ea262000-10-24 19:57:45 +00006897 "strerror() argument out of range");
Guido van Rossumb6a47161997-09-15 22:54:34 +00006898 return NULL;
6899 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00006900 return PyString_FromString(message);
Guido van Rossumb6a47161997-09-15 22:54:34 +00006901}
Guido van Rossumb6a47161997-09-15 22:54:34 +00006902
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006903
Guido van Rossumc9641791998-08-04 15:26:23 +00006904#ifdef HAVE_SYS_WAIT_H
6905
Fred Drake106c1a02002-04-23 15:58:02 +00006906#ifdef WCOREDUMP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006907PyDoc_STRVAR(posix_WCOREDUMP__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006908"WCOREDUMP(status) -> bool\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006909Return True if the process returning 'status' was dumped to a core file.");
Fred Drake106c1a02002-04-23 15:58:02 +00006910
6911static PyObject *
6912posix_WCOREDUMP(PyObject *self, PyObject *args)
6913{
Neal Norwitzd5a37542006-03-20 06:48:34 +00006914 WAIT_TYPE status;
6915 WAIT_STATUS_INT(status) = 0;
Fred Drake106c1a02002-04-23 15:58:02 +00006916
Neal Norwitzd5a37542006-03-20 06:48:34 +00006917 if (!PyArg_ParseTuple(args, "i:WCOREDUMP", &WAIT_STATUS_INT(status)))
Fred Drake106c1a02002-04-23 15:58:02 +00006918 return NULL;
Fred Drake106c1a02002-04-23 15:58:02 +00006919
6920 return PyBool_FromLong(WCOREDUMP(status));
Fred Drake106c1a02002-04-23 15:58:02 +00006921}
6922#endif /* WCOREDUMP */
6923
6924#ifdef WIFCONTINUED
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006925PyDoc_STRVAR(posix_WIFCONTINUED__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006926"WIFCONTINUED(status) -> bool\n\n\
Fred Drake106c1a02002-04-23 15:58:02 +00006927Return True if the process returning 'status' was continued from a\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006928job control stop.");
Fred Drake106c1a02002-04-23 15:58:02 +00006929
6930static PyObject *
Martin v. Löwis2b41b0d2002-05-04 13:13:41 +00006931posix_WIFCONTINUED(PyObject *self, PyObject *args)
Fred Drake106c1a02002-04-23 15:58:02 +00006932{
Neal Norwitzd5a37542006-03-20 06:48:34 +00006933 WAIT_TYPE status;
6934 WAIT_STATUS_INT(status) = 0;
Fred Drake106c1a02002-04-23 15:58:02 +00006935
Neal Norwitzd5a37542006-03-20 06:48:34 +00006936 if (!PyArg_ParseTuple(args, "i:WCONTINUED", &WAIT_STATUS_INT(status)))
Fred Drake106c1a02002-04-23 15:58:02 +00006937 return NULL;
Fred Drake106c1a02002-04-23 15:58:02 +00006938
Martin v. Löwis2b41b0d2002-05-04 13:13:41 +00006939 return PyBool_FromLong(WIFCONTINUED(status));
Fred Drake106c1a02002-04-23 15:58:02 +00006940}
6941#endif /* WIFCONTINUED */
6942
Guido van Rossumc9641791998-08-04 15:26:23 +00006943#ifdef WIFSTOPPED
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006944PyDoc_STRVAR(posix_WIFSTOPPED__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006945"WIFSTOPPED(status) -> bool\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006946Return True if the process returning 'status' was stopped.");
Guido van Rossumc9641791998-08-04 15:26:23 +00006947
6948static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006949posix_WIFSTOPPED(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00006950{
Neal Norwitzd5a37542006-03-20 06:48:34 +00006951 WAIT_TYPE status;
6952 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00006953
Neal Norwitzd5a37542006-03-20 06:48:34 +00006954 if (!PyArg_ParseTuple(args, "i:WIFSTOPPED", &WAIT_STATUS_INT(status)))
Guido van Rossumc9641791998-08-04 15:26:23 +00006955 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00006956
Fred Drake106c1a02002-04-23 15:58:02 +00006957 return PyBool_FromLong(WIFSTOPPED(status));
Guido van Rossumc9641791998-08-04 15:26:23 +00006958}
6959#endif /* WIFSTOPPED */
6960
6961#ifdef WIFSIGNALED
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006962PyDoc_STRVAR(posix_WIFSIGNALED__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006963"WIFSIGNALED(status) -> bool\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006964Return True if the process returning 'status' was terminated by a signal.");
Guido van Rossumc9641791998-08-04 15:26:23 +00006965
6966static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006967posix_WIFSIGNALED(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00006968{
Neal Norwitzd5a37542006-03-20 06:48:34 +00006969 WAIT_TYPE status;
6970 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00006971
Neal Norwitzd5a37542006-03-20 06:48:34 +00006972 if (!PyArg_ParseTuple(args, "i:WIFSIGNALED", &WAIT_STATUS_INT(status)))
Guido van Rossumc9641791998-08-04 15:26:23 +00006973 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00006974
Fred Drake106c1a02002-04-23 15:58:02 +00006975 return PyBool_FromLong(WIFSIGNALED(status));
Guido van Rossumc9641791998-08-04 15:26:23 +00006976}
6977#endif /* WIFSIGNALED */
6978
6979#ifdef WIFEXITED
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006980PyDoc_STRVAR(posix_WIFEXITED__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006981"WIFEXITED(status) -> bool\n\n\
Fred Drake7e3535c1999-02-02 16:37:11 +00006982Return true if the process returning 'status' exited using the exit()\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006983system call.");
Guido van Rossumc9641791998-08-04 15:26:23 +00006984
6985static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006986posix_WIFEXITED(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00006987{
Neal Norwitzd5a37542006-03-20 06:48:34 +00006988 WAIT_TYPE status;
6989 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00006990
Neal Norwitzd5a37542006-03-20 06:48:34 +00006991 if (!PyArg_ParseTuple(args, "i:WIFEXITED", &WAIT_STATUS_INT(status)))
Guido van Rossumc9641791998-08-04 15:26:23 +00006992 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00006993
Fred Drake106c1a02002-04-23 15:58:02 +00006994 return PyBool_FromLong(WIFEXITED(status));
Guido van Rossumc9641791998-08-04 15:26:23 +00006995}
6996#endif /* WIFEXITED */
6997
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00006998#ifdef WEXITSTATUS
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006999PyDoc_STRVAR(posix_WEXITSTATUS__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007000"WEXITSTATUS(status) -> integer\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007001Return the process return code from 'status'.");
Guido van Rossumc9641791998-08-04 15:26:23 +00007002
7003static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007004posix_WEXITSTATUS(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00007005{
Neal Norwitzd5a37542006-03-20 06:48:34 +00007006 WAIT_TYPE status;
7007 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00007008
Neal Norwitzd5a37542006-03-20 06:48:34 +00007009 if (!PyArg_ParseTuple(args, "i:WEXITSTATUS", &WAIT_STATUS_INT(status)))
Guido van Rossumc9641791998-08-04 15:26:23 +00007010 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00007011
Guido van Rossumc9641791998-08-04 15:26:23 +00007012 return Py_BuildValue("i", WEXITSTATUS(status));
7013}
7014#endif /* WEXITSTATUS */
7015
7016#ifdef WTERMSIG
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007017PyDoc_STRVAR(posix_WTERMSIG__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007018"WTERMSIG(status) -> integer\n\n\
Fred Drake7e3535c1999-02-02 16:37:11 +00007019Return the signal that terminated the process that provided the 'status'\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007020value.");
Guido van Rossumc9641791998-08-04 15:26:23 +00007021
7022static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007023posix_WTERMSIG(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00007024{
Neal Norwitzd5a37542006-03-20 06:48:34 +00007025 WAIT_TYPE status;
7026 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00007027
Neal Norwitzd5a37542006-03-20 06:48:34 +00007028 if (!PyArg_ParseTuple(args, "i:WTERMSIG", &WAIT_STATUS_INT(status)))
Guido van Rossumc9641791998-08-04 15:26:23 +00007029 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00007030
Guido van Rossumc9641791998-08-04 15:26:23 +00007031 return Py_BuildValue("i", WTERMSIG(status));
7032}
7033#endif /* WTERMSIG */
7034
7035#ifdef WSTOPSIG
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007036PyDoc_STRVAR(posix_WSTOPSIG__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007037"WSTOPSIG(status) -> integer\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007038Return the signal that stopped the process that provided\n\
7039the 'status' value.");
Guido van Rossumc9641791998-08-04 15:26:23 +00007040
7041static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007042posix_WSTOPSIG(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00007043{
Neal Norwitzd5a37542006-03-20 06:48:34 +00007044 WAIT_TYPE status;
7045 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00007046
Neal Norwitzd5a37542006-03-20 06:48:34 +00007047 if (!PyArg_ParseTuple(args, "i:WSTOPSIG", &WAIT_STATUS_INT(status)))
Guido van Rossumc9641791998-08-04 15:26:23 +00007048 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00007049
Guido van Rossumc9641791998-08-04 15:26:23 +00007050 return Py_BuildValue("i", WSTOPSIG(status));
7051}
7052#endif /* WSTOPSIG */
7053
7054#endif /* HAVE_SYS_WAIT_H */
7055
7056
Martin v. Löwis5f5d99c2006-05-16 07:05:37 +00007057#if defined(HAVE_FSTATVFS) && defined(HAVE_SYS_STATVFS_H)
Guido van Rossumd5753e11999-10-19 13:29:23 +00007058#ifdef _SCO_DS
7059/* SCO OpenServer 5.0 and later requires _SVID3 before it reveals the
7060 needed definitions in sys/statvfs.h */
7061#define _SVID3
7062#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00007063#include <sys/statvfs.h>
7064
Guido van Rossum98bf58f2001-10-18 20:34:25 +00007065static PyObject*
7066_pystatvfs_fromstructstatvfs(struct statvfs st) {
7067 PyObject *v = PyStructSequence_New(&StatVFSResultType);
7068 if (v == NULL)
7069 return NULL;
7070
7071#if !defined(HAVE_LARGEFILE_SUPPORT)
7072 PyStructSequence_SET_ITEM(v, 0, PyInt_FromLong((long) st.f_bsize));
7073 PyStructSequence_SET_ITEM(v, 1, PyInt_FromLong((long) st.f_frsize));
7074 PyStructSequence_SET_ITEM(v, 2, PyInt_FromLong((long) st.f_blocks));
7075 PyStructSequence_SET_ITEM(v, 3, PyInt_FromLong((long) st.f_bfree));
7076 PyStructSequence_SET_ITEM(v, 4, PyInt_FromLong((long) st.f_bavail));
7077 PyStructSequence_SET_ITEM(v, 5, PyInt_FromLong((long) st.f_files));
7078 PyStructSequence_SET_ITEM(v, 6, PyInt_FromLong((long) st.f_ffree));
7079 PyStructSequence_SET_ITEM(v, 7, PyInt_FromLong((long) st.f_favail));
7080 PyStructSequence_SET_ITEM(v, 8, PyInt_FromLong((long) st.f_flag));
7081 PyStructSequence_SET_ITEM(v, 9, PyInt_FromLong((long) st.f_namemax));
7082#else
7083 PyStructSequence_SET_ITEM(v, 0, PyInt_FromLong((long) st.f_bsize));
7084 PyStructSequence_SET_ITEM(v, 1, PyInt_FromLong((long) st.f_frsize));
Tim Peters5aa91602002-01-30 05:46:57 +00007085 PyStructSequence_SET_ITEM(v, 2,
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00007086 PyLong_FromLongLong((PY_LONG_LONG) st.f_blocks));
Tim Peters5aa91602002-01-30 05:46:57 +00007087 PyStructSequence_SET_ITEM(v, 3,
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00007088 PyLong_FromLongLong((PY_LONG_LONG) st.f_bfree));
Guido van Rossum98bf58f2001-10-18 20:34:25 +00007089 PyStructSequence_SET_ITEM(v, 4,
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00007090 PyLong_FromLongLong((PY_LONG_LONG) st.f_bavail));
Tim Peters5aa91602002-01-30 05:46:57 +00007091 PyStructSequence_SET_ITEM(v, 5,
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00007092 PyLong_FromLongLong((PY_LONG_LONG) st.f_files));
Tim Peters5aa91602002-01-30 05:46:57 +00007093 PyStructSequence_SET_ITEM(v, 6,
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00007094 PyLong_FromLongLong((PY_LONG_LONG) st.f_ffree));
Tim Peters5aa91602002-01-30 05:46:57 +00007095 PyStructSequence_SET_ITEM(v, 7,
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00007096 PyLong_FromLongLong((PY_LONG_LONG) st.f_favail));
Guido van Rossum98bf58f2001-10-18 20:34:25 +00007097 PyStructSequence_SET_ITEM(v, 8, PyInt_FromLong((long) st.f_flag));
7098 PyStructSequence_SET_ITEM(v, 9, PyInt_FromLong((long) st.f_namemax));
7099#endif
7100
7101 return v;
7102}
7103
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007104PyDoc_STRVAR(posix_fstatvfs__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007105"fstatvfs(fd) -> statvfs result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007106Perform an fstatvfs system call on the given fd.");
Guido van Rossum94f6f721999-01-06 18:42:14 +00007107
7108static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007109posix_fstatvfs(PyObject *self, PyObject *args)
Guido van Rossum94f6f721999-01-06 18:42:14 +00007110{
7111 int fd, res;
7112 struct statvfs st;
Guido van Rossum98bf58f2001-10-18 20:34:25 +00007113
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007114 if (!PyArg_ParseTuple(args, "i:fstatvfs", &fd))
Guido van Rossum94f6f721999-01-06 18:42:14 +00007115 return NULL;
7116 Py_BEGIN_ALLOW_THREADS
7117 res = fstatvfs(fd, &st);
7118 Py_END_ALLOW_THREADS
7119 if (res != 0)
7120 return posix_error();
Guido van Rossum98bf58f2001-10-18 20:34:25 +00007121
7122 return _pystatvfs_fromstructstatvfs(st);
Guido van Rossum94f6f721999-01-06 18:42:14 +00007123}
Martin v. Löwis5f5d99c2006-05-16 07:05:37 +00007124#endif /* HAVE_FSTATVFS && HAVE_SYS_STATVFS_H */
Guido van Rossum94f6f721999-01-06 18:42:14 +00007125
7126
Martin v. Löwis5f5d99c2006-05-16 07:05:37 +00007127#if defined(HAVE_STATVFS) && defined(HAVE_SYS_STATVFS_H)
Guido van Rossum94f6f721999-01-06 18:42:14 +00007128#include <sys/statvfs.h>
7129
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007130PyDoc_STRVAR(posix_statvfs__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007131"statvfs(path) -> statvfs result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007132Perform a statvfs system call on the given path.");
Guido van Rossum94f6f721999-01-06 18:42:14 +00007133
7134static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007135posix_statvfs(PyObject *self, PyObject *args)
Guido van Rossum94f6f721999-01-06 18:42:14 +00007136{
7137 char *path;
7138 int res;
7139 struct statvfs st;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007140 if (!PyArg_ParseTuple(args, "s:statvfs", &path))
Guido van Rossum94f6f721999-01-06 18:42:14 +00007141 return NULL;
7142 Py_BEGIN_ALLOW_THREADS
7143 res = statvfs(path, &st);
7144 Py_END_ALLOW_THREADS
7145 if (res != 0)
7146 return posix_error_with_filename(path);
Guido van Rossum98bf58f2001-10-18 20:34:25 +00007147
7148 return _pystatvfs_fromstructstatvfs(st);
Guido van Rossum94f6f721999-01-06 18:42:14 +00007149}
7150#endif /* HAVE_STATVFS */
7151
7152
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007153#ifdef HAVE_TEMPNAM
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007154PyDoc_STRVAR(posix_tempnam__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007155"tempnam([dir[, prefix]]) -> string\n\n\
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007156Return a unique name for a temporary file.\n\
Neal Norwitz50d5d4f2002-07-30 01:17:43 +00007157The directory and a prefix may be specified as strings; they may be omitted\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007158or None if not needed.");
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007159
7160static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007161posix_tempnam(PyObject *self, PyObject *args)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007162{
7163 PyObject *result = NULL;
7164 char *dir = NULL;
7165 char *pfx = NULL;
7166 char *name;
7167
7168 if (!PyArg_ParseTuple(args, "|zz:tempnam", &dir, &pfx))
7169 return NULL;
Skip Montanaro95618b52001-08-18 18:52:10 +00007170
7171 if (PyErr_Warn(PyExc_RuntimeWarning,
7172 "tempnam is a potential security risk to your program") < 0)
7173 return NULL;
7174
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00007175#ifdef MS_WINDOWS
Fred Drake78b71c22001-07-17 20:37:36 +00007176 name = _tempnam(dir, pfx);
7177#else
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007178 name = tempnam(dir, pfx);
Fred Drake78b71c22001-07-17 20:37:36 +00007179#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007180 if (name == NULL)
7181 return PyErr_NoMemory();
Gregory P. Smithdd96db62008-06-09 04:58:54 +00007182 result = PyString_FromString(name);
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007183 free(name);
7184 return result;
7185}
Guido van Rossumd371ff11999-01-25 16:12:23 +00007186#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007187
7188
7189#ifdef HAVE_TMPFILE
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007190PyDoc_STRVAR(posix_tmpfile__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007191"tmpfile() -> file object\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007192Create a temporary file with no directory entries.");
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007193
7194static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00007195posix_tmpfile(PyObject *self, PyObject *noargs)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007196{
7197 FILE *fp;
7198
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007199 fp = tmpfile();
7200 if (fp == NULL)
7201 return posix_error();
Guido van Rossumdb9198a2002-06-10 19:23:22 +00007202 return PyFile_FromFile(fp, "<tmpfile>", "w+b", fclose);
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007203}
7204#endif
7205
7206
7207#ifdef HAVE_TMPNAM
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007208PyDoc_STRVAR(posix_tmpnam__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007209"tmpnam() -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007210Return a unique name for a temporary file.");
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007211
7212static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00007213posix_tmpnam(PyObject *self, PyObject *noargs)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007214{
7215 char buffer[L_tmpnam];
7216 char *name;
7217
Skip Montanaro95618b52001-08-18 18:52:10 +00007218 if (PyErr_Warn(PyExc_RuntimeWarning,
7219 "tmpnam is a potential security risk to your program") < 0)
7220 return NULL;
7221
Greg Wardb48bc172000-03-01 21:51:56 +00007222#ifdef USE_TMPNAM_R
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007223 name = tmpnam_r(buffer);
7224#else
7225 name = tmpnam(buffer);
7226#endif
7227 if (name == NULL) {
Neal Norwitzd1e0ef62006-03-20 04:08:12 +00007228 PyObject *err = Py_BuildValue("is", 0,
Greg Wardb48bc172000-03-01 21:51:56 +00007229#ifdef USE_TMPNAM_R
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007230 "unexpected NULL from tmpnam_r"
7231#else
7232 "unexpected NULL from tmpnam"
7233#endif
Neal Norwitzd1e0ef62006-03-20 04:08:12 +00007234 );
7235 PyErr_SetObject(PyExc_OSError, err);
7236 Py_XDECREF(err);
7237 return NULL;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007238 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00007239 return PyString_FromString(buffer);
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007240}
7241#endif
7242
7243
Fred Drakec9680921999-12-13 16:37:25 +00007244/* This is used for fpathconf(), pathconf(), confstr() and sysconf().
7245 * It maps strings representing configuration variable names to
7246 * integer values, allowing those functions to be called with the
Thomas Wouters7e474022000-07-16 12:04:32 +00007247 * magic names instead of polluting the module's namespace with tons of
Fred Drake12c6e2d1999-12-14 21:25:03 +00007248 * rarely-used constants. There are three separate tables that use
7249 * these definitions.
Fred Drakebec628d1999-12-15 18:31:10 +00007250 *
7251 * This code is always included, even if none of the interfaces that
7252 * need it are included. The #if hackery needed to avoid it would be
7253 * sufficiently pervasive that it's not worth the loss of readability.
Fred Drakec9680921999-12-13 16:37:25 +00007254 */
7255struct constdef {
7256 char *name;
7257 long value;
7258};
7259
Fred Drake12c6e2d1999-12-14 21:25:03 +00007260static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007261conv_confname(PyObject *arg, int *valuep, struct constdef *table,
7262 size_t tablesize)
Fred Drake12c6e2d1999-12-14 21:25:03 +00007263{
7264 if (PyInt_Check(arg)) {
7265 *valuep = PyInt_AS_LONG(arg);
7266 return 1;
7267 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00007268 if (PyString_Check(arg)) {
Fred Drake12c6e2d1999-12-14 21:25:03 +00007269 /* look up the value in the table using a binary search */
Fred Drake699f3522000-06-29 21:12:41 +00007270 size_t lo = 0;
7271 size_t mid;
7272 size_t hi = tablesize;
7273 int cmp;
Gregory P. Smithdd96db62008-06-09 04:58:54 +00007274 char *confname = PyString_AS_STRING(arg);
Fred Drake12c6e2d1999-12-14 21:25:03 +00007275 while (lo < hi) {
7276 mid = (lo + hi) / 2;
7277 cmp = strcmp(confname, table[mid].name);
7278 if (cmp < 0)
7279 hi = mid;
7280 else if (cmp > 0)
7281 lo = mid + 1;
7282 else {
7283 *valuep = table[mid].value;
7284 return 1;
7285 }
7286 }
7287 PyErr_SetString(PyExc_ValueError, "unrecognized configuration name");
7288 }
7289 else
7290 PyErr_SetString(PyExc_TypeError,
7291 "configuration names must be strings or integers");
7292 return 0;
7293}
7294
7295
7296#if defined(HAVE_FPATHCONF) || defined(HAVE_PATHCONF)
7297static struct constdef posix_constants_pathconf[] = {
Fred Draked86ed291999-12-15 15:34:33 +00007298#ifdef _PC_ABI_AIO_XFER_MAX
7299 {"PC_ABI_AIO_XFER_MAX", _PC_ABI_AIO_XFER_MAX},
7300#endif
7301#ifdef _PC_ABI_ASYNC_IO
7302 {"PC_ABI_ASYNC_IO", _PC_ABI_ASYNC_IO},
7303#endif
Fred Drakec9680921999-12-13 16:37:25 +00007304#ifdef _PC_ASYNC_IO
7305 {"PC_ASYNC_IO", _PC_ASYNC_IO},
7306#endif
7307#ifdef _PC_CHOWN_RESTRICTED
7308 {"PC_CHOWN_RESTRICTED", _PC_CHOWN_RESTRICTED},
7309#endif
7310#ifdef _PC_FILESIZEBITS
7311 {"PC_FILESIZEBITS", _PC_FILESIZEBITS},
7312#endif
7313#ifdef _PC_LAST
7314 {"PC_LAST", _PC_LAST},
7315#endif
7316#ifdef _PC_LINK_MAX
7317 {"PC_LINK_MAX", _PC_LINK_MAX},
7318#endif
7319#ifdef _PC_MAX_CANON
7320 {"PC_MAX_CANON", _PC_MAX_CANON},
7321#endif
7322#ifdef _PC_MAX_INPUT
7323 {"PC_MAX_INPUT", _PC_MAX_INPUT},
7324#endif
7325#ifdef _PC_NAME_MAX
7326 {"PC_NAME_MAX", _PC_NAME_MAX},
7327#endif
7328#ifdef _PC_NO_TRUNC
7329 {"PC_NO_TRUNC", _PC_NO_TRUNC},
7330#endif
7331#ifdef _PC_PATH_MAX
7332 {"PC_PATH_MAX", _PC_PATH_MAX},
7333#endif
7334#ifdef _PC_PIPE_BUF
7335 {"PC_PIPE_BUF", _PC_PIPE_BUF},
7336#endif
7337#ifdef _PC_PRIO_IO
7338 {"PC_PRIO_IO", _PC_PRIO_IO},
7339#endif
7340#ifdef _PC_SOCK_MAXBUF
7341 {"PC_SOCK_MAXBUF", _PC_SOCK_MAXBUF},
7342#endif
7343#ifdef _PC_SYNC_IO
7344 {"PC_SYNC_IO", _PC_SYNC_IO},
7345#endif
7346#ifdef _PC_VDISABLE
7347 {"PC_VDISABLE", _PC_VDISABLE},
7348#endif
7349};
7350
Fred Drakec9680921999-12-13 16:37:25 +00007351static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007352conv_path_confname(PyObject *arg, int *valuep)
Fred Drakec9680921999-12-13 16:37:25 +00007353{
7354 return conv_confname(arg, valuep, posix_constants_pathconf,
7355 sizeof(posix_constants_pathconf)
7356 / sizeof(struct constdef));
7357}
7358#endif
7359
7360#ifdef HAVE_FPATHCONF
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007361PyDoc_STRVAR(posix_fpathconf__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007362"fpathconf(fd, name) -> integer\n\n\
Fred Drakec9680921999-12-13 16:37:25 +00007363Return the configuration limit name for the file descriptor fd.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007364If there is no limit, return -1.");
Fred Drakec9680921999-12-13 16:37:25 +00007365
7366static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007367posix_fpathconf(PyObject *self, PyObject *args)
Fred Drakec9680921999-12-13 16:37:25 +00007368{
7369 PyObject *result = NULL;
7370 int name, fd;
7371
Fred Drake12c6e2d1999-12-14 21:25:03 +00007372 if (PyArg_ParseTuple(args, "iO&:fpathconf", &fd,
7373 conv_path_confname, &name)) {
Fred Drakec9680921999-12-13 16:37:25 +00007374 long limit;
7375
7376 errno = 0;
7377 limit = fpathconf(fd, name);
7378 if (limit == -1 && errno != 0)
7379 posix_error();
7380 else
7381 result = PyInt_FromLong(limit);
7382 }
7383 return result;
7384}
7385#endif
7386
7387
7388#ifdef HAVE_PATHCONF
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007389PyDoc_STRVAR(posix_pathconf__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007390"pathconf(path, name) -> integer\n\n\
Fred Drakec9680921999-12-13 16:37:25 +00007391Return the configuration limit name for the file or directory path.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007392If there is no limit, return -1.");
Fred Drakec9680921999-12-13 16:37:25 +00007393
7394static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007395posix_pathconf(PyObject *self, PyObject *args)
Fred Drakec9680921999-12-13 16:37:25 +00007396{
7397 PyObject *result = NULL;
7398 int name;
7399 char *path;
7400
7401 if (PyArg_ParseTuple(args, "sO&:pathconf", &path,
7402 conv_path_confname, &name)) {
7403 long limit;
7404
7405 errno = 0;
7406 limit = pathconf(path, name);
Fred Drake12c6e2d1999-12-14 21:25:03 +00007407 if (limit == -1 && errno != 0) {
Fred Drakec9680921999-12-13 16:37:25 +00007408 if (errno == EINVAL)
7409 /* could be a path or name problem */
7410 posix_error();
7411 else
7412 posix_error_with_filename(path);
Fred Drake12c6e2d1999-12-14 21:25:03 +00007413 }
Fred Drakec9680921999-12-13 16:37:25 +00007414 else
7415 result = PyInt_FromLong(limit);
7416 }
7417 return result;
7418}
7419#endif
7420
7421#ifdef HAVE_CONFSTR
7422static struct constdef posix_constants_confstr[] = {
Fred Draked86ed291999-12-15 15:34:33 +00007423#ifdef _CS_ARCHITECTURE
7424 {"CS_ARCHITECTURE", _CS_ARCHITECTURE},
7425#endif
7426#ifdef _CS_HOSTNAME
7427 {"CS_HOSTNAME", _CS_HOSTNAME},
7428#endif
7429#ifdef _CS_HW_PROVIDER
7430 {"CS_HW_PROVIDER", _CS_HW_PROVIDER},
7431#endif
7432#ifdef _CS_HW_SERIAL
7433 {"CS_HW_SERIAL", _CS_HW_SERIAL},
7434#endif
7435#ifdef _CS_INITTAB_NAME
7436 {"CS_INITTAB_NAME", _CS_INITTAB_NAME},
7437#endif
Fred Drakec9680921999-12-13 16:37:25 +00007438#ifdef _CS_LFS64_CFLAGS
7439 {"CS_LFS64_CFLAGS", _CS_LFS64_CFLAGS},
7440#endif
7441#ifdef _CS_LFS64_LDFLAGS
7442 {"CS_LFS64_LDFLAGS", _CS_LFS64_LDFLAGS},
7443#endif
7444#ifdef _CS_LFS64_LIBS
7445 {"CS_LFS64_LIBS", _CS_LFS64_LIBS},
7446#endif
7447#ifdef _CS_LFS64_LINTFLAGS
7448 {"CS_LFS64_LINTFLAGS", _CS_LFS64_LINTFLAGS},
7449#endif
7450#ifdef _CS_LFS_CFLAGS
7451 {"CS_LFS_CFLAGS", _CS_LFS_CFLAGS},
7452#endif
7453#ifdef _CS_LFS_LDFLAGS
7454 {"CS_LFS_LDFLAGS", _CS_LFS_LDFLAGS},
7455#endif
7456#ifdef _CS_LFS_LIBS
7457 {"CS_LFS_LIBS", _CS_LFS_LIBS},
7458#endif
7459#ifdef _CS_LFS_LINTFLAGS
7460 {"CS_LFS_LINTFLAGS", _CS_LFS_LINTFLAGS},
7461#endif
Fred Draked86ed291999-12-15 15:34:33 +00007462#ifdef _CS_MACHINE
7463 {"CS_MACHINE", _CS_MACHINE},
7464#endif
Fred Drakec9680921999-12-13 16:37:25 +00007465#ifdef _CS_PATH
7466 {"CS_PATH", _CS_PATH},
7467#endif
Fred Draked86ed291999-12-15 15:34:33 +00007468#ifdef _CS_RELEASE
7469 {"CS_RELEASE", _CS_RELEASE},
7470#endif
7471#ifdef _CS_SRPC_DOMAIN
7472 {"CS_SRPC_DOMAIN", _CS_SRPC_DOMAIN},
7473#endif
7474#ifdef _CS_SYSNAME
7475 {"CS_SYSNAME", _CS_SYSNAME},
7476#endif
7477#ifdef _CS_VERSION
7478 {"CS_VERSION", _CS_VERSION},
7479#endif
Fred Drakec9680921999-12-13 16:37:25 +00007480#ifdef _CS_XBS5_ILP32_OFF32_CFLAGS
7481 {"CS_XBS5_ILP32_OFF32_CFLAGS", _CS_XBS5_ILP32_OFF32_CFLAGS},
7482#endif
7483#ifdef _CS_XBS5_ILP32_OFF32_LDFLAGS
7484 {"CS_XBS5_ILP32_OFF32_LDFLAGS", _CS_XBS5_ILP32_OFF32_LDFLAGS},
7485#endif
7486#ifdef _CS_XBS5_ILP32_OFF32_LIBS
7487 {"CS_XBS5_ILP32_OFF32_LIBS", _CS_XBS5_ILP32_OFF32_LIBS},
7488#endif
7489#ifdef _CS_XBS5_ILP32_OFF32_LINTFLAGS
7490 {"CS_XBS5_ILP32_OFF32_LINTFLAGS", _CS_XBS5_ILP32_OFF32_LINTFLAGS},
7491#endif
7492#ifdef _CS_XBS5_ILP32_OFFBIG_CFLAGS
7493 {"CS_XBS5_ILP32_OFFBIG_CFLAGS", _CS_XBS5_ILP32_OFFBIG_CFLAGS},
7494#endif
7495#ifdef _CS_XBS5_ILP32_OFFBIG_LDFLAGS
7496 {"CS_XBS5_ILP32_OFFBIG_LDFLAGS", _CS_XBS5_ILP32_OFFBIG_LDFLAGS},
7497#endif
7498#ifdef _CS_XBS5_ILP32_OFFBIG_LIBS
7499 {"CS_XBS5_ILP32_OFFBIG_LIBS", _CS_XBS5_ILP32_OFFBIG_LIBS},
7500#endif
7501#ifdef _CS_XBS5_ILP32_OFFBIG_LINTFLAGS
7502 {"CS_XBS5_ILP32_OFFBIG_LINTFLAGS", _CS_XBS5_ILP32_OFFBIG_LINTFLAGS},
7503#endif
7504#ifdef _CS_XBS5_LP64_OFF64_CFLAGS
7505 {"CS_XBS5_LP64_OFF64_CFLAGS", _CS_XBS5_LP64_OFF64_CFLAGS},
7506#endif
7507#ifdef _CS_XBS5_LP64_OFF64_LDFLAGS
7508 {"CS_XBS5_LP64_OFF64_LDFLAGS", _CS_XBS5_LP64_OFF64_LDFLAGS},
7509#endif
7510#ifdef _CS_XBS5_LP64_OFF64_LIBS
7511 {"CS_XBS5_LP64_OFF64_LIBS", _CS_XBS5_LP64_OFF64_LIBS},
7512#endif
7513#ifdef _CS_XBS5_LP64_OFF64_LINTFLAGS
7514 {"CS_XBS5_LP64_OFF64_LINTFLAGS", _CS_XBS5_LP64_OFF64_LINTFLAGS},
7515#endif
7516#ifdef _CS_XBS5_LPBIG_OFFBIG_CFLAGS
7517 {"CS_XBS5_LPBIG_OFFBIG_CFLAGS", _CS_XBS5_LPBIG_OFFBIG_CFLAGS},
7518#endif
7519#ifdef _CS_XBS5_LPBIG_OFFBIG_LDFLAGS
7520 {"CS_XBS5_LPBIG_OFFBIG_LDFLAGS", _CS_XBS5_LPBIG_OFFBIG_LDFLAGS},
7521#endif
7522#ifdef _CS_XBS5_LPBIG_OFFBIG_LIBS
7523 {"CS_XBS5_LPBIG_OFFBIG_LIBS", _CS_XBS5_LPBIG_OFFBIG_LIBS},
7524#endif
7525#ifdef _CS_XBS5_LPBIG_OFFBIG_LINTFLAGS
7526 {"CS_XBS5_LPBIG_OFFBIG_LINTFLAGS", _CS_XBS5_LPBIG_OFFBIG_LINTFLAGS},
7527#endif
Fred Draked86ed291999-12-15 15:34:33 +00007528#ifdef _MIPS_CS_AVAIL_PROCESSORS
7529 {"MIPS_CS_AVAIL_PROCESSORS", _MIPS_CS_AVAIL_PROCESSORS},
7530#endif
7531#ifdef _MIPS_CS_BASE
7532 {"MIPS_CS_BASE", _MIPS_CS_BASE},
7533#endif
7534#ifdef _MIPS_CS_HOSTID
7535 {"MIPS_CS_HOSTID", _MIPS_CS_HOSTID},
7536#endif
7537#ifdef _MIPS_CS_HW_NAME
7538 {"MIPS_CS_HW_NAME", _MIPS_CS_HW_NAME},
7539#endif
7540#ifdef _MIPS_CS_NUM_PROCESSORS
7541 {"MIPS_CS_NUM_PROCESSORS", _MIPS_CS_NUM_PROCESSORS},
7542#endif
7543#ifdef _MIPS_CS_OSREL_MAJ
7544 {"MIPS_CS_OSREL_MAJ", _MIPS_CS_OSREL_MAJ},
7545#endif
7546#ifdef _MIPS_CS_OSREL_MIN
7547 {"MIPS_CS_OSREL_MIN", _MIPS_CS_OSREL_MIN},
7548#endif
7549#ifdef _MIPS_CS_OSREL_PATCH
7550 {"MIPS_CS_OSREL_PATCH", _MIPS_CS_OSREL_PATCH},
7551#endif
7552#ifdef _MIPS_CS_OS_NAME
7553 {"MIPS_CS_OS_NAME", _MIPS_CS_OS_NAME},
7554#endif
7555#ifdef _MIPS_CS_OS_PROVIDER
7556 {"MIPS_CS_OS_PROVIDER", _MIPS_CS_OS_PROVIDER},
7557#endif
7558#ifdef _MIPS_CS_PROCESSORS
7559 {"MIPS_CS_PROCESSORS", _MIPS_CS_PROCESSORS},
7560#endif
7561#ifdef _MIPS_CS_SERIAL
7562 {"MIPS_CS_SERIAL", _MIPS_CS_SERIAL},
7563#endif
7564#ifdef _MIPS_CS_VENDOR
7565 {"MIPS_CS_VENDOR", _MIPS_CS_VENDOR},
7566#endif
Fred Drakec9680921999-12-13 16:37:25 +00007567};
7568
7569static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007570conv_confstr_confname(PyObject *arg, int *valuep)
Fred Drakec9680921999-12-13 16:37:25 +00007571{
7572 return conv_confname(arg, valuep, posix_constants_confstr,
7573 sizeof(posix_constants_confstr)
7574 / sizeof(struct constdef));
7575}
7576
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007577PyDoc_STRVAR(posix_confstr__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007578"confstr(name) -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007579Return a string-valued system configuration variable.");
Fred Drakec9680921999-12-13 16:37:25 +00007580
7581static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007582posix_confstr(PyObject *self, PyObject *args)
Fred Drakec9680921999-12-13 16:37:25 +00007583{
7584 PyObject *result = NULL;
7585 int name;
Neal Norwitz449b24e2006-04-20 06:56:05 +00007586 char buffer[256];
Fred Drakec9680921999-12-13 16:37:25 +00007587
7588 if (PyArg_ParseTuple(args, "O&:confstr", conv_confstr_confname, &name)) {
Skip Montanarodd527fc2006-04-18 00:49:49 +00007589 int len;
Fred Drakec9680921999-12-13 16:37:25 +00007590
Fred Drakec9680921999-12-13 16:37:25 +00007591 errno = 0;
Skip Montanarodd527fc2006-04-18 00:49:49 +00007592 len = confstr(name, buffer, sizeof(buffer));
Skip Montanaro94785ef2006-04-20 01:29:48 +00007593 if (len == 0) {
7594 if (errno) {
7595 posix_error();
7596 }
7597 else {
7598 result = Py_None;
7599 Py_INCREF(Py_None);
7600 }
Fred Drakec9680921999-12-13 16:37:25 +00007601 }
7602 else {
Neal Norwitz0d21b1e2006-04-20 06:44:42 +00007603 if ((unsigned int)len >= sizeof(buffer)) {
Gregory P. Smithdd96db62008-06-09 04:58:54 +00007604 result = PyString_FromStringAndSize(NULL, len-1);
Fred Drakec9680921999-12-13 16:37:25 +00007605 if (result != NULL)
Gregory P. Smithdd96db62008-06-09 04:58:54 +00007606 confstr(name, PyString_AS_STRING(result), len);
Fred Drakec9680921999-12-13 16:37:25 +00007607 }
7608 else
Gregory P. Smithdd96db62008-06-09 04:58:54 +00007609 result = PyString_FromStringAndSize(buffer, len-1);
Fred Drakec9680921999-12-13 16:37:25 +00007610 }
7611 }
7612 return result;
7613}
7614#endif
7615
7616
7617#ifdef HAVE_SYSCONF
7618static struct constdef posix_constants_sysconf[] = {
7619#ifdef _SC_2_CHAR_TERM
7620 {"SC_2_CHAR_TERM", _SC_2_CHAR_TERM},
7621#endif
7622#ifdef _SC_2_C_BIND
7623 {"SC_2_C_BIND", _SC_2_C_BIND},
7624#endif
7625#ifdef _SC_2_C_DEV
7626 {"SC_2_C_DEV", _SC_2_C_DEV},
7627#endif
7628#ifdef _SC_2_C_VERSION
7629 {"SC_2_C_VERSION", _SC_2_C_VERSION},
7630#endif
7631#ifdef _SC_2_FORT_DEV
7632 {"SC_2_FORT_DEV", _SC_2_FORT_DEV},
7633#endif
7634#ifdef _SC_2_FORT_RUN
7635 {"SC_2_FORT_RUN", _SC_2_FORT_RUN},
7636#endif
7637#ifdef _SC_2_LOCALEDEF
7638 {"SC_2_LOCALEDEF", _SC_2_LOCALEDEF},
7639#endif
7640#ifdef _SC_2_SW_DEV
7641 {"SC_2_SW_DEV", _SC_2_SW_DEV},
7642#endif
7643#ifdef _SC_2_UPE
7644 {"SC_2_UPE", _SC_2_UPE},
7645#endif
7646#ifdef _SC_2_VERSION
7647 {"SC_2_VERSION", _SC_2_VERSION},
7648#endif
Fred Draked86ed291999-12-15 15:34:33 +00007649#ifdef _SC_ABI_ASYNCHRONOUS_IO
7650 {"SC_ABI_ASYNCHRONOUS_IO", _SC_ABI_ASYNCHRONOUS_IO},
7651#endif
7652#ifdef _SC_ACL
7653 {"SC_ACL", _SC_ACL},
7654#endif
Fred Drakec9680921999-12-13 16:37:25 +00007655#ifdef _SC_AIO_LISTIO_MAX
7656 {"SC_AIO_LISTIO_MAX", _SC_AIO_LISTIO_MAX},
7657#endif
Fred Drakec9680921999-12-13 16:37:25 +00007658#ifdef _SC_AIO_MAX
7659 {"SC_AIO_MAX", _SC_AIO_MAX},
7660#endif
7661#ifdef _SC_AIO_PRIO_DELTA_MAX
7662 {"SC_AIO_PRIO_DELTA_MAX", _SC_AIO_PRIO_DELTA_MAX},
7663#endif
7664#ifdef _SC_ARG_MAX
7665 {"SC_ARG_MAX", _SC_ARG_MAX},
7666#endif
7667#ifdef _SC_ASYNCHRONOUS_IO
7668 {"SC_ASYNCHRONOUS_IO", _SC_ASYNCHRONOUS_IO},
7669#endif
7670#ifdef _SC_ATEXIT_MAX
7671 {"SC_ATEXIT_MAX", _SC_ATEXIT_MAX},
7672#endif
Fred Draked86ed291999-12-15 15:34:33 +00007673#ifdef _SC_AUDIT
7674 {"SC_AUDIT", _SC_AUDIT},
7675#endif
Fred Drakec9680921999-12-13 16:37:25 +00007676#ifdef _SC_AVPHYS_PAGES
7677 {"SC_AVPHYS_PAGES", _SC_AVPHYS_PAGES},
7678#endif
7679#ifdef _SC_BC_BASE_MAX
7680 {"SC_BC_BASE_MAX", _SC_BC_BASE_MAX},
7681#endif
7682#ifdef _SC_BC_DIM_MAX
7683 {"SC_BC_DIM_MAX", _SC_BC_DIM_MAX},
7684#endif
7685#ifdef _SC_BC_SCALE_MAX
7686 {"SC_BC_SCALE_MAX", _SC_BC_SCALE_MAX},
7687#endif
7688#ifdef _SC_BC_STRING_MAX
7689 {"SC_BC_STRING_MAX", _SC_BC_STRING_MAX},
7690#endif
Fred Draked86ed291999-12-15 15:34:33 +00007691#ifdef _SC_CAP
7692 {"SC_CAP", _SC_CAP},
7693#endif
Fred Drakec9680921999-12-13 16:37:25 +00007694#ifdef _SC_CHARCLASS_NAME_MAX
7695 {"SC_CHARCLASS_NAME_MAX", _SC_CHARCLASS_NAME_MAX},
7696#endif
7697#ifdef _SC_CHAR_BIT
7698 {"SC_CHAR_BIT", _SC_CHAR_BIT},
7699#endif
7700#ifdef _SC_CHAR_MAX
7701 {"SC_CHAR_MAX", _SC_CHAR_MAX},
7702#endif
7703#ifdef _SC_CHAR_MIN
7704 {"SC_CHAR_MIN", _SC_CHAR_MIN},
7705#endif
7706#ifdef _SC_CHILD_MAX
7707 {"SC_CHILD_MAX", _SC_CHILD_MAX},
7708#endif
7709#ifdef _SC_CLK_TCK
7710 {"SC_CLK_TCK", _SC_CLK_TCK},
7711#endif
7712#ifdef _SC_COHER_BLKSZ
7713 {"SC_COHER_BLKSZ", _SC_COHER_BLKSZ},
7714#endif
7715#ifdef _SC_COLL_WEIGHTS_MAX
7716 {"SC_COLL_WEIGHTS_MAX", _SC_COLL_WEIGHTS_MAX},
7717#endif
7718#ifdef _SC_DCACHE_ASSOC
7719 {"SC_DCACHE_ASSOC", _SC_DCACHE_ASSOC},
7720#endif
7721#ifdef _SC_DCACHE_BLKSZ
7722 {"SC_DCACHE_BLKSZ", _SC_DCACHE_BLKSZ},
7723#endif
7724#ifdef _SC_DCACHE_LINESZ
7725 {"SC_DCACHE_LINESZ", _SC_DCACHE_LINESZ},
7726#endif
7727#ifdef _SC_DCACHE_SZ
7728 {"SC_DCACHE_SZ", _SC_DCACHE_SZ},
7729#endif
7730#ifdef _SC_DCACHE_TBLKSZ
7731 {"SC_DCACHE_TBLKSZ", _SC_DCACHE_TBLKSZ},
7732#endif
7733#ifdef _SC_DELAYTIMER_MAX
7734 {"SC_DELAYTIMER_MAX", _SC_DELAYTIMER_MAX},
7735#endif
7736#ifdef _SC_EQUIV_CLASS_MAX
7737 {"SC_EQUIV_CLASS_MAX", _SC_EQUIV_CLASS_MAX},
7738#endif
7739#ifdef _SC_EXPR_NEST_MAX
7740 {"SC_EXPR_NEST_MAX", _SC_EXPR_NEST_MAX},
7741#endif
7742#ifdef _SC_FSYNC
7743 {"SC_FSYNC", _SC_FSYNC},
7744#endif
7745#ifdef _SC_GETGR_R_SIZE_MAX
7746 {"SC_GETGR_R_SIZE_MAX", _SC_GETGR_R_SIZE_MAX},
7747#endif
7748#ifdef _SC_GETPW_R_SIZE_MAX
7749 {"SC_GETPW_R_SIZE_MAX", _SC_GETPW_R_SIZE_MAX},
7750#endif
7751#ifdef _SC_ICACHE_ASSOC
7752 {"SC_ICACHE_ASSOC", _SC_ICACHE_ASSOC},
7753#endif
7754#ifdef _SC_ICACHE_BLKSZ
7755 {"SC_ICACHE_BLKSZ", _SC_ICACHE_BLKSZ},
7756#endif
7757#ifdef _SC_ICACHE_LINESZ
7758 {"SC_ICACHE_LINESZ", _SC_ICACHE_LINESZ},
7759#endif
7760#ifdef _SC_ICACHE_SZ
7761 {"SC_ICACHE_SZ", _SC_ICACHE_SZ},
7762#endif
Fred Draked86ed291999-12-15 15:34:33 +00007763#ifdef _SC_INF
7764 {"SC_INF", _SC_INF},
7765#endif
Fred Drakec9680921999-12-13 16:37:25 +00007766#ifdef _SC_INT_MAX
7767 {"SC_INT_MAX", _SC_INT_MAX},
7768#endif
7769#ifdef _SC_INT_MIN
7770 {"SC_INT_MIN", _SC_INT_MIN},
7771#endif
7772#ifdef _SC_IOV_MAX
7773 {"SC_IOV_MAX", _SC_IOV_MAX},
7774#endif
Fred Draked86ed291999-12-15 15:34:33 +00007775#ifdef _SC_IP_SECOPTS
7776 {"SC_IP_SECOPTS", _SC_IP_SECOPTS},
7777#endif
Fred Drakec9680921999-12-13 16:37:25 +00007778#ifdef _SC_JOB_CONTROL
7779 {"SC_JOB_CONTROL", _SC_JOB_CONTROL},
7780#endif
Fred Draked86ed291999-12-15 15:34:33 +00007781#ifdef _SC_KERN_POINTERS
7782 {"SC_KERN_POINTERS", _SC_KERN_POINTERS},
7783#endif
7784#ifdef _SC_KERN_SIM
7785 {"SC_KERN_SIM", _SC_KERN_SIM},
7786#endif
Fred Drakec9680921999-12-13 16:37:25 +00007787#ifdef _SC_LINE_MAX
7788 {"SC_LINE_MAX", _SC_LINE_MAX},
7789#endif
7790#ifdef _SC_LOGIN_NAME_MAX
7791 {"SC_LOGIN_NAME_MAX", _SC_LOGIN_NAME_MAX},
7792#endif
7793#ifdef _SC_LOGNAME_MAX
7794 {"SC_LOGNAME_MAX", _SC_LOGNAME_MAX},
7795#endif
7796#ifdef _SC_LONG_BIT
7797 {"SC_LONG_BIT", _SC_LONG_BIT},
7798#endif
Fred Draked86ed291999-12-15 15:34:33 +00007799#ifdef _SC_MAC
7800 {"SC_MAC", _SC_MAC},
7801#endif
Fred Drakec9680921999-12-13 16:37:25 +00007802#ifdef _SC_MAPPED_FILES
7803 {"SC_MAPPED_FILES", _SC_MAPPED_FILES},
7804#endif
7805#ifdef _SC_MAXPID
7806 {"SC_MAXPID", _SC_MAXPID},
7807#endif
7808#ifdef _SC_MB_LEN_MAX
7809 {"SC_MB_LEN_MAX", _SC_MB_LEN_MAX},
7810#endif
7811#ifdef _SC_MEMLOCK
7812 {"SC_MEMLOCK", _SC_MEMLOCK},
7813#endif
7814#ifdef _SC_MEMLOCK_RANGE
7815 {"SC_MEMLOCK_RANGE", _SC_MEMLOCK_RANGE},
7816#endif
7817#ifdef _SC_MEMORY_PROTECTION
7818 {"SC_MEMORY_PROTECTION", _SC_MEMORY_PROTECTION},
7819#endif
7820#ifdef _SC_MESSAGE_PASSING
7821 {"SC_MESSAGE_PASSING", _SC_MESSAGE_PASSING},
7822#endif
Fred Draked86ed291999-12-15 15:34:33 +00007823#ifdef _SC_MMAP_FIXED_ALIGNMENT
7824 {"SC_MMAP_FIXED_ALIGNMENT", _SC_MMAP_FIXED_ALIGNMENT},
7825#endif
Fred Drakec9680921999-12-13 16:37:25 +00007826#ifdef _SC_MQ_OPEN_MAX
7827 {"SC_MQ_OPEN_MAX", _SC_MQ_OPEN_MAX},
7828#endif
7829#ifdef _SC_MQ_PRIO_MAX
7830 {"SC_MQ_PRIO_MAX", _SC_MQ_PRIO_MAX},
7831#endif
Fred Draked86ed291999-12-15 15:34:33 +00007832#ifdef _SC_NACLS_MAX
7833 {"SC_NACLS_MAX", _SC_NACLS_MAX},
7834#endif
Fred Drakec9680921999-12-13 16:37:25 +00007835#ifdef _SC_NGROUPS_MAX
7836 {"SC_NGROUPS_MAX", _SC_NGROUPS_MAX},
7837#endif
7838#ifdef _SC_NL_ARGMAX
7839 {"SC_NL_ARGMAX", _SC_NL_ARGMAX},
7840#endif
7841#ifdef _SC_NL_LANGMAX
7842 {"SC_NL_LANGMAX", _SC_NL_LANGMAX},
7843#endif
7844#ifdef _SC_NL_MSGMAX
7845 {"SC_NL_MSGMAX", _SC_NL_MSGMAX},
7846#endif
7847#ifdef _SC_NL_NMAX
7848 {"SC_NL_NMAX", _SC_NL_NMAX},
7849#endif
7850#ifdef _SC_NL_SETMAX
7851 {"SC_NL_SETMAX", _SC_NL_SETMAX},
7852#endif
7853#ifdef _SC_NL_TEXTMAX
7854 {"SC_NL_TEXTMAX", _SC_NL_TEXTMAX},
7855#endif
7856#ifdef _SC_NPROCESSORS_CONF
7857 {"SC_NPROCESSORS_CONF", _SC_NPROCESSORS_CONF},
7858#endif
7859#ifdef _SC_NPROCESSORS_ONLN
7860 {"SC_NPROCESSORS_ONLN", _SC_NPROCESSORS_ONLN},
7861#endif
Fred Draked86ed291999-12-15 15:34:33 +00007862#ifdef _SC_NPROC_CONF
7863 {"SC_NPROC_CONF", _SC_NPROC_CONF},
7864#endif
7865#ifdef _SC_NPROC_ONLN
7866 {"SC_NPROC_ONLN", _SC_NPROC_ONLN},
7867#endif
Fred Drakec9680921999-12-13 16:37:25 +00007868#ifdef _SC_NZERO
7869 {"SC_NZERO", _SC_NZERO},
7870#endif
7871#ifdef _SC_OPEN_MAX
7872 {"SC_OPEN_MAX", _SC_OPEN_MAX},
7873#endif
7874#ifdef _SC_PAGESIZE
7875 {"SC_PAGESIZE", _SC_PAGESIZE},
7876#endif
7877#ifdef _SC_PAGE_SIZE
7878 {"SC_PAGE_SIZE", _SC_PAGE_SIZE},
7879#endif
7880#ifdef _SC_PASS_MAX
7881 {"SC_PASS_MAX", _SC_PASS_MAX},
7882#endif
7883#ifdef _SC_PHYS_PAGES
7884 {"SC_PHYS_PAGES", _SC_PHYS_PAGES},
7885#endif
7886#ifdef _SC_PII
7887 {"SC_PII", _SC_PII},
7888#endif
7889#ifdef _SC_PII_INTERNET
7890 {"SC_PII_INTERNET", _SC_PII_INTERNET},
7891#endif
7892#ifdef _SC_PII_INTERNET_DGRAM
7893 {"SC_PII_INTERNET_DGRAM", _SC_PII_INTERNET_DGRAM},
7894#endif
7895#ifdef _SC_PII_INTERNET_STREAM
7896 {"SC_PII_INTERNET_STREAM", _SC_PII_INTERNET_STREAM},
7897#endif
7898#ifdef _SC_PII_OSI
7899 {"SC_PII_OSI", _SC_PII_OSI},
7900#endif
7901#ifdef _SC_PII_OSI_CLTS
7902 {"SC_PII_OSI_CLTS", _SC_PII_OSI_CLTS},
7903#endif
7904#ifdef _SC_PII_OSI_COTS
7905 {"SC_PII_OSI_COTS", _SC_PII_OSI_COTS},
7906#endif
7907#ifdef _SC_PII_OSI_M
7908 {"SC_PII_OSI_M", _SC_PII_OSI_M},
7909#endif
7910#ifdef _SC_PII_SOCKET
7911 {"SC_PII_SOCKET", _SC_PII_SOCKET},
7912#endif
7913#ifdef _SC_PII_XTI
7914 {"SC_PII_XTI", _SC_PII_XTI},
7915#endif
7916#ifdef _SC_POLL
7917 {"SC_POLL", _SC_POLL},
7918#endif
7919#ifdef _SC_PRIORITIZED_IO
7920 {"SC_PRIORITIZED_IO", _SC_PRIORITIZED_IO},
7921#endif
7922#ifdef _SC_PRIORITY_SCHEDULING
7923 {"SC_PRIORITY_SCHEDULING", _SC_PRIORITY_SCHEDULING},
7924#endif
7925#ifdef _SC_REALTIME_SIGNALS
7926 {"SC_REALTIME_SIGNALS", _SC_REALTIME_SIGNALS},
7927#endif
7928#ifdef _SC_RE_DUP_MAX
7929 {"SC_RE_DUP_MAX", _SC_RE_DUP_MAX},
7930#endif
7931#ifdef _SC_RTSIG_MAX
7932 {"SC_RTSIG_MAX", _SC_RTSIG_MAX},
7933#endif
7934#ifdef _SC_SAVED_IDS
7935 {"SC_SAVED_IDS", _SC_SAVED_IDS},
7936#endif
7937#ifdef _SC_SCHAR_MAX
7938 {"SC_SCHAR_MAX", _SC_SCHAR_MAX},
7939#endif
7940#ifdef _SC_SCHAR_MIN
7941 {"SC_SCHAR_MIN", _SC_SCHAR_MIN},
7942#endif
7943#ifdef _SC_SELECT
7944 {"SC_SELECT", _SC_SELECT},
7945#endif
7946#ifdef _SC_SEMAPHORES
7947 {"SC_SEMAPHORES", _SC_SEMAPHORES},
7948#endif
7949#ifdef _SC_SEM_NSEMS_MAX
7950 {"SC_SEM_NSEMS_MAX", _SC_SEM_NSEMS_MAX},
7951#endif
7952#ifdef _SC_SEM_VALUE_MAX
7953 {"SC_SEM_VALUE_MAX", _SC_SEM_VALUE_MAX},
7954#endif
7955#ifdef _SC_SHARED_MEMORY_OBJECTS
7956 {"SC_SHARED_MEMORY_OBJECTS", _SC_SHARED_MEMORY_OBJECTS},
7957#endif
7958#ifdef _SC_SHRT_MAX
7959 {"SC_SHRT_MAX", _SC_SHRT_MAX},
7960#endif
7961#ifdef _SC_SHRT_MIN
7962 {"SC_SHRT_MIN", _SC_SHRT_MIN},
7963#endif
7964#ifdef _SC_SIGQUEUE_MAX
7965 {"SC_SIGQUEUE_MAX", _SC_SIGQUEUE_MAX},
7966#endif
7967#ifdef _SC_SIGRT_MAX
7968 {"SC_SIGRT_MAX", _SC_SIGRT_MAX},
7969#endif
7970#ifdef _SC_SIGRT_MIN
7971 {"SC_SIGRT_MIN", _SC_SIGRT_MIN},
7972#endif
Fred Draked86ed291999-12-15 15:34:33 +00007973#ifdef _SC_SOFTPOWER
7974 {"SC_SOFTPOWER", _SC_SOFTPOWER},
7975#endif
Fred Drakec9680921999-12-13 16:37:25 +00007976#ifdef _SC_SPLIT_CACHE
7977 {"SC_SPLIT_CACHE", _SC_SPLIT_CACHE},
7978#endif
7979#ifdef _SC_SSIZE_MAX
7980 {"SC_SSIZE_MAX", _SC_SSIZE_MAX},
7981#endif
7982#ifdef _SC_STACK_PROT
7983 {"SC_STACK_PROT", _SC_STACK_PROT},
7984#endif
7985#ifdef _SC_STREAM_MAX
7986 {"SC_STREAM_MAX", _SC_STREAM_MAX},
7987#endif
7988#ifdef _SC_SYNCHRONIZED_IO
7989 {"SC_SYNCHRONIZED_IO", _SC_SYNCHRONIZED_IO},
7990#endif
7991#ifdef _SC_THREADS
7992 {"SC_THREADS", _SC_THREADS},
7993#endif
7994#ifdef _SC_THREAD_ATTR_STACKADDR
7995 {"SC_THREAD_ATTR_STACKADDR", _SC_THREAD_ATTR_STACKADDR},
7996#endif
7997#ifdef _SC_THREAD_ATTR_STACKSIZE
7998 {"SC_THREAD_ATTR_STACKSIZE", _SC_THREAD_ATTR_STACKSIZE},
7999#endif
8000#ifdef _SC_THREAD_DESTRUCTOR_ITERATIONS
8001 {"SC_THREAD_DESTRUCTOR_ITERATIONS", _SC_THREAD_DESTRUCTOR_ITERATIONS},
8002#endif
8003#ifdef _SC_THREAD_KEYS_MAX
8004 {"SC_THREAD_KEYS_MAX", _SC_THREAD_KEYS_MAX},
8005#endif
8006#ifdef _SC_THREAD_PRIORITY_SCHEDULING
8007 {"SC_THREAD_PRIORITY_SCHEDULING", _SC_THREAD_PRIORITY_SCHEDULING},
8008#endif
8009#ifdef _SC_THREAD_PRIO_INHERIT
8010 {"SC_THREAD_PRIO_INHERIT", _SC_THREAD_PRIO_INHERIT},
8011#endif
8012#ifdef _SC_THREAD_PRIO_PROTECT
8013 {"SC_THREAD_PRIO_PROTECT", _SC_THREAD_PRIO_PROTECT},
8014#endif
8015#ifdef _SC_THREAD_PROCESS_SHARED
8016 {"SC_THREAD_PROCESS_SHARED", _SC_THREAD_PROCESS_SHARED},
8017#endif
8018#ifdef _SC_THREAD_SAFE_FUNCTIONS
8019 {"SC_THREAD_SAFE_FUNCTIONS", _SC_THREAD_SAFE_FUNCTIONS},
8020#endif
8021#ifdef _SC_THREAD_STACK_MIN
8022 {"SC_THREAD_STACK_MIN", _SC_THREAD_STACK_MIN},
8023#endif
8024#ifdef _SC_THREAD_THREADS_MAX
8025 {"SC_THREAD_THREADS_MAX", _SC_THREAD_THREADS_MAX},
8026#endif
8027#ifdef _SC_TIMERS
8028 {"SC_TIMERS", _SC_TIMERS},
8029#endif
8030#ifdef _SC_TIMER_MAX
8031 {"SC_TIMER_MAX", _SC_TIMER_MAX},
8032#endif
8033#ifdef _SC_TTY_NAME_MAX
8034 {"SC_TTY_NAME_MAX", _SC_TTY_NAME_MAX},
8035#endif
8036#ifdef _SC_TZNAME_MAX
8037 {"SC_TZNAME_MAX", _SC_TZNAME_MAX},
8038#endif
8039#ifdef _SC_T_IOV_MAX
8040 {"SC_T_IOV_MAX", _SC_T_IOV_MAX},
8041#endif
8042#ifdef _SC_UCHAR_MAX
8043 {"SC_UCHAR_MAX", _SC_UCHAR_MAX},
8044#endif
8045#ifdef _SC_UINT_MAX
8046 {"SC_UINT_MAX", _SC_UINT_MAX},
8047#endif
8048#ifdef _SC_UIO_MAXIOV
8049 {"SC_UIO_MAXIOV", _SC_UIO_MAXIOV},
8050#endif
8051#ifdef _SC_ULONG_MAX
8052 {"SC_ULONG_MAX", _SC_ULONG_MAX},
8053#endif
8054#ifdef _SC_USHRT_MAX
8055 {"SC_USHRT_MAX", _SC_USHRT_MAX},
8056#endif
8057#ifdef _SC_VERSION
8058 {"SC_VERSION", _SC_VERSION},
8059#endif
8060#ifdef _SC_WORD_BIT
8061 {"SC_WORD_BIT", _SC_WORD_BIT},
8062#endif
8063#ifdef _SC_XBS5_ILP32_OFF32
8064 {"SC_XBS5_ILP32_OFF32", _SC_XBS5_ILP32_OFF32},
8065#endif
8066#ifdef _SC_XBS5_ILP32_OFFBIG
8067 {"SC_XBS5_ILP32_OFFBIG", _SC_XBS5_ILP32_OFFBIG},
8068#endif
8069#ifdef _SC_XBS5_LP64_OFF64
8070 {"SC_XBS5_LP64_OFF64", _SC_XBS5_LP64_OFF64},
8071#endif
8072#ifdef _SC_XBS5_LPBIG_OFFBIG
8073 {"SC_XBS5_LPBIG_OFFBIG", _SC_XBS5_LPBIG_OFFBIG},
8074#endif
8075#ifdef _SC_XOPEN_CRYPT
8076 {"SC_XOPEN_CRYPT", _SC_XOPEN_CRYPT},
8077#endif
8078#ifdef _SC_XOPEN_ENH_I18N
8079 {"SC_XOPEN_ENH_I18N", _SC_XOPEN_ENH_I18N},
8080#endif
8081#ifdef _SC_XOPEN_LEGACY
8082 {"SC_XOPEN_LEGACY", _SC_XOPEN_LEGACY},
8083#endif
8084#ifdef _SC_XOPEN_REALTIME
8085 {"SC_XOPEN_REALTIME", _SC_XOPEN_REALTIME},
8086#endif
8087#ifdef _SC_XOPEN_REALTIME_THREADS
8088 {"SC_XOPEN_REALTIME_THREADS", _SC_XOPEN_REALTIME_THREADS},
8089#endif
8090#ifdef _SC_XOPEN_SHM
8091 {"SC_XOPEN_SHM", _SC_XOPEN_SHM},
8092#endif
8093#ifdef _SC_XOPEN_UNIX
8094 {"SC_XOPEN_UNIX", _SC_XOPEN_UNIX},
8095#endif
8096#ifdef _SC_XOPEN_VERSION
8097 {"SC_XOPEN_VERSION", _SC_XOPEN_VERSION},
8098#endif
8099#ifdef _SC_XOPEN_XCU_VERSION
8100 {"SC_XOPEN_XCU_VERSION", _SC_XOPEN_XCU_VERSION},
8101#endif
8102#ifdef _SC_XOPEN_XPG2
8103 {"SC_XOPEN_XPG2", _SC_XOPEN_XPG2},
8104#endif
8105#ifdef _SC_XOPEN_XPG3
8106 {"SC_XOPEN_XPG3", _SC_XOPEN_XPG3},
8107#endif
8108#ifdef _SC_XOPEN_XPG4
8109 {"SC_XOPEN_XPG4", _SC_XOPEN_XPG4},
8110#endif
8111};
8112
8113static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00008114conv_sysconf_confname(PyObject *arg, int *valuep)
Fred Drakec9680921999-12-13 16:37:25 +00008115{
8116 return conv_confname(arg, valuep, posix_constants_sysconf,
8117 sizeof(posix_constants_sysconf)
8118 / sizeof(struct constdef));
8119}
8120
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008121PyDoc_STRVAR(posix_sysconf__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00008122"sysconf(name) -> integer\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008123Return an integer-valued system configuration variable.");
Fred Drakec9680921999-12-13 16:37:25 +00008124
8125static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00008126posix_sysconf(PyObject *self, PyObject *args)
Fred Drakec9680921999-12-13 16:37:25 +00008127{
8128 PyObject *result = NULL;
8129 int name;
8130
8131 if (PyArg_ParseTuple(args, "O&:sysconf", conv_sysconf_confname, &name)) {
8132 int value;
8133
8134 errno = 0;
8135 value = sysconf(name);
8136 if (value == -1 && errno != 0)
8137 posix_error();
8138 else
8139 result = PyInt_FromLong(value);
8140 }
8141 return result;
8142}
8143#endif
8144
8145
Fred Drakebec628d1999-12-15 18:31:10 +00008146/* This code is used to ensure that the tables of configuration value names
8147 * are in sorted order as required by conv_confname(), and also to build the
8148 * the exported dictionaries that are used to publish information about the
8149 * names available on the host platform.
8150 *
8151 * Sorting the table at runtime ensures that the table is properly ordered
8152 * when used, even for platforms we're not able to test on. It also makes
8153 * it easier to add additional entries to the tables.
Fred Draked86ed291999-12-15 15:34:33 +00008154 */
Fred Drakebec628d1999-12-15 18:31:10 +00008155
8156static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00008157cmp_constdefs(const void *v1, const void *v2)
Fred Drakebec628d1999-12-15 18:31:10 +00008158{
8159 const struct constdef *c1 =
8160 (const struct constdef *) v1;
8161 const struct constdef *c2 =
8162 (const struct constdef *) v2;
8163
8164 return strcmp(c1->name, c2->name);
8165}
8166
8167static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00008168setup_confname_table(struct constdef *table, size_t tablesize,
Fred Drake4d1e64b2002-04-15 19:40:07 +00008169 char *tablename, PyObject *module)
Fred Draked86ed291999-12-15 15:34:33 +00008170{
Fred Drakebec628d1999-12-15 18:31:10 +00008171 PyObject *d = NULL;
Barry Warsaw3155db32000-04-13 15:20:40 +00008172 size_t i;
Fred Drakebec628d1999-12-15 18:31:10 +00008173
8174 qsort(table, tablesize, sizeof(struct constdef), cmp_constdefs);
8175 d = PyDict_New();
Barry Warsaw3155db32000-04-13 15:20:40 +00008176 if (d == NULL)
8177 return -1;
Fred Draked86ed291999-12-15 15:34:33 +00008178
Barry Warsaw3155db32000-04-13 15:20:40 +00008179 for (i=0; i < tablesize; ++i) {
8180 PyObject *o = PyInt_FromLong(table[i].value);
8181 if (o == NULL || PyDict_SetItemString(d, table[i].name, o) == -1) {
8182 Py_XDECREF(o);
8183 Py_DECREF(d);
8184 return -1;
Fred Draked86ed291999-12-15 15:34:33 +00008185 }
Barry Warsaw3155db32000-04-13 15:20:40 +00008186 Py_DECREF(o);
Fred Draked86ed291999-12-15 15:34:33 +00008187 }
Fred Drake4d1e64b2002-04-15 19:40:07 +00008188 return PyModule_AddObject(module, tablename, d);
Fred Draked86ed291999-12-15 15:34:33 +00008189}
8190
Fred Drakebec628d1999-12-15 18:31:10 +00008191/* Return -1 on failure, 0 on success. */
8192static int
Fred Drake4d1e64b2002-04-15 19:40:07 +00008193setup_confname_tables(PyObject *module)
Fred Draked86ed291999-12-15 15:34:33 +00008194{
8195#if defined(HAVE_FPATHCONF) || defined(HAVE_PATHCONF)
Fred Drakebec628d1999-12-15 18:31:10 +00008196 if (setup_confname_table(posix_constants_pathconf,
Fred Draked86ed291999-12-15 15:34:33 +00008197 sizeof(posix_constants_pathconf)
8198 / sizeof(struct constdef),
Fred Drake4d1e64b2002-04-15 19:40:07 +00008199 "pathconf_names", module))
Fred Drakebec628d1999-12-15 18:31:10 +00008200 return -1;
Fred Draked86ed291999-12-15 15:34:33 +00008201#endif
8202#ifdef HAVE_CONFSTR
Fred Drakebec628d1999-12-15 18:31:10 +00008203 if (setup_confname_table(posix_constants_confstr,
Fred Draked86ed291999-12-15 15:34:33 +00008204 sizeof(posix_constants_confstr)
8205 / sizeof(struct constdef),
Fred Drake4d1e64b2002-04-15 19:40:07 +00008206 "confstr_names", module))
Fred Drakebec628d1999-12-15 18:31:10 +00008207 return -1;
Fred Draked86ed291999-12-15 15:34:33 +00008208#endif
8209#ifdef HAVE_SYSCONF
Fred Drakebec628d1999-12-15 18:31:10 +00008210 if (setup_confname_table(posix_constants_sysconf,
Fred Draked86ed291999-12-15 15:34:33 +00008211 sizeof(posix_constants_sysconf)
8212 / sizeof(struct constdef),
Fred Drake4d1e64b2002-04-15 19:40:07 +00008213 "sysconf_names", module))
Fred Drakebec628d1999-12-15 18:31:10 +00008214 return -1;
Fred Draked86ed291999-12-15 15:34:33 +00008215#endif
Fred Drakebec628d1999-12-15 18:31:10 +00008216 return 0;
Fred Draked86ed291999-12-15 15:34:33 +00008217}
Fred Draked86ed291999-12-15 15:34:33 +00008218
8219
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008220PyDoc_STRVAR(posix_abort__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00008221"abort() -> does not return!\n\n\
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008222Abort the interpreter immediately. This 'dumps core' or otherwise fails\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008223in the hardest way possible on the hosting operating system.");
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008224
8225static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00008226posix_abort(PyObject *self, PyObject *noargs)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008227{
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008228 abort();
8229 /*NOTREACHED*/
8230 Py_FatalError("abort() called from Python code didn't abort!");
8231 return NULL;
8232}
Fred Drakebec628d1999-12-15 18:31:10 +00008233
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00008234#ifdef MS_WINDOWS
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008235PyDoc_STRVAR(win32_startfile__doc__,
Georg Brandlf4f44152006-02-18 22:29:33 +00008236"startfile(filepath [, operation]) - Start a file with its associated\n\
8237application.\n\
Tim Petersf58a7aa2000-09-22 10:05:54 +00008238\n\
Georg Brandlf4f44152006-02-18 22:29:33 +00008239When \"operation\" is not specified or \"open\", this acts like\n\
8240double-clicking the file in Explorer, or giving the file name as an\n\
8241argument to the DOS \"start\" command: the file is opened with whatever\n\
8242application (if any) its extension is associated.\n\
8243When another \"operation\" is given, it specifies what should be done with\n\
8244the file. A typical operation is \"print\".\n\
Tim Petersf58a7aa2000-09-22 10:05:54 +00008245\n\
8246startfile returns as soon as the associated application is launched.\n\
8247There is no option to wait for the application to close, and no way\n\
8248to retrieve the application's exit status.\n\
8249\n\
8250The filepath is relative to the current directory. If you want to use\n\
8251an absolute path, make sure the first character is not a slash (\"/\");\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008252the underlying Win32 ShellExecute function doesn't work if it is.");
Tim Petersf58a7aa2000-09-22 10:05:54 +00008253
8254static PyObject *
8255win32_startfile(PyObject *self, PyObject *args)
8256{
8257 char *filepath;
Georg Brandlf4f44152006-02-18 22:29:33 +00008258 char *operation = NULL;
Tim Petersf58a7aa2000-09-22 10:05:54 +00008259 HINSTANCE rc;
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00008260
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00008261 PyObject *unipath, *woperation = NULL;
8262 if (!PyArg_ParseTuple(args, "U|s:startfile",
8263 &unipath, &operation)) {
8264 PyErr_Clear();
8265 goto normal;
8266 }
8267
8268 if (operation) {
8269 woperation = PyUnicode_DecodeASCII(operation,
8270 strlen(operation), NULL);
8271 if (!woperation) {
Georg Brandlad89dc82006-04-03 12:26:26 +00008272 PyErr_Clear();
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00008273 operation = NULL;
Georg Brandlad89dc82006-04-03 12:26:26 +00008274 goto normal;
8275 }
Georg Brandlad89dc82006-04-03 12:26:26 +00008276 }
Hirokazu Yamamotoa3c56092009-06-28 10:23:00 +00008277
8278 Py_BEGIN_ALLOW_THREADS
8279 rc = ShellExecuteW((HWND)0, woperation ? PyUnicode_AS_UNICODE(woperation) : 0,
8280 PyUnicode_AS_UNICODE(unipath),
8281 NULL, NULL, SW_SHOWNORMAL);
8282 Py_END_ALLOW_THREADS
8283
8284 Py_XDECREF(woperation);
8285 if (rc <= (HINSTANCE)32) {
8286 PyObject *errval = win32_error_unicode("startfile",
8287 PyUnicode_AS_UNICODE(unipath));
8288 return errval;
8289 }
8290 Py_INCREF(Py_None);
8291 return Py_None;
Georg Brandlad89dc82006-04-03 12:26:26 +00008292
8293normal:
Georg Brandlf4f44152006-02-18 22:29:33 +00008294 if (!PyArg_ParseTuple(args, "et|s:startfile",
8295 Py_FileSystemDefaultEncoding, &filepath,
8296 &operation))
Tim Petersf58a7aa2000-09-22 10:05:54 +00008297 return NULL;
8298 Py_BEGIN_ALLOW_THREADS
Georg Brandlf4f44152006-02-18 22:29:33 +00008299 rc = ShellExecute((HWND)0, operation, filepath,
8300 NULL, NULL, SW_SHOWNORMAL);
Tim Petersf58a7aa2000-09-22 10:05:54 +00008301 Py_END_ALLOW_THREADS
Georg Brandle9f8ec92005-09-25 06:16:40 +00008302 if (rc <= (HINSTANCE)32) {
8303 PyObject *errval = win32_error("startfile", filepath);
8304 PyMem_Free(filepath);
8305 return errval;
8306 }
8307 PyMem_Free(filepath);
Tim Petersf58a7aa2000-09-22 10:05:54 +00008308 Py_INCREF(Py_None);
8309 return Py_None;
8310}
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00008311#endif /* MS_WINDOWS */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008312
Martin v. Löwis438b5342002-12-27 10:16:42 +00008313#ifdef HAVE_GETLOADAVG
8314PyDoc_STRVAR(posix_getloadavg__doc__,
8315"getloadavg() -> (float, float, float)\n\n\
8316Return the number of processes in the system run queue averaged over\n\
8317the last 1, 5, and 15 minutes or raises OSError if the load average\n\
8318was unobtainable");
8319
8320static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00008321posix_getloadavg(PyObject *self, PyObject *noargs)
Martin v. Löwis438b5342002-12-27 10:16:42 +00008322{
8323 double loadavg[3];
Martin v. Löwis438b5342002-12-27 10:16:42 +00008324 if (getloadavg(loadavg, 3)!=3) {
8325 PyErr_SetString(PyExc_OSError, "Load averages are unobtainable");
8326 return NULL;
8327 } else
8328 return Py_BuildValue("ddd", loadavg[0], loadavg[1], loadavg[2]);
8329}
8330#endif
8331
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008332#ifdef MS_WINDOWS
8333
8334PyDoc_STRVAR(win32_urandom__doc__,
8335"urandom(n) -> str\n\n\
8336Return a string of n random bytes suitable for cryptographic use.");
8337
8338typedef BOOL (WINAPI *CRYPTACQUIRECONTEXTA)(HCRYPTPROV *phProv,\
8339 LPCSTR pszContainer, LPCSTR pszProvider, DWORD dwProvType,\
8340 DWORD dwFlags );
8341typedef BOOL (WINAPI *CRYPTGENRANDOM)(HCRYPTPROV hProv, DWORD dwLen,\
8342 BYTE *pbBuffer );
8343
8344static CRYPTGENRANDOM pCryptGenRandom = NULL;
Martin v. Löwisaf699dd2007-09-04 09:51:57 +00008345/* This handle is never explicitly released. Instead, the operating
8346 system will release it when the process terminates. */
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008347static HCRYPTPROV hCryptProv = 0;
8348
Tim Peters4ad82172004-08-30 17:02:04 +00008349static PyObject*
8350win32_urandom(PyObject *self, PyObject *args)
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008351{
Tim Petersd3115382004-08-30 17:36:46 +00008352 int howMany;
8353 PyObject* result;
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008354
Tim Peters4ad82172004-08-30 17:02:04 +00008355 /* Read arguments */
Tim Peters9b279a82004-08-30 17:10:53 +00008356 if (! PyArg_ParseTuple(args, "i:urandom", &howMany))
Tim Peters4ad82172004-08-30 17:02:04 +00008357 return NULL;
Tim Peters51eba612004-08-30 17:08:02 +00008358 if (howMany < 0)
8359 return PyErr_Format(PyExc_ValueError,
8360 "negative argument not allowed");
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008361
Tim Peters4ad82172004-08-30 17:02:04 +00008362 if (hCryptProv == 0) {
8363 HINSTANCE hAdvAPI32 = NULL;
8364 CRYPTACQUIRECONTEXTA pCryptAcquireContext = NULL;
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008365
Tim Peters4ad82172004-08-30 17:02:04 +00008366 /* Obtain handle to the DLL containing CryptoAPI
8367 This should not fail */
8368 hAdvAPI32 = GetModuleHandle("advapi32.dll");
8369 if(hAdvAPI32 == NULL)
8370 return win32_error("GetModuleHandle", NULL);
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008371
Tim Peters4ad82172004-08-30 17:02:04 +00008372 /* Obtain pointers to the CryptoAPI functions
8373 This will fail on some early versions of Win95 */
8374 pCryptAcquireContext = (CRYPTACQUIRECONTEXTA)GetProcAddress(
8375 hAdvAPI32,
8376 "CryptAcquireContextA");
8377 if (pCryptAcquireContext == NULL)
8378 return PyErr_Format(PyExc_NotImplementedError,
8379 "CryptAcquireContextA not found");
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008380
Tim Peters4ad82172004-08-30 17:02:04 +00008381 pCryptGenRandom = (CRYPTGENRANDOM)GetProcAddress(
8382 hAdvAPI32, "CryptGenRandom");
Georg Brandl74bb7832006-09-06 06:03:59 +00008383 if (pCryptGenRandom == NULL)
Tim Peters4ad82172004-08-30 17:02:04 +00008384 return PyErr_Format(PyExc_NotImplementedError,
8385 "CryptGenRandom not found");
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008386
Tim Peters4ad82172004-08-30 17:02:04 +00008387 /* Acquire context */
8388 if (! pCryptAcquireContext(&hCryptProv, NULL, NULL,
8389 PROV_RSA_FULL, CRYPT_VERIFYCONTEXT))
8390 return win32_error("CryptAcquireContext", NULL);
8391 }
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008392
Tim Peters4ad82172004-08-30 17:02:04 +00008393 /* Allocate bytes */
Gregory P. Smithdd96db62008-06-09 04:58:54 +00008394 result = PyString_FromStringAndSize(NULL, howMany);
Tim Petersd3115382004-08-30 17:36:46 +00008395 if (result != NULL) {
8396 /* Get random data */
Amaury Forgeot d'Arc74bd40d2008-07-21 21:06:46 +00008397 memset(PyString_AS_STRING(result), 0, howMany); /* zero seed */
Tim Petersd3115382004-08-30 17:36:46 +00008398 if (! pCryptGenRandom(hCryptProv, howMany, (unsigned char*)
Gregory P. Smithdd96db62008-06-09 04:58:54 +00008399 PyString_AS_STRING(result))) {
Tim Petersd3115382004-08-30 17:36:46 +00008400 Py_DECREF(result);
8401 return win32_error("CryptGenRandom", NULL);
8402 }
Tim Peters4ad82172004-08-30 17:02:04 +00008403 }
Tim Petersd3115382004-08-30 17:36:46 +00008404 return result;
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008405}
8406#endif
Martin v. Löwis438b5342002-12-27 10:16:42 +00008407
Neal Norwitz2a30cd02006-07-10 01:18:57 +00008408#ifdef __VMS
8409/* Use openssl random routine */
8410#include <openssl/rand.h>
8411PyDoc_STRVAR(vms_urandom__doc__,
8412"urandom(n) -> str\n\n\
8413Return a string of n random bytes suitable for cryptographic use.");
8414
8415static PyObject*
8416vms_urandom(PyObject *self, PyObject *args)
8417{
8418 int howMany;
8419 PyObject* result;
8420
8421 /* Read arguments */
8422 if (! PyArg_ParseTuple(args, "i:urandom", &howMany))
8423 return NULL;
8424 if (howMany < 0)
8425 return PyErr_Format(PyExc_ValueError,
8426 "negative argument not allowed");
8427
8428 /* Allocate bytes */
Gregory P. Smithdd96db62008-06-09 04:58:54 +00008429 result = PyString_FromStringAndSize(NULL, howMany);
Neal Norwitz2a30cd02006-07-10 01:18:57 +00008430 if (result != NULL) {
8431 /* Get random data */
8432 if (RAND_pseudo_bytes((unsigned char*)
Gregory P. Smithdd96db62008-06-09 04:58:54 +00008433 PyString_AS_STRING(result),
Neal Norwitz2a30cd02006-07-10 01:18:57 +00008434 howMany) < 0) {
8435 Py_DECREF(result);
8436 return PyErr_Format(PyExc_ValueError,
8437 "RAND_pseudo_bytes");
8438 }
8439 }
8440 return result;
8441}
8442#endif
8443
Martin v. Löwis50ea4562009-11-27 13:56:01 +00008444#ifdef HAVE_SETRESUID
8445PyDoc_STRVAR(posix_setresuid__doc__,
8446"setresuid(ruid, euid, suid)\n\n\
8447Set the current process's real, effective, and saved user ids.");
8448
8449static PyObject*
8450posix_setresuid (PyObject *self, PyObject *args)
8451{
8452 /* We assume uid_t is no larger than a long. */
8453 long ruid, euid, suid;
8454 if (!PyArg_ParseTuple(args, "lll", &ruid, &euid, &suid))
8455 return NULL;
8456 if (setresuid(ruid, euid, suid) < 0)
8457 return posix_error();
8458 Py_RETURN_NONE;
8459}
8460#endif
8461
8462#ifdef HAVE_SETRESGID
8463PyDoc_STRVAR(posix_setresgid__doc__,
8464"setresgid(rgid, egid, sgid)\n\n\
8465Set the current process's real, effective, and saved group ids.");
8466
8467static PyObject*
8468posix_setresgid (PyObject *self, PyObject *args)
8469{
8470 /* We assume uid_t is no larger than a long. */
8471 long rgid, egid, sgid;
8472 if (!PyArg_ParseTuple(args, "lll", &rgid, &egid, &sgid))
8473 return NULL;
8474 if (setresgid(rgid, egid, sgid) < 0)
8475 return posix_error();
8476 Py_RETURN_NONE;
8477}
8478#endif
8479
8480#ifdef HAVE_GETRESUID
8481PyDoc_STRVAR(posix_getresuid__doc__,
8482"getresuid() -> (ruid, euid, suid)\n\n\
8483Get tuple of the current process's real, effective, and saved user ids.");
8484
8485static PyObject*
8486posix_getresuid (PyObject *self, PyObject *noargs)
8487{
8488 uid_t ruid, euid, suid;
8489 long l_ruid, l_euid, l_suid;
8490 if (getresuid(&ruid, &euid, &suid) < 0)
8491 return posix_error();
8492 /* Force the values into long's as we don't know the size of uid_t. */
8493 l_ruid = ruid;
8494 l_euid = euid;
8495 l_suid = suid;
8496 return Py_BuildValue("(lll)", l_ruid, l_euid, l_suid);
8497}
8498#endif
8499
8500#ifdef HAVE_GETRESGID
8501PyDoc_STRVAR(posix_getresgid__doc__,
8502"getresgid() -> (rgid, egid, sgid)\n\n\
8503Get tuple of the current process's real, effective, and saved user ids.");
8504
8505static PyObject*
8506posix_getresgid (PyObject *self, PyObject *noargs)
8507{
8508 uid_t rgid, egid, sgid;
8509 long l_rgid, l_egid, l_sgid;
8510 if (getresgid(&rgid, &egid, &sgid) < 0)
8511 return posix_error();
8512 /* Force the values into long's as we don't know the size of uid_t. */
8513 l_rgid = rgid;
8514 l_egid = egid;
8515 l_sgid = sgid;
8516 return Py_BuildValue("(lll)", l_rgid, l_egid, l_sgid);
8517}
8518#endif
8519
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008520static PyMethodDef posix_methods[] = {
8521 {"access", posix_access, METH_VARARGS, posix_access__doc__},
8522#ifdef HAVE_TTYNAME
8523 {"ttyname", posix_ttyname, METH_VARARGS, posix_ttyname__doc__},
8524#endif
8525 {"chdir", posix_chdir, METH_VARARGS, posix_chdir__doc__},
Martin v. Löwis382abef2007-02-19 10:55:19 +00008526#ifdef HAVE_CHFLAGS
8527 {"chflags", posix_chflags, METH_VARARGS, posix_chflags__doc__},
8528#endif /* HAVE_CHFLAGS */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008529 {"chmod", posix_chmod, METH_VARARGS, posix_chmod__doc__},
Christian Heimes36281872007-11-30 21:11:28 +00008530#ifdef HAVE_FCHMOD
8531 {"fchmod", posix_fchmod, METH_VARARGS, posix_fchmod__doc__},
8532#endif /* HAVE_FCHMOD */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008533#ifdef HAVE_CHOWN
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008534 {"chown", posix_chown, METH_VARARGS, posix_chown__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008535#endif /* HAVE_CHOWN */
Christian Heimes36281872007-11-30 21:11:28 +00008536#ifdef HAVE_LCHMOD
8537 {"lchmod", posix_lchmod, METH_VARARGS, posix_lchmod__doc__},
8538#endif /* HAVE_LCHMOD */
8539#ifdef HAVE_FCHOWN
8540 {"fchown", posix_fchown, METH_VARARGS, posix_fchown__doc__},
8541#endif /* HAVE_FCHOWN */
Martin v. Löwis382abef2007-02-19 10:55:19 +00008542#ifdef HAVE_LCHFLAGS
8543 {"lchflags", posix_lchflags, METH_VARARGS, posix_lchflags__doc__},
8544#endif /* HAVE_LCHFLAGS */
Martin v. Löwis0cec0ff2002-07-28 16:33:45 +00008545#ifdef HAVE_LCHOWN
8546 {"lchown", posix_lchown, METH_VARARGS, posix_lchown__doc__},
8547#endif /* HAVE_LCHOWN */
Martin v. Löwis244edc82001-10-04 22:44:26 +00008548#ifdef HAVE_CHROOT
8549 {"chroot", posix_chroot, METH_VARARGS, posix_chroot__doc__},
8550#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008551#ifdef HAVE_CTERMID
Neal Norwitze241ce82003-02-17 18:17:05 +00008552 {"ctermid", posix_ctermid, METH_NOARGS, posix_ctermid__doc__},
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008553#endif
Guido van Rossum36bc6801995-06-14 22:54:23 +00008554#ifdef HAVE_GETCWD
Neal Norwitze241ce82003-02-17 18:17:05 +00008555 {"getcwd", posix_getcwd, METH_NOARGS, posix_getcwd__doc__},
Walter Dörwald3b918c32002-11-21 20:18:46 +00008556#ifdef Py_USING_UNICODE
Neal Norwitze241ce82003-02-17 18:17:05 +00008557 {"getcwdu", posix_getcwdu, METH_NOARGS, posix_getcwdu__doc__},
Guido van Rossum36bc6801995-06-14 22:54:23 +00008558#endif
Walter Dörwald3b918c32002-11-21 20:18:46 +00008559#endif
Guido van Rossumb6775db1994-08-01 11:34:53 +00008560#ifdef HAVE_LINK
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008561 {"link", posix_link, METH_VARARGS, posix_link__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008562#endif /* HAVE_LINK */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008563 {"listdir", posix_listdir, METH_VARARGS, posix_listdir__doc__},
8564 {"lstat", posix_lstat, METH_VARARGS, posix_lstat__doc__},
8565 {"mkdir", posix_mkdir, METH_VARARGS, posix_mkdir__doc__},
Guido van Rossumb6775db1994-08-01 11:34:53 +00008566#ifdef HAVE_NICE
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008567 {"nice", posix_nice, METH_VARARGS, posix_nice__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008568#endif /* HAVE_NICE */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008569#ifdef HAVE_READLINK
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008570 {"readlink", posix_readlink, METH_VARARGS, posix_readlink__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008571#endif /* HAVE_READLINK */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008572 {"rename", posix_rename, METH_VARARGS, posix_rename__doc__},
8573 {"rmdir", posix_rmdir, METH_VARARGS, posix_rmdir__doc__},
8574 {"stat", posix_stat, METH_VARARGS, posix_stat__doc__},
Martin v. Löwisf607bda2002-10-16 18:27:39 +00008575 {"stat_float_times", stat_float_times, METH_VARARGS, stat_float_times__doc__},
Guido van Rossumb6775db1994-08-01 11:34:53 +00008576#ifdef HAVE_SYMLINK
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008577 {"symlink", posix_symlink, METH_VARARGS, posix_symlink__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008578#endif /* HAVE_SYMLINK */
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008579#ifdef HAVE_SYSTEM
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008580 {"system", posix_system, METH_VARARGS, posix_system__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008581#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008582 {"umask", posix_umask, METH_VARARGS, posix_umask__doc__},
Guido van Rossumb6775db1994-08-01 11:34:53 +00008583#ifdef HAVE_UNAME
Neal Norwitze241ce82003-02-17 18:17:05 +00008584 {"uname", posix_uname, METH_NOARGS, posix_uname__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008585#endif /* HAVE_UNAME */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008586 {"unlink", posix_unlink, METH_VARARGS, posix_unlink__doc__},
8587 {"remove", posix_unlink, METH_VARARGS, posix_remove__doc__},
8588 {"utime", posix_utime, METH_VARARGS, posix_utime__doc__},
Guido van Rossumb6775db1994-08-01 11:34:53 +00008589#ifdef HAVE_TIMES
Neal Norwitze241ce82003-02-17 18:17:05 +00008590 {"times", posix_times, METH_NOARGS, posix_times__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008591#endif /* HAVE_TIMES */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008592 {"_exit", posix__exit, METH_VARARGS, posix__exit__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008593#ifdef HAVE_EXECV
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008594 {"execv", posix_execv, METH_VARARGS, posix_execv__doc__},
8595 {"execve", posix_execve, METH_VARARGS, posix_execve__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008596#endif /* HAVE_EXECV */
Guido van Rossuma1065681999-01-25 23:20:23 +00008597#ifdef HAVE_SPAWNV
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008598 {"spawnv", posix_spawnv, METH_VARARGS, posix_spawnv__doc__},
8599 {"spawnve", posix_spawnve, METH_VARARGS, posix_spawnve__doc__},
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00008600#if defined(PYOS_OS2)
8601 {"spawnvp", posix_spawnvp, METH_VARARGS, posix_spawnvp__doc__},
8602 {"spawnvpe", posix_spawnvpe, METH_VARARGS, posix_spawnvpe__doc__},
8603#endif /* PYOS_OS2 */
Guido van Rossuma1065681999-01-25 23:20:23 +00008604#endif /* HAVE_SPAWNV */
Guido van Rossum2242f2f2001-04-11 20:58:20 +00008605#ifdef HAVE_FORK1
Neal Norwitze241ce82003-02-17 18:17:05 +00008606 {"fork1", posix_fork1, METH_NOARGS, posix_fork1__doc__},
Guido van Rossum2242f2f2001-04-11 20:58:20 +00008607#endif /* HAVE_FORK1 */
Guido van Rossumad0ee831995-03-01 10:34:45 +00008608#ifdef HAVE_FORK
Neal Norwitze241ce82003-02-17 18:17:05 +00008609 {"fork", posix_fork, METH_NOARGS, posix_fork__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008610#endif /* HAVE_FORK */
Martin v. Löwis24a880b2002-12-31 12:55:15 +00008611#if defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX)
Neal Norwitze241ce82003-02-17 18:17:05 +00008612 {"openpty", posix_openpty, METH_NOARGS, posix_openpty__doc__},
Martin v. Löwis24a880b2002-12-31 12:55:15 +00008613#endif /* HAVE_OPENPTY || HAVE__GETPTY || HAVE_DEV_PTMX */
Fred Drake8cef4cf2000-06-28 16:40:38 +00008614#ifdef HAVE_FORKPTY
Neal Norwitze241ce82003-02-17 18:17:05 +00008615 {"forkpty", posix_forkpty, METH_NOARGS, posix_forkpty__doc__},
Fred Drake8cef4cf2000-06-28 16:40:38 +00008616#endif /* HAVE_FORKPTY */
Guido van Rossumad0ee831995-03-01 10:34:45 +00008617#ifdef HAVE_GETEGID
Neal Norwitze241ce82003-02-17 18:17:05 +00008618 {"getegid", posix_getegid, METH_NOARGS, posix_getegid__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008619#endif /* HAVE_GETEGID */
8620#ifdef HAVE_GETEUID
Neal Norwitze241ce82003-02-17 18:17:05 +00008621 {"geteuid", posix_geteuid, METH_NOARGS, posix_geteuid__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008622#endif /* HAVE_GETEUID */
8623#ifdef HAVE_GETGID
Neal Norwitze241ce82003-02-17 18:17:05 +00008624 {"getgid", posix_getgid, METH_NOARGS, posix_getgid__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008625#endif /* HAVE_GETGID */
Fred Drakec9680921999-12-13 16:37:25 +00008626#ifdef HAVE_GETGROUPS
Neal Norwitze241ce82003-02-17 18:17:05 +00008627 {"getgroups", posix_getgroups, METH_NOARGS, posix_getgroups__doc__},
Fred Drakec9680921999-12-13 16:37:25 +00008628#endif
Neal Norwitze241ce82003-02-17 18:17:05 +00008629 {"getpid", posix_getpid, METH_NOARGS, posix_getpid__doc__},
Guido van Rossumb6775db1994-08-01 11:34:53 +00008630#ifdef HAVE_GETPGRP
Neal Norwitze241ce82003-02-17 18:17:05 +00008631 {"getpgrp", posix_getpgrp, METH_NOARGS, posix_getpgrp__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008632#endif /* HAVE_GETPGRP */
Guido van Rossumad0ee831995-03-01 10:34:45 +00008633#ifdef HAVE_GETPPID
Neal Norwitze241ce82003-02-17 18:17:05 +00008634 {"getppid", posix_getppid, METH_NOARGS, posix_getppid__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008635#endif /* HAVE_GETPPID */
8636#ifdef HAVE_GETUID
Neal Norwitze241ce82003-02-17 18:17:05 +00008637 {"getuid", posix_getuid, METH_NOARGS, posix_getuid__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008638#endif /* HAVE_GETUID */
Fred Drake12c6e2d1999-12-14 21:25:03 +00008639#ifdef HAVE_GETLOGIN
Neal Norwitze241ce82003-02-17 18:17:05 +00008640 {"getlogin", posix_getlogin, METH_NOARGS, posix_getlogin__doc__},
Fred Drake12c6e2d1999-12-14 21:25:03 +00008641#endif
Guido van Rossumad0ee831995-03-01 10:34:45 +00008642#ifdef HAVE_KILL
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008643 {"kill", posix_kill, METH_VARARGS, posix_kill__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008644#endif /* HAVE_KILL */
Martin v. Löwisb2c92f42002-02-16 23:35:41 +00008645#ifdef HAVE_KILLPG
8646 {"killpg", posix_killpg, METH_VARARGS, posix_killpg__doc__},
8647#endif /* HAVE_KILLPG */
Guido van Rossumc0125471996-06-28 18:55:32 +00008648#ifdef HAVE_PLOCK
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008649 {"plock", posix_plock, METH_VARARGS, posix_plock__doc__},
Guido van Rossumc0125471996-06-28 18:55:32 +00008650#endif /* HAVE_PLOCK */
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008651#ifdef HAVE_POPEN
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008652 {"popen", posix_popen, METH_VARARGS, posix_popen__doc__},
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00008653#ifdef MS_WINDOWS
Fredrik Lundhffb9c772000-07-09 14:49:51 +00008654 {"popen2", win32_popen2, METH_VARARGS},
8655 {"popen3", win32_popen3, METH_VARARGS},
8656 {"popen4", win32_popen4, METH_VARARGS},
Tim Petersf58a7aa2000-09-22 10:05:54 +00008657 {"startfile", win32_startfile, METH_VARARGS, win32_startfile__doc__},
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00008658#else
8659#if defined(PYOS_OS2) && defined(PYCC_GCC)
8660 {"popen2", os2emx_popen2, METH_VARARGS},
8661 {"popen3", os2emx_popen3, METH_VARARGS},
8662 {"popen4", os2emx_popen4, METH_VARARGS},
8663#endif
Fredrik Lundhffb9c772000-07-09 14:49:51 +00008664#endif
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008665#endif /* HAVE_POPEN */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008666#ifdef HAVE_SETUID
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008667 {"setuid", posix_setuid, METH_VARARGS, posix_setuid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008668#endif /* HAVE_SETUID */
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00008669#ifdef HAVE_SETEUID
8670 {"seteuid", posix_seteuid, METH_VARARGS, posix_seteuid__doc__},
8671#endif /* HAVE_SETEUID */
8672#ifdef HAVE_SETEGID
8673 {"setegid", posix_setegid, METH_VARARGS, posix_setegid__doc__},
8674#endif /* HAVE_SETEGID */
8675#ifdef HAVE_SETREUID
8676 {"setreuid", posix_setreuid, METH_VARARGS, posix_setreuid__doc__},
8677#endif /* HAVE_SETREUID */
8678#ifdef HAVE_SETREGID
8679 {"setregid", posix_setregid, METH_VARARGS, posix_setregid__doc__},
8680#endif /* HAVE_SETREGID */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008681#ifdef HAVE_SETGID
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008682 {"setgid", posix_setgid, METH_VARARGS, posix_setgid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008683#endif /* HAVE_SETGID */
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00008684#ifdef HAVE_SETGROUPS
Georg Brandl96a8c392006-05-29 21:04:52 +00008685 {"setgroups", posix_setgroups, METH_O, posix_setgroups__doc__},
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00008686#endif /* HAVE_SETGROUPS */
Antoine Pitrou30b3b352009-12-02 20:37:54 +00008687#ifdef HAVE_INITGROUPS
8688 {"initgroups", posix_initgroups, METH_VARARGS, posix_initgroups__doc__},
8689#endif /* HAVE_INITGROUPS */
Martin v. Löwis606edc12002-06-13 21:09:11 +00008690#ifdef HAVE_GETPGID
8691 {"getpgid", posix_getpgid, METH_VARARGS, posix_getpgid__doc__},
8692#endif /* HAVE_GETPGID */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008693#ifdef HAVE_SETPGRP
Neal Norwitze241ce82003-02-17 18:17:05 +00008694 {"setpgrp", posix_setpgrp, METH_NOARGS, posix_setpgrp__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008695#endif /* HAVE_SETPGRP */
Guido van Rossumad0ee831995-03-01 10:34:45 +00008696#ifdef HAVE_WAIT
Neal Norwitze241ce82003-02-17 18:17:05 +00008697 {"wait", posix_wait, METH_NOARGS, posix_wait__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008698#endif /* HAVE_WAIT */
Neal Norwitz05a45592006-03-20 06:30:08 +00008699#ifdef HAVE_WAIT3
8700 {"wait3", posix_wait3, METH_VARARGS, posix_wait3__doc__},
8701#endif /* HAVE_WAIT3 */
8702#ifdef HAVE_WAIT4
8703 {"wait4", posix_wait4, METH_VARARGS, posix_wait4__doc__},
8704#endif /* HAVE_WAIT4 */
Tim Petersab034fa2002-02-01 11:27:43 +00008705#if defined(HAVE_WAITPID) || defined(HAVE_CWAIT)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008706 {"waitpid", posix_waitpid, METH_VARARGS, posix_waitpid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008707#endif /* HAVE_WAITPID */
Martin v. Löwis49ee14d2003-11-10 06:35:36 +00008708#ifdef HAVE_GETSID
8709 {"getsid", posix_getsid, METH_VARARGS, posix_getsid__doc__},
8710#endif /* HAVE_GETSID */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008711#ifdef HAVE_SETSID
Neal Norwitze241ce82003-02-17 18:17:05 +00008712 {"setsid", posix_setsid, METH_NOARGS, posix_setsid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008713#endif /* HAVE_SETSID */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008714#ifdef HAVE_SETPGID
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008715 {"setpgid", posix_setpgid, METH_VARARGS, posix_setpgid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008716#endif /* HAVE_SETPGID */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008717#ifdef HAVE_TCGETPGRP
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008718 {"tcgetpgrp", posix_tcgetpgrp, METH_VARARGS, posix_tcgetpgrp__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008719#endif /* HAVE_TCGETPGRP */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008720#ifdef HAVE_TCSETPGRP
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008721 {"tcsetpgrp", posix_tcsetpgrp, METH_VARARGS, posix_tcsetpgrp__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008722#endif /* HAVE_TCSETPGRP */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008723 {"open", posix_open, METH_VARARGS, posix_open__doc__},
8724 {"close", posix_close, METH_VARARGS, posix_close__doc__},
Georg Brandl309501a2008-01-19 20:22:13 +00008725 {"closerange", posix_closerange, METH_VARARGS, posix_closerange__doc__},
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008726 {"dup", posix_dup, METH_VARARGS, posix_dup__doc__},
8727 {"dup2", posix_dup2, METH_VARARGS, posix_dup2__doc__},
8728 {"lseek", posix_lseek, METH_VARARGS, posix_lseek__doc__},
8729 {"read", posix_read, METH_VARARGS, posix_read__doc__},
8730 {"write", posix_write, METH_VARARGS, posix_write__doc__},
8731 {"fstat", posix_fstat, METH_VARARGS, posix_fstat__doc__},
8732 {"fdopen", posix_fdopen, METH_VARARGS, posix_fdopen__doc__},
Skip Montanaro1517d842000-07-19 14:34:14 +00008733 {"isatty", posix_isatty, METH_VARARGS, posix_isatty__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008734#ifdef HAVE_PIPE
Neal Norwitze241ce82003-02-17 18:17:05 +00008735 {"pipe", posix_pipe, METH_NOARGS, posix_pipe__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008736#endif
8737#ifdef HAVE_MKFIFO
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008738 {"mkfifo", posix_mkfifo, METH_VARARGS, posix_mkfifo__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008739#endif
Neal Norwitz11690112002-07-30 01:08:28 +00008740#if defined(HAVE_MKNOD) && defined(HAVE_MAKEDEV)
Martin v. Löwis06a83e92002-04-14 10:19:44 +00008741 {"mknod", posix_mknod, METH_VARARGS, posix_mknod__doc__},
8742#endif
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00008743#ifdef HAVE_DEVICE_MACROS
8744 {"major", posix_major, METH_VARARGS, posix_major__doc__},
8745 {"minor", posix_minor, METH_VARARGS, posix_minor__doc__},
8746 {"makedev", posix_makedev, METH_VARARGS, posix_makedev__doc__},
8747#endif
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008748#ifdef HAVE_FTRUNCATE
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008749 {"ftruncate", posix_ftruncate, METH_VARARGS, posix_ftruncate__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008750#endif
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00008751#ifdef HAVE_PUTENV
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008752 {"putenv", posix_putenv, METH_VARARGS, posix_putenv__doc__},
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00008753#endif
Guido van Rossumc524d952001-10-19 01:31:59 +00008754#ifdef HAVE_UNSETENV
8755 {"unsetenv", posix_unsetenv, METH_VARARGS, posix_unsetenv__doc__},
8756#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008757 {"strerror", posix_strerror, METH_VARARGS, posix_strerror__doc__},
Fred Drake4d1e64b2002-04-15 19:40:07 +00008758#ifdef HAVE_FCHDIR
8759 {"fchdir", posix_fchdir, METH_O, posix_fchdir__doc__},
8760#endif
Guido van Rossum21142a01999-01-08 21:05:37 +00008761#ifdef HAVE_FSYNC
Fred Drake4d1e64b2002-04-15 19:40:07 +00008762 {"fsync", posix_fsync, METH_O, posix_fsync__doc__},
Guido van Rossum21142a01999-01-08 21:05:37 +00008763#endif
8764#ifdef HAVE_FDATASYNC
Fred Drake4d1e64b2002-04-15 19:40:07 +00008765 {"fdatasync", posix_fdatasync, METH_O, posix_fdatasync__doc__},
Guido van Rossum21142a01999-01-08 21:05:37 +00008766#endif
Guido van Rossumc9641791998-08-04 15:26:23 +00008767#ifdef HAVE_SYS_WAIT_H
Fred Drake106c1a02002-04-23 15:58:02 +00008768#ifdef WCOREDUMP
8769 {"WCOREDUMP", posix_WCOREDUMP, METH_VARARGS, posix_WCOREDUMP__doc__},
8770#endif /* WCOREDUMP */
Martin v. Löwis2b41b0d2002-05-04 13:13:41 +00008771#ifdef WIFCONTINUED
8772 {"WIFCONTINUED",posix_WIFCONTINUED, METH_VARARGS, posix_WIFCONTINUED__doc__},
8773#endif /* WIFCONTINUED */
Guido van Rossumc9641791998-08-04 15:26:23 +00008774#ifdef WIFSTOPPED
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008775 {"WIFSTOPPED", posix_WIFSTOPPED, METH_VARARGS, posix_WIFSTOPPED__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008776#endif /* WIFSTOPPED */
8777#ifdef WIFSIGNALED
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008778 {"WIFSIGNALED", posix_WIFSIGNALED, METH_VARARGS, posix_WIFSIGNALED__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008779#endif /* WIFSIGNALED */
8780#ifdef WIFEXITED
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008781 {"WIFEXITED", posix_WIFEXITED, METH_VARARGS, posix_WIFEXITED__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008782#endif /* WIFEXITED */
8783#ifdef WEXITSTATUS
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008784 {"WEXITSTATUS", posix_WEXITSTATUS, METH_VARARGS, posix_WEXITSTATUS__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008785#endif /* WEXITSTATUS */
8786#ifdef WTERMSIG
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008787 {"WTERMSIG", posix_WTERMSIG, METH_VARARGS, posix_WTERMSIG__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008788#endif /* WTERMSIG */
8789#ifdef WSTOPSIG
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008790 {"WSTOPSIG", posix_WSTOPSIG, METH_VARARGS, posix_WSTOPSIG__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008791#endif /* WSTOPSIG */
8792#endif /* HAVE_SYS_WAIT_H */
Martin v. Löwis5f5d99c2006-05-16 07:05:37 +00008793#if defined(HAVE_FSTATVFS) && defined(HAVE_SYS_STATVFS_H)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008794 {"fstatvfs", posix_fstatvfs, METH_VARARGS, posix_fstatvfs__doc__},
Guido van Rossum94f6f721999-01-06 18:42:14 +00008795#endif
Martin v. Löwis5f5d99c2006-05-16 07:05:37 +00008796#if defined(HAVE_STATVFS) && defined(HAVE_SYS_STATVFS_H)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008797 {"statvfs", posix_statvfs, METH_VARARGS, posix_statvfs__doc__},
Guido van Rossum94f6f721999-01-06 18:42:14 +00008798#endif
Guido van Rossume2ad6332001-01-08 17:51:55 +00008799#ifdef HAVE_TMPFILE
Neal Norwitze241ce82003-02-17 18:17:05 +00008800 {"tmpfile", posix_tmpfile, METH_NOARGS, posix_tmpfile__doc__},
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008801#endif
8802#ifdef HAVE_TEMPNAM
8803 {"tempnam", posix_tempnam, METH_VARARGS, posix_tempnam__doc__},
8804#endif
8805#ifdef HAVE_TMPNAM
Neal Norwitze241ce82003-02-17 18:17:05 +00008806 {"tmpnam", posix_tmpnam, METH_NOARGS, posix_tmpnam__doc__},
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008807#endif
Fred Drakec9680921999-12-13 16:37:25 +00008808#ifdef HAVE_CONFSTR
8809 {"confstr", posix_confstr, METH_VARARGS, posix_confstr__doc__},
8810#endif
8811#ifdef HAVE_SYSCONF
8812 {"sysconf", posix_sysconf, METH_VARARGS, posix_sysconf__doc__},
8813#endif
8814#ifdef HAVE_FPATHCONF
8815 {"fpathconf", posix_fpathconf, METH_VARARGS, posix_fpathconf__doc__},
8816#endif
8817#ifdef HAVE_PATHCONF
8818 {"pathconf", posix_pathconf, METH_VARARGS, posix_pathconf__doc__},
8819#endif
Neal Norwitze241ce82003-02-17 18:17:05 +00008820 {"abort", posix_abort, METH_NOARGS, posix_abort__doc__},
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00008821#ifdef MS_WINDOWS
Mark Hammondef8b6542001-05-13 08:04:26 +00008822 {"_getfullpathname", posix__getfullpathname, METH_VARARGS, NULL},
8823#endif
Martin v. Löwis438b5342002-12-27 10:16:42 +00008824#ifdef HAVE_GETLOADAVG
Neal Norwitze241ce82003-02-17 18:17:05 +00008825 {"getloadavg", posix_getloadavg, METH_NOARGS, posix_getloadavg__doc__},
Martin v. Löwis438b5342002-12-27 10:16:42 +00008826#endif
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008827 #ifdef MS_WINDOWS
8828 {"urandom", win32_urandom, METH_VARARGS, win32_urandom__doc__},
8829 #endif
Neal Norwitz2a30cd02006-07-10 01:18:57 +00008830 #ifdef __VMS
8831 {"urandom", vms_urandom, METH_VARARGS, vms_urandom__doc__},
8832 #endif
Martin v. Löwis50ea4562009-11-27 13:56:01 +00008833#ifdef HAVE_SETRESUID
8834 {"setresuid", posix_setresuid, METH_VARARGS, posix_setresuid__doc__},
8835#endif
8836#ifdef HAVE_SETRESGID
8837 {"setresgid", posix_setresgid, METH_VARARGS, posix_setresgid__doc__},
8838#endif
8839#ifdef HAVE_GETRESUID
8840 {"getresuid", posix_getresuid, METH_NOARGS, posix_getresuid__doc__},
8841#endif
8842#ifdef HAVE_GETRESGID
8843 {"getresgid", posix_getresgid, METH_NOARGS, posix_getresgid__doc__},
8844#endif
8845
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00008846 {NULL, NULL} /* Sentinel */
8847};
8848
8849
Barry Warsaw4a342091996-12-19 23:50:02 +00008850static int
Fred Drake4d1e64b2002-04-15 19:40:07 +00008851ins(PyObject *module, char *symbol, long value)
Barry Warsaw4a342091996-12-19 23:50:02 +00008852{
Fred Drake4d1e64b2002-04-15 19:40:07 +00008853 return PyModule_AddIntConstant(module, symbol, value);
Barry Warsaw4a342091996-12-19 23:50:02 +00008854}
8855
Guido van Rossumd48f2521997-12-05 22:19:34 +00008856#if defined(PYOS_OS2)
8857/* Insert Platform-Specific Constant Values (Strings & Numbers) of Common Use */
Fred Drake4d1e64b2002-04-15 19:40:07 +00008858static int insertvalues(PyObject *module)
Guido van Rossumd48f2521997-12-05 22:19:34 +00008859{
8860 APIRET rc;
8861 ULONG values[QSV_MAX+1];
8862 PyObject *v;
Marc-André Lemburgd4c0a9c2001-11-28 11:47:00 +00008863 char *ver, tmp[50];
Guido van Rossumd48f2521997-12-05 22:19:34 +00008864
8865 Py_BEGIN_ALLOW_THREADS
Andrew MacIntyre75e01452003-04-21 14:19:51 +00008866 rc = DosQuerySysInfo(1L, QSV_MAX, &values[1], sizeof(ULONG) * QSV_MAX);
Guido van Rossumd48f2521997-12-05 22:19:34 +00008867 Py_END_ALLOW_THREADS
8868
8869 if (rc != NO_ERROR) {
8870 os2_error(rc);
8871 return -1;
8872 }
8873
Fred Drake4d1e64b2002-04-15 19:40:07 +00008874 if (ins(module, "meminstalled", values[QSV_TOTPHYSMEM])) return -1;
8875 if (ins(module, "memkernel", values[QSV_TOTRESMEM])) return -1;
8876 if (ins(module, "memvirtual", values[QSV_TOTAVAILMEM])) return -1;
8877 if (ins(module, "maxpathlen", values[QSV_MAX_PATH_LENGTH])) return -1;
8878 if (ins(module, "maxnamelen", values[QSV_MAX_COMP_LENGTH])) return -1;
8879 if (ins(module, "revision", values[QSV_VERSION_REVISION])) return -1;
8880 if (ins(module, "timeslice", values[QSV_MIN_SLICE])) return -1;
Guido van Rossumd48f2521997-12-05 22:19:34 +00008881
8882 switch (values[QSV_VERSION_MINOR]) {
8883 case 0: ver = "2.00"; break;
8884 case 10: ver = "2.10"; break;
8885 case 11: ver = "2.11"; break;
8886 case 30: ver = "3.00"; break;
8887 case 40: ver = "4.00"; break;
8888 case 50: ver = "5.00"; break;
8889 default:
Tim Peters885d4572001-11-28 20:27:42 +00008890 PyOS_snprintf(tmp, sizeof(tmp),
8891 "%d-%d", values[QSV_VERSION_MAJOR],
8892 values[QSV_VERSION_MINOR]);
Guido van Rossumd48f2521997-12-05 22:19:34 +00008893 ver = &tmp[0];
8894 }
8895
8896 /* Add Indicator of the Version of the Operating System */
Fred Drake4d1e64b2002-04-15 19:40:07 +00008897 if (PyModule_AddStringConstant(module, "version", tmp) < 0)
Guido van Rossumd48f2521997-12-05 22:19:34 +00008898 return -1;
Guido van Rossumd48f2521997-12-05 22:19:34 +00008899
8900 /* Add Indicator of Which Drive was Used to Boot the System */
8901 tmp[0] = 'A' + values[QSV_BOOT_DRIVE] - 1;
8902 tmp[1] = ':';
8903 tmp[2] = '\0';
8904
Fred Drake4d1e64b2002-04-15 19:40:07 +00008905 return PyModule_AddStringConstant(module, "bootdrive", tmp);
Guido van Rossumd48f2521997-12-05 22:19:34 +00008906}
8907#endif
8908
Barry Warsaw4a342091996-12-19 23:50:02 +00008909static int
Thomas Woutersf3f33dc2000-07-21 06:00:07 +00008910all_ins(PyObject *d)
Barry Warsaw4a342091996-12-19 23:50:02 +00008911{
Guido van Rossum94f6f721999-01-06 18:42:14 +00008912#ifdef F_OK
8913 if (ins(d, "F_OK", (long)F_OK)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00008914#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00008915#ifdef R_OK
8916 if (ins(d, "R_OK", (long)R_OK)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00008917#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00008918#ifdef W_OK
8919 if (ins(d, "W_OK", (long)W_OK)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00008920#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00008921#ifdef X_OK
8922 if (ins(d, "X_OK", (long)X_OK)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00008923#endif
Fred Drakec9680921999-12-13 16:37:25 +00008924#ifdef NGROUPS_MAX
8925 if (ins(d, "NGROUPS_MAX", (long)NGROUPS_MAX)) return -1;
8926#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008927#ifdef TMP_MAX
8928 if (ins(d, "TMP_MAX", (long)TMP_MAX)) return -1;
8929#endif
Fred Drake106c1a02002-04-23 15:58:02 +00008930#ifdef WCONTINUED
8931 if (ins(d, "WCONTINUED", (long)WCONTINUED)) return -1;
8932#endif
Barry Warsaw4a342091996-12-19 23:50:02 +00008933#ifdef WNOHANG
8934 if (ins(d, "WNOHANG", (long)WNOHANG)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00008935#endif
Fred Drake106c1a02002-04-23 15:58:02 +00008936#ifdef WUNTRACED
8937 if (ins(d, "WUNTRACED", (long)WUNTRACED)) return -1;
8938#endif
Barry Warsaw4a342091996-12-19 23:50:02 +00008939#ifdef O_RDONLY
8940 if (ins(d, "O_RDONLY", (long)O_RDONLY)) return -1;
8941#endif
8942#ifdef O_WRONLY
8943 if (ins(d, "O_WRONLY", (long)O_WRONLY)) return -1;
8944#endif
8945#ifdef O_RDWR
8946 if (ins(d, "O_RDWR", (long)O_RDWR)) return -1;
8947#endif
8948#ifdef O_NDELAY
8949 if (ins(d, "O_NDELAY", (long)O_NDELAY)) return -1;
8950#endif
8951#ifdef O_NONBLOCK
8952 if (ins(d, "O_NONBLOCK", (long)O_NONBLOCK)) return -1;
8953#endif
8954#ifdef O_APPEND
8955 if (ins(d, "O_APPEND", (long)O_APPEND)) return -1;
8956#endif
8957#ifdef O_DSYNC
8958 if (ins(d, "O_DSYNC", (long)O_DSYNC)) return -1;
8959#endif
8960#ifdef O_RSYNC
8961 if (ins(d, "O_RSYNC", (long)O_RSYNC)) return -1;
8962#endif
8963#ifdef O_SYNC
8964 if (ins(d, "O_SYNC", (long)O_SYNC)) return -1;
8965#endif
8966#ifdef O_NOCTTY
8967 if (ins(d, "O_NOCTTY", (long)O_NOCTTY)) return -1;
8968#endif
8969#ifdef O_CREAT
8970 if (ins(d, "O_CREAT", (long)O_CREAT)) return -1;
8971#endif
8972#ifdef O_EXCL
8973 if (ins(d, "O_EXCL", (long)O_EXCL)) return -1;
8974#endif
8975#ifdef O_TRUNC
8976 if (ins(d, "O_TRUNC", (long)O_TRUNC)) return -1;
8977#endif
Guido van Rossum98d9d091997-08-08 21:48:51 +00008978#ifdef O_BINARY
8979 if (ins(d, "O_BINARY", (long)O_BINARY)) return -1;
8980#endif
8981#ifdef O_TEXT
8982 if (ins(d, "O_TEXT", (long)O_TEXT)) return -1;
8983#endif
Martin v. Löwis4fe3c272001-10-18 22:05:36 +00008984#ifdef O_LARGEFILE
8985 if (ins(d, "O_LARGEFILE", (long)O_LARGEFILE)) return -1;
8986#endif
Skip Montanaro5ff14922005-05-16 02:42:22 +00008987#ifdef O_SHLOCK
8988 if (ins(d, "O_SHLOCK", (long)O_SHLOCK)) return -1;
8989#endif
8990#ifdef O_EXLOCK
8991 if (ins(d, "O_EXLOCK", (long)O_EXLOCK)) return -1;
8992#endif
Martin v. Löwis4fe3c272001-10-18 22:05:36 +00008993
Tim Peters5aa91602002-01-30 05:46:57 +00008994/* MS Windows */
8995#ifdef O_NOINHERIT
8996 /* Don't inherit in child processes. */
8997 if (ins(d, "O_NOINHERIT", (long)O_NOINHERIT)) return -1;
8998#endif
8999#ifdef _O_SHORT_LIVED
9000 /* Optimize for short life (keep in memory). */
9001 /* MS forgot to define this one with a non-underscore form too. */
9002 if (ins(d, "O_SHORT_LIVED", (long)_O_SHORT_LIVED)) return -1;
9003#endif
9004#ifdef O_TEMPORARY
9005 /* Automatically delete when last handle is closed. */
9006 if (ins(d, "O_TEMPORARY", (long)O_TEMPORARY)) return -1;
9007#endif
9008#ifdef O_RANDOM
9009 /* Optimize for random access. */
9010 if (ins(d, "O_RANDOM", (long)O_RANDOM)) return -1;
9011#endif
9012#ifdef O_SEQUENTIAL
9013 /* Optimize for sequential access. */
9014 if (ins(d, "O_SEQUENTIAL", (long)O_SEQUENTIAL)) return -1;
9015#endif
9016
Martin v. Löwis4fe3c272001-10-18 22:05:36 +00009017/* GNU extensions. */
Georg Brandl5049a852008-05-16 13:10:15 +00009018#ifdef O_ASYNC
9019 /* Send a SIGIO signal whenever input or output
9020 becomes available on file descriptor */
9021 if (ins(d, "O_ASYNC", (long)O_ASYNC)) return -1;
9022#endif
Martin v. Löwis4fe3c272001-10-18 22:05:36 +00009023#ifdef O_DIRECT
9024 /* Direct disk access. */
9025 if (ins(d, "O_DIRECT", (long)O_DIRECT)) return -1;
9026#endif
9027#ifdef O_DIRECTORY
9028 /* Must be a directory. */
9029 if (ins(d, "O_DIRECTORY", (long)O_DIRECTORY)) return -1;
9030#endif
9031#ifdef O_NOFOLLOW
9032 /* Do not follow links. */
9033 if (ins(d, "O_NOFOLLOW", (long)O_NOFOLLOW)) return -1;
9034#endif
Georg Brandlb67da6e2007-11-24 13:56:09 +00009035#ifdef O_NOATIME
9036 /* Do not update the access time. */
9037 if (ins(d, "O_NOATIME", (long)O_NOATIME)) return -1;
9038#endif
Guido van Rossumd48f2521997-12-05 22:19:34 +00009039
Barry Warsaw5676bd12003-01-07 20:57:09 +00009040 /* These come from sysexits.h */
9041#ifdef EX_OK
9042 if (ins(d, "EX_OK", (long)EX_OK)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009043#endif /* EX_OK */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009044#ifdef EX_USAGE
9045 if (ins(d, "EX_USAGE", (long)EX_USAGE)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009046#endif /* EX_USAGE */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009047#ifdef EX_DATAERR
9048 if (ins(d, "EX_DATAERR", (long)EX_DATAERR)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009049#endif /* EX_DATAERR */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009050#ifdef EX_NOINPUT
9051 if (ins(d, "EX_NOINPUT", (long)EX_NOINPUT)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009052#endif /* EX_NOINPUT */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009053#ifdef EX_NOUSER
9054 if (ins(d, "EX_NOUSER", (long)EX_NOUSER)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009055#endif /* EX_NOUSER */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009056#ifdef EX_NOHOST
9057 if (ins(d, "EX_NOHOST", (long)EX_NOHOST)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009058#endif /* EX_NOHOST */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009059#ifdef EX_UNAVAILABLE
9060 if (ins(d, "EX_UNAVAILABLE", (long)EX_UNAVAILABLE)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009061#endif /* EX_UNAVAILABLE */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009062#ifdef EX_SOFTWARE
9063 if (ins(d, "EX_SOFTWARE", (long)EX_SOFTWARE)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009064#endif /* EX_SOFTWARE */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009065#ifdef EX_OSERR
9066 if (ins(d, "EX_OSERR", (long)EX_OSERR)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009067#endif /* EX_OSERR */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009068#ifdef EX_OSFILE
9069 if (ins(d, "EX_OSFILE", (long)EX_OSFILE)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009070#endif /* EX_OSFILE */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009071#ifdef EX_CANTCREAT
9072 if (ins(d, "EX_CANTCREAT", (long)EX_CANTCREAT)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009073#endif /* EX_CANTCREAT */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009074#ifdef EX_IOERR
9075 if (ins(d, "EX_IOERR", (long)EX_IOERR)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009076#endif /* EX_IOERR */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009077#ifdef EX_TEMPFAIL
9078 if (ins(d, "EX_TEMPFAIL", (long)EX_TEMPFAIL)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009079#endif /* EX_TEMPFAIL */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009080#ifdef EX_PROTOCOL
9081 if (ins(d, "EX_PROTOCOL", (long)EX_PROTOCOL)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009082#endif /* EX_PROTOCOL */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009083#ifdef EX_NOPERM
9084 if (ins(d, "EX_NOPERM", (long)EX_NOPERM)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009085#endif /* EX_NOPERM */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009086#ifdef EX_CONFIG
9087 if (ins(d, "EX_CONFIG", (long)EX_CONFIG)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009088#endif /* EX_CONFIG */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009089#ifdef EX_NOTFOUND
9090 if (ins(d, "EX_NOTFOUND", (long)EX_NOTFOUND)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009091#endif /* EX_NOTFOUND */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009092
Guido van Rossum246bc171999-02-01 23:54:31 +00009093#ifdef HAVE_SPAWNV
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00009094#if defined(PYOS_OS2) && defined(PYCC_GCC)
9095 if (ins(d, "P_WAIT", (long)P_WAIT)) return -1;
9096 if (ins(d, "P_NOWAIT", (long)P_NOWAIT)) return -1;
9097 if (ins(d, "P_OVERLAY", (long)P_OVERLAY)) return -1;
9098 if (ins(d, "P_DEBUG", (long)P_DEBUG)) return -1;
9099 if (ins(d, "P_SESSION", (long)P_SESSION)) return -1;
9100 if (ins(d, "P_DETACH", (long)P_DETACH)) return -1;
9101 if (ins(d, "P_PM", (long)P_PM)) return -1;
9102 if (ins(d, "P_DEFAULT", (long)P_DEFAULT)) return -1;
9103 if (ins(d, "P_MINIMIZE", (long)P_MINIMIZE)) return -1;
9104 if (ins(d, "P_MAXIMIZE", (long)P_MAXIMIZE)) return -1;
9105 if (ins(d, "P_FULLSCREEN", (long)P_FULLSCREEN)) return -1;
9106 if (ins(d, "P_WINDOWED", (long)P_WINDOWED)) return -1;
9107 if (ins(d, "P_FOREGROUND", (long)P_FOREGROUND)) return -1;
9108 if (ins(d, "P_BACKGROUND", (long)P_BACKGROUND)) return -1;
9109 if (ins(d, "P_NOCLOSE", (long)P_NOCLOSE)) return -1;
9110 if (ins(d, "P_NOSESSION", (long)P_NOSESSION)) return -1;
9111 if (ins(d, "P_QUOTE", (long)P_QUOTE)) return -1;
9112 if (ins(d, "P_TILDE", (long)P_TILDE)) return -1;
9113 if (ins(d, "P_UNRELATED", (long)P_UNRELATED)) return -1;
9114 if (ins(d, "P_DEBUGDESC", (long)P_DEBUGDESC)) return -1;
9115#else
Guido van Rossum7d385291999-02-16 19:38:04 +00009116 if (ins(d, "P_WAIT", (long)_P_WAIT)) return -1;
9117 if (ins(d, "P_NOWAIT", (long)_P_NOWAIT)) return -1;
9118 if (ins(d, "P_OVERLAY", (long)_OLD_P_OVERLAY)) return -1;
9119 if (ins(d, "P_NOWAITO", (long)_P_NOWAITO)) return -1;
9120 if (ins(d, "P_DETACH", (long)_P_DETACH)) return -1;
Guido van Rossum246bc171999-02-01 23:54:31 +00009121#endif
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00009122#endif
Guido van Rossum246bc171999-02-01 23:54:31 +00009123
Guido van Rossumd48f2521997-12-05 22:19:34 +00009124#if defined(PYOS_OS2)
9125 if (insertvalues(d)) return -1;
9126#endif
Barry Warsaw4a342091996-12-19 23:50:02 +00009127 return 0;
9128}
9129
9130
Tim Peters5aa91602002-01-30 05:46:57 +00009131#if (defined(_MSC_VER) || defined(__WATCOMC__) || defined(__BORLANDC__)) && !defined(__QNX__)
Guido van Rossum0cb96de1997-10-01 04:29:29 +00009132#define INITFUNC initnt
9133#define MODNAME "nt"
Tim Peters58e0a8c2001-05-14 22:32:33 +00009134
9135#elif defined(PYOS_OS2)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00009136#define INITFUNC initos2
9137#define MODNAME "os2"
Tim Peters58e0a8c2001-05-14 22:32:33 +00009138
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00009139#else
Guido van Rossum0cb96de1997-10-01 04:29:29 +00009140#define INITFUNC initposix
9141#define MODNAME "posix"
9142#endif
9143
Mark Hammondfe51c6d2002-08-02 02:27:13 +00009144PyMODINIT_FUNC
Thomas Woutersf3f33dc2000-07-21 06:00:07 +00009145INITFUNC(void)
Guido van Rossumb6775db1994-08-01 11:34:53 +00009146{
Fred Drake4d1e64b2002-04-15 19:40:07 +00009147 PyObject *m, *v;
Tim Peters5aa91602002-01-30 05:46:57 +00009148
Fred Drake4d1e64b2002-04-15 19:40:07 +00009149 m = Py_InitModule3(MODNAME,
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00009150 posix_methods,
Fred Drake4d1e64b2002-04-15 19:40:07 +00009151 posix__doc__);
Neal Norwitz1ac754f2006-01-19 06:09:39 +00009152 if (m == NULL)
9153 return;
Tim Peters5aa91602002-01-30 05:46:57 +00009154
Guido van Rossum0cb96de1997-10-01 04:29:29 +00009155 /* Initialize environ dictionary */
Guido van Rossumb6775db1994-08-01 11:34:53 +00009156 v = convertenviron();
Fred Drake4d1e64b2002-04-15 19:40:07 +00009157 Py_XINCREF(v);
9158 if (v == NULL || PyModule_AddObject(m, "environ", v) != 0)
Guido van Rossum0cb96de1997-10-01 04:29:29 +00009159 return;
Barry Warsaw53699e91996-12-10 23:23:01 +00009160 Py_DECREF(v);
Fred Drakec9680921999-12-13 16:37:25 +00009161
Fred Drake4d1e64b2002-04-15 19:40:07 +00009162 if (all_ins(m))
Barry Warsaw4a342091996-12-19 23:50:02 +00009163 return;
9164
Fred Drake4d1e64b2002-04-15 19:40:07 +00009165 if (setup_confname_tables(m))
Fred Drakebec628d1999-12-15 18:31:10 +00009166 return;
9167
Fred Drake4d1e64b2002-04-15 19:40:07 +00009168 Py_INCREF(PyExc_OSError);
9169 PyModule_AddObject(m, "error", PyExc_OSError);
Fred Drake762e2061999-08-26 17:23:54 +00009170
Guido van Rossumb3d39562000-01-31 18:41:26 +00009171#ifdef HAVE_PUTENV
Neil Schemenauer19030a02001-01-16 04:27:47 +00009172 if (posix_putenv_garbage == NULL)
9173 posix_putenv_garbage = PyDict_New();
Guido van Rossumb3d39562000-01-31 18:41:26 +00009174#endif
Guido van Rossum98bf58f2001-10-18 20:34:25 +00009175
Martin v. Löwis19ab6c92006-04-16 18:55:50 +00009176 if (!initialized) {
9177 stat_result_desc.name = MODNAME ".stat_result";
9178 stat_result_desc.fields[7].name = PyStructSequence_UnnamedField;
9179 stat_result_desc.fields[8].name = PyStructSequence_UnnamedField;
9180 stat_result_desc.fields[9].name = PyStructSequence_UnnamedField;
9181 PyStructSequence_InitType(&StatResultType, &stat_result_desc);
9182 structseq_new = StatResultType.tp_new;
9183 StatResultType.tp_new = statresult_new;
9184
9185 statvfs_result_desc.name = MODNAME ".statvfs_result";
9186 PyStructSequence_InitType(&StatVFSResultType, &statvfs_result_desc);
Martin v. Löwis03824e42008-12-29 18:17:34 +00009187#ifdef NEED_TICKS_PER_SECOND
9188# if defined(HAVE_SYSCONF) && defined(_SC_CLK_TCK)
9189 ticks_per_second = sysconf(_SC_CLK_TCK);
9190# elif defined(HZ)
9191 ticks_per_second = HZ;
9192# else
9193 ticks_per_second = 60; /* magic fallback value; may be bogus */
9194# endif
9195#endif
Martin v. Löwis19ab6c92006-04-16 18:55:50 +00009196 }
Fred Drake4d1e64b2002-04-15 19:40:07 +00009197 Py_INCREF((PyObject*) &StatResultType);
9198 PyModule_AddObject(m, "stat_result", (PyObject*) &StatResultType);
Fred Drake4d1e64b2002-04-15 19:40:07 +00009199 Py_INCREF((PyObject*) &StatVFSResultType);
9200 PyModule_AddObject(m, "statvfs_result",
9201 (PyObject*) &StatVFSResultType);
Martin v. Löwis19ab6c92006-04-16 18:55:50 +00009202 initialized = 1;
Ronald Oussorend06b6f22006-04-23 11:59:25 +00009203
9204#ifdef __APPLE__
9205 /*
9206 * Step 2 of weak-linking support on Mac OS X.
9207 *
9208 * The code below removes functions that are not available on the
9209 * currently active platform.
9210 *
9211 * This block allow one to use a python binary that was build on
9212 * OSX 10.4 on OSX 10.3, without loosing access to new APIs on
9213 * OSX 10.4.
9214 */
9215#ifdef HAVE_FSTATVFS
9216 if (fstatvfs == NULL) {
9217 if (PyObject_DelAttrString(m, "fstatvfs") == -1) {
9218 return;
9219 }
9220 }
9221#endif /* HAVE_FSTATVFS */
9222
9223#ifdef HAVE_STATVFS
9224 if (statvfs == NULL) {
9225 if (PyObject_DelAttrString(m, "statvfs") == -1) {
9226 return;
9227 }
9228 }
9229#endif /* HAVE_STATVFS */
9230
9231# ifdef HAVE_LCHOWN
9232 if (lchown == NULL) {
9233 if (PyObject_DelAttrString(m, "lchown") == -1) {
9234 return;
9235 }
9236 }
9237#endif /* HAVE_LCHOWN */
9238
9239
9240#endif /* __APPLE__ */
9241
Guido van Rossumb6775db1994-08-01 11:34:53 +00009242}
Anthony Baxterac6bd462006-04-13 02:06:09 +00009243
9244#ifdef __cplusplus
9245}
9246#endif
9247
Martin v. Löwis18aaa562006-10-15 08:43:33 +00009248