blob: 2787164f394f977b36b92c84a3ccf24db43ec154 [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
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +0000703#ifdef MS_WINDOWS
Tim Peters11b23062003-04-23 02:39:17 +0000704static int
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000705unicode_file_names(void)
706{
707 static int canusewide = -1;
708 if (canusewide == -1) {
Tim Peters11b23062003-04-23 02:39:17 +0000709 /* As per doc for ::GetVersion(), this is the correct test for
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000710 the Windows NT family. */
711 canusewide = (GetVersion() < 0x80000000) ? 1 : 0;
712 }
713 return canusewide;
714}
715#endif
Tim Peters11b23062003-04-23 02:39:17 +0000716
Guido van Rossum21142a01999-01-08 21:05:37 +0000717static PyObject *
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000718posix_1str(PyObject *args, char *format, int (*func)(const char*))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000719{
Mark Hammondef8b6542001-05-13 08:04:26 +0000720 char *path1 = NULL;
Guido van Rossumff4949e1992-08-05 19:58:53 +0000721 int res;
Tim Peters5aa91602002-01-30 05:46:57 +0000722 if (!PyArg_ParseTuple(args, format,
Mark Hammondef8b6542001-05-13 08:04:26 +0000723 Py_FileSystemDefaultEncoding, &path1))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000724 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +0000725 Py_BEGIN_ALLOW_THREADS
Guido van Rossumff4949e1992-08-05 19:58:53 +0000726 res = (*func)(path1);
Barry Warsaw53699e91996-12-10 23:23:01 +0000727 Py_END_ALLOW_THREADS
Guido van Rossumff4949e1992-08-05 19:58:53 +0000728 if (res < 0)
Mark Hammondef8b6542001-05-13 08:04:26 +0000729 return posix_error_with_allocated_filename(path1);
730 PyMem_Free(path1);
Barry Warsaw53699e91996-12-10 23:23:01 +0000731 Py_INCREF(Py_None);
732 return Py_None;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000733}
734
Barry Warsaw53699e91996-12-10 23:23:01 +0000735static PyObject *
Tim Peters11b23062003-04-23 02:39:17 +0000736posix_2str(PyObject *args,
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000737 char *format,
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000738 int (*func)(const char *, const char *))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000739{
Mark Hammondef8b6542001-05-13 08:04:26 +0000740 char *path1 = NULL, *path2 = NULL;
Guido van Rossumff4949e1992-08-05 19:58:53 +0000741 int res;
Mark Hammondef8b6542001-05-13 08:04:26 +0000742 if (!PyArg_ParseTuple(args, format,
Tim Peters5aa91602002-01-30 05:46:57 +0000743 Py_FileSystemDefaultEncoding, &path1,
Mark Hammondef8b6542001-05-13 08:04:26 +0000744 Py_FileSystemDefaultEncoding, &path2))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000745 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +0000746 Py_BEGIN_ALLOW_THREADS
Guido van Rossumff4949e1992-08-05 19:58:53 +0000747 res = (*func)(path1, path2);
Barry Warsaw53699e91996-12-10 23:23:01 +0000748 Py_END_ALLOW_THREADS
Mark Hammondef8b6542001-05-13 08:04:26 +0000749 PyMem_Free(path1);
750 PyMem_Free(path2);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000751 if (res != 0)
Barry Warsawd58d7641998-07-23 16:14:40 +0000752 /* XXX how to report both path1 and path2??? */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000753 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +0000754 Py_INCREF(Py_None);
755 return Py_None;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000756}
757
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +0000758#ifdef MS_WINDOWS
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000759static PyObject*
760win32_1str(PyObject* args, char* func,
761 char* format, BOOL (__stdcall *funcA)(LPCSTR),
762 char* wformat, BOOL (__stdcall *funcW)(LPWSTR))
763{
764 PyObject *uni;
765 char *ansi;
766 BOOL result;
767 if (unicode_file_names()) {
768 if (!PyArg_ParseTuple(args, wformat, &uni))
769 PyErr_Clear();
770 else {
771 Py_BEGIN_ALLOW_THREADS
772 result = funcW(PyUnicode_AsUnicode(uni));
773 Py_END_ALLOW_THREADS
774 if (!result)
775 return win32_error_unicode(func, PyUnicode_AsUnicode(uni));
776 Py_INCREF(Py_None);
777 return Py_None;
778 }
779 }
780 if (!PyArg_ParseTuple(args, format, &ansi))
781 return NULL;
782 Py_BEGIN_ALLOW_THREADS
783 result = funcA(ansi);
784 Py_END_ALLOW_THREADS
785 if (!result)
786 return win32_error(func, ansi);
787 Py_INCREF(Py_None);
788 return Py_None;
789
790}
791
792/* This is a reimplementation of the C library's chdir function,
793 but one that produces Win32 errors instead of DOS error codes.
794 chdir is essentially a wrapper around SetCurrentDirectory; however,
795 it also needs to set "magic" environment variables indicating
796 the per-drive current directory, which are of the form =<drive>: */
Hirokazu Yamamoto61376402008-10-16 06:25:25 +0000797static BOOL __stdcall
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000798win32_chdir(LPCSTR path)
799{
800 char new_path[MAX_PATH+1];
801 int result;
802 char env[4] = "=x:";
803
804 if(!SetCurrentDirectoryA(path))
805 return FALSE;
806 result = GetCurrentDirectoryA(MAX_PATH+1, new_path);
807 if (!result)
808 return FALSE;
809 /* In the ANSI API, there should not be any paths longer
810 than MAX_PATH. */
811 assert(result <= MAX_PATH+1);
812 if (strncmp(new_path, "\\\\", 2) == 0 ||
813 strncmp(new_path, "//", 2) == 0)
814 /* UNC path, nothing to do. */
815 return TRUE;
816 env[1] = new_path[0];
817 return SetEnvironmentVariableA(env, new_path);
818}
819
820/* The Unicode version differs from the ANSI version
821 since the current directory might exceed MAX_PATH characters */
Hirokazu Yamamoto61376402008-10-16 06:25:25 +0000822static BOOL __stdcall
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000823win32_wchdir(LPCWSTR path)
824{
825 wchar_t _new_path[MAX_PATH+1], *new_path = _new_path;
826 int result;
827 wchar_t env[4] = L"=x:";
828
829 if(!SetCurrentDirectoryW(path))
830 return FALSE;
831 result = GetCurrentDirectoryW(MAX_PATH+1, new_path);
832 if (!result)
833 return FALSE;
834 if (result > MAX_PATH+1) {
Hirokazu Yamamoto10a018c2008-10-09 10:00:30 +0000835 new_path = malloc(result * sizeof(wchar_t));
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000836 if (!new_path) {
837 SetLastError(ERROR_OUTOFMEMORY);
838 return FALSE;
839 }
Hirokazu Yamamoto10a018c2008-10-09 10:00:30 +0000840 result = GetCurrentDirectoryW(result, new_path);
Hirokazu Yamamoto6c75a302008-10-09 10:11:21 +0000841 if (!result) {
842 free(new_path);
Hirokazu Yamamoto10a018c2008-10-09 10:00:30 +0000843 return FALSE;
Hirokazu Yamamoto6c75a302008-10-09 10:11:21 +0000844 }
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000845 }
846 if (wcsncmp(new_path, L"\\\\", 2) == 0 ||
847 wcsncmp(new_path, L"//", 2) == 0)
848 /* UNC path, nothing to do. */
849 return TRUE;
850 env[1] = new_path[0];
851 result = SetEnvironmentVariableW(env, new_path);
852 if (new_path != _new_path)
853 free(new_path);
854 return result;
855}
856#endif
857
Martin v. Löwis14694662006-02-03 12:54:16 +0000858#ifdef MS_WINDOWS
859/* The CRT of Windows has a number of flaws wrt. its stat() implementation:
860 - time stamps are restricted to second resolution
861 - file modification times suffer from forth-and-back conversions between
862 UTC and local time
863 Therefore, we implement our own stat, based on the Win32 API directly.
864*/
865#define HAVE_STAT_NSEC 1
866
867struct win32_stat{
868 int st_dev;
869 __int64 st_ino;
870 unsigned short st_mode;
871 int st_nlink;
872 int st_uid;
873 int st_gid;
874 int st_rdev;
875 __int64 st_size;
876 int st_atime;
877 int st_atime_nsec;
878 int st_mtime;
879 int st_mtime_nsec;
880 int st_ctime;
881 int st_ctime_nsec;
882};
883
884static __int64 secs_between_epochs = 11644473600; /* Seconds between 1.1.1601 and 1.1.1970 */
885
886static void
887FILE_TIME_to_time_t_nsec(FILETIME *in_ptr, int *time_out, int* nsec_out)
888{
Martin v. Löwis77c176d2006-05-12 17:22:04 +0000889 /* XXX endianness. Shouldn't matter, as all Windows implementations are little-endian */
890 /* Cannot simply cast and dereference in_ptr,
891 since it might not be aligned properly */
892 __int64 in;
893 memcpy(&in, in_ptr, sizeof(in));
Martin v. Löwis14694662006-02-03 12:54:16 +0000894 *nsec_out = (int)(in % 10000000) * 100; /* FILETIME is in units of 100 nsec. */
895 /* XXX Win32 supports time stamps past 2038; we currently don't */
896 *time_out = Py_SAFE_DOWNCAST((in / 10000000) - secs_between_epochs, __int64, int);
897}
898
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +0000899static void
900time_t_to_FILE_TIME(int time_in, int nsec_in, FILETIME *out_ptr)
901{
902 /* XXX endianness */
903 __int64 out;
904 out = time_in + secs_between_epochs;
Martin v. Löwisf43893a2006-10-09 20:44:25 +0000905 out = out * 10000000 + nsec_in / 100;
Martin v. Löwis77c176d2006-05-12 17:22:04 +0000906 memcpy(out_ptr, &out, sizeof(out));
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +0000907}
908
Martin v. Löwis14694662006-02-03 12:54:16 +0000909/* Below, we *know* that ugo+r is 0444 */
910#if _S_IREAD != 0400
911#error Unsupported C library
912#endif
913static int
914attributes_to_mode(DWORD attr)
915{
916 int m = 0;
917 if (attr & FILE_ATTRIBUTE_DIRECTORY)
918 m |= _S_IFDIR | 0111; /* IFEXEC for user,group,other */
919 else
920 m |= _S_IFREG;
921 if (attr & FILE_ATTRIBUTE_READONLY)
922 m |= 0444;
923 else
924 m |= 0666;
925 return m;
926}
927
928static int
929attribute_data_to_stat(WIN32_FILE_ATTRIBUTE_DATA *info, struct win32_stat *result)
930{
931 memset(result, 0, sizeof(*result));
932 result->st_mode = attributes_to_mode(info->dwFileAttributes);
933 result->st_size = (((__int64)info->nFileSizeHigh)<<32) + info->nFileSizeLow;
934 FILE_TIME_to_time_t_nsec(&info->ftCreationTime, &result->st_ctime, &result->st_ctime_nsec);
935 FILE_TIME_to_time_t_nsec(&info->ftLastWriteTime, &result->st_mtime, &result->st_mtime_nsec);
936 FILE_TIME_to_time_t_nsec(&info->ftLastAccessTime, &result->st_atime, &result->st_atime_nsec);
937
938 return 0;
939}
940
Martin v. Löwis012bc722006-10-15 09:43:39 +0000941/* Emulate GetFileAttributesEx[AW] on Windows 95 */
942static int checked = 0;
943static BOOL (CALLBACK *gfaxa)(LPCSTR, GET_FILEEX_INFO_LEVELS, LPVOID);
944static BOOL (CALLBACK *gfaxw)(LPCWSTR, GET_FILEEX_INFO_LEVELS, LPVOID);
945static void
946check_gfax()
947{
948 HINSTANCE hKernel32;
949 if (checked)
950 return;
951 checked = 1;
952 hKernel32 = GetModuleHandle("KERNEL32");
953 *(FARPROC*)&gfaxa = GetProcAddress(hKernel32, "GetFileAttributesExA");
954 *(FARPROC*)&gfaxw = GetProcAddress(hKernel32, "GetFileAttributesExW");
955}
956
Martin v. Löwis3bf573f2007-04-04 18:30:36 +0000957static BOOL
958attributes_from_dir(LPCSTR pszFile, LPWIN32_FILE_ATTRIBUTE_DATA pfad)
959{
960 HANDLE hFindFile;
961 WIN32_FIND_DATAA FileData;
962 hFindFile = FindFirstFileA(pszFile, &FileData);
963 if (hFindFile == INVALID_HANDLE_VALUE)
964 return FALSE;
965 FindClose(hFindFile);
966 pfad->dwFileAttributes = FileData.dwFileAttributes;
967 pfad->ftCreationTime = FileData.ftCreationTime;
968 pfad->ftLastAccessTime = FileData.ftLastAccessTime;
969 pfad->ftLastWriteTime = FileData.ftLastWriteTime;
970 pfad->nFileSizeHigh = FileData.nFileSizeHigh;
971 pfad->nFileSizeLow = FileData.nFileSizeLow;
972 return TRUE;
973}
974
975static BOOL
976attributes_from_dir_w(LPCWSTR pszFile, LPWIN32_FILE_ATTRIBUTE_DATA pfad)
977{
978 HANDLE hFindFile;
979 WIN32_FIND_DATAW FileData;
980 hFindFile = FindFirstFileW(pszFile, &FileData);
981 if (hFindFile == INVALID_HANDLE_VALUE)
982 return FALSE;
983 FindClose(hFindFile);
984 pfad->dwFileAttributes = FileData.dwFileAttributes;
985 pfad->ftCreationTime = FileData.ftCreationTime;
986 pfad->ftLastAccessTime = FileData.ftLastAccessTime;
987 pfad->ftLastWriteTime = FileData.ftLastWriteTime;
988 pfad->nFileSizeHigh = FileData.nFileSizeHigh;
989 pfad->nFileSizeLow = FileData.nFileSizeLow;
990 return TRUE;
991}
992
Martin v. Löwis012bc722006-10-15 09:43:39 +0000993static BOOL WINAPI
994Py_GetFileAttributesExA(LPCSTR pszFile,
995 GET_FILEEX_INFO_LEVELS level,
996 LPVOID pv)
997{
998 BOOL result;
Martin v. Löwis012bc722006-10-15 09:43:39 +0000999 LPWIN32_FILE_ATTRIBUTE_DATA pfad = pv;
1000 /* First try to use the system's implementation, if that is
1001 available and either succeeds to gives an error other than
1002 that it isn't implemented. */
1003 check_gfax();
1004 if (gfaxa) {
1005 result = gfaxa(pszFile, level, pv);
1006 if (result || GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
1007 return result;
1008 }
1009 /* It's either not present, or not implemented.
1010 Emulate using FindFirstFile. */
1011 if (level != GetFileExInfoStandard) {
1012 SetLastError(ERROR_INVALID_PARAMETER);
1013 return FALSE;
1014 }
1015 /* Use GetFileAttributes to validate that the file name
1016 does not contain wildcards (which FindFirstFile would
1017 accept). */
1018 if (GetFileAttributesA(pszFile) == 0xFFFFFFFF)
1019 return FALSE;
Martin v. Löwis3bf573f2007-04-04 18:30:36 +00001020 return attributes_from_dir(pszFile, pfad);
Martin v. Löwis012bc722006-10-15 09:43:39 +00001021}
1022
1023static BOOL WINAPI
1024Py_GetFileAttributesExW(LPCWSTR pszFile,
1025 GET_FILEEX_INFO_LEVELS level,
1026 LPVOID pv)
1027{
1028 BOOL result;
Martin v. Löwis012bc722006-10-15 09:43:39 +00001029 LPWIN32_FILE_ATTRIBUTE_DATA pfad = pv;
1030 /* First try to use the system's implementation, if that is
1031 available and either succeeds to gives an error other than
1032 that it isn't implemented. */
1033 check_gfax();
1034 if (gfaxa) {
1035 result = gfaxw(pszFile, level, pv);
1036 if (result || GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
1037 return result;
1038 }
1039 /* It's either not present, or not implemented.
1040 Emulate using FindFirstFile. */
1041 if (level != GetFileExInfoStandard) {
1042 SetLastError(ERROR_INVALID_PARAMETER);
1043 return FALSE;
1044 }
1045 /* Use GetFileAttributes to validate that the file name
1046 does not contain wildcards (which FindFirstFile would
1047 accept). */
1048 if (GetFileAttributesW(pszFile) == 0xFFFFFFFF)
1049 return FALSE;
Martin v. Löwis3bf573f2007-04-04 18:30:36 +00001050 return attributes_from_dir_w(pszFile, pfad);
Martin v. Löwis012bc722006-10-15 09:43:39 +00001051}
1052
Martin v. Löwis14694662006-02-03 12:54:16 +00001053static int
1054win32_stat(const char* path, struct win32_stat *result)
1055{
1056 WIN32_FILE_ATTRIBUTE_DATA info;
1057 int code;
1058 char *dot;
1059 /* XXX not supported on Win95 and NT 3.x */
Martin v. Löwis012bc722006-10-15 09:43:39 +00001060 if (!Py_GetFileAttributesExA(path, GetFileExInfoStandard, &info)) {
Martin v. Löwis3bf573f2007-04-04 18:30:36 +00001061 if (GetLastError() != ERROR_SHARING_VIOLATION) {
1062 /* Protocol violation: we explicitly clear errno, instead of
1063 setting it to a POSIX error. Callers should use GetLastError. */
1064 errno = 0;
1065 return -1;
1066 } else {
1067 /* Could not get attributes on open file. Fall back to
1068 reading the directory. */
1069 if (!attributes_from_dir(path, &info)) {
1070 /* Very strange. This should not fail now */
1071 errno = 0;
1072 return -1;
1073 }
1074 }
Martin v. Löwis14694662006-02-03 12:54:16 +00001075 }
1076 code = attribute_data_to_stat(&info, result);
1077 if (code != 0)
1078 return code;
1079 /* Set S_IFEXEC if it is an .exe, .bat, ... */
1080 dot = strrchr(path, '.');
1081 if (dot) {
1082 if (stricmp(dot, ".bat") == 0 ||
1083 stricmp(dot, ".cmd") == 0 ||
1084 stricmp(dot, ".exe") == 0 ||
1085 stricmp(dot, ".com") == 0)
1086 result->st_mode |= 0111;
1087 }
1088 return code;
1089}
1090
1091static int
1092win32_wstat(const wchar_t* path, struct win32_stat *result)
1093{
1094 int code;
1095 const wchar_t *dot;
1096 WIN32_FILE_ATTRIBUTE_DATA info;
1097 /* XXX not supported on Win95 and NT 3.x */
Martin v. Löwis012bc722006-10-15 09:43:39 +00001098 if (!Py_GetFileAttributesExW(path, GetFileExInfoStandard, &info)) {
Martin v. Löwis3bf573f2007-04-04 18:30:36 +00001099 if (GetLastError() != ERROR_SHARING_VIOLATION) {
1100 /* Protocol violation: we explicitly clear errno, instead of
1101 setting it to a POSIX error. Callers should use GetLastError. */
1102 errno = 0;
1103 return -1;
1104 } else {
1105 /* Could not get attributes on open file. Fall back to
1106 reading the directory. */
1107 if (!attributes_from_dir_w(path, &info)) {
1108 /* Very strange. This should not fail now */
1109 errno = 0;
1110 return -1;
1111 }
1112 }
Martin v. Löwis14694662006-02-03 12:54:16 +00001113 }
1114 code = attribute_data_to_stat(&info, result);
1115 if (code < 0)
1116 return code;
1117 /* Set IFEXEC if it is an .exe, .bat, ... */
1118 dot = wcsrchr(path, '.');
1119 if (dot) {
1120 if (_wcsicmp(dot, L".bat") == 0 ||
1121 _wcsicmp(dot, L".cmd") == 0 ||
1122 _wcsicmp(dot, L".exe") == 0 ||
1123 _wcsicmp(dot, L".com") == 0)
1124 result->st_mode |= 0111;
1125 }
1126 return code;
1127}
1128
1129static int
1130win32_fstat(int file_number, struct win32_stat *result)
1131{
1132 BY_HANDLE_FILE_INFORMATION info;
1133 HANDLE h;
1134 int type;
1135
1136 h = (HANDLE)_get_osfhandle(file_number);
1137
1138 /* Protocol violation: we explicitly clear errno, instead of
1139 setting it to a POSIX error. Callers should use GetLastError. */
1140 errno = 0;
1141
1142 if (h == INVALID_HANDLE_VALUE) {
1143 /* This is really a C library error (invalid file handle).
1144 We set the Win32 error to the closes one matching. */
1145 SetLastError(ERROR_INVALID_HANDLE);
1146 return -1;
1147 }
1148 memset(result, 0, sizeof(*result));
1149
1150 type = GetFileType(h);
1151 if (type == FILE_TYPE_UNKNOWN) {
1152 DWORD error = GetLastError();
1153 if (error != 0) {
1154 return -1;
1155 }
1156 /* else: valid but unknown file */
1157 }
1158
1159 if (type != FILE_TYPE_DISK) {
1160 if (type == FILE_TYPE_CHAR)
1161 result->st_mode = _S_IFCHR;
1162 else if (type == FILE_TYPE_PIPE)
1163 result->st_mode = _S_IFIFO;
1164 return 0;
1165 }
1166
1167 if (!GetFileInformationByHandle(h, &info)) {
1168 return -1;
1169 }
1170
1171 /* similar to stat() */
1172 result->st_mode = attributes_to_mode(info.dwFileAttributes);
1173 result->st_size = (((__int64)info.nFileSizeHigh)<<32) + info.nFileSizeLow;
1174 FILE_TIME_to_time_t_nsec(&info.ftCreationTime, &result->st_ctime, &result->st_ctime_nsec);
1175 FILE_TIME_to_time_t_nsec(&info.ftLastWriteTime, &result->st_mtime, &result->st_mtime_nsec);
1176 FILE_TIME_to_time_t_nsec(&info.ftLastAccessTime, &result->st_atime, &result->st_atime_nsec);
1177 /* specific to fstat() */
1178 result->st_nlink = info.nNumberOfLinks;
1179 result->st_ino = (((__int64)info.nFileIndexHigh)<<32) + info.nFileIndexLow;
1180 return 0;
1181}
1182
1183#endif /* MS_WINDOWS */
1184
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001185PyDoc_STRVAR(stat_result__doc__,
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001186"stat_result: Result from stat or lstat.\n\n\
1187This object may be accessed either as a tuple of\n\
Fred Drakef7ce04d2002-06-20 18:31:21 +00001188 (mode, ino, dev, nlink, uid, gid, size, atime, mtime, ctime)\n\
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001189or via the attributes st_mode, st_ino, st_dev, st_nlink, st_uid, and so on.\n\
1190\n\
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001191Posix/windows: If your platform supports st_blksize, st_blocks, st_rdev,\n\
1192or st_flags, they are available as attributes only.\n\
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001193\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001194See os.stat for more information.");
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001195
1196static PyStructSequence_Field stat_result_fields[] = {
1197 {"st_mode", "protection bits"},
1198 {"st_ino", "inode"},
1199 {"st_dev", "device"},
1200 {"st_nlink", "number of hard links"},
1201 {"st_uid", "user ID of owner"},
1202 {"st_gid", "group ID of owner"},
1203 {"st_size", "total size, in bytes"},
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001204 /* The NULL is replaced with PyStructSequence_UnnamedField later. */
1205 {NULL, "integer time of last access"},
1206 {NULL, "integer time of last modification"},
1207 {NULL, "integer time of last change"},
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001208 {"st_atime", "time of last access"},
1209 {"st_mtime", "time of last modification"},
1210 {"st_ctime", "time of last change"},
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001211#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001212 {"st_blksize", "blocksize for filesystem I/O"},
1213#endif
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001214#ifdef HAVE_STRUCT_STAT_ST_BLOCKS
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001215 {"st_blocks", "number of blocks allocated"},
1216#endif
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001217#ifdef HAVE_STRUCT_STAT_ST_RDEV
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001218 {"st_rdev", "device type (if inode device)"},
1219#endif
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001220#ifdef HAVE_STRUCT_STAT_ST_FLAGS
1221 {"st_flags", "user defined flags for file"},
1222#endif
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001223#ifdef HAVE_STRUCT_STAT_ST_GEN
1224 {"st_gen", "generation number"},
1225#endif
1226#ifdef HAVE_STRUCT_STAT_ST_BIRTHTIME
1227 {"st_birthtime", "time of creation"},
1228#endif
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001229 {0}
1230};
1231
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001232#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001233#define ST_BLKSIZE_IDX 13
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001234#else
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001235#define ST_BLKSIZE_IDX 12
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001236#endif
1237
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001238#ifdef HAVE_STRUCT_STAT_ST_BLOCKS
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001239#define ST_BLOCKS_IDX (ST_BLKSIZE_IDX+1)
1240#else
1241#define ST_BLOCKS_IDX ST_BLKSIZE_IDX
1242#endif
1243
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001244#ifdef HAVE_STRUCT_STAT_ST_RDEV
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001245#define ST_RDEV_IDX (ST_BLOCKS_IDX+1)
1246#else
1247#define ST_RDEV_IDX ST_BLOCKS_IDX
1248#endif
1249
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001250#ifdef HAVE_STRUCT_STAT_ST_FLAGS
1251#define ST_FLAGS_IDX (ST_RDEV_IDX+1)
1252#else
1253#define ST_FLAGS_IDX ST_RDEV_IDX
1254#endif
1255
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001256#ifdef HAVE_STRUCT_STAT_ST_GEN
Martin v. Löwisf09582e2005-08-14 21:42:34 +00001257#define ST_GEN_IDX (ST_FLAGS_IDX+1)
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001258#else
Martin v. Löwisf09582e2005-08-14 21:42:34 +00001259#define ST_GEN_IDX ST_FLAGS_IDX
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001260#endif
1261
1262#ifdef HAVE_STRUCT_STAT_ST_BIRTHTIME
1263#define ST_BIRTHTIME_IDX (ST_GEN_IDX+1)
1264#else
1265#define ST_BIRTHTIME_IDX ST_GEN_IDX
1266#endif
1267
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001268static PyStructSequence_Desc stat_result_desc = {
1269 "stat_result", /* name */
1270 stat_result__doc__, /* doc */
1271 stat_result_fields,
1272 10
1273};
1274
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001275PyDoc_STRVAR(statvfs_result__doc__,
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001276"statvfs_result: Result from statvfs or fstatvfs.\n\n\
1277This object may be accessed either as a tuple of\n\
Fred Drakef7ce04d2002-06-20 18:31:21 +00001278 (bsize, frsize, blocks, bfree, bavail, files, ffree, favail, flag, namemax),\n\
Guido van Rossuma4dc73e2001-10-18 20:53:15 +00001279or via the attributes f_bsize, f_frsize, f_blocks, f_bfree, and so on.\n\
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001280\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001281See os.statvfs for more information.");
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001282
1283static PyStructSequence_Field statvfs_result_fields[] = {
1284 {"f_bsize", },
1285 {"f_frsize", },
1286 {"f_blocks", },
1287 {"f_bfree", },
1288 {"f_bavail", },
1289 {"f_files", },
1290 {"f_ffree", },
1291 {"f_favail", },
1292 {"f_flag", },
1293 {"f_namemax",},
1294 {0}
1295};
1296
1297static PyStructSequence_Desc statvfs_result_desc = {
1298 "statvfs_result", /* name */
1299 statvfs_result__doc__, /* doc */
1300 statvfs_result_fields,
1301 10
1302};
1303
Martin v. Löwis19ab6c92006-04-16 18:55:50 +00001304static int initialized;
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001305static PyTypeObject StatResultType;
1306static PyTypeObject StatVFSResultType;
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001307static newfunc structseq_new;
1308
1309static PyObject *
1310statresult_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
1311{
1312 PyStructSequence *result;
1313 int i;
1314
1315 result = (PyStructSequence*)structseq_new(type, args, kwds);
1316 if (!result)
1317 return NULL;
1318 /* If we have been initialized from a tuple,
1319 st_?time might be set to None. Initialize it
1320 from the int slots. */
1321 for (i = 7; i <= 9; i++) {
1322 if (result->ob_item[i+3] == Py_None) {
1323 Py_DECREF(Py_None);
1324 Py_INCREF(result->ob_item[i]);
1325 result->ob_item[i+3] = result->ob_item[i];
1326 }
1327 }
1328 return (PyObject*)result;
1329}
1330
1331
1332
1333/* If true, st_?time is float. */
Martin v. Löwisfe33d0b2005-01-16 08:57:39 +00001334static int _stat_float_times = 1;
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001335
1336PyDoc_STRVAR(stat_float_times__doc__,
1337"stat_float_times([newval]) -> oldval\n\n\
1338Determine whether os.[lf]stat represents time stamps as float objects.\n\
1339If newval is True, future calls to stat() return floats, if it is False,\n\
1340future calls return ints. \n\
1341If newval is omitted, return the current setting.\n");
1342
1343static PyObject*
1344stat_float_times(PyObject* self, PyObject *args)
1345{
1346 int newval = -1;
1347 if (!PyArg_ParseTuple(args, "|i:stat_float_times", &newval))
1348 return NULL;
1349 if (newval == -1)
1350 /* Return old value */
1351 return PyBool_FromLong(_stat_float_times);
1352 _stat_float_times = newval;
1353 Py_INCREF(Py_None);
1354 return Py_None;
1355}
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001356
Martin v. Löwis94717ed2002-09-09 14:24:16 +00001357static void
1358fill_time(PyObject *v, int index, time_t sec, unsigned long nsec)
1359{
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001360 PyObject *fval,*ival;
1361#if SIZEOF_TIME_T > SIZEOF_LONG
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00001362 ival = PyLong_FromLongLong((PY_LONG_LONG)sec);
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001363#else
1364 ival = PyInt_FromLong((long)sec);
1365#endif
Neal Norwitze0a81af2006-08-12 01:50:38 +00001366 if (!ival)
1367 return;
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001368 if (_stat_float_times) {
1369 fval = PyFloat_FromDouble(sec + 1e-9*nsec);
1370 } else {
1371 fval = ival;
1372 Py_INCREF(fval);
1373 }
1374 PyStructSequence_SET_ITEM(v, index, ival);
1375 PyStructSequence_SET_ITEM(v, index+3, fval);
Martin v. Löwis94717ed2002-09-09 14:24:16 +00001376}
1377
Tim Peters5aa91602002-01-30 05:46:57 +00001378/* pack a system stat C structure into the Python stat tuple
Fred Drake699f3522000-06-29 21:12:41 +00001379 (used by posix_stat() and posix_fstat()) */
1380static PyObject*
Martin v. Löwis14694662006-02-03 12:54:16 +00001381_pystat_fromstructstat(STRUCT_STAT *st)
Fred Drake699f3522000-06-29 21:12:41 +00001382{
Martin v. Löwis94717ed2002-09-09 14:24:16 +00001383 unsigned long ansec, mnsec, cnsec;
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001384 PyObject *v = PyStructSequence_New(&StatResultType);
Fred Drake699f3522000-06-29 21:12:41 +00001385 if (v == NULL)
1386 return NULL;
1387
Martin v. Löwis14694662006-02-03 12:54:16 +00001388 PyStructSequence_SET_ITEM(v, 0, PyInt_FromLong((long)st->st_mode));
Fred Drake699f3522000-06-29 21:12:41 +00001389#ifdef HAVE_LARGEFILE_SUPPORT
Tim Peters5aa91602002-01-30 05:46:57 +00001390 PyStructSequence_SET_ITEM(v, 1,
Martin v. Löwis14694662006-02-03 12:54:16 +00001391 PyLong_FromLongLong((PY_LONG_LONG)st->st_ino));
Fred Drake699f3522000-06-29 21:12:41 +00001392#else
Martin v. Löwis14694662006-02-03 12:54:16 +00001393 PyStructSequence_SET_ITEM(v, 1, PyInt_FromLong((long)st->st_ino));
Fred Drake699f3522000-06-29 21:12:41 +00001394#endif
1395#if defined(HAVE_LONG_LONG) && !defined(MS_WINDOWS)
Tim Peters5aa91602002-01-30 05:46:57 +00001396 PyStructSequence_SET_ITEM(v, 2,
Martin v. Löwis14694662006-02-03 12:54:16 +00001397 PyLong_FromLongLong((PY_LONG_LONG)st->st_dev));
Fred Drake699f3522000-06-29 21:12:41 +00001398#else
Martin v. Löwis14694662006-02-03 12:54:16 +00001399 PyStructSequence_SET_ITEM(v, 2, PyInt_FromLong((long)st->st_dev));
Fred Drake699f3522000-06-29 21:12:41 +00001400#endif
Martin v. Löwis14694662006-02-03 12:54:16 +00001401 PyStructSequence_SET_ITEM(v, 3, PyInt_FromLong((long)st->st_nlink));
1402 PyStructSequence_SET_ITEM(v, 4, PyInt_FromLong((long)st->st_uid));
1403 PyStructSequence_SET_ITEM(v, 5, PyInt_FromLong((long)st->st_gid));
Fred Drake699f3522000-06-29 21:12:41 +00001404#ifdef HAVE_LARGEFILE_SUPPORT
Tim Peters5aa91602002-01-30 05:46:57 +00001405 PyStructSequence_SET_ITEM(v, 6,
Martin v. Löwis14694662006-02-03 12:54:16 +00001406 PyLong_FromLongLong((PY_LONG_LONG)st->st_size));
Fred Drake699f3522000-06-29 21:12:41 +00001407#else
Martin v. Löwis14694662006-02-03 12:54:16 +00001408 PyStructSequence_SET_ITEM(v, 6, PyInt_FromLong(st->st_size));
Fred Drake699f3522000-06-29 21:12:41 +00001409#endif
Martin v. Löwis94717ed2002-09-09 14:24:16 +00001410
Martin v. Löwis14694662006-02-03 12:54:16 +00001411#if defined(HAVE_STAT_TV_NSEC)
1412 ansec = st->st_atim.tv_nsec;
1413 mnsec = st->st_mtim.tv_nsec;
1414 cnsec = st->st_ctim.tv_nsec;
1415#elif defined(HAVE_STAT_TV_NSEC2)
1416 ansec = st->st_atimespec.tv_nsec;
1417 mnsec = st->st_mtimespec.tv_nsec;
1418 cnsec = st->st_ctimespec.tv_nsec;
1419#elif defined(HAVE_STAT_NSEC)
1420 ansec = st->st_atime_nsec;
1421 mnsec = st->st_mtime_nsec;
1422 cnsec = st->st_ctime_nsec;
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001423#else
Martin v. Löwis94717ed2002-09-09 14:24:16 +00001424 ansec = mnsec = cnsec = 0;
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001425#endif
Martin v. Löwis14694662006-02-03 12:54:16 +00001426 fill_time(v, 7, st->st_atime, ansec);
1427 fill_time(v, 8, st->st_mtime, mnsec);
1428 fill_time(v, 9, st->st_ctime, cnsec);
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001429
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001430#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
Tim Peters5aa91602002-01-30 05:46:57 +00001431 PyStructSequence_SET_ITEM(v, ST_BLKSIZE_IDX,
Martin v. Löwis14694662006-02-03 12:54:16 +00001432 PyInt_FromLong((long)st->st_blksize));
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001433#endif
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001434#ifdef HAVE_STRUCT_STAT_ST_BLOCKS
Tim Peters5aa91602002-01-30 05:46:57 +00001435 PyStructSequence_SET_ITEM(v, ST_BLOCKS_IDX,
Martin v. Löwis14694662006-02-03 12:54:16 +00001436 PyInt_FromLong((long)st->st_blocks));
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001437#endif
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001438#ifdef HAVE_STRUCT_STAT_ST_RDEV
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001439 PyStructSequence_SET_ITEM(v, ST_RDEV_IDX,
Martin v. Löwis14694662006-02-03 12:54:16 +00001440 PyInt_FromLong((long)st->st_rdev));
Fred Drake699f3522000-06-29 21:12:41 +00001441#endif
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001442#ifdef HAVE_STRUCT_STAT_ST_GEN
1443 PyStructSequence_SET_ITEM(v, ST_GEN_IDX,
Martin v. Löwis14694662006-02-03 12:54:16 +00001444 PyInt_FromLong((long)st->st_gen));
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001445#endif
1446#ifdef HAVE_STRUCT_STAT_ST_BIRTHTIME
1447 {
1448 PyObject *val;
1449 unsigned long bsec,bnsec;
Martin v. Löwis14694662006-02-03 12:54:16 +00001450 bsec = (long)st->st_birthtime;
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001451#ifdef HAVE_STAT_TV_NSEC2
Hye-Shik Changd69e0342006-02-19 16:22:22 +00001452 bnsec = st->st_birthtimespec.tv_nsec;
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001453#else
1454 bnsec = 0;
1455#endif
1456 if (_stat_float_times) {
1457 val = PyFloat_FromDouble(bsec + 1e-9*bnsec);
1458 } else {
1459 val = PyInt_FromLong((long)bsec);
1460 }
1461 PyStructSequence_SET_ITEM(v, ST_BIRTHTIME_IDX,
1462 val);
1463 }
1464#endif
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001465#ifdef HAVE_STRUCT_STAT_ST_FLAGS
1466 PyStructSequence_SET_ITEM(v, ST_FLAGS_IDX,
Martin v. Löwis14694662006-02-03 12:54:16 +00001467 PyInt_FromLong((long)st->st_flags));
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001468#endif
Fred Drake699f3522000-06-29 21:12:41 +00001469
1470 if (PyErr_Occurred()) {
1471 Py_DECREF(v);
1472 return NULL;
1473 }
1474
1475 return v;
1476}
1477
Martin v. Löwisd8948722004-06-02 09:57:56 +00001478#ifdef MS_WINDOWS
1479
1480/* IsUNCRoot -- test whether the supplied path is of the form \\SERVER\SHARE\,
1481 where / can be used in place of \ and the trailing slash is optional.
1482 Both SERVER and SHARE must have at least one character.
1483*/
1484
1485#define ISSLASHA(c) ((c) == '\\' || (c) == '/')
1486#define ISSLASHW(c) ((c) == L'\\' || (c) == L'/')
Kristján Valur Jónssondbeaa692006-06-09 16:28:01 +00001487#ifndef ARRAYSIZE
Martin v. Löwisd8948722004-06-02 09:57:56 +00001488#define ARRAYSIZE(a) (sizeof(a) / sizeof(a[0]))
Kristján Valur Jónssondbeaa692006-06-09 16:28:01 +00001489#endif
Martin v. Löwisd8948722004-06-02 09:57:56 +00001490
Tim Peters4ad82172004-08-30 17:02:04 +00001491static BOOL
Martin v. Löwisd8948722004-06-02 09:57:56 +00001492IsUNCRootA(char *path, int pathlen)
1493{
1494 #define ISSLASH ISSLASHA
1495
1496 int i, share;
1497
1498 if (pathlen < 5 || !ISSLASH(path[0]) || !ISSLASH(path[1]))
1499 /* minimum UNCRoot is \\x\y */
1500 return FALSE;
1501 for (i = 2; i < pathlen ; i++)
1502 if (ISSLASH(path[i])) break;
1503 if (i == 2 || i == pathlen)
1504 /* do not allow \\\SHARE or \\SERVER */
1505 return FALSE;
1506 share = i+1;
1507 for (i = share; i < pathlen; i++)
1508 if (ISSLASH(path[i])) break;
1509 return (i != share && (i == pathlen || i == pathlen-1));
1510
1511 #undef ISSLASH
1512}
1513
Tim Peters4ad82172004-08-30 17:02:04 +00001514static BOOL
Martin v. Löwisd8948722004-06-02 09:57:56 +00001515IsUNCRootW(Py_UNICODE *path, int pathlen)
1516{
1517 #define ISSLASH ISSLASHW
1518
1519 int i, share;
1520
1521 if (pathlen < 5 || !ISSLASH(path[0]) || !ISSLASH(path[1]))
1522 /* minimum UNCRoot is \\x\y */
1523 return FALSE;
1524 for (i = 2; i < pathlen ; i++)
1525 if (ISSLASH(path[i])) break;
1526 if (i == 2 || i == pathlen)
1527 /* do not allow \\\SHARE or \\SERVER */
1528 return FALSE;
1529 share = i+1;
1530 for (i = share; i < pathlen; i++)
1531 if (ISSLASH(path[i])) break;
1532 return (i != share && (i == pathlen || i == pathlen-1));
1533
1534 #undef ISSLASH
1535}
Martin v. Löwisd8948722004-06-02 09:57:56 +00001536#endif /* MS_WINDOWS */
1537
Barry Warsaw53699e91996-12-10 23:23:01 +00001538static PyObject *
Tim Peters11b23062003-04-23 02:39:17 +00001539posix_do_stat(PyObject *self, PyObject *args,
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001540 char *format,
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001541#ifdef __VMS
1542 int (*statfunc)(const char *, STRUCT_STAT *, ...),
1543#else
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001544 int (*statfunc)(const char *, STRUCT_STAT *),
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001545#endif
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001546 char *wformat,
1547 int (*wstatfunc)(const Py_UNICODE *, STRUCT_STAT *))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001548{
Fred Drake699f3522000-06-29 21:12:41 +00001549 STRUCT_STAT st;
Tim Peters500bd032001-12-19 19:05:01 +00001550 char *path = NULL; /* pass this to stat; do not free() it */
1551 char *pathfree = NULL; /* this memory must be free'd */
Guido van Rossumff4949e1992-08-05 19:58:53 +00001552 int res;
Martin v. Löwis14694662006-02-03 12:54:16 +00001553 PyObject *result;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001554
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00001555#ifdef MS_WINDOWS
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001556 /* If on wide-character-capable OS see if argument
1557 is Unicode and if so use wide API. */
1558 if (unicode_file_names()) {
1559 PyUnicodeObject *po;
1560 if (PyArg_ParseTuple(args, wformat, &po)) {
Martin v. Löwis14694662006-02-03 12:54:16 +00001561 Py_UNICODE *wpath = PyUnicode_AS_UNICODE(po);
1562
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001563 Py_BEGIN_ALLOW_THREADS
1564 /* PyUnicode_AS_UNICODE result OK without
1565 thread lock as it is a simple dereference. */
1566 res = wstatfunc(wpath, &st);
1567 Py_END_ALLOW_THREADS
Martin v. Löwis14694662006-02-03 12:54:16 +00001568
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001569 if (res != 0)
Martin v. Löwis14694662006-02-03 12:54:16 +00001570 return win32_error_unicode("stat", wpath);
1571 return _pystat_fromstructstat(&st);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001572 }
1573 /* Drop the argument parsing error as narrow strings
1574 are also valid. */
1575 PyErr_Clear();
1576 }
1577#endif
1578
Tim Peters5aa91602002-01-30 05:46:57 +00001579 if (!PyArg_ParseTuple(args, format,
Mark Hammondef8b6542001-05-13 08:04:26 +00001580 Py_FileSystemDefaultEncoding, &path))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001581 return NULL;
Tim Peters500bd032001-12-19 19:05:01 +00001582 pathfree = path;
Guido van Rossumace88ae2000-04-21 18:54:45 +00001583
Barry Warsaw53699e91996-12-10 23:23:01 +00001584 Py_BEGIN_ALLOW_THREADS
Guido van Rossumff4949e1992-08-05 19:58:53 +00001585 res = (*statfunc)(path, &st);
Barry Warsaw53699e91996-12-10 23:23:01 +00001586 Py_END_ALLOW_THREADS
Martin v. Löwis14694662006-02-03 12:54:16 +00001587
1588 if (res != 0) {
1589#ifdef MS_WINDOWS
1590 result = win32_error("stat", pathfree);
1591#else
1592 result = posix_error_with_filename(pathfree);
1593#endif
1594 }
1595 else
1596 result = _pystat_fromstructstat(&st);
Fred Drake699f3522000-06-29 21:12:41 +00001597
Tim Peters500bd032001-12-19 19:05:01 +00001598 PyMem_Free(pathfree);
Martin v. Löwis14694662006-02-03 12:54:16 +00001599 return result;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001600}
1601
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001602/* POSIX methods */
1603
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001604PyDoc_STRVAR(posix_access__doc__,
Georg Brandl7a284472007-01-27 19:38:50 +00001605"access(path, mode) -> True if granted, False otherwise\n\n\
Guido van Rossuma0b90752002-06-18 16:22:43 +00001606Use the real uid/gid to test for access to a path. Note that most\n\
1607operations will use the effective uid/gid, therefore this routine can\n\
1608be used in a suid/sgid environment to test if the invoking user has the\n\
1609specified access to the path. The mode argument can be F_OK to test\n\
1610existence, or the inclusive-OR of R_OK, W_OK, and X_OK.");
Guido van Rossum94f6f721999-01-06 18:42:14 +00001611
1612static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00001613posix_access(PyObject *self, PyObject *args)
Guido van Rossum94f6f721999-01-06 18:42:14 +00001614{
Guido van Rossum015f22a1999-01-06 22:52:38 +00001615 char *path;
1616 int mode;
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001617
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00001618#ifdef MS_WINDOWS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001619 DWORD attr;
Martin v. Löwis1b699a52003-09-12 16:25:38 +00001620 if (unicode_file_names()) {
1621 PyUnicodeObject *po;
1622 if (PyArg_ParseTuple(args, "Ui:access", &po, &mode)) {
1623 Py_BEGIN_ALLOW_THREADS
1624 /* PyUnicode_AS_UNICODE OK without thread lock as
1625 it is a simple dereference. */
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001626 attr = GetFileAttributesW(PyUnicode_AS_UNICODE(po));
Martin v. Löwis1b699a52003-09-12 16:25:38 +00001627 Py_END_ALLOW_THREADS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001628 goto finish;
Martin v. Löwis1b699a52003-09-12 16:25:38 +00001629 }
1630 /* Drop the argument parsing error as narrow strings
1631 are also valid. */
1632 PyErr_Clear();
1633 }
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001634 if (!PyArg_ParseTuple(args, "eti:access",
1635 Py_FileSystemDefaultEncoding, &path, &mode))
1636 return 0;
1637 Py_BEGIN_ALLOW_THREADS
1638 attr = GetFileAttributesA(path);
1639 Py_END_ALLOW_THREADS
1640 PyMem_Free(path);
1641finish:
1642 if (attr == 0xFFFFFFFF)
1643 /* File does not exist, or cannot read attributes */
1644 return PyBool_FromLong(0);
1645 /* Access is possible if either write access wasn't requested, or
Martin v. Löwis7b3cc062007-12-03 23:09:04 +00001646 the file isn't read-only, or if it's a directory, as there are
1647 no read-only directories on Windows. */
1648 return PyBool_FromLong(!(mode & 2)
1649 || !(attr & FILE_ATTRIBUTE_READONLY)
1650 || (attr & FILE_ATTRIBUTE_DIRECTORY));
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00001651#else /* MS_WINDOWS */
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001652 int res;
Martin v. Löwisb60ae992005-03-08 09:10:29 +00001653 if (!PyArg_ParseTuple(args, "eti:access",
1654 Py_FileSystemDefaultEncoding, &path, &mode))
Guido van Rossum015f22a1999-01-06 22:52:38 +00001655 return NULL;
1656 Py_BEGIN_ALLOW_THREADS
1657 res = access(path, mode);
1658 Py_END_ALLOW_THREADS
Neal Norwitz24b3c222005-09-19 06:43:44 +00001659 PyMem_Free(path);
Neal Norwitz3efd0a12005-09-19 06:45:53 +00001660 return PyBool_FromLong(res == 0);
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00001661#endif /* MS_WINDOWS */
Guido van Rossum94f6f721999-01-06 18:42:14 +00001662}
1663
Guido van Rossumd371ff11999-01-25 16:12:23 +00001664#ifndef F_OK
1665#define F_OK 0
1666#endif
1667#ifndef R_OK
1668#define R_OK 4
1669#endif
1670#ifndef W_OK
1671#define W_OK 2
1672#endif
1673#ifndef X_OK
1674#define X_OK 1
1675#endif
1676
1677#ifdef HAVE_TTYNAME
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001678PyDoc_STRVAR(posix_ttyname__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001679"ttyname(fd) -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001680Return the name of the terminal device connected to 'fd'.");
Guido van Rossum94f6f721999-01-06 18:42:14 +00001681
1682static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00001683posix_ttyname(PyObject *self, PyObject *args)
Guido van Rossum94f6f721999-01-06 18:42:14 +00001684{
Guido van Rossum94f6f721999-01-06 18:42:14 +00001685 int id;
1686 char *ret;
1687
Fred Drake5ab8eaf1999-12-09 21:13:07 +00001688 if (!PyArg_ParseTuple(args, "i:ttyname", &id))
Guido van Rossum94f6f721999-01-06 18:42:14 +00001689 return NULL;
1690
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001691#if defined(__VMS)
Martin v. Löwisc16f3bd2003-05-03 09:14:54 +00001692 /* file descriptor 0 only, the default input device (stdin) */
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001693 if (id == 0) {
1694 ret = ttyname();
1695 }
1696 else {
1697 ret = NULL;
1698 }
1699#else
Guido van Rossum94f6f721999-01-06 18:42:14 +00001700 ret = ttyname(id);
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001701#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00001702 if (ret == NULL)
Neal Norwitz3efd0a12005-09-19 06:45:53 +00001703 return posix_error();
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001704 return PyString_FromString(ret);
Guido van Rossum94f6f721999-01-06 18:42:14 +00001705}
Guido van Rossumd371ff11999-01-25 16:12:23 +00001706#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00001707
Fred Drake5ab8eaf1999-12-09 21:13:07 +00001708#ifdef HAVE_CTERMID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001709PyDoc_STRVAR(posix_ctermid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001710"ctermid() -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001711Return the name of the controlling terminal for this process.");
Fred Drake5ab8eaf1999-12-09 21:13:07 +00001712
1713static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00001714posix_ctermid(PyObject *self, PyObject *noargs)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00001715{
1716 char *ret;
1717 char buffer[L_ctermid];
1718
Greg Wardb48bc172000-03-01 21:51:56 +00001719#ifdef USE_CTERMID_R
Fred Drake5ab8eaf1999-12-09 21:13:07 +00001720 ret = ctermid_r(buffer);
1721#else
1722 ret = ctermid(buffer);
1723#endif
1724 if (ret == NULL)
Neal Norwitz3efd0a12005-09-19 06:45:53 +00001725 return posix_error();
Gregory P. Smithdd96db62008-06-09 04:58:54 +00001726 return PyString_FromString(buffer);
Fred Drake5ab8eaf1999-12-09 21:13:07 +00001727}
1728#endif
1729
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001730PyDoc_STRVAR(posix_chdir__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001731"chdir(path)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001732Change the current working directory to the specified path.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001733
Barry Warsaw53699e91996-12-10 23:23:01 +00001734static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00001735posix_chdir(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001736{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001737#ifdef MS_WINDOWS
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00001738 return win32_1str(args, "chdir", "s:chdir", win32_chdir, "U:chdir", win32_wchdir);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001739#elif defined(PYOS_OS2) && defined(PYCC_GCC)
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00001740 return posix_1str(args, "et:chdir", _chdir2);
Martin v. Löwis7a924e62003-03-05 14:15:21 +00001741#elif defined(__VMS)
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00001742 return posix_1str(args, "et:chdir", (int (*)(const char *))chdir);
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001743#else
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00001744 return posix_1str(args, "et:chdir", chdir);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00001745#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001746}
1747
Fred Drake4d1e64b2002-04-15 19:40:07 +00001748#ifdef HAVE_FCHDIR
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001749PyDoc_STRVAR(posix_fchdir__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001750"fchdir(fildes)\n\n\
Fred Drake4d1e64b2002-04-15 19:40:07 +00001751Change to the directory of the given file descriptor. fildes must be\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001752opened on a directory, not a file.");
Fred Drake4d1e64b2002-04-15 19:40:07 +00001753
1754static PyObject *
1755posix_fchdir(PyObject *self, PyObject *fdobj)
1756{
1757 return posix_fildes(fdobj, fchdir);
1758}
1759#endif /* HAVE_FCHDIR */
1760
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001761
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001762PyDoc_STRVAR(posix_chmod__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001763"chmod(path, mode)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001764Change the access permissions of a file.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001765
Barry Warsaw53699e91996-12-10 23:23:01 +00001766static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00001767posix_chmod(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001768{
Mark Hammondef8b6542001-05-13 08:04:26 +00001769 char *path = NULL;
Guido van Rossumffd15f52000-03-31 00:47:28 +00001770 int i;
1771 int res;
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00001772#ifdef MS_WINDOWS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001773 DWORD attr;
Mark Hammond817c9292003-12-03 01:22:38 +00001774 if (unicode_file_names()) {
1775 PyUnicodeObject *po;
1776 if (PyArg_ParseTuple(args, "Ui|:chmod", &po, &i)) {
1777 Py_BEGIN_ALLOW_THREADS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001778 attr = GetFileAttributesW(PyUnicode_AS_UNICODE(po));
1779 if (attr != 0xFFFFFFFF) {
1780 if (i & _S_IWRITE)
1781 attr &= ~FILE_ATTRIBUTE_READONLY;
1782 else
1783 attr |= FILE_ATTRIBUTE_READONLY;
1784 res = SetFileAttributesW(PyUnicode_AS_UNICODE(po), attr);
1785 }
1786 else
1787 res = 0;
Mark Hammond817c9292003-12-03 01:22:38 +00001788 Py_END_ALLOW_THREADS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001789 if (!res)
1790 return win32_error_unicode("chmod",
Mark Hammond817c9292003-12-03 01:22:38 +00001791 PyUnicode_AS_UNICODE(po));
1792 Py_INCREF(Py_None);
1793 return Py_None;
1794 }
1795 /* Drop the argument parsing error as narrow strings
1796 are also valid. */
1797 PyErr_Clear();
1798 }
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001799 if (!PyArg_ParseTuple(args, "eti:chmod", Py_FileSystemDefaultEncoding,
1800 &path, &i))
1801 return NULL;
1802 Py_BEGIN_ALLOW_THREADS
1803 attr = GetFileAttributesA(path);
1804 if (attr != 0xFFFFFFFF) {
1805 if (i & _S_IWRITE)
1806 attr &= ~FILE_ATTRIBUTE_READONLY;
1807 else
1808 attr |= FILE_ATTRIBUTE_READONLY;
1809 res = SetFileAttributesA(path, attr);
1810 }
1811 else
1812 res = 0;
1813 Py_END_ALLOW_THREADS
1814 if (!res) {
1815 win32_error("chmod", path);
1816 PyMem_Free(path);
1817 return NULL;
1818 }
Martin v. Löwis9f485bc2006-05-08 05:25:56 +00001819 PyMem_Free(path);
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001820 Py_INCREF(Py_None);
1821 return Py_None;
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00001822#else /* MS_WINDOWS */
Mark Hammond817c9292003-12-03 01:22:38 +00001823 if (!PyArg_ParseTuple(args, "eti:chmod", Py_FileSystemDefaultEncoding,
Mark Hammondef8b6542001-05-13 08:04:26 +00001824 &path, &i))
Guido van Rossumffd15f52000-03-31 00:47:28 +00001825 return NULL;
1826 Py_BEGIN_ALLOW_THREADS
Guido van Rossumef40e772000-03-31 01:26:23 +00001827 res = chmod(path, i);
Guido van Rossumffd15f52000-03-31 00:47:28 +00001828 Py_END_ALLOW_THREADS
1829 if (res < 0)
Mark Hammondef8b6542001-05-13 08:04:26 +00001830 return posix_error_with_allocated_filename(path);
1831 PyMem_Free(path);
Guido van Rossumffd15f52000-03-31 00:47:28 +00001832 Py_INCREF(Py_None);
1833 return Py_None;
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001834#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001835}
1836
Christian Heimes36281872007-11-30 21:11:28 +00001837#ifdef HAVE_FCHMOD
1838PyDoc_STRVAR(posix_fchmod__doc__,
1839"fchmod(fd, mode)\n\n\
1840Change the access permissions of the file given by file\n\
1841descriptor fd.");
1842
1843static PyObject *
1844posix_fchmod(PyObject *self, PyObject *args)
1845{
1846 int fd, mode, res;
1847 if (!PyArg_ParseTuple(args, "ii:fchmod", &fd, &mode))
1848 return NULL;
1849 Py_BEGIN_ALLOW_THREADS
1850 res = fchmod(fd, mode);
1851 Py_END_ALLOW_THREADS
1852 if (res < 0)
1853 return posix_error();
1854 Py_RETURN_NONE;
1855}
1856#endif /* HAVE_FCHMOD */
1857
1858#ifdef HAVE_LCHMOD
1859PyDoc_STRVAR(posix_lchmod__doc__,
1860"lchmod(path, mode)\n\n\
1861Change the access permissions of a file. If path is a symlink, this\n\
1862affects the link itself rather than the target.");
1863
1864static PyObject *
1865posix_lchmod(PyObject *self, PyObject *args)
1866{
1867 char *path = NULL;
1868 int i;
1869 int res;
1870 if (!PyArg_ParseTuple(args, "eti:lchmod", Py_FileSystemDefaultEncoding,
1871 &path, &i))
1872 return NULL;
1873 Py_BEGIN_ALLOW_THREADS
1874 res = lchmod(path, i);
1875 Py_END_ALLOW_THREADS
1876 if (res < 0)
1877 return posix_error_with_allocated_filename(path);
1878 PyMem_Free(path);
1879 Py_RETURN_NONE;
1880}
1881#endif /* HAVE_LCHMOD */
1882
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001883
Martin v. Löwis382abef2007-02-19 10:55:19 +00001884#ifdef HAVE_CHFLAGS
1885PyDoc_STRVAR(posix_chflags__doc__,
1886"chflags(path, flags)\n\n\
1887Set file flags.");
1888
1889static PyObject *
1890posix_chflags(PyObject *self, PyObject *args)
1891{
1892 char *path;
1893 unsigned long flags;
1894 int res;
1895 if (!PyArg_ParseTuple(args, "etk:chflags",
1896 Py_FileSystemDefaultEncoding, &path, &flags))
1897 return NULL;
1898 Py_BEGIN_ALLOW_THREADS
1899 res = chflags(path, flags);
1900 Py_END_ALLOW_THREADS
1901 if (res < 0)
1902 return posix_error_with_allocated_filename(path);
1903 PyMem_Free(path);
1904 Py_INCREF(Py_None);
1905 return Py_None;
1906}
1907#endif /* HAVE_CHFLAGS */
1908
1909#ifdef HAVE_LCHFLAGS
1910PyDoc_STRVAR(posix_lchflags__doc__,
1911"lchflags(path, flags)\n\n\
1912Set file flags.\n\
1913This function will not follow symbolic links.");
1914
1915static PyObject *
1916posix_lchflags(PyObject *self, PyObject *args)
1917{
1918 char *path;
1919 unsigned long flags;
1920 int res;
1921 if (!PyArg_ParseTuple(args, "etk:lchflags",
1922 Py_FileSystemDefaultEncoding, &path, &flags))
1923 return NULL;
1924 Py_BEGIN_ALLOW_THREADS
1925 res = lchflags(path, flags);
1926 Py_END_ALLOW_THREADS
1927 if (res < 0)
1928 return posix_error_with_allocated_filename(path);
1929 PyMem_Free(path);
1930 Py_INCREF(Py_None);
1931 return Py_None;
1932}
1933#endif /* HAVE_LCHFLAGS */
1934
Martin v. Löwis244edc82001-10-04 22:44:26 +00001935#ifdef HAVE_CHROOT
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001936PyDoc_STRVAR(posix_chroot__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001937"chroot(path)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001938Change root directory to path.");
Martin v. Löwis244edc82001-10-04 22:44:26 +00001939
1940static PyObject *
1941posix_chroot(PyObject *self, PyObject *args)
1942{
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00001943 return posix_1str(args, "et:chroot", chroot);
Martin v. Löwis244edc82001-10-04 22:44:26 +00001944}
1945#endif
1946
Guido van Rossum21142a01999-01-08 21:05:37 +00001947#ifdef HAVE_FSYNC
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001948PyDoc_STRVAR(posix_fsync__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001949"fsync(fildes)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001950force write of file with filedescriptor to disk.");
Guido van Rossum21142a01999-01-08 21:05:37 +00001951
1952static PyObject *
Fred Drake4d1e64b2002-04-15 19:40:07 +00001953posix_fsync(PyObject *self, PyObject *fdobj)
Guido van Rossum21142a01999-01-08 21:05:37 +00001954{
Fred Drake4d1e64b2002-04-15 19:40:07 +00001955 return posix_fildes(fdobj, fsync);
Guido van Rossum21142a01999-01-08 21:05:37 +00001956}
1957#endif /* HAVE_FSYNC */
1958
1959#ifdef HAVE_FDATASYNC
Guido van Rossumecc23b02000-09-22 16:01:05 +00001960
Guido van Rossum7f58e2e2000-09-22 17:26:14 +00001961#ifdef __hpux
Guido van Rossumecc23b02000-09-22 16:01:05 +00001962extern int fdatasync(int); /* On HP-UX, in libc but not in unistd.h */
1963#endif
1964
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001965PyDoc_STRVAR(posix_fdatasync__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001966"fdatasync(fildes)\n\n\
Guido van Rossum21142a01999-01-08 21:05:37 +00001967force write of file with filedescriptor to disk.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001968 does not force update of metadata.");
Guido van Rossum21142a01999-01-08 21:05:37 +00001969
1970static PyObject *
Fred Drake4d1e64b2002-04-15 19:40:07 +00001971posix_fdatasync(PyObject *self, PyObject *fdobj)
Guido van Rossum21142a01999-01-08 21:05:37 +00001972{
Fred Drake4d1e64b2002-04-15 19:40:07 +00001973 return posix_fildes(fdobj, fdatasync);
Guido van Rossum21142a01999-01-08 21:05:37 +00001974}
1975#endif /* HAVE_FDATASYNC */
1976
1977
Fredrik Lundh10723342000-07-10 16:38:09 +00001978#ifdef HAVE_CHOWN
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001979PyDoc_STRVAR(posix_chown__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001980"chown(path, uid, gid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001981Change the owner and group id of path to the numeric uid and gid.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001982
Barry Warsaw53699e91996-12-10 23:23:01 +00001983static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00001984posix_chown(PyObject *self, PyObject *args)
Guido van Rossumb6775db1994-08-01 11:34:53 +00001985{
Mark Hammondef8b6542001-05-13 08:04:26 +00001986 char *path = NULL;
Gregory P. Smithf48da8f2008-03-18 19:05:32 +00001987 long uid, gid;
Fredrik Lundh44328e62000-07-10 15:59:30 +00001988 int res;
Gregory P. Smithf48da8f2008-03-18 19:05:32 +00001989 if (!PyArg_ParseTuple(args, "etll:chown",
Tim Peters5aa91602002-01-30 05:46:57 +00001990 Py_FileSystemDefaultEncoding, &path,
Mark Hammondef8b6542001-05-13 08:04:26 +00001991 &uid, &gid))
Fredrik Lundh44328e62000-07-10 15:59:30 +00001992 return NULL;
1993 Py_BEGIN_ALLOW_THREADS
1994 res = chown(path, (uid_t) uid, (gid_t) gid);
1995 Py_END_ALLOW_THREADS
1996 if (res < 0)
Mark Hammondef8b6542001-05-13 08:04:26 +00001997 return posix_error_with_allocated_filename(path);
1998 PyMem_Free(path);
Fredrik Lundh44328e62000-07-10 15:59:30 +00001999 Py_INCREF(Py_None);
2000 return Py_None;
Guido van Rossumb6775db1994-08-01 11:34:53 +00002001}
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002002#endif /* HAVE_CHOWN */
Guido van Rossumb6775db1994-08-01 11:34:53 +00002003
Christian Heimes36281872007-11-30 21:11:28 +00002004#ifdef HAVE_FCHOWN
2005PyDoc_STRVAR(posix_fchown__doc__,
2006"fchown(fd, uid, gid)\n\n\
2007Change the owner and group id of the file given by file descriptor\n\
2008fd to the numeric uid and gid.");
2009
2010static PyObject *
2011posix_fchown(PyObject *self, PyObject *args)
2012{
2013 int fd, uid, gid;
2014 int res;
2015 if (!PyArg_ParseTuple(args, "iii:chown", &fd, &uid, &gid))
2016 return NULL;
2017 Py_BEGIN_ALLOW_THREADS
2018 res = fchown(fd, (uid_t) uid, (gid_t) gid);
2019 Py_END_ALLOW_THREADS
2020 if (res < 0)
2021 return posix_error();
2022 Py_RETURN_NONE;
2023}
2024#endif /* HAVE_FCHOWN */
2025
Martin v. Löwis0cec0ff2002-07-28 16:33:45 +00002026#ifdef HAVE_LCHOWN
2027PyDoc_STRVAR(posix_lchown__doc__,
2028"lchown(path, uid, gid)\n\n\
2029Change the owner and group id of path to the numeric uid and gid.\n\
2030This function will not follow symbolic links.");
2031
2032static PyObject *
2033posix_lchown(PyObject *self, PyObject *args)
2034{
2035 char *path = NULL;
2036 int uid, gid;
2037 int res;
2038 if (!PyArg_ParseTuple(args, "etii:lchown",
2039 Py_FileSystemDefaultEncoding, &path,
2040 &uid, &gid))
2041 return NULL;
2042 Py_BEGIN_ALLOW_THREADS
2043 res = lchown(path, (uid_t) uid, (gid_t) gid);
2044 Py_END_ALLOW_THREADS
Tim Peters11b23062003-04-23 02:39:17 +00002045 if (res < 0)
Martin v. Löwis0cec0ff2002-07-28 16:33:45 +00002046 return posix_error_with_allocated_filename(path);
2047 PyMem_Free(path);
2048 Py_INCREF(Py_None);
2049 return Py_None;
2050}
2051#endif /* HAVE_LCHOWN */
2052
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002053
Guido van Rossum36bc6801995-06-14 22:54:23 +00002054#ifdef HAVE_GETCWD
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002055PyDoc_STRVAR(posix_getcwd__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002056"getcwd() -> path\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002057Return a string representing the current working directory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002058
Barry Warsaw53699e91996-12-10 23:23:01 +00002059static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00002060posix_getcwd(PyObject *self, PyObject *noargs)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002061{
Facundo Batista5596b0c2008-06-22 13:36:20 +00002062 int bufsize_incr = 1024;
2063 int bufsize = 0;
2064 char *tmpbuf = NULL;
2065 char *res = NULL;
2066 PyObject *dynamic_return;
Neal Norwitze241ce82003-02-17 18:17:05 +00002067
Barry Warsaw53699e91996-12-10 23:23:01 +00002068 Py_BEGIN_ALLOW_THREADS
Facundo Batista5596b0c2008-06-22 13:36:20 +00002069 do {
2070 bufsize = bufsize + bufsize_incr;
2071 tmpbuf = malloc(bufsize);
2072 if (tmpbuf == NULL) {
2073 break;
2074 }
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00002075#if defined(PYOS_OS2) && defined(PYCC_GCC)
Facundo Batista5596b0c2008-06-22 13:36:20 +00002076 res = _getcwd2(tmpbuf, bufsize);
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00002077#else
Facundo Batista5596b0c2008-06-22 13:36:20 +00002078 res = getcwd(tmpbuf, bufsize);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00002079#endif
Facundo Batista5596b0c2008-06-22 13:36:20 +00002080
2081 if (res == NULL) {
2082 free(tmpbuf);
2083 }
2084 } while ((res == NULL) && (errno == ERANGE));
Barry Warsaw53699e91996-12-10 23:23:01 +00002085 Py_END_ALLOW_THREADS
Facundo Batista5596b0c2008-06-22 13:36:20 +00002086
Guido van Rossumff4949e1992-08-05 19:58:53 +00002087 if (res == NULL)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002088 return posix_error();
Facundo Batista5596b0c2008-06-22 13:36:20 +00002089
2090 dynamic_return = PyString_FromString(tmpbuf);
2091 free(tmpbuf);
2092
2093 return dynamic_return;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002094}
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002095
Walter Dörwald3b918c32002-11-21 20:18:46 +00002096#ifdef Py_USING_UNICODE
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002097PyDoc_STRVAR(posix_getcwdu__doc__,
2098"getcwdu() -> path\n\n\
2099Return a unicode string representing the current working directory.");
2100
2101static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00002102posix_getcwdu(PyObject *self, PyObject *noargs)
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002103{
2104 char buf[1026];
2105 char *res;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002106
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002107#ifdef MS_WINDOWS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002108 DWORD len;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002109 if (unicode_file_names()) {
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002110 wchar_t wbuf[1026];
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002111 wchar_t *wbuf2 = wbuf;
2112 PyObject *resobj;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002113 Py_BEGIN_ALLOW_THREADS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002114 len = GetCurrentDirectoryW(sizeof wbuf/ sizeof wbuf[0], wbuf);
2115 /* If the buffer is large enough, len does not include the
2116 terminating \0. If the buffer is too small, len includes
2117 the space needed for the terminator. */
2118 if (len >= sizeof wbuf/ sizeof wbuf[0]) {
2119 wbuf2 = malloc(len * sizeof(wchar_t));
2120 if (wbuf2)
2121 len = GetCurrentDirectoryW(len, wbuf2);
2122 }
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002123 Py_END_ALLOW_THREADS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002124 if (!wbuf2) {
2125 PyErr_NoMemory();
2126 return NULL;
2127 }
2128 if (!len) {
2129 if (wbuf2 != wbuf) free(wbuf2);
2130 return win32_error("getcwdu", NULL);
2131 }
2132 resobj = PyUnicode_FromWideChar(wbuf2, len);
2133 if (wbuf2 != wbuf) free(wbuf2);
2134 return resobj;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002135 }
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002136#endif /* MS_WINDOWS */
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002137
2138 Py_BEGIN_ALLOW_THREADS
2139#if defined(PYOS_OS2) && defined(PYCC_GCC)
2140 res = _getcwd2(buf, sizeof buf);
2141#else
2142 res = getcwd(buf, sizeof buf);
2143#endif
2144 Py_END_ALLOW_THREADS
2145 if (res == NULL)
2146 return posix_error();
2147 return PyUnicode_Decode(buf, strlen(buf), Py_FileSystemDefaultEncoding,"strict");
2148}
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002149#endif /* Py_USING_UNICODE */
2150#endif /* HAVE_GETCWD */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002151
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002152
Guido van Rossumb6775db1994-08-01 11:34:53 +00002153#ifdef HAVE_LINK
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002154PyDoc_STRVAR(posix_link__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002155"link(src, dst)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002156Create a hard link to a file.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002157
Barry Warsaw53699e91996-12-10 23:23:01 +00002158static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002159posix_link(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002160{
Martin v. Löwis4fc2bda2006-05-04 12:04:27 +00002161 return posix_2str(args, "etet:link", link);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002162}
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002163#endif /* HAVE_LINK */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002164
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002165
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002166PyDoc_STRVAR(posix_listdir__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002167"listdir(path) -> list_of_strings\n\n\
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002168Return a list containing the names of the entries in the directory.\n\
2169\n\
2170 path: path of directory to list\n\
2171\n\
2172The list is in arbitrary order. It does not include the special\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002173entries '.' and '..' even if they are present in the directory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002174
Barry Warsaw53699e91996-12-10 23:23:01 +00002175static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002176posix_listdir(PyObject *self, PyObject *args)
Guido van Rossumb6775db1994-08-01 11:34:53 +00002177{
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002178 /* XXX Should redo this putting the (now four) versions of opendir
Guido van Rossum6d8841c1997-08-14 19:57:39 +00002179 in separate files instead of having them all here... */
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00002180#if defined(MS_WINDOWS) && !defined(HAVE_OPENDIR)
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002181
Barry Warsaw53699e91996-12-10 23:23:01 +00002182 PyObject *d, *v;
Guido van Rossumb6775db1994-08-01 11:34:53 +00002183 HANDLE hFindFile;
Martin v. Löwise920f0d2006-03-07 23:59:33 +00002184 BOOL result;
Guido van Rossumb6775db1994-08-01 11:34:53 +00002185 WIN32_FIND_DATA FileData;
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002186 char namebuf[MAX_PATH+5]; /* Overallocate for \\*.*\0 */
Mark Hammondef8b6542001-05-13 08:04:26 +00002187 char *bufptr = namebuf;
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002188 Py_ssize_t len = sizeof(namebuf)-5; /* only claim to have space for MAX_PATH */
Guido van Rossumb6775db1994-08-01 11:34:53 +00002189
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002190 /* If on wide-character-capable OS see if argument
2191 is Unicode and if so use wide API. */
2192 if (unicode_file_names()) {
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002193 PyObject *po;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002194 if (PyArg_ParseTuple(args, "U:listdir", &po)) {
2195 WIN32_FIND_DATAW wFileData;
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002196 Py_UNICODE *wnamebuf;
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002197 /* Overallocate for \\*.*\0 */
2198 len = PyUnicode_GET_SIZE(po);
2199 wnamebuf = malloc((len + 5) * sizeof(wchar_t));
2200 if (!wnamebuf) {
2201 PyErr_NoMemory();
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002202 return NULL;
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002203 }
2204 wcscpy(wnamebuf, PyUnicode_AS_UNICODE(po));
Hirokazu Yamamoto406d7aa2009-05-04 05:28:39 +00002205 if (len > 0) {
2206 Py_UNICODE wch = wnamebuf[len-1];
2207 if (wch != L'/' && wch != L'\\' && wch != L':')
2208 wnamebuf[len++] = L'\\';
2209 wcscpy(wnamebuf + len, L"*.*");
2210 }
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002211 if ((d = PyList_New(0)) == NULL) {
2212 free(wnamebuf);
2213 return NULL;
2214 }
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002215 hFindFile = FindFirstFileW(wnamebuf, &wFileData);
2216 if (hFindFile == INVALID_HANDLE_VALUE) {
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002217 int error = GetLastError();
2218 if (error == ERROR_FILE_NOT_FOUND) {
2219 free(wnamebuf);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002220 return d;
2221 }
2222 Py_DECREF(d);
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002223 win32_error_unicode("FindFirstFileW", wnamebuf);
2224 free(wnamebuf);
2225 return NULL;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002226 }
2227 do {
Martin v. Löwise920f0d2006-03-07 23:59:33 +00002228 /* Skip over . and .. */
2229 if (wcscmp(wFileData.cFileName, L".") != 0 &&
2230 wcscmp(wFileData.cFileName, L"..") != 0) {
2231 v = PyUnicode_FromUnicode(wFileData.cFileName, wcslen(wFileData.cFileName));
2232 if (v == NULL) {
2233 Py_DECREF(d);
2234 d = NULL;
2235 break;
2236 }
2237 if (PyList_Append(d, v) != 0) {
2238 Py_DECREF(v);
2239 Py_DECREF(d);
2240 d = NULL;
2241 break;
2242 }
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002243 Py_DECREF(v);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002244 }
Georg Brandl622927b2006-03-07 12:48:03 +00002245 Py_BEGIN_ALLOW_THREADS
2246 result = FindNextFileW(hFindFile, &wFileData);
2247 Py_END_ALLOW_THREADS
Martin v. Löwis982e9fe2006-07-24 12:54:17 +00002248 /* FindNextFile sets error to ERROR_NO_MORE_FILES if
2249 it got to the end of the directory. */
2250 if (!result && GetLastError() != ERROR_NO_MORE_FILES) {
2251 Py_DECREF(d);
2252 win32_error_unicode("FindNextFileW", wnamebuf);
2253 FindClose(hFindFile);
2254 free(wnamebuf);
2255 return NULL;
2256 }
Georg Brandl622927b2006-03-07 12:48:03 +00002257 } while (result == TRUE);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002258
2259 if (FindClose(hFindFile) == FALSE) {
2260 Py_DECREF(d);
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002261 win32_error_unicode("FindClose", wnamebuf);
2262 free(wnamebuf);
2263 return NULL;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002264 }
Martin v. Löwise3edaea2006-05-15 05:51:36 +00002265 free(wnamebuf);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002266 return d;
2267 }
2268 /* Drop the argument parsing error as narrow strings
2269 are also valid. */
2270 PyErr_Clear();
2271 }
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002272
Tim Peters5aa91602002-01-30 05:46:57 +00002273 if (!PyArg_ParseTuple(args, "et#:listdir",
Mark Hammondef8b6542001-05-13 08:04:26 +00002274 Py_FileSystemDefaultEncoding, &bufptr, &len))
Guido van Rossumb6775db1994-08-01 11:34:53 +00002275 return NULL;
Neil Schemenauer94b866a2002-03-22 20:51:58 +00002276 if (len > 0) {
2277 char ch = namebuf[len-1];
2278 if (ch != SEP && ch != ALTSEP && ch != ':')
2279 namebuf[len++] = '/';
Hirokazu Yamamoto406d7aa2009-05-04 05:28:39 +00002280 strcpy(namebuf + len, "*.*");
Neil Schemenauer94b866a2002-03-22 20:51:58 +00002281 }
Guido van Rossumb6775db1994-08-01 11:34:53 +00002282
Barry Warsaw53699e91996-12-10 23:23:01 +00002283 if ((d = PyList_New(0)) == NULL)
Guido van Rossumb6775db1994-08-01 11:34:53 +00002284 return NULL;
2285
2286 hFindFile = FindFirstFile(namebuf, &FileData);
2287 if (hFindFile == INVALID_HANDLE_VALUE) {
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002288 int error = GetLastError();
2289 if (error == ERROR_FILE_NOT_FOUND)
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002290 return d;
2291 Py_DECREF(d);
Mark Hammondef8b6542001-05-13 08:04:26 +00002292 return win32_error("FindFirstFile", namebuf);
Guido van Rossumb6775db1994-08-01 11:34:53 +00002293 }
2294 do {
Martin v. Löwise920f0d2006-03-07 23:59:33 +00002295 /* Skip over . and .. */
2296 if (strcmp(FileData.cFileName, ".") != 0 &&
2297 strcmp(FileData.cFileName, "..") != 0) {
Gregory P. Smithdd96db62008-06-09 04:58:54 +00002298 v = PyString_FromString(FileData.cFileName);
Martin v. Löwise920f0d2006-03-07 23:59:33 +00002299 if (v == NULL) {
2300 Py_DECREF(d);
2301 d = NULL;
2302 break;
2303 }
2304 if (PyList_Append(d, v) != 0) {
2305 Py_DECREF(v);
2306 Py_DECREF(d);
2307 d = NULL;
2308 break;
2309 }
Barry Warsaw53699e91996-12-10 23:23:01 +00002310 Py_DECREF(v);
Guido van Rossumb6775db1994-08-01 11:34:53 +00002311 }
Georg Brandl622927b2006-03-07 12:48:03 +00002312 Py_BEGIN_ALLOW_THREADS
2313 result = FindNextFile(hFindFile, &FileData);
2314 Py_END_ALLOW_THREADS
Martin v. Löwis982e9fe2006-07-24 12:54:17 +00002315 /* FindNextFile sets error to ERROR_NO_MORE_FILES if
2316 it got to the end of the directory. */
2317 if (!result && GetLastError() != ERROR_NO_MORE_FILES) {
2318 Py_DECREF(d);
2319 win32_error("FindNextFile", namebuf);
2320 FindClose(hFindFile);
2321 return NULL;
2322 }
Georg Brandl622927b2006-03-07 12:48:03 +00002323 } while (result == TRUE);
Guido van Rossumb6775db1994-08-01 11:34:53 +00002324
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002325 if (FindClose(hFindFile) == FALSE) {
2326 Py_DECREF(d);
Mark Hammondef8b6542001-05-13 08:04:26 +00002327 return win32_error("FindClose", namebuf);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002328 }
Guido van Rossumb6775db1994-08-01 11:34:53 +00002329
2330 return d;
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002331
Tim Peters0bb44a42000-09-15 07:44:49 +00002332#elif defined(PYOS_OS2)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002333
2334#ifndef MAX_PATH
2335#define MAX_PATH CCHMAXPATH
2336#endif
2337 char *name, *pt;
Thomas Wouters68bc4f92006-03-01 01:05:10 +00002338 Py_ssize_t len;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002339 PyObject *d, *v;
2340 char namebuf[MAX_PATH+5];
2341 HDIR hdir = 1;
2342 ULONG srchcnt = 1;
2343 FILEFINDBUF3 ep;
2344 APIRET rc;
2345
Fred Drake5ab8eaf1999-12-09 21:13:07 +00002346 if (!PyArg_ParseTuple(args, "t#:listdir", &name, &len))
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002347 return NULL;
2348 if (len >= MAX_PATH) {
2349 PyErr_SetString(PyExc_ValueError, "path too long");
2350 return NULL;
2351 }
2352 strcpy(namebuf, name);
2353 for (pt = namebuf; *pt; pt++)
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00002354 if (*pt == ALTSEP)
2355 *pt = SEP;
2356 if (namebuf[len-1] != SEP)
2357 namebuf[len++] = SEP;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002358 strcpy(namebuf + len, "*.*");
2359
2360 if ((d = PyList_New(0)) == NULL)
2361 return NULL;
2362
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002363 rc = DosFindFirst(namebuf, /* Wildcard Pattern to Match */
2364 &hdir, /* Handle to Use While Search Directory */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002365 FILE_READONLY | FILE_HIDDEN | FILE_SYSTEM | FILE_DIRECTORY,
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002366 &ep, sizeof(ep), /* Structure to Receive Directory Entry */
2367 &srchcnt, /* Max and Actual Count of Entries Per Iteration */
2368 FIL_STANDARD); /* Format of Entry (EAs or Not) */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002369
2370 if (rc != NO_ERROR) {
2371 errno = ENOENT;
Barry Warsawf63b8cc1999-05-27 23:13:21 +00002372 return posix_error_with_filename(name);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002373 }
2374
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002375 if (srchcnt > 0) { /* If Directory is NOT Totally Empty, */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002376 do {
2377 if (ep.achName[0] == '.'
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00002378 && (ep.achName[1] == '\0' || (ep.achName[1] == '.' && ep.achName[2] == '\0')))
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002379 continue; /* Skip Over "." and ".." Names */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002380
2381 strcpy(namebuf, ep.achName);
2382
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002383 /* Leave Case of Name Alone -- In Native Form */
2384 /* (Removed Forced Lowercasing Code) */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002385
Gregory P. Smithdd96db62008-06-09 04:58:54 +00002386 v = PyString_FromString(namebuf);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002387 if (v == NULL) {
2388 Py_DECREF(d);
2389 d = NULL;
2390 break;
2391 }
2392 if (PyList_Append(d, v) != 0) {
2393 Py_DECREF(v);
2394 Py_DECREF(d);
2395 d = NULL;
2396 break;
2397 }
2398 Py_DECREF(v);
2399 } while (DosFindNext(hdir, &ep, sizeof(ep), &srchcnt) == NO_ERROR && srchcnt > 0);
2400 }
2401
2402 return d;
2403#else
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002404
Just van Rossum2fe07fd2003-03-03 19:07:13 +00002405 char *name = NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00002406 PyObject *d, *v;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002407 DIR *dirp;
Guido van Rossumb6775db1994-08-01 11:34:53 +00002408 struct dirent *ep;
Just van Rossum96b1c902003-03-03 17:32:15 +00002409 int arg_is_unicode = 1;
2410
Georg Brandl05e89b82006-04-11 07:04:06 +00002411 errno = 0;
Just van Rossum96b1c902003-03-03 17:32:15 +00002412 if (!PyArg_ParseTuple(args, "U:listdir", &v)) {
2413 arg_is_unicode = 0;
2414 PyErr_Clear();
2415 }
2416 if (!PyArg_ParseTuple(args, "et:listdir", Py_FileSystemDefaultEncoding, &name))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002417 return NULL;
Guido van Rossumff4949e1992-08-05 19:58:53 +00002418 if ((dirp = opendir(name)) == NULL) {
Just van Rossum2fe07fd2003-03-03 19:07:13 +00002419 return posix_error_with_allocated_filename(name);
Guido van Rossumff4949e1992-08-05 19:58:53 +00002420 }
Barry Warsaw53699e91996-12-10 23:23:01 +00002421 if ((d = PyList_New(0)) == NULL) {
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002422 closedir(dirp);
Just van Rossum2fe07fd2003-03-03 19:07:13 +00002423 PyMem_Free(name);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002424 return NULL;
2425 }
Georg Brandl622927b2006-03-07 12:48:03 +00002426 for (;;) {
Georg Brandl86cbf812008-07-16 21:31:41 +00002427 errno = 0;
Georg Brandl622927b2006-03-07 12:48:03 +00002428 Py_BEGIN_ALLOW_THREADS
2429 ep = readdir(dirp);
2430 Py_END_ALLOW_THREADS
Georg Brandl86cbf812008-07-16 21:31:41 +00002431 if (ep == NULL) {
2432 if (errno == 0) {
2433 break;
2434 } else {
2435 closedir(dirp);
2436 Py_DECREF(d);
2437 return posix_error_with_allocated_filename(name);
2438 }
2439 }
Guido van Rossum24f42ac1995-07-18 18:16:52 +00002440 if (ep->d_name[0] == '.' &&
2441 (NAMLEN(ep) == 1 ||
Guido van Rossuma376cc51996-12-05 23:43:35 +00002442 (ep->d_name[1] == '.' && NAMLEN(ep) == 2)))
Guido van Rossum24f42ac1995-07-18 18:16:52 +00002443 continue;
Gregory P. Smithdd96db62008-06-09 04:58:54 +00002444 v = PyString_FromStringAndSize(ep->d_name, NAMLEN(ep));
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002445 if (v == NULL) {
Barry Warsaw53699e91996-12-10 23:23:01 +00002446 Py_DECREF(d);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002447 d = NULL;
2448 break;
2449 }
Just van Rossum46c97842003-02-25 21:42:15 +00002450#ifdef Py_USING_UNICODE
Just van Rossum96b1c902003-03-03 17:32:15 +00002451 if (arg_is_unicode) {
Just van Rossum46c97842003-02-25 21:42:15 +00002452 PyObject *w;
2453
2454 w = PyUnicode_FromEncodedObject(v,
Tim Peters11b23062003-04-23 02:39:17 +00002455 Py_FileSystemDefaultEncoding,
Just van Rossum46c97842003-02-25 21:42:15 +00002456 "strict");
Just van Rossum6a421832003-03-04 19:30:44 +00002457 if (w != NULL) {
2458 Py_DECREF(v);
2459 v = w;
2460 }
2461 else {
2462 /* fall back to the original byte string, as
2463 discussed in patch #683592 */
2464 PyErr_Clear();
Just van Rossum46c97842003-02-25 21:42:15 +00002465 }
Just van Rossum46c97842003-02-25 21:42:15 +00002466 }
2467#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00002468 if (PyList_Append(d, v) != 0) {
2469 Py_DECREF(v);
2470 Py_DECREF(d);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002471 d = NULL;
2472 break;
2473 }
Barry Warsaw53699e91996-12-10 23:23:01 +00002474 Py_DECREF(v);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002475 }
2476 closedir(dirp);
Just van Rossum2fe07fd2003-03-03 19:07:13 +00002477 PyMem_Free(name);
Guido van Rossum0ee42cd1991-04-08 21:01:03 +00002478
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002479 return d;
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002480
Tim Peters0bb44a42000-09-15 07:44:49 +00002481#endif /* which OS */
2482} /* end of posix_listdir */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002483
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00002484#ifdef MS_WINDOWS
Mark Hammondef8b6542001-05-13 08:04:26 +00002485/* A helper function for abspath on win32 */
2486static PyObject *
2487posix__getfullpathname(PyObject *self, PyObject *args)
2488{
Mark Dickinson3e4caeb2009-02-21 20:27:01 +00002489 /* assume encoded strings won't more than double no of chars */
Mark Hammondef8b6542001-05-13 08:04:26 +00002490 char inbuf[MAX_PATH*2];
2491 char *inbufp = inbuf;
Tim Peters67d70eb2006-03-01 04:35:45 +00002492 Py_ssize_t insize = sizeof(inbuf);
Mark Hammondef8b6542001-05-13 08:04:26 +00002493 char outbuf[MAX_PATH*2];
2494 char *temp;
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002495
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002496 if (unicode_file_names()) {
2497 PyUnicodeObject *po;
2498 if (PyArg_ParseTuple(args, "U|:_getfullpathname", &po)) {
Hirokazu Yamamotoed29bb42008-11-08 03:46:17 +00002499 Py_UNICODE *wpath = PyUnicode_AS_UNICODE(po);
2500 Py_UNICODE woutbuf[MAX_PATH*2], *woutbufp = woutbuf;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002501 Py_UNICODE *wtemp;
Hirokazu Yamamotoed29bb42008-11-08 03:46:17 +00002502 DWORD result;
2503 PyObject *v;
2504 result = GetFullPathNameW(wpath,
2505 sizeof(woutbuf)/sizeof(woutbuf[0]),
2506 woutbuf, &wtemp);
2507 if (result > sizeof(woutbuf)/sizeof(woutbuf[0])) {
2508 woutbufp = malloc(result * sizeof(Py_UNICODE));
2509 if (!woutbufp)
2510 return PyErr_NoMemory();
2511 result = GetFullPathNameW(wpath, result, woutbufp, &wtemp);
2512 }
2513 if (result)
2514 v = PyUnicode_FromUnicode(woutbufp, wcslen(woutbufp));
2515 else
2516 v = win32_error_unicode("GetFullPathNameW", wpath);
2517 if (woutbufp != woutbuf)
2518 free(woutbufp);
2519 return v;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002520 }
2521 /* Drop the argument parsing error as narrow strings
2522 are also valid. */
2523 PyErr_Clear();
2524 }
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002525
Tim Peters5aa91602002-01-30 05:46:57 +00002526 if (!PyArg_ParseTuple (args, "et#:_getfullpathname",
2527 Py_FileSystemDefaultEncoding, &inbufp,
Mark Hammondef8b6542001-05-13 08:04:26 +00002528 &insize))
2529 return NULL;
2530 if (!GetFullPathName(inbuf, sizeof(outbuf)/sizeof(outbuf[0]),
2531 outbuf, &temp))
2532 return win32_error("GetFullPathName", inbuf);
Martin v. Löwis969297f2004-06-15 18:49:58 +00002533 if (PyUnicode_Check(PyTuple_GetItem(args, 0))) {
2534 return PyUnicode_Decode(outbuf, strlen(outbuf),
2535 Py_FileSystemDefaultEncoding, NULL);
2536 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00002537 return PyString_FromString(outbuf);
Mark Hammondef8b6542001-05-13 08:04:26 +00002538} /* end of posix__getfullpathname */
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00002539#endif /* MS_WINDOWS */
Mark Hammondef8b6542001-05-13 08:04:26 +00002540
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002541PyDoc_STRVAR(posix_mkdir__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002542"mkdir(path [, mode=0777])\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002543Create a directory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002544
Barry Warsaw53699e91996-12-10 23:23:01 +00002545static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002546posix_mkdir(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002547{
Guido van Rossumb0824db1996-02-25 04:50:32 +00002548 int res;
Mark Hammondef8b6542001-05-13 08:04:26 +00002549 char *path = NULL;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002550 int mode = 0777;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002551
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002552#ifdef MS_WINDOWS
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002553 if (unicode_file_names()) {
2554 PyUnicodeObject *po;
Mark Hammond05107b62003-02-19 04:08:27 +00002555 if (PyArg_ParseTuple(args, "U|i:mkdir", &po, &mode)) {
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002556 Py_BEGIN_ALLOW_THREADS
2557 /* PyUnicode_AS_UNICODE OK without thread lock as
2558 it is a simple dereference. */
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002559 res = CreateDirectoryW(PyUnicode_AS_UNICODE(po), NULL);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002560 Py_END_ALLOW_THREADS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002561 if (!res)
2562 return win32_error_unicode("mkdir", PyUnicode_AS_UNICODE(po));
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002563 Py_INCREF(Py_None);
2564 return Py_None;
2565 }
2566 /* Drop the argument parsing error as narrow strings
2567 are also valid. */
2568 PyErr_Clear();
2569 }
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002570 if (!PyArg_ParseTuple(args, "et|i:mkdir",
2571 Py_FileSystemDefaultEncoding, &path, &mode))
2572 return NULL;
2573 Py_BEGIN_ALLOW_THREADS
2574 /* PyUnicode_AS_UNICODE OK without thread lock as
2575 it is a simple dereference. */
2576 res = CreateDirectoryA(path, NULL);
2577 Py_END_ALLOW_THREADS
2578 if (!res) {
2579 win32_error("mkdir", path);
2580 PyMem_Free(path);
2581 return NULL;
2582 }
2583 PyMem_Free(path);
2584 Py_INCREF(Py_None);
2585 return Py_None;
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002586#else /* MS_WINDOWS */
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002587
Tim Peters5aa91602002-01-30 05:46:57 +00002588 if (!PyArg_ParseTuple(args, "et|i:mkdir",
Mark Hammondef8b6542001-05-13 08:04:26 +00002589 Py_FileSystemDefaultEncoding, &path, &mode))
Guido van Rossumb0824db1996-02-25 04:50:32 +00002590 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00002591 Py_BEGIN_ALLOW_THREADS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002592#if ( defined(__WATCOMC__) || defined(PYCC_VACPP) ) && !defined(__QNX__)
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002593 res = mkdir(path);
2594#else
Guido van Rossumb0824db1996-02-25 04:50:32 +00002595 res = mkdir(path, mode);
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002596#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00002597 Py_END_ALLOW_THREADS
Guido van Rossumb0824db1996-02-25 04:50:32 +00002598 if (res < 0)
Mark Hammondef8b6542001-05-13 08:04:26 +00002599 return posix_error_with_allocated_filename(path);
2600 PyMem_Free(path);
Barry Warsaw53699e91996-12-10 23:23:01 +00002601 Py_INCREF(Py_None);
2602 return Py_None;
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002603#endif /* MS_WINDOWS */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002604}
2605
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002606
Neal Norwitz1818ed72006-03-26 00:29:48 +00002607/* sys/resource.h is needed for at least: wait3(), wait4(), broken nice. */
2608#if defined(HAVE_SYS_RESOURCE_H)
Thomas Wouterse38b2f12001-07-11 22:35:31 +00002609#include <sys/resource.h>
2610#endif
Thomas Wouterse38b2f12001-07-11 22:35:31 +00002611
Neal Norwitz1818ed72006-03-26 00:29:48 +00002612
2613#ifdef HAVE_NICE
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002614PyDoc_STRVAR(posix_nice__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002615"nice(inc) -> new_priority\n\n\
2616Decrease the priority of process by inc and return the new priority.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002617
Barry Warsaw53699e91996-12-10 23:23:01 +00002618static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002619posix_nice(PyObject *self, PyObject *args)
Guido van Rossum775f4da1993-01-09 17:18:52 +00002620{
2621 int increment, value;
2622
Fred Drake5ab8eaf1999-12-09 21:13:07 +00002623 if (!PyArg_ParseTuple(args, "i:nice", &increment))
Guido van Rossum775f4da1993-01-09 17:18:52 +00002624 return NULL;
Thomas Woutersc2c12dc2001-07-11 14:45:34 +00002625
2626 /* There are two flavours of 'nice': one that returns the new
2627 priority (as required by almost all standards out there) and the
Thomas Wouterse38b2f12001-07-11 22:35:31 +00002628 Linux/FreeBSD/BSDI one, which returns '0' on success and advices
2629 the use of getpriority() to get the new priority.
Tim Peters5aa91602002-01-30 05:46:57 +00002630
Thomas Woutersc2c12dc2001-07-11 14:45:34 +00002631 If we are of the nice family that returns the new priority, we
2632 need to clear errno before the call, and check if errno is filled
2633 before calling posix_error() on a returnvalue of -1, because the
2634 -1 may be the actual new priority! */
2635
2636 errno = 0;
Guido van Rossum775f4da1993-01-09 17:18:52 +00002637 value = nice(increment);
Thomas Wouterse38b2f12001-07-11 22:35:31 +00002638#if defined(HAVE_BROKEN_NICE) && defined(HAVE_GETPRIORITY)
Thomas Woutersc2c12dc2001-07-11 14:45:34 +00002639 if (value == 0)
2640 value = getpriority(PRIO_PROCESS, 0);
2641#endif
2642 if (value == -1 && errno != 0)
2643 /* either nice() or getpriority() returned an error */
Guido van Rossum775f4da1993-01-09 17:18:52 +00002644 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00002645 return PyInt_FromLong((long) value);
Guido van Rossum775f4da1993-01-09 17:18:52 +00002646}
Guido van Rossumb6775db1994-08-01 11:34:53 +00002647#endif /* HAVE_NICE */
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002648
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002649PyDoc_STRVAR(posix_rename__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002650"rename(old, new)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002651Rename a file or directory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002652
Barry Warsaw53699e91996-12-10 23:23:01 +00002653static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002654posix_rename(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002655{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002656#ifdef MS_WINDOWS
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002657 PyObject *o1, *o2;
2658 char *p1, *p2;
2659 BOOL result;
2660 if (unicode_file_names()) {
Hirokazu Yamamotoa0fdd722008-08-17 09:19:52 +00002661 if (!PyArg_ParseTuple(args, "OO:rename", &o1, &o2))
2662 goto error;
2663 if (!convert_to_unicode(&o1))
2664 goto error;
2665 if (!convert_to_unicode(&o2)) {
2666 Py_DECREF(o1);
2667 goto error;
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002668 }
Hirokazu Yamamotoa0fdd722008-08-17 09:19:52 +00002669 Py_BEGIN_ALLOW_THREADS
2670 result = MoveFileW(PyUnicode_AsUnicode(o1),
2671 PyUnicode_AsUnicode(o2));
2672 Py_END_ALLOW_THREADS
2673 Py_DECREF(o1);
2674 Py_DECREF(o2);
2675 if (!result)
2676 return win32_error("rename", NULL);
2677 Py_INCREF(Py_None);
2678 return Py_None;
2679error:
2680 PyErr_Clear();
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002681 }
2682 if (!PyArg_ParseTuple(args, "ss:rename", &p1, &p2))
2683 return NULL;
2684 Py_BEGIN_ALLOW_THREADS
2685 result = MoveFileA(p1, p2);
2686 Py_END_ALLOW_THREADS
2687 if (!result)
2688 return win32_error("rename", NULL);
2689 Py_INCREF(Py_None);
2690 return Py_None;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002691#else
Martin v. Löwis4fc2bda2006-05-04 12:04:27 +00002692 return posix_2str(args, "etet:rename", rename);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002693#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002694}
2695
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002696
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002697PyDoc_STRVAR(posix_rmdir__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002698"rmdir(path)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002699Remove a directory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002700
Barry Warsaw53699e91996-12-10 23:23:01 +00002701static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002702posix_rmdir(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002703{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002704#ifdef MS_WINDOWS
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002705 return win32_1str(args, "rmdir", "s:rmdir", RemoveDirectoryA, "U:rmdir", RemoveDirectoryW);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002706#else
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002707 return posix_1str(args, "et:rmdir", rmdir);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002708#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002709}
2710
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002711
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002712PyDoc_STRVAR(posix_stat__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002713"stat(path) -> stat result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002714Perform a stat system call on the given path.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002715
Barry Warsaw53699e91996-12-10 23:23:01 +00002716static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002717posix_stat(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002718{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002719#ifdef MS_WINDOWS
Martin v. Löwis14694662006-02-03 12:54:16 +00002720 return posix_do_stat(self, args, "et:stat", STAT, "U:stat", win32_wstat);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002721#else
2722 return posix_do_stat(self, args, "et:stat", STAT, NULL, NULL);
2723#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002724}
2725
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002726
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002727#ifdef HAVE_SYSTEM
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002728PyDoc_STRVAR(posix_system__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002729"system(command) -> exit_status\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002730Execute the command (a string) in a subshell.");
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_system(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002734{
Guido van Rossumef0a00e1992-01-27 16:51:30 +00002735 char *command;
Guido van Rossumff4949e1992-08-05 19:58:53 +00002736 long sts;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00002737 if (!PyArg_ParseTuple(args, "s:system", &command))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002738 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00002739 Py_BEGIN_ALLOW_THREADS
Guido van Rossumef0a00e1992-01-27 16:51:30 +00002740 sts = system(command);
Barry Warsaw53699e91996-12-10 23:23:01 +00002741 Py_END_ALLOW_THREADS
2742 return PyInt_FromLong(sts);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002743}
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002744#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002745
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002746
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002747PyDoc_STRVAR(posix_umask__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002748"umask(new_mask) -> old_mask\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002749Set the current numeric umask and return the previous umask.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002750
Barry Warsaw53699e91996-12-10 23:23:01 +00002751static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002752posix_umask(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002753{
2754 int i;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00002755 if (!PyArg_ParseTuple(args, "i:umask", &i))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002756 return NULL;
Fred Drake0368bc42001-07-19 20:48:32 +00002757 i = (int)umask(i);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002758 if (i < 0)
2759 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00002760 return PyInt_FromLong((long)i);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002761}
2762
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002763
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002764PyDoc_STRVAR(posix_unlink__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002765"unlink(path)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002766Remove a file (same as remove(path)).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002767
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002768PyDoc_STRVAR(posix_remove__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002769"remove(path)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002770Remove a file (same as unlink(path)).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002771
Barry Warsaw53699e91996-12-10 23:23:01 +00002772static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002773posix_unlink(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002774{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002775#ifdef MS_WINDOWS
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002776 return win32_1str(args, "remove", "s:remove", DeleteFileA, "U:remove", DeleteFileW);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002777#else
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002778 return posix_1str(args, "et:remove", unlink);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002779#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002780}
2781
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002782
Guido van Rossumb6775db1994-08-01 11:34:53 +00002783#ifdef HAVE_UNAME
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002784PyDoc_STRVAR(posix_uname__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002785"uname() -> (sysname, nodename, release, version, machine)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002786Return a tuple identifying the current operating system.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002787
Barry Warsaw53699e91996-12-10 23:23:01 +00002788static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00002789posix_uname(PyObject *self, PyObject *noargs)
Guido van Rossumc39de5f1992-02-05 11:15:54 +00002790{
Guido van Rossumc39de5f1992-02-05 11:15:54 +00002791 struct utsname u;
Guido van Rossumff4949e1992-08-05 19:58:53 +00002792 int res;
Neal Norwitze241ce82003-02-17 18:17:05 +00002793
Barry Warsaw53699e91996-12-10 23:23:01 +00002794 Py_BEGIN_ALLOW_THREADS
Guido van Rossumff4949e1992-08-05 19:58:53 +00002795 res = uname(&u);
Barry Warsaw53699e91996-12-10 23:23:01 +00002796 Py_END_ALLOW_THREADS
Guido van Rossumff4949e1992-08-05 19:58:53 +00002797 if (res < 0)
Guido van Rossumc39de5f1992-02-05 11:15:54 +00002798 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00002799 return Py_BuildValue("(sssss)",
Barry Warsaw43d68b81996-12-19 22:10:44 +00002800 u.sysname,
2801 u.nodename,
2802 u.release,
2803 u.version,
2804 u.machine);
Guido van Rossumc39de5f1992-02-05 11:15:54 +00002805}
Guido van Rossumb6775db1994-08-01 11:34:53 +00002806#endif /* HAVE_UNAME */
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002807
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002808static int
2809extract_time(PyObject *t, long* sec, long* usec)
2810{
2811 long intval;
2812 if (PyFloat_Check(t)) {
2813 double tval = PyFloat_AsDouble(t);
Christian Heimese93237d2007-12-19 02:37:44 +00002814 PyObject *intobj = Py_TYPE(t)->tp_as_number->nb_int(t);
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002815 if (!intobj)
2816 return -1;
2817 intval = PyInt_AsLong(intobj);
2818 Py_DECREF(intobj);
Michael W. Hudsonb8963812005-07-05 15:21:58 +00002819 if (intval == -1 && PyErr_Occurred())
2820 return -1;
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002821 *sec = intval;
Tim Peters96940cf2002-09-10 15:37:28 +00002822 *usec = (long)((tval - intval) * 1e6); /* can't exceed 1000000 */
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002823 if (*usec < 0)
2824 /* If rounding gave us a negative number,
2825 truncate. */
2826 *usec = 0;
2827 return 0;
2828 }
2829 intval = PyInt_AsLong(t);
2830 if (intval == -1 && PyErr_Occurred())
2831 return -1;
2832 *sec = intval;
2833 *usec = 0;
Martin v. Löwis076b2092002-09-10 15:04:41 +00002834 return 0;
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002835}
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002836
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002837PyDoc_STRVAR(posix_utime__doc__,
Georg Brandl9e5b5e42006-05-17 14:18:20 +00002838"utime(path, (atime, mtime))\n\
Fred Drakef7ce04d2002-06-20 18:31:21 +00002839utime(path, None)\n\n\
Barry Warsaw3cef8562000-05-01 16:17:24 +00002840Set the access and modified time of the file to the given values. If the\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002841second form is used, set the access and modified times to the current time.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002842
Barry Warsaw53699e91996-12-10 23:23:01 +00002843static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002844posix_utime(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002845{
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002846#ifdef MS_WINDOWS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002847 PyObject *arg;
2848 PyUnicodeObject *obwpath;
2849 wchar_t *wpath = NULL;
2850 char *apath = NULL;
2851 HANDLE hFile;
2852 long atimesec, mtimesec, ausec, musec;
2853 FILETIME atime, mtime;
2854 PyObject *result = NULL;
2855
2856 if (unicode_file_names()) {
2857 if (PyArg_ParseTuple(args, "UO|:utime", &obwpath, &arg)) {
2858 wpath = PyUnicode_AS_UNICODE(obwpath);
2859 Py_BEGIN_ALLOW_THREADS
2860 hFile = CreateFileW(wpath, FILE_WRITE_ATTRIBUTES, 0,
Martin v. Löwis18aaa562006-10-15 08:43:33 +00002861 NULL, OPEN_EXISTING,
2862 FILE_FLAG_BACKUP_SEMANTICS, NULL);
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002863 Py_END_ALLOW_THREADS
2864 if (hFile == INVALID_HANDLE_VALUE)
2865 return win32_error_unicode("utime", wpath);
2866 } else
2867 /* Drop the argument parsing error as narrow strings
2868 are also valid. */
2869 PyErr_Clear();
2870 }
2871 if (!wpath) {
2872 if (!PyArg_ParseTuple(args, "etO:utime",
2873 Py_FileSystemDefaultEncoding, &apath, &arg))
2874 return NULL;
2875 Py_BEGIN_ALLOW_THREADS
2876 hFile = CreateFileA(apath, FILE_WRITE_ATTRIBUTES, 0,
Martin v. Löwis18aaa562006-10-15 08:43:33 +00002877 NULL, OPEN_EXISTING,
2878 FILE_FLAG_BACKUP_SEMANTICS, NULL);
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002879 Py_END_ALLOW_THREADS
2880 if (hFile == INVALID_HANDLE_VALUE) {
2881 win32_error("utime", apath);
2882 PyMem_Free(apath);
2883 return NULL;
2884 }
2885 PyMem_Free(apath);
2886 }
2887
2888 if (arg == Py_None) {
2889 SYSTEMTIME now;
2890 GetSystemTime(&now);
2891 if (!SystemTimeToFileTime(&now, &mtime) ||
2892 !SystemTimeToFileTime(&now, &atime)) {
2893 win32_error("utime", NULL);
2894 goto done;
2895 }
2896 }
2897 else if (!PyTuple_Check(arg) || PyTuple_Size(arg) != 2) {
2898 PyErr_SetString(PyExc_TypeError,
2899 "utime() arg 2 must be a tuple (atime, mtime)");
2900 goto done;
2901 }
2902 else {
2903 if (extract_time(PyTuple_GET_ITEM(arg, 0),
2904 &atimesec, &ausec) == -1)
2905 goto done;
Martin v. Löwisf43893a2006-10-09 20:44:25 +00002906 time_t_to_FILE_TIME(atimesec, 1000*ausec, &atime);
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002907 if (extract_time(PyTuple_GET_ITEM(arg, 1),
2908 &mtimesec, &musec) == -1)
2909 goto done;
Martin v. Löwisf43893a2006-10-09 20:44:25 +00002910 time_t_to_FILE_TIME(mtimesec, 1000*musec, &mtime);
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002911 }
2912 if (!SetFileTime(hFile, NULL, &atime, &mtime)) {
2913 /* Avoid putting the file name into the error here,
2914 as that may confuse the user into believing that
2915 something is wrong with the file, when it also
2916 could be the time stamp that gives a problem. */
2917 win32_error("utime", NULL);
2918 }
2919 Py_INCREF(Py_None);
2920 result = Py_None;
2921done:
2922 CloseHandle(hFile);
2923 return result;
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002924#else /* MS_WINDOWS */
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002925
Neal Norwitz2adf2102004-06-09 01:46:02 +00002926 char *path = NULL;
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002927 long atime, mtime, ausec, musec;
Guido van Rossumff4949e1992-08-05 19:58:53 +00002928 int res;
Barry Warsaw3cef8562000-05-01 16:17:24 +00002929 PyObject* arg;
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002930
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002931#if defined(HAVE_UTIMES)
2932 struct timeval buf[2];
2933#define ATIME buf[0].tv_sec
2934#define MTIME buf[1].tv_sec
2935#elif defined(HAVE_UTIME_H)
Guido van Rossum6d8841c1997-08-14 19:57:39 +00002936/* XXX should define struct utimbuf instead, above */
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002937 struct utimbuf buf;
2938#define ATIME buf.actime
2939#define MTIME buf.modtime
2940#define UTIME_ARG &buf
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002941#else /* HAVE_UTIMES */
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002942 time_t buf[2];
2943#define ATIME buf[0]
2944#define MTIME buf[1]
2945#define UTIME_ARG buf
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002946#endif /* HAVE_UTIMES */
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002947
Mark Hammond817c9292003-12-03 01:22:38 +00002948
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002949 if (!PyArg_ParseTuple(args, "etO:utime",
Hye-Shik Chang2b2c9732004-01-04 13:54:25 +00002950 Py_FileSystemDefaultEncoding, &path, &arg))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002951 return NULL;
Barry Warsaw3cef8562000-05-01 16:17:24 +00002952 if (arg == Py_None) {
2953 /* optional time values not given */
2954 Py_BEGIN_ALLOW_THREADS
2955 res = utime(path, NULL);
2956 Py_END_ALLOW_THREADS
2957 }
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002958 else if (!PyTuple_Check(arg) || PyTuple_Size(arg) != 2) {
Barry Warsaw3cef8562000-05-01 16:17:24 +00002959 PyErr_SetString(PyExc_TypeError,
Fred Drake661ea262000-10-24 19:57:45 +00002960 "utime() arg 2 must be a tuple (atime, mtime)");
Neal Norwitz96652712004-06-06 20:40:27 +00002961 PyMem_Free(path);
Barry Warsaw3cef8562000-05-01 16:17:24 +00002962 return NULL;
2963 }
2964 else {
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002965 if (extract_time(PyTuple_GET_ITEM(arg, 0),
Neal Norwitz96652712004-06-06 20:40:27 +00002966 &atime, &ausec) == -1) {
2967 PyMem_Free(path);
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002968 return NULL;
Neal Norwitz96652712004-06-06 20:40:27 +00002969 }
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002970 if (extract_time(PyTuple_GET_ITEM(arg, 1),
Neal Norwitz96652712004-06-06 20:40:27 +00002971 &mtime, &musec) == -1) {
2972 PyMem_Free(path);
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002973 return NULL;
Neal Norwitz96652712004-06-06 20:40:27 +00002974 }
Barry Warsaw3cef8562000-05-01 16:17:24 +00002975 ATIME = atime;
2976 MTIME = mtime;
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002977#ifdef HAVE_UTIMES
2978 buf[0].tv_usec = ausec;
2979 buf[1].tv_usec = musec;
2980 Py_BEGIN_ALLOW_THREADS
2981 res = utimes(path, buf);
2982 Py_END_ALLOW_THREADS
2983#else
Barry Warsaw3cef8562000-05-01 16:17:24 +00002984 Py_BEGIN_ALLOW_THREADS
2985 res = utime(path, UTIME_ARG);
2986 Py_END_ALLOW_THREADS
Mark Hammond817c9292003-12-03 01:22:38 +00002987#endif /* HAVE_UTIMES */
Barry Warsaw3cef8562000-05-01 16:17:24 +00002988 }
Mark Hammond2d5914b2004-05-04 08:10:37 +00002989 if (res < 0) {
Neal Norwitz96652712004-06-06 20:40:27 +00002990 return posix_error_with_allocated_filename(path);
Mark Hammond2d5914b2004-05-04 08:10:37 +00002991 }
Neal Norwitz96652712004-06-06 20:40:27 +00002992 PyMem_Free(path);
Barry Warsaw53699e91996-12-10 23:23:01 +00002993 Py_INCREF(Py_None);
2994 return Py_None;
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002995#undef UTIME_ARG
2996#undef ATIME
2997#undef MTIME
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00002998#endif /* MS_WINDOWS */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002999}
3000
Guido van Rossum85e3b011991-06-03 12:42:10 +00003001
Guido van Rossum3b066191991-06-04 19:40:25 +00003002/* Process operations */
Guido van Rossum85e3b011991-06-03 12:42:10 +00003003
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003004PyDoc_STRVAR(posix__exit__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003005"_exit(status)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003006Exit to the system with specified status, without normal exit processing.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003007
Barry Warsaw53699e91996-12-10 23:23:01 +00003008static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00003009posix__exit(PyObject *self, PyObject *args)
Guido van Rossum85e3b011991-06-03 12:42:10 +00003010{
3011 int sts;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00003012 if (!PyArg_ParseTuple(args, "i:_exit", &sts))
Guido van Rossum85e3b011991-06-03 12:42:10 +00003013 return NULL;
3014 _exit(sts);
Guido van Rossuma376cc51996-12-05 23:43:35 +00003015 return NULL; /* Make gcc -Wall happy */
Guido van Rossum85e3b011991-06-03 12:42:10 +00003016}
3017
Martin v. Löwis114619e2002-10-07 06:44:21 +00003018#if defined(HAVE_EXECV) || defined(HAVE_SPAWNV)
3019static void
Martin v. Löwis725507b2006-03-07 12:08:51 +00003020free_string_array(char **array, Py_ssize_t count)
Martin v. Löwis114619e2002-10-07 06:44:21 +00003021{
Martin v. Löwis725507b2006-03-07 12:08:51 +00003022 Py_ssize_t i;
Martin v. Löwis114619e2002-10-07 06:44:21 +00003023 for (i = 0; i < count; i++)
3024 PyMem_Free(array[i]);
3025 PyMem_DEL(array);
3026}
3027#endif
3028
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003029
Guido van Rossuma4916fa1996-05-23 22:58:55 +00003030#ifdef HAVE_EXECV
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003031PyDoc_STRVAR(posix_execv__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003032"execv(path, args)\n\n\
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003033Execute an executable path with arguments, replacing current process.\n\
3034\n\
3035 path: path of executable file\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003036 args: tuple or list of strings");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003037
Barry Warsaw53699e91996-12-10 23:23:01 +00003038static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00003039posix_execv(PyObject *self, PyObject *args)
Guido van Rossum85e3b011991-06-03 12:42:10 +00003040{
Guido van Rossumef0a00e1992-01-27 16:51:30 +00003041 char *path;
Barry Warsaw53699e91996-12-10 23:23:01 +00003042 PyObject *argv;
Guido van Rossum85e3b011991-06-03 12:42:10 +00003043 char **argvlist;
Martin v. Löwis725507b2006-03-07 12:08:51 +00003044 Py_ssize_t i, argc;
Martin v. Löwis18e16552006-02-15 17:27:45 +00003045 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Guido van Rossum85e3b011991-06-03 12:42:10 +00003046
Guido van Rossum89b33251993-10-22 14:26:06 +00003047 /* execv has two arguments: (path, argv), where
Guido van Rossum85e3b011991-06-03 12:42:10 +00003048 argv is a list or tuple of strings. */
3049
Martin v. Löwis114619e2002-10-07 06:44:21 +00003050 if (!PyArg_ParseTuple(args, "etO:execv",
3051 Py_FileSystemDefaultEncoding,
3052 &path, &argv))
Guido van Rossum85e3b011991-06-03 12:42:10 +00003053 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00003054 if (PyList_Check(argv)) {
3055 argc = PyList_Size(argv);
3056 getitem = PyList_GetItem;
Guido van Rossum85e3b011991-06-03 12:42:10 +00003057 }
Barry Warsaw53699e91996-12-10 23:23:01 +00003058 else if (PyTuple_Check(argv)) {
3059 argc = PyTuple_Size(argv);
3060 getitem = PyTuple_GetItem;
Guido van Rossum85e3b011991-06-03 12:42:10 +00003061 }
Guido van Rossumef0a00e1992-01-27 16:51:30 +00003062 else {
Fred Drake661ea262000-10-24 19:57:45 +00003063 PyErr_SetString(PyExc_TypeError, "execv() arg 2 must be a tuple or list");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003064 PyMem_Free(path);
Guido van Rossum50422b42000-04-26 20:34:28 +00003065 return NULL;
3066 }
3067
Barry Warsaw53699e91996-12-10 23:23:01 +00003068 argvlist = PyMem_NEW(char *, argc+1);
Martin v. Löwis114619e2002-10-07 06:44:21 +00003069 if (argvlist == NULL) {
3070 PyMem_Free(path);
Neal Norwitzec74f2f2003-02-11 23:05:40 +00003071 return PyErr_NoMemory();
Martin v. Löwis114619e2002-10-07 06:44:21 +00003072 }
Guido van Rossum85e3b011991-06-03 12:42:10 +00003073 for (i = 0; i < argc; i++) {
Martin v. Löwis114619e2002-10-07 06:44:21 +00003074 if (!PyArg_Parse((*getitem)(argv, i), "et",
3075 Py_FileSystemDefaultEncoding,
3076 &argvlist[i])) {
3077 free_string_array(argvlist, i);
Tim Peters5aa91602002-01-30 05:46:57 +00003078 PyErr_SetString(PyExc_TypeError,
Fred Drake661ea262000-10-24 19:57:45 +00003079 "execv() arg 2 must contain only strings");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003080 PyMem_Free(path);
Guido van Rossum50422b42000-04-26 20:34:28 +00003081 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00003082
Guido van Rossum85e3b011991-06-03 12:42:10 +00003083 }
Guido van Rossum85e3b011991-06-03 12:42:10 +00003084 }
3085 argvlist[argc] = NULL;
3086
Guido van Rossumef0a00e1992-01-27 16:51:30 +00003087 execv(path, argvlist);
Guido van Rossumb6775db1994-08-01 11:34:53 +00003088
Guido van Rossum85e3b011991-06-03 12:42:10 +00003089 /* If we get here it's definitely an error */
3090
Martin v. Löwis114619e2002-10-07 06:44:21 +00003091 free_string_array(argvlist, argc);
3092 PyMem_Free(path);
Guido van Rossum85e3b011991-06-03 12:42:10 +00003093 return posix_error();
3094}
3095
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003096
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003097PyDoc_STRVAR(posix_execve__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003098"execve(path, args, env)\n\n\
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003099Execute a path with arguments and environment, replacing current process.\n\
3100\n\
3101 path: path of executable file\n\
3102 args: tuple or list of arguments\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003103 env: dictionary of strings mapping to strings");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003104
Barry Warsaw53699e91996-12-10 23:23:01 +00003105static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00003106posix_execve(PyObject *self, PyObject *args)
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003107{
3108 char *path;
Barry Warsaw53699e91996-12-10 23:23:01 +00003109 PyObject *argv, *env;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003110 char **argvlist;
3111 char **envlist;
Barry Warsaw5ed19dc1997-01-29 15:08:24 +00003112 PyObject *key, *val, *keys=NULL, *vals=NULL;
Martin v. Löwis725507b2006-03-07 12:08:51 +00003113 Py_ssize_t i, pos, argc, envc;
Martin v. Löwis18e16552006-02-15 17:27:45 +00003114 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Martin v. Löwis26fd9602006-04-22 11:15:41 +00003115 Py_ssize_t lastarg = 0;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003116
3117 /* execve has three arguments: (path, argv, env), where
3118 argv is a list or tuple of strings and env is a dictionary
3119 like posix.environ. */
3120
Martin v. Löwis114619e2002-10-07 06:44:21 +00003121 if (!PyArg_ParseTuple(args, "etOO:execve",
3122 Py_FileSystemDefaultEncoding,
3123 &path, &argv, &env))
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003124 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00003125 if (PyList_Check(argv)) {
3126 argc = PyList_Size(argv);
3127 getitem = PyList_GetItem;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003128 }
Barry Warsaw53699e91996-12-10 23:23:01 +00003129 else if (PyTuple_Check(argv)) {
3130 argc = PyTuple_Size(argv);
3131 getitem = PyTuple_GetItem;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003132 }
3133 else {
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003134 PyErr_SetString(PyExc_TypeError,
3135 "execve() arg 2 must be a tuple or list");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003136 goto fail_0;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003137 }
Barry Warsaw5ed19dc1997-01-29 15:08:24 +00003138 if (!PyMapping_Check(env)) {
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003139 PyErr_SetString(PyExc_TypeError,
3140 "execve() arg 3 must be a mapping object");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003141 goto fail_0;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003142 }
3143
Barry Warsaw53699e91996-12-10 23:23:01 +00003144 argvlist = PyMem_NEW(char *, argc+1);
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003145 if (argvlist == NULL) {
Barry Warsaw53699e91996-12-10 23:23:01 +00003146 PyErr_NoMemory();
Martin v. Löwis114619e2002-10-07 06:44:21 +00003147 goto fail_0;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003148 }
3149 for (i = 0; i < argc; i++) {
Barry Warsaw53699e91996-12-10 23:23:01 +00003150 if (!PyArg_Parse((*getitem)(argv, i),
Martin v. Löwis114619e2002-10-07 06:44:21 +00003151 "et;execve() arg 2 must contain only strings",
Guido van Rossum1e700d22002-10-16 16:52:11 +00003152 Py_FileSystemDefaultEncoding,
Barry Warsaw43d68b81996-12-19 22:10:44 +00003153 &argvlist[i]))
3154 {
Martin v. Löwis114619e2002-10-07 06:44:21 +00003155 lastarg = i;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003156 goto fail_1;
3157 }
3158 }
Martin v. Löwis114619e2002-10-07 06:44:21 +00003159 lastarg = argc;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003160 argvlist[argc] = NULL;
3161
Jeremy Hylton03657cf2000-07-12 13:05:33 +00003162 i = PyMapping_Size(env);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003163 if (i < 0)
3164 goto fail_1;
Barry Warsaw53699e91996-12-10 23:23:01 +00003165 envlist = PyMem_NEW(char *, i + 1);
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003166 if (envlist == NULL) {
Barry Warsaw53699e91996-12-10 23:23:01 +00003167 PyErr_NoMemory();
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003168 goto fail_1;
3169 }
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003170 envc = 0;
Barry Warsaw5ed19dc1997-01-29 15:08:24 +00003171 keys = PyMapping_Keys(env);
3172 vals = PyMapping_Values(env);
3173 if (!keys || !vals)
3174 goto fail_2;
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003175 if (!PyList_Check(keys) || !PyList_Check(vals)) {
3176 PyErr_SetString(PyExc_TypeError,
3177 "execve(): env.keys() or env.values() is not a list");
3178 goto fail_2;
3179 }
Tim Peters5aa91602002-01-30 05:46:57 +00003180
Barry Warsaw5ed19dc1997-01-29 15:08:24 +00003181 for (pos = 0; pos < i; pos++) {
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003182 char *p, *k, *v;
Tim Petersc8996f52001-12-03 20:41:00 +00003183 size_t len;
Barry Warsaw5ed19dc1997-01-29 15:08:24 +00003184
3185 key = PyList_GetItem(keys, pos);
3186 val = PyList_GetItem(vals, pos);
3187 if (!key || !val)
3188 goto fail_2;
Tim Peters5aa91602002-01-30 05:46:57 +00003189
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003190 if (!PyArg_Parse(
3191 key,
3192 "s;execve() arg 3 contains a non-string key",
3193 &k) ||
3194 !PyArg_Parse(
3195 val,
3196 "s;execve() arg 3 contains a non-string value",
3197 &v))
Barry Warsaw43d68b81996-12-19 22:10:44 +00003198 {
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003199 goto fail_2;
3200 }
Guido van Rossumd48f2521997-12-05 22:19:34 +00003201
3202#if defined(PYOS_OS2)
3203 /* Omit Pseudo-Env Vars that Would Confuse Programs if Passed On */
3204 if (stricmp(k, "BEGINLIBPATH") != 0 && stricmp(k, "ENDLIBPATH") != 0) {
3205#endif
Gregory P. Smithdd96db62008-06-09 04:58:54 +00003206 len = PyString_Size(key) + PyString_Size(val) + 2;
Tim Petersc8996f52001-12-03 20:41:00 +00003207 p = PyMem_NEW(char, len);
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003208 if (p == NULL) {
Barry Warsaw53699e91996-12-10 23:23:01 +00003209 PyErr_NoMemory();
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003210 goto fail_2;
3211 }
Tim Petersc8996f52001-12-03 20:41:00 +00003212 PyOS_snprintf(p, len, "%s=%s", k, v);
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003213 envlist[envc++] = p;
Guido van Rossumd48f2521997-12-05 22:19:34 +00003214#if defined(PYOS_OS2)
3215 }
3216#endif
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003217 }
3218 envlist[envc] = 0;
3219
3220 execve(path, argvlist, envlist);
Tim Peters5aa91602002-01-30 05:46:57 +00003221
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003222 /* If we get here it's definitely an error */
3223
3224 (void) posix_error();
3225
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003226 fail_2:
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003227 while (--envc >= 0)
Barry Warsaw53699e91996-12-10 23:23:01 +00003228 PyMem_DEL(envlist[envc]);
3229 PyMem_DEL(envlist);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003230 fail_1:
3231 free_string_array(argvlist, lastarg);
Barry Warsaw5ed19dc1997-01-29 15:08:24 +00003232 Py_XDECREF(vals);
3233 Py_XDECREF(keys);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003234 fail_0:
Martin v. Löwis114619e2002-10-07 06:44:21 +00003235 PyMem_Free(path);
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003236 return NULL;
3237}
Guido van Rossuma4916fa1996-05-23 22:58:55 +00003238#endif /* HAVE_EXECV */
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003239
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003240
Guido van Rossuma1065681999-01-25 23:20:23 +00003241#ifdef HAVE_SPAWNV
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003242PyDoc_STRVAR(posix_spawnv__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003243"spawnv(mode, path, args)\n\n\
Tim Peters25059d32001-12-07 20:35:43 +00003244Execute the program 'path' in a new process.\n\
Guido van Rossuma1065681999-01-25 23:20:23 +00003245\n\
Fred Drakea6dff3e1999-02-01 22:24:40 +00003246 mode: mode of process creation\n\
Guido van Rossuma1065681999-01-25 23:20:23 +00003247 path: path of executable file\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003248 args: tuple or list of strings");
Guido van Rossuma1065681999-01-25 23:20:23 +00003249
3250static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00003251posix_spawnv(PyObject *self, PyObject *args)
Guido van Rossuma1065681999-01-25 23:20:23 +00003252{
3253 char *path;
3254 PyObject *argv;
3255 char **argvlist;
Martin v. Löwis26fd9602006-04-22 11:15:41 +00003256 int mode, i;
3257 Py_ssize_t argc;
Tim Peters79248aa2001-08-29 21:37:10 +00003258 Py_intptr_t spawnval;
Martin v. Löwis18e16552006-02-15 17:27:45 +00003259 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Guido van Rossuma1065681999-01-25 23:20:23 +00003260
3261 /* spawnv has three arguments: (mode, path, argv), where
3262 argv is a list or tuple of strings. */
3263
Martin v. Löwis114619e2002-10-07 06:44:21 +00003264 if (!PyArg_ParseTuple(args, "ietO:spawnv", &mode,
3265 Py_FileSystemDefaultEncoding,
3266 &path, &argv))
Guido van Rossuma1065681999-01-25 23:20:23 +00003267 return NULL;
3268 if (PyList_Check(argv)) {
3269 argc = PyList_Size(argv);
3270 getitem = PyList_GetItem;
3271 }
3272 else if (PyTuple_Check(argv)) {
3273 argc = PyTuple_Size(argv);
3274 getitem = PyTuple_GetItem;
3275 }
3276 else {
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003277 PyErr_SetString(PyExc_TypeError,
3278 "spawnv() arg 2 must be a tuple or list");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003279 PyMem_Free(path);
Guido van Rossuma1065681999-01-25 23:20:23 +00003280 return NULL;
3281 }
3282
3283 argvlist = PyMem_NEW(char *, argc+1);
Martin v. Löwis114619e2002-10-07 06:44:21 +00003284 if (argvlist == NULL) {
3285 PyMem_Free(path);
Neal Norwitzec74f2f2003-02-11 23:05:40 +00003286 return PyErr_NoMemory();
Martin v. Löwis114619e2002-10-07 06:44:21 +00003287 }
Guido van Rossuma1065681999-01-25 23:20:23 +00003288 for (i = 0; i < argc; i++) {
Martin v. Löwis114619e2002-10-07 06:44:21 +00003289 if (!PyArg_Parse((*getitem)(argv, i), "et",
3290 Py_FileSystemDefaultEncoding,
3291 &argvlist[i])) {
3292 free_string_array(argvlist, i);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003293 PyErr_SetString(
3294 PyExc_TypeError,
3295 "spawnv() arg 2 must contain only strings");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003296 PyMem_Free(path);
Fred Drake137507e2000-06-01 02:02:46 +00003297 return NULL;
Guido van Rossuma1065681999-01-25 23:20:23 +00003298 }
3299 }
3300 argvlist[argc] = NULL;
3301
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00003302#if defined(PYOS_OS2) && defined(PYCC_GCC)
3303 Py_BEGIN_ALLOW_THREADS
3304 spawnval = spawnv(mode, path, argvlist);
3305 Py_END_ALLOW_THREADS
3306#else
Guido van Rossum246bc171999-02-01 23:54:31 +00003307 if (mode == _OLD_P_OVERLAY)
3308 mode = _P_OVERLAY;
Tim Peters5aa91602002-01-30 05:46:57 +00003309
Tim Peters25059d32001-12-07 20:35:43 +00003310 Py_BEGIN_ALLOW_THREADS
Fred Drake699f3522000-06-29 21:12:41 +00003311 spawnval = _spawnv(mode, path, argvlist);
Tim Peters25059d32001-12-07 20:35:43 +00003312 Py_END_ALLOW_THREADS
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00003313#endif
Tim Peters5aa91602002-01-30 05:46:57 +00003314
Martin v. Löwis114619e2002-10-07 06:44:21 +00003315 free_string_array(argvlist, argc);
3316 PyMem_Free(path);
Guido van Rossuma1065681999-01-25 23:20:23 +00003317
Fred Drake699f3522000-06-29 21:12:41 +00003318 if (spawnval == -1)
Guido van Rossuma1065681999-01-25 23:20:23 +00003319 return posix_error();
3320 else
Fredrik Lundhe25cfd82000-07-09 13:10:40 +00003321#if SIZEOF_LONG == SIZEOF_VOID_P
3322 return Py_BuildValue("l", (long) spawnval);
Fred Drake699f3522000-06-29 21:12:41 +00003323#else
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00003324 return Py_BuildValue("L", (PY_LONG_LONG) spawnval);
Fred Drake699f3522000-06-29 21:12:41 +00003325#endif
Guido van Rossuma1065681999-01-25 23:20:23 +00003326}
3327
3328
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003329PyDoc_STRVAR(posix_spawnve__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003330"spawnve(mode, path, args, env)\n\n\
Tim Peters25059d32001-12-07 20:35:43 +00003331Execute the program 'path' in a new process.\n\
Guido van Rossuma1065681999-01-25 23:20:23 +00003332\n\
Fred Drakea6dff3e1999-02-01 22:24:40 +00003333 mode: mode of process creation\n\
Guido van Rossuma1065681999-01-25 23:20:23 +00003334 path: path of executable file\n\
3335 args: tuple or list of arguments\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003336 env: dictionary of strings mapping to strings");
Guido van Rossuma1065681999-01-25 23:20:23 +00003337
3338static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00003339posix_spawnve(PyObject *self, PyObject *args)
Guido van Rossuma1065681999-01-25 23:20:23 +00003340{
3341 char *path;
3342 PyObject *argv, *env;
3343 char **argvlist;
3344 char **envlist;
3345 PyObject *key, *val, *keys=NULL, *vals=NULL, *res=NULL;
Martin v. Löwis26fd9602006-04-22 11:15:41 +00003346 int mode, pos, envc;
3347 Py_ssize_t argc, i;
Tim Peters79248aa2001-08-29 21:37:10 +00003348 Py_intptr_t spawnval;
Martin v. Löwis18e16552006-02-15 17:27:45 +00003349 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Martin v. Löwis26fd9602006-04-22 11:15:41 +00003350 Py_ssize_t lastarg = 0;
Guido van Rossuma1065681999-01-25 23:20:23 +00003351
3352 /* spawnve has four arguments: (mode, path, argv, env), where
3353 argv is a list or tuple of strings and env is a dictionary
3354 like posix.environ. */
3355
Martin v. Löwis114619e2002-10-07 06:44:21 +00003356 if (!PyArg_ParseTuple(args, "ietOO:spawnve", &mode,
3357 Py_FileSystemDefaultEncoding,
3358 &path, &argv, &env))
Guido van Rossuma1065681999-01-25 23:20:23 +00003359 return NULL;
3360 if (PyList_Check(argv)) {
3361 argc = PyList_Size(argv);
3362 getitem = PyList_GetItem;
3363 }
3364 else if (PyTuple_Check(argv)) {
3365 argc = PyTuple_Size(argv);
3366 getitem = PyTuple_GetItem;
3367 }
3368 else {
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003369 PyErr_SetString(PyExc_TypeError,
3370 "spawnve() arg 2 must be a tuple or list");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003371 goto fail_0;
Guido van Rossuma1065681999-01-25 23:20:23 +00003372 }
3373 if (!PyMapping_Check(env)) {
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003374 PyErr_SetString(PyExc_TypeError,
3375 "spawnve() arg 3 must be a mapping object");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003376 goto fail_0;
Guido van Rossuma1065681999-01-25 23:20:23 +00003377 }
3378
3379 argvlist = PyMem_NEW(char *, argc+1);
3380 if (argvlist == NULL) {
3381 PyErr_NoMemory();
Martin v. Löwis114619e2002-10-07 06:44:21 +00003382 goto fail_0;
Guido van Rossuma1065681999-01-25 23:20:23 +00003383 }
3384 for (i = 0; i < argc; i++) {
3385 if (!PyArg_Parse((*getitem)(argv, i),
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003386 "et;spawnve() arg 2 must contain only strings",
Martin v. Löwis114619e2002-10-07 06:44:21 +00003387 Py_FileSystemDefaultEncoding,
Guido van Rossuma1065681999-01-25 23:20:23 +00003388 &argvlist[i]))
3389 {
Martin v. Löwis114619e2002-10-07 06:44:21 +00003390 lastarg = i;
Guido van Rossuma1065681999-01-25 23:20:23 +00003391 goto fail_1;
3392 }
3393 }
Martin v. Löwis114619e2002-10-07 06:44:21 +00003394 lastarg = argc;
Guido van Rossuma1065681999-01-25 23:20:23 +00003395 argvlist[argc] = NULL;
3396
Jeremy Hylton03657cf2000-07-12 13:05:33 +00003397 i = PyMapping_Size(env);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003398 if (i < 0)
3399 goto fail_1;
Guido van Rossuma1065681999-01-25 23:20:23 +00003400 envlist = PyMem_NEW(char *, i + 1);
3401 if (envlist == NULL) {
3402 PyErr_NoMemory();
3403 goto fail_1;
3404 }
3405 envc = 0;
3406 keys = PyMapping_Keys(env);
3407 vals = PyMapping_Values(env);
3408 if (!keys || !vals)
3409 goto fail_2;
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003410 if (!PyList_Check(keys) || !PyList_Check(vals)) {
3411 PyErr_SetString(PyExc_TypeError,
3412 "spawnve(): env.keys() or env.values() is not a list");
3413 goto fail_2;
3414 }
Tim Peters5aa91602002-01-30 05:46:57 +00003415
Guido van Rossuma1065681999-01-25 23:20:23 +00003416 for (pos = 0; pos < i; pos++) {
3417 char *p, *k, *v;
Tim Petersc8996f52001-12-03 20:41:00 +00003418 size_t len;
Guido van Rossuma1065681999-01-25 23:20:23 +00003419
3420 key = PyList_GetItem(keys, pos);
3421 val = PyList_GetItem(vals, pos);
3422 if (!key || !val)
3423 goto fail_2;
Tim Peters5aa91602002-01-30 05:46:57 +00003424
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003425 if (!PyArg_Parse(
3426 key,
3427 "s;spawnve() arg 3 contains a non-string key",
3428 &k) ||
3429 !PyArg_Parse(
3430 val,
3431 "s;spawnve() arg 3 contains a non-string value",
3432 &v))
Guido van Rossuma1065681999-01-25 23:20:23 +00003433 {
3434 goto fail_2;
3435 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00003436 len = PyString_Size(key) + PyString_Size(val) + 2;
Tim Petersc8996f52001-12-03 20:41:00 +00003437 p = PyMem_NEW(char, len);
Guido van Rossuma1065681999-01-25 23:20:23 +00003438 if (p == NULL) {
3439 PyErr_NoMemory();
3440 goto fail_2;
3441 }
Tim Petersc8996f52001-12-03 20:41:00 +00003442 PyOS_snprintf(p, len, "%s=%s", k, v);
Guido van Rossuma1065681999-01-25 23:20:23 +00003443 envlist[envc++] = p;
3444 }
3445 envlist[envc] = 0;
3446
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00003447#if defined(PYOS_OS2) && defined(PYCC_GCC)
3448 Py_BEGIN_ALLOW_THREADS
3449 spawnval = spawnve(mode, path, argvlist, envlist);
3450 Py_END_ALLOW_THREADS
3451#else
Guido van Rossum246bc171999-02-01 23:54:31 +00003452 if (mode == _OLD_P_OVERLAY)
3453 mode = _P_OVERLAY;
Tim Peters25059d32001-12-07 20:35:43 +00003454
3455 Py_BEGIN_ALLOW_THREADS
Fred Drake699f3522000-06-29 21:12:41 +00003456 spawnval = _spawnve(mode, path, argvlist, envlist);
Tim Peters25059d32001-12-07 20:35:43 +00003457 Py_END_ALLOW_THREADS
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00003458#endif
Tim Peters25059d32001-12-07 20:35:43 +00003459
Fred Drake699f3522000-06-29 21:12:41 +00003460 if (spawnval == -1)
Guido van Rossuma1065681999-01-25 23:20:23 +00003461 (void) posix_error();
3462 else
Fredrik Lundhe25cfd82000-07-09 13:10:40 +00003463#if SIZEOF_LONG == SIZEOF_VOID_P
3464 res = Py_BuildValue("l", (long) spawnval);
Fred Drake699f3522000-06-29 21:12:41 +00003465#else
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00003466 res = Py_BuildValue("L", (PY_LONG_LONG) spawnval);
Fred Drake699f3522000-06-29 21:12:41 +00003467#endif
Guido van Rossuma1065681999-01-25 23:20:23 +00003468
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003469 fail_2:
Guido van Rossuma1065681999-01-25 23:20:23 +00003470 while (--envc >= 0)
3471 PyMem_DEL(envlist[envc]);
3472 PyMem_DEL(envlist);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003473 fail_1:
Martin v. Löwis114619e2002-10-07 06:44:21 +00003474 free_string_array(argvlist, lastarg);
Guido van Rossuma1065681999-01-25 23:20:23 +00003475 Py_XDECREF(vals);
3476 Py_XDECREF(keys);
Martin v. Löwis114619e2002-10-07 06:44:21 +00003477 fail_0:
3478 PyMem_Free(path);
Guido van Rossuma1065681999-01-25 23:20:23 +00003479 return res;
3480}
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003481
3482/* OS/2 supports spawnvp & spawnvpe natively */
3483#if defined(PYOS_OS2)
3484PyDoc_STRVAR(posix_spawnvp__doc__,
3485"spawnvp(mode, file, args)\n\n\
3486Execute the program 'file' in a new process, using the environment\n\
3487search path to find the file.\n\
3488\n\
3489 mode: mode of process creation\n\
3490 file: executable file name\n\
3491 args: tuple or list of strings");
3492
3493static PyObject *
3494posix_spawnvp(PyObject *self, PyObject *args)
3495{
3496 char *path;
3497 PyObject *argv;
3498 char **argvlist;
3499 int mode, i, argc;
3500 Py_intptr_t spawnval;
Martin v. Löwis18e16552006-02-15 17:27:45 +00003501 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003502
3503 /* spawnvp has three arguments: (mode, path, argv), where
3504 argv is a list or tuple of strings. */
3505
3506 if (!PyArg_ParseTuple(args, "ietO:spawnvp", &mode,
3507 Py_FileSystemDefaultEncoding,
3508 &path, &argv))
3509 return NULL;
3510 if (PyList_Check(argv)) {
3511 argc = PyList_Size(argv);
3512 getitem = PyList_GetItem;
3513 }
3514 else if (PyTuple_Check(argv)) {
3515 argc = PyTuple_Size(argv);
3516 getitem = PyTuple_GetItem;
3517 }
3518 else {
3519 PyErr_SetString(PyExc_TypeError,
3520 "spawnvp() arg 2 must be a tuple or list");
3521 PyMem_Free(path);
3522 return NULL;
3523 }
3524
3525 argvlist = PyMem_NEW(char *, argc+1);
3526 if (argvlist == NULL) {
3527 PyMem_Free(path);
3528 return PyErr_NoMemory();
3529 }
3530 for (i = 0; i < argc; i++) {
3531 if (!PyArg_Parse((*getitem)(argv, i), "et",
3532 Py_FileSystemDefaultEncoding,
3533 &argvlist[i])) {
3534 free_string_array(argvlist, i);
3535 PyErr_SetString(
3536 PyExc_TypeError,
3537 "spawnvp() arg 2 must contain only strings");
3538 PyMem_Free(path);
3539 return NULL;
3540 }
3541 }
3542 argvlist[argc] = NULL;
3543
3544 Py_BEGIN_ALLOW_THREADS
3545#if defined(PYCC_GCC)
3546 spawnval = spawnvp(mode, path, argvlist);
3547#else
3548 spawnval = _spawnvp(mode, path, argvlist);
3549#endif
3550 Py_END_ALLOW_THREADS
3551
3552 free_string_array(argvlist, argc);
3553 PyMem_Free(path);
3554
3555 if (spawnval == -1)
3556 return posix_error();
3557 else
3558 return Py_BuildValue("l", (long) spawnval);
3559}
3560
3561
3562PyDoc_STRVAR(posix_spawnvpe__doc__,
3563"spawnvpe(mode, file, args, env)\n\n\
3564Execute the program 'file' in a new process, using the environment\n\
3565search path to find the file.\n\
3566\n\
3567 mode: mode of process creation\n\
3568 file: executable file name\n\
3569 args: tuple or list of arguments\n\
3570 env: dictionary of strings mapping to strings");
3571
3572static PyObject *
3573posix_spawnvpe(PyObject *self, PyObject *args)
3574{
3575 char *path;
3576 PyObject *argv, *env;
3577 char **argvlist;
3578 char **envlist;
3579 PyObject *key, *val, *keys=NULL, *vals=NULL, *res=NULL;
3580 int mode, i, pos, argc, envc;
3581 Py_intptr_t spawnval;
Martin v. Löwis18e16552006-02-15 17:27:45 +00003582 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003583 int lastarg = 0;
3584
3585 /* spawnvpe has four arguments: (mode, path, argv, env), where
3586 argv is a list or tuple of strings and env is a dictionary
3587 like posix.environ. */
3588
3589 if (!PyArg_ParseTuple(args, "ietOO:spawnvpe", &mode,
3590 Py_FileSystemDefaultEncoding,
3591 &path, &argv, &env))
3592 return NULL;
3593 if (PyList_Check(argv)) {
3594 argc = PyList_Size(argv);
3595 getitem = PyList_GetItem;
3596 }
3597 else if (PyTuple_Check(argv)) {
3598 argc = PyTuple_Size(argv);
3599 getitem = PyTuple_GetItem;
3600 }
3601 else {
3602 PyErr_SetString(PyExc_TypeError,
3603 "spawnvpe() arg 2 must be a tuple or list");
3604 goto fail_0;
3605 }
3606 if (!PyMapping_Check(env)) {
3607 PyErr_SetString(PyExc_TypeError,
3608 "spawnvpe() arg 3 must be a mapping object");
3609 goto fail_0;
3610 }
3611
3612 argvlist = PyMem_NEW(char *, argc+1);
3613 if (argvlist == NULL) {
3614 PyErr_NoMemory();
3615 goto fail_0;
3616 }
3617 for (i = 0; i < argc; i++) {
3618 if (!PyArg_Parse((*getitem)(argv, i),
3619 "et;spawnvpe() arg 2 must contain only strings",
3620 Py_FileSystemDefaultEncoding,
3621 &argvlist[i]))
3622 {
3623 lastarg = i;
3624 goto fail_1;
3625 }
3626 }
3627 lastarg = argc;
3628 argvlist[argc] = NULL;
3629
3630 i = PyMapping_Size(env);
3631 if (i < 0)
3632 goto fail_1;
3633 envlist = PyMem_NEW(char *, i + 1);
3634 if (envlist == NULL) {
3635 PyErr_NoMemory();
3636 goto fail_1;
3637 }
3638 envc = 0;
3639 keys = PyMapping_Keys(env);
3640 vals = PyMapping_Values(env);
3641 if (!keys || !vals)
3642 goto fail_2;
3643 if (!PyList_Check(keys) || !PyList_Check(vals)) {
3644 PyErr_SetString(PyExc_TypeError,
3645 "spawnvpe(): env.keys() or env.values() is not a list");
3646 goto fail_2;
3647 }
3648
3649 for (pos = 0; pos < i; pos++) {
3650 char *p, *k, *v;
3651 size_t len;
3652
3653 key = PyList_GetItem(keys, pos);
3654 val = PyList_GetItem(vals, pos);
3655 if (!key || !val)
3656 goto fail_2;
3657
3658 if (!PyArg_Parse(
3659 key,
3660 "s;spawnvpe() arg 3 contains a non-string key",
3661 &k) ||
3662 !PyArg_Parse(
3663 val,
3664 "s;spawnvpe() arg 3 contains a non-string value",
3665 &v))
3666 {
3667 goto fail_2;
3668 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00003669 len = PyString_Size(key) + PyString_Size(val) + 2;
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003670 p = PyMem_NEW(char, len);
3671 if (p == NULL) {
3672 PyErr_NoMemory();
3673 goto fail_2;
3674 }
3675 PyOS_snprintf(p, len, "%s=%s", k, v);
3676 envlist[envc++] = p;
3677 }
3678 envlist[envc] = 0;
3679
3680 Py_BEGIN_ALLOW_THREADS
3681#if defined(PYCC_GCC)
Andrew MacIntyre94dcf0d2008-02-03 07:07:31 +00003682 spawnval = spawnvpe(mode, path, argvlist, envlist);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003683#else
Andrew MacIntyre94dcf0d2008-02-03 07:07:31 +00003684 spawnval = _spawnvpe(mode, path, argvlist, envlist);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003685#endif
3686 Py_END_ALLOW_THREADS
3687
3688 if (spawnval == -1)
3689 (void) posix_error();
3690 else
3691 res = Py_BuildValue("l", (long) spawnval);
3692
3693 fail_2:
3694 while (--envc >= 0)
3695 PyMem_DEL(envlist[envc]);
3696 PyMem_DEL(envlist);
3697 fail_1:
3698 free_string_array(argvlist, lastarg);
3699 Py_XDECREF(vals);
3700 Py_XDECREF(keys);
3701 fail_0:
3702 PyMem_Free(path);
3703 return res;
3704}
3705#endif /* PYOS_OS2 */
Guido van Rossuma1065681999-01-25 23:20:23 +00003706#endif /* HAVE_SPAWNV */
3707
3708
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003709#ifdef HAVE_FORK1
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003710PyDoc_STRVAR(posix_fork1__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003711"fork1() -> pid\n\n\
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003712Fork a child process with a single multiplexed (i.e., not bound) thread.\n\
3713\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003714Return 0 to child process and PID of child to parent process.");
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003715
3716static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003717posix_fork1(PyObject *self, PyObject *noargs)
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003718{
Christian Heimes951cc0f2008-01-31 23:08:23 +00003719 pid_t pid = fork1();
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003720 if (pid == -1)
3721 return posix_error();
Gregory P. Smithfb7a50f2008-07-14 06:06:48 +00003722 if (pid == 0)
3723 PyOS_AfterFork();
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00003724 return PyLong_FromPid(pid);
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003725}
3726#endif
3727
3728
Guido van Rossumad0ee831995-03-01 10:34:45 +00003729#ifdef HAVE_FORK
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003730PyDoc_STRVAR(posix_fork__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003731"fork() -> pid\n\n\
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003732Fork a child process.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003733Return 0 to child process and PID of child to parent process.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003734
Barry Warsaw53699e91996-12-10 23:23:01 +00003735static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003736posix_fork(PyObject *self, PyObject *noargs)
Guido van Rossum85e3b011991-06-03 12:42:10 +00003737{
Christian Heimes951cc0f2008-01-31 23:08:23 +00003738 pid_t pid = fork();
Guido van Rossum85e3b011991-06-03 12:42:10 +00003739 if (pid == -1)
3740 return posix_error();
Fred Drake49b0c3b2000-07-06 19:42:19 +00003741 if (pid == 0)
3742 PyOS_AfterFork();
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00003743 return PyLong_FromPid(pid);
Guido van Rossum85e3b011991-06-03 12:42:10 +00003744}
Guido van Rossumad0ee831995-03-01 10:34:45 +00003745#endif
Guido van Rossum85e3b011991-06-03 12:42:10 +00003746
Neal Norwitzb59798b2003-03-21 01:43:31 +00003747/* AIX uses /dev/ptc but is otherwise the same as /dev/ptmx */
Neal Norwitz2deaddb2003-03-21 03:08:31 +00003748/* IRIX has both /dev/ptc and /dev/ptmx, use ptmx */
3749#if defined(HAVE_DEV_PTC) && !defined(HAVE_DEV_PTMX)
Neal Norwitzb59798b2003-03-21 01:43:31 +00003750#define DEV_PTY_FILE "/dev/ptc"
3751#define HAVE_DEV_PTMX
3752#else
3753#define DEV_PTY_FILE "/dev/ptmx"
3754#endif
3755
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003756#if defined(HAVE_OPENPTY) || defined(HAVE_FORKPTY) || defined(HAVE_DEV_PTMX)
Fred Drake8cef4cf2000-06-28 16:40:38 +00003757#ifdef HAVE_PTY_H
3758#include <pty.h>
3759#else
3760#ifdef HAVE_LIBUTIL_H
3761#include <libutil.h>
Fred Drake8cef4cf2000-06-28 16:40:38 +00003762#endif /* HAVE_LIBUTIL_H */
3763#endif /* HAVE_PTY_H */
Martin v. Löwis14e73b12003-01-01 09:51:12 +00003764#ifdef HAVE_STROPTS_H
3765#include <stropts.h>
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003766#endif
3767#endif /* defined(HAVE_OPENPTY) || defined(HAVE_FORKPTY) || defined(HAVE_DEV_PTMX */
Fred Drake8cef4cf2000-06-28 16:40:38 +00003768
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003769#if defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX)
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003770PyDoc_STRVAR(posix_openpty__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003771"openpty() -> (master_fd, slave_fd)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003772Open a pseudo-terminal, returning open fd's for both master and slave end.\n");
Fred Drake8cef4cf2000-06-28 16:40:38 +00003773
3774static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003775posix_openpty(PyObject *self, PyObject *noargs)
Fred Drake8cef4cf2000-06-28 16:40:38 +00003776{
3777 int master_fd, slave_fd;
Thomas Wouters70c21a12000-07-14 14:28:33 +00003778#ifndef HAVE_OPENPTY
3779 char * slave_name;
Thomas Wouters70c21a12000-07-14 14:28:33 +00003780#endif
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003781#if defined(HAVE_DEV_PTMX) && !defined(HAVE_OPENPTY) && !defined(HAVE__GETPTY)
Martin v. Löwisc8b2e772002-12-31 14:30:26 +00003782 PyOS_sighandler_t sig_saved;
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003783#ifdef sun
Neal Norwitz84a98e02006-04-10 07:44:23 +00003784 extern char *ptsname(int fildes);
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003785#endif
3786#endif
Thomas Wouters70c21a12000-07-14 14:28:33 +00003787
Thomas Wouters70c21a12000-07-14 14:28:33 +00003788#ifdef HAVE_OPENPTY
Fred Drake8cef4cf2000-06-28 16:40:38 +00003789 if (openpty(&master_fd, &slave_fd, NULL, NULL, NULL) != 0)
3790 return posix_error();
Neal Norwitzb59798b2003-03-21 01:43:31 +00003791#elif defined(HAVE__GETPTY)
Thomas Wouters70c21a12000-07-14 14:28:33 +00003792 slave_name = _getpty(&master_fd, O_RDWR, 0666, 0);
3793 if (slave_name == NULL)
3794 return posix_error();
3795
3796 slave_fd = open(slave_name, O_RDWR);
3797 if (slave_fd < 0)
3798 return posix_error();
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003799#else
Neal Norwitzb59798b2003-03-21 01:43:31 +00003800 master_fd = open(DEV_PTY_FILE, O_RDWR | O_NOCTTY); /* open master */
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003801 if (master_fd < 0)
3802 return posix_error();
Anthony Baxter9ceaa722004-10-13 14:48:50 +00003803 sig_saved = PyOS_setsig(SIGCHLD, SIG_DFL);
Martin v. Löwisc8b2e772002-12-31 14:30:26 +00003804 /* change permission of slave */
3805 if (grantpt(master_fd) < 0) {
Anthony Baxter9ceaa722004-10-13 14:48:50 +00003806 PyOS_setsig(SIGCHLD, sig_saved);
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003807 return posix_error();
Martin v. Löwisc8b2e772002-12-31 14:30:26 +00003808 }
3809 /* unlock slave */
3810 if (unlockpt(master_fd) < 0) {
Anthony Baxter9ceaa722004-10-13 14:48:50 +00003811 PyOS_setsig(SIGCHLD, sig_saved);
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003812 return posix_error();
Martin v. Löwisc8b2e772002-12-31 14:30:26 +00003813 }
Anthony Baxter9ceaa722004-10-13 14:48:50 +00003814 PyOS_setsig(SIGCHLD, sig_saved);
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003815 slave_name = ptsname(master_fd); /* get name of slave */
3816 if (slave_name == NULL)
3817 return posix_error();
3818 slave_fd = open(slave_name, O_RDWR | O_NOCTTY); /* open slave */
3819 if (slave_fd < 0)
3820 return posix_error();
Neal Norwitzb59798b2003-03-21 01:43:31 +00003821#if !defined(__CYGWIN__) && !defined(HAVE_DEV_PTC)
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003822 ioctl(slave_fd, I_PUSH, "ptem"); /* push ptem */
3823 ioctl(slave_fd, I_PUSH, "ldterm"); /* push ldterm */
Neal Norwitz6700e472002-12-31 16:16:07 +00003824#ifndef __hpux
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003825 ioctl(slave_fd, I_PUSH, "ttcompat"); /* push ttcompat */
Neal Norwitz6700e472002-12-31 16:16:07 +00003826#endif /* __hpux */
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003827#endif /* HAVE_CYGWIN */
Thomas Wouters1e0c2f42000-07-24 16:06:23 +00003828#endif /* HAVE_OPENPTY */
Thomas Wouters70c21a12000-07-14 14:28:33 +00003829
Fred Drake8cef4cf2000-06-28 16:40:38 +00003830 return Py_BuildValue("(ii)", master_fd, slave_fd);
Thomas Wouters70c21a12000-07-14 14:28:33 +00003831
Fred Drake8cef4cf2000-06-28 16:40:38 +00003832}
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003833#endif /* defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX) */
Fred Drake8cef4cf2000-06-28 16:40:38 +00003834
3835#ifdef HAVE_FORKPTY
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003836PyDoc_STRVAR(posix_forkpty__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003837"forkpty() -> (pid, master_fd)\n\n\
Fred Drake8cef4cf2000-06-28 16:40:38 +00003838Fork a new process with a new pseudo-terminal as controlling tty.\n\n\
3839Like fork(), return 0 as pid to child process, and PID of child to parent.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003840To both, return fd of newly opened pseudo-terminal.\n");
Fred Drake8cef4cf2000-06-28 16:40:38 +00003841
3842static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003843posix_forkpty(PyObject *self, PyObject *noargs)
Fred Drake8cef4cf2000-06-28 16:40:38 +00003844{
Christian Heimes951cc0f2008-01-31 23:08:23 +00003845 int master_fd = -1;
3846 pid_t pid;
Tim Peters5aa91602002-01-30 05:46:57 +00003847
Fred Drake8cef4cf2000-06-28 16:40:38 +00003848 pid = forkpty(&master_fd, NULL, NULL, NULL);
3849 if (pid == -1)
3850 return posix_error();
Fred Drake49b0c3b2000-07-06 19:42:19 +00003851 if (pid == 0)
3852 PyOS_AfterFork();
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00003853 return Py_BuildValue("(Ni)", PyLong_FromPid(pid), master_fd);
Fred Drake8cef4cf2000-06-28 16:40:38 +00003854}
3855#endif
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003856
Guido van Rossumad0ee831995-03-01 10:34:45 +00003857#ifdef HAVE_GETEGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003858PyDoc_STRVAR(posix_getegid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003859"getegid() -> egid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003860Return the current process's effective group id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003861
Barry Warsaw53699e91996-12-10 23:23:01 +00003862static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003863posix_getegid(PyObject *self, PyObject *noargs)
Guido van Rossum46003ff1992-05-15 11:05:24 +00003864{
Barry Warsaw53699e91996-12-10 23:23:01 +00003865 return PyInt_FromLong((long)getegid());
Guido van Rossum46003ff1992-05-15 11:05:24 +00003866}
Guido van Rossumad0ee831995-03-01 10:34:45 +00003867#endif
Guido van Rossum46003ff1992-05-15 11:05:24 +00003868
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003869
Guido van Rossumad0ee831995-03-01 10:34:45 +00003870#ifdef HAVE_GETEUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003871PyDoc_STRVAR(posix_geteuid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003872"geteuid() -> euid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003873Return the current process's effective user id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003874
Barry Warsaw53699e91996-12-10 23:23:01 +00003875static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003876posix_geteuid(PyObject *self, PyObject *noargs)
Guido van Rossum46003ff1992-05-15 11:05:24 +00003877{
Barry Warsaw53699e91996-12-10 23:23:01 +00003878 return PyInt_FromLong((long)geteuid());
Guido van Rossum46003ff1992-05-15 11:05:24 +00003879}
Guido van Rossumad0ee831995-03-01 10:34:45 +00003880#endif
Guido van Rossum46003ff1992-05-15 11:05:24 +00003881
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003882
Guido van Rossumad0ee831995-03-01 10:34:45 +00003883#ifdef HAVE_GETGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003884PyDoc_STRVAR(posix_getgid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003885"getgid() -> gid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003886Return the current process's group id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003887
Barry Warsaw53699e91996-12-10 23:23:01 +00003888static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003889posix_getgid(PyObject *self, PyObject *noargs)
Guido van Rossum46003ff1992-05-15 11:05:24 +00003890{
Barry Warsaw53699e91996-12-10 23:23:01 +00003891 return PyInt_FromLong((long)getgid());
Guido van Rossum46003ff1992-05-15 11:05:24 +00003892}
Guido van Rossumad0ee831995-03-01 10:34:45 +00003893#endif
Guido van Rossum46003ff1992-05-15 11:05:24 +00003894
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003895
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003896PyDoc_STRVAR(posix_getpid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003897"getpid() -> pid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003898Return the current process id");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003899
Barry Warsaw53699e91996-12-10 23:23:01 +00003900static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003901posix_getpid(PyObject *self, PyObject *noargs)
Guido van Rossum85e3b011991-06-03 12:42:10 +00003902{
Antoine Pitrou76dd2d12009-05-23 16:06:49 +00003903 return PyLong_FromPid(getpid());
Guido van Rossum85e3b011991-06-03 12:42:10 +00003904}
3905
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003906
Fred Drakec9680921999-12-13 16:37:25 +00003907#ifdef HAVE_GETGROUPS
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003908PyDoc_STRVAR(posix_getgroups__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003909"getgroups() -> list of group IDs\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003910Return list of supplemental group IDs for the process.");
Fred Drakec9680921999-12-13 16:37:25 +00003911
3912static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003913posix_getgroups(PyObject *self, PyObject *noargs)
Fred Drakec9680921999-12-13 16:37:25 +00003914{
3915 PyObject *result = NULL;
3916
Fred Drakec9680921999-12-13 16:37:25 +00003917#ifdef NGROUPS_MAX
3918#define MAX_GROUPS NGROUPS_MAX
3919#else
3920 /* defined to be 16 on Solaris7, so this should be a small number */
3921#define MAX_GROUPS 64
3922#endif
3923 gid_t grouplist[MAX_GROUPS];
3924 int n;
3925
3926 n = getgroups(MAX_GROUPS, grouplist);
3927 if (n < 0)
3928 posix_error();
3929 else {
3930 result = PyList_New(n);
3931 if (result != NULL) {
Fred Drakec9680921999-12-13 16:37:25 +00003932 int i;
3933 for (i = 0; i < n; ++i) {
Neal Norwitze241ce82003-02-17 18:17:05 +00003934 PyObject *o = PyInt_FromLong((long)grouplist[i]);
Fred Drakec9680921999-12-13 16:37:25 +00003935 if (o == NULL) {
3936 Py_DECREF(result);
3937 result = NULL;
3938 break;
3939 }
3940 PyList_SET_ITEM(result, i, o);
3941 }
3942 }
3943 }
Neal Norwitze241ce82003-02-17 18:17:05 +00003944
Fred Drakec9680921999-12-13 16:37:25 +00003945 return result;
3946}
3947#endif
3948
Martin v. Löwis606edc12002-06-13 21:09:11 +00003949#ifdef HAVE_GETPGID
Neal Norwitz0c2c17c2002-06-13 21:22:11 +00003950PyDoc_STRVAR(posix_getpgid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003951"getpgid(pid) -> pgid\n\n\
Neal Norwitz0c2c17c2002-06-13 21:22:11 +00003952Call the system call getpgid().");
Martin v. Löwis606edc12002-06-13 21:09:11 +00003953
3954static PyObject *
3955posix_getpgid(PyObject *self, PyObject *args)
3956{
Antoine Pitrou76dd2d12009-05-23 16:06:49 +00003957 pid_t pid, pgid;
3958 if (!PyArg_ParseTuple(args, PARSE_PID ":getpgid", &pid))
Martin v. Löwis606edc12002-06-13 21:09:11 +00003959 return NULL;
3960 pgid = getpgid(pid);
3961 if (pgid < 0)
3962 return posix_error();
Antoine Pitrou76dd2d12009-05-23 16:06:49 +00003963 return PyLong_FromPid(pgid);
Martin v. Löwis606edc12002-06-13 21:09:11 +00003964}
3965#endif /* HAVE_GETPGID */
3966
3967
Guido van Rossumb6775db1994-08-01 11:34:53 +00003968#ifdef HAVE_GETPGRP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003969PyDoc_STRVAR(posix_getpgrp__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003970"getpgrp() -> pgrp\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003971Return the current process group id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003972
Barry Warsaw53699e91996-12-10 23:23:01 +00003973static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003974posix_getpgrp(PyObject *self, PyObject *noargs)
Guido van Rossum04814471991-06-04 20:23:49 +00003975{
Guido van Rossumb6775db1994-08-01 11:34:53 +00003976#ifdef GETPGRP_HAVE_ARG
Antoine Pitrou76dd2d12009-05-23 16:06:49 +00003977 return PyLong_FromPid(getpgrp(0));
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00003978#else /* GETPGRP_HAVE_ARG */
Antoine Pitrou76dd2d12009-05-23 16:06:49 +00003979 return PyLong_FromPid(getpgrp());
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00003980#endif /* GETPGRP_HAVE_ARG */
Guido van Rossum04814471991-06-04 20:23:49 +00003981}
Guido van Rossumb6775db1994-08-01 11:34:53 +00003982#endif /* HAVE_GETPGRP */
Guido van Rossum04814471991-06-04 20:23:49 +00003983
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003984
Guido van Rossumb6775db1994-08-01 11:34:53 +00003985#ifdef HAVE_SETPGRP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003986PyDoc_STRVAR(posix_setpgrp__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003987"setpgrp()\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003988Make this process a session leader.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003989
Barry Warsaw53699e91996-12-10 23:23:01 +00003990static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003991posix_setpgrp(PyObject *self, PyObject *noargs)
Guido van Rossumc2670a01992-09-13 20:07:29 +00003992{
Guido van Rossum64933891994-10-20 21:56:42 +00003993#ifdef SETPGRP_HAVE_ARG
Guido van Rossumc2670a01992-09-13 20:07:29 +00003994 if (setpgrp(0, 0) < 0)
Guido van Rossum64933891994-10-20 21:56:42 +00003995#else /* SETPGRP_HAVE_ARG */
Guido van Rossumb6775db1994-08-01 11:34:53 +00003996 if (setpgrp() < 0)
Guido van Rossum64933891994-10-20 21:56:42 +00003997#endif /* SETPGRP_HAVE_ARG */
Guido van Rossum687dd131993-05-17 08:34:16 +00003998 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00003999 Py_INCREF(Py_None);
4000 return Py_None;
Guido van Rossumc2670a01992-09-13 20:07:29 +00004001}
4002
Guido van Rossumb6775db1994-08-01 11:34:53 +00004003#endif /* HAVE_SETPGRP */
4004
Guido van Rossumad0ee831995-03-01 10:34:45 +00004005#ifdef HAVE_GETPPID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004006PyDoc_STRVAR(posix_getppid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00004007"getppid() -> ppid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004008Return the parent's process id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004009
Barry Warsaw53699e91996-12-10 23:23:01 +00004010static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00004011posix_getppid(PyObject *self, PyObject *noargs)
Guido van Rossum85e3b011991-06-03 12:42:10 +00004012{
Antoine Pitrou76dd2d12009-05-23 16:06:49 +00004013 return PyLong_FromPid(getppid());
Guido van Rossum85e3b011991-06-03 12:42:10 +00004014}
Guido van Rossumad0ee831995-03-01 10:34:45 +00004015#endif
Guido van Rossum85e3b011991-06-03 12:42:10 +00004016
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004017
Fred Drake12c6e2d1999-12-14 21:25:03 +00004018#ifdef HAVE_GETLOGIN
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004019PyDoc_STRVAR(posix_getlogin__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00004020"getlogin() -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004021Return the actual login name.");
Fred Drake12c6e2d1999-12-14 21:25:03 +00004022
4023static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00004024posix_getlogin(PyObject *self, PyObject *noargs)
Fred Drake12c6e2d1999-12-14 21:25:03 +00004025{
Neal Norwitze241ce82003-02-17 18:17:05 +00004026 PyObject *result = NULL;
Fred Drakea30680b2000-12-06 21:24:28 +00004027 char *name;
4028 int old_errno = errno;
Fred Drake12c6e2d1999-12-14 21:25:03 +00004029
Fred Drakea30680b2000-12-06 21:24:28 +00004030 errno = 0;
4031 name = getlogin();
4032 if (name == NULL) {
4033 if (errno)
4034 posix_error();
4035 else
4036 PyErr_SetString(PyExc_OSError,
Fred Drakee63544f2000-12-06 21:45:33 +00004037 "unable to determine login name");
Fred Drakea30680b2000-12-06 21:24:28 +00004038 }
Fred Drake12c6e2d1999-12-14 21:25:03 +00004039 else
Gregory P. Smithdd96db62008-06-09 04:58:54 +00004040 result = PyString_FromString(name);
Fred Drakea30680b2000-12-06 21:24:28 +00004041 errno = old_errno;
Neal Norwitze241ce82003-02-17 18:17:05 +00004042
Fred Drake12c6e2d1999-12-14 21:25:03 +00004043 return result;
4044}
4045#endif
4046
Guido van Rossumad0ee831995-03-01 10:34:45 +00004047#ifdef HAVE_GETUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004048PyDoc_STRVAR(posix_getuid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00004049"getuid() -> uid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004050Return the current process's user id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004051
Barry Warsaw53699e91996-12-10 23:23:01 +00004052static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00004053posix_getuid(PyObject *self, PyObject *noargs)
Guido van Rossum46003ff1992-05-15 11:05:24 +00004054{
Barry Warsaw53699e91996-12-10 23:23:01 +00004055 return PyInt_FromLong((long)getuid());
Guido van Rossum46003ff1992-05-15 11:05:24 +00004056}
Guido van Rossumad0ee831995-03-01 10:34:45 +00004057#endif
Guido van Rossum46003ff1992-05-15 11:05:24 +00004058
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004059
Guido van Rossumad0ee831995-03-01 10:34:45 +00004060#ifdef HAVE_KILL
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004061PyDoc_STRVAR(posix_kill__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00004062"kill(pid, sig)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004063Kill a process with a signal.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004064
Barry Warsaw53699e91996-12-10 23:23:01 +00004065static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00004066posix_kill(PyObject *self, PyObject *args)
Guido van Rossum85e3b011991-06-03 12:42:10 +00004067{
Christian Heimesd491d712008-02-01 18:49:26 +00004068 pid_t pid;
4069 int sig;
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00004070 if (!PyArg_ParseTuple(args, PARSE_PID "i:kill", &pid, &sig))
Guido van Rossum85e3b011991-06-03 12:42:10 +00004071 return NULL;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004072#if defined(PYOS_OS2) && !defined(PYCC_GCC)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004073 if (sig == XCPT_SIGNAL_INTR || sig == XCPT_SIGNAL_BREAK) {
4074 APIRET rc;
4075 if ((rc = DosSendSignalException(pid, sig)) != NO_ERROR)
Guido van Rossumd48f2521997-12-05 22:19:34 +00004076 return os2_error(rc);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004077
4078 } else if (sig == XCPT_SIGNAL_KILLPROC) {
4079 APIRET rc;
4080 if ((rc = DosKillProcess(DKP_PROCESS, pid)) != NO_ERROR)
Guido van Rossumd48f2521997-12-05 22:19:34 +00004081 return os2_error(rc);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004082
4083 } else
Guido van Rossumc5a0f531997-12-02 20:36:02 +00004084 return NULL; /* Unrecognized Signal Requested */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004085#else
Guido van Rossum85e3b011991-06-03 12:42:10 +00004086 if (kill(pid, sig) == -1)
4087 return posix_error();
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004088#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00004089 Py_INCREF(Py_None);
4090 return Py_None;
Guido van Rossum85e3b011991-06-03 12:42:10 +00004091}
Guido van Rossumad0ee831995-03-01 10:34:45 +00004092#endif
Guido van Rossum85e3b011991-06-03 12:42:10 +00004093
Martin v. Löwisb2c92f42002-02-16 23:35:41 +00004094#ifdef HAVE_KILLPG
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004095PyDoc_STRVAR(posix_killpg__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00004096"killpg(pgid, sig)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004097Kill a process group with a signal.");
Martin v. Löwisb2c92f42002-02-16 23:35:41 +00004098
4099static PyObject *
4100posix_killpg(PyObject *self, PyObject *args)
4101{
Antoine Pitrou76dd2d12009-05-23 16:06:49 +00004102 int sig;
4103 pid_t pgid;
4104 /* XXX some man pages make the `pgid` parameter an int, others
4105 a pid_t. Since getpgrp() returns a pid_t, we assume killpg should
4106 take the same type. Moreover, pid_t is always at least as wide as
4107 int (else compilation of this module fails), which is safe. */
4108 if (!PyArg_ParseTuple(args, PARSE_PID "i:killpg", &pgid, &sig))
Martin v. Löwisb2c92f42002-02-16 23:35:41 +00004109 return NULL;
4110 if (killpg(pgid, sig) == -1)
4111 return posix_error();
4112 Py_INCREF(Py_None);
4113 return Py_None;
4114}
4115#endif
4116
Guido van Rossumc0125471996-06-28 18:55:32 +00004117#ifdef HAVE_PLOCK
4118
4119#ifdef HAVE_SYS_LOCK_H
4120#include <sys/lock.h>
4121#endif
4122
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004123PyDoc_STRVAR(posix_plock__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00004124"plock(op)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004125Lock program segments into memory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004126
Barry Warsaw53699e91996-12-10 23:23:01 +00004127static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00004128posix_plock(PyObject *self, PyObject *args)
Guido van Rossumc0125471996-06-28 18:55:32 +00004129{
4130 int op;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00004131 if (!PyArg_ParseTuple(args, "i:plock", &op))
Guido van Rossumc0125471996-06-28 18:55:32 +00004132 return NULL;
4133 if (plock(op) == -1)
4134 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00004135 Py_INCREF(Py_None);
4136 return Py_None;
Guido van Rossumc0125471996-06-28 18:55:32 +00004137}
4138#endif
4139
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004140
Guido van Rossuma4916fa1996-05-23 22:58:55 +00004141#ifdef HAVE_POPEN
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004142PyDoc_STRVAR(posix_popen__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00004143"popen(command [, mode='r' [, bufsize]]) -> pipe\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004144Open a pipe to/from a command returning a file object.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004145
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004146#if defined(PYOS_OS2)
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004147#if defined(PYCC_VACPP)
Guido van Rossumd48f2521997-12-05 22:19:34 +00004148static int
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004149async_system(const char *command)
4150{
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004151 char errormsg[256], args[1024];
4152 RESULTCODES rcodes;
4153 APIRET rc;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004154
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004155 char *shell = getenv("COMSPEC");
4156 if (!shell)
4157 shell = "cmd";
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004158
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004159 /* avoid overflowing the argument buffer */
4160 if (strlen(shell) + 3 + strlen(command) >= 1024)
4161 return ERROR_NOT_ENOUGH_MEMORY
4162
4163 args[0] = '\0';
4164 strcat(args, shell);
4165 strcat(args, "/c ");
4166 strcat(args, command);
4167
4168 /* execute asynchronously, inheriting the environment */
4169 rc = DosExecPgm(errormsg,
4170 sizeof(errormsg),
4171 EXEC_ASYNC,
4172 args,
4173 NULL,
4174 &rcodes,
4175 shell);
4176 return rc;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004177}
4178
Guido van Rossumd48f2521997-12-05 22:19:34 +00004179static FILE *
4180popen(const char *command, const char *mode, int pipesize, int *err)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004181{
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004182 int oldfd, tgtfd;
4183 HFILE pipeh[2];
4184 APIRET rc;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004185
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004186 /* mode determines which of stdin or stdout is reconnected to
4187 * the pipe to the child
4188 */
4189 if (strchr(mode, 'r') != NULL) {
4190 tgt_fd = 1; /* stdout */
4191 } else if (strchr(mode, 'w')) {
4192 tgt_fd = 0; /* stdin */
4193 } else {
4194 *err = ERROR_INVALID_ACCESS;
4195 return NULL;
4196 }
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004197
Andrew MacIntyrea3be2582004-12-18 09:51:05 +00004198 /* setup the pipe */
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004199 if ((rc = DosCreatePipe(&pipeh[0], &pipeh[1], pipesize)) != NO_ERROR) {
4200 *err = rc;
4201 return NULL;
4202 }
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004203
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004204 /* prevent other threads accessing stdio */
4205 DosEnterCritSec();
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004206
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004207 /* reconnect stdio and execute child */
4208 oldfd = dup(tgtfd);
4209 close(tgtfd);
4210 if (dup2(pipeh[tgtfd], tgtfd) == 0) {
4211 DosClose(pipeh[tgtfd]);
4212 rc = async_system(command);
4213 }
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004214
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004215 /* restore stdio */
4216 dup2(oldfd, tgtfd);
4217 close(oldfd);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004218
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004219 /* allow other threads access to stdio */
4220 DosExitCritSec();
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004221
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004222 /* if execution of child was successful return file stream */
4223 if (rc == NO_ERROR)
4224 return fdopen(pipeh[1 - tgtfd], mode);
4225 else {
4226 DosClose(pipeh[1 - tgtfd]);
4227 *err = rc;
4228 return NULL;
4229 }
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004230}
4231
4232static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00004233posix_popen(PyObject *self, PyObject *args)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004234{
4235 char *name;
4236 char *mode = "r";
Guido van Rossumd48f2521997-12-05 22:19:34 +00004237 int err, bufsize = -1;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004238 FILE *fp;
4239 PyObject *f;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00004240 if (!PyArg_ParseTuple(args, "s|si:popen", &name, &mode, &bufsize))
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004241 return NULL;
4242 Py_BEGIN_ALLOW_THREADS
Guido van Rossumd48f2521997-12-05 22:19:34 +00004243 fp = popen(name, mode, (bufsize > 0) ? bufsize : 4096, &err);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004244 Py_END_ALLOW_THREADS
4245 if (fp == NULL)
Guido van Rossumd48f2521997-12-05 22:19:34 +00004246 return os2_error(err);
4247
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004248 f = PyFile_FromFile(fp, name, mode, fclose);
4249 if (f != NULL)
4250 PyFile_SetBufSize(f, bufsize);
4251 return f;
4252}
4253
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004254#elif defined(PYCC_GCC)
4255
4256/* standard posix version of popen() support */
4257static PyObject *
4258posix_popen(PyObject *self, PyObject *args)
4259{
4260 char *name;
4261 char *mode = "r";
4262 int bufsize = -1;
4263 FILE *fp;
4264 PyObject *f;
4265 if (!PyArg_ParseTuple(args, "s|si:popen", &name, &mode, &bufsize))
4266 return NULL;
4267 Py_BEGIN_ALLOW_THREADS
4268 fp = popen(name, mode);
4269 Py_END_ALLOW_THREADS
4270 if (fp == NULL)
4271 return posix_error();
4272 f = PyFile_FromFile(fp, name, mode, pclose);
4273 if (f != NULL)
4274 PyFile_SetBufSize(f, bufsize);
4275 return f;
4276}
4277
4278/* fork() under OS/2 has lots'o'warts
4279 * EMX supports pipe() and spawn*() so we can synthesize popen[234]()
4280 * most of this code is a ripoff of the win32 code, but using the
4281 * capabilities of EMX's C library routines
4282 */
4283
4284/* These tell _PyPopen() whether to return 1, 2, or 3 file objects. */
4285#define POPEN_1 1
4286#define POPEN_2 2
4287#define POPEN_3 3
4288#define POPEN_4 4
4289
4290static PyObject *_PyPopen(char *, int, int, int);
4291static int _PyPclose(FILE *file);
4292
4293/*
4294 * Internal dictionary mapping popen* file pointers to process handles,
4295 * for use when retrieving the process exit code. See _PyPclose() below
4296 * for more information on this dictionary's use.
4297 */
4298static PyObject *_PyPopenProcs = NULL;
4299
4300/* os2emx version of popen2()
4301 *
4302 * The result of this function is a pipe (file) connected to the
4303 * process's stdin, and a pipe connected to the process's stdout.
4304 */
4305
4306static PyObject *
4307os2emx_popen2(PyObject *self, PyObject *args)
4308{
4309 PyObject *f;
4310 int tm=0;
4311
4312 char *cmdstring;
4313 char *mode = "t";
4314 int bufsize = -1;
4315 if (!PyArg_ParseTuple(args, "s|si:popen2", &cmdstring, &mode, &bufsize))
4316 return NULL;
4317
4318 if (*mode == 't')
4319 tm = O_TEXT;
4320 else if (*mode != 'b') {
4321 PyErr_SetString(PyExc_ValueError, "mode must be 't' or 'b'");
4322 return NULL;
4323 } else
4324 tm = O_BINARY;
4325
4326 f = _PyPopen(cmdstring, tm, POPEN_2, bufsize);
4327
4328 return f;
4329}
4330
4331/*
4332 * Variation on os2emx.popen2
4333 *
4334 * The result of this function is 3 pipes - the process's stdin,
4335 * stdout and stderr
4336 */
4337
4338static PyObject *
4339os2emx_popen3(PyObject *self, PyObject *args)
4340{
4341 PyObject *f;
4342 int tm = 0;
4343
4344 char *cmdstring;
4345 char *mode = "t";
4346 int bufsize = -1;
4347 if (!PyArg_ParseTuple(args, "s|si:popen3", &cmdstring, &mode, &bufsize))
4348 return NULL;
4349
4350 if (*mode == 't')
4351 tm = O_TEXT;
4352 else if (*mode != 'b') {
4353 PyErr_SetString(PyExc_ValueError, "mode must be 't' or 'b'");
4354 return NULL;
4355 } else
4356 tm = O_BINARY;
4357
4358 f = _PyPopen(cmdstring, tm, POPEN_3, bufsize);
4359
4360 return f;
4361}
4362
4363/*
4364 * Variation on os2emx.popen2
4365 *
Tim Peters11b23062003-04-23 02:39:17 +00004366 * The result of this function is 2 pipes - the processes stdin,
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004367 * and stdout+stderr combined as a single pipe.
4368 */
4369
4370static PyObject *
4371os2emx_popen4(PyObject *self, PyObject *args)
4372{
4373 PyObject *f;
4374 int tm = 0;
4375
4376 char *cmdstring;
4377 char *mode = "t";
4378 int bufsize = -1;
4379 if (!PyArg_ParseTuple(args, "s|si:popen4", &cmdstring, &mode, &bufsize))
4380 return NULL;
4381
4382 if (*mode == 't')
4383 tm = O_TEXT;
4384 else if (*mode != 'b') {
4385 PyErr_SetString(PyExc_ValueError, "mode must be 't' or 'b'");
4386 return NULL;
4387 } else
4388 tm = O_BINARY;
4389
4390 f = _PyPopen(cmdstring, tm, POPEN_4, bufsize);
4391
4392 return f;
4393}
4394
4395/* a couple of structures for convenient handling of multiple
4396 * file handles and pipes
4397 */
4398struct file_ref
4399{
4400 int handle;
4401 int flags;
4402};
4403
4404struct pipe_ref
4405{
4406 int rd;
4407 int wr;
4408};
4409
4410/* The following code is derived from the win32 code */
4411
4412static PyObject *
4413_PyPopen(char *cmdstring, int mode, int n, int bufsize)
4414{
4415 struct file_ref stdio[3];
4416 struct pipe_ref p_fd[3];
4417 FILE *p_s[3];
Christian Heimesd491d712008-02-01 18:49:26 +00004418 int file_count, i, pipe_err;
4419 pid_t pipe_pid;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004420 char *shell, *sh_name, *opt, *rd_mode, *wr_mode;
4421 PyObject *f, *p_f[3];
4422
4423 /* file modes for subsequent fdopen's on pipe handles */
4424 if (mode == O_TEXT)
4425 {
4426 rd_mode = "rt";
4427 wr_mode = "wt";
4428 }
4429 else
4430 {
4431 rd_mode = "rb";
4432 wr_mode = "wb";
4433 }
4434
4435 /* prepare shell references */
4436 if ((shell = getenv("EMXSHELL")) == NULL)
4437 if ((shell = getenv("COMSPEC")) == NULL)
4438 {
4439 errno = ENOENT;
4440 return posix_error();
4441 }
4442
4443 sh_name = _getname(shell);
4444 if (stricmp(sh_name, "cmd.exe") == 0 || stricmp(sh_name, "4os2.exe") == 0)
4445 opt = "/c";
4446 else
4447 opt = "-c";
4448
4449 /* save current stdio fds + their flags, and set not inheritable */
4450 i = pipe_err = 0;
4451 while (pipe_err >= 0 && i < 3)
4452 {
4453 pipe_err = stdio[i].handle = dup(i);
4454 stdio[i].flags = fcntl(i, F_GETFD, 0);
4455 fcntl(stdio[i].handle, F_SETFD, stdio[i].flags | FD_CLOEXEC);
4456 i++;
4457 }
4458 if (pipe_err < 0)
4459 {
4460 /* didn't get them all saved - clean up and bail out */
4461 int saved_err = errno;
4462 while (i-- > 0)
4463 {
4464 close(stdio[i].handle);
4465 }
4466 errno = saved_err;
4467 return posix_error();
4468 }
4469
4470 /* create pipe ends */
4471 file_count = 2;
4472 if (n == POPEN_3)
4473 file_count = 3;
4474 i = pipe_err = 0;
4475 while ((pipe_err == 0) && (i < file_count))
4476 pipe_err = pipe((int *)&p_fd[i++]);
4477 if (pipe_err < 0)
4478 {
4479 /* didn't get them all made - clean up and bail out */
4480 while (i-- > 0)
4481 {
4482 close(p_fd[i].wr);
4483 close(p_fd[i].rd);
4484 }
4485 errno = EPIPE;
4486 return posix_error();
4487 }
4488
4489 /* change the actual standard IO streams over temporarily,
4490 * making the retained pipe ends non-inheritable
4491 */
4492 pipe_err = 0;
4493
4494 /* - stdin */
4495 if (dup2(p_fd[0].rd, 0) == 0)
4496 {
4497 close(p_fd[0].rd);
4498 i = fcntl(p_fd[0].wr, F_GETFD, 0);
4499 fcntl(p_fd[0].wr, F_SETFD, i | FD_CLOEXEC);
4500 if ((p_s[0] = fdopen(p_fd[0].wr, wr_mode)) == NULL)
4501 {
4502 close(p_fd[0].wr);
4503 pipe_err = -1;
4504 }
4505 }
4506 else
4507 {
4508 pipe_err = -1;
4509 }
4510
4511 /* - stdout */
4512 if (pipe_err == 0)
4513 {
4514 if (dup2(p_fd[1].wr, 1) == 1)
4515 {
4516 close(p_fd[1].wr);
4517 i = fcntl(p_fd[1].rd, F_GETFD, 0);
4518 fcntl(p_fd[1].rd, F_SETFD, i | FD_CLOEXEC);
4519 if ((p_s[1] = fdopen(p_fd[1].rd, rd_mode)) == NULL)
4520 {
4521 close(p_fd[1].rd);
4522 pipe_err = -1;
4523 }
4524 }
4525 else
4526 {
4527 pipe_err = -1;
4528 }
4529 }
4530
4531 /* - stderr, as required */
4532 if (pipe_err == 0)
4533 switch (n)
4534 {
4535 case POPEN_3:
4536 {
4537 if (dup2(p_fd[2].wr, 2) == 2)
4538 {
4539 close(p_fd[2].wr);
4540 i = fcntl(p_fd[2].rd, F_GETFD, 0);
4541 fcntl(p_fd[2].rd, F_SETFD, i | FD_CLOEXEC);
4542 if ((p_s[2] = fdopen(p_fd[2].rd, rd_mode)) == NULL)
4543 {
4544 close(p_fd[2].rd);
4545 pipe_err = -1;
4546 }
4547 }
4548 else
4549 {
4550 pipe_err = -1;
4551 }
4552 break;
4553 }
4554
4555 case POPEN_4:
4556 {
4557 if (dup2(1, 2) != 2)
4558 {
4559 pipe_err = -1;
4560 }
4561 break;
4562 }
4563 }
4564
4565 /* spawn the child process */
4566 if (pipe_err == 0)
4567 {
4568 pipe_pid = spawnlp(P_NOWAIT, shell, shell, opt, cmdstring, (char *)0);
4569 if (pipe_pid == -1)
4570 {
4571 pipe_err = -1;
4572 }
4573 else
4574 {
4575 /* save the PID into the FILE structure
4576 * NOTE: this implementation doesn't actually
4577 * take advantage of this, but do it for
4578 * completeness - AIM Apr01
4579 */
4580 for (i = 0; i < file_count; i++)
4581 p_s[i]->_pid = pipe_pid;
4582 }
4583 }
4584
4585 /* reset standard IO to normal */
4586 for (i = 0; i < 3; i++)
4587 {
4588 dup2(stdio[i].handle, i);
4589 fcntl(i, F_SETFD, stdio[i].flags);
4590 close(stdio[i].handle);
4591 }
4592
4593 /* if any remnant problems, clean up and bail out */
4594 if (pipe_err < 0)
4595 {
4596 for (i = 0; i < 3; i++)
4597 {
4598 close(p_fd[i].rd);
4599 close(p_fd[i].wr);
4600 }
4601 errno = EPIPE;
4602 return posix_error_with_filename(cmdstring);
4603 }
4604
4605 /* build tuple of file objects to return */
4606 if ((p_f[0] = PyFile_FromFile(p_s[0], cmdstring, wr_mode, _PyPclose)) != NULL)
4607 PyFile_SetBufSize(p_f[0], bufsize);
4608 if ((p_f[1] = PyFile_FromFile(p_s[1], cmdstring, rd_mode, _PyPclose)) != NULL)
4609 PyFile_SetBufSize(p_f[1], bufsize);
4610 if (n == POPEN_3)
4611 {
4612 if ((p_f[2] = PyFile_FromFile(p_s[2], cmdstring, rd_mode, _PyPclose)) != NULL)
4613 PyFile_SetBufSize(p_f[0], bufsize);
Raymond Hettinger8ae46892003-10-12 19:09:37 +00004614 f = PyTuple_Pack(3, p_f[0], p_f[1], p_f[2]);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004615 }
4616 else
Raymond Hettinger8ae46892003-10-12 19:09:37 +00004617 f = PyTuple_Pack(2, p_f[0], p_f[1]);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004618
4619 /*
4620 * Insert the files we've created into the process dictionary
4621 * all referencing the list with the process handle and the
4622 * initial number of files (see description below in _PyPclose).
4623 * Since if _PyPclose later tried to wait on a process when all
4624 * handles weren't closed, it could create a deadlock with the
4625 * child, we spend some energy here to try to ensure that we
4626 * either insert all file handles into the dictionary or none
4627 * at all. It's a little clumsy with the various popen modes
4628 * and variable number of files involved.
4629 */
4630 if (!_PyPopenProcs)
4631 {
4632 _PyPopenProcs = PyDict_New();
4633 }
4634
4635 if (_PyPopenProcs)
4636 {
4637 PyObject *procObj, *pidObj, *intObj, *fileObj[3];
4638 int ins_rc[3];
4639
4640 fileObj[0] = fileObj[1] = fileObj[2] = NULL;
4641 ins_rc[0] = ins_rc[1] = ins_rc[2] = 0;
4642
4643 procObj = PyList_New(2);
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00004644 pidObj = PyLong_FromPid(pipe_pid);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004645 intObj = PyInt_FromLong((long) file_count);
4646
4647 if (procObj && pidObj && intObj)
4648 {
4649 PyList_SetItem(procObj, 0, pidObj);
4650 PyList_SetItem(procObj, 1, intObj);
4651
4652 fileObj[0] = PyLong_FromVoidPtr(p_s[0]);
4653 if (fileObj[0])
4654 {
4655 ins_rc[0] = PyDict_SetItem(_PyPopenProcs,
4656 fileObj[0],
4657 procObj);
4658 }
4659 fileObj[1] = PyLong_FromVoidPtr(p_s[1]);
4660 if (fileObj[1])
4661 {
4662 ins_rc[1] = PyDict_SetItem(_PyPopenProcs,
4663 fileObj[1],
4664 procObj);
4665 }
4666 if (file_count >= 3)
4667 {
4668 fileObj[2] = PyLong_FromVoidPtr(p_s[2]);
4669 if (fileObj[2])
4670 {
4671 ins_rc[2] = PyDict_SetItem(_PyPopenProcs,
4672 fileObj[2],
4673 procObj);
4674 }
4675 }
4676
4677 if (ins_rc[0] < 0 || !fileObj[0] ||
4678 ins_rc[1] < 0 || (file_count > 1 && !fileObj[1]) ||
4679 ins_rc[2] < 0 || (file_count > 2 && !fileObj[2]))
4680 {
4681 /* Something failed - remove any dictionary
4682 * entries that did make it.
4683 */
4684 if (!ins_rc[0] && fileObj[0])
4685 {
4686 PyDict_DelItem(_PyPopenProcs,
4687 fileObj[0]);
4688 }
4689 if (!ins_rc[1] && fileObj[1])
4690 {
4691 PyDict_DelItem(_PyPopenProcs,
4692 fileObj[1]);
4693 }
4694 if (!ins_rc[2] && fileObj[2])
4695 {
4696 PyDict_DelItem(_PyPopenProcs,
4697 fileObj[2]);
4698 }
4699 }
4700 }
Tim Peters11b23062003-04-23 02:39:17 +00004701
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004702 /*
4703 * Clean up our localized references for the dictionary keys
4704 * and value since PyDict_SetItem will Py_INCREF any copies
4705 * that got placed in the dictionary.
4706 */
4707 Py_XDECREF(procObj);
4708 Py_XDECREF(fileObj[0]);
4709 Py_XDECREF(fileObj[1]);
4710 Py_XDECREF(fileObj[2]);
4711 }
4712
4713 /* Child is launched. */
4714 return f;
4715}
4716
4717/*
4718 * Wrapper for fclose() to use for popen* files, so we can retrieve the
4719 * exit code for the child process and return as a result of the close.
4720 *
4721 * This function uses the _PyPopenProcs dictionary in order to map the
4722 * input file pointer to information about the process that was
4723 * originally created by the popen* call that created the file pointer.
4724 * The dictionary uses the file pointer as a key (with one entry
4725 * inserted for each file returned by the original popen* call) and a
4726 * single list object as the value for all files from a single call.
4727 * The list object contains the Win32 process handle at [0], and a file
4728 * count at [1], which is initialized to the total number of file
4729 * handles using that list.
4730 *
4731 * This function closes whichever handle it is passed, and decrements
4732 * the file count in the dictionary for the process handle pointed to
4733 * by this file. On the last close (when the file count reaches zero),
4734 * this function will wait for the child process and then return its
4735 * exit code as the result of the close() operation. This permits the
4736 * files to be closed in any order - it is always the close() of the
4737 * final handle that will return the exit code.
Andrew MacIntyrebaf25b02003-04-21 14:22:36 +00004738 *
4739 * NOTE: This function is currently called with the GIL released.
4740 * hence we use the GILState API to manage our state.
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004741 */
4742
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004743static int _PyPclose(FILE *file)
4744{
4745 int result;
4746 int exit_code;
Christian Heimesd491d712008-02-01 18:49:26 +00004747 pid_t pipe_pid;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004748 PyObject *procObj, *pidObj, *intObj, *fileObj;
4749 int file_count;
4750#ifdef WITH_THREAD
Andrew MacIntyrebaf25b02003-04-21 14:22:36 +00004751 PyGILState_STATE state;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004752#endif
4753
4754 /* Close the file handle first, to ensure it can't block the
4755 * child from exiting if it's the last handle.
4756 */
4757 result = fclose(file);
4758
4759#ifdef WITH_THREAD
Andrew MacIntyrebaf25b02003-04-21 14:22:36 +00004760 state = PyGILState_Ensure();
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004761#endif
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004762 if (_PyPopenProcs)
4763 {
4764 if ((fileObj = PyLong_FromVoidPtr(file)) != NULL &&
4765 (procObj = PyDict_GetItem(_PyPopenProcs,
4766 fileObj)) != NULL &&
4767 (pidObj = PyList_GetItem(procObj,0)) != NULL &&
4768 (intObj = PyList_GetItem(procObj,1)) != NULL)
4769 {
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00004770 pipe_pid = (pid_t) PyLong_AsPid(pidObj);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004771 file_count = (int) PyInt_AsLong(intObj);
4772
4773 if (file_count > 1)
4774 {
4775 /* Still other files referencing process */
4776 file_count--;
4777 PyList_SetItem(procObj,1,
4778 PyInt_FromLong((long) file_count));
4779 }
4780 else
4781 {
4782 /* Last file for this process */
4783 if (result != EOF &&
4784 waitpid(pipe_pid, &exit_code, 0) == pipe_pid)
4785 {
4786 /* extract exit status */
4787 if (WIFEXITED(exit_code))
4788 {
4789 result = WEXITSTATUS(exit_code);
4790 }
4791 else
4792 {
4793 errno = EPIPE;
4794 result = -1;
4795 }
4796 }
4797 else
4798 {
4799 /* Indicate failure - this will cause the file object
4800 * to raise an I/O error and translate the last
4801 * error code from errno. We do have a problem with
4802 * last errors that overlap the normal errno table,
4803 * but that's a consistent problem with the file object.
4804 */
4805 result = -1;
4806 }
4807 }
4808
4809 /* Remove this file pointer from dictionary */
4810 PyDict_DelItem(_PyPopenProcs, fileObj);
4811
4812 if (PyDict_Size(_PyPopenProcs) == 0)
4813 {
4814 Py_DECREF(_PyPopenProcs);
4815 _PyPopenProcs = NULL;
4816 }
4817
4818 } /* if object retrieval ok */
4819
4820 Py_XDECREF(fileObj);
4821 } /* if _PyPopenProcs */
4822
4823#ifdef WITH_THREAD
Andrew MacIntyrebaf25b02003-04-21 14:22:36 +00004824 PyGILState_Release(state);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004825#endif
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004826 return result;
4827}
4828
4829#endif /* PYCC_??? */
4830
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00004831#elif defined(MS_WINDOWS)
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004832
4833/*
4834 * Portable 'popen' replacement for Win32.
4835 *
4836 * Written by Bill Tutt <billtut@microsoft.com>. Minor tweaks
4837 * and 2.0 integration by Fredrik Lundh <fredrik@pythonware.com>
Mark Hammondb37a3732000-08-14 04:47:33 +00004838 * Return code handling by David Bolen <db3l@fitlinxx.com>.
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004839 */
4840
4841#include <malloc.h>
4842#include <io.h>
4843#include <fcntl.h>
4844
4845/* These tell _PyPopen() wether to return 1, 2, or 3 file objects. */
4846#define POPEN_1 1
4847#define POPEN_2 2
4848#define POPEN_3 3
4849#define POPEN_4 4
4850
4851static PyObject *_PyPopen(char *, int, int);
Fredrik Lundh56055a42000-07-23 19:47:12 +00004852static int _PyPclose(FILE *file);
4853
4854/*
4855 * Internal dictionary mapping popen* file pointers to process handles,
Mark Hammondb37a3732000-08-14 04:47:33 +00004856 * for use when retrieving the process exit code. See _PyPclose() below
4857 * for more information on this dictionary's use.
Fredrik Lundh56055a42000-07-23 19:47:12 +00004858 */
4859static PyObject *_PyPopenProcs = NULL;
4860
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004861
4862/* popen that works from a GUI.
4863 *
4864 * The result of this function is a pipe (file) connected to the
4865 * processes stdin or stdout, depending on the requested mode.
4866 */
4867
4868static PyObject *
4869posix_popen(PyObject *self, PyObject *args)
4870{
Raymond Hettingerb5cb6652003-09-01 22:25:41 +00004871 PyObject *f;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004872 int tm = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00004873
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004874 char *cmdstring;
4875 char *mode = "r";
Fredrik Lundhbb7eeff2000-07-09 17:59:32 +00004876 int bufsize = -1;
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004877 if (!PyArg_ParseTuple(args, "s|si:popen", &cmdstring, &mode, &bufsize))
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004878 return NULL;
4879
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004880 if (*mode == 'r')
4881 tm = _O_RDONLY;
4882 else if (*mode != 'w') {
Fred Drake661ea262000-10-24 19:57:45 +00004883 PyErr_SetString(PyExc_ValueError, "popen() arg 2 must be 'r' or 'w'");
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004884 return NULL;
4885 } else
4886 tm = _O_WRONLY;
Tim Peters5aa91602002-01-30 05:46:57 +00004887
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004888 if (bufsize != -1) {
Fred Drake661ea262000-10-24 19:57:45 +00004889 PyErr_SetString(PyExc_ValueError, "popen() arg 3 must be -1");
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004890 return NULL;
4891 }
4892
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004893 if (*(mode+1) == 't')
Fredrik Lundhbb7eeff2000-07-09 17:59:32 +00004894 f = _PyPopen(cmdstring, tm | _O_TEXT, POPEN_1);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004895 else if (*(mode+1) == 'b')
Fredrik Lundhbb7eeff2000-07-09 17:59:32 +00004896 f = _PyPopen(cmdstring, tm | _O_BINARY, POPEN_1);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004897 else
4898 f = _PyPopen(cmdstring, tm | _O_TEXT, POPEN_1);
4899
4900 return f;
4901}
4902
4903/* Variation on win32pipe.popen
4904 *
4905 * The result of this function is a pipe (file) connected to the
4906 * process's stdin, and a pipe connected to the process's stdout.
4907 */
4908
4909static PyObject *
4910win32_popen2(PyObject *self, PyObject *args)
4911{
4912 PyObject *f;
4913 int tm=0;
Tim Peters5aa91602002-01-30 05:46:57 +00004914
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004915 char *cmdstring;
4916 char *mode = "t";
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004917 int bufsize = -1;
4918 if (!PyArg_ParseTuple(args, "s|si:popen2", &cmdstring, &mode, &bufsize))
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004919 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00004920
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004921 if (*mode == 't')
4922 tm = _O_TEXT;
4923 else if (*mode != 'b') {
Fred Drake661ea262000-10-24 19:57:45 +00004924 PyErr_SetString(PyExc_ValueError, "popen2() arg 2 must be 't' or 'b'");
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004925 return NULL;
4926 } else
4927 tm = _O_BINARY;
Tim Peters5aa91602002-01-30 05:46:57 +00004928
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004929 if (bufsize != -1) {
Fred Drake661ea262000-10-24 19:57:45 +00004930 PyErr_SetString(PyExc_ValueError, "popen2() arg 3 must be -1");
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004931 return NULL;
4932 }
4933
4934 f = _PyPopen(cmdstring, tm, POPEN_2);
Tim Peters5aa91602002-01-30 05:46:57 +00004935
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004936 return f;
4937}
4938
4939/*
4940 * Variation on <om win32pipe.popen>
Fredrik Lundhbb7eeff2000-07-09 17:59:32 +00004941 *
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004942 * The result of this function is 3 pipes - the process's stdin,
4943 * stdout and stderr
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004944 */
4945
4946static PyObject *
4947win32_popen3(PyObject *self, PyObject *args)
4948{
4949 PyObject *f;
4950 int tm = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00004951
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004952 char *cmdstring;
4953 char *mode = "t";
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004954 int bufsize = -1;
4955 if (!PyArg_ParseTuple(args, "s|si:popen3", &cmdstring, &mode, &bufsize))
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004956 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00004957
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004958 if (*mode == 't')
4959 tm = _O_TEXT;
4960 else if (*mode != 'b') {
Fred Drake661ea262000-10-24 19:57:45 +00004961 PyErr_SetString(PyExc_ValueError, "popen3() arg 2 must be 't' or 'b'");
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004962 return NULL;
4963 } else
4964 tm = _O_BINARY;
Tim Peters5aa91602002-01-30 05:46:57 +00004965
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004966 if (bufsize != -1) {
Fred Drake661ea262000-10-24 19:57:45 +00004967 PyErr_SetString(PyExc_ValueError, "popen3() arg 3 must be -1");
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004968 return NULL;
4969 }
4970
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004971 f = _PyPopen(cmdstring, tm, POPEN_3);
Tim Peters5aa91602002-01-30 05:46:57 +00004972
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004973 return f;
4974}
4975
4976/*
4977 * Variation on win32pipe.popen
4978 *
Tim Peters5aa91602002-01-30 05:46:57 +00004979 * The result of this function is 2 pipes - the processes stdin,
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004980 * and stdout+stderr combined as a single pipe.
4981 */
4982
4983static PyObject *
4984win32_popen4(PyObject *self, PyObject *args)
4985{
4986 PyObject *f;
4987 int tm = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00004988
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004989 char *cmdstring;
4990 char *mode = "t";
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004991 int bufsize = -1;
4992 if (!PyArg_ParseTuple(args, "s|si:popen4", &cmdstring, &mode, &bufsize))
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004993 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00004994
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004995 if (*mode == 't')
4996 tm = _O_TEXT;
4997 else if (*mode != 'b') {
Fred Drake661ea262000-10-24 19:57:45 +00004998 PyErr_SetString(PyExc_ValueError, "popen4() arg 2 must be 't' or 'b'");
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004999 return NULL;
5000 } else
5001 tm = _O_BINARY;
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00005002
5003 if (bufsize != -1) {
Fred Drake661ea262000-10-24 19:57:45 +00005004 PyErr_SetString(PyExc_ValueError, "popen4() arg 3 must be -1");
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00005005 return NULL;
5006 }
5007
Fredrik Lundhbb7eeff2000-07-09 17:59:32 +00005008 f = _PyPopen(cmdstring, tm, POPEN_4);
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00005009
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005010 return f;
5011}
5012
Mark Hammond08501372001-01-31 07:30:29 +00005013static BOOL
Mark Hammondb37a3732000-08-14 04:47:33 +00005014_PyPopenCreateProcess(char *cmdstring,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005015 HANDLE hStdin,
5016 HANDLE hStdout,
Mark Hammondb37a3732000-08-14 04:47:33 +00005017 HANDLE hStderr,
5018 HANDLE *hProcess)
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005019{
5020 PROCESS_INFORMATION piProcInfo;
5021 STARTUPINFO siStartInfo;
Mark Hammondfe51c6d2002-08-02 02:27:13 +00005022 DWORD dwProcessFlags = 0; /* no NEW_CONSOLE by default for Ctrl+C handling */
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005023 char *s1,*s2, *s3 = " /c ";
Mark Hammond08501372001-01-31 07:30:29 +00005024 const char *szConsoleSpawn = "w9xpopen.exe";
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005025 int i;
Martin v. Löwis18e16552006-02-15 17:27:45 +00005026 Py_ssize_t x;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005027
5028 if (i = GetEnvironmentVariable("COMSPEC",NULL,0)) {
Tim Peters402d5982001-08-27 06:37:48 +00005029 char *comshell;
5030
Tim Peters92e4dd82002-10-05 01:47:34 +00005031 s1 = (char *)alloca(i);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005032 if (!(x = GetEnvironmentVariable("COMSPEC", s1, i)))
Martin v. Löwis18e16552006-02-15 17:27:45 +00005033 /* x < i, so x fits into an integer */
5034 return (int)x;
Tim Peters402d5982001-08-27 06:37:48 +00005035
5036 /* Explicitly check if we are using COMMAND.COM. If we are
5037 * then use the w9xpopen hack.
5038 */
5039 comshell = s1 + x;
5040 while (comshell >= s1 && *comshell != '\\')
5041 --comshell;
5042 ++comshell;
5043
5044 if (GetVersion() < 0x80000000 &&
5045 _stricmp(comshell, "command.com") != 0) {
5046 /* NT/2000 and not using command.com. */
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005047 x = i + strlen(s3) + strlen(cmdstring) + 1;
Tim Peters92e4dd82002-10-05 01:47:34 +00005048 s2 = (char *)alloca(x);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005049 ZeroMemory(s2, x);
Tim Peters75cdad52001-11-28 22:07:30 +00005050 PyOS_snprintf(s2, x, "%s%s%s", s1, s3, cmdstring);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005051 }
5052 else {
5053 /*
Tim Peters402d5982001-08-27 06:37:48 +00005054 * Oh gag, we're on Win9x or using COMMAND.COM. Use
5055 * the workaround listed in KB: Q150956
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005056 */
Mark Hammond08501372001-01-31 07:30:29 +00005057 char modulepath[_MAX_PATH];
5058 struct stat statinfo;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005059 GetModuleFileName(NULL, modulepath, sizeof(modulepath));
Martin v. Löwis26fd9602006-04-22 11:15:41 +00005060 for (x = i = 0; modulepath[i]; i++)
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00005061 if (modulepath[i] == SEP)
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005062 x = i+1;
5063 modulepath[x] = '\0';
Mark Hammond08501372001-01-31 07:30:29 +00005064 /* Create the full-name to w9xpopen, so we can test it exists */
Tim Peters5aa91602002-01-30 05:46:57 +00005065 strncat(modulepath,
5066 szConsoleSpawn,
Mark Hammond08501372001-01-31 07:30:29 +00005067 (sizeof(modulepath)/sizeof(modulepath[0]))
5068 -strlen(modulepath));
5069 if (stat(modulepath, &statinfo) != 0) {
Kristján Valur Jónsson17b8e972007-04-25 00:10:50 +00005070 size_t mplen = sizeof(modulepath)/sizeof(modulepath[0]);
Tim Peters5aa91602002-01-30 05:46:57 +00005071 /* Eeek - file-not-found - possibly an embedding
5072 situation - see if we can locate it in sys.prefix
Mark Hammond08501372001-01-31 07:30:29 +00005073 */
Tim Peters5aa91602002-01-30 05:46:57 +00005074 strncpy(modulepath,
5075 Py_GetExecPrefix(),
Kristján Valur Jónsson17b8e972007-04-25 00:10:50 +00005076 mplen);
5077 modulepath[mplen-1] = '\0';
Mark Hammond08501372001-01-31 07:30:29 +00005078 if (modulepath[strlen(modulepath)-1] != '\\')
5079 strcat(modulepath, "\\");
Tim Peters5aa91602002-01-30 05:46:57 +00005080 strncat(modulepath,
5081 szConsoleSpawn,
Kristján Valur Jónsson17b8e972007-04-25 00:10:50 +00005082 mplen-strlen(modulepath));
Mark Hammond08501372001-01-31 07:30:29 +00005083 /* No where else to look - raise an easily identifiable
5084 error, rather than leaving Windows to report
5085 "file not found" - as the user is probably blissfully
5086 unaware this shim EXE is used, and it will confuse them.
5087 (well, it confused me for a while ;-)
5088 */
5089 if (stat(modulepath, &statinfo) != 0) {
Tim Peters5aa91602002-01-30 05:46:57 +00005090 PyErr_Format(PyExc_RuntimeError,
Mark Hammond08501372001-01-31 07:30:29 +00005091 "Can not locate '%s' which is needed "
Tim Peters402d5982001-08-27 06:37:48 +00005092 "for popen to work with your shell "
5093 "or platform.",
Mark Hammond08501372001-01-31 07:30:29 +00005094 szConsoleSpawn);
5095 return FALSE;
5096 }
5097 }
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005098 x = i + strlen(s3) + strlen(cmdstring) + 1 +
Tim Peters5aa91602002-01-30 05:46:57 +00005099 strlen(modulepath) +
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005100 strlen(szConsoleSpawn) + 1;
Mark Hammond08501372001-01-31 07:30:29 +00005101
Tim Peters92e4dd82002-10-05 01:47:34 +00005102 s2 = (char *)alloca(x);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005103 ZeroMemory(s2, x);
Mark Hammonde7fefbf2002-04-03 01:47:00 +00005104 /* To maintain correct argument passing semantics,
5105 we pass the command-line as it stands, and allow
5106 quoting to be applied. w9xpopen.exe will then
5107 use its argv vector, and re-quote the necessary
5108 args for the ultimate child process.
5109 */
Tim Peters75cdad52001-11-28 22:07:30 +00005110 PyOS_snprintf(
5111 s2, x,
Mark Hammonde7fefbf2002-04-03 01:47:00 +00005112 "\"%s\" %s%s%s",
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005113 modulepath,
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005114 s1,
5115 s3,
5116 cmdstring);
Mark Hammondfe51c6d2002-08-02 02:27:13 +00005117 /* Not passing CREATE_NEW_CONSOLE has been known to
Tim Peters11b23062003-04-23 02:39:17 +00005118 cause random failures on win9x. Specifically a
Mark Hammondfe51c6d2002-08-02 02:27:13 +00005119 dialog:
5120 "Your program accessed mem currently in use at xxx"
5121 and a hopeful warning about the stability of your
5122 system.
Mark Dickinson3e4caeb2009-02-21 20:27:01 +00005123 Cost is Ctrl+C won't kill children, but anyone
Mark Hammondfe51c6d2002-08-02 02:27:13 +00005124 who cares can have a go!
5125 */
5126 dwProcessFlags |= CREATE_NEW_CONSOLE;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005127 }
5128 }
5129
5130 /* Could be an else here to try cmd.exe / command.com in the path
5131 Now we'll just error out.. */
Mark Hammond08501372001-01-31 07:30:29 +00005132 else {
Tim Peters402d5982001-08-27 06:37:48 +00005133 PyErr_SetString(PyExc_RuntimeError,
5134 "Cannot locate a COMSPEC environment variable to "
5135 "use as the shell");
Mark Hammond08501372001-01-31 07:30:29 +00005136 return FALSE;
5137 }
Tim Peters5aa91602002-01-30 05:46:57 +00005138
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005139 ZeroMemory(&siStartInfo, sizeof(STARTUPINFO));
5140 siStartInfo.cb = sizeof(STARTUPINFO);
5141 siStartInfo.dwFlags = STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW;
5142 siStartInfo.hStdInput = hStdin;
5143 siStartInfo.hStdOutput = hStdout;
5144 siStartInfo.hStdError = hStderr;
5145 siStartInfo.wShowWindow = SW_HIDE;
5146
5147 if (CreateProcess(NULL,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005148 s2,
5149 NULL,
5150 NULL,
5151 TRUE,
Mark Hammondfe51c6d2002-08-02 02:27:13 +00005152 dwProcessFlags,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005153 NULL,
5154 NULL,
5155 &siStartInfo,
5156 &piProcInfo) ) {
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005157 /* Close the handles now so anyone waiting is woken. */
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005158 CloseHandle(piProcInfo.hThread);
Fredrik Lundh56055a42000-07-23 19:47:12 +00005159
Mark Hammondb37a3732000-08-14 04:47:33 +00005160 /* Return process handle */
5161 *hProcess = piProcInfo.hProcess;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005162 return TRUE;
5163 }
Tim Peters402d5982001-08-27 06:37:48 +00005164 win32_error("CreateProcess", s2);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005165 return FALSE;
5166}
5167
5168/* The following code is based off of KB: Q190351 */
5169
5170static PyObject *
5171_PyPopen(char *cmdstring, int mode, int n)
5172{
5173 HANDLE hChildStdinRd, hChildStdinWr, hChildStdoutRd, hChildStdoutWr,
5174 hChildStderrRd, hChildStderrWr, hChildStdinWrDup, hChildStdoutRdDup,
Mark Hammondb37a3732000-08-14 04:47:33 +00005175 hChildStderrRdDup, hProcess; /* hChildStdoutWrDup; */
Tim Peters5aa91602002-01-30 05:46:57 +00005176
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005177 SECURITY_ATTRIBUTES saAttr;
5178 BOOL fSuccess;
5179 int fd1, fd2, fd3;
5180 FILE *f1, *f2, *f3;
Mark Hammondb37a3732000-08-14 04:47:33 +00005181 long file_count;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005182 PyObject *f;
5183
5184 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
5185 saAttr.bInheritHandle = TRUE;
5186 saAttr.lpSecurityDescriptor = NULL;
5187
5188 if (!CreatePipe(&hChildStdinRd, &hChildStdinWr, &saAttr, 0))
5189 return win32_error("CreatePipe", NULL);
5190
5191 /* Create new output read handle and the input write handle. Set
5192 * the inheritance properties to FALSE. Otherwise, the child inherits
Walter Dörwaldf0dfc7a2003-10-20 14:01:56 +00005193 * these handles; resulting in non-closeable handles to the pipes
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005194 * being created. */
5195 fSuccess = DuplicateHandle(GetCurrentProcess(), hChildStdinWr,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005196 GetCurrentProcess(), &hChildStdinWrDup, 0,
5197 FALSE,
5198 DUPLICATE_SAME_ACCESS);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005199 if (!fSuccess)
5200 return win32_error("DuplicateHandle", NULL);
5201
5202 /* Close the inheritable version of ChildStdin
5203 that we're using. */
5204 CloseHandle(hChildStdinWr);
5205
5206 if (!CreatePipe(&hChildStdoutRd, &hChildStdoutWr, &saAttr, 0))
5207 return win32_error("CreatePipe", NULL);
5208
5209 fSuccess = DuplicateHandle(GetCurrentProcess(), hChildStdoutRd,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005210 GetCurrentProcess(), &hChildStdoutRdDup, 0,
5211 FALSE, DUPLICATE_SAME_ACCESS);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005212 if (!fSuccess)
5213 return win32_error("DuplicateHandle", NULL);
5214
5215 /* Close the inheritable version of ChildStdout
5216 that we're using. */
5217 CloseHandle(hChildStdoutRd);
5218
5219 if (n != POPEN_4) {
5220 if (!CreatePipe(&hChildStderrRd, &hChildStderrWr, &saAttr, 0))
5221 return win32_error("CreatePipe", NULL);
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005222 fSuccess = DuplicateHandle(GetCurrentProcess(),
5223 hChildStderrRd,
5224 GetCurrentProcess(),
5225 &hChildStderrRdDup, 0,
5226 FALSE, DUPLICATE_SAME_ACCESS);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005227 if (!fSuccess)
5228 return win32_error("DuplicateHandle", NULL);
5229 /* Close the inheritable version of ChildStdErr that we're using. */
5230 CloseHandle(hChildStderrRd);
5231 }
Tim Peters5aa91602002-01-30 05:46:57 +00005232
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005233 switch (n) {
5234 case POPEN_1:
5235 switch (mode & (_O_RDONLY | _O_TEXT | _O_BINARY | _O_WRONLY)) {
5236 case _O_WRONLY | _O_TEXT:
5237 /* Case for writing to child Stdin in text mode. */
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005238 fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005239 f1 = _fdopen(fd1, "w");
Fredrik Lundh56055a42000-07-23 19:47:12 +00005240 f = PyFile_FromFile(f1, cmdstring, "w", _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005241 PyFile_SetBufSize(f, 0);
5242 /* We don't care about these pipes anymore, so close them. */
5243 CloseHandle(hChildStdoutRdDup);
5244 CloseHandle(hChildStderrRdDup);
5245 break;
5246
5247 case _O_RDONLY | _O_TEXT:
5248 /* Case for reading from child Stdout in text mode. */
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005249 fd1 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005250 f1 = _fdopen(fd1, "r");
Fredrik Lundh56055a42000-07-23 19:47:12 +00005251 f = PyFile_FromFile(f1, cmdstring, "r", _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005252 PyFile_SetBufSize(f, 0);
5253 /* We don't care about these pipes anymore, so close them. */
5254 CloseHandle(hChildStdinWrDup);
5255 CloseHandle(hChildStderrRdDup);
5256 break;
5257
5258 case _O_RDONLY | _O_BINARY:
5259 /* Case for readinig from child Stdout in binary mode. */
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005260 fd1 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005261 f1 = _fdopen(fd1, "rb");
Fredrik Lundh56055a42000-07-23 19:47:12 +00005262 f = PyFile_FromFile(f1, cmdstring, "rb", _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005263 PyFile_SetBufSize(f, 0);
5264 /* We don't care about these pipes anymore, so close them. */
5265 CloseHandle(hChildStdinWrDup);
5266 CloseHandle(hChildStderrRdDup);
5267 break;
5268
5269 case _O_WRONLY | _O_BINARY:
5270 /* Case for writing to child Stdin in binary mode. */
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005271 fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005272 f1 = _fdopen(fd1, "wb");
Fredrik Lundh56055a42000-07-23 19:47:12 +00005273 f = PyFile_FromFile(f1, cmdstring, "wb", _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005274 PyFile_SetBufSize(f, 0);
5275 /* We don't care about these pipes anymore, so close them. */
5276 CloseHandle(hChildStdoutRdDup);
5277 CloseHandle(hChildStderrRdDup);
5278 break;
5279 }
Mark Hammondb37a3732000-08-14 04:47:33 +00005280 file_count = 1;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005281 break;
Tim Peters5aa91602002-01-30 05:46:57 +00005282
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005283 case POPEN_2:
5284 case POPEN_4:
5285 {
5286 char *m1, *m2;
5287 PyObject *p1, *p2;
Tim Peters5aa91602002-01-30 05:46:57 +00005288
Tim Peters7dca21e2002-08-19 00:42:29 +00005289 if (mode & _O_TEXT) {
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005290 m1 = "r";
5291 m2 = "w";
5292 } else {
5293 m1 = "rb";
5294 m2 = "wb";
5295 }
5296
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005297 fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005298 f1 = _fdopen(fd1, m2);
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005299 fd2 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005300 f2 = _fdopen(fd2, m1);
Fredrik Lundh56055a42000-07-23 19:47:12 +00005301 p1 = PyFile_FromFile(f1, cmdstring, m2, _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005302 PyFile_SetBufSize(p1, 0);
Mark Hammondb37a3732000-08-14 04:47:33 +00005303 p2 = PyFile_FromFile(f2, cmdstring, m1, _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005304 PyFile_SetBufSize(p2, 0);
5305
5306 if (n != 4)
5307 CloseHandle(hChildStderrRdDup);
5308
Raymond Hettinger8ae46892003-10-12 19:09:37 +00005309 f = PyTuple_Pack(2,p1,p2);
Mark Hammond64aae662001-01-31 05:38:47 +00005310 Py_XDECREF(p1);
5311 Py_XDECREF(p2);
Mark Hammondb37a3732000-08-14 04:47:33 +00005312 file_count = 2;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005313 break;
5314 }
Tim Peters5aa91602002-01-30 05:46:57 +00005315
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005316 case POPEN_3:
5317 {
5318 char *m1, *m2;
5319 PyObject *p1, *p2, *p3;
Tim Peters5aa91602002-01-30 05:46:57 +00005320
Tim Peters7dca21e2002-08-19 00:42:29 +00005321 if (mode & _O_TEXT) {
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005322 m1 = "r";
5323 m2 = "w";
5324 } else {
5325 m1 = "rb";
5326 m2 = "wb";
5327 }
5328
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005329 fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005330 f1 = _fdopen(fd1, m2);
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005331 fd2 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005332 f2 = _fdopen(fd2, m1);
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005333 fd3 = _open_osfhandle((Py_intptr_t)hChildStderrRdDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005334 f3 = _fdopen(fd3, m1);
Fredrik Lundh56055a42000-07-23 19:47:12 +00005335 p1 = PyFile_FromFile(f1, cmdstring, m2, _PyPclose);
Mark Hammondb37a3732000-08-14 04:47:33 +00005336 p2 = PyFile_FromFile(f2, cmdstring, m1, _PyPclose);
5337 p3 = PyFile_FromFile(f3, cmdstring, m1, _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005338 PyFile_SetBufSize(p1, 0);
5339 PyFile_SetBufSize(p2, 0);
5340 PyFile_SetBufSize(p3, 0);
Raymond Hettinger8ae46892003-10-12 19:09:37 +00005341 f = PyTuple_Pack(3,p1,p2,p3);
Mark Hammond64aae662001-01-31 05:38:47 +00005342 Py_XDECREF(p1);
5343 Py_XDECREF(p2);
5344 Py_XDECREF(p3);
Mark Hammondb37a3732000-08-14 04:47:33 +00005345 file_count = 3;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005346 break;
5347 }
5348 }
5349
5350 if (n == POPEN_4) {
5351 if (!_PyPopenCreateProcess(cmdstring,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005352 hChildStdinRd,
5353 hChildStdoutWr,
Mark Hammondb37a3732000-08-14 04:47:33 +00005354 hChildStdoutWr,
5355 &hProcess))
Mark Hammond08501372001-01-31 07:30:29 +00005356 return NULL;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005357 }
5358 else {
5359 if (!_PyPopenCreateProcess(cmdstring,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005360 hChildStdinRd,
5361 hChildStdoutWr,
Mark Hammondb37a3732000-08-14 04:47:33 +00005362 hChildStderrWr,
5363 &hProcess))
Mark Hammond08501372001-01-31 07:30:29 +00005364 return NULL;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005365 }
5366
Mark Hammondb37a3732000-08-14 04:47:33 +00005367 /*
5368 * Insert the files we've created into the process dictionary
5369 * all referencing the list with the process handle and the
5370 * initial number of files (see description below in _PyPclose).
5371 * Since if _PyPclose later tried to wait on a process when all
5372 * handles weren't closed, it could create a deadlock with the
5373 * child, we spend some energy here to try to ensure that we
5374 * either insert all file handles into the dictionary or none
5375 * at all. It's a little clumsy with the various popen modes
5376 * and variable number of files involved.
5377 */
5378 if (!_PyPopenProcs) {
5379 _PyPopenProcs = PyDict_New();
5380 }
5381
5382 if (_PyPopenProcs) {
5383 PyObject *procObj, *hProcessObj, *intObj, *fileObj[3];
5384 int ins_rc[3];
5385
5386 fileObj[0] = fileObj[1] = fileObj[2] = NULL;
5387 ins_rc[0] = ins_rc[1] = ins_rc[2] = 0;
5388
5389 procObj = PyList_New(2);
5390 hProcessObj = PyLong_FromVoidPtr(hProcess);
5391 intObj = PyInt_FromLong(file_count);
5392
5393 if (procObj && hProcessObj && intObj) {
5394 PyList_SetItem(procObj,0,hProcessObj);
5395 PyList_SetItem(procObj,1,intObj);
5396
5397 fileObj[0] = PyLong_FromVoidPtr(f1);
5398 if (fileObj[0]) {
5399 ins_rc[0] = PyDict_SetItem(_PyPopenProcs,
5400 fileObj[0],
5401 procObj);
5402 }
5403 if (file_count >= 2) {
5404 fileObj[1] = PyLong_FromVoidPtr(f2);
5405 if (fileObj[1]) {
5406 ins_rc[1] = PyDict_SetItem(_PyPopenProcs,
5407 fileObj[1],
5408 procObj);
5409 }
5410 }
5411 if (file_count >= 3) {
5412 fileObj[2] = PyLong_FromVoidPtr(f3);
5413 if (fileObj[2]) {
5414 ins_rc[2] = PyDict_SetItem(_PyPopenProcs,
5415 fileObj[2],
5416 procObj);
5417 }
5418 }
5419
5420 if (ins_rc[0] < 0 || !fileObj[0] ||
5421 ins_rc[1] < 0 || (file_count > 1 && !fileObj[1]) ||
5422 ins_rc[2] < 0 || (file_count > 2 && !fileObj[2])) {
5423 /* Something failed - remove any dictionary
5424 * entries that did make it.
5425 */
5426 if (!ins_rc[0] && fileObj[0]) {
5427 PyDict_DelItem(_PyPopenProcs,
5428 fileObj[0]);
5429 }
5430 if (!ins_rc[1] && fileObj[1]) {
5431 PyDict_DelItem(_PyPopenProcs,
5432 fileObj[1]);
5433 }
5434 if (!ins_rc[2] && fileObj[2]) {
5435 PyDict_DelItem(_PyPopenProcs,
5436 fileObj[2]);
5437 }
5438 }
5439 }
Tim Peters5aa91602002-01-30 05:46:57 +00005440
Mark Hammondb37a3732000-08-14 04:47:33 +00005441 /*
5442 * Clean up our localized references for the dictionary keys
5443 * and value since PyDict_SetItem will Py_INCREF any copies
5444 * that got placed in the dictionary.
5445 */
5446 Py_XDECREF(procObj);
5447 Py_XDECREF(fileObj[0]);
5448 Py_XDECREF(fileObj[1]);
5449 Py_XDECREF(fileObj[2]);
5450 }
5451
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005452 /* Child is launched. Close the parents copy of those pipe
5453 * handles that only the child should have open. You need to
5454 * make sure that no handles to the write end of the output pipe
5455 * are maintained in this process or else the pipe will not close
5456 * when the child process exits and the ReadFile will hang. */
5457
5458 if (!CloseHandle(hChildStdinRd))
5459 return win32_error("CloseHandle", NULL);
Tim Peters5aa91602002-01-30 05:46:57 +00005460
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005461 if (!CloseHandle(hChildStdoutWr))
5462 return win32_error("CloseHandle", NULL);
Tim Peters5aa91602002-01-30 05:46:57 +00005463
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005464 if ((n != 4) && (!CloseHandle(hChildStderrWr)))
5465 return win32_error("CloseHandle", NULL);
5466
5467 return f;
5468}
Fredrik Lundh56055a42000-07-23 19:47:12 +00005469
5470/*
5471 * Wrapper for fclose() to use for popen* files, so we can retrieve the
5472 * exit code for the child process and return as a result of the close.
Mark Hammondb37a3732000-08-14 04:47:33 +00005473 *
5474 * This function uses the _PyPopenProcs dictionary in order to map the
5475 * input file pointer to information about the process that was
5476 * originally created by the popen* call that created the file pointer.
5477 * The dictionary uses the file pointer as a key (with one entry
5478 * inserted for each file returned by the original popen* call) and a
5479 * single list object as the value for all files from a single call.
5480 * The list object contains the Win32 process handle at [0], and a file
5481 * count at [1], which is initialized to the total number of file
5482 * handles using that list.
5483 *
5484 * This function closes whichever handle it is passed, and decrements
5485 * the file count in the dictionary for the process handle pointed to
5486 * by this file. On the last close (when the file count reaches zero),
5487 * this function will wait for the child process and then return its
5488 * exit code as the result of the close() operation. This permits the
5489 * files to be closed in any order - it is always the close() of the
5490 * final handle that will return the exit code.
Mark Hammond8d98d2c2003-04-19 15:41:53 +00005491 *
5492 * NOTE: This function is currently called with the GIL released.
5493 * hence we use the GILState API to manage our state.
Fredrik Lundh56055a42000-07-23 19:47:12 +00005494 */
Tim Peters736aa322000-09-01 06:51:24 +00005495
Fredrik Lundh56055a42000-07-23 19:47:12 +00005496static int _PyPclose(FILE *file)
5497{
Fredrik Lundh20318932000-07-26 17:29:12 +00005498 int result;
Fredrik Lundh56055a42000-07-23 19:47:12 +00005499 DWORD exit_code;
5500 HANDLE hProcess;
Mark Hammondb37a3732000-08-14 04:47:33 +00005501 PyObject *procObj, *hProcessObj, *intObj, *fileObj;
5502 long file_count;
Tim Peters736aa322000-09-01 06:51:24 +00005503#ifdef WITH_THREAD
Mark Hammond8d98d2c2003-04-19 15:41:53 +00005504 PyGILState_STATE state;
Tim Peters736aa322000-09-01 06:51:24 +00005505#endif
5506
Fredrik Lundh20318932000-07-26 17:29:12 +00005507 /* Close the file handle first, to ensure it can't block the
Mark Hammondb37a3732000-08-14 04:47:33 +00005508 * child from exiting if it's the last handle.
Fredrik Lundh20318932000-07-26 17:29:12 +00005509 */
5510 result = fclose(file);
Tim Peters736aa322000-09-01 06:51:24 +00005511#ifdef WITH_THREAD
Mark Hammond8d98d2c2003-04-19 15:41:53 +00005512 state = PyGILState_Ensure();
Tim Peters736aa322000-09-01 06:51:24 +00005513#endif
Fredrik Lundh56055a42000-07-23 19:47:12 +00005514 if (_PyPopenProcs) {
Mark Hammondb37a3732000-08-14 04:47:33 +00005515 if ((fileObj = PyLong_FromVoidPtr(file)) != NULL &&
5516 (procObj = PyDict_GetItem(_PyPopenProcs,
5517 fileObj)) != NULL &&
5518 (hProcessObj = PyList_GetItem(procObj,0)) != NULL &&
5519 (intObj = PyList_GetItem(procObj,1)) != NULL) {
5520
5521 hProcess = PyLong_AsVoidPtr(hProcessObj);
5522 file_count = PyInt_AsLong(intObj);
5523
5524 if (file_count > 1) {
5525 /* Still other files referencing process */
5526 file_count--;
5527 PyList_SetItem(procObj,1,
5528 PyInt_FromLong(file_count));
5529 } else {
5530 /* Last file for this process */
Fredrik Lundh20318932000-07-26 17:29:12 +00005531 if (result != EOF &&
5532 WaitForSingleObject(hProcess, INFINITE) != WAIT_FAILED &&
5533 GetExitCodeProcess(hProcess, &exit_code)) {
Fredrik Lundh56055a42000-07-23 19:47:12 +00005534 /* Possible truncation here in 16-bit environments, but
5535 * real exit codes are just the lower byte in any event.
5536 */
5537 result = exit_code;
Fredrik Lundh56055a42000-07-23 19:47:12 +00005538 } else {
Fredrik Lundh20318932000-07-26 17:29:12 +00005539 /* Indicate failure - this will cause the file object
5540 * to raise an I/O error and translate the last Win32
5541 * error code from errno. We do have a problem with
5542 * last errors that overlap the normal errno table,
5543 * but that's a consistent problem with the file object.
Fredrik Lundh56055a42000-07-23 19:47:12 +00005544 */
Fredrik Lundh20318932000-07-26 17:29:12 +00005545 if (result != EOF) {
5546 /* If the error wasn't from the fclose(), then
5547 * set errno for the file object error handling.
5548 */
5549 errno = GetLastError();
5550 }
5551 result = -1;
Fredrik Lundh56055a42000-07-23 19:47:12 +00005552 }
5553
5554 /* Free up the native handle at this point */
5555 CloseHandle(hProcess);
Mark Hammondb37a3732000-08-14 04:47:33 +00005556 }
Fredrik Lundh56055a42000-07-23 19:47:12 +00005557
Mark Hammondb37a3732000-08-14 04:47:33 +00005558 /* Remove this file pointer from dictionary */
5559 PyDict_DelItem(_PyPopenProcs, fileObj);
5560
5561 if (PyDict_Size(_PyPopenProcs) == 0) {
5562 Py_DECREF(_PyPopenProcs);
5563 _PyPopenProcs = NULL;
5564 }
5565
5566 } /* if object retrieval ok */
5567
5568 Py_XDECREF(fileObj);
Fredrik Lundh56055a42000-07-23 19:47:12 +00005569 } /* if _PyPopenProcs */
5570
Tim Peters736aa322000-09-01 06:51:24 +00005571#ifdef WITH_THREAD
Mark Hammond8d98d2c2003-04-19 15:41:53 +00005572 PyGILState_Release(state);
Tim Peters736aa322000-09-01 06:51:24 +00005573#endif
Fredrik Lundh56055a42000-07-23 19:47:12 +00005574 return result;
5575}
Tim Peters9acdd3a2000-09-01 19:26:36 +00005576
5577#else /* which OS? */
Barry Warsaw53699e91996-12-10 23:23:01 +00005578static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005579posix_popen(PyObject *self, PyObject *args)
Guido van Rossum3b066191991-06-04 19:40:25 +00005580{
Guido van Rossuma6a1e531995-01-10 15:36:38 +00005581 char *name;
5582 char *mode = "r";
5583 int bufsize = -1;
Guido van Rossum3b066191991-06-04 19:40:25 +00005584 FILE *fp;
Barry Warsaw53699e91996-12-10 23:23:01 +00005585 PyObject *f;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00005586 if (!PyArg_ParseTuple(args, "s|si:popen", &name, &mode, &bufsize))
Guido van Rossum3b066191991-06-04 19:40:25 +00005587 return NULL;
Martin v. Löwis9ad853b2003-10-31 10:01:53 +00005588 /* Strip mode of binary or text modifiers */
5589 if (strcmp(mode, "rb") == 0 || strcmp(mode, "rt") == 0)
5590 mode = "r";
5591 else if (strcmp(mode, "wb") == 0 || strcmp(mode, "wt") == 0)
5592 mode = "w";
Barry Warsaw53699e91996-12-10 23:23:01 +00005593 Py_BEGIN_ALLOW_THREADS
Guido van Rossumef0a00e1992-01-27 16:51:30 +00005594 fp = popen(name, mode);
Barry Warsaw53699e91996-12-10 23:23:01 +00005595 Py_END_ALLOW_THREADS
Guido van Rossum3b066191991-06-04 19:40:25 +00005596 if (fp == NULL)
5597 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00005598 f = PyFile_FromFile(fp, name, mode, pclose);
Guido van Rossuma6a1e531995-01-10 15:36:38 +00005599 if (f != NULL)
Barry Warsaw53699e91996-12-10 23:23:01 +00005600 PyFile_SetBufSize(f, bufsize);
Guido van Rossuma6a1e531995-01-10 15:36:38 +00005601 return f;
Guido van Rossum3b066191991-06-04 19:40:25 +00005602}
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00005603
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00005604#endif /* PYOS_??? */
Guido van Rossuma4916fa1996-05-23 22:58:55 +00005605#endif /* HAVE_POPEN */
Guido van Rossum3b066191991-06-04 19:40:25 +00005606
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005607
Guido van Rossumb6775db1994-08-01 11:34:53 +00005608#ifdef HAVE_SETUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005609PyDoc_STRVAR(posix_setuid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005610"setuid(uid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005611Set the current process's user id.");
5612
Barry Warsaw53699e91996-12-10 23:23:01 +00005613static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005614posix_setuid(PyObject *self, PyObject *args)
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005615{
Gregory P. Smith6d307932009-04-05 23:43:58 +00005616 long uid_arg;
5617 uid_t uid;
5618 if (!PyArg_ParseTuple(args, "l:setuid", &uid_arg))
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005619 return NULL;
Gregory P. Smith6d307932009-04-05 23:43:58 +00005620 uid = uid_arg;
5621 if (uid != uid_arg) {
5622 PyErr_SetString(PyExc_OverflowError, "user id too big");
5623 return NULL;
5624 }
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005625 if (setuid(uid) < 0)
5626 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00005627 Py_INCREF(Py_None);
5628 return Py_None;
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005629}
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00005630#endif /* HAVE_SETUID */
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005631
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005632
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005633#ifdef HAVE_SETEUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005634PyDoc_STRVAR(posix_seteuid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005635"seteuid(uid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005636Set the current process's effective user id.");
5637
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005638static PyObject *
5639posix_seteuid (PyObject *self, PyObject *args)
5640{
Gregory P. Smith6d307932009-04-05 23:43:58 +00005641 long euid_arg;
5642 uid_t euid;
5643 if (!PyArg_ParseTuple(args, "l", &euid_arg))
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005644 return NULL;
Gregory P. Smith6d307932009-04-05 23:43:58 +00005645 euid = euid_arg;
5646 if (euid != euid_arg) {
5647 PyErr_SetString(PyExc_OverflowError, "user id too big");
5648 return NULL;
5649 }
5650 if (seteuid(euid) < 0) {
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005651 return posix_error();
5652 } else {
5653 Py_INCREF(Py_None);
5654 return Py_None;
5655 }
5656}
5657#endif /* HAVE_SETEUID */
5658
5659#ifdef HAVE_SETEGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005660PyDoc_STRVAR(posix_setegid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005661"setegid(gid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005662Set the current process's effective group id.");
5663
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005664static PyObject *
5665posix_setegid (PyObject *self, PyObject *args)
5666{
Gregory P. Smith6d307932009-04-05 23:43:58 +00005667 long egid_arg;
5668 gid_t egid;
5669 if (!PyArg_ParseTuple(args, "l", &egid_arg))
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005670 return NULL;
Gregory P. Smith6d307932009-04-05 23:43:58 +00005671 egid = egid_arg;
5672 if (egid != egid_arg) {
5673 PyErr_SetString(PyExc_OverflowError, "group id too big");
5674 return NULL;
5675 }
5676 if (setegid(egid) < 0) {
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005677 return posix_error();
5678 } else {
5679 Py_INCREF(Py_None);
5680 return Py_None;
5681 }
5682}
5683#endif /* HAVE_SETEGID */
5684
5685#ifdef HAVE_SETREUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005686PyDoc_STRVAR(posix_setreuid__doc__,
Neal Norwitz94f1d712004-02-16 01:26:34 +00005687"setreuid(ruid, euid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005688Set the current process's real and effective user ids.");
5689
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005690static PyObject *
5691posix_setreuid (PyObject *self, PyObject *args)
5692{
Gregory P. Smith6d307932009-04-05 23:43:58 +00005693 long ruid_arg, euid_arg;
5694 uid_t ruid, euid;
5695 if (!PyArg_ParseTuple(args, "ll", &ruid_arg, &euid_arg))
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005696 return NULL;
Gregory P. Smith6d307932009-04-05 23:43:58 +00005697 ruid = ruid_arg;
5698 euid = euid_arg;
5699 if (euid != euid_arg || ruid != ruid_arg) {
5700 PyErr_SetString(PyExc_OverflowError, "user id too big");
5701 return NULL;
5702 }
5703 if (setreuid(ruid, euid) < 0) {
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005704 return posix_error();
5705 } else {
5706 Py_INCREF(Py_None);
5707 return Py_None;
5708 }
5709}
5710#endif /* HAVE_SETREUID */
5711
5712#ifdef HAVE_SETREGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005713PyDoc_STRVAR(posix_setregid__doc__,
Neal Norwitz94f1d712004-02-16 01:26:34 +00005714"setregid(rgid, egid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005715Set the current process's real and effective group ids.");
5716
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005717static PyObject *
5718posix_setregid (PyObject *self, PyObject *args)
5719{
Gregory P. Smith6d307932009-04-05 23:43:58 +00005720 long rgid_arg, egid_arg;
5721 gid_t rgid, egid;
5722 if (!PyArg_ParseTuple(args, "ll", &rgid_arg, &egid_arg))
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005723 return NULL;
Gregory P. Smith6d307932009-04-05 23:43:58 +00005724 rgid = rgid_arg;
5725 egid = egid_arg;
5726 if (egid != egid_arg || rgid != rgid_arg) {
5727 PyErr_SetString(PyExc_OverflowError, "group id too big");
5728 return NULL;
5729 }
5730 if (setregid(rgid, egid) < 0) {
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005731 return posix_error();
5732 } else {
5733 Py_INCREF(Py_None);
5734 return Py_None;
5735 }
5736}
5737#endif /* HAVE_SETREGID */
5738
Guido van Rossumb6775db1994-08-01 11:34:53 +00005739#ifdef HAVE_SETGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005740PyDoc_STRVAR(posix_setgid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005741"setgid(gid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005742Set the current process's group id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005743
Barry Warsaw53699e91996-12-10 23:23:01 +00005744static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005745posix_setgid(PyObject *self, PyObject *args)
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005746{
Gregory P. Smith6d307932009-04-05 23:43:58 +00005747 long gid_arg;
5748 gid_t gid;
5749 if (!PyArg_ParseTuple(args, "l:setgid", &gid_arg))
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005750 return NULL;
Gregory P. Smith6d307932009-04-05 23:43:58 +00005751 gid = gid_arg;
5752 if (gid != gid_arg) {
5753 PyErr_SetString(PyExc_OverflowError, "group id too big");
5754 return NULL;
5755 }
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005756 if (setgid(gid) < 0)
5757 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00005758 Py_INCREF(Py_None);
5759 return Py_None;
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005760}
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00005761#endif /* HAVE_SETGID */
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005762
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005763#ifdef HAVE_SETGROUPS
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005764PyDoc_STRVAR(posix_setgroups__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005765"setgroups(list)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005766Set the groups of the current process to list.");
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005767
5768static PyObject *
Georg Brandl96a8c392006-05-29 21:04:52 +00005769posix_setgroups(PyObject *self, PyObject *groups)
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005770{
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005771 int i, len;
5772 gid_t grouplist[MAX_GROUPS];
Tim Peters5aa91602002-01-30 05:46:57 +00005773
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005774 if (!PySequence_Check(groups)) {
5775 PyErr_SetString(PyExc_TypeError, "setgroups argument must be a sequence");
5776 return NULL;
5777 }
5778 len = PySequence_Size(groups);
5779 if (len > MAX_GROUPS) {
5780 PyErr_SetString(PyExc_ValueError, "too many groups");
5781 return NULL;
5782 }
5783 for(i = 0; i < len; i++) {
5784 PyObject *elem;
5785 elem = PySequence_GetItem(groups, i);
5786 if (!elem)
5787 return NULL;
5788 if (!PyInt_Check(elem)) {
Georg Brandla13c2442005-11-22 19:30:31 +00005789 if (!PyLong_Check(elem)) {
5790 PyErr_SetString(PyExc_TypeError,
5791 "groups must be integers");
5792 Py_DECREF(elem);
5793 return NULL;
5794 } else {
5795 unsigned long x = PyLong_AsUnsignedLong(elem);
5796 if (PyErr_Occurred()) {
5797 PyErr_SetString(PyExc_TypeError,
5798 "group id too big");
5799 Py_DECREF(elem);
5800 return NULL;
5801 }
5802 grouplist[i] = x;
Gregory P. Smith6d307932009-04-05 23:43:58 +00005803 /* read back to see if it fits in gid_t */
Georg Brandla13c2442005-11-22 19:30:31 +00005804 if (grouplist[i] != x) {
5805 PyErr_SetString(PyExc_TypeError,
5806 "group id too big");
5807 Py_DECREF(elem);
5808 return NULL;
5809 }
5810 }
5811 } else {
5812 long x = PyInt_AsLong(elem);
5813 grouplist[i] = x;
5814 if (grouplist[i] != x) {
5815 PyErr_SetString(PyExc_TypeError,
5816 "group id too big");
5817 Py_DECREF(elem);
5818 return NULL;
5819 }
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005820 }
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005821 Py_DECREF(elem);
5822 }
5823
5824 if (setgroups(len, grouplist) < 0)
5825 return posix_error();
5826 Py_INCREF(Py_None);
5827 return Py_None;
5828}
5829#endif /* HAVE_SETGROUPS */
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005830
Neal Norwitz6c2f9132006-03-20 07:25:26 +00005831#if defined(HAVE_WAIT3) || defined(HAVE_WAIT4)
Neal Norwitz05a45592006-03-20 06:30:08 +00005832static PyObject *
Christian Heimesd491d712008-02-01 18:49:26 +00005833wait_helper(pid_t pid, int status, struct rusage *ru)
Neal Norwitz05a45592006-03-20 06:30:08 +00005834{
5835 PyObject *result;
5836 static PyObject *struct_rusage;
5837
5838 if (pid == -1)
5839 return posix_error();
5840
5841 if (struct_rusage == NULL) {
Christian Heimes000a0742008-01-03 22:16:32 +00005842 PyObject *m = PyImport_ImportModuleNoBlock("resource");
Neal Norwitz05a45592006-03-20 06:30:08 +00005843 if (m == NULL)
5844 return NULL;
5845 struct_rusage = PyObject_GetAttrString(m, "struct_rusage");
5846 Py_DECREF(m);
5847 if (struct_rusage == NULL)
5848 return NULL;
5849 }
5850
5851 /* XXX(nnorwitz): Copied (w/mods) from resource.c, there should be only one. */
5852 result = PyStructSequence_New((PyTypeObject*) struct_rusage);
5853 if (!result)
5854 return NULL;
5855
5856#ifndef doubletime
5857#define doubletime(TV) ((double)(TV).tv_sec + (TV).tv_usec * 0.000001)
5858#endif
5859
5860 PyStructSequence_SET_ITEM(result, 0,
5861 PyFloat_FromDouble(doubletime(ru->ru_utime)));
5862 PyStructSequence_SET_ITEM(result, 1,
5863 PyFloat_FromDouble(doubletime(ru->ru_stime)));
5864#define SET_INT(result, index, value)\
5865 PyStructSequence_SET_ITEM(result, index, PyInt_FromLong(value))
5866 SET_INT(result, 2, ru->ru_maxrss);
5867 SET_INT(result, 3, ru->ru_ixrss);
5868 SET_INT(result, 4, ru->ru_idrss);
5869 SET_INT(result, 5, ru->ru_isrss);
5870 SET_INT(result, 6, ru->ru_minflt);
5871 SET_INT(result, 7, ru->ru_majflt);
5872 SET_INT(result, 8, ru->ru_nswap);
5873 SET_INT(result, 9, ru->ru_inblock);
5874 SET_INT(result, 10, ru->ru_oublock);
5875 SET_INT(result, 11, ru->ru_msgsnd);
5876 SET_INT(result, 12, ru->ru_msgrcv);
5877 SET_INT(result, 13, ru->ru_nsignals);
5878 SET_INT(result, 14, ru->ru_nvcsw);
5879 SET_INT(result, 15, ru->ru_nivcsw);
5880#undef SET_INT
5881
5882 if (PyErr_Occurred()) {
5883 Py_DECREF(result);
5884 return NULL;
5885 }
5886
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00005887 return Py_BuildValue("NiN", PyLong_FromPid(pid), status, result);
Neal Norwitz05a45592006-03-20 06:30:08 +00005888}
Neal Norwitz6c2f9132006-03-20 07:25:26 +00005889#endif /* HAVE_WAIT3 || HAVE_WAIT4 */
Neal Norwitz05a45592006-03-20 06:30:08 +00005890
5891#ifdef HAVE_WAIT3
5892PyDoc_STRVAR(posix_wait3__doc__,
5893"wait3(options) -> (pid, status, rusage)\n\n\
5894Wait for completion of a child process.");
5895
5896static PyObject *
5897posix_wait3(PyObject *self, PyObject *args)
5898{
Christian Heimesd491d712008-02-01 18:49:26 +00005899 pid_t pid;
5900 int options;
Neal Norwitz05a45592006-03-20 06:30:08 +00005901 struct rusage ru;
Neal Norwitzd5a37542006-03-20 06:48:34 +00005902 WAIT_TYPE status;
5903 WAIT_STATUS_INT(status) = 0;
Neal Norwitz05a45592006-03-20 06:30:08 +00005904
5905 if (!PyArg_ParseTuple(args, "i:wait3", &options))
5906 return NULL;
5907
5908 Py_BEGIN_ALLOW_THREADS
5909 pid = wait3(&status, options, &ru);
5910 Py_END_ALLOW_THREADS
5911
Neal Norwitzd5a37542006-03-20 06:48:34 +00005912 return wait_helper(pid, WAIT_STATUS_INT(status), &ru);
Neal Norwitz05a45592006-03-20 06:30:08 +00005913}
5914#endif /* HAVE_WAIT3 */
5915
5916#ifdef HAVE_WAIT4
5917PyDoc_STRVAR(posix_wait4__doc__,
5918"wait4(pid, options) -> (pid, status, rusage)\n\n\
5919Wait for completion of a given child process.");
5920
5921static PyObject *
5922posix_wait4(PyObject *self, PyObject *args)
5923{
Christian Heimesd491d712008-02-01 18:49:26 +00005924 pid_t pid;
5925 int options;
Neal Norwitz05a45592006-03-20 06:30:08 +00005926 struct rusage ru;
Neal Norwitzd5a37542006-03-20 06:48:34 +00005927 WAIT_TYPE status;
5928 WAIT_STATUS_INT(status) = 0;
Neal Norwitz05a45592006-03-20 06:30:08 +00005929
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00005930 if (!PyArg_ParseTuple(args, PARSE_PID "i:wait4", &pid, &options))
Neal Norwitz05a45592006-03-20 06:30:08 +00005931 return NULL;
5932
5933 Py_BEGIN_ALLOW_THREADS
5934 pid = wait4(pid, &status, options, &ru);
5935 Py_END_ALLOW_THREADS
5936
Neal Norwitzd5a37542006-03-20 06:48:34 +00005937 return wait_helper(pid, WAIT_STATUS_INT(status), &ru);
Neal Norwitz05a45592006-03-20 06:30:08 +00005938}
5939#endif /* HAVE_WAIT4 */
5940
Guido van Rossumb6775db1994-08-01 11:34:53 +00005941#ifdef HAVE_WAITPID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005942PyDoc_STRVAR(posix_waitpid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005943"waitpid(pid, options) -> (pid, status)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005944Wait for completion of a given child process.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005945
Barry Warsaw53699e91996-12-10 23:23:01 +00005946static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005947posix_waitpid(PyObject *self, PyObject *args)
Guido van Rossum85e3b011991-06-03 12:42:10 +00005948{
Christian Heimesd491d712008-02-01 18:49:26 +00005949 pid_t pid;
5950 int options;
Neal Norwitzd5a37542006-03-20 06:48:34 +00005951 WAIT_TYPE status;
5952 WAIT_STATUS_INT(status) = 0;
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00005953
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00005954 if (!PyArg_ParseTuple(args, PARSE_PID "i:waitpid", &pid, &options))
Guido van Rossum21803b81992-08-09 12:55:27 +00005955 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00005956 Py_BEGIN_ALLOW_THREADS
Guido van Rossume6a3aa61999-02-01 16:15:30 +00005957 pid = waitpid(pid, &status, options);
Barry Warsaw53699e91996-12-10 23:23:01 +00005958 Py_END_ALLOW_THREADS
Guido van Rossum85e3b011991-06-03 12:42:10 +00005959 if (pid == -1)
5960 return posix_error();
Neal Norwitzd5a37542006-03-20 06:48:34 +00005961
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00005962 return Py_BuildValue("Ni", PyLong_FromPid(pid), WAIT_STATUS_INT(status));
Guido van Rossum21803b81992-08-09 12:55:27 +00005963}
5964
Tim Petersab034fa2002-02-01 11:27:43 +00005965#elif defined(HAVE_CWAIT)
5966
5967/* MS C has a variant of waitpid() that's usable for most purposes. */
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005968PyDoc_STRVAR(posix_waitpid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005969"waitpid(pid, options) -> (pid, status << 8)\n\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005970"Wait for completion of a given process. options is ignored on Windows.");
Tim Petersab034fa2002-02-01 11:27:43 +00005971
5972static PyObject *
5973posix_waitpid(PyObject *self, PyObject *args)
5974{
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005975 Py_intptr_t pid;
Martin v. Löwis18e16552006-02-15 17:27:45 +00005976 int status, options;
Tim Petersab034fa2002-02-01 11:27:43 +00005977
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00005978 if (!PyArg_ParseTuple(args, PARSE_PID "i:waitpid", &pid, &options))
Tim Petersab034fa2002-02-01 11:27:43 +00005979 return NULL;
5980 Py_BEGIN_ALLOW_THREADS
5981 pid = _cwait(&status, pid, options);
5982 Py_END_ALLOW_THREADS
5983 if (pid == -1)
5984 return posix_error();
Neal Norwitzd5a37542006-03-20 06:48:34 +00005985
5986 /* shift the status left a byte so this is more like the POSIX waitpid */
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00005987 return Py_BuildValue("Ni", PyLong_FromPid(pid), status << 8);
Tim Petersab034fa2002-02-01 11:27:43 +00005988}
5989#endif /* HAVE_WAITPID || HAVE_CWAIT */
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005990
Guido van Rossumad0ee831995-03-01 10:34:45 +00005991#ifdef HAVE_WAIT
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005992PyDoc_STRVAR(posix_wait__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005993"wait() -> (pid, status)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005994Wait for completion of a child process.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005995
Barry Warsaw53699e91996-12-10 23:23:01 +00005996static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00005997posix_wait(PyObject *self, PyObject *noargs)
Guido van Rossum21803b81992-08-09 12:55:27 +00005998{
Christian Heimesd491d712008-02-01 18:49:26 +00005999 pid_t pid;
Neal Norwitzd5a37542006-03-20 06:48:34 +00006000 WAIT_TYPE status;
6001 WAIT_STATUS_INT(status) = 0;
Neal Norwitze241ce82003-02-17 18:17:05 +00006002
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00006003 Py_BEGIN_ALLOW_THREADS
6004 pid = wait(&status);
Barry Warsaw53699e91996-12-10 23:23:01 +00006005 Py_END_ALLOW_THREADS
Guido van Rossum21803b81992-08-09 12:55:27 +00006006 if (pid == -1)
6007 return posix_error();
Neal Norwitzd5a37542006-03-20 06:48:34 +00006008
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00006009 return Py_BuildValue("Ni", PyLong_FromPid(pid), WAIT_STATUS_INT(status));
Guido van Rossum85e3b011991-06-03 12:42:10 +00006010}
Guido van Rossumad0ee831995-03-01 10:34:45 +00006011#endif
Guido van Rossum85e3b011991-06-03 12:42:10 +00006012
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006013
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006014PyDoc_STRVAR(posix_lstat__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006015"lstat(path) -> stat result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006016Like stat(path), but do not follow symbolic links.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006017
Barry Warsaw53699e91996-12-10 23:23:01 +00006018static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006019posix_lstat(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00006020{
Guido van Rossumb6775db1994-08-01 11:34:53 +00006021#ifdef HAVE_LSTAT
Mark Hammondc2e85bd2002-10-03 05:10:39 +00006022 return posix_do_stat(self, args, "et:lstat", lstat, NULL, NULL);
Guido van Rossumb6775db1994-08-01 11:34:53 +00006023#else /* !HAVE_LSTAT */
Mark Hammondc2e85bd2002-10-03 05:10:39 +00006024#ifdef MS_WINDOWS
Martin v. Löwis14694662006-02-03 12:54:16 +00006025 return posix_do_stat(self, args, "et:lstat", STAT, "U:lstat", win32_wstat);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00006026#else
6027 return posix_do_stat(self, args, "et:lstat", STAT, NULL, NULL);
6028#endif
Guido van Rossumb6775db1994-08-01 11:34:53 +00006029#endif /* !HAVE_LSTAT */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00006030}
6031
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006032
Guido van Rossumb6775db1994-08-01 11:34:53 +00006033#ifdef HAVE_READLINK
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006034PyDoc_STRVAR(posix_readlink__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006035"readlink(path) -> path\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006036Return a string representing the path to which the symbolic link points.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006037
Barry Warsaw53699e91996-12-10 23:23:01 +00006038static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006039posix_readlink(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00006040{
Ronald Oussoren10168f22006-10-22 10:45:18 +00006041 PyObject* v;
Guido van Rossumb6775db1994-08-01 11:34:53 +00006042 char buf[MAXPATHLEN];
Guido van Rossumef0a00e1992-01-27 16:51:30 +00006043 char *path;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00006044 int n;
Ronald Oussoren10168f22006-10-22 10:45:18 +00006045#ifdef Py_USING_UNICODE
6046 int arg_is_unicode = 0;
6047#endif
6048
6049 if (!PyArg_ParseTuple(args, "et:readlink",
6050 Py_FileSystemDefaultEncoding, &path))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00006051 return NULL;
Ronald Oussoren10168f22006-10-22 10:45:18 +00006052#ifdef Py_USING_UNICODE
6053 v = PySequence_GetItem(args, 0);
Neal Norwitz91a57212007-08-12 17:11:13 +00006054 if (v == NULL) {
6055 PyMem_Free(path);
6056 return NULL;
6057 }
Ronald Oussoren10168f22006-10-22 10:45:18 +00006058
6059 if (PyUnicode_Check(v)) {
6060 arg_is_unicode = 1;
6061 }
6062 Py_DECREF(v);
6063#endif
6064
Barry Warsaw53699e91996-12-10 23:23:01 +00006065 Py_BEGIN_ALLOW_THREADS
Guido van Rossum50e61dc1992-03-27 17:22:31 +00006066 n = readlink(path, buf, (int) sizeof buf);
Barry Warsaw53699e91996-12-10 23:23:01 +00006067 Py_END_ALLOW_THREADS
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00006068 if (n < 0)
Neal Norwitz91a57212007-08-12 17:11:13 +00006069 return posix_error_with_allocated_filename(path);
Ronald Oussoren10168f22006-10-22 10:45:18 +00006070
Neal Norwitz91a57212007-08-12 17:11:13 +00006071 PyMem_Free(path);
Gregory P. Smithdd96db62008-06-09 04:58:54 +00006072 v = PyString_FromStringAndSize(buf, n);
Ronald Oussoren10168f22006-10-22 10:45:18 +00006073#ifdef Py_USING_UNICODE
6074 if (arg_is_unicode) {
6075 PyObject *w;
6076
6077 w = PyUnicode_FromEncodedObject(v,
6078 Py_FileSystemDefaultEncoding,
6079 "strict");
6080 if (w != NULL) {
6081 Py_DECREF(v);
6082 v = w;
6083 }
6084 else {
6085 /* fall back to the original byte string, as
6086 discussed in patch #683592 */
6087 PyErr_Clear();
6088 }
6089 }
6090#endif
6091 return v;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00006092}
Guido van Rossumb6775db1994-08-01 11:34:53 +00006093#endif /* HAVE_READLINK */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00006094
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006095
Guido van Rossumb6775db1994-08-01 11:34:53 +00006096#ifdef HAVE_SYMLINK
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006097PyDoc_STRVAR(posix_symlink__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006098"symlink(src, dst)\n\n\
Brett Cannon807413d2003-06-11 00:18:09 +00006099Create a symbolic link pointing to src named dst.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006100
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006101static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006102posix_symlink(PyObject *self, PyObject *args)
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006103{
Martin v. Löwis4fc2bda2006-05-04 12:04:27 +00006104 return posix_2str(args, "etet:symlink", symlink);
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006105}
6106#endif /* HAVE_SYMLINK */
6107
6108
6109#ifdef HAVE_TIMES
Guido van Rossumd48f2521997-12-05 22:19:34 +00006110#if defined(PYCC_VACPP) && defined(PYOS_OS2)
6111static long
Thomas Woutersf3f33dc2000-07-21 06:00:07 +00006112system_uptime(void)
Guido van Rossumd48f2521997-12-05 22:19:34 +00006113{
6114 ULONG value = 0;
6115
6116 Py_BEGIN_ALLOW_THREADS
6117 DosQuerySysInfo(QSV_MS_COUNT, QSV_MS_COUNT, &value, sizeof(value));
6118 Py_END_ALLOW_THREADS
6119
6120 return value;
6121}
6122
6123static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00006124posix_times(PyObject *self, PyObject *noargs)
Guido van Rossumd48f2521997-12-05 22:19:34 +00006125{
Guido van Rossumd48f2521997-12-05 22:19:34 +00006126 /* Currently Only Uptime is Provided -- Others Later */
6127 return Py_BuildValue("ddddd",
6128 (double)0 /* t.tms_utime / HZ */,
6129 (double)0 /* t.tms_stime / HZ */,
6130 (double)0 /* t.tms_cutime / HZ */,
6131 (double)0 /* t.tms_cstime / HZ */,
6132 (double)system_uptime() / 1000);
6133}
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006134#else /* not OS2 */
Martin v. Löwis03824e42008-12-29 18:17:34 +00006135#define NEED_TICKS_PER_SECOND
6136static long ticks_per_second = -1;
Barry Warsaw53699e91996-12-10 23:23:01 +00006137static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00006138posix_times(PyObject *self, PyObject *noargs)
Guido van Rossum22db57e1992-04-05 14:25:30 +00006139{
6140 struct tms t;
6141 clock_t c;
Guido van Rossum22db57e1992-04-05 14:25:30 +00006142 errno = 0;
6143 c = times(&t);
Guido van Rossum687dd131993-05-17 08:34:16 +00006144 if (c == (clock_t) -1)
6145 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006146 return Py_BuildValue("ddddd",
Martin v. Löwis03824e42008-12-29 18:17:34 +00006147 (double)t.tms_utime / ticks_per_second,
6148 (double)t.tms_stime / ticks_per_second,
6149 (double)t.tms_cutime / ticks_per_second,
6150 (double)t.tms_cstime / ticks_per_second,
6151 (double)c / ticks_per_second);
Guido van Rossum22db57e1992-04-05 14:25:30 +00006152}
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006153#endif /* not OS2 */
Guido van Rossumb6775db1994-08-01 11:34:53 +00006154#endif /* HAVE_TIMES */
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006155
6156
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006157#ifdef MS_WINDOWS
Guido van Rossum14ed0b21994-09-29 09:50:09 +00006158#define HAVE_TIMES /* so the method table will pick it up */
Barry Warsaw53699e91996-12-10 23:23:01 +00006159static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00006160posix_times(PyObject *self, PyObject *noargs)
Guido van Rossum14ed0b21994-09-29 09:50:09 +00006161{
6162 FILETIME create, exit, kernel, user;
6163 HANDLE hProc;
Guido van Rossum14ed0b21994-09-29 09:50:09 +00006164 hProc = GetCurrentProcess();
Guido van Rossumb8c3cbd1999-02-16 14:37:28 +00006165 GetProcessTimes(hProc, &create, &exit, &kernel, &user);
6166 /* The fields of a FILETIME structure are the hi and lo part
6167 of a 64-bit value expressed in 100 nanosecond units.
6168 1e7 is one second in such units; 1e-7 the inverse.
6169 429.4967296 is 2**32 / 1e7 or 2**32 * 1e-7.
6170 */
Barry Warsaw53699e91996-12-10 23:23:01 +00006171 return Py_BuildValue(
6172 "ddddd",
Guido van Rossumb8c3cbd1999-02-16 14:37:28 +00006173 (double)(user.dwHighDateTime*429.4967296 +
6174 user.dwLowDateTime*1e-7),
Georg Brandl0a40ffb2008-02-13 07:20:22 +00006175 (double)(kernel.dwHighDateTime*429.4967296 +
6176 kernel.dwLowDateTime*1e-7),
Barry Warsaw53699e91996-12-10 23:23:01 +00006177 (double)0,
6178 (double)0,
6179 (double)0);
Guido van Rossum14ed0b21994-09-29 09:50:09 +00006180}
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006181#endif /* MS_WINDOWS */
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006182
6183#ifdef HAVE_TIMES
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006184PyDoc_STRVAR(posix_times__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006185"times() -> (utime, stime, cutime, cstime, elapsed_time)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006186Return a tuple of floating point numbers indicating process times.");
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006187#endif
Guido van Rossum22db57e1992-04-05 14:25:30 +00006188
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006189
Martin v. Löwis49ee14d2003-11-10 06:35:36 +00006190#ifdef HAVE_GETSID
6191PyDoc_STRVAR(posix_getsid__doc__,
6192"getsid(pid) -> sid\n\n\
6193Call the system call getsid().");
6194
6195static PyObject *
6196posix_getsid(PyObject *self, PyObject *args)
6197{
Christian Heimesd491d712008-02-01 18:49:26 +00006198 pid_t pid;
6199 int sid;
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00006200 if (!PyArg_ParseTuple(args, PARSE_PID ":getsid", &pid))
Martin v. Löwis49ee14d2003-11-10 06:35:36 +00006201 return NULL;
6202 sid = getsid(pid);
6203 if (sid < 0)
6204 return posix_error();
6205 return PyInt_FromLong((long)sid);
6206}
6207#endif /* HAVE_GETSID */
6208
6209
Guido van Rossumb6775db1994-08-01 11:34:53 +00006210#ifdef HAVE_SETSID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006211PyDoc_STRVAR(posix_setsid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006212"setsid()\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006213Call the system call setsid().");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006214
Barry Warsaw53699e91996-12-10 23:23:01 +00006215static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00006216posix_setsid(PyObject *self, PyObject *noargs)
Guido van Rossumc2670a01992-09-13 20:07:29 +00006217{
Guido van Rossum687dd131993-05-17 08:34:16 +00006218 if (setsid() < 0)
6219 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006220 Py_INCREF(Py_None);
6221 return Py_None;
Guido van Rossumc2670a01992-09-13 20:07:29 +00006222}
Guido van Rossumb6775db1994-08-01 11:34:53 +00006223#endif /* HAVE_SETSID */
Guido van Rossumc2670a01992-09-13 20:07:29 +00006224
Guido van Rossumb6775db1994-08-01 11:34:53 +00006225#ifdef HAVE_SETPGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006226PyDoc_STRVAR(posix_setpgid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006227"setpgid(pid, pgrp)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006228Call the system call setpgid().");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006229
Barry Warsaw53699e91996-12-10 23:23:01 +00006230static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006231posix_setpgid(PyObject *self, PyObject *args)
Guido van Rossumc2670a01992-09-13 20:07:29 +00006232{
Christian Heimesd491d712008-02-01 18:49:26 +00006233 pid_t pid;
6234 int pgrp;
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00006235 if (!PyArg_ParseTuple(args, PARSE_PID "i:setpgid", &pid, &pgrp))
Guido van Rossumc2670a01992-09-13 20:07:29 +00006236 return NULL;
Guido van Rossum687dd131993-05-17 08:34:16 +00006237 if (setpgid(pid, pgrp) < 0)
6238 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006239 Py_INCREF(Py_None);
6240 return Py_None;
Guido van Rossumc2670a01992-09-13 20:07:29 +00006241}
Guido van Rossumb6775db1994-08-01 11:34:53 +00006242#endif /* HAVE_SETPGID */
Guido van Rossumc2670a01992-09-13 20:07:29 +00006243
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006244
Guido van Rossumb6775db1994-08-01 11:34:53 +00006245#ifdef HAVE_TCGETPGRP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006246PyDoc_STRVAR(posix_tcgetpgrp__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006247"tcgetpgrp(fd) -> pgid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006248Return the process group associated with the terminal given by a fd.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006249
Barry Warsaw53699e91996-12-10 23:23:01 +00006250static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006251posix_tcgetpgrp(PyObject *self, PyObject *args)
Guido van Rossum7066dd71992-09-17 17:54:56 +00006252{
Christian Heimese6a80742008-02-03 19:51:13 +00006253 int fd;
6254 pid_t pgid;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006255 if (!PyArg_ParseTuple(args, "i:tcgetpgrp", &fd))
Guido van Rossum7066dd71992-09-17 17:54:56 +00006256 return NULL;
6257 pgid = tcgetpgrp(fd);
Guido van Rossum687dd131993-05-17 08:34:16 +00006258 if (pgid < 0)
6259 return posix_error();
Antoine Pitrou5e858fe2009-05-23 15:37:45 +00006260 return PyLong_FromPid(pgid);
Guido van Rossum7066dd71992-09-17 17:54:56 +00006261}
Guido van Rossumb6775db1994-08-01 11:34:53 +00006262#endif /* HAVE_TCGETPGRP */
Guido van Rossum7066dd71992-09-17 17:54:56 +00006263
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006264
Guido van Rossumb6775db1994-08-01 11:34:53 +00006265#ifdef HAVE_TCSETPGRP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006266PyDoc_STRVAR(posix_tcsetpgrp__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006267"tcsetpgrp(fd, pgid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006268Set the process group associated with the terminal given by a fd.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006269
Barry Warsaw53699e91996-12-10 23:23:01 +00006270static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006271posix_tcsetpgrp(PyObject *self, PyObject *args)
Guido van Rossum7066dd71992-09-17 17:54:56 +00006272{
Antoine Pitrou76dd2d12009-05-23 16:06:49 +00006273 int fd;
6274 pid_t pgid;
6275 if (!PyArg_ParseTuple(args, "i" PARSE_PID ":tcsetpgrp", &fd, &pgid))
Guido van Rossum7066dd71992-09-17 17:54:56 +00006276 return NULL;
Guido van Rossum687dd131993-05-17 08:34:16 +00006277 if (tcsetpgrp(fd, pgid) < 0)
6278 return posix_error();
Barry Warsaw43d68b81996-12-19 22:10:44 +00006279 Py_INCREF(Py_None);
Barry Warsaw53699e91996-12-10 23:23:01 +00006280 return Py_None;
Guido van Rossum7066dd71992-09-17 17:54:56 +00006281}
Guido van Rossumb6775db1994-08-01 11:34:53 +00006282#endif /* HAVE_TCSETPGRP */
Guido van Rossum22db57e1992-04-05 14:25:30 +00006283
Guido van Rossum687dd131993-05-17 08:34:16 +00006284/* Functions acting on file descriptors */
6285
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006286PyDoc_STRVAR(posix_open__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006287"open(filename, flag [, mode=0777]) -> fd\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006288Open a file (for low level IO).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006289
Barry Warsaw53699e91996-12-10 23:23:01 +00006290static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006291posix_open(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006292{
Mark Hammondef8b6542001-05-13 08:04:26 +00006293 char *file = NULL;
Guido van Rossum687dd131993-05-17 08:34:16 +00006294 int flag;
6295 int mode = 0777;
6296 int fd;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00006297
6298#ifdef MS_WINDOWS
6299 if (unicode_file_names()) {
6300 PyUnicodeObject *po;
6301 if (PyArg_ParseTuple(args, "Ui|i:mkdir", &po, &flag, &mode)) {
6302 Py_BEGIN_ALLOW_THREADS
6303 /* PyUnicode_AS_UNICODE OK without thread
6304 lock as it is a simple dereference. */
6305 fd = _wopen(PyUnicode_AS_UNICODE(po), flag, mode);
6306 Py_END_ALLOW_THREADS
6307 if (fd < 0)
6308 return posix_error();
6309 return PyInt_FromLong((long)fd);
6310 }
6311 /* Drop the argument parsing error as narrow strings
6312 are also valid. */
6313 PyErr_Clear();
6314 }
6315#endif
6316
Tim Peters5aa91602002-01-30 05:46:57 +00006317 if (!PyArg_ParseTuple(args, "eti|i",
Mark Hammondef8b6542001-05-13 08:04:26 +00006318 Py_FileSystemDefaultEncoding, &file,
6319 &flag, &mode))
Barry Warsaw43d68b81996-12-19 22:10:44 +00006320 return NULL;
6321
Barry Warsaw53699e91996-12-10 23:23:01 +00006322 Py_BEGIN_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006323 fd = open(file, flag, mode);
Barry Warsaw53699e91996-12-10 23:23:01 +00006324 Py_END_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006325 if (fd < 0)
Mark Hammondef8b6542001-05-13 08:04:26 +00006326 return posix_error_with_allocated_filename(file);
6327 PyMem_Free(file);
Barry Warsaw53699e91996-12-10 23:23:01 +00006328 return PyInt_FromLong((long)fd);
Guido van Rossum687dd131993-05-17 08:34:16 +00006329}
6330
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006331
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006332PyDoc_STRVAR(posix_close__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006333"close(fd)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006334Close a file descriptor (for low level IO).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006335
Barry Warsaw53699e91996-12-10 23:23:01 +00006336static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006337posix_close(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006338{
6339 int fd, res;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006340 if (!PyArg_ParseTuple(args, "i:close", &fd))
Guido van Rossum687dd131993-05-17 08:34:16 +00006341 return NULL;
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006342 if (!_PyVerify_fd(fd))
6343 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006344 Py_BEGIN_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006345 res = close(fd);
Barry Warsaw53699e91996-12-10 23:23:01 +00006346 Py_END_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006347 if (res < 0)
6348 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006349 Py_INCREF(Py_None);
6350 return Py_None;
Guido van Rossum687dd131993-05-17 08:34:16 +00006351}
6352
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006353
Georg Brandl309501a2008-01-19 20:22:13 +00006354PyDoc_STRVAR(posix_closerange__doc__,
6355"closerange(fd_low, fd_high)\n\n\
6356Closes all file descriptors in [fd_low, fd_high), ignoring errors.");
6357
6358static PyObject *
6359posix_closerange(PyObject *self, PyObject *args)
6360{
6361 int fd_from, fd_to, i;
6362 if (!PyArg_ParseTuple(args, "ii:closerange", &fd_from, &fd_to))
6363 return NULL;
6364 Py_BEGIN_ALLOW_THREADS
6365 for (i = fd_from; i < fd_to; i++)
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006366 if (_PyVerify_fd(i))
6367 close(i);
Georg Brandl309501a2008-01-19 20:22:13 +00006368 Py_END_ALLOW_THREADS
6369 Py_RETURN_NONE;
6370}
6371
6372
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006373PyDoc_STRVAR(posix_dup__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006374"dup(fd) -> fd2\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006375Return a duplicate of a file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006376
Barry Warsaw53699e91996-12-10 23:23:01 +00006377static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006378posix_dup(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006379{
6380 int fd;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006381 if (!PyArg_ParseTuple(args, "i:dup", &fd))
Guido van Rossum687dd131993-05-17 08:34:16 +00006382 return NULL;
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006383 if (!_PyVerify_fd(fd))
6384 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006385 Py_BEGIN_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006386 fd = dup(fd);
Barry Warsaw53699e91996-12-10 23:23:01 +00006387 Py_END_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006388 if (fd < 0)
6389 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006390 return PyInt_FromLong((long)fd);
Guido van Rossum687dd131993-05-17 08:34:16 +00006391}
6392
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006393
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006394PyDoc_STRVAR(posix_dup2__doc__,
Andrew M. Kuchling8135fd52004-01-16 13:18:42 +00006395"dup2(old_fd, new_fd)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006396Duplicate file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006397
Barry Warsaw53699e91996-12-10 23:23:01 +00006398static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006399posix_dup2(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006400{
6401 int fd, fd2, res;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006402 if (!PyArg_ParseTuple(args, "ii:dup2", &fd, &fd2))
Guido van Rossum687dd131993-05-17 08:34:16 +00006403 return NULL;
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006404 if (!_PyVerify_fd_dup2(fd, fd2))
6405 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006406 Py_BEGIN_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006407 res = dup2(fd, fd2);
Barry Warsaw53699e91996-12-10 23:23:01 +00006408 Py_END_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006409 if (res < 0)
6410 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006411 Py_INCREF(Py_None);
6412 return Py_None;
Guido van Rossum687dd131993-05-17 08:34:16 +00006413}
6414
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006415
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006416PyDoc_STRVAR(posix_lseek__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006417"lseek(fd, pos, how) -> newpos\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006418Set the current position of a file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006419
Barry Warsaw53699e91996-12-10 23:23:01 +00006420static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006421posix_lseek(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006422{
6423 int fd, how;
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006424#if defined(MS_WIN64) || defined(MS_WINDOWS)
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00006425 PY_LONG_LONG pos, res;
Fred Drake699f3522000-06-29 21:12:41 +00006426#else
Guido van Rossum94f6f721999-01-06 18:42:14 +00006427 off_t pos, res;
Fred Drake699f3522000-06-29 21:12:41 +00006428#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00006429 PyObject *posobj;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006430 if (!PyArg_ParseTuple(args, "iOi:lseek", &fd, &posobj, &how))
Guido van Rossum687dd131993-05-17 08:34:16 +00006431 return NULL;
6432#ifdef SEEK_SET
6433 /* Turn 0, 1, 2 into SEEK_{SET,CUR,END} */
6434 switch (how) {
6435 case 0: how = SEEK_SET; break;
6436 case 1: how = SEEK_CUR; break;
6437 case 2: how = SEEK_END; break;
6438 }
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00006439#endif /* SEEK_END */
Guido van Rossum94f6f721999-01-06 18:42:14 +00006440
6441#if !defined(HAVE_LARGEFILE_SUPPORT)
6442 pos = PyInt_AsLong(posobj);
6443#else
6444 pos = PyLong_Check(posobj) ?
6445 PyLong_AsLongLong(posobj) : PyInt_AsLong(posobj);
6446#endif
6447 if (PyErr_Occurred())
6448 return NULL;
6449
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006450 if (!_PyVerify_fd(fd))
6451 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006452 Py_BEGIN_ALLOW_THREADS
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006453#if defined(MS_WIN64) || defined(MS_WINDOWS)
Fred Drake699f3522000-06-29 21:12:41 +00006454 res = _lseeki64(fd, pos, how);
6455#else
Guido van Rossum687dd131993-05-17 08:34:16 +00006456 res = lseek(fd, pos, how);
Fred Drake699f3522000-06-29 21:12:41 +00006457#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00006458 Py_END_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006459 if (res < 0)
6460 return posix_error();
Guido van Rossum94f6f721999-01-06 18:42:14 +00006461
6462#if !defined(HAVE_LARGEFILE_SUPPORT)
Barry Warsaw53699e91996-12-10 23:23:01 +00006463 return PyInt_FromLong(res);
Guido van Rossum94f6f721999-01-06 18:42:14 +00006464#else
6465 return PyLong_FromLongLong(res);
6466#endif
Guido van Rossum687dd131993-05-17 08:34:16 +00006467}
6468
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006469
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006470PyDoc_STRVAR(posix_read__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006471"read(fd, buffersize) -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006472Read a file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006473
Barry Warsaw53699e91996-12-10 23:23:01 +00006474static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006475posix_read(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006476{
Guido van Rossum8bac5461996-06-11 18:38:48 +00006477 int fd, size, n;
Barry Warsaw53699e91996-12-10 23:23:01 +00006478 PyObject *buffer;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006479 if (!PyArg_ParseTuple(args, "ii:read", &fd, &size))
Guido van Rossum687dd131993-05-17 08:34:16 +00006480 return NULL;
Michael W. Hudson9867ced2005-01-31 17:01:59 +00006481 if (size < 0) {
6482 errno = EINVAL;
6483 return posix_error();
6484 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00006485 buffer = PyString_FromStringAndSize((char *)NULL, size);
Guido van Rossum687dd131993-05-17 08:34:16 +00006486 if (buffer == NULL)
6487 return NULL;
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006488 if (!_PyVerify_fd(fd))
6489 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006490 Py_BEGIN_ALLOW_THREADS
Gregory P. Smithdd96db62008-06-09 04:58:54 +00006491 n = read(fd, PyString_AsString(buffer), size);
Barry Warsaw53699e91996-12-10 23:23:01 +00006492 Py_END_ALLOW_THREADS
Guido van Rossum8bac5461996-06-11 18:38:48 +00006493 if (n < 0) {
Barry Warsaw53699e91996-12-10 23:23:01 +00006494 Py_DECREF(buffer);
Guido van Rossum687dd131993-05-17 08:34:16 +00006495 return posix_error();
6496 }
Guido van Rossum8bac5461996-06-11 18:38:48 +00006497 if (n != size)
Gregory P. Smithdd96db62008-06-09 04:58:54 +00006498 _PyString_Resize(&buffer, n);
Guido van Rossum687dd131993-05-17 08:34:16 +00006499 return buffer;
6500}
6501
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006502
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006503PyDoc_STRVAR(posix_write__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006504"write(fd, string) -> byteswritten\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006505Write a string to a file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006506
Barry Warsaw53699e91996-12-10 23:23:01 +00006507static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006508posix_write(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006509{
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00006510 Py_buffer pbuf;
Thomas Wouters68bc4f92006-03-01 01:05:10 +00006511 int fd;
6512 Py_ssize_t size;
Thomas Wouters68bc4f92006-03-01 01:05:10 +00006513
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00006514 if (!PyArg_ParseTuple(args, "is*:write", &fd, &pbuf))
Guido van Rossum687dd131993-05-17 08:34:16 +00006515 return NULL;
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006516 if (!_PyVerify_fd(fd))
6517 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006518 Py_BEGIN_ALLOW_THREADS
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00006519 size = write(fd, pbuf.buf, (size_t)pbuf.len);
Barry Warsaw53699e91996-12-10 23:23:01 +00006520 Py_END_ALLOW_THREADS
Martin v. Löwisf91d46a2008-08-12 14:49:50 +00006521 PyBuffer_Release(&pbuf);
Guido van Rossum687dd131993-05-17 08:34:16 +00006522 if (size < 0)
6523 return posix_error();
Thomas Wouters68bc4f92006-03-01 01:05:10 +00006524 return PyInt_FromSsize_t(size);
Guido van Rossum687dd131993-05-17 08:34:16 +00006525}
6526
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006527
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006528PyDoc_STRVAR(posix_fstat__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006529"fstat(fd) -> stat result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006530Like stat(), but for an open file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006531
Barry Warsaw53699e91996-12-10 23:23:01 +00006532static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006533posix_fstat(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006534{
6535 int fd;
Fred Drake699f3522000-06-29 21:12:41 +00006536 STRUCT_STAT st;
Guido van Rossum687dd131993-05-17 08:34:16 +00006537 int res;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006538 if (!PyArg_ParseTuple(args, "i:fstat", &fd))
Guido van Rossum687dd131993-05-17 08:34:16 +00006539 return NULL;
Martin v. Löwis7a924e62003-03-05 14:15:21 +00006540#ifdef __VMS
6541 /* on OpenVMS we must ensure that all bytes are written to the file */
6542 fsync(fd);
6543#endif
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006544 if (!_PyVerify_fd(fd))
6545 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006546 Py_BEGIN_ALLOW_THREADS
Fred Drake699f3522000-06-29 21:12:41 +00006547 res = FSTAT(fd, &st);
Barry Warsaw53699e91996-12-10 23:23:01 +00006548 Py_END_ALLOW_THREADS
Martin v. Löwis14694662006-02-03 12:54:16 +00006549 if (res != 0) {
6550#ifdef MS_WINDOWS
6551 return win32_error("fstat", NULL);
6552#else
Guido van Rossum687dd131993-05-17 08:34:16 +00006553 return posix_error();
Martin v. Löwis14694662006-02-03 12:54:16 +00006554#endif
6555 }
Tim Peters5aa91602002-01-30 05:46:57 +00006556
Martin v. Löwis14694662006-02-03 12:54:16 +00006557 return _pystat_fromstructstat(&st);
Guido van Rossum687dd131993-05-17 08:34:16 +00006558}
6559
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006560
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006561PyDoc_STRVAR(posix_fdopen__doc__,
Neal Norwitzc18b3082002-10-11 22:19:42 +00006562"fdopen(fd [, mode='r' [, bufsize]]) -> file_object\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006563Return an open file object connected to a file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006564
Barry Warsaw53699e91996-12-10 23:23:01 +00006565static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006566posix_fdopen(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006567{
Guido van Rossum687dd131993-05-17 08:34:16 +00006568 int fd;
Kristján Valur Jónsson0a440d42007-04-26 09:15:08 +00006569 char *orgmode = "r";
Guido van Rossuma6a1e531995-01-10 15:36:38 +00006570 int bufsize = -1;
Guido van Rossum687dd131993-05-17 08:34:16 +00006571 FILE *fp;
Barry Warsaw53699e91996-12-10 23:23:01 +00006572 PyObject *f;
Kristján Valur Jónsson0a440d42007-04-26 09:15:08 +00006573 char *mode;
6574 if (!PyArg_ParseTuple(args, "i|si", &fd, &orgmode, &bufsize))
Guido van Rossum687dd131993-05-17 08:34:16 +00006575 return NULL;
Barry Warsaw43d68b81996-12-19 22:10:44 +00006576
Kristján Valur Jónsson0a440d42007-04-26 09:15:08 +00006577 /* Sanitize mode. See fileobject.c */
6578 mode = PyMem_MALLOC(strlen(orgmode)+3);
6579 if (!mode) {
6580 PyErr_NoMemory();
6581 return NULL;
6582 }
6583 strcpy(mode, orgmode);
6584 if (_PyFile_SanitizeMode(mode)) {
6585 PyMem_FREE(mode);
Thomas Heller1f043e22002-11-07 16:00:59 +00006586 return NULL;
6587 }
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006588 if (!_PyVerify_fd(fd))
6589 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006590 Py_BEGIN_ALLOW_THREADS
Georg Brandl644b1e72006-03-31 20:27:22 +00006591#if !defined(MS_WINDOWS) && defined(HAVE_FCNTL_H)
Georg Brandl54a188a2006-03-31 20:00:11 +00006592 if (mode[0] == 'a') {
6593 /* try to make sure the O_APPEND flag is set */
6594 int flags;
6595 flags = fcntl(fd, F_GETFL);
6596 if (flags != -1)
6597 fcntl(fd, F_SETFL, flags | O_APPEND);
6598 fp = fdopen(fd, mode);
Thomas Wouters2a9a6b02006-03-31 22:38:19 +00006599 if (fp == NULL && flags != -1)
Georg Brandl54a188a2006-03-31 20:00:11 +00006600 /* restore old mode if fdopen failed */
6601 fcntl(fd, F_SETFL, flags);
6602 } else {
6603 fp = fdopen(fd, mode);
6604 }
Georg Brandl644b1e72006-03-31 20:27:22 +00006605#else
6606 fp = fdopen(fd, mode);
6607#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00006608 Py_END_ALLOW_THREADS
Neal Norwitzd83eb312007-05-02 04:47:55 +00006609 PyMem_FREE(mode);
Guido van Rossum687dd131993-05-17 08:34:16 +00006610 if (fp == NULL)
6611 return posix_error();
Kristján Valur Jónsson0a440d42007-04-26 09:15:08 +00006612 f = PyFile_FromFile(fp, "<fdopen>", orgmode, fclose);
Guido van Rossuma6a1e531995-01-10 15:36:38 +00006613 if (f != NULL)
Barry Warsaw53699e91996-12-10 23:23:01 +00006614 PyFile_SetBufSize(f, bufsize);
Guido van Rossuma6a1e531995-01-10 15:36:38 +00006615 return f;
Guido van Rossum687dd131993-05-17 08:34:16 +00006616}
6617
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006618PyDoc_STRVAR(posix_isatty__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006619"isatty(fd) -> bool\n\n\
Fred Drake106c1a02002-04-23 15:58:02 +00006620Return True if the file descriptor 'fd' is an open file descriptor\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006621connected to the slave end of a terminal.");
Skip Montanaro1517d842000-07-19 14:34:14 +00006622
6623static PyObject *
Thomas Wouters616607a2000-07-19 14:45:40 +00006624posix_isatty(PyObject *self, PyObject *args)
Skip Montanaro1517d842000-07-19 14:34:14 +00006625{
6626 int fd;
6627 if (!PyArg_ParseTuple(args, "i:isatty", &fd))
6628 return NULL;
Kristján Valur Jónsson6a743d32009-02-10 13:32:24 +00006629 if (!_PyVerify_fd(fd))
6630 return PyBool_FromLong(0);
Fred Drake106c1a02002-04-23 15:58:02 +00006631 return PyBool_FromLong(isatty(fd));
Skip Montanaro1517d842000-07-19 14:34:14 +00006632}
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006633
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006634#ifdef HAVE_PIPE
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006635PyDoc_STRVAR(posix_pipe__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006636"pipe() -> (read_end, write_end)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006637Create a pipe.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006638
Barry Warsaw53699e91996-12-10 23:23:01 +00006639static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00006640posix_pipe(PyObject *self, PyObject *noargs)
Guido van Rossum687dd131993-05-17 08:34:16 +00006641{
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00006642#if defined(PYOS_OS2)
6643 HFILE read, write;
6644 APIRET rc;
6645
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00006646 Py_BEGIN_ALLOW_THREADS
6647 rc = DosCreatePipe( &read, &write, 4096);
6648 Py_END_ALLOW_THREADS
6649 if (rc != NO_ERROR)
Guido van Rossumd48f2521997-12-05 22:19:34 +00006650 return os2_error(rc);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00006651
6652 return Py_BuildValue("(ii)", read, write);
6653#else
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006654#if !defined(MS_WINDOWS)
Guido van Rossum687dd131993-05-17 08:34:16 +00006655 int fds[2];
6656 int res;
Barry Warsaw53699e91996-12-10 23:23:01 +00006657 Py_BEGIN_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006658 res = pipe(fds);
Barry Warsaw53699e91996-12-10 23:23:01 +00006659 Py_END_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006660 if (res != 0)
6661 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006662 return Py_BuildValue("(ii)", fds[0], fds[1]);
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006663#else /* MS_WINDOWS */
Guido van Rossum794d8131994-08-23 13:48:48 +00006664 HANDLE read, write;
Guido van Rossumb3f9f4b1998-06-12 15:05:15 +00006665 int read_fd, write_fd;
Guido van Rossum794d8131994-08-23 13:48:48 +00006666 BOOL ok;
Barry Warsaw53699e91996-12-10 23:23:01 +00006667 Py_BEGIN_ALLOW_THREADS
Guido van Rossumb3f9f4b1998-06-12 15:05:15 +00006668 ok = CreatePipe(&read, &write, NULL, 0);
Barry Warsaw53699e91996-12-10 23:23:01 +00006669 Py_END_ALLOW_THREADS
Guido van Rossum794d8131994-08-23 13:48:48 +00006670 if (!ok)
Fredrik Lundhffb9c772000-07-09 14:49:51 +00006671 return win32_error("CreatePipe", NULL);
Tim Peters79248aa2001-08-29 21:37:10 +00006672 read_fd = _open_osfhandle((Py_intptr_t)read, 0);
6673 write_fd = _open_osfhandle((Py_intptr_t)write, 1);
Guido van Rossumb3f9f4b1998-06-12 15:05:15 +00006674 return Py_BuildValue("(ii)", read_fd, write_fd);
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006675#endif /* MS_WINDOWS */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00006676#endif
Guido van Rossum687dd131993-05-17 08:34:16 +00006677}
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006678#endif /* HAVE_PIPE */
6679
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006680
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006681#ifdef HAVE_MKFIFO
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006682PyDoc_STRVAR(posix_mkfifo__doc__,
Neal Norwitzc18b3082002-10-11 22:19:42 +00006683"mkfifo(filename [, mode=0666])\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006684Create a FIFO (a POSIX named pipe).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006685
Barry Warsaw53699e91996-12-10 23:23:01 +00006686static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006687posix_mkfifo(PyObject *self, PyObject *args)
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006688{
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006689 char *filename;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006690 int mode = 0666;
6691 int res;
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006692 if (!PyArg_ParseTuple(args, "s|i:mkfifo", &filename, &mode))
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006693 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00006694 Py_BEGIN_ALLOW_THREADS
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006695 res = mkfifo(filename, mode);
6696 Py_END_ALLOW_THREADS
6697 if (res < 0)
6698 return posix_error();
6699 Py_INCREF(Py_None);
6700 return Py_None;
6701}
6702#endif
6703
6704
Neal Norwitz11690112002-07-30 01:08:28 +00006705#if defined(HAVE_MKNOD) && defined(HAVE_MAKEDEV)
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006706PyDoc_STRVAR(posix_mknod__doc__,
Neal Norwitzc18b3082002-10-11 22:19:42 +00006707"mknod(filename [, mode=0600, device])\n\n\
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006708Create a filesystem node (file, device special file or named pipe)\n\
6709named filename. mode specifies both the permissions to use and the\n\
6710type of node to be created, being combined (bitwise OR) with one of\n\
6711S_IFREG, S_IFCHR, S_IFBLK, and S_IFIFO. For S_IFCHR and S_IFBLK,\n\
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00006712device defines the newly created device special file (probably using\n\
6713os.makedev()), otherwise it is ignored.");
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006714
6715
6716static PyObject *
6717posix_mknod(PyObject *self, PyObject *args)
6718{
6719 char *filename;
6720 int mode = 0600;
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00006721 int device = 0;
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006722 int res;
Martin v. Löwisd631ebe2002-11-02 17:42:33 +00006723 if (!PyArg_ParseTuple(args, "s|ii:mknod", &filename, &mode, &device))
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006724 return NULL;
6725 Py_BEGIN_ALLOW_THREADS
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00006726 res = mknod(filename, mode, device);
Barry Warsaw53699e91996-12-10 23:23:01 +00006727 Py_END_ALLOW_THREADS
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006728 if (res < 0)
6729 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006730 Py_INCREF(Py_None);
6731 return Py_None;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006732}
6733#endif
6734
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00006735#ifdef HAVE_DEVICE_MACROS
6736PyDoc_STRVAR(posix_major__doc__,
6737"major(device) -> major number\n\
6738Extracts a device major number from a raw device number.");
6739
6740static PyObject *
6741posix_major(PyObject *self, PyObject *args)
6742{
6743 int device;
6744 if (!PyArg_ParseTuple(args, "i:major", &device))
6745 return NULL;
6746 return PyInt_FromLong((long)major(device));
6747}
6748
6749PyDoc_STRVAR(posix_minor__doc__,
6750"minor(device) -> minor number\n\
6751Extracts a device minor number from a raw device number.");
6752
6753static PyObject *
6754posix_minor(PyObject *self, PyObject *args)
6755{
6756 int device;
6757 if (!PyArg_ParseTuple(args, "i:minor", &device))
6758 return NULL;
6759 return PyInt_FromLong((long)minor(device));
6760}
6761
6762PyDoc_STRVAR(posix_makedev__doc__,
6763"makedev(major, minor) -> device number\n\
6764Composes a raw device number from the major and minor device numbers.");
6765
6766static PyObject *
6767posix_makedev(PyObject *self, PyObject *args)
6768{
6769 int major, minor;
6770 if (!PyArg_ParseTuple(args, "ii:makedev", &major, &minor))
6771 return NULL;
6772 return PyInt_FromLong((long)makedev(major, minor));
6773}
6774#endif /* device macros */
6775
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006776
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006777#ifdef HAVE_FTRUNCATE
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006778PyDoc_STRVAR(posix_ftruncate__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006779"ftruncate(fd, length)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006780Truncate a file to a specified length.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006781
Barry Warsaw53699e91996-12-10 23:23:01 +00006782static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006783posix_ftruncate(PyObject *self, PyObject *args)
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006784{
6785 int fd;
Guido van Rossum94f6f721999-01-06 18:42:14 +00006786 off_t length;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006787 int res;
Guido van Rossum94f6f721999-01-06 18:42:14 +00006788 PyObject *lenobj;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006789
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006790 if (!PyArg_ParseTuple(args, "iO:ftruncate", &fd, &lenobj))
Guido van Rossum94f6f721999-01-06 18:42:14 +00006791 return NULL;
6792
6793#if !defined(HAVE_LARGEFILE_SUPPORT)
6794 length = PyInt_AsLong(lenobj);
6795#else
6796 length = PyLong_Check(lenobj) ?
6797 PyLong_AsLongLong(lenobj) : PyInt_AsLong(lenobj);
6798#endif
6799 if (PyErr_Occurred())
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006800 return NULL;
6801
Barry Warsaw53699e91996-12-10 23:23:01 +00006802 Py_BEGIN_ALLOW_THREADS
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006803 res = ftruncate(fd, length);
Barry Warsaw53699e91996-12-10 23:23:01 +00006804 Py_END_ALLOW_THREADS
Benjamin Peterson943a6dd2009-01-19 15:51:27 +00006805 if (res < 0)
6806 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006807 Py_INCREF(Py_None);
6808 return Py_None;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006809}
6810#endif
Guido van Rossum22db57e1992-04-05 14:25:30 +00006811
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006812#ifdef HAVE_PUTENV
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006813PyDoc_STRVAR(posix_putenv__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006814"putenv(key, value)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006815Change or add an environment variable.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006816
Fred Drake762e2061999-08-26 17:23:54 +00006817/* Save putenv() parameters as values here, so we can collect them when they
6818 * get re-set with another call for the same key. */
6819static PyObject *posix_putenv_garbage;
6820
Tim Peters5aa91602002-01-30 05:46:57 +00006821static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006822posix_putenv(PyObject *self, PyObject *args)
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006823{
6824 char *s1, *s2;
Anthony Baxter64182fe2006-04-11 12:14:09 +00006825 char *newenv;
Fred Drake762e2061999-08-26 17:23:54 +00006826 PyObject *newstr;
Tim Petersc8996f52001-12-03 20:41:00 +00006827 size_t len;
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006828
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006829 if (!PyArg_ParseTuple(args, "ss:putenv", &s1, &s2))
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006830 return NULL;
Guido van Rossumd48f2521997-12-05 22:19:34 +00006831
6832#if defined(PYOS_OS2)
6833 if (stricmp(s1, "BEGINLIBPATH") == 0) {
6834 APIRET rc;
6835
Guido van Rossumd48f2521997-12-05 22:19:34 +00006836 rc = DosSetExtLIBPATH(s2, BEGIN_LIBPATH);
6837 if (rc != NO_ERROR)
6838 return os2_error(rc);
6839
6840 } else if (stricmp(s1, "ENDLIBPATH") == 0) {
6841 APIRET rc;
6842
Guido van Rossumd48f2521997-12-05 22:19:34 +00006843 rc = DosSetExtLIBPATH(s2, END_LIBPATH);
6844 if (rc != NO_ERROR)
6845 return os2_error(rc);
6846 } else {
6847#endif
6848
Fred Drake762e2061999-08-26 17:23:54 +00006849 /* XXX This can leak memory -- not easy to fix :-( */
Tim Petersc8996f52001-12-03 20:41:00 +00006850 len = strlen(s1) + strlen(s2) + 2;
6851 /* len includes space for a trailing \0; the size arg to
Gregory P. Smithdd96db62008-06-09 04:58:54 +00006852 PyString_FromStringAndSize does not count that */
6853 newstr = PyString_FromStringAndSize(NULL, (int)len - 1);
Fred Drake762e2061999-08-26 17:23:54 +00006854 if (newstr == NULL)
6855 return PyErr_NoMemory();
Gregory P. Smithdd96db62008-06-09 04:58:54 +00006856 newenv = PyString_AS_STRING(newstr);
Anthony Baxter64182fe2006-04-11 12:14:09 +00006857 PyOS_snprintf(newenv, len, "%s=%s", s1, s2);
6858 if (putenv(newenv)) {
Neal Norwitz4adc9ab2003-02-10 03:10:43 +00006859 Py_DECREF(newstr);
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006860 posix_error();
6861 return NULL;
6862 }
Fred Drake762e2061999-08-26 17:23:54 +00006863 /* Install the first arg and newstr in posix_putenv_garbage;
6864 * this will cause previous value to be collected. This has to
6865 * happen after the real putenv() call because the old value
6866 * was still accessible until then. */
6867 if (PyDict_SetItem(posix_putenv_garbage,
6868 PyTuple_GET_ITEM(args, 0), newstr)) {
6869 /* really not much we can do; just leak */
6870 PyErr_Clear();
6871 }
6872 else {
6873 Py_DECREF(newstr);
6874 }
Guido van Rossumd48f2521997-12-05 22:19:34 +00006875
6876#if defined(PYOS_OS2)
6877 }
6878#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00006879 Py_INCREF(Py_None);
6880 return Py_None;
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006881}
Guido van Rossumb6a47161997-09-15 22:54:34 +00006882#endif /* putenv */
6883
Guido van Rossumc524d952001-10-19 01:31:59 +00006884#ifdef HAVE_UNSETENV
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006885PyDoc_STRVAR(posix_unsetenv__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006886"unsetenv(key)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006887Delete an environment variable.");
Guido van Rossumc524d952001-10-19 01:31:59 +00006888
6889static PyObject *
6890posix_unsetenv(PyObject *self, PyObject *args)
6891{
6892 char *s1;
6893
6894 if (!PyArg_ParseTuple(args, "s:unsetenv", &s1))
6895 return NULL;
6896
6897 unsetenv(s1);
6898
6899 /* Remove the key from posix_putenv_garbage;
6900 * this will cause it to be collected. This has to
Tim Peters5aa91602002-01-30 05:46:57 +00006901 * happen after the real unsetenv() call because the
Guido van Rossumc524d952001-10-19 01:31:59 +00006902 * old value was still accessible until then.
6903 */
6904 if (PyDict_DelItem(posix_putenv_garbage,
6905 PyTuple_GET_ITEM(args, 0))) {
6906 /* really not much we can do; just leak */
6907 PyErr_Clear();
6908 }
6909
6910 Py_INCREF(Py_None);
6911 return Py_None;
6912}
6913#endif /* unsetenv */
6914
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006915PyDoc_STRVAR(posix_strerror__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006916"strerror(code) -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006917Translate an error code to a message string.");
Guido van Rossumb6a47161997-09-15 22:54:34 +00006918
Guido van Rossumf68d8e52001-04-14 17:55:09 +00006919static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006920posix_strerror(PyObject *self, PyObject *args)
Guido van Rossumb6a47161997-09-15 22:54:34 +00006921{
6922 int code;
6923 char *message;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006924 if (!PyArg_ParseTuple(args, "i:strerror", &code))
Guido van Rossumb6a47161997-09-15 22:54:34 +00006925 return NULL;
6926 message = strerror(code);
6927 if (message == NULL) {
6928 PyErr_SetString(PyExc_ValueError,
Fred Drake661ea262000-10-24 19:57:45 +00006929 "strerror() argument out of range");
Guido van Rossumb6a47161997-09-15 22:54:34 +00006930 return NULL;
6931 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00006932 return PyString_FromString(message);
Guido van Rossumb6a47161997-09-15 22:54:34 +00006933}
Guido van Rossumb6a47161997-09-15 22:54:34 +00006934
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006935
Guido van Rossumc9641791998-08-04 15:26:23 +00006936#ifdef HAVE_SYS_WAIT_H
6937
Fred Drake106c1a02002-04-23 15:58:02 +00006938#ifdef WCOREDUMP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006939PyDoc_STRVAR(posix_WCOREDUMP__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006940"WCOREDUMP(status) -> bool\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006941Return True if the process returning 'status' was dumped to a core file.");
Fred Drake106c1a02002-04-23 15:58:02 +00006942
6943static PyObject *
6944posix_WCOREDUMP(PyObject *self, PyObject *args)
6945{
Neal Norwitzd5a37542006-03-20 06:48:34 +00006946 WAIT_TYPE status;
6947 WAIT_STATUS_INT(status) = 0;
Fred Drake106c1a02002-04-23 15:58:02 +00006948
Neal Norwitzd5a37542006-03-20 06:48:34 +00006949 if (!PyArg_ParseTuple(args, "i:WCOREDUMP", &WAIT_STATUS_INT(status)))
Fred Drake106c1a02002-04-23 15:58:02 +00006950 return NULL;
Fred Drake106c1a02002-04-23 15:58:02 +00006951
6952 return PyBool_FromLong(WCOREDUMP(status));
Fred Drake106c1a02002-04-23 15:58:02 +00006953}
6954#endif /* WCOREDUMP */
6955
6956#ifdef WIFCONTINUED
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006957PyDoc_STRVAR(posix_WIFCONTINUED__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006958"WIFCONTINUED(status) -> bool\n\n\
Fred Drake106c1a02002-04-23 15:58:02 +00006959Return True if the process returning 'status' was continued from a\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006960job control stop.");
Fred Drake106c1a02002-04-23 15:58:02 +00006961
6962static PyObject *
Martin v. Löwis2b41b0d2002-05-04 13:13:41 +00006963posix_WIFCONTINUED(PyObject *self, PyObject *args)
Fred Drake106c1a02002-04-23 15:58:02 +00006964{
Neal Norwitzd5a37542006-03-20 06:48:34 +00006965 WAIT_TYPE status;
6966 WAIT_STATUS_INT(status) = 0;
Fred Drake106c1a02002-04-23 15:58:02 +00006967
Neal Norwitzd5a37542006-03-20 06:48:34 +00006968 if (!PyArg_ParseTuple(args, "i:WCONTINUED", &WAIT_STATUS_INT(status)))
Fred Drake106c1a02002-04-23 15:58:02 +00006969 return NULL;
Fred Drake106c1a02002-04-23 15:58:02 +00006970
Martin v. Löwis2b41b0d2002-05-04 13:13:41 +00006971 return PyBool_FromLong(WIFCONTINUED(status));
Fred Drake106c1a02002-04-23 15:58:02 +00006972}
6973#endif /* WIFCONTINUED */
6974
Guido van Rossumc9641791998-08-04 15:26:23 +00006975#ifdef WIFSTOPPED
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006976PyDoc_STRVAR(posix_WIFSTOPPED__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006977"WIFSTOPPED(status) -> bool\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006978Return True if the process returning 'status' was stopped.");
Guido van Rossumc9641791998-08-04 15:26:23 +00006979
6980static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006981posix_WIFSTOPPED(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00006982{
Neal Norwitzd5a37542006-03-20 06:48:34 +00006983 WAIT_TYPE status;
6984 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00006985
Neal Norwitzd5a37542006-03-20 06:48:34 +00006986 if (!PyArg_ParseTuple(args, "i:WIFSTOPPED", &WAIT_STATUS_INT(status)))
Guido van Rossumc9641791998-08-04 15:26:23 +00006987 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00006988
Fred Drake106c1a02002-04-23 15:58:02 +00006989 return PyBool_FromLong(WIFSTOPPED(status));
Guido van Rossumc9641791998-08-04 15:26:23 +00006990}
6991#endif /* WIFSTOPPED */
6992
6993#ifdef WIFSIGNALED
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006994PyDoc_STRVAR(posix_WIFSIGNALED__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006995"WIFSIGNALED(status) -> bool\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006996Return True if the process returning 'status' was terminated by a signal.");
Guido van Rossumc9641791998-08-04 15:26:23 +00006997
6998static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006999posix_WIFSIGNALED(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00007000{
Neal Norwitzd5a37542006-03-20 06:48:34 +00007001 WAIT_TYPE status;
7002 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00007003
Neal Norwitzd5a37542006-03-20 06:48:34 +00007004 if (!PyArg_ParseTuple(args, "i:WIFSIGNALED", &WAIT_STATUS_INT(status)))
Guido van Rossumc9641791998-08-04 15:26:23 +00007005 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00007006
Fred Drake106c1a02002-04-23 15:58:02 +00007007 return PyBool_FromLong(WIFSIGNALED(status));
Guido van Rossumc9641791998-08-04 15:26:23 +00007008}
7009#endif /* WIFSIGNALED */
7010
7011#ifdef WIFEXITED
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007012PyDoc_STRVAR(posix_WIFEXITED__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007013"WIFEXITED(status) -> bool\n\n\
Fred Drake7e3535c1999-02-02 16:37:11 +00007014Return true if the process returning 'status' exited using the exit()\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007015system call.");
Guido van Rossumc9641791998-08-04 15:26:23 +00007016
7017static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007018posix_WIFEXITED(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00007019{
Neal Norwitzd5a37542006-03-20 06:48:34 +00007020 WAIT_TYPE status;
7021 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00007022
Neal Norwitzd5a37542006-03-20 06:48:34 +00007023 if (!PyArg_ParseTuple(args, "i:WIFEXITED", &WAIT_STATUS_INT(status)))
Guido van Rossumc9641791998-08-04 15:26:23 +00007024 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00007025
Fred Drake106c1a02002-04-23 15:58:02 +00007026 return PyBool_FromLong(WIFEXITED(status));
Guido van Rossumc9641791998-08-04 15:26:23 +00007027}
7028#endif /* WIFEXITED */
7029
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00007030#ifdef WEXITSTATUS
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007031PyDoc_STRVAR(posix_WEXITSTATUS__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007032"WEXITSTATUS(status) -> integer\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007033Return the process return code from 'status'.");
Guido van Rossumc9641791998-08-04 15:26:23 +00007034
7035static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007036posix_WEXITSTATUS(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00007037{
Neal Norwitzd5a37542006-03-20 06:48:34 +00007038 WAIT_TYPE status;
7039 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00007040
Neal Norwitzd5a37542006-03-20 06:48:34 +00007041 if (!PyArg_ParseTuple(args, "i:WEXITSTATUS", &WAIT_STATUS_INT(status)))
Guido van Rossumc9641791998-08-04 15:26:23 +00007042 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00007043
Guido van Rossumc9641791998-08-04 15:26:23 +00007044 return Py_BuildValue("i", WEXITSTATUS(status));
7045}
7046#endif /* WEXITSTATUS */
7047
7048#ifdef WTERMSIG
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007049PyDoc_STRVAR(posix_WTERMSIG__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007050"WTERMSIG(status) -> integer\n\n\
Fred Drake7e3535c1999-02-02 16:37:11 +00007051Return the signal that terminated the process that provided the 'status'\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007052value.");
Guido van Rossumc9641791998-08-04 15:26:23 +00007053
7054static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007055posix_WTERMSIG(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00007056{
Neal Norwitzd5a37542006-03-20 06:48:34 +00007057 WAIT_TYPE status;
7058 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00007059
Neal Norwitzd5a37542006-03-20 06:48:34 +00007060 if (!PyArg_ParseTuple(args, "i:WTERMSIG", &WAIT_STATUS_INT(status)))
Guido van Rossumc9641791998-08-04 15:26:23 +00007061 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00007062
Guido van Rossumc9641791998-08-04 15:26:23 +00007063 return Py_BuildValue("i", WTERMSIG(status));
7064}
7065#endif /* WTERMSIG */
7066
7067#ifdef WSTOPSIG
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007068PyDoc_STRVAR(posix_WSTOPSIG__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007069"WSTOPSIG(status) -> integer\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007070Return the signal that stopped the process that provided\n\
7071the 'status' value.");
Guido van Rossumc9641791998-08-04 15:26:23 +00007072
7073static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007074posix_WSTOPSIG(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00007075{
Neal Norwitzd5a37542006-03-20 06:48:34 +00007076 WAIT_TYPE status;
7077 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00007078
Neal Norwitzd5a37542006-03-20 06:48:34 +00007079 if (!PyArg_ParseTuple(args, "i:WSTOPSIG", &WAIT_STATUS_INT(status)))
Guido van Rossumc9641791998-08-04 15:26:23 +00007080 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00007081
Guido van Rossumc9641791998-08-04 15:26:23 +00007082 return Py_BuildValue("i", WSTOPSIG(status));
7083}
7084#endif /* WSTOPSIG */
7085
7086#endif /* HAVE_SYS_WAIT_H */
7087
7088
Martin v. Löwis5f5d99c2006-05-16 07:05:37 +00007089#if defined(HAVE_FSTATVFS) && defined(HAVE_SYS_STATVFS_H)
Guido van Rossumd5753e11999-10-19 13:29:23 +00007090#ifdef _SCO_DS
7091/* SCO OpenServer 5.0 and later requires _SVID3 before it reveals the
7092 needed definitions in sys/statvfs.h */
7093#define _SVID3
7094#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00007095#include <sys/statvfs.h>
7096
Guido van Rossum98bf58f2001-10-18 20:34:25 +00007097static PyObject*
7098_pystatvfs_fromstructstatvfs(struct statvfs st) {
7099 PyObject *v = PyStructSequence_New(&StatVFSResultType);
7100 if (v == NULL)
7101 return NULL;
7102
7103#if !defined(HAVE_LARGEFILE_SUPPORT)
7104 PyStructSequence_SET_ITEM(v, 0, PyInt_FromLong((long) st.f_bsize));
7105 PyStructSequence_SET_ITEM(v, 1, PyInt_FromLong((long) st.f_frsize));
7106 PyStructSequence_SET_ITEM(v, 2, PyInt_FromLong((long) st.f_blocks));
7107 PyStructSequence_SET_ITEM(v, 3, PyInt_FromLong((long) st.f_bfree));
7108 PyStructSequence_SET_ITEM(v, 4, PyInt_FromLong((long) st.f_bavail));
7109 PyStructSequence_SET_ITEM(v, 5, PyInt_FromLong((long) st.f_files));
7110 PyStructSequence_SET_ITEM(v, 6, PyInt_FromLong((long) st.f_ffree));
7111 PyStructSequence_SET_ITEM(v, 7, PyInt_FromLong((long) st.f_favail));
7112 PyStructSequence_SET_ITEM(v, 8, PyInt_FromLong((long) st.f_flag));
7113 PyStructSequence_SET_ITEM(v, 9, PyInt_FromLong((long) st.f_namemax));
7114#else
7115 PyStructSequence_SET_ITEM(v, 0, PyInt_FromLong((long) st.f_bsize));
7116 PyStructSequence_SET_ITEM(v, 1, PyInt_FromLong((long) st.f_frsize));
Tim Peters5aa91602002-01-30 05:46:57 +00007117 PyStructSequence_SET_ITEM(v, 2,
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00007118 PyLong_FromLongLong((PY_LONG_LONG) st.f_blocks));
Tim Peters5aa91602002-01-30 05:46:57 +00007119 PyStructSequence_SET_ITEM(v, 3,
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00007120 PyLong_FromLongLong((PY_LONG_LONG) st.f_bfree));
Guido van Rossum98bf58f2001-10-18 20:34:25 +00007121 PyStructSequence_SET_ITEM(v, 4,
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00007122 PyLong_FromLongLong((PY_LONG_LONG) st.f_bavail));
Tim Peters5aa91602002-01-30 05:46:57 +00007123 PyStructSequence_SET_ITEM(v, 5,
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00007124 PyLong_FromLongLong((PY_LONG_LONG) st.f_files));
Tim Peters5aa91602002-01-30 05:46:57 +00007125 PyStructSequence_SET_ITEM(v, 6,
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00007126 PyLong_FromLongLong((PY_LONG_LONG) st.f_ffree));
Tim Peters5aa91602002-01-30 05:46:57 +00007127 PyStructSequence_SET_ITEM(v, 7,
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00007128 PyLong_FromLongLong((PY_LONG_LONG) st.f_favail));
Guido van Rossum98bf58f2001-10-18 20:34:25 +00007129 PyStructSequence_SET_ITEM(v, 8, PyInt_FromLong((long) st.f_flag));
7130 PyStructSequence_SET_ITEM(v, 9, PyInt_FromLong((long) st.f_namemax));
7131#endif
7132
7133 return v;
7134}
7135
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007136PyDoc_STRVAR(posix_fstatvfs__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007137"fstatvfs(fd) -> statvfs result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007138Perform an fstatvfs system call on the given fd.");
Guido van Rossum94f6f721999-01-06 18:42:14 +00007139
7140static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007141posix_fstatvfs(PyObject *self, PyObject *args)
Guido van Rossum94f6f721999-01-06 18:42:14 +00007142{
7143 int fd, res;
7144 struct statvfs st;
Guido van Rossum98bf58f2001-10-18 20:34:25 +00007145
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007146 if (!PyArg_ParseTuple(args, "i:fstatvfs", &fd))
Guido van Rossum94f6f721999-01-06 18:42:14 +00007147 return NULL;
7148 Py_BEGIN_ALLOW_THREADS
7149 res = fstatvfs(fd, &st);
7150 Py_END_ALLOW_THREADS
7151 if (res != 0)
7152 return posix_error();
Guido van Rossum98bf58f2001-10-18 20:34:25 +00007153
7154 return _pystatvfs_fromstructstatvfs(st);
Guido van Rossum94f6f721999-01-06 18:42:14 +00007155}
Martin v. Löwis5f5d99c2006-05-16 07:05:37 +00007156#endif /* HAVE_FSTATVFS && HAVE_SYS_STATVFS_H */
Guido van Rossum94f6f721999-01-06 18:42:14 +00007157
7158
Martin v. Löwis5f5d99c2006-05-16 07:05:37 +00007159#if defined(HAVE_STATVFS) && defined(HAVE_SYS_STATVFS_H)
Guido van Rossum94f6f721999-01-06 18:42:14 +00007160#include <sys/statvfs.h>
7161
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007162PyDoc_STRVAR(posix_statvfs__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007163"statvfs(path) -> statvfs result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007164Perform a statvfs system call on the given path.");
Guido van Rossum94f6f721999-01-06 18:42:14 +00007165
7166static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007167posix_statvfs(PyObject *self, PyObject *args)
Guido van Rossum94f6f721999-01-06 18:42:14 +00007168{
7169 char *path;
7170 int res;
7171 struct statvfs st;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007172 if (!PyArg_ParseTuple(args, "s:statvfs", &path))
Guido van Rossum94f6f721999-01-06 18:42:14 +00007173 return NULL;
7174 Py_BEGIN_ALLOW_THREADS
7175 res = statvfs(path, &st);
7176 Py_END_ALLOW_THREADS
7177 if (res != 0)
7178 return posix_error_with_filename(path);
Guido van Rossum98bf58f2001-10-18 20:34:25 +00007179
7180 return _pystatvfs_fromstructstatvfs(st);
Guido van Rossum94f6f721999-01-06 18:42:14 +00007181}
7182#endif /* HAVE_STATVFS */
7183
7184
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007185#ifdef HAVE_TEMPNAM
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007186PyDoc_STRVAR(posix_tempnam__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007187"tempnam([dir[, prefix]]) -> string\n\n\
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007188Return a unique name for a temporary file.\n\
Neal Norwitz50d5d4f2002-07-30 01:17:43 +00007189The directory and a prefix may be specified as strings; they may be omitted\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007190or None if not needed.");
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007191
7192static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007193posix_tempnam(PyObject *self, PyObject *args)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007194{
7195 PyObject *result = NULL;
7196 char *dir = NULL;
7197 char *pfx = NULL;
7198 char *name;
7199
7200 if (!PyArg_ParseTuple(args, "|zz:tempnam", &dir, &pfx))
7201 return NULL;
Skip Montanaro95618b52001-08-18 18:52:10 +00007202
7203 if (PyErr_Warn(PyExc_RuntimeWarning,
7204 "tempnam is a potential security risk to your program") < 0)
7205 return NULL;
7206
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00007207#ifdef MS_WINDOWS
Fred Drake78b71c22001-07-17 20:37:36 +00007208 name = _tempnam(dir, pfx);
7209#else
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007210 name = tempnam(dir, pfx);
Fred Drake78b71c22001-07-17 20:37:36 +00007211#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007212 if (name == NULL)
7213 return PyErr_NoMemory();
Gregory P. Smithdd96db62008-06-09 04:58:54 +00007214 result = PyString_FromString(name);
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007215 free(name);
7216 return result;
7217}
Guido van Rossumd371ff11999-01-25 16:12:23 +00007218#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007219
7220
7221#ifdef HAVE_TMPFILE
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007222PyDoc_STRVAR(posix_tmpfile__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007223"tmpfile() -> file object\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007224Create a temporary file with no directory entries.");
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007225
7226static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00007227posix_tmpfile(PyObject *self, PyObject *noargs)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007228{
7229 FILE *fp;
7230
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007231 fp = tmpfile();
7232 if (fp == NULL)
7233 return posix_error();
Guido van Rossumdb9198a2002-06-10 19:23:22 +00007234 return PyFile_FromFile(fp, "<tmpfile>", "w+b", fclose);
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007235}
7236#endif
7237
7238
7239#ifdef HAVE_TMPNAM
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007240PyDoc_STRVAR(posix_tmpnam__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007241"tmpnam() -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007242Return a unique name for a temporary file.");
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007243
7244static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00007245posix_tmpnam(PyObject *self, PyObject *noargs)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007246{
7247 char buffer[L_tmpnam];
7248 char *name;
7249
Skip Montanaro95618b52001-08-18 18:52:10 +00007250 if (PyErr_Warn(PyExc_RuntimeWarning,
7251 "tmpnam is a potential security risk to your program") < 0)
7252 return NULL;
7253
Greg Wardb48bc172000-03-01 21:51:56 +00007254#ifdef USE_TMPNAM_R
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007255 name = tmpnam_r(buffer);
7256#else
7257 name = tmpnam(buffer);
7258#endif
7259 if (name == NULL) {
Neal Norwitzd1e0ef62006-03-20 04:08:12 +00007260 PyObject *err = Py_BuildValue("is", 0,
Greg Wardb48bc172000-03-01 21:51:56 +00007261#ifdef USE_TMPNAM_R
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007262 "unexpected NULL from tmpnam_r"
7263#else
7264 "unexpected NULL from tmpnam"
7265#endif
Neal Norwitzd1e0ef62006-03-20 04:08:12 +00007266 );
7267 PyErr_SetObject(PyExc_OSError, err);
7268 Py_XDECREF(err);
7269 return NULL;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007270 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00007271 return PyString_FromString(buffer);
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007272}
7273#endif
7274
7275
Fred Drakec9680921999-12-13 16:37:25 +00007276/* This is used for fpathconf(), pathconf(), confstr() and sysconf().
7277 * It maps strings representing configuration variable names to
7278 * integer values, allowing those functions to be called with the
Thomas Wouters7e474022000-07-16 12:04:32 +00007279 * magic names instead of polluting the module's namespace with tons of
Fred Drake12c6e2d1999-12-14 21:25:03 +00007280 * rarely-used constants. There are three separate tables that use
7281 * these definitions.
Fred Drakebec628d1999-12-15 18:31:10 +00007282 *
7283 * This code is always included, even if none of the interfaces that
7284 * need it are included. The #if hackery needed to avoid it would be
7285 * sufficiently pervasive that it's not worth the loss of readability.
Fred Drakec9680921999-12-13 16:37:25 +00007286 */
7287struct constdef {
7288 char *name;
7289 long value;
7290};
7291
Fred Drake12c6e2d1999-12-14 21:25:03 +00007292static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007293conv_confname(PyObject *arg, int *valuep, struct constdef *table,
7294 size_t tablesize)
Fred Drake12c6e2d1999-12-14 21:25:03 +00007295{
7296 if (PyInt_Check(arg)) {
7297 *valuep = PyInt_AS_LONG(arg);
7298 return 1;
7299 }
Gregory P. Smithdd96db62008-06-09 04:58:54 +00007300 if (PyString_Check(arg)) {
Fred Drake12c6e2d1999-12-14 21:25:03 +00007301 /* look up the value in the table using a binary search */
Fred Drake699f3522000-06-29 21:12:41 +00007302 size_t lo = 0;
7303 size_t mid;
7304 size_t hi = tablesize;
7305 int cmp;
Gregory P. Smithdd96db62008-06-09 04:58:54 +00007306 char *confname = PyString_AS_STRING(arg);
Fred Drake12c6e2d1999-12-14 21:25:03 +00007307 while (lo < hi) {
7308 mid = (lo + hi) / 2;
7309 cmp = strcmp(confname, table[mid].name);
7310 if (cmp < 0)
7311 hi = mid;
7312 else if (cmp > 0)
7313 lo = mid + 1;
7314 else {
7315 *valuep = table[mid].value;
7316 return 1;
7317 }
7318 }
7319 PyErr_SetString(PyExc_ValueError, "unrecognized configuration name");
7320 }
7321 else
7322 PyErr_SetString(PyExc_TypeError,
7323 "configuration names must be strings or integers");
7324 return 0;
7325}
7326
7327
7328#if defined(HAVE_FPATHCONF) || defined(HAVE_PATHCONF)
7329static struct constdef posix_constants_pathconf[] = {
Fred Draked86ed291999-12-15 15:34:33 +00007330#ifdef _PC_ABI_AIO_XFER_MAX
7331 {"PC_ABI_AIO_XFER_MAX", _PC_ABI_AIO_XFER_MAX},
7332#endif
7333#ifdef _PC_ABI_ASYNC_IO
7334 {"PC_ABI_ASYNC_IO", _PC_ABI_ASYNC_IO},
7335#endif
Fred Drakec9680921999-12-13 16:37:25 +00007336#ifdef _PC_ASYNC_IO
7337 {"PC_ASYNC_IO", _PC_ASYNC_IO},
7338#endif
7339#ifdef _PC_CHOWN_RESTRICTED
7340 {"PC_CHOWN_RESTRICTED", _PC_CHOWN_RESTRICTED},
7341#endif
7342#ifdef _PC_FILESIZEBITS
7343 {"PC_FILESIZEBITS", _PC_FILESIZEBITS},
7344#endif
7345#ifdef _PC_LAST
7346 {"PC_LAST", _PC_LAST},
7347#endif
7348#ifdef _PC_LINK_MAX
7349 {"PC_LINK_MAX", _PC_LINK_MAX},
7350#endif
7351#ifdef _PC_MAX_CANON
7352 {"PC_MAX_CANON", _PC_MAX_CANON},
7353#endif
7354#ifdef _PC_MAX_INPUT
7355 {"PC_MAX_INPUT", _PC_MAX_INPUT},
7356#endif
7357#ifdef _PC_NAME_MAX
7358 {"PC_NAME_MAX", _PC_NAME_MAX},
7359#endif
7360#ifdef _PC_NO_TRUNC
7361 {"PC_NO_TRUNC", _PC_NO_TRUNC},
7362#endif
7363#ifdef _PC_PATH_MAX
7364 {"PC_PATH_MAX", _PC_PATH_MAX},
7365#endif
7366#ifdef _PC_PIPE_BUF
7367 {"PC_PIPE_BUF", _PC_PIPE_BUF},
7368#endif
7369#ifdef _PC_PRIO_IO
7370 {"PC_PRIO_IO", _PC_PRIO_IO},
7371#endif
7372#ifdef _PC_SOCK_MAXBUF
7373 {"PC_SOCK_MAXBUF", _PC_SOCK_MAXBUF},
7374#endif
7375#ifdef _PC_SYNC_IO
7376 {"PC_SYNC_IO", _PC_SYNC_IO},
7377#endif
7378#ifdef _PC_VDISABLE
7379 {"PC_VDISABLE", _PC_VDISABLE},
7380#endif
7381};
7382
Fred Drakec9680921999-12-13 16:37:25 +00007383static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007384conv_path_confname(PyObject *arg, int *valuep)
Fred Drakec9680921999-12-13 16:37:25 +00007385{
7386 return conv_confname(arg, valuep, posix_constants_pathconf,
7387 sizeof(posix_constants_pathconf)
7388 / sizeof(struct constdef));
7389}
7390#endif
7391
7392#ifdef HAVE_FPATHCONF
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007393PyDoc_STRVAR(posix_fpathconf__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007394"fpathconf(fd, name) -> integer\n\n\
Fred Drakec9680921999-12-13 16:37:25 +00007395Return the configuration limit name for the file descriptor fd.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007396If there is no limit, return -1.");
Fred Drakec9680921999-12-13 16:37:25 +00007397
7398static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007399posix_fpathconf(PyObject *self, PyObject *args)
Fred Drakec9680921999-12-13 16:37:25 +00007400{
7401 PyObject *result = NULL;
7402 int name, fd;
7403
Fred Drake12c6e2d1999-12-14 21:25:03 +00007404 if (PyArg_ParseTuple(args, "iO&:fpathconf", &fd,
7405 conv_path_confname, &name)) {
Fred Drakec9680921999-12-13 16:37:25 +00007406 long limit;
7407
7408 errno = 0;
7409 limit = fpathconf(fd, name);
7410 if (limit == -1 && errno != 0)
7411 posix_error();
7412 else
7413 result = PyInt_FromLong(limit);
7414 }
7415 return result;
7416}
7417#endif
7418
7419
7420#ifdef HAVE_PATHCONF
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007421PyDoc_STRVAR(posix_pathconf__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007422"pathconf(path, name) -> integer\n\n\
Fred Drakec9680921999-12-13 16:37:25 +00007423Return the configuration limit name for the file or directory path.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007424If there is no limit, return -1.");
Fred Drakec9680921999-12-13 16:37:25 +00007425
7426static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007427posix_pathconf(PyObject *self, PyObject *args)
Fred Drakec9680921999-12-13 16:37:25 +00007428{
7429 PyObject *result = NULL;
7430 int name;
7431 char *path;
7432
7433 if (PyArg_ParseTuple(args, "sO&:pathconf", &path,
7434 conv_path_confname, &name)) {
7435 long limit;
7436
7437 errno = 0;
7438 limit = pathconf(path, name);
Fred Drake12c6e2d1999-12-14 21:25:03 +00007439 if (limit == -1 && errno != 0) {
Fred Drakec9680921999-12-13 16:37:25 +00007440 if (errno == EINVAL)
7441 /* could be a path or name problem */
7442 posix_error();
7443 else
7444 posix_error_with_filename(path);
Fred Drake12c6e2d1999-12-14 21:25:03 +00007445 }
Fred Drakec9680921999-12-13 16:37:25 +00007446 else
7447 result = PyInt_FromLong(limit);
7448 }
7449 return result;
7450}
7451#endif
7452
7453#ifdef HAVE_CONFSTR
7454static struct constdef posix_constants_confstr[] = {
Fred Draked86ed291999-12-15 15:34:33 +00007455#ifdef _CS_ARCHITECTURE
7456 {"CS_ARCHITECTURE", _CS_ARCHITECTURE},
7457#endif
7458#ifdef _CS_HOSTNAME
7459 {"CS_HOSTNAME", _CS_HOSTNAME},
7460#endif
7461#ifdef _CS_HW_PROVIDER
7462 {"CS_HW_PROVIDER", _CS_HW_PROVIDER},
7463#endif
7464#ifdef _CS_HW_SERIAL
7465 {"CS_HW_SERIAL", _CS_HW_SERIAL},
7466#endif
7467#ifdef _CS_INITTAB_NAME
7468 {"CS_INITTAB_NAME", _CS_INITTAB_NAME},
7469#endif
Fred Drakec9680921999-12-13 16:37:25 +00007470#ifdef _CS_LFS64_CFLAGS
7471 {"CS_LFS64_CFLAGS", _CS_LFS64_CFLAGS},
7472#endif
7473#ifdef _CS_LFS64_LDFLAGS
7474 {"CS_LFS64_LDFLAGS", _CS_LFS64_LDFLAGS},
7475#endif
7476#ifdef _CS_LFS64_LIBS
7477 {"CS_LFS64_LIBS", _CS_LFS64_LIBS},
7478#endif
7479#ifdef _CS_LFS64_LINTFLAGS
7480 {"CS_LFS64_LINTFLAGS", _CS_LFS64_LINTFLAGS},
7481#endif
7482#ifdef _CS_LFS_CFLAGS
7483 {"CS_LFS_CFLAGS", _CS_LFS_CFLAGS},
7484#endif
7485#ifdef _CS_LFS_LDFLAGS
7486 {"CS_LFS_LDFLAGS", _CS_LFS_LDFLAGS},
7487#endif
7488#ifdef _CS_LFS_LIBS
7489 {"CS_LFS_LIBS", _CS_LFS_LIBS},
7490#endif
7491#ifdef _CS_LFS_LINTFLAGS
7492 {"CS_LFS_LINTFLAGS", _CS_LFS_LINTFLAGS},
7493#endif
Fred Draked86ed291999-12-15 15:34:33 +00007494#ifdef _CS_MACHINE
7495 {"CS_MACHINE", _CS_MACHINE},
7496#endif
Fred Drakec9680921999-12-13 16:37:25 +00007497#ifdef _CS_PATH
7498 {"CS_PATH", _CS_PATH},
7499#endif
Fred Draked86ed291999-12-15 15:34:33 +00007500#ifdef _CS_RELEASE
7501 {"CS_RELEASE", _CS_RELEASE},
7502#endif
7503#ifdef _CS_SRPC_DOMAIN
7504 {"CS_SRPC_DOMAIN", _CS_SRPC_DOMAIN},
7505#endif
7506#ifdef _CS_SYSNAME
7507 {"CS_SYSNAME", _CS_SYSNAME},
7508#endif
7509#ifdef _CS_VERSION
7510 {"CS_VERSION", _CS_VERSION},
7511#endif
Fred Drakec9680921999-12-13 16:37:25 +00007512#ifdef _CS_XBS5_ILP32_OFF32_CFLAGS
7513 {"CS_XBS5_ILP32_OFF32_CFLAGS", _CS_XBS5_ILP32_OFF32_CFLAGS},
7514#endif
7515#ifdef _CS_XBS5_ILP32_OFF32_LDFLAGS
7516 {"CS_XBS5_ILP32_OFF32_LDFLAGS", _CS_XBS5_ILP32_OFF32_LDFLAGS},
7517#endif
7518#ifdef _CS_XBS5_ILP32_OFF32_LIBS
7519 {"CS_XBS5_ILP32_OFF32_LIBS", _CS_XBS5_ILP32_OFF32_LIBS},
7520#endif
7521#ifdef _CS_XBS5_ILP32_OFF32_LINTFLAGS
7522 {"CS_XBS5_ILP32_OFF32_LINTFLAGS", _CS_XBS5_ILP32_OFF32_LINTFLAGS},
7523#endif
7524#ifdef _CS_XBS5_ILP32_OFFBIG_CFLAGS
7525 {"CS_XBS5_ILP32_OFFBIG_CFLAGS", _CS_XBS5_ILP32_OFFBIG_CFLAGS},
7526#endif
7527#ifdef _CS_XBS5_ILP32_OFFBIG_LDFLAGS
7528 {"CS_XBS5_ILP32_OFFBIG_LDFLAGS", _CS_XBS5_ILP32_OFFBIG_LDFLAGS},
7529#endif
7530#ifdef _CS_XBS5_ILP32_OFFBIG_LIBS
7531 {"CS_XBS5_ILP32_OFFBIG_LIBS", _CS_XBS5_ILP32_OFFBIG_LIBS},
7532#endif
7533#ifdef _CS_XBS5_ILP32_OFFBIG_LINTFLAGS
7534 {"CS_XBS5_ILP32_OFFBIG_LINTFLAGS", _CS_XBS5_ILP32_OFFBIG_LINTFLAGS},
7535#endif
7536#ifdef _CS_XBS5_LP64_OFF64_CFLAGS
7537 {"CS_XBS5_LP64_OFF64_CFLAGS", _CS_XBS5_LP64_OFF64_CFLAGS},
7538#endif
7539#ifdef _CS_XBS5_LP64_OFF64_LDFLAGS
7540 {"CS_XBS5_LP64_OFF64_LDFLAGS", _CS_XBS5_LP64_OFF64_LDFLAGS},
7541#endif
7542#ifdef _CS_XBS5_LP64_OFF64_LIBS
7543 {"CS_XBS5_LP64_OFF64_LIBS", _CS_XBS5_LP64_OFF64_LIBS},
7544#endif
7545#ifdef _CS_XBS5_LP64_OFF64_LINTFLAGS
7546 {"CS_XBS5_LP64_OFF64_LINTFLAGS", _CS_XBS5_LP64_OFF64_LINTFLAGS},
7547#endif
7548#ifdef _CS_XBS5_LPBIG_OFFBIG_CFLAGS
7549 {"CS_XBS5_LPBIG_OFFBIG_CFLAGS", _CS_XBS5_LPBIG_OFFBIG_CFLAGS},
7550#endif
7551#ifdef _CS_XBS5_LPBIG_OFFBIG_LDFLAGS
7552 {"CS_XBS5_LPBIG_OFFBIG_LDFLAGS", _CS_XBS5_LPBIG_OFFBIG_LDFLAGS},
7553#endif
7554#ifdef _CS_XBS5_LPBIG_OFFBIG_LIBS
7555 {"CS_XBS5_LPBIG_OFFBIG_LIBS", _CS_XBS5_LPBIG_OFFBIG_LIBS},
7556#endif
7557#ifdef _CS_XBS5_LPBIG_OFFBIG_LINTFLAGS
7558 {"CS_XBS5_LPBIG_OFFBIG_LINTFLAGS", _CS_XBS5_LPBIG_OFFBIG_LINTFLAGS},
7559#endif
Fred Draked86ed291999-12-15 15:34:33 +00007560#ifdef _MIPS_CS_AVAIL_PROCESSORS
7561 {"MIPS_CS_AVAIL_PROCESSORS", _MIPS_CS_AVAIL_PROCESSORS},
7562#endif
7563#ifdef _MIPS_CS_BASE
7564 {"MIPS_CS_BASE", _MIPS_CS_BASE},
7565#endif
7566#ifdef _MIPS_CS_HOSTID
7567 {"MIPS_CS_HOSTID", _MIPS_CS_HOSTID},
7568#endif
7569#ifdef _MIPS_CS_HW_NAME
7570 {"MIPS_CS_HW_NAME", _MIPS_CS_HW_NAME},
7571#endif
7572#ifdef _MIPS_CS_NUM_PROCESSORS
7573 {"MIPS_CS_NUM_PROCESSORS", _MIPS_CS_NUM_PROCESSORS},
7574#endif
7575#ifdef _MIPS_CS_OSREL_MAJ
7576 {"MIPS_CS_OSREL_MAJ", _MIPS_CS_OSREL_MAJ},
7577#endif
7578#ifdef _MIPS_CS_OSREL_MIN
7579 {"MIPS_CS_OSREL_MIN", _MIPS_CS_OSREL_MIN},
7580#endif
7581#ifdef _MIPS_CS_OSREL_PATCH
7582 {"MIPS_CS_OSREL_PATCH", _MIPS_CS_OSREL_PATCH},
7583#endif
7584#ifdef _MIPS_CS_OS_NAME
7585 {"MIPS_CS_OS_NAME", _MIPS_CS_OS_NAME},
7586#endif
7587#ifdef _MIPS_CS_OS_PROVIDER
7588 {"MIPS_CS_OS_PROVIDER", _MIPS_CS_OS_PROVIDER},
7589#endif
7590#ifdef _MIPS_CS_PROCESSORS
7591 {"MIPS_CS_PROCESSORS", _MIPS_CS_PROCESSORS},
7592#endif
7593#ifdef _MIPS_CS_SERIAL
7594 {"MIPS_CS_SERIAL", _MIPS_CS_SERIAL},
7595#endif
7596#ifdef _MIPS_CS_VENDOR
7597 {"MIPS_CS_VENDOR", _MIPS_CS_VENDOR},
7598#endif
Fred Drakec9680921999-12-13 16:37:25 +00007599};
7600
7601static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007602conv_confstr_confname(PyObject *arg, int *valuep)
Fred Drakec9680921999-12-13 16:37:25 +00007603{
7604 return conv_confname(arg, valuep, posix_constants_confstr,
7605 sizeof(posix_constants_confstr)
7606 / sizeof(struct constdef));
7607}
7608
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007609PyDoc_STRVAR(posix_confstr__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007610"confstr(name) -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007611Return a string-valued system configuration variable.");
Fred Drakec9680921999-12-13 16:37:25 +00007612
7613static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007614posix_confstr(PyObject *self, PyObject *args)
Fred Drakec9680921999-12-13 16:37:25 +00007615{
7616 PyObject *result = NULL;
7617 int name;
Neal Norwitz449b24e2006-04-20 06:56:05 +00007618 char buffer[256];
Fred Drakec9680921999-12-13 16:37:25 +00007619
7620 if (PyArg_ParseTuple(args, "O&:confstr", conv_confstr_confname, &name)) {
Skip Montanarodd527fc2006-04-18 00:49:49 +00007621 int len;
Fred Drakec9680921999-12-13 16:37:25 +00007622
Fred Drakec9680921999-12-13 16:37:25 +00007623 errno = 0;
Skip Montanarodd527fc2006-04-18 00:49:49 +00007624 len = confstr(name, buffer, sizeof(buffer));
Skip Montanaro94785ef2006-04-20 01:29:48 +00007625 if (len == 0) {
7626 if (errno) {
7627 posix_error();
7628 }
7629 else {
7630 result = Py_None;
7631 Py_INCREF(Py_None);
7632 }
Fred Drakec9680921999-12-13 16:37:25 +00007633 }
7634 else {
Neal Norwitz0d21b1e2006-04-20 06:44:42 +00007635 if ((unsigned int)len >= sizeof(buffer)) {
Gregory P. Smithdd96db62008-06-09 04:58:54 +00007636 result = PyString_FromStringAndSize(NULL, len-1);
Fred Drakec9680921999-12-13 16:37:25 +00007637 if (result != NULL)
Gregory P. Smithdd96db62008-06-09 04:58:54 +00007638 confstr(name, PyString_AS_STRING(result), len);
Fred Drakec9680921999-12-13 16:37:25 +00007639 }
7640 else
Gregory P. Smithdd96db62008-06-09 04:58:54 +00007641 result = PyString_FromStringAndSize(buffer, len-1);
Fred Drakec9680921999-12-13 16:37:25 +00007642 }
7643 }
7644 return result;
7645}
7646#endif
7647
7648
7649#ifdef HAVE_SYSCONF
7650static struct constdef posix_constants_sysconf[] = {
7651#ifdef _SC_2_CHAR_TERM
7652 {"SC_2_CHAR_TERM", _SC_2_CHAR_TERM},
7653#endif
7654#ifdef _SC_2_C_BIND
7655 {"SC_2_C_BIND", _SC_2_C_BIND},
7656#endif
7657#ifdef _SC_2_C_DEV
7658 {"SC_2_C_DEV", _SC_2_C_DEV},
7659#endif
7660#ifdef _SC_2_C_VERSION
7661 {"SC_2_C_VERSION", _SC_2_C_VERSION},
7662#endif
7663#ifdef _SC_2_FORT_DEV
7664 {"SC_2_FORT_DEV", _SC_2_FORT_DEV},
7665#endif
7666#ifdef _SC_2_FORT_RUN
7667 {"SC_2_FORT_RUN", _SC_2_FORT_RUN},
7668#endif
7669#ifdef _SC_2_LOCALEDEF
7670 {"SC_2_LOCALEDEF", _SC_2_LOCALEDEF},
7671#endif
7672#ifdef _SC_2_SW_DEV
7673 {"SC_2_SW_DEV", _SC_2_SW_DEV},
7674#endif
7675#ifdef _SC_2_UPE
7676 {"SC_2_UPE", _SC_2_UPE},
7677#endif
7678#ifdef _SC_2_VERSION
7679 {"SC_2_VERSION", _SC_2_VERSION},
7680#endif
Fred Draked86ed291999-12-15 15:34:33 +00007681#ifdef _SC_ABI_ASYNCHRONOUS_IO
7682 {"SC_ABI_ASYNCHRONOUS_IO", _SC_ABI_ASYNCHRONOUS_IO},
7683#endif
7684#ifdef _SC_ACL
7685 {"SC_ACL", _SC_ACL},
7686#endif
Fred Drakec9680921999-12-13 16:37:25 +00007687#ifdef _SC_AIO_LISTIO_MAX
7688 {"SC_AIO_LISTIO_MAX", _SC_AIO_LISTIO_MAX},
7689#endif
Fred Drakec9680921999-12-13 16:37:25 +00007690#ifdef _SC_AIO_MAX
7691 {"SC_AIO_MAX", _SC_AIO_MAX},
7692#endif
7693#ifdef _SC_AIO_PRIO_DELTA_MAX
7694 {"SC_AIO_PRIO_DELTA_MAX", _SC_AIO_PRIO_DELTA_MAX},
7695#endif
7696#ifdef _SC_ARG_MAX
7697 {"SC_ARG_MAX", _SC_ARG_MAX},
7698#endif
7699#ifdef _SC_ASYNCHRONOUS_IO
7700 {"SC_ASYNCHRONOUS_IO", _SC_ASYNCHRONOUS_IO},
7701#endif
7702#ifdef _SC_ATEXIT_MAX
7703 {"SC_ATEXIT_MAX", _SC_ATEXIT_MAX},
7704#endif
Fred Draked86ed291999-12-15 15:34:33 +00007705#ifdef _SC_AUDIT
7706 {"SC_AUDIT", _SC_AUDIT},
7707#endif
Fred Drakec9680921999-12-13 16:37:25 +00007708#ifdef _SC_AVPHYS_PAGES
7709 {"SC_AVPHYS_PAGES", _SC_AVPHYS_PAGES},
7710#endif
7711#ifdef _SC_BC_BASE_MAX
7712 {"SC_BC_BASE_MAX", _SC_BC_BASE_MAX},
7713#endif
7714#ifdef _SC_BC_DIM_MAX
7715 {"SC_BC_DIM_MAX", _SC_BC_DIM_MAX},
7716#endif
7717#ifdef _SC_BC_SCALE_MAX
7718 {"SC_BC_SCALE_MAX", _SC_BC_SCALE_MAX},
7719#endif
7720#ifdef _SC_BC_STRING_MAX
7721 {"SC_BC_STRING_MAX", _SC_BC_STRING_MAX},
7722#endif
Fred Draked86ed291999-12-15 15:34:33 +00007723#ifdef _SC_CAP
7724 {"SC_CAP", _SC_CAP},
7725#endif
Fred Drakec9680921999-12-13 16:37:25 +00007726#ifdef _SC_CHARCLASS_NAME_MAX
7727 {"SC_CHARCLASS_NAME_MAX", _SC_CHARCLASS_NAME_MAX},
7728#endif
7729#ifdef _SC_CHAR_BIT
7730 {"SC_CHAR_BIT", _SC_CHAR_BIT},
7731#endif
7732#ifdef _SC_CHAR_MAX
7733 {"SC_CHAR_MAX", _SC_CHAR_MAX},
7734#endif
7735#ifdef _SC_CHAR_MIN
7736 {"SC_CHAR_MIN", _SC_CHAR_MIN},
7737#endif
7738#ifdef _SC_CHILD_MAX
7739 {"SC_CHILD_MAX", _SC_CHILD_MAX},
7740#endif
7741#ifdef _SC_CLK_TCK
7742 {"SC_CLK_TCK", _SC_CLK_TCK},
7743#endif
7744#ifdef _SC_COHER_BLKSZ
7745 {"SC_COHER_BLKSZ", _SC_COHER_BLKSZ},
7746#endif
7747#ifdef _SC_COLL_WEIGHTS_MAX
7748 {"SC_COLL_WEIGHTS_MAX", _SC_COLL_WEIGHTS_MAX},
7749#endif
7750#ifdef _SC_DCACHE_ASSOC
7751 {"SC_DCACHE_ASSOC", _SC_DCACHE_ASSOC},
7752#endif
7753#ifdef _SC_DCACHE_BLKSZ
7754 {"SC_DCACHE_BLKSZ", _SC_DCACHE_BLKSZ},
7755#endif
7756#ifdef _SC_DCACHE_LINESZ
7757 {"SC_DCACHE_LINESZ", _SC_DCACHE_LINESZ},
7758#endif
7759#ifdef _SC_DCACHE_SZ
7760 {"SC_DCACHE_SZ", _SC_DCACHE_SZ},
7761#endif
7762#ifdef _SC_DCACHE_TBLKSZ
7763 {"SC_DCACHE_TBLKSZ", _SC_DCACHE_TBLKSZ},
7764#endif
7765#ifdef _SC_DELAYTIMER_MAX
7766 {"SC_DELAYTIMER_MAX", _SC_DELAYTIMER_MAX},
7767#endif
7768#ifdef _SC_EQUIV_CLASS_MAX
7769 {"SC_EQUIV_CLASS_MAX", _SC_EQUIV_CLASS_MAX},
7770#endif
7771#ifdef _SC_EXPR_NEST_MAX
7772 {"SC_EXPR_NEST_MAX", _SC_EXPR_NEST_MAX},
7773#endif
7774#ifdef _SC_FSYNC
7775 {"SC_FSYNC", _SC_FSYNC},
7776#endif
7777#ifdef _SC_GETGR_R_SIZE_MAX
7778 {"SC_GETGR_R_SIZE_MAX", _SC_GETGR_R_SIZE_MAX},
7779#endif
7780#ifdef _SC_GETPW_R_SIZE_MAX
7781 {"SC_GETPW_R_SIZE_MAX", _SC_GETPW_R_SIZE_MAX},
7782#endif
7783#ifdef _SC_ICACHE_ASSOC
7784 {"SC_ICACHE_ASSOC", _SC_ICACHE_ASSOC},
7785#endif
7786#ifdef _SC_ICACHE_BLKSZ
7787 {"SC_ICACHE_BLKSZ", _SC_ICACHE_BLKSZ},
7788#endif
7789#ifdef _SC_ICACHE_LINESZ
7790 {"SC_ICACHE_LINESZ", _SC_ICACHE_LINESZ},
7791#endif
7792#ifdef _SC_ICACHE_SZ
7793 {"SC_ICACHE_SZ", _SC_ICACHE_SZ},
7794#endif
Fred Draked86ed291999-12-15 15:34:33 +00007795#ifdef _SC_INF
7796 {"SC_INF", _SC_INF},
7797#endif
Fred Drakec9680921999-12-13 16:37:25 +00007798#ifdef _SC_INT_MAX
7799 {"SC_INT_MAX", _SC_INT_MAX},
7800#endif
7801#ifdef _SC_INT_MIN
7802 {"SC_INT_MIN", _SC_INT_MIN},
7803#endif
7804#ifdef _SC_IOV_MAX
7805 {"SC_IOV_MAX", _SC_IOV_MAX},
7806#endif
Fred Draked86ed291999-12-15 15:34:33 +00007807#ifdef _SC_IP_SECOPTS
7808 {"SC_IP_SECOPTS", _SC_IP_SECOPTS},
7809#endif
Fred Drakec9680921999-12-13 16:37:25 +00007810#ifdef _SC_JOB_CONTROL
7811 {"SC_JOB_CONTROL", _SC_JOB_CONTROL},
7812#endif
Fred Draked86ed291999-12-15 15:34:33 +00007813#ifdef _SC_KERN_POINTERS
7814 {"SC_KERN_POINTERS", _SC_KERN_POINTERS},
7815#endif
7816#ifdef _SC_KERN_SIM
7817 {"SC_KERN_SIM", _SC_KERN_SIM},
7818#endif
Fred Drakec9680921999-12-13 16:37:25 +00007819#ifdef _SC_LINE_MAX
7820 {"SC_LINE_MAX", _SC_LINE_MAX},
7821#endif
7822#ifdef _SC_LOGIN_NAME_MAX
7823 {"SC_LOGIN_NAME_MAX", _SC_LOGIN_NAME_MAX},
7824#endif
7825#ifdef _SC_LOGNAME_MAX
7826 {"SC_LOGNAME_MAX", _SC_LOGNAME_MAX},
7827#endif
7828#ifdef _SC_LONG_BIT
7829 {"SC_LONG_BIT", _SC_LONG_BIT},
7830#endif
Fred Draked86ed291999-12-15 15:34:33 +00007831#ifdef _SC_MAC
7832 {"SC_MAC", _SC_MAC},
7833#endif
Fred Drakec9680921999-12-13 16:37:25 +00007834#ifdef _SC_MAPPED_FILES
7835 {"SC_MAPPED_FILES", _SC_MAPPED_FILES},
7836#endif
7837#ifdef _SC_MAXPID
7838 {"SC_MAXPID", _SC_MAXPID},
7839#endif
7840#ifdef _SC_MB_LEN_MAX
7841 {"SC_MB_LEN_MAX", _SC_MB_LEN_MAX},
7842#endif
7843#ifdef _SC_MEMLOCK
7844 {"SC_MEMLOCK", _SC_MEMLOCK},
7845#endif
7846#ifdef _SC_MEMLOCK_RANGE
7847 {"SC_MEMLOCK_RANGE", _SC_MEMLOCK_RANGE},
7848#endif
7849#ifdef _SC_MEMORY_PROTECTION
7850 {"SC_MEMORY_PROTECTION", _SC_MEMORY_PROTECTION},
7851#endif
7852#ifdef _SC_MESSAGE_PASSING
7853 {"SC_MESSAGE_PASSING", _SC_MESSAGE_PASSING},
7854#endif
Fred Draked86ed291999-12-15 15:34:33 +00007855#ifdef _SC_MMAP_FIXED_ALIGNMENT
7856 {"SC_MMAP_FIXED_ALIGNMENT", _SC_MMAP_FIXED_ALIGNMENT},
7857#endif
Fred Drakec9680921999-12-13 16:37:25 +00007858#ifdef _SC_MQ_OPEN_MAX
7859 {"SC_MQ_OPEN_MAX", _SC_MQ_OPEN_MAX},
7860#endif
7861#ifdef _SC_MQ_PRIO_MAX
7862 {"SC_MQ_PRIO_MAX", _SC_MQ_PRIO_MAX},
7863#endif
Fred Draked86ed291999-12-15 15:34:33 +00007864#ifdef _SC_NACLS_MAX
7865 {"SC_NACLS_MAX", _SC_NACLS_MAX},
7866#endif
Fred Drakec9680921999-12-13 16:37:25 +00007867#ifdef _SC_NGROUPS_MAX
7868 {"SC_NGROUPS_MAX", _SC_NGROUPS_MAX},
7869#endif
7870#ifdef _SC_NL_ARGMAX
7871 {"SC_NL_ARGMAX", _SC_NL_ARGMAX},
7872#endif
7873#ifdef _SC_NL_LANGMAX
7874 {"SC_NL_LANGMAX", _SC_NL_LANGMAX},
7875#endif
7876#ifdef _SC_NL_MSGMAX
7877 {"SC_NL_MSGMAX", _SC_NL_MSGMAX},
7878#endif
7879#ifdef _SC_NL_NMAX
7880 {"SC_NL_NMAX", _SC_NL_NMAX},
7881#endif
7882#ifdef _SC_NL_SETMAX
7883 {"SC_NL_SETMAX", _SC_NL_SETMAX},
7884#endif
7885#ifdef _SC_NL_TEXTMAX
7886 {"SC_NL_TEXTMAX", _SC_NL_TEXTMAX},
7887#endif
7888#ifdef _SC_NPROCESSORS_CONF
7889 {"SC_NPROCESSORS_CONF", _SC_NPROCESSORS_CONF},
7890#endif
7891#ifdef _SC_NPROCESSORS_ONLN
7892 {"SC_NPROCESSORS_ONLN", _SC_NPROCESSORS_ONLN},
7893#endif
Fred Draked86ed291999-12-15 15:34:33 +00007894#ifdef _SC_NPROC_CONF
7895 {"SC_NPROC_CONF", _SC_NPROC_CONF},
7896#endif
7897#ifdef _SC_NPROC_ONLN
7898 {"SC_NPROC_ONLN", _SC_NPROC_ONLN},
7899#endif
Fred Drakec9680921999-12-13 16:37:25 +00007900#ifdef _SC_NZERO
7901 {"SC_NZERO", _SC_NZERO},
7902#endif
7903#ifdef _SC_OPEN_MAX
7904 {"SC_OPEN_MAX", _SC_OPEN_MAX},
7905#endif
7906#ifdef _SC_PAGESIZE
7907 {"SC_PAGESIZE", _SC_PAGESIZE},
7908#endif
7909#ifdef _SC_PAGE_SIZE
7910 {"SC_PAGE_SIZE", _SC_PAGE_SIZE},
7911#endif
7912#ifdef _SC_PASS_MAX
7913 {"SC_PASS_MAX", _SC_PASS_MAX},
7914#endif
7915#ifdef _SC_PHYS_PAGES
7916 {"SC_PHYS_PAGES", _SC_PHYS_PAGES},
7917#endif
7918#ifdef _SC_PII
7919 {"SC_PII", _SC_PII},
7920#endif
7921#ifdef _SC_PII_INTERNET
7922 {"SC_PII_INTERNET", _SC_PII_INTERNET},
7923#endif
7924#ifdef _SC_PII_INTERNET_DGRAM
7925 {"SC_PII_INTERNET_DGRAM", _SC_PII_INTERNET_DGRAM},
7926#endif
7927#ifdef _SC_PII_INTERNET_STREAM
7928 {"SC_PII_INTERNET_STREAM", _SC_PII_INTERNET_STREAM},
7929#endif
7930#ifdef _SC_PII_OSI
7931 {"SC_PII_OSI", _SC_PII_OSI},
7932#endif
7933#ifdef _SC_PII_OSI_CLTS
7934 {"SC_PII_OSI_CLTS", _SC_PII_OSI_CLTS},
7935#endif
7936#ifdef _SC_PII_OSI_COTS
7937 {"SC_PII_OSI_COTS", _SC_PII_OSI_COTS},
7938#endif
7939#ifdef _SC_PII_OSI_M
7940 {"SC_PII_OSI_M", _SC_PII_OSI_M},
7941#endif
7942#ifdef _SC_PII_SOCKET
7943 {"SC_PII_SOCKET", _SC_PII_SOCKET},
7944#endif
7945#ifdef _SC_PII_XTI
7946 {"SC_PII_XTI", _SC_PII_XTI},
7947#endif
7948#ifdef _SC_POLL
7949 {"SC_POLL", _SC_POLL},
7950#endif
7951#ifdef _SC_PRIORITIZED_IO
7952 {"SC_PRIORITIZED_IO", _SC_PRIORITIZED_IO},
7953#endif
7954#ifdef _SC_PRIORITY_SCHEDULING
7955 {"SC_PRIORITY_SCHEDULING", _SC_PRIORITY_SCHEDULING},
7956#endif
7957#ifdef _SC_REALTIME_SIGNALS
7958 {"SC_REALTIME_SIGNALS", _SC_REALTIME_SIGNALS},
7959#endif
7960#ifdef _SC_RE_DUP_MAX
7961 {"SC_RE_DUP_MAX", _SC_RE_DUP_MAX},
7962#endif
7963#ifdef _SC_RTSIG_MAX
7964 {"SC_RTSIG_MAX", _SC_RTSIG_MAX},
7965#endif
7966#ifdef _SC_SAVED_IDS
7967 {"SC_SAVED_IDS", _SC_SAVED_IDS},
7968#endif
7969#ifdef _SC_SCHAR_MAX
7970 {"SC_SCHAR_MAX", _SC_SCHAR_MAX},
7971#endif
7972#ifdef _SC_SCHAR_MIN
7973 {"SC_SCHAR_MIN", _SC_SCHAR_MIN},
7974#endif
7975#ifdef _SC_SELECT
7976 {"SC_SELECT", _SC_SELECT},
7977#endif
7978#ifdef _SC_SEMAPHORES
7979 {"SC_SEMAPHORES", _SC_SEMAPHORES},
7980#endif
7981#ifdef _SC_SEM_NSEMS_MAX
7982 {"SC_SEM_NSEMS_MAX", _SC_SEM_NSEMS_MAX},
7983#endif
7984#ifdef _SC_SEM_VALUE_MAX
7985 {"SC_SEM_VALUE_MAX", _SC_SEM_VALUE_MAX},
7986#endif
7987#ifdef _SC_SHARED_MEMORY_OBJECTS
7988 {"SC_SHARED_MEMORY_OBJECTS", _SC_SHARED_MEMORY_OBJECTS},
7989#endif
7990#ifdef _SC_SHRT_MAX
7991 {"SC_SHRT_MAX", _SC_SHRT_MAX},
7992#endif
7993#ifdef _SC_SHRT_MIN
7994 {"SC_SHRT_MIN", _SC_SHRT_MIN},
7995#endif
7996#ifdef _SC_SIGQUEUE_MAX
7997 {"SC_SIGQUEUE_MAX", _SC_SIGQUEUE_MAX},
7998#endif
7999#ifdef _SC_SIGRT_MAX
8000 {"SC_SIGRT_MAX", _SC_SIGRT_MAX},
8001#endif
8002#ifdef _SC_SIGRT_MIN
8003 {"SC_SIGRT_MIN", _SC_SIGRT_MIN},
8004#endif
Fred Draked86ed291999-12-15 15:34:33 +00008005#ifdef _SC_SOFTPOWER
8006 {"SC_SOFTPOWER", _SC_SOFTPOWER},
8007#endif
Fred Drakec9680921999-12-13 16:37:25 +00008008#ifdef _SC_SPLIT_CACHE
8009 {"SC_SPLIT_CACHE", _SC_SPLIT_CACHE},
8010#endif
8011#ifdef _SC_SSIZE_MAX
8012 {"SC_SSIZE_MAX", _SC_SSIZE_MAX},
8013#endif
8014#ifdef _SC_STACK_PROT
8015 {"SC_STACK_PROT", _SC_STACK_PROT},
8016#endif
8017#ifdef _SC_STREAM_MAX
8018 {"SC_STREAM_MAX", _SC_STREAM_MAX},
8019#endif
8020#ifdef _SC_SYNCHRONIZED_IO
8021 {"SC_SYNCHRONIZED_IO", _SC_SYNCHRONIZED_IO},
8022#endif
8023#ifdef _SC_THREADS
8024 {"SC_THREADS", _SC_THREADS},
8025#endif
8026#ifdef _SC_THREAD_ATTR_STACKADDR
8027 {"SC_THREAD_ATTR_STACKADDR", _SC_THREAD_ATTR_STACKADDR},
8028#endif
8029#ifdef _SC_THREAD_ATTR_STACKSIZE
8030 {"SC_THREAD_ATTR_STACKSIZE", _SC_THREAD_ATTR_STACKSIZE},
8031#endif
8032#ifdef _SC_THREAD_DESTRUCTOR_ITERATIONS
8033 {"SC_THREAD_DESTRUCTOR_ITERATIONS", _SC_THREAD_DESTRUCTOR_ITERATIONS},
8034#endif
8035#ifdef _SC_THREAD_KEYS_MAX
8036 {"SC_THREAD_KEYS_MAX", _SC_THREAD_KEYS_MAX},
8037#endif
8038#ifdef _SC_THREAD_PRIORITY_SCHEDULING
8039 {"SC_THREAD_PRIORITY_SCHEDULING", _SC_THREAD_PRIORITY_SCHEDULING},
8040#endif
8041#ifdef _SC_THREAD_PRIO_INHERIT
8042 {"SC_THREAD_PRIO_INHERIT", _SC_THREAD_PRIO_INHERIT},
8043#endif
8044#ifdef _SC_THREAD_PRIO_PROTECT
8045 {"SC_THREAD_PRIO_PROTECT", _SC_THREAD_PRIO_PROTECT},
8046#endif
8047#ifdef _SC_THREAD_PROCESS_SHARED
8048 {"SC_THREAD_PROCESS_SHARED", _SC_THREAD_PROCESS_SHARED},
8049#endif
8050#ifdef _SC_THREAD_SAFE_FUNCTIONS
8051 {"SC_THREAD_SAFE_FUNCTIONS", _SC_THREAD_SAFE_FUNCTIONS},
8052#endif
8053#ifdef _SC_THREAD_STACK_MIN
8054 {"SC_THREAD_STACK_MIN", _SC_THREAD_STACK_MIN},
8055#endif
8056#ifdef _SC_THREAD_THREADS_MAX
8057 {"SC_THREAD_THREADS_MAX", _SC_THREAD_THREADS_MAX},
8058#endif
8059#ifdef _SC_TIMERS
8060 {"SC_TIMERS", _SC_TIMERS},
8061#endif
8062#ifdef _SC_TIMER_MAX
8063 {"SC_TIMER_MAX", _SC_TIMER_MAX},
8064#endif
8065#ifdef _SC_TTY_NAME_MAX
8066 {"SC_TTY_NAME_MAX", _SC_TTY_NAME_MAX},
8067#endif
8068#ifdef _SC_TZNAME_MAX
8069 {"SC_TZNAME_MAX", _SC_TZNAME_MAX},
8070#endif
8071#ifdef _SC_T_IOV_MAX
8072 {"SC_T_IOV_MAX", _SC_T_IOV_MAX},
8073#endif
8074#ifdef _SC_UCHAR_MAX
8075 {"SC_UCHAR_MAX", _SC_UCHAR_MAX},
8076#endif
8077#ifdef _SC_UINT_MAX
8078 {"SC_UINT_MAX", _SC_UINT_MAX},
8079#endif
8080#ifdef _SC_UIO_MAXIOV
8081 {"SC_UIO_MAXIOV", _SC_UIO_MAXIOV},
8082#endif
8083#ifdef _SC_ULONG_MAX
8084 {"SC_ULONG_MAX", _SC_ULONG_MAX},
8085#endif
8086#ifdef _SC_USHRT_MAX
8087 {"SC_USHRT_MAX", _SC_USHRT_MAX},
8088#endif
8089#ifdef _SC_VERSION
8090 {"SC_VERSION", _SC_VERSION},
8091#endif
8092#ifdef _SC_WORD_BIT
8093 {"SC_WORD_BIT", _SC_WORD_BIT},
8094#endif
8095#ifdef _SC_XBS5_ILP32_OFF32
8096 {"SC_XBS5_ILP32_OFF32", _SC_XBS5_ILP32_OFF32},
8097#endif
8098#ifdef _SC_XBS5_ILP32_OFFBIG
8099 {"SC_XBS5_ILP32_OFFBIG", _SC_XBS5_ILP32_OFFBIG},
8100#endif
8101#ifdef _SC_XBS5_LP64_OFF64
8102 {"SC_XBS5_LP64_OFF64", _SC_XBS5_LP64_OFF64},
8103#endif
8104#ifdef _SC_XBS5_LPBIG_OFFBIG
8105 {"SC_XBS5_LPBIG_OFFBIG", _SC_XBS5_LPBIG_OFFBIG},
8106#endif
8107#ifdef _SC_XOPEN_CRYPT
8108 {"SC_XOPEN_CRYPT", _SC_XOPEN_CRYPT},
8109#endif
8110#ifdef _SC_XOPEN_ENH_I18N
8111 {"SC_XOPEN_ENH_I18N", _SC_XOPEN_ENH_I18N},
8112#endif
8113#ifdef _SC_XOPEN_LEGACY
8114 {"SC_XOPEN_LEGACY", _SC_XOPEN_LEGACY},
8115#endif
8116#ifdef _SC_XOPEN_REALTIME
8117 {"SC_XOPEN_REALTIME", _SC_XOPEN_REALTIME},
8118#endif
8119#ifdef _SC_XOPEN_REALTIME_THREADS
8120 {"SC_XOPEN_REALTIME_THREADS", _SC_XOPEN_REALTIME_THREADS},
8121#endif
8122#ifdef _SC_XOPEN_SHM
8123 {"SC_XOPEN_SHM", _SC_XOPEN_SHM},
8124#endif
8125#ifdef _SC_XOPEN_UNIX
8126 {"SC_XOPEN_UNIX", _SC_XOPEN_UNIX},
8127#endif
8128#ifdef _SC_XOPEN_VERSION
8129 {"SC_XOPEN_VERSION", _SC_XOPEN_VERSION},
8130#endif
8131#ifdef _SC_XOPEN_XCU_VERSION
8132 {"SC_XOPEN_XCU_VERSION", _SC_XOPEN_XCU_VERSION},
8133#endif
8134#ifdef _SC_XOPEN_XPG2
8135 {"SC_XOPEN_XPG2", _SC_XOPEN_XPG2},
8136#endif
8137#ifdef _SC_XOPEN_XPG3
8138 {"SC_XOPEN_XPG3", _SC_XOPEN_XPG3},
8139#endif
8140#ifdef _SC_XOPEN_XPG4
8141 {"SC_XOPEN_XPG4", _SC_XOPEN_XPG4},
8142#endif
8143};
8144
8145static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00008146conv_sysconf_confname(PyObject *arg, int *valuep)
Fred Drakec9680921999-12-13 16:37:25 +00008147{
8148 return conv_confname(arg, valuep, posix_constants_sysconf,
8149 sizeof(posix_constants_sysconf)
8150 / sizeof(struct constdef));
8151}
8152
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008153PyDoc_STRVAR(posix_sysconf__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00008154"sysconf(name) -> integer\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008155Return an integer-valued system configuration variable.");
Fred Drakec9680921999-12-13 16:37:25 +00008156
8157static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00008158posix_sysconf(PyObject *self, PyObject *args)
Fred Drakec9680921999-12-13 16:37:25 +00008159{
8160 PyObject *result = NULL;
8161 int name;
8162
8163 if (PyArg_ParseTuple(args, "O&:sysconf", conv_sysconf_confname, &name)) {
8164 int value;
8165
8166 errno = 0;
8167 value = sysconf(name);
8168 if (value == -1 && errno != 0)
8169 posix_error();
8170 else
8171 result = PyInt_FromLong(value);
8172 }
8173 return result;
8174}
8175#endif
8176
8177
Fred Drakebec628d1999-12-15 18:31:10 +00008178/* This code is used to ensure that the tables of configuration value names
8179 * are in sorted order as required by conv_confname(), and also to build the
8180 * the exported dictionaries that are used to publish information about the
8181 * names available on the host platform.
8182 *
8183 * Sorting the table at runtime ensures that the table is properly ordered
8184 * when used, even for platforms we're not able to test on. It also makes
8185 * it easier to add additional entries to the tables.
Fred Draked86ed291999-12-15 15:34:33 +00008186 */
Fred Drakebec628d1999-12-15 18:31:10 +00008187
8188static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00008189cmp_constdefs(const void *v1, const void *v2)
Fred Drakebec628d1999-12-15 18:31:10 +00008190{
8191 const struct constdef *c1 =
8192 (const struct constdef *) v1;
8193 const struct constdef *c2 =
8194 (const struct constdef *) v2;
8195
8196 return strcmp(c1->name, c2->name);
8197}
8198
8199static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00008200setup_confname_table(struct constdef *table, size_t tablesize,
Fred Drake4d1e64b2002-04-15 19:40:07 +00008201 char *tablename, PyObject *module)
Fred Draked86ed291999-12-15 15:34:33 +00008202{
Fred Drakebec628d1999-12-15 18:31:10 +00008203 PyObject *d = NULL;
Barry Warsaw3155db32000-04-13 15:20:40 +00008204 size_t i;
Fred Drakebec628d1999-12-15 18:31:10 +00008205
8206 qsort(table, tablesize, sizeof(struct constdef), cmp_constdefs);
8207 d = PyDict_New();
Barry Warsaw3155db32000-04-13 15:20:40 +00008208 if (d == NULL)
8209 return -1;
Fred Draked86ed291999-12-15 15:34:33 +00008210
Barry Warsaw3155db32000-04-13 15:20:40 +00008211 for (i=0; i < tablesize; ++i) {
8212 PyObject *o = PyInt_FromLong(table[i].value);
8213 if (o == NULL || PyDict_SetItemString(d, table[i].name, o) == -1) {
8214 Py_XDECREF(o);
8215 Py_DECREF(d);
8216 return -1;
Fred Draked86ed291999-12-15 15:34:33 +00008217 }
Barry Warsaw3155db32000-04-13 15:20:40 +00008218 Py_DECREF(o);
Fred Draked86ed291999-12-15 15:34:33 +00008219 }
Fred Drake4d1e64b2002-04-15 19:40:07 +00008220 return PyModule_AddObject(module, tablename, d);
Fred Draked86ed291999-12-15 15:34:33 +00008221}
8222
Fred Drakebec628d1999-12-15 18:31:10 +00008223/* Return -1 on failure, 0 on success. */
8224static int
Fred Drake4d1e64b2002-04-15 19:40:07 +00008225setup_confname_tables(PyObject *module)
Fred Draked86ed291999-12-15 15:34:33 +00008226{
8227#if defined(HAVE_FPATHCONF) || defined(HAVE_PATHCONF)
Fred Drakebec628d1999-12-15 18:31:10 +00008228 if (setup_confname_table(posix_constants_pathconf,
Fred Draked86ed291999-12-15 15:34:33 +00008229 sizeof(posix_constants_pathconf)
8230 / sizeof(struct constdef),
Fred Drake4d1e64b2002-04-15 19:40:07 +00008231 "pathconf_names", module))
Fred Drakebec628d1999-12-15 18:31:10 +00008232 return -1;
Fred Draked86ed291999-12-15 15:34:33 +00008233#endif
8234#ifdef HAVE_CONFSTR
Fred Drakebec628d1999-12-15 18:31:10 +00008235 if (setup_confname_table(posix_constants_confstr,
Fred Draked86ed291999-12-15 15:34:33 +00008236 sizeof(posix_constants_confstr)
8237 / sizeof(struct constdef),
Fred Drake4d1e64b2002-04-15 19:40:07 +00008238 "confstr_names", module))
Fred Drakebec628d1999-12-15 18:31:10 +00008239 return -1;
Fred Draked86ed291999-12-15 15:34:33 +00008240#endif
8241#ifdef HAVE_SYSCONF
Fred Drakebec628d1999-12-15 18:31:10 +00008242 if (setup_confname_table(posix_constants_sysconf,
Fred Draked86ed291999-12-15 15:34:33 +00008243 sizeof(posix_constants_sysconf)
8244 / sizeof(struct constdef),
Fred Drake4d1e64b2002-04-15 19:40:07 +00008245 "sysconf_names", module))
Fred Drakebec628d1999-12-15 18:31:10 +00008246 return -1;
Fred Draked86ed291999-12-15 15:34:33 +00008247#endif
Fred Drakebec628d1999-12-15 18:31:10 +00008248 return 0;
Fred Draked86ed291999-12-15 15:34:33 +00008249}
Fred Draked86ed291999-12-15 15:34:33 +00008250
8251
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008252PyDoc_STRVAR(posix_abort__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00008253"abort() -> does not return!\n\n\
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008254Abort the interpreter immediately. This 'dumps core' or otherwise fails\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008255in the hardest way possible on the hosting operating system.");
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008256
8257static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00008258posix_abort(PyObject *self, PyObject *noargs)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008259{
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008260 abort();
8261 /*NOTREACHED*/
8262 Py_FatalError("abort() called from Python code didn't abort!");
8263 return NULL;
8264}
Fred Drakebec628d1999-12-15 18:31:10 +00008265
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00008266#ifdef MS_WINDOWS
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008267PyDoc_STRVAR(win32_startfile__doc__,
Georg Brandlf4f44152006-02-18 22:29:33 +00008268"startfile(filepath [, operation]) - Start a file with its associated\n\
8269application.\n\
Tim Petersf58a7aa2000-09-22 10:05:54 +00008270\n\
Georg Brandlf4f44152006-02-18 22:29:33 +00008271When \"operation\" is not specified or \"open\", this acts like\n\
8272double-clicking the file in Explorer, or giving the file name as an\n\
8273argument to the DOS \"start\" command: the file is opened with whatever\n\
8274application (if any) its extension is associated.\n\
8275When another \"operation\" is given, it specifies what should be done with\n\
8276the file. A typical operation is \"print\".\n\
Tim Petersf58a7aa2000-09-22 10:05:54 +00008277\n\
8278startfile returns as soon as the associated application is launched.\n\
8279There is no option to wait for the application to close, and no way\n\
8280to retrieve the application's exit status.\n\
8281\n\
8282The filepath is relative to the current directory. If you want to use\n\
8283an absolute path, make sure the first character is not a slash (\"/\");\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008284the underlying Win32 ShellExecute function doesn't work if it is.");
Tim Petersf58a7aa2000-09-22 10:05:54 +00008285
8286static PyObject *
8287win32_startfile(PyObject *self, PyObject *args)
8288{
8289 char *filepath;
Georg Brandlf4f44152006-02-18 22:29:33 +00008290 char *operation = NULL;
Tim Petersf58a7aa2000-09-22 10:05:54 +00008291 HINSTANCE rc;
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00008292
Georg Brandlad89dc82006-04-03 12:26:26 +00008293 if (unicode_file_names()) {
Martin v. Löwis5fe715f2006-04-03 23:01:24 +00008294 PyObject *unipath, *woperation = NULL;
Georg Brandlad89dc82006-04-03 12:26:26 +00008295 if (!PyArg_ParseTuple(args, "U|s:startfile",
8296 &unipath, &operation)) {
8297 PyErr_Clear();
8298 goto normal;
8299 }
8300
Martin v. Löwis5fe715f2006-04-03 23:01:24 +00008301
8302 if (operation) {
8303 woperation = PyUnicode_DecodeASCII(operation,
8304 strlen(operation), NULL);
8305 if (!woperation) {
8306 PyErr_Clear();
8307 operation = NULL;
8308 goto normal;
8309 }
Georg Brandlad89dc82006-04-03 12:26:26 +00008310 }
8311
8312 Py_BEGIN_ALLOW_THREADS
Martin v. Löwis5fe715f2006-04-03 23:01:24 +00008313 rc = ShellExecuteW((HWND)0, woperation ? PyUnicode_AS_UNICODE(woperation) : 0,
Georg Brandlad89dc82006-04-03 12:26:26 +00008314 PyUnicode_AS_UNICODE(unipath),
Georg Brandlad89dc82006-04-03 12:26:26 +00008315 NULL, NULL, SW_SHOWNORMAL);
8316 Py_END_ALLOW_THREADS
8317
Martin v. Löwis5fe715f2006-04-03 23:01:24 +00008318 Py_XDECREF(woperation);
Georg Brandlad89dc82006-04-03 12:26:26 +00008319 if (rc <= (HINSTANCE)32) {
8320 PyObject *errval = win32_error_unicode("startfile",
8321 PyUnicode_AS_UNICODE(unipath));
8322 return errval;
8323 }
8324 Py_INCREF(Py_None);
8325 return Py_None;
8326 }
Georg Brandlad89dc82006-04-03 12:26:26 +00008327
8328normal:
Georg Brandlf4f44152006-02-18 22:29:33 +00008329 if (!PyArg_ParseTuple(args, "et|s:startfile",
8330 Py_FileSystemDefaultEncoding, &filepath,
8331 &operation))
Tim Petersf58a7aa2000-09-22 10:05:54 +00008332 return NULL;
8333 Py_BEGIN_ALLOW_THREADS
Georg Brandlf4f44152006-02-18 22:29:33 +00008334 rc = ShellExecute((HWND)0, operation, filepath,
8335 NULL, NULL, SW_SHOWNORMAL);
Tim Petersf58a7aa2000-09-22 10:05:54 +00008336 Py_END_ALLOW_THREADS
Georg Brandle9f8ec92005-09-25 06:16:40 +00008337 if (rc <= (HINSTANCE)32) {
8338 PyObject *errval = win32_error("startfile", filepath);
8339 PyMem_Free(filepath);
8340 return errval;
8341 }
8342 PyMem_Free(filepath);
Tim Petersf58a7aa2000-09-22 10:05:54 +00008343 Py_INCREF(Py_None);
8344 return Py_None;
8345}
Hirokazu Yamamotob24bb272009-05-17 02:52:09 +00008346#endif /* MS_WINDOWS */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008347
Martin v. Löwis438b5342002-12-27 10:16:42 +00008348#ifdef HAVE_GETLOADAVG
8349PyDoc_STRVAR(posix_getloadavg__doc__,
8350"getloadavg() -> (float, float, float)\n\n\
8351Return the number of processes in the system run queue averaged over\n\
8352the last 1, 5, and 15 minutes or raises OSError if the load average\n\
8353was unobtainable");
8354
8355static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00008356posix_getloadavg(PyObject *self, PyObject *noargs)
Martin v. Löwis438b5342002-12-27 10:16:42 +00008357{
8358 double loadavg[3];
Martin v. Löwis438b5342002-12-27 10:16:42 +00008359 if (getloadavg(loadavg, 3)!=3) {
8360 PyErr_SetString(PyExc_OSError, "Load averages are unobtainable");
8361 return NULL;
8362 } else
8363 return Py_BuildValue("ddd", loadavg[0], loadavg[1], loadavg[2]);
8364}
8365#endif
8366
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008367#ifdef MS_WINDOWS
8368
8369PyDoc_STRVAR(win32_urandom__doc__,
8370"urandom(n) -> str\n\n\
8371Return a string of n random bytes suitable for cryptographic use.");
8372
8373typedef BOOL (WINAPI *CRYPTACQUIRECONTEXTA)(HCRYPTPROV *phProv,\
8374 LPCSTR pszContainer, LPCSTR pszProvider, DWORD dwProvType,\
8375 DWORD dwFlags );
8376typedef BOOL (WINAPI *CRYPTGENRANDOM)(HCRYPTPROV hProv, DWORD dwLen,\
8377 BYTE *pbBuffer );
8378
8379static CRYPTGENRANDOM pCryptGenRandom = NULL;
Martin v. Löwisaf699dd2007-09-04 09:51:57 +00008380/* This handle is never explicitly released. Instead, the operating
8381 system will release it when the process terminates. */
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008382static HCRYPTPROV hCryptProv = 0;
8383
Tim Peters4ad82172004-08-30 17:02:04 +00008384static PyObject*
8385win32_urandom(PyObject *self, PyObject *args)
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008386{
Tim Petersd3115382004-08-30 17:36:46 +00008387 int howMany;
8388 PyObject* result;
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008389
Tim Peters4ad82172004-08-30 17:02:04 +00008390 /* Read arguments */
Tim Peters9b279a82004-08-30 17:10:53 +00008391 if (! PyArg_ParseTuple(args, "i:urandom", &howMany))
Tim Peters4ad82172004-08-30 17:02:04 +00008392 return NULL;
Tim Peters51eba612004-08-30 17:08:02 +00008393 if (howMany < 0)
8394 return PyErr_Format(PyExc_ValueError,
8395 "negative argument not allowed");
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008396
Tim Peters4ad82172004-08-30 17:02:04 +00008397 if (hCryptProv == 0) {
8398 HINSTANCE hAdvAPI32 = NULL;
8399 CRYPTACQUIRECONTEXTA pCryptAcquireContext = NULL;
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008400
Tim Peters4ad82172004-08-30 17:02:04 +00008401 /* Obtain handle to the DLL containing CryptoAPI
8402 This should not fail */
8403 hAdvAPI32 = GetModuleHandle("advapi32.dll");
8404 if(hAdvAPI32 == NULL)
8405 return win32_error("GetModuleHandle", NULL);
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008406
Tim Peters4ad82172004-08-30 17:02:04 +00008407 /* Obtain pointers to the CryptoAPI functions
8408 This will fail on some early versions of Win95 */
8409 pCryptAcquireContext = (CRYPTACQUIRECONTEXTA)GetProcAddress(
8410 hAdvAPI32,
8411 "CryptAcquireContextA");
8412 if (pCryptAcquireContext == NULL)
8413 return PyErr_Format(PyExc_NotImplementedError,
8414 "CryptAcquireContextA not found");
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008415
Tim Peters4ad82172004-08-30 17:02:04 +00008416 pCryptGenRandom = (CRYPTGENRANDOM)GetProcAddress(
8417 hAdvAPI32, "CryptGenRandom");
Georg Brandl74bb7832006-09-06 06:03:59 +00008418 if (pCryptGenRandom == NULL)
Tim Peters4ad82172004-08-30 17:02:04 +00008419 return PyErr_Format(PyExc_NotImplementedError,
8420 "CryptGenRandom not found");
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008421
Tim Peters4ad82172004-08-30 17:02:04 +00008422 /* Acquire context */
8423 if (! pCryptAcquireContext(&hCryptProv, NULL, NULL,
8424 PROV_RSA_FULL, CRYPT_VERIFYCONTEXT))
8425 return win32_error("CryptAcquireContext", NULL);
8426 }
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008427
Tim Peters4ad82172004-08-30 17:02:04 +00008428 /* Allocate bytes */
Gregory P. Smithdd96db62008-06-09 04:58:54 +00008429 result = PyString_FromStringAndSize(NULL, howMany);
Tim Petersd3115382004-08-30 17:36:46 +00008430 if (result != NULL) {
8431 /* Get random data */
Amaury Forgeot d'Arc74bd40d2008-07-21 21:06:46 +00008432 memset(PyString_AS_STRING(result), 0, howMany); /* zero seed */
Tim Petersd3115382004-08-30 17:36:46 +00008433 if (! pCryptGenRandom(hCryptProv, howMany, (unsigned char*)
Gregory P. Smithdd96db62008-06-09 04:58:54 +00008434 PyString_AS_STRING(result))) {
Tim Petersd3115382004-08-30 17:36:46 +00008435 Py_DECREF(result);
8436 return win32_error("CryptGenRandom", NULL);
8437 }
Tim Peters4ad82172004-08-30 17:02:04 +00008438 }
Tim Petersd3115382004-08-30 17:36:46 +00008439 return result;
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008440}
8441#endif
Martin v. Löwis438b5342002-12-27 10:16:42 +00008442
Neal Norwitz2a30cd02006-07-10 01:18:57 +00008443#ifdef __VMS
8444/* Use openssl random routine */
8445#include <openssl/rand.h>
8446PyDoc_STRVAR(vms_urandom__doc__,
8447"urandom(n) -> str\n\n\
8448Return a string of n random bytes suitable for cryptographic use.");
8449
8450static PyObject*
8451vms_urandom(PyObject *self, PyObject *args)
8452{
8453 int howMany;
8454 PyObject* result;
8455
8456 /* Read arguments */
8457 if (! PyArg_ParseTuple(args, "i:urandom", &howMany))
8458 return NULL;
8459 if (howMany < 0)
8460 return PyErr_Format(PyExc_ValueError,
8461 "negative argument not allowed");
8462
8463 /* Allocate bytes */
Gregory P. Smithdd96db62008-06-09 04:58:54 +00008464 result = PyString_FromStringAndSize(NULL, howMany);
Neal Norwitz2a30cd02006-07-10 01:18:57 +00008465 if (result != NULL) {
8466 /* Get random data */
8467 if (RAND_pseudo_bytes((unsigned char*)
Gregory P. Smithdd96db62008-06-09 04:58:54 +00008468 PyString_AS_STRING(result),
Neal Norwitz2a30cd02006-07-10 01:18:57 +00008469 howMany) < 0) {
8470 Py_DECREF(result);
8471 return PyErr_Format(PyExc_ValueError,
8472 "RAND_pseudo_bytes");
8473 }
8474 }
8475 return result;
8476}
8477#endif
8478
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008479static PyMethodDef posix_methods[] = {
8480 {"access", posix_access, METH_VARARGS, posix_access__doc__},
8481#ifdef HAVE_TTYNAME
8482 {"ttyname", posix_ttyname, METH_VARARGS, posix_ttyname__doc__},
8483#endif
8484 {"chdir", posix_chdir, METH_VARARGS, posix_chdir__doc__},
Martin v. Löwis382abef2007-02-19 10:55:19 +00008485#ifdef HAVE_CHFLAGS
8486 {"chflags", posix_chflags, METH_VARARGS, posix_chflags__doc__},
8487#endif /* HAVE_CHFLAGS */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008488 {"chmod", posix_chmod, METH_VARARGS, posix_chmod__doc__},
Christian Heimes36281872007-11-30 21:11:28 +00008489#ifdef HAVE_FCHMOD
8490 {"fchmod", posix_fchmod, METH_VARARGS, posix_fchmod__doc__},
8491#endif /* HAVE_FCHMOD */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008492#ifdef HAVE_CHOWN
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008493 {"chown", posix_chown, METH_VARARGS, posix_chown__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008494#endif /* HAVE_CHOWN */
Christian Heimes36281872007-11-30 21:11:28 +00008495#ifdef HAVE_LCHMOD
8496 {"lchmod", posix_lchmod, METH_VARARGS, posix_lchmod__doc__},
8497#endif /* HAVE_LCHMOD */
8498#ifdef HAVE_FCHOWN
8499 {"fchown", posix_fchown, METH_VARARGS, posix_fchown__doc__},
8500#endif /* HAVE_FCHOWN */
Martin v. Löwis382abef2007-02-19 10:55:19 +00008501#ifdef HAVE_LCHFLAGS
8502 {"lchflags", posix_lchflags, METH_VARARGS, posix_lchflags__doc__},
8503#endif /* HAVE_LCHFLAGS */
Martin v. Löwis0cec0ff2002-07-28 16:33:45 +00008504#ifdef HAVE_LCHOWN
8505 {"lchown", posix_lchown, METH_VARARGS, posix_lchown__doc__},
8506#endif /* HAVE_LCHOWN */
Martin v. Löwis244edc82001-10-04 22:44:26 +00008507#ifdef HAVE_CHROOT
8508 {"chroot", posix_chroot, METH_VARARGS, posix_chroot__doc__},
8509#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008510#ifdef HAVE_CTERMID
Neal Norwitze241ce82003-02-17 18:17:05 +00008511 {"ctermid", posix_ctermid, METH_NOARGS, posix_ctermid__doc__},
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008512#endif
Guido van Rossum36bc6801995-06-14 22:54:23 +00008513#ifdef HAVE_GETCWD
Neal Norwitze241ce82003-02-17 18:17:05 +00008514 {"getcwd", posix_getcwd, METH_NOARGS, posix_getcwd__doc__},
Walter Dörwald3b918c32002-11-21 20:18:46 +00008515#ifdef Py_USING_UNICODE
Neal Norwitze241ce82003-02-17 18:17:05 +00008516 {"getcwdu", posix_getcwdu, METH_NOARGS, posix_getcwdu__doc__},
Guido van Rossum36bc6801995-06-14 22:54:23 +00008517#endif
Walter Dörwald3b918c32002-11-21 20:18:46 +00008518#endif
Guido van Rossumb6775db1994-08-01 11:34:53 +00008519#ifdef HAVE_LINK
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008520 {"link", posix_link, METH_VARARGS, posix_link__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008521#endif /* HAVE_LINK */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008522 {"listdir", posix_listdir, METH_VARARGS, posix_listdir__doc__},
8523 {"lstat", posix_lstat, METH_VARARGS, posix_lstat__doc__},
8524 {"mkdir", posix_mkdir, METH_VARARGS, posix_mkdir__doc__},
Guido van Rossumb6775db1994-08-01 11:34:53 +00008525#ifdef HAVE_NICE
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008526 {"nice", posix_nice, METH_VARARGS, posix_nice__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008527#endif /* HAVE_NICE */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008528#ifdef HAVE_READLINK
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008529 {"readlink", posix_readlink, METH_VARARGS, posix_readlink__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008530#endif /* HAVE_READLINK */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008531 {"rename", posix_rename, METH_VARARGS, posix_rename__doc__},
8532 {"rmdir", posix_rmdir, METH_VARARGS, posix_rmdir__doc__},
8533 {"stat", posix_stat, METH_VARARGS, posix_stat__doc__},
Martin v. Löwisf607bda2002-10-16 18:27:39 +00008534 {"stat_float_times", stat_float_times, METH_VARARGS, stat_float_times__doc__},
Guido van Rossumb6775db1994-08-01 11:34:53 +00008535#ifdef HAVE_SYMLINK
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008536 {"symlink", posix_symlink, METH_VARARGS, posix_symlink__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008537#endif /* HAVE_SYMLINK */
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008538#ifdef HAVE_SYSTEM
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008539 {"system", posix_system, METH_VARARGS, posix_system__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008540#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008541 {"umask", posix_umask, METH_VARARGS, posix_umask__doc__},
Guido van Rossumb6775db1994-08-01 11:34:53 +00008542#ifdef HAVE_UNAME
Neal Norwitze241ce82003-02-17 18:17:05 +00008543 {"uname", posix_uname, METH_NOARGS, posix_uname__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008544#endif /* HAVE_UNAME */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008545 {"unlink", posix_unlink, METH_VARARGS, posix_unlink__doc__},
8546 {"remove", posix_unlink, METH_VARARGS, posix_remove__doc__},
8547 {"utime", posix_utime, METH_VARARGS, posix_utime__doc__},
Guido van Rossumb6775db1994-08-01 11:34:53 +00008548#ifdef HAVE_TIMES
Neal Norwitze241ce82003-02-17 18:17:05 +00008549 {"times", posix_times, METH_NOARGS, posix_times__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008550#endif /* HAVE_TIMES */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008551 {"_exit", posix__exit, METH_VARARGS, posix__exit__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008552#ifdef HAVE_EXECV
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008553 {"execv", posix_execv, METH_VARARGS, posix_execv__doc__},
8554 {"execve", posix_execve, METH_VARARGS, posix_execve__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008555#endif /* HAVE_EXECV */
Guido van Rossuma1065681999-01-25 23:20:23 +00008556#ifdef HAVE_SPAWNV
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008557 {"spawnv", posix_spawnv, METH_VARARGS, posix_spawnv__doc__},
8558 {"spawnve", posix_spawnve, METH_VARARGS, posix_spawnve__doc__},
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00008559#if defined(PYOS_OS2)
8560 {"spawnvp", posix_spawnvp, METH_VARARGS, posix_spawnvp__doc__},
8561 {"spawnvpe", posix_spawnvpe, METH_VARARGS, posix_spawnvpe__doc__},
8562#endif /* PYOS_OS2 */
Guido van Rossuma1065681999-01-25 23:20:23 +00008563#endif /* HAVE_SPAWNV */
Guido van Rossum2242f2f2001-04-11 20:58:20 +00008564#ifdef HAVE_FORK1
Neal Norwitze241ce82003-02-17 18:17:05 +00008565 {"fork1", posix_fork1, METH_NOARGS, posix_fork1__doc__},
Guido van Rossum2242f2f2001-04-11 20:58:20 +00008566#endif /* HAVE_FORK1 */
Guido van Rossumad0ee831995-03-01 10:34:45 +00008567#ifdef HAVE_FORK
Neal Norwitze241ce82003-02-17 18:17:05 +00008568 {"fork", posix_fork, METH_NOARGS, posix_fork__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008569#endif /* HAVE_FORK */
Martin v. Löwis24a880b2002-12-31 12:55:15 +00008570#if defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX)
Neal Norwitze241ce82003-02-17 18:17:05 +00008571 {"openpty", posix_openpty, METH_NOARGS, posix_openpty__doc__},
Martin v. Löwis24a880b2002-12-31 12:55:15 +00008572#endif /* HAVE_OPENPTY || HAVE__GETPTY || HAVE_DEV_PTMX */
Fred Drake8cef4cf2000-06-28 16:40:38 +00008573#ifdef HAVE_FORKPTY
Neal Norwitze241ce82003-02-17 18:17:05 +00008574 {"forkpty", posix_forkpty, METH_NOARGS, posix_forkpty__doc__},
Fred Drake8cef4cf2000-06-28 16:40:38 +00008575#endif /* HAVE_FORKPTY */
Guido van Rossumad0ee831995-03-01 10:34:45 +00008576#ifdef HAVE_GETEGID
Neal Norwitze241ce82003-02-17 18:17:05 +00008577 {"getegid", posix_getegid, METH_NOARGS, posix_getegid__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008578#endif /* HAVE_GETEGID */
8579#ifdef HAVE_GETEUID
Neal Norwitze241ce82003-02-17 18:17:05 +00008580 {"geteuid", posix_geteuid, METH_NOARGS, posix_geteuid__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008581#endif /* HAVE_GETEUID */
8582#ifdef HAVE_GETGID
Neal Norwitze241ce82003-02-17 18:17:05 +00008583 {"getgid", posix_getgid, METH_NOARGS, posix_getgid__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008584#endif /* HAVE_GETGID */
Fred Drakec9680921999-12-13 16:37:25 +00008585#ifdef HAVE_GETGROUPS
Neal Norwitze241ce82003-02-17 18:17:05 +00008586 {"getgroups", posix_getgroups, METH_NOARGS, posix_getgroups__doc__},
Fred Drakec9680921999-12-13 16:37:25 +00008587#endif
Neal Norwitze241ce82003-02-17 18:17:05 +00008588 {"getpid", posix_getpid, METH_NOARGS, posix_getpid__doc__},
Guido van Rossumb6775db1994-08-01 11:34:53 +00008589#ifdef HAVE_GETPGRP
Neal Norwitze241ce82003-02-17 18:17:05 +00008590 {"getpgrp", posix_getpgrp, METH_NOARGS, posix_getpgrp__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008591#endif /* HAVE_GETPGRP */
Guido van Rossumad0ee831995-03-01 10:34:45 +00008592#ifdef HAVE_GETPPID
Neal Norwitze241ce82003-02-17 18:17:05 +00008593 {"getppid", posix_getppid, METH_NOARGS, posix_getppid__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008594#endif /* HAVE_GETPPID */
8595#ifdef HAVE_GETUID
Neal Norwitze241ce82003-02-17 18:17:05 +00008596 {"getuid", posix_getuid, METH_NOARGS, posix_getuid__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008597#endif /* HAVE_GETUID */
Fred Drake12c6e2d1999-12-14 21:25:03 +00008598#ifdef HAVE_GETLOGIN
Neal Norwitze241ce82003-02-17 18:17:05 +00008599 {"getlogin", posix_getlogin, METH_NOARGS, posix_getlogin__doc__},
Fred Drake12c6e2d1999-12-14 21:25:03 +00008600#endif
Guido van Rossumad0ee831995-03-01 10:34:45 +00008601#ifdef HAVE_KILL
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008602 {"kill", posix_kill, METH_VARARGS, posix_kill__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008603#endif /* HAVE_KILL */
Martin v. Löwisb2c92f42002-02-16 23:35:41 +00008604#ifdef HAVE_KILLPG
8605 {"killpg", posix_killpg, METH_VARARGS, posix_killpg__doc__},
8606#endif /* HAVE_KILLPG */
Guido van Rossumc0125471996-06-28 18:55:32 +00008607#ifdef HAVE_PLOCK
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008608 {"plock", posix_plock, METH_VARARGS, posix_plock__doc__},
Guido van Rossumc0125471996-06-28 18:55:32 +00008609#endif /* HAVE_PLOCK */
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008610#ifdef HAVE_POPEN
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008611 {"popen", posix_popen, METH_VARARGS, posix_popen__doc__},
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00008612#ifdef MS_WINDOWS
Fredrik Lundhffb9c772000-07-09 14:49:51 +00008613 {"popen2", win32_popen2, METH_VARARGS},
8614 {"popen3", win32_popen3, METH_VARARGS},
8615 {"popen4", win32_popen4, METH_VARARGS},
Tim Petersf58a7aa2000-09-22 10:05:54 +00008616 {"startfile", win32_startfile, METH_VARARGS, win32_startfile__doc__},
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00008617#else
8618#if defined(PYOS_OS2) && defined(PYCC_GCC)
8619 {"popen2", os2emx_popen2, METH_VARARGS},
8620 {"popen3", os2emx_popen3, METH_VARARGS},
8621 {"popen4", os2emx_popen4, METH_VARARGS},
8622#endif
Fredrik Lundhffb9c772000-07-09 14:49:51 +00008623#endif
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008624#endif /* HAVE_POPEN */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008625#ifdef HAVE_SETUID
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008626 {"setuid", posix_setuid, METH_VARARGS, posix_setuid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008627#endif /* HAVE_SETUID */
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00008628#ifdef HAVE_SETEUID
8629 {"seteuid", posix_seteuid, METH_VARARGS, posix_seteuid__doc__},
8630#endif /* HAVE_SETEUID */
8631#ifdef HAVE_SETEGID
8632 {"setegid", posix_setegid, METH_VARARGS, posix_setegid__doc__},
8633#endif /* HAVE_SETEGID */
8634#ifdef HAVE_SETREUID
8635 {"setreuid", posix_setreuid, METH_VARARGS, posix_setreuid__doc__},
8636#endif /* HAVE_SETREUID */
8637#ifdef HAVE_SETREGID
8638 {"setregid", posix_setregid, METH_VARARGS, posix_setregid__doc__},
8639#endif /* HAVE_SETREGID */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008640#ifdef HAVE_SETGID
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008641 {"setgid", posix_setgid, METH_VARARGS, posix_setgid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008642#endif /* HAVE_SETGID */
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00008643#ifdef HAVE_SETGROUPS
Georg Brandl96a8c392006-05-29 21:04:52 +00008644 {"setgroups", posix_setgroups, METH_O, posix_setgroups__doc__},
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00008645#endif /* HAVE_SETGROUPS */
Martin v. Löwis606edc12002-06-13 21:09:11 +00008646#ifdef HAVE_GETPGID
8647 {"getpgid", posix_getpgid, METH_VARARGS, posix_getpgid__doc__},
8648#endif /* HAVE_GETPGID */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008649#ifdef HAVE_SETPGRP
Neal Norwitze241ce82003-02-17 18:17:05 +00008650 {"setpgrp", posix_setpgrp, METH_NOARGS, posix_setpgrp__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008651#endif /* HAVE_SETPGRP */
Guido van Rossumad0ee831995-03-01 10:34:45 +00008652#ifdef HAVE_WAIT
Neal Norwitze241ce82003-02-17 18:17:05 +00008653 {"wait", posix_wait, METH_NOARGS, posix_wait__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008654#endif /* HAVE_WAIT */
Neal Norwitz05a45592006-03-20 06:30:08 +00008655#ifdef HAVE_WAIT3
8656 {"wait3", posix_wait3, METH_VARARGS, posix_wait3__doc__},
8657#endif /* HAVE_WAIT3 */
8658#ifdef HAVE_WAIT4
8659 {"wait4", posix_wait4, METH_VARARGS, posix_wait4__doc__},
8660#endif /* HAVE_WAIT4 */
Tim Petersab034fa2002-02-01 11:27:43 +00008661#if defined(HAVE_WAITPID) || defined(HAVE_CWAIT)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008662 {"waitpid", posix_waitpid, METH_VARARGS, posix_waitpid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008663#endif /* HAVE_WAITPID */
Martin v. Löwis49ee14d2003-11-10 06:35:36 +00008664#ifdef HAVE_GETSID
8665 {"getsid", posix_getsid, METH_VARARGS, posix_getsid__doc__},
8666#endif /* HAVE_GETSID */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008667#ifdef HAVE_SETSID
Neal Norwitze241ce82003-02-17 18:17:05 +00008668 {"setsid", posix_setsid, METH_NOARGS, posix_setsid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008669#endif /* HAVE_SETSID */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008670#ifdef HAVE_SETPGID
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008671 {"setpgid", posix_setpgid, METH_VARARGS, posix_setpgid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008672#endif /* HAVE_SETPGID */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008673#ifdef HAVE_TCGETPGRP
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008674 {"tcgetpgrp", posix_tcgetpgrp, METH_VARARGS, posix_tcgetpgrp__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008675#endif /* HAVE_TCGETPGRP */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008676#ifdef HAVE_TCSETPGRP
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008677 {"tcsetpgrp", posix_tcsetpgrp, METH_VARARGS, posix_tcsetpgrp__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008678#endif /* HAVE_TCSETPGRP */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008679 {"open", posix_open, METH_VARARGS, posix_open__doc__},
8680 {"close", posix_close, METH_VARARGS, posix_close__doc__},
Georg Brandl309501a2008-01-19 20:22:13 +00008681 {"closerange", posix_closerange, METH_VARARGS, posix_closerange__doc__},
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008682 {"dup", posix_dup, METH_VARARGS, posix_dup__doc__},
8683 {"dup2", posix_dup2, METH_VARARGS, posix_dup2__doc__},
8684 {"lseek", posix_lseek, METH_VARARGS, posix_lseek__doc__},
8685 {"read", posix_read, METH_VARARGS, posix_read__doc__},
8686 {"write", posix_write, METH_VARARGS, posix_write__doc__},
8687 {"fstat", posix_fstat, METH_VARARGS, posix_fstat__doc__},
8688 {"fdopen", posix_fdopen, METH_VARARGS, posix_fdopen__doc__},
Skip Montanaro1517d842000-07-19 14:34:14 +00008689 {"isatty", posix_isatty, METH_VARARGS, posix_isatty__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008690#ifdef HAVE_PIPE
Neal Norwitze241ce82003-02-17 18:17:05 +00008691 {"pipe", posix_pipe, METH_NOARGS, posix_pipe__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008692#endif
8693#ifdef HAVE_MKFIFO
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008694 {"mkfifo", posix_mkfifo, METH_VARARGS, posix_mkfifo__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008695#endif
Neal Norwitz11690112002-07-30 01:08:28 +00008696#if defined(HAVE_MKNOD) && defined(HAVE_MAKEDEV)
Martin v. Löwis06a83e92002-04-14 10:19:44 +00008697 {"mknod", posix_mknod, METH_VARARGS, posix_mknod__doc__},
8698#endif
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00008699#ifdef HAVE_DEVICE_MACROS
8700 {"major", posix_major, METH_VARARGS, posix_major__doc__},
8701 {"minor", posix_minor, METH_VARARGS, posix_minor__doc__},
8702 {"makedev", posix_makedev, METH_VARARGS, posix_makedev__doc__},
8703#endif
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008704#ifdef HAVE_FTRUNCATE
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008705 {"ftruncate", posix_ftruncate, METH_VARARGS, posix_ftruncate__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008706#endif
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00008707#ifdef HAVE_PUTENV
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008708 {"putenv", posix_putenv, METH_VARARGS, posix_putenv__doc__},
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00008709#endif
Guido van Rossumc524d952001-10-19 01:31:59 +00008710#ifdef HAVE_UNSETENV
8711 {"unsetenv", posix_unsetenv, METH_VARARGS, posix_unsetenv__doc__},
8712#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008713 {"strerror", posix_strerror, METH_VARARGS, posix_strerror__doc__},
Fred Drake4d1e64b2002-04-15 19:40:07 +00008714#ifdef HAVE_FCHDIR
8715 {"fchdir", posix_fchdir, METH_O, posix_fchdir__doc__},
8716#endif
Guido van Rossum21142a01999-01-08 21:05:37 +00008717#ifdef HAVE_FSYNC
Fred Drake4d1e64b2002-04-15 19:40:07 +00008718 {"fsync", posix_fsync, METH_O, posix_fsync__doc__},
Guido van Rossum21142a01999-01-08 21:05:37 +00008719#endif
8720#ifdef HAVE_FDATASYNC
Fred Drake4d1e64b2002-04-15 19:40:07 +00008721 {"fdatasync", posix_fdatasync, METH_O, posix_fdatasync__doc__},
Guido van Rossum21142a01999-01-08 21:05:37 +00008722#endif
Guido van Rossumc9641791998-08-04 15:26:23 +00008723#ifdef HAVE_SYS_WAIT_H
Fred Drake106c1a02002-04-23 15:58:02 +00008724#ifdef WCOREDUMP
8725 {"WCOREDUMP", posix_WCOREDUMP, METH_VARARGS, posix_WCOREDUMP__doc__},
8726#endif /* WCOREDUMP */
Martin v. Löwis2b41b0d2002-05-04 13:13:41 +00008727#ifdef WIFCONTINUED
8728 {"WIFCONTINUED",posix_WIFCONTINUED, METH_VARARGS, posix_WIFCONTINUED__doc__},
8729#endif /* WIFCONTINUED */
Guido van Rossumc9641791998-08-04 15:26:23 +00008730#ifdef WIFSTOPPED
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008731 {"WIFSTOPPED", posix_WIFSTOPPED, METH_VARARGS, posix_WIFSTOPPED__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008732#endif /* WIFSTOPPED */
8733#ifdef WIFSIGNALED
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008734 {"WIFSIGNALED", posix_WIFSIGNALED, METH_VARARGS, posix_WIFSIGNALED__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008735#endif /* WIFSIGNALED */
8736#ifdef WIFEXITED
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008737 {"WIFEXITED", posix_WIFEXITED, METH_VARARGS, posix_WIFEXITED__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008738#endif /* WIFEXITED */
8739#ifdef WEXITSTATUS
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008740 {"WEXITSTATUS", posix_WEXITSTATUS, METH_VARARGS, posix_WEXITSTATUS__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008741#endif /* WEXITSTATUS */
8742#ifdef WTERMSIG
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008743 {"WTERMSIG", posix_WTERMSIG, METH_VARARGS, posix_WTERMSIG__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008744#endif /* WTERMSIG */
8745#ifdef WSTOPSIG
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008746 {"WSTOPSIG", posix_WSTOPSIG, METH_VARARGS, posix_WSTOPSIG__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008747#endif /* WSTOPSIG */
8748#endif /* HAVE_SYS_WAIT_H */
Martin v. Löwis5f5d99c2006-05-16 07:05:37 +00008749#if defined(HAVE_FSTATVFS) && defined(HAVE_SYS_STATVFS_H)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008750 {"fstatvfs", posix_fstatvfs, METH_VARARGS, posix_fstatvfs__doc__},
Guido van Rossum94f6f721999-01-06 18:42:14 +00008751#endif
Martin v. Löwis5f5d99c2006-05-16 07:05:37 +00008752#if defined(HAVE_STATVFS) && defined(HAVE_SYS_STATVFS_H)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008753 {"statvfs", posix_statvfs, METH_VARARGS, posix_statvfs__doc__},
Guido van Rossum94f6f721999-01-06 18:42:14 +00008754#endif
Guido van Rossume2ad6332001-01-08 17:51:55 +00008755#ifdef HAVE_TMPFILE
Neal Norwitze241ce82003-02-17 18:17:05 +00008756 {"tmpfile", posix_tmpfile, METH_NOARGS, posix_tmpfile__doc__},
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008757#endif
8758#ifdef HAVE_TEMPNAM
8759 {"tempnam", posix_tempnam, METH_VARARGS, posix_tempnam__doc__},
8760#endif
8761#ifdef HAVE_TMPNAM
Neal Norwitze241ce82003-02-17 18:17:05 +00008762 {"tmpnam", posix_tmpnam, METH_NOARGS, posix_tmpnam__doc__},
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008763#endif
Fred Drakec9680921999-12-13 16:37:25 +00008764#ifdef HAVE_CONFSTR
8765 {"confstr", posix_confstr, METH_VARARGS, posix_confstr__doc__},
8766#endif
8767#ifdef HAVE_SYSCONF
8768 {"sysconf", posix_sysconf, METH_VARARGS, posix_sysconf__doc__},
8769#endif
8770#ifdef HAVE_FPATHCONF
8771 {"fpathconf", posix_fpathconf, METH_VARARGS, posix_fpathconf__doc__},
8772#endif
8773#ifdef HAVE_PATHCONF
8774 {"pathconf", posix_pathconf, METH_VARARGS, posix_pathconf__doc__},
8775#endif
Neal Norwitze241ce82003-02-17 18:17:05 +00008776 {"abort", posix_abort, METH_NOARGS, posix_abort__doc__},
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00008777#ifdef MS_WINDOWS
Mark Hammondef8b6542001-05-13 08:04:26 +00008778 {"_getfullpathname", posix__getfullpathname, METH_VARARGS, NULL},
8779#endif
Martin v. Löwis438b5342002-12-27 10:16:42 +00008780#ifdef HAVE_GETLOADAVG
Neal Norwitze241ce82003-02-17 18:17:05 +00008781 {"getloadavg", posix_getloadavg, METH_NOARGS, posix_getloadavg__doc__},
Martin v. Löwis438b5342002-12-27 10:16:42 +00008782#endif
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008783 #ifdef MS_WINDOWS
8784 {"urandom", win32_urandom, METH_VARARGS, win32_urandom__doc__},
8785 #endif
Neal Norwitz2a30cd02006-07-10 01:18:57 +00008786 #ifdef __VMS
8787 {"urandom", vms_urandom, METH_VARARGS, vms_urandom__doc__},
8788 #endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00008789 {NULL, NULL} /* Sentinel */
8790};
8791
8792
Barry Warsaw4a342091996-12-19 23:50:02 +00008793static int
Fred Drake4d1e64b2002-04-15 19:40:07 +00008794ins(PyObject *module, char *symbol, long value)
Barry Warsaw4a342091996-12-19 23:50:02 +00008795{
Fred Drake4d1e64b2002-04-15 19:40:07 +00008796 return PyModule_AddIntConstant(module, symbol, value);
Barry Warsaw4a342091996-12-19 23:50:02 +00008797}
8798
Guido van Rossumd48f2521997-12-05 22:19:34 +00008799#if defined(PYOS_OS2)
8800/* Insert Platform-Specific Constant Values (Strings & Numbers) of Common Use */
Fred Drake4d1e64b2002-04-15 19:40:07 +00008801static int insertvalues(PyObject *module)
Guido van Rossumd48f2521997-12-05 22:19:34 +00008802{
8803 APIRET rc;
8804 ULONG values[QSV_MAX+1];
8805 PyObject *v;
Marc-André Lemburgd4c0a9c2001-11-28 11:47:00 +00008806 char *ver, tmp[50];
Guido van Rossumd48f2521997-12-05 22:19:34 +00008807
8808 Py_BEGIN_ALLOW_THREADS
Andrew MacIntyre75e01452003-04-21 14:19:51 +00008809 rc = DosQuerySysInfo(1L, QSV_MAX, &values[1], sizeof(ULONG) * QSV_MAX);
Guido van Rossumd48f2521997-12-05 22:19:34 +00008810 Py_END_ALLOW_THREADS
8811
8812 if (rc != NO_ERROR) {
8813 os2_error(rc);
8814 return -1;
8815 }
8816
Fred Drake4d1e64b2002-04-15 19:40:07 +00008817 if (ins(module, "meminstalled", values[QSV_TOTPHYSMEM])) return -1;
8818 if (ins(module, "memkernel", values[QSV_TOTRESMEM])) return -1;
8819 if (ins(module, "memvirtual", values[QSV_TOTAVAILMEM])) return -1;
8820 if (ins(module, "maxpathlen", values[QSV_MAX_PATH_LENGTH])) return -1;
8821 if (ins(module, "maxnamelen", values[QSV_MAX_COMP_LENGTH])) return -1;
8822 if (ins(module, "revision", values[QSV_VERSION_REVISION])) return -1;
8823 if (ins(module, "timeslice", values[QSV_MIN_SLICE])) return -1;
Guido van Rossumd48f2521997-12-05 22:19:34 +00008824
8825 switch (values[QSV_VERSION_MINOR]) {
8826 case 0: ver = "2.00"; break;
8827 case 10: ver = "2.10"; break;
8828 case 11: ver = "2.11"; break;
8829 case 30: ver = "3.00"; break;
8830 case 40: ver = "4.00"; break;
8831 case 50: ver = "5.00"; break;
8832 default:
Tim Peters885d4572001-11-28 20:27:42 +00008833 PyOS_snprintf(tmp, sizeof(tmp),
8834 "%d-%d", values[QSV_VERSION_MAJOR],
8835 values[QSV_VERSION_MINOR]);
Guido van Rossumd48f2521997-12-05 22:19:34 +00008836 ver = &tmp[0];
8837 }
8838
8839 /* Add Indicator of the Version of the Operating System */
Fred Drake4d1e64b2002-04-15 19:40:07 +00008840 if (PyModule_AddStringConstant(module, "version", tmp) < 0)
Guido van Rossumd48f2521997-12-05 22:19:34 +00008841 return -1;
Guido van Rossumd48f2521997-12-05 22:19:34 +00008842
8843 /* Add Indicator of Which Drive was Used to Boot the System */
8844 tmp[0] = 'A' + values[QSV_BOOT_DRIVE] - 1;
8845 tmp[1] = ':';
8846 tmp[2] = '\0';
8847
Fred Drake4d1e64b2002-04-15 19:40:07 +00008848 return PyModule_AddStringConstant(module, "bootdrive", tmp);
Guido van Rossumd48f2521997-12-05 22:19:34 +00008849}
8850#endif
8851
Barry Warsaw4a342091996-12-19 23:50:02 +00008852static int
Thomas Woutersf3f33dc2000-07-21 06:00:07 +00008853all_ins(PyObject *d)
Barry Warsaw4a342091996-12-19 23:50:02 +00008854{
Guido van Rossum94f6f721999-01-06 18:42:14 +00008855#ifdef F_OK
8856 if (ins(d, "F_OK", (long)F_OK)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00008857#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00008858#ifdef R_OK
8859 if (ins(d, "R_OK", (long)R_OK)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00008860#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00008861#ifdef W_OK
8862 if (ins(d, "W_OK", (long)W_OK)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00008863#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00008864#ifdef X_OK
8865 if (ins(d, "X_OK", (long)X_OK)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00008866#endif
Fred Drakec9680921999-12-13 16:37:25 +00008867#ifdef NGROUPS_MAX
8868 if (ins(d, "NGROUPS_MAX", (long)NGROUPS_MAX)) return -1;
8869#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008870#ifdef TMP_MAX
8871 if (ins(d, "TMP_MAX", (long)TMP_MAX)) return -1;
8872#endif
Fred Drake106c1a02002-04-23 15:58:02 +00008873#ifdef WCONTINUED
8874 if (ins(d, "WCONTINUED", (long)WCONTINUED)) return -1;
8875#endif
Barry Warsaw4a342091996-12-19 23:50:02 +00008876#ifdef WNOHANG
8877 if (ins(d, "WNOHANG", (long)WNOHANG)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00008878#endif
Fred Drake106c1a02002-04-23 15:58:02 +00008879#ifdef WUNTRACED
8880 if (ins(d, "WUNTRACED", (long)WUNTRACED)) return -1;
8881#endif
Barry Warsaw4a342091996-12-19 23:50:02 +00008882#ifdef O_RDONLY
8883 if (ins(d, "O_RDONLY", (long)O_RDONLY)) return -1;
8884#endif
8885#ifdef O_WRONLY
8886 if (ins(d, "O_WRONLY", (long)O_WRONLY)) return -1;
8887#endif
8888#ifdef O_RDWR
8889 if (ins(d, "O_RDWR", (long)O_RDWR)) return -1;
8890#endif
8891#ifdef O_NDELAY
8892 if (ins(d, "O_NDELAY", (long)O_NDELAY)) return -1;
8893#endif
8894#ifdef O_NONBLOCK
8895 if (ins(d, "O_NONBLOCK", (long)O_NONBLOCK)) return -1;
8896#endif
8897#ifdef O_APPEND
8898 if (ins(d, "O_APPEND", (long)O_APPEND)) return -1;
8899#endif
8900#ifdef O_DSYNC
8901 if (ins(d, "O_DSYNC", (long)O_DSYNC)) return -1;
8902#endif
8903#ifdef O_RSYNC
8904 if (ins(d, "O_RSYNC", (long)O_RSYNC)) return -1;
8905#endif
8906#ifdef O_SYNC
8907 if (ins(d, "O_SYNC", (long)O_SYNC)) return -1;
8908#endif
8909#ifdef O_NOCTTY
8910 if (ins(d, "O_NOCTTY", (long)O_NOCTTY)) return -1;
8911#endif
8912#ifdef O_CREAT
8913 if (ins(d, "O_CREAT", (long)O_CREAT)) return -1;
8914#endif
8915#ifdef O_EXCL
8916 if (ins(d, "O_EXCL", (long)O_EXCL)) return -1;
8917#endif
8918#ifdef O_TRUNC
8919 if (ins(d, "O_TRUNC", (long)O_TRUNC)) return -1;
8920#endif
Guido van Rossum98d9d091997-08-08 21:48:51 +00008921#ifdef O_BINARY
8922 if (ins(d, "O_BINARY", (long)O_BINARY)) return -1;
8923#endif
8924#ifdef O_TEXT
8925 if (ins(d, "O_TEXT", (long)O_TEXT)) return -1;
8926#endif
Martin v. Löwis4fe3c272001-10-18 22:05:36 +00008927#ifdef O_LARGEFILE
8928 if (ins(d, "O_LARGEFILE", (long)O_LARGEFILE)) return -1;
8929#endif
Skip Montanaro5ff14922005-05-16 02:42:22 +00008930#ifdef O_SHLOCK
8931 if (ins(d, "O_SHLOCK", (long)O_SHLOCK)) return -1;
8932#endif
8933#ifdef O_EXLOCK
8934 if (ins(d, "O_EXLOCK", (long)O_EXLOCK)) return -1;
8935#endif
Martin v. Löwis4fe3c272001-10-18 22:05:36 +00008936
Tim Peters5aa91602002-01-30 05:46:57 +00008937/* MS Windows */
8938#ifdef O_NOINHERIT
8939 /* Don't inherit in child processes. */
8940 if (ins(d, "O_NOINHERIT", (long)O_NOINHERIT)) return -1;
8941#endif
8942#ifdef _O_SHORT_LIVED
8943 /* Optimize for short life (keep in memory). */
8944 /* MS forgot to define this one with a non-underscore form too. */
8945 if (ins(d, "O_SHORT_LIVED", (long)_O_SHORT_LIVED)) return -1;
8946#endif
8947#ifdef O_TEMPORARY
8948 /* Automatically delete when last handle is closed. */
8949 if (ins(d, "O_TEMPORARY", (long)O_TEMPORARY)) return -1;
8950#endif
8951#ifdef O_RANDOM
8952 /* Optimize for random access. */
8953 if (ins(d, "O_RANDOM", (long)O_RANDOM)) return -1;
8954#endif
8955#ifdef O_SEQUENTIAL
8956 /* Optimize for sequential access. */
8957 if (ins(d, "O_SEQUENTIAL", (long)O_SEQUENTIAL)) return -1;
8958#endif
8959
Martin v. Löwis4fe3c272001-10-18 22:05:36 +00008960/* GNU extensions. */
Georg Brandl5049a852008-05-16 13:10:15 +00008961#ifdef O_ASYNC
8962 /* Send a SIGIO signal whenever input or output
8963 becomes available on file descriptor */
8964 if (ins(d, "O_ASYNC", (long)O_ASYNC)) return -1;
8965#endif
Martin v. Löwis4fe3c272001-10-18 22:05:36 +00008966#ifdef O_DIRECT
8967 /* Direct disk access. */
8968 if (ins(d, "O_DIRECT", (long)O_DIRECT)) return -1;
8969#endif
8970#ifdef O_DIRECTORY
8971 /* Must be a directory. */
8972 if (ins(d, "O_DIRECTORY", (long)O_DIRECTORY)) return -1;
8973#endif
8974#ifdef O_NOFOLLOW
8975 /* Do not follow links. */
8976 if (ins(d, "O_NOFOLLOW", (long)O_NOFOLLOW)) return -1;
8977#endif
Georg Brandlb67da6e2007-11-24 13:56:09 +00008978#ifdef O_NOATIME
8979 /* Do not update the access time. */
8980 if (ins(d, "O_NOATIME", (long)O_NOATIME)) return -1;
8981#endif
Guido van Rossumd48f2521997-12-05 22:19:34 +00008982
Barry Warsaw5676bd12003-01-07 20:57:09 +00008983 /* These come from sysexits.h */
8984#ifdef EX_OK
8985 if (ins(d, "EX_OK", (long)EX_OK)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008986#endif /* EX_OK */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008987#ifdef EX_USAGE
8988 if (ins(d, "EX_USAGE", (long)EX_USAGE)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008989#endif /* EX_USAGE */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008990#ifdef EX_DATAERR
8991 if (ins(d, "EX_DATAERR", (long)EX_DATAERR)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008992#endif /* EX_DATAERR */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008993#ifdef EX_NOINPUT
8994 if (ins(d, "EX_NOINPUT", (long)EX_NOINPUT)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008995#endif /* EX_NOINPUT */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008996#ifdef EX_NOUSER
8997 if (ins(d, "EX_NOUSER", (long)EX_NOUSER)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008998#endif /* EX_NOUSER */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008999#ifdef EX_NOHOST
9000 if (ins(d, "EX_NOHOST", (long)EX_NOHOST)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009001#endif /* EX_NOHOST */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009002#ifdef EX_UNAVAILABLE
9003 if (ins(d, "EX_UNAVAILABLE", (long)EX_UNAVAILABLE)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009004#endif /* EX_UNAVAILABLE */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009005#ifdef EX_SOFTWARE
9006 if (ins(d, "EX_SOFTWARE", (long)EX_SOFTWARE)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009007#endif /* EX_SOFTWARE */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009008#ifdef EX_OSERR
9009 if (ins(d, "EX_OSERR", (long)EX_OSERR)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009010#endif /* EX_OSERR */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009011#ifdef EX_OSFILE
9012 if (ins(d, "EX_OSFILE", (long)EX_OSFILE)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009013#endif /* EX_OSFILE */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009014#ifdef EX_CANTCREAT
9015 if (ins(d, "EX_CANTCREAT", (long)EX_CANTCREAT)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009016#endif /* EX_CANTCREAT */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009017#ifdef EX_IOERR
9018 if (ins(d, "EX_IOERR", (long)EX_IOERR)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009019#endif /* EX_IOERR */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009020#ifdef EX_TEMPFAIL
9021 if (ins(d, "EX_TEMPFAIL", (long)EX_TEMPFAIL)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009022#endif /* EX_TEMPFAIL */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009023#ifdef EX_PROTOCOL
9024 if (ins(d, "EX_PROTOCOL", (long)EX_PROTOCOL)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009025#endif /* EX_PROTOCOL */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009026#ifdef EX_NOPERM
9027 if (ins(d, "EX_NOPERM", (long)EX_NOPERM)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009028#endif /* EX_NOPERM */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009029#ifdef EX_CONFIG
9030 if (ins(d, "EX_CONFIG", (long)EX_CONFIG)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009031#endif /* EX_CONFIG */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009032#ifdef EX_NOTFOUND
9033 if (ins(d, "EX_NOTFOUND", (long)EX_NOTFOUND)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00009034#endif /* EX_NOTFOUND */
Barry Warsaw5676bd12003-01-07 20:57:09 +00009035
Guido van Rossum246bc171999-02-01 23:54:31 +00009036#ifdef HAVE_SPAWNV
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00009037#if defined(PYOS_OS2) && defined(PYCC_GCC)
9038 if (ins(d, "P_WAIT", (long)P_WAIT)) return -1;
9039 if (ins(d, "P_NOWAIT", (long)P_NOWAIT)) return -1;
9040 if (ins(d, "P_OVERLAY", (long)P_OVERLAY)) return -1;
9041 if (ins(d, "P_DEBUG", (long)P_DEBUG)) return -1;
9042 if (ins(d, "P_SESSION", (long)P_SESSION)) return -1;
9043 if (ins(d, "P_DETACH", (long)P_DETACH)) return -1;
9044 if (ins(d, "P_PM", (long)P_PM)) return -1;
9045 if (ins(d, "P_DEFAULT", (long)P_DEFAULT)) return -1;
9046 if (ins(d, "P_MINIMIZE", (long)P_MINIMIZE)) return -1;
9047 if (ins(d, "P_MAXIMIZE", (long)P_MAXIMIZE)) return -1;
9048 if (ins(d, "P_FULLSCREEN", (long)P_FULLSCREEN)) return -1;
9049 if (ins(d, "P_WINDOWED", (long)P_WINDOWED)) return -1;
9050 if (ins(d, "P_FOREGROUND", (long)P_FOREGROUND)) return -1;
9051 if (ins(d, "P_BACKGROUND", (long)P_BACKGROUND)) return -1;
9052 if (ins(d, "P_NOCLOSE", (long)P_NOCLOSE)) return -1;
9053 if (ins(d, "P_NOSESSION", (long)P_NOSESSION)) return -1;
9054 if (ins(d, "P_QUOTE", (long)P_QUOTE)) return -1;
9055 if (ins(d, "P_TILDE", (long)P_TILDE)) return -1;
9056 if (ins(d, "P_UNRELATED", (long)P_UNRELATED)) return -1;
9057 if (ins(d, "P_DEBUGDESC", (long)P_DEBUGDESC)) return -1;
9058#else
Guido van Rossum7d385291999-02-16 19:38:04 +00009059 if (ins(d, "P_WAIT", (long)_P_WAIT)) return -1;
9060 if (ins(d, "P_NOWAIT", (long)_P_NOWAIT)) return -1;
9061 if (ins(d, "P_OVERLAY", (long)_OLD_P_OVERLAY)) return -1;
9062 if (ins(d, "P_NOWAITO", (long)_P_NOWAITO)) return -1;
9063 if (ins(d, "P_DETACH", (long)_P_DETACH)) return -1;
Guido van Rossum246bc171999-02-01 23:54:31 +00009064#endif
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00009065#endif
Guido van Rossum246bc171999-02-01 23:54:31 +00009066
Guido van Rossumd48f2521997-12-05 22:19:34 +00009067#if defined(PYOS_OS2)
9068 if (insertvalues(d)) return -1;
9069#endif
Barry Warsaw4a342091996-12-19 23:50:02 +00009070 return 0;
9071}
9072
9073
Tim Peters5aa91602002-01-30 05:46:57 +00009074#if (defined(_MSC_VER) || defined(__WATCOMC__) || defined(__BORLANDC__)) && !defined(__QNX__)
Guido van Rossum0cb96de1997-10-01 04:29:29 +00009075#define INITFUNC initnt
9076#define MODNAME "nt"
Tim Peters58e0a8c2001-05-14 22:32:33 +00009077
9078#elif defined(PYOS_OS2)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00009079#define INITFUNC initos2
9080#define MODNAME "os2"
Tim Peters58e0a8c2001-05-14 22:32:33 +00009081
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00009082#else
Guido van Rossum0cb96de1997-10-01 04:29:29 +00009083#define INITFUNC initposix
9084#define MODNAME "posix"
9085#endif
9086
Mark Hammondfe51c6d2002-08-02 02:27:13 +00009087PyMODINIT_FUNC
Thomas Woutersf3f33dc2000-07-21 06:00:07 +00009088INITFUNC(void)
Guido van Rossumb6775db1994-08-01 11:34:53 +00009089{
Fred Drake4d1e64b2002-04-15 19:40:07 +00009090 PyObject *m, *v;
Tim Peters5aa91602002-01-30 05:46:57 +00009091
Fred Drake4d1e64b2002-04-15 19:40:07 +00009092 m = Py_InitModule3(MODNAME,
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00009093 posix_methods,
Fred Drake4d1e64b2002-04-15 19:40:07 +00009094 posix__doc__);
Neal Norwitz1ac754f2006-01-19 06:09:39 +00009095 if (m == NULL)
9096 return;
Tim Peters5aa91602002-01-30 05:46:57 +00009097
Guido van Rossum0cb96de1997-10-01 04:29:29 +00009098 /* Initialize environ dictionary */
Guido van Rossumb6775db1994-08-01 11:34:53 +00009099 v = convertenviron();
Fred Drake4d1e64b2002-04-15 19:40:07 +00009100 Py_XINCREF(v);
9101 if (v == NULL || PyModule_AddObject(m, "environ", v) != 0)
Guido van Rossum0cb96de1997-10-01 04:29:29 +00009102 return;
Barry Warsaw53699e91996-12-10 23:23:01 +00009103 Py_DECREF(v);
Fred Drakec9680921999-12-13 16:37:25 +00009104
Fred Drake4d1e64b2002-04-15 19:40:07 +00009105 if (all_ins(m))
Barry Warsaw4a342091996-12-19 23:50:02 +00009106 return;
9107
Fred Drake4d1e64b2002-04-15 19:40:07 +00009108 if (setup_confname_tables(m))
Fred Drakebec628d1999-12-15 18:31:10 +00009109 return;
9110
Fred Drake4d1e64b2002-04-15 19:40:07 +00009111 Py_INCREF(PyExc_OSError);
9112 PyModule_AddObject(m, "error", PyExc_OSError);
Fred Drake762e2061999-08-26 17:23:54 +00009113
Guido van Rossumb3d39562000-01-31 18:41:26 +00009114#ifdef HAVE_PUTENV
Neil Schemenauer19030a02001-01-16 04:27:47 +00009115 if (posix_putenv_garbage == NULL)
9116 posix_putenv_garbage = PyDict_New();
Guido van Rossumb3d39562000-01-31 18:41:26 +00009117#endif
Guido van Rossum98bf58f2001-10-18 20:34:25 +00009118
Martin v. Löwis19ab6c92006-04-16 18:55:50 +00009119 if (!initialized) {
9120 stat_result_desc.name = MODNAME ".stat_result";
9121 stat_result_desc.fields[7].name = PyStructSequence_UnnamedField;
9122 stat_result_desc.fields[8].name = PyStructSequence_UnnamedField;
9123 stat_result_desc.fields[9].name = PyStructSequence_UnnamedField;
9124 PyStructSequence_InitType(&StatResultType, &stat_result_desc);
9125 structseq_new = StatResultType.tp_new;
9126 StatResultType.tp_new = statresult_new;
9127
9128 statvfs_result_desc.name = MODNAME ".statvfs_result";
9129 PyStructSequence_InitType(&StatVFSResultType, &statvfs_result_desc);
Martin v. Löwis03824e42008-12-29 18:17:34 +00009130#ifdef NEED_TICKS_PER_SECOND
9131# if defined(HAVE_SYSCONF) && defined(_SC_CLK_TCK)
9132 ticks_per_second = sysconf(_SC_CLK_TCK);
9133# elif defined(HZ)
9134 ticks_per_second = HZ;
9135# else
9136 ticks_per_second = 60; /* magic fallback value; may be bogus */
9137# endif
9138#endif
Martin v. Löwis19ab6c92006-04-16 18:55:50 +00009139 }
Fred Drake4d1e64b2002-04-15 19:40:07 +00009140 Py_INCREF((PyObject*) &StatResultType);
9141 PyModule_AddObject(m, "stat_result", (PyObject*) &StatResultType);
Fred Drake4d1e64b2002-04-15 19:40:07 +00009142 Py_INCREF((PyObject*) &StatVFSResultType);
9143 PyModule_AddObject(m, "statvfs_result",
9144 (PyObject*) &StatVFSResultType);
Martin v. Löwis19ab6c92006-04-16 18:55:50 +00009145 initialized = 1;
Ronald Oussorend06b6f22006-04-23 11:59:25 +00009146
9147#ifdef __APPLE__
9148 /*
9149 * Step 2 of weak-linking support on Mac OS X.
9150 *
9151 * The code below removes functions that are not available on the
9152 * currently active platform.
9153 *
9154 * This block allow one to use a python binary that was build on
9155 * OSX 10.4 on OSX 10.3, without loosing access to new APIs on
9156 * OSX 10.4.
9157 */
9158#ifdef HAVE_FSTATVFS
9159 if (fstatvfs == NULL) {
9160 if (PyObject_DelAttrString(m, "fstatvfs") == -1) {
9161 return;
9162 }
9163 }
9164#endif /* HAVE_FSTATVFS */
9165
9166#ifdef HAVE_STATVFS
9167 if (statvfs == NULL) {
9168 if (PyObject_DelAttrString(m, "statvfs") == -1) {
9169 return;
9170 }
9171 }
9172#endif /* HAVE_STATVFS */
9173
9174# ifdef HAVE_LCHOWN
9175 if (lchown == NULL) {
9176 if (PyObject_DelAttrString(m, "lchown") == -1) {
9177 return;
9178 }
9179 }
9180#endif /* HAVE_LCHOWN */
9181
9182
9183#endif /* __APPLE__ */
9184
Guido van Rossumb6775db1994-08-01 11:34:53 +00009185}
Anthony Baxterac6bd462006-04-13 02:06:09 +00009186
9187#ifdef __cplusplus
9188}
9189#endif
9190
Martin v. Löwis18aaa562006-10-15 08:43:33 +00009191