blob: 8663c99e740e02049f136802f61b87c090380c7e [file] [log] [blame]
Guido van Rossumf70e43a1991-02-19 12:39:46 +00001
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002/* POSIX module implementation */
3
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004/* This file is also used for Windows NT/MS-Win and OS/2. In that case the
5 module actually calls itself 'nt' or 'os2', not 'posix', and a few
6 functions are either unimplemented or implemented differently. The source
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00007 assumes that for Windows NT, the macro 'MS_WINDOWS' is defined independent
Guido van Rossumad0ee831995-03-01 10:34:45 +00008 of the compiler used. Different compilers define their own feature
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00009 test macro, e.g. '__BORLANDC__' or '_MSC_VER'. For OS/2, the compiler
10 independent macro PYOS_OS2 should be defined. On OS/2 the default
11 compiler is assumed to be IBM's VisualAge C++ (VACPP). PYCC_GCC is used
12 as the compiler specific macro for the EMX port of gcc to OS/2. */
Guido van Rossumad0ee831995-03-01 10:34:45 +000013
Guido van Rossuma4916fa1996-05-23 22:58:55 +000014/* See also ../Dos/dosmodule.c */
Guido van Rossumad0ee831995-03-01 10:34:45 +000015
Ronald Oussorend06b6f22006-04-23 11:59:25 +000016#ifdef __APPLE__
17 /*
18 * Step 1 of support for weak-linking a number of symbols existing on
19 * OSX 10.4 and later, see the comment in the #ifdef __APPLE__ block
20 * at the end of this file for more information.
21 */
22# pragma weak lchown
23# pragma weak statvfs
24# pragma weak fstatvfs
25
26#endif /* __APPLE__ */
27
Thomas Wouters68bc4f92006-03-01 01:05:10 +000028#define PY_SSIZE_T_CLEAN
29
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000030#include "Python.h"
31#include "structseq.h"
32
Martin v. Löwis79acb9e2002-12-06 12:48:53 +000033#if defined(__VMS)
Martin v. Löwis79acb9e2002-12-06 12:48:53 +000034# include <unixio.h>
Martin v. Löwis79acb9e2002-12-06 12:48:53 +000035#endif /* defined(__VMS) */
36
Anthony Baxterac6bd462006-04-13 02:06:09 +000037#ifdef __cplusplus
38extern "C" {
39#endif
40
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000041PyDoc_STRVAR(posix__doc__,
Guido van Rossumec4f4ac1997-06-02 22:20:51 +000042"This module provides access to operating system functionality that is\n\
43standardized by the C Standard and the POSIX standard (a thinly\n\
44disguised Unix interface). Refer to the library manual and\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000045corresponding Unix manual entries for more information on calls.");
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000046
Martin v. Löwis0073f2e2002-11-21 23:52:35 +000047#ifndef Py_USING_UNICODE
48/* This is used in signatures of functions. */
49#define Py_UNICODE void
50#endif
51
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +000052#if defined(PYOS_OS2)
53#define INCL_DOS
54#define INCL_DOSERRORS
55#define INCL_DOSPROCESS
56#define INCL_NOPMAPI
57#include <os2.h>
Andrew MacIntyre6c73af22002-03-03 03:07:07 +000058#if defined(PYCC_GCC)
59#include <ctype.h>
60#include <io.h>
61#include <stdio.h>
62#include <process.h>
Andrew MacIntyre6c73af22002-03-03 03:07:07 +000063#endif
Andrew MacIntyreda4d6cb2004-03-29 11:53:38 +000064#include "osdefs.h"
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +000065#endif
66
Martin v. Löwis0e8bd7e2006-06-10 12:23:46 +000067#ifdef HAVE_SYS_TYPES_H
Guido van Rossumb6775db1994-08-01 11:34:53 +000068#include <sys/types.h>
Martin v. Löwis0e8bd7e2006-06-10 12:23:46 +000069#endif /* HAVE_SYS_TYPES_H */
70
71#ifdef HAVE_SYS_STAT_H
Guido van Rossumb6775db1994-08-01 11:34:53 +000072#include <sys/stat.h>
Martin v. Löwis0e8bd7e2006-06-10 12:23:46 +000073#endif /* HAVE_SYS_STAT_H */
Guido van Rossuma6535fd2001-10-18 19:44:10 +000074
Guido van Rossum36bc6801995-06-14 22:54:23 +000075#ifdef HAVE_SYS_WAIT_H
76#include <sys/wait.h> /* For WNOHANG */
77#endif
Guido van Rossumb6775db1994-08-01 11:34:53 +000078
Martin v. Löwis0e8bd7e2006-06-10 12:23:46 +000079#ifdef HAVE_SIGNAL_H
Guido van Rossuma376cc51996-12-05 23:43:35 +000080#include <signal.h>
Martin v. Löwis0e8bd7e2006-06-10 12:23:46 +000081#endif
Guido van Rossuma376cc51996-12-05 23:43:35 +000082
Guido van Rossumb6775db1994-08-01 11:34:53 +000083#ifdef HAVE_FCNTL_H
84#include <fcntl.h>
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +000085#endif /* HAVE_FCNTL_H */
Guido van Rossumb6775db1994-08-01 11:34:53 +000086
Guido van Rossuma6535fd2001-10-18 19:44:10 +000087#ifdef HAVE_GRP_H
88#include <grp.h>
89#endif
90
Barry Warsaw5676bd12003-01-07 20:57:09 +000091#ifdef HAVE_SYSEXITS_H
92#include <sysexits.h>
93#endif /* HAVE_SYSEXITS_H */
94
Anthony Baxter8a560de2004-10-13 15:30:56 +000095#ifdef HAVE_SYS_LOADAVG_H
96#include <sys/loadavg.h>
97#endif
98
Guido van Rossuma4916fa1996-05-23 22:58:55 +000099/* Various compilers have only certain posix functions */
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000100/* XXX Gosh I wish these were all moved into pyconfig.h */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000101#if defined(PYCC_VACPP) && defined(PYOS_OS2)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000102#include <process.h>
103#else
Guido van Rossumc5a0f531997-12-02 20:36:02 +0000104#if defined(__WATCOMC__) && !defined(__QNX__) /* Watcom compiler */
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000105#define HAVE_GETCWD 1
106#define HAVE_OPENDIR 1
107#define HAVE_SYSTEM 1
108#if defined(__OS2__)
109#define HAVE_EXECV 1
110#define HAVE_WAIT 1
Guido van Rossumad0ee831995-03-01 10:34:45 +0000111#endif
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000112#include <process.h>
113#else
114#ifdef __BORLANDC__ /* Borland compiler */
115#define HAVE_EXECV 1
116#define HAVE_GETCWD 1
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000117#define HAVE_OPENDIR 1
118#define HAVE_PIPE 1
119#define HAVE_POPEN 1
120#define HAVE_SYSTEM 1
121#define HAVE_WAIT 1
122#else
123#ifdef _MSC_VER /* Microsoft compiler */
Guido van Rossum8d665e61996-06-26 18:22:49 +0000124#define HAVE_GETCWD 1
Guido van Rossuma1065681999-01-25 23:20:23 +0000125#define HAVE_SPAWNV 1
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000126#define HAVE_EXECV 1
127#define HAVE_PIPE 1
128#define HAVE_POPEN 1
129#define HAVE_SYSTEM 1
Tim Petersab034fa2002-02-01 11:27:43 +0000130#define HAVE_CWAIT 1
Tim Peters11b23062003-04-23 02:39:17 +0000131#define HAVE_FSYNC 1
132#define fsync _commit
Andrew MacIntyre6c73af22002-03-03 03:07:07 +0000133#else
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000134#if defined(PYOS_OS2) && defined(PYCC_GCC) || defined(__VMS)
135/* Everything needed is defined in PC/os2emx/pyconfig.h or vms/pyconfig.h */
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000136#else /* all other compilers */
137/* Unix functions that the configure script doesn't check for */
138#define HAVE_EXECV 1
139#define HAVE_FORK 1
Guido van Rossum2242f2f2001-04-11 20:58:20 +0000140#if defined(__USLC__) && defined(__SCO_VERSION__) /* SCO UDK Compiler */
141#define HAVE_FORK1 1
142#endif
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000143#define HAVE_GETCWD 1
144#define HAVE_GETEGID 1
145#define HAVE_GETEUID 1
146#define HAVE_GETGID 1
147#define HAVE_GETPPID 1
148#define HAVE_GETUID 1
149#define HAVE_KILL 1
150#define HAVE_OPENDIR 1
151#define HAVE_PIPE 1
Martin v. Löwis212ede62003-09-20 11:20:30 +0000152#ifndef __rtems__
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000153#define HAVE_POPEN 1
Martin v. Löwis212ede62003-09-20 11:20:30 +0000154#endif
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000155#define HAVE_SYSTEM 1
156#define HAVE_WAIT 1
Guido van Rossumd371ff11999-01-25 16:12:23 +0000157#define HAVE_TTYNAME 1
Martin v. Löwis7a924e62003-03-05 14:15:21 +0000158#endif /* PYOS_OS2 && PYCC_GCC && __VMS */
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000159#endif /* _MSC_VER */
160#endif /* __BORLANDC__ */
Guido van Rossumc5a0f531997-12-02 20:36:02 +0000161#endif /* ! __WATCOMC__ || __QNX__ */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000162#endif /* ! __IBMC__ */
Guido van Rossumad0ee831995-03-01 10:34:45 +0000163
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000164#ifndef _MSC_VER
Guido van Rossum36bc6801995-06-14 22:54:23 +0000165
Martin v. Löwis8eb92a02002-09-19 08:03:21 +0000166#if defined(__sgi)&&_COMPILER_VERSION>=700
167/* declare ctermid_r if compiling with MIPSPro 7.x in ANSI C mode
168 (default) */
169extern char *ctermid_r(char *);
170#endif
171
Thomas Wouters1e0c2f42000-07-24 16:06:23 +0000172#ifndef HAVE_UNISTD_H
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000173#if defined(PYCC_VACPP)
Fredrik Lundhff7df9d2000-07-08 22:48:53 +0000174extern int mkdir(char *);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000175#else
Guido van Rossumc5a0f531997-12-02 20:36:02 +0000176#if ( defined(__WATCOMC__) || defined(_MSC_VER) ) && !defined(__QNX__)
Fredrik Lundhff7df9d2000-07-08 22:48:53 +0000177extern int mkdir(const char *);
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000178#else
Fredrik Lundhff7df9d2000-07-08 22:48:53 +0000179extern int mkdir(const char *, mode_t);
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000180#endif
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000181#endif
182#if defined(__IBMC__) || defined(__IBMCPP__)
Fredrik Lundhff7df9d2000-07-08 22:48:53 +0000183extern int chdir(char *);
184extern int rmdir(char *);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000185#else
Fredrik Lundhff7df9d2000-07-08 22:48:53 +0000186extern int chdir(const char *);
187extern int rmdir(const char *);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000188#endif
Tim Peters58e0a8c2001-05-14 22:32:33 +0000189#ifdef __BORLANDC__
190extern int chmod(const char *, int);
191#else
Fredrik Lundhff7df9d2000-07-08 22:48:53 +0000192extern int chmod(const char *, mode_t);
Tim Peters58e0a8c2001-05-14 22:32:33 +0000193#endif
Christian Heimes36281872007-11-30 21:11:28 +0000194/*#ifdef HAVE_FCHMOD
195extern int fchmod(int, mode_t);
196#endif*/
197/*#ifdef HAVE_LCHMOD
198extern int lchmod(const char *, mode_t);
199#endif*/
Fredrik Lundhff7df9d2000-07-08 22:48:53 +0000200extern int chown(const char *, uid_t, gid_t);
201extern char *getcwd(char *, int);
202extern char *strerror(int);
203extern int link(const char *, const char *);
204extern int rename(const char *, const char *);
205extern int stat(const char *, struct stat *);
206extern int unlink(const char *);
207extern int pclose(FILE *);
Guido van Rossumb6775db1994-08-01 11:34:53 +0000208#ifdef HAVE_SYMLINK
Fredrik Lundhff7df9d2000-07-08 22:48:53 +0000209extern int symlink(const char *, const char *);
Guido van Rossuma38a5031995-02-17 15:11:36 +0000210#endif /* HAVE_SYMLINK */
Guido van Rossumb6775db1994-08-01 11:34:53 +0000211#ifdef HAVE_LSTAT
Fredrik Lundhff7df9d2000-07-08 22:48:53 +0000212extern int lstat(const char *, struct stat *);
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +0000213#endif /* HAVE_LSTAT */
Guido van Rossumb6775db1994-08-01 11:34:53 +0000214#endif /* !HAVE_UNISTD_H */
Guido van Rossum36bc6801995-06-14 22:54:23 +0000215
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000216#endif /* !_MSC_VER */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000217
Guido van Rossumb6775db1994-08-01 11:34:53 +0000218#ifdef HAVE_UTIME_H
219#include <utime.h>
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +0000220#endif /* HAVE_UTIME_H */
Guido van Rossumb6775db1994-08-01 11:34:53 +0000221
Guido van Rossum14ed0b21994-09-29 09:50:09 +0000222#ifdef HAVE_SYS_UTIME_H
223#include <sys/utime.h>
224#define HAVE_UTIME_H /* pretend we do for the rest of this file */
225#endif /* HAVE_SYS_UTIME_H */
226
Guido van Rossumb6775db1994-08-01 11:34:53 +0000227#ifdef HAVE_SYS_TIMES_H
228#include <sys/times.h>
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +0000229#endif /* HAVE_SYS_TIMES_H */
Guido van Rossumb6775db1994-08-01 11:34:53 +0000230
231#ifdef HAVE_SYS_PARAM_H
232#include <sys/param.h>
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +0000233#endif /* HAVE_SYS_PARAM_H */
Guido van Rossumb6775db1994-08-01 11:34:53 +0000234
235#ifdef HAVE_SYS_UTSNAME_H
236#include <sys/utsname.h>
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +0000237#endif /* HAVE_SYS_UTSNAME_H */
Guido van Rossumb6775db1994-08-01 11:34:53 +0000238
Guido van Rossum3bbc62e1995-01-02 19:30:30 +0000239#ifdef HAVE_DIRENT_H
Guido van Rossumb6775db1994-08-01 11:34:53 +0000240#include <dirent.h>
Guido van Rossum3bbc62e1995-01-02 19:30:30 +0000241#define NAMLEN(dirent) strlen((dirent)->d_name)
242#else
Guido van Rossumc5a0f531997-12-02 20:36:02 +0000243#if defined(__WATCOMC__) && !defined(__QNX__)
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000244#include <direct.h>
245#define NAMLEN(dirent) strlen((dirent)->d_name)
246#else
Guido van Rossumb6775db1994-08-01 11:34:53 +0000247#define dirent direct
Guido van Rossum3bbc62e1995-01-02 19:30:30 +0000248#define NAMLEN(dirent) (dirent)->d_namlen
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000249#endif
Guido van Rossum3bbc62e1995-01-02 19:30:30 +0000250#ifdef HAVE_SYS_NDIR_H
Guido van Rossumb6775db1994-08-01 11:34:53 +0000251#include <sys/ndir.h>
Guido van Rossum3bbc62e1995-01-02 19:30:30 +0000252#endif
253#ifdef HAVE_SYS_DIR_H
Guido van Rossumb6775db1994-08-01 11:34:53 +0000254#include <sys/dir.h>
Guido van Rossum3bbc62e1995-01-02 19:30:30 +0000255#endif
256#ifdef HAVE_NDIR_H
Guido van Rossumb6775db1994-08-01 11:34:53 +0000257#include <ndir.h>
Guido van Rossum3bbc62e1995-01-02 19:30:30 +0000258#endif
259#endif
Guido van Rossumb6775db1994-08-01 11:34:53 +0000260
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000261#ifdef _MSC_VER
Martin v. Löwis0e8bd7e2006-06-10 12:23:46 +0000262#ifdef HAVE_DIRECT_H
Guido van Rossumb6775db1994-08-01 11:34:53 +0000263#include <direct.h>
Martin v. Löwis0e8bd7e2006-06-10 12:23:46 +0000264#endif
265#ifdef HAVE_IO_H
Guido van Rossumb6775db1994-08-01 11:34:53 +0000266#include <io.h>
Martin v. Löwis0e8bd7e2006-06-10 12:23:46 +0000267#endif
268#ifdef HAVE_PROCESS_H
Guido van Rossumb6775db1994-08-01 11:34:53 +0000269#include <process.h>
Martin v. Löwis0e8bd7e2006-06-10 12:23:46 +0000270#endif
Tim Petersbc2e10e2002-03-03 23:17:02 +0000271#include "osdefs.h"
Guido van Rossumb6775db1994-08-01 11:34:53 +0000272#include <windows.h>
Tim Petersee66d0c2002-07-15 16:10:55 +0000273#include <shellapi.h> /* for ShellExecute() */
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000274#define popen _popen
Guido van Rossum794d8131994-08-23 13:48:48 +0000275#define pclose _pclose
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000276#endif /* _MSC_VER */
Guido van Rossumb6775db1994-08-01 11:34:53 +0000277
Guido van Rossumd48f2521997-12-05 22:19:34 +0000278#if defined(PYCC_VACPP) && defined(PYOS_OS2)
Guido van Rossumb6775db1994-08-01 11:34:53 +0000279#include <io.h>
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +0000280#endif /* OS2 */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000281
Tim Petersbc2e10e2002-03-03 23:17:02 +0000282#ifndef MAXPATHLEN
Thomas Wouters1ddba602006-04-25 15:29:46 +0000283#if defined(PATH_MAX) && PATH_MAX > 1024
284#define MAXPATHLEN PATH_MAX
285#else
Tim Petersbc2e10e2002-03-03 23:17:02 +0000286#define MAXPATHLEN 1024
Thomas Wouters1ddba602006-04-25 15:29:46 +0000287#endif
Tim Petersbc2e10e2002-03-03 23:17:02 +0000288#endif /* MAXPATHLEN */
289
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000290#ifdef UNION_WAIT
291/* Emulate some macros on systems that have a union instead of macros */
292
293#ifndef WIFEXITED
294#define WIFEXITED(u_wait) (!(u_wait).w_termsig && !(u_wait).w_coredump)
295#endif
296
297#ifndef WEXITSTATUS
298#define WEXITSTATUS(u_wait) (WIFEXITED(u_wait)?((u_wait).w_retcode):-1)
299#endif
300
301#ifndef WTERMSIG
302#define WTERMSIG(u_wait) ((u_wait).w_termsig)
303#endif
304
Neal Norwitzd5a37542006-03-20 06:48:34 +0000305#define WAIT_TYPE union wait
306#define WAIT_STATUS_INT(s) (s.w_status)
307
308#else /* !UNION_WAIT */
309#define WAIT_TYPE int
310#define WAIT_STATUS_INT(s) (s)
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000311#endif /* UNION_WAIT */
312
Greg Wardb48bc172000-03-01 21:51:56 +0000313/* Don't use the "_r" form if we don't need it (also, won't have a
314 prototype for it, at least on Solaris -- maybe others as well?). */
315#if defined(HAVE_CTERMID_R) && defined(WITH_THREAD)
316#define USE_CTERMID_R
317#endif
318
319#if defined(HAVE_TMPNAM_R) && defined(WITH_THREAD)
320#define USE_TMPNAM_R
321#endif
322
Fred Drake699f3522000-06-29 21:12:41 +0000323/* choose the appropriate stat and fstat functions and return structs */
Guido van Rossum64529cd2000-06-30 22:45:12 +0000324#undef STAT
Martin v. Löwis6238d2b2002-06-30 15:26:10 +0000325#if defined(MS_WIN64) || defined(MS_WINDOWS)
Martin v. Löwis14694662006-02-03 12:54:16 +0000326# define STAT win32_stat
327# define FSTAT win32_fstat
328# define STRUCT_STAT struct win32_stat
Fred Drake699f3522000-06-29 21:12:41 +0000329#else
330# define STAT stat
331# define FSTAT fstat
332# define STRUCT_STAT struct stat
333#endif
334
Tim Peters11b23062003-04-23 02:39:17 +0000335#if defined(MAJOR_IN_MKDEV)
Martin v. Löwisdbe3f762002-10-10 14:27:30 +0000336#include <sys/mkdev.h>
337#else
338#if defined(MAJOR_IN_SYSMACROS)
339#include <sys/sysmacros.h>
340#endif
Neal Norwitz3d949422002-04-20 13:46:43 +0000341#if defined(HAVE_MKNOD) && defined(HAVE_SYS_MKDEV_H)
342#include <sys/mkdev.h>
343#endif
Martin v. Löwisdbe3f762002-10-10 14:27:30 +0000344#endif
Fred Drake699f3522000-06-29 21:12:41 +0000345
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000346/* Return a dictionary corresponding to the POSIX environment table */
Jack Jansenea0c3822002-08-01 21:57:49 +0000347#ifdef WITH_NEXT_FRAMEWORK
348/* On Darwin/MacOSX a shared library or framework has no access to
349** environ directly, we must obtain it with _NSGetEnviron().
350*/
351#include <crt_externs.h>
352static char **environ;
353#elif !defined(_MSC_VER) && ( !defined(__WATCOMC__) || defined(__QNX__) )
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000354extern char **environ;
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000355#endif /* !_MSC_VER */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000356
Barry Warsaw53699e91996-12-10 23:23:01 +0000357static PyObject *
Thomas Woutersf3f33dc2000-07-21 06:00:07 +0000358convertenviron(void)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000359{
Barry Warsaw53699e91996-12-10 23:23:01 +0000360 PyObject *d;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000361 char **e;
Barry Warsaw53699e91996-12-10 23:23:01 +0000362 d = PyDict_New();
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000363 if (d == NULL)
364 return NULL;
Jack Jansenea0c3822002-08-01 21:57:49 +0000365#ifdef WITH_NEXT_FRAMEWORK
366 if (environ == NULL)
367 environ = *_NSGetEnviron();
368#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000369 if (environ == NULL)
370 return d;
Guido van Rossum6a619f41999-08-03 19:41:10 +0000371 /* This part ignores errors */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000372 for (e = environ; *e != NULL; e++) {
Guido van Rossum6a619f41999-08-03 19:41:10 +0000373 PyObject *k;
Barry Warsaw53699e91996-12-10 23:23:01 +0000374 PyObject *v;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000375 char *p = strchr(*e, '=');
376 if (p == NULL)
377 continue;
Guido van Rossum6a619f41999-08-03 19:41:10 +0000378 k = PyString_FromStringAndSize(*e, (int)(p-*e));
379 if (k == NULL) {
380 PyErr_Clear();
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000381 continue;
Guido van Rossum6a619f41999-08-03 19:41:10 +0000382 }
383 v = PyString_FromString(p+1);
384 if (v == NULL) {
385 PyErr_Clear();
386 Py_DECREF(k);
387 continue;
388 }
389 if (PyDict_GetItem(d, k) == NULL) {
390 if (PyDict_SetItem(d, k, v) != 0)
391 PyErr_Clear();
392 }
393 Py_DECREF(k);
Barry Warsaw53699e91996-12-10 23:23:01 +0000394 Py_DECREF(v);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000395 }
Martin v. Löwisc16f3bd2003-05-03 09:14:54 +0000396#if defined(PYOS_OS2)
Guido van Rossumd48f2521997-12-05 22:19:34 +0000397 {
398 APIRET rc;
399 char buffer[1024]; /* OS/2 Provides a Documented Max of 1024 Chars */
400
401 rc = DosQueryExtLIBPATH(buffer, BEGIN_LIBPATH);
Fredrik Lundhff7df9d2000-07-08 22:48:53 +0000402 if (rc == NO_ERROR) { /* (not a type, envname is NOT 'BEGIN_LIBPATH') */
Guido van Rossumd48f2521997-12-05 22:19:34 +0000403 PyObject *v = PyString_FromString(buffer);
404 PyDict_SetItemString(d, "BEGINLIBPATH", v);
405 Py_DECREF(v);
406 }
407 rc = DosQueryExtLIBPATH(buffer, END_LIBPATH);
408 if (rc == NO_ERROR) { /* (not a typo, envname is NOT 'END_LIBPATH') */
409 PyObject *v = PyString_FromString(buffer);
410 PyDict_SetItemString(d, "ENDLIBPATH", v);
411 Py_DECREF(v);
412 }
413 }
414#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000415 return d;
416}
417
418
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000419/* Set a POSIX-specific error from errno, and return NULL */
420
Barry Warsawd58d7641998-07-23 16:14:40 +0000421static PyObject *
Thomas Woutersf3f33dc2000-07-21 06:00:07 +0000422posix_error(void)
Guido van Rossumad0ee831995-03-01 10:34:45 +0000423{
Barry Warsawca74da41999-02-09 19:31:45 +0000424 return PyErr_SetFromErrno(PyExc_OSError);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000425}
Barry Warsawd58d7641998-07-23 16:14:40 +0000426static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +0000427posix_error_with_filename(char* name)
Barry Warsawd58d7641998-07-23 16:14:40 +0000428{
Barry Warsawca74da41999-02-09 19:31:45 +0000429 return PyErr_SetFromErrnoWithFilename(PyExc_OSError, name);
Barry Warsawd58d7641998-07-23 16:14:40 +0000430}
431
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000432#ifdef Py_WIN_WIDE_FILENAMES
433static PyObject *
434posix_error_with_unicode_filename(Py_UNICODE* name)
435{
436 return PyErr_SetFromErrnoWithUnicodeFilename(PyExc_OSError, name);
437}
438#endif /* Py_WIN_WIDE_FILENAMES */
439
440
Mark Hammondef8b6542001-05-13 08:04:26 +0000441static PyObject *
442posix_error_with_allocated_filename(char* name)
443{
444 PyObject *rc = PyErr_SetFromErrnoWithFilename(PyExc_OSError, name);
445 PyMem_Free(name);
446 return rc;
447}
448
Martin v. Löwis6238d2b2002-06-30 15:26:10 +0000449#ifdef MS_WINDOWS
Fredrik Lundhffb9c772000-07-09 14:49:51 +0000450static PyObject *
451win32_error(char* function, char* filename)
452{
Mark Hammond33a6da92000-08-15 00:46:38 +0000453 /* XXX We should pass the function name along in the future.
454 (_winreg.c also wants to pass the function name.)
Tim Peters5aa91602002-01-30 05:46:57 +0000455 This would however require an additional param to the
Mark Hammond33a6da92000-08-15 00:46:38 +0000456 Windows error object, which is non-trivial.
457 */
Fredrik Lundhffb9c772000-07-09 14:49:51 +0000458 errno = GetLastError();
459 if (filename)
Mark Hammond33a6da92000-08-15 00:46:38 +0000460 return PyErr_SetFromWindowsErrWithFilename(errno, filename);
Fredrik Lundhffb9c772000-07-09 14:49:51 +0000461 else
Mark Hammond33a6da92000-08-15 00:46:38 +0000462 return PyErr_SetFromWindowsErr(errno);
Fredrik Lundhffb9c772000-07-09 14:49:51 +0000463}
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000464
465#ifdef Py_WIN_WIDE_FILENAMES
466static PyObject *
467win32_error_unicode(char* function, Py_UNICODE* filename)
468{
469 /* XXX - see win32_error for comments on 'function' */
470 errno = GetLastError();
471 if (filename)
472 return PyErr_SetFromWindowsErrWithUnicodeFilename(errno, filename);
473 else
474 return PyErr_SetFromWindowsErr(errno);
475}
476
477static PyObject *_PyUnicode_FromFileSystemEncodedObject(register PyObject *obj)
478{
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000479}
480
481/* Function suitable for O& conversion */
482static int
483convert_to_unicode(PyObject *arg, void* _param)
484{
485 PyObject **param = (PyObject**)_param;
486 if (PyUnicode_CheckExact(arg)) {
487 Py_INCREF(arg);
488 *param = arg;
489 }
490 else if (PyUnicode_Check(arg)) {
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000491 /* For a Unicode subtype that's not a Unicode object,
492 return a true Unicode object with the same data. */
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000493 *param = PyUnicode_FromUnicode(PyUnicode_AS_UNICODE(arg),
494 PyUnicode_GET_SIZE(arg));
495 return *param != NULL;
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000496 }
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000497 else
498 *param = PyUnicode_FromEncodedObject(arg,
499 Py_FileSystemDefaultEncoding,
500 "strict");
501 return (*param) != NULL;
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000502}
503
504#endif /* Py_WIN_WIDE_FILENAMES */
505
Fredrik Lundhffb9c772000-07-09 14:49:51 +0000506#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000507
Guido van Rossumd48f2521997-12-05 22:19:34 +0000508#if defined(PYOS_OS2)
509/**********************************************************************
510 * Helper Function to Trim and Format OS/2 Messages
511 **********************************************************************/
512 static void
513os2_formatmsg(char *msgbuf, int msglen, char *reason)
514{
515 msgbuf[msglen] = '\0'; /* OS/2 Doesn't Guarantee a Terminator */
516
517 if (strlen(msgbuf) > 0) { /* If Non-Empty Msg, Trim CRLF */
518 char *lastc = &msgbuf[ strlen(msgbuf)-1 ];
519
Neal Norwitz30b5c5d2005-12-19 06:05:18 +0000520 while (lastc > msgbuf && isspace(Py_CHARMASK(*lastc)))
Guido van Rossumd48f2521997-12-05 22:19:34 +0000521 *lastc-- = '\0'; /* Trim Trailing Whitespace (CRLF) */
522 }
523
524 /* Add Optional Reason Text */
525 if (reason) {
526 strcat(msgbuf, " : ");
527 strcat(msgbuf, reason);
528 }
529}
530
531/**********************************************************************
532 * Decode an OS/2 Operating System Error Code
533 *
534 * A convenience function to lookup an OS/2 error code and return a
535 * text message we can use to raise a Python exception.
536 *
537 * Notes:
538 * The messages for errors returned from the OS/2 kernel reside in
539 * the file OSO001.MSG in the \OS2 directory hierarchy.
540 *
541 **********************************************************************/
542 static char *
543os2_strerror(char *msgbuf, int msgbuflen, int errorcode, char *reason)
544{
545 APIRET rc;
546 ULONG msglen;
547
548 /* Retrieve Kernel-Related Error Message from OSO001.MSG File */
549 Py_BEGIN_ALLOW_THREADS
550 rc = DosGetMessage(NULL, 0, msgbuf, msgbuflen,
551 errorcode, "oso001.msg", &msglen);
552 Py_END_ALLOW_THREADS
553
554 if (rc == NO_ERROR)
555 os2_formatmsg(msgbuf, msglen, reason);
556 else
Tim Peters1ceb5fb2001-11-28 20:32:57 +0000557 PyOS_snprintf(msgbuf, msgbuflen,
Tim Peters885d4572001-11-28 20:27:42 +0000558 "unknown OS error #%d", errorcode);
Guido van Rossumd48f2521997-12-05 22:19:34 +0000559
560 return msgbuf;
561}
562
563/* Set an OS/2-specific error and return NULL. OS/2 kernel
564 errors are not in a global variable e.g. 'errno' nor are
565 they congruent with posix error numbers. */
566
567static PyObject * os2_error(int code)
568{
569 char text[1024];
570 PyObject *v;
571
572 os2_strerror(text, sizeof(text), code, "");
573
574 v = Py_BuildValue("(is)", code, text);
575 if (v != NULL) {
Barry Warsawca74da41999-02-09 19:31:45 +0000576 PyErr_SetObject(PyExc_OSError, v);
Guido van Rossumd48f2521997-12-05 22:19:34 +0000577 Py_DECREF(v);
578 }
579 return NULL; /* Signal to Python that an Exception is Pending */
580}
581
582#endif /* OS2 */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000583
584/* POSIX generic methods */
585
Barry Warsaw53699e91996-12-10 23:23:01 +0000586static PyObject *
Fred Drake4d1e64b2002-04-15 19:40:07 +0000587posix_fildes(PyObject *fdobj, int (*func)(int))
588{
589 int fd;
590 int res;
591 fd = PyObject_AsFileDescriptor(fdobj);
592 if (fd < 0)
593 return NULL;
594 Py_BEGIN_ALLOW_THREADS
595 res = (*func)(fd);
596 Py_END_ALLOW_THREADS
597 if (res < 0)
598 return posix_error();
599 Py_INCREF(Py_None);
600 return Py_None;
601}
Guido van Rossum21142a01999-01-08 21:05:37 +0000602
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000603#ifdef Py_WIN_WIDE_FILENAMES
Tim Peters11b23062003-04-23 02:39:17 +0000604static int
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000605unicode_file_names(void)
606{
607 static int canusewide = -1;
608 if (canusewide == -1) {
Tim Peters11b23062003-04-23 02:39:17 +0000609 /* As per doc for ::GetVersion(), this is the correct test for
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000610 the Windows NT family. */
611 canusewide = (GetVersion() < 0x80000000) ? 1 : 0;
612 }
613 return canusewide;
614}
615#endif
Tim Peters11b23062003-04-23 02:39:17 +0000616
Guido van Rossum21142a01999-01-08 21:05:37 +0000617static PyObject *
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000618posix_1str(PyObject *args, char *format, int (*func)(const char*))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000619{
Mark Hammondef8b6542001-05-13 08:04:26 +0000620 char *path1 = NULL;
Guido van Rossumff4949e1992-08-05 19:58:53 +0000621 int res;
Tim Peters5aa91602002-01-30 05:46:57 +0000622 if (!PyArg_ParseTuple(args, format,
Mark Hammondef8b6542001-05-13 08:04:26 +0000623 Py_FileSystemDefaultEncoding, &path1))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000624 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +0000625 Py_BEGIN_ALLOW_THREADS
Guido van Rossumff4949e1992-08-05 19:58:53 +0000626 res = (*func)(path1);
Barry Warsaw53699e91996-12-10 23:23:01 +0000627 Py_END_ALLOW_THREADS
Guido van Rossumff4949e1992-08-05 19:58:53 +0000628 if (res < 0)
Mark Hammondef8b6542001-05-13 08:04:26 +0000629 return posix_error_with_allocated_filename(path1);
630 PyMem_Free(path1);
Barry Warsaw53699e91996-12-10 23:23:01 +0000631 Py_INCREF(Py_None);
632 return Py_None;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000633}
634
Barry Warsaw53699e91996-12-10 23:23:01 +0000635static PyObject *
Tim Peters11b23062003-04-23 02:39:17 +0000636posix_2str(PyObject *args,
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000637 char *format,
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000638 int (*func)(const char *, const char *))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000639{
Mark Hammondef8b6542001-05-13 08:04:26 +0000640 char *path1 = NULL, *path2 = NULL;
Guido van Rossumff4949e1992-08-05 19:58:53 +0000641 int res;
Mark Hammondef8b6542001-05-13 08:04:26 +0000642 if (!PyArg_ParseTuple(args, format,
Tim Peters5aa91602002-01-30 05:46:57 +0000643 Py_FileSystemDefaultEncoding, &path1,
Mark Hammondef8b6542001-05-13 08:04:26 +0000644 Py_FileSystemDefaultEncoding, &path2))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000645 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +0000646 Py_BEGIN_ALLOW_THREADS
Guido van Rossumff4949e1992-08-05 19:58:53 +0000647 res = (*func)(path1, path2);
Barry Warsaw53699e91996-12-10 23:23:01 +0000648 Py_END_ALLOW_THREADS
Mark Hammondef8b6542001-05-13 08:04:26 +0000649 PyMem_Free(path1);
650 PyMem_Free(path2);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000651 if (res != 0)
Barry Warsawd58d7641998-07-23 16:14:40 +0000652 /* XXX how to report both path1 and path2??? */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000653 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +0000654 Py_INCREF(Py_None);
655 return Py_None;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000656}
657
Martin v. Löwis8e0d4942006-05-04 10:08:42 +0000658#ifdef Py_WIN_WIDE_FILENAMES
659static PyObject*
660win32_1str(PyObject* args, char* func,
661 char* format, BOOL (__stdcall *funcA)(LPCSTR),
662 char* wformat, BOOL (__stdcall *funcW)(LPWSTR))
663{
664 PyObject *uni;
665 char *ansi;
666 BOOL result;
667 if (unicode_file_names()) {
668 if (!PyArg_ParseTuple(args, wformat, &uni))
669 PyErr_Clear();
670 else {
671 Py_BEGIN_ALLOW_THREADS
672 result = funcW(PyUnicode_AsUnicode(uni));
673 Py_END_ALLOW_THREADS
674 if (!result)
675 return win32_error_unicode(func, PyUnicode_AsUnicode(uni));
676 Py_INCREF(Py_None);
677 return Py_None;
678 }
679 }
680 if (!PyArg_ParseTuple(args, format, &ansi))
681 return NULL;
682 Py_BEGIN_ALLOW_THREADS
683 result = funcA(ansi);
684 Py_END_ALLOW_THREADS
685 if (!result)
686 return win32_error(func, ansi);
687 Py_INCREF(Py_None);
688 return Py_None;
689
690}
691
692/* This is a reimplementation of the C library's chdir function,
693 but one that produces Win32 errors instead of DOS error codes.
694 chdir is essentially a wrapper around SetCurrentDirectory; however,
695 it also needs to set "magic" environment variables indicating
696 the per-drive current directory, which are of the form =<drive>: */
697BOOL __stdcall
698win32_chdir(LPCSTR path)
699{
700 char new_path[MAX_PATH+1];
701 int result;
702 char env[4] = "=x:";
703
704 if(!SetCurrentDirectoryA(path))
705 return FALSE;
706 result = GetCurrentDirectoryA(MAX_PATH+1, new_path);
707 if (!result)
708 return FALSE;
709 /* In the ANSI API, there should not be any paths longer
710 than MAX_PATH. */
711 assert(result <= MAX_PATH+1);
712 if (strncmp(new_path, "\\\\", 2) == 0 ||
713 strncmp(new_path, "//", 2) == 0)
714 /* UNC path, nothing to do. */
715 return TRUE;
716 env[1] = new_path[0];
717 return SetEnvironmentVariableA(env, new_path);
718}
719
720/* The Unicode version differs from the ANSI version
721 since the current directory might exceed MAX_PATH characters */
722BOOL __stdcall
723win32_wchdir(LPCWSTR path)
724{
725 wchar_t _new_path[MAX_PATH+1], *new_path = _new_path;
726 int result;
727 wchar_t env[4] = L"=x:";
728
729 if(!SetCurrentDirectoryW(path))
730 return FALSE;
731 result = GetCurrentDirectoryW(MAX_PATH+1, new_path);
732 if (!result)
733 return FALSE;
734 if (result > MAX_PATH+1) {
735 new_path = malloc(result);
736 if (!new_path) {
737 SetLastError(ERROR_OUTOFMEMORY);
738 return FALSE;
739 }
740 }
741 if (wcsncmp(new_path, L"\\\\", 2) == 0 ||
742 wcsncmp(new_path, L"//", 2) == 0)
743 /* UNC path, nothing to do. */
744 return TRUE;
745 env[1] = new_path[0];
746 result = SetEnvironmentVariableW(env, new_path);
747 if (new_path != _new_path)
748 free(new_path);
749 return result;
750}
751#endif
752
Martin v. Löwis14694662006-02-03 12:54:16 +0000753#ifdef MS_WINDOWS
754/* The CRT of Windows has a number of flaws wrt. its stat() implementation:
755 - time stamps are restricted to second resolution
756 - file modification times suffer from forth-and-back conversions between
757 UTC and local time
758 Therefore, we implement our own stat, based on the Win32 API directly.
759*/
760#define HAVE_STAT_NSEC 1
761
762struct win32_stat{
763 int st_dev;
764 __int64 st_ino;
765 unsigned short st_mode;
766 int st_nlink;
767 int st_uid;
768 int st_gid;
769 int st_rdev;
770 __int64 st_size;
771 int st_atime;
772 int st_atime_nsec;
773 int st_mtime;
774 int st_mtime_nsec;
775 int st_ctime;
776 int st_ctime_nsec;
777};
778
779static __int64 secs_between_epochs = 11644473600; /* Seconds between 1.1.1601 and 1.1.1970 */
780
781static void
782FILE_TIME_to_time_t_nsec(FILETIME *in_ptr, int *time_out, int* nsec_out)
783{
Martin v. Löwis77c176d2006-05-12 17:22:04 +0000784 /* XXX endianness. Shouldn't matter, as all Windows implementations are little-endian */
785 /* Cannot simply cast and dereference in_ptr,
786 since it might not be aligned properly */
787 __int64 in;
788 memcpy(&in, in_ptr, sizeof(in));
Martin v. Löwis14694662006-02-03 12:54:16 +0000789 *nsec_out = (int)(in % 10000000) * 100; /* FILETIME is in units of 100 nsec. */
790 /* XXX Win32 supports time stamps past 2038; we currently don't */
791 *time_out = Py_SAFE_DOWNCAST((in / 10000000) - secs_between_epochs, __int64, int);
792}
793
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +0000794static void
795time_t_to_FILE_TIME(int time_in, int nsec_in, FILETIME *out_ptr)
796{
797 /* XXX endianness */
798 __int64 out;
799 out = time_in + secs_between_epochs;
Martin v. Löwisf43893a2006-10-09 20:44:25 +0000800 out = out * 10000000 + nsec_in / 100;
Martin v. Löwis77c176d2006-05-12 17:22:04 +0000801 memcpy(out_ptr, &out, sizeof(out));
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +0000802}
803
Martin v. Löwis14694662006-02-03 12:54:16 +0000804/* Below, we *know* that ugo+r is 0444 */
805#if _S_IREAD != 0400
806#error Unsupported C library
807#endif
808static int
809attributes_to_mode(DWORD attr)
810{
811 int m = 0;
812 if (attr & FILE_ATTRIBUTE_DIRECTORY)
813 m |= _S_IFDIR | 0111; /* IFEXEC for user,group,other */
814 else
815 m |= _S_IFREG;
816 if (attr & FILE_ATTRIBUTE_READONLY)
817 m |= 0444;
818 else
819 m |= 0666;
820 return m;
821}
822
823static int
824attribute_data_to_stat(WIN32_FILE_ATTRIBUTE_DATA *info, struct win32_stat *result)
825{
826 memset(result, 0, sizeof(*result));
827 result->st_mode = attributes_to_mode(info->dwFileAttributes);
828 result->st_size = (((__int64)info->nFileSizeHigh)<<32) + info->nFileSizeLow;
829 FILE_TIME_to_time_t_nsec(&info->ftCreationTime, &result->st_ctime, &result->st_ctime_nsec);
830 FILE_TIME_to_time_t_nsec(&info->ftLastWriteTime, &result->st_mtime, &result->st_mtime_nsec);
831 FILE_TIME_to_time_t_nsec(&info->ftLastAccessTime, &result->st_atime, &result->st_atime_nsec);
832
833 return 0;
834}
835
Martin v. Löwis012bc722006-10-15 09:43:39 +0000836/* Emulate GetFileAttributesEx[AW] on Windows 95 */
837static int checked = 0;
838static BOOL (CALLBACK *gfaxa)(LPCSTR, GET_FILEEX_INFO_LEVELS, LPVOID);
839static BOOL (CALLBACK *gfaxw)(LPCWSTR, GET_FILEEX_INFO_LEVELS, LPVOID);
840static void
841check_gfax()
842{
843 HINSTANCE hKernel32;
844 if (checked)
845 return;
846 checked = 1;
847 hKernel32 = GetModuleHandle("KERNEL32");
848 *(FARPROC*)&gfaxa = GetProcAddress(hKernel32, "GetFileAttributesExA");
849 *(FARPROC*)&gfaxw = GetProcAddress(hKernel32, "GetFileAttributesExW");
850}
851
Martin v. Löwis3bf573f2007-04-04 18:30:36 +0000852static BOOL
853attributes_from_dir(LPCSTR pszFile, LPWIN32_FILE_ATTRIBUTE_DATA pfad)
854{
855 HANDLE hFindFile;
856 WIN32_FIND_DATAA FileData;
857 hFindFile = FindFirstFileA(pszFile, &FileData);
858 if (hFindFile == INVALID_HANDLE_VALUE)
859 return FALSE;
860 FindClose(hFindFile);
861 pfad->dwFileAttributes = FileData.dwFileAttributes;
862 pfad->ftCreationTime = FileData.ftCreationTime;
863 pfad->ftLastAccessTime = FileData.ftLastAccessTime;
864 pfad->ftLastWriteTime = FileData.ftLastWriteTime;
865 pfad->nFileSizeHigh = FileData.nFileSizeHigh;
866 pfad->nFileSizeLow = FileData.nFileSizeLow;
867 return TRUE;
868}
869
870static BOOL
871attributes_from_dir_w(LPCWSTR pszFile, LPWIN32_FILE_ATTRIBUTE_DATA pfad)
872{
873 HANDLE hFindFile;
874 WIN32_FIND_DATAW FileData;
875 hFindFile = FindFirstFileW(pszFile, &FileData);
876 if (hFindFile == INVALID_HANDLE_VALUE)
877 return FALSE;
878 FindClose(hFindFile);
879 pfad->dwFileAttributes = FileData.dwFileAttributes;
880 pfad->ftCreationTime = FileData.ftCreationTime;
881 pfad->ftLastAccessTime = FileData.ftLastAccessTime;
882 pfad->ftLastWriteTime = FileData.ftLastWriteTime;
883 pfad->nFileSizeHigh = FileData.nFileSizeHigh;
884 pfad->nFileSizeLow = FileData.nFileSizeLow;
885 return TRUE;
886}
887
Martin v. Löwis012bc722006-10-15 09:43:39 +0000888static BOOL WINAPI
889Py_GetFileAttributesExA(LPCSTR pszFile,
890 GET_FILEEX_INFO_LEVELS level,
891 LPVOID pv)
892{
893 BOOL result;
Martin v. Löwis012bc722006-10-15 09:43:39 +0000894 LPWIN32_FILE_ATTRIBUTE_DATA pfad = pv;
895 /* First try to use the system's implementation, if that is
896 available and either succeeds to gives an error other than
897 that it isn't implemented. */
898 check_gfax();
899 if (gfaxa) {
900 result = gfaxa(pszFile, level, pv);
901 if (result || GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
902 return result;
903 }
904 /* It's either not present, or not implemented.
905 Emulate using FindFirstFile. */
906 if (level != GetFileExInfoStandard) {
907 SetLastError(ERROR_INVALID_PARAMETER);
908 return FALSE;
909 }
910 /* Use GetFileAttributes to validate that the file name
911 does not contain wildcards (which FindFirstFile would
912 accept). */
913 if (GetFileAttributesA(pszFile) == 0xFFFFFFFF)
914 return FALSE;
Martin v. Löwis3bf573f2007-04-04 18:30:36 +0000915 return attributes_from_dir(pszFile, pfad);
Martin v. Löwis012bc722006-10-15 09:43:39 +0000916}
917
918static BOOL WINAPI
919Py_GetFileAttributesExW(LPCWSTR pszFile,
920 GET_FILEEX_INFO_LEVELS level,
921 LPVOID pv)
922{
923 BOOL result;
Martin v. Löwis012bc722006-10-15 09:43:39 +0000924 LPWIN32_FILE_ATTRIBUTE_DATA pfad = pv;
925 /* First try to use the system's implementation, if that is
926 available and either succeeds to gives an error other than
927 that it isn't implemented. */
928 check_gfax();
929 if (gfaxa) {
930 result = gfaxw(pszFile, level, pv);
931 if (result || GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
932 return result;
933 }
934 /* It's either not present, or not implemented.
935 Emulate using FindFirstFile. */
936 if (level != GetFileExInfoStandard) {
937 SetLastError(ERROR_INVALID_PARAMETER);
938 return FALSE;
939 }
940 /* Use GetFileAttributes to validate that the file name
941 does not contain wildcards (which FindFirstFile would
942 accept). */
943 if (GetFileAttributesW(pszFile) == 0xFFFFFFFF)
944 return FALSE;
Martin v. Löwis3bf573f2007-04-04 18:30:36 +0000945 return attributes_from_dir_w(pszFile, pfad);
Martin v. Löwis012bc722006-10-15 09:43:39 +0000946}
947
Martin v. Löwis14694662006-02-03 12:54:16 +0000948static int
949win32_stat(const char* path, struct win32_stat *result)
950{
951 WIN32_FILE_ATTRIBUTE_DATA info;
952 int code;
953 char *dot;
954 /* XXX not supported on Win95 and NT 3.x */
Martin v. Löwis012bc722006-10-15 09:43:39 +0000955 if (!Py_GetFileAttributesExA(path, GetFileExInfoStandard, &info)) {
Martin v. Löwis3bf573f2007-04-04 18:30:36 +0000956 if (GetLastError() != ERROR_SHARING_VIOLATION) {
957 /* Protocol violation: we explicitly clear errno, instead of
958 setting it to a POSIX error. Callers should use GetLastError. */
959 errno = 0;
960 return -1;
961 } else {
962 /* Could not get attributes on open file. Fall back to
963 reading the directory. */
964 if (!attributes_from_dir(path, &info)) {
965 /* Very strange. This should not fail now */
966 errno = 0;
967 return -1;
968 }
969 }
Martin v. Löwis14694662006-02-03 12:54:16 +0000970 }
971 code = attribute_data_to_stat(&info, result);
972 if (code != 0)
973 return code;
974 /* Set S_IFEXEC if it is an .exe, .bat, ... */
975 dot = strrchr(path, '.');
976 if (dot) {
977 if (stricmp(dot, ".bat") == 0 ||
978 stricmp(dot, ".cmd") == 0 ||
979 stricmp(dot, ".exe") == 0 ||
980 stricmp(dot, ".com") == 0)
981 result->st_mode |= 0111;
982 }
983 return code;
984}
985
986static int
987win32_wstat(const wchar_t* path, struct win32_stat *result)
988{
989 int code;
990 const wchar_t *dot;
991 WIN32_FILE_ATTRIBUTE_DATA info;
992 /* XXX not supported on Win95 and NT 3.x */
Martin v. Löwis012bc722006-10-15 09:43:39 +0000993 if (!Py_GetFileAttributesExW(path, GetFileExInfoStandard, &info)) {
Martin v. Löwis3bf573f2007-04-04 18:30:36 +0000994 if (GetLastError() != ERROR_SHARING_VIOLATION) {
995 /* Protocol violation: we explicitly clear errno, instead of
996 setting it to a POSIX error. Callers should use GetLastError. */
997 errno = 0;
998 return -1;
999 } else {
1000 /* Could not get attributes on open file. Fall back to
1001 reading the directory. */
1002 if (!attributes_from_dir_w(path, &info)) {
1003 /* Very strange. This should not fail now */
1004 errno = 0;
1005 return -1;
1006 }
1007 }
Martin v. Löwis14694662006-02-03 12:54:16 +00001008 }
1009 code = attribute_data_to_stat(&info, result);
1010 if (code < 0)
1011 return code;
1012 /* Set IFEXEC if it is an .exe, .bat, ... */
1013 dot = wcsrchr(path, '.');
1014 if (dot) {
1015 if (_wcsicmp(dot, L".bat") == 0 ||
1016 _wcsicmp(dot, L".cmd") == 0 ||
1017 _wcsicmp(dot, L".exe") == 0 ||
1018 _wcsicmp(dot, L".com") == 0)
1019 result->st_mode |= 0111;
1020 }
1021 return code;
1022}
1023
1024static int
1025win32_fstat(int file_number, struct win32_stat *result)
1026{
1027 BY_HANDLE_FILE_INFORMATION info;
1028 HANDLE h;
1029 int type;
1030
1031 h = (HANDLE)_get_osfhandle(file_number);
1032
1033 /* Protocol violation: we explicitly clear errno, instead of
1034 setting it to a POSIX error. Callers should use GetLastError. */
1035 errno = 0;
1036
1037 if (h == INVALID_HANDLE_VALUE) {
1038 /* This is really a C library error (invalid file handle).
1039 We set the Win32 error to the closes one matching. */
1040 SetLastError(ERROR_INVALID_HANDLE);
1041 return -1;
1042 }
1043 memset(result, 0, sizeof(*result));
1044
1045 type = GetFileType(h);
1046 if (type == FILE_TYPE_UNKNOWN) {
1047 DWORD error = GetLastError();
1048 if (error != 0) {
1049 return -1;
1050 }
1051 /* else: valid but unknown file */
1052 }
1053
1054 if (type != FILE_TYPE_DISK) {
1055 if (type == FILE_TYPE_CHAR)
1056 result->st_mode = _S_IFCHR;
1057 else if (type == FILE_TYPE_PIPE)
1058 result->st_mode = _S_IFIFO;
1059 return 0;
1060 }
1061
1062 if (!GetFileInformationByHandle(h, &info)) {
1063 return -1;
1064 }
1065
1066 /* similar to stat() */
1067 result->st_mode = attributes_to_mode(info.dwFileAttributes);
1068 result->st_size = (((__int64)info.nFileSizeHigh)<<32) + info.nFileSizeLow;
1069 FILE_TIME_to_time_t_nsec(&info.ftCreationTime, &result->st_ctime, &result->st_ctime_nsec);
1070 FILE_TIME_to_time_t_nsec(&info.ftLastWriteTime, &result->st_mtime, &result->st_mtime_nsec);
1071 FILE_TIME_to_time_t_nsec(&info.ftLastAccessTime, &result->st_atime, &result->st_atime_nsec);
1072 /* specific to fstat() */
1073 result->st_nlink = info.nNumberOfLinks;
1074 result->st_ino = (((__int64)info.nFileIndexHigh)<<32) + info.nFileIndexLow;
1075 return 0;
1076}
1077
1078#endif /* MS_WINDOWS */
1079
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001080PyDoc_STRVAR(stat_result__doc__,
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001081"stat_result: Result from stat or lstat.\n\n\
1082This object may be accessed either as a tuple of\n\
Fred Drakef7ce04d2002-06-20 18:31:21 +00001083 (mode, ino, dev, nlink, uid, gid, size, atime, mtime, ctime)\n\
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001084or via the attributes st_mode, st_ino, st_dev, st_nlink, st_uid, and so on.\n\
1085\n\
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001086Posix/windows: If your platform supports st_blksize, st_blocks, st_rdev,\n\
1087or st_flags, they are available as attributes only.\n\
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001088\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001089See os.stat for more information.");
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001090
1091static PyStructSequence_Field stat_result_fields[] = {
1092 {"st_mode", "protection bits"},
1093 {"st_ino", "inode"},
1094 {"st_dev", "device"},
1095 {"st_nlink", "number of hard links"},
1096 {"st_uid", "user ID of owner"},
1097 {"st_gid", "group ID of owner"},
1098 {"st_size", "total size, in bytes"},
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001099 /* The NULL is replaced with PyStructSequence_UnnamedField later. */
1100 {NULL, "integer time of last access"},
1101 {NULL, "integer time of last modification"},
1102 {NULL, "integer time of last change"},
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001103 {"st_atime", "time of last access"},
1104 {"st_mtime", "time of last modification"},
1105 {"st_ctime", "time of last change"},
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001106#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001107 {"st_blksize", "blocksize for filesystem I/O"},
1108#endif
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001109#ifdef HAVE_STRUCT_STAT_ST_BLOCKS
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001110 {"st_blocks", "number of blocks allocated"},
1111#endif
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001112#ifdef HAVE_STRUCT_STAT_ST_RDEV
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001113 {"st_rdev", "device type (if inode device)"},
1114#endif
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001115#ifdef HAVE_STRUCT_STAT_ST_FLAGS
1116 {"st_flags", "user defined flags for file"},
1117#endif
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001118#ifdef HAVE_STRUCT_STAT_ST_GEN
1119 {"st_gen", "generation number"},
1120#endif
1121#ifdef HAVE_STRUCT_STAT_ST_BIRTHTIME
1122 {"st_birthtime", "time of creation"},
1123#endif
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001124 {0}
1125};
1126
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001127#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001128#define ST_BLKSIZE_IDX 13
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001129#else
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001130#define ST_BLKSIZE_IDX 12
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001131#endif
1132
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001133#ifdef HAVE_STRUCT_STAT_ST_BLOCKS
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001134#define ST_BLOCKS_IDX (ST_BLKSIZE_IDX+1)
1135#else
1136#define ST_BLOCKS_IDX ST_BLKSIZE_IDX
1137#endif
1138
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001139#ifdef HAVE_STRUCT_STAT_ST_RDEV
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001140#define ST_RDEV_IDX (ST_BLOCKS_IDX+1)
1141#else
1142#define ST_RDEV_IDX ST_BLOCKS_IDX
1143#endif
1144
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001145#ifdef HAVE_STRUCT_STAT_ST_FLAGS
1146#define ST_FLAGS_IDX (ST_RDEV_IDX+1)
1147#else
1148#define ST_FLAGS_IDX ST_RDEV_IDX
1149#endif
1150
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001151#ifdef HAVE_STRUCT_STAT_ST_GEN
Martin v. Löwisf09582e2005-08-14 21:42:34 +00001152#define ST_GEN_IDX (ST_FLAGS_IDX+1)
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001153#else
Martin v. Löwisf09582e2005-08-14 21:42:34 +00001154#define ST_GEN_IDX ST_FLAGS_IDX
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001155#endif
1156
1157#ifdef HAVE_STRUCT_STAT_ST_BIRTHTIME
1158#define ST_BIRTHTIME_IDX (ST_GEN_IDX+1)
1159#else
1160#define ST_BIRTHTIME_IDX ST_GEN_IDX
1161#endif
1162
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001163static PyStructSequence_Desc stat_result_desc = {
1164 "stat_result", /* name */
1165 stat_result__doc__, /* doc */
1166 stat_result_fields,
1167 10
1168};
1169
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001170PyDoc_STRVAR(statvfs_result__doc__,
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001171"statvfs_result: Result from statvfs or fstatvfs.\n\n\
1172This object may be accessed either as a tuple of\n\
Fred Drakef7ce04d2002-06-20 18:31:21 +00001173 (bsize, frsize, blocks, bfree, bavail, files, ffree, favail, flag, namemax),\n\
Guido van Rossuma4dc73e2001-10-18 20:53:15 +00001174or via the attributes f_bsize, f_frsize, f_blocks, f_bfree, and so on.\n\
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001175\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001176See os.statvfs for more information.");
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001177
1178static PyStructSequence_Field statvfs_result_fields[] = {
1179 {"f_bsize", },
1180 {"f_frsize", },
1181 {"f_blocks", },
1182 {"f_bfree", },
1183 {"f_bavail", },
1184 {"f_files", },
1185 {"f_ffree", },
1186 {"f_favail", },
1187 {"f_flag", },
1188 {"f_namemax",},
1189 {0}
1190};
1191
1192static PyStructSequence_Desc statvfs_result_desc = {
1193 "statvfs_result", /* name */
1194 statvfs_result__doc__, /* doc */
1195 statvfs_result_fields,
1196 10
1197};
1198
Martin v. Löwis19ab6c92006-04-16 18:55:50 +00001199static int initialized;
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001200static PyTypeObject StatResultType;
1201static PyTypeObject StatVFSResultType;
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001202static newfunc structseq_new;
1203
1204static PyObject *
1205statresult_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
1206{
1207 PyStructSequence *result;
1208 int i;
1209
1210 result = (PyStructSequence*)structseq_new(type, args, kwds);
1211 if (!result)
1212 return NULL;
1213 /* If we have been initialized from a tuple,
1214 st_?time might be set to None. Initialize it
1215 from the int slots. */
1216 for (i = 7; i <= 9; i++) {
1217 if (result->ob_item[i+3] == Py_None) {
1218 Py_DECREF(Py_None);
1219 Py_INCREF(result->ob_item[i]);
1220 result->ob_item[i+3] = result->ob_item[i];
1221 }
1222 }
1223 return (PyObject*)result;
1224}
1225
1226
1227
1228/* If true, st_?time is float. */
Martin v. Löwisfe33d0b2005-01-16 08:57:39 +00001229static int _stat_float_times = 1;
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001230
1231PyDoc_STRVAR(stat_float_times__doc__,
1232"stat_float_times([newval]) -> oldval\n\n\
1233Determine whether os.[lf]stat represents time stamps as float objects.\n\
1234If newval is True, future calls to stat() return floats, if it is False,\n\
1235future calls return ints. \n\
1236If newval is omitted, return the current setting.\n");
1237
1238static PyObject*
1239stat_float_times(PyObject* self, PyObject *args)
1240{
1241 int newval = -1;
1242 if (!PyArg_ParseTuple(args, "|i:stat_float_times", &newval))
1243 return NULL;
1244 if (newval == -1)
1245 /* Return old value */
1246 return PyBool_FromLong(_stat_float_times);
1247 _stat_float_times = newval;
1248 Py_INCREF(Py_None);
1249 return Py_None;
1250}
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001251
Martin v. Löwis94717ed2002-09-09 14:24:16 +00001252static void
1253fill_time(PyObject *v, int index, time_t sec, unsigned long nsec)
1254{
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001255 PyObject *fval,*ival;
1256#if SIZEOF_TIME_T > SIZEOF_LONG
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00001257 ival = PyLong_FromLongLong((PY_LONG_LONG)sec);
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001258#else
1259 ival = PyInt_FromLong((long)sec);
1260#endif
Neal Norwitze0a81af2006-08-12 01:50:38 +00001261 if (!ival)
1262 return;
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001263 if (_stat_float_times) {
1264 fval = PyFloat_FromDouble(sec + 1e-9*nsec);
1265 } else {
1266 fval = ival;
1267 Py_INCREF(fval);
1268 }
1269 PyStructSequence_SET_ITEM(v, index, ival);
1270 PyStructSequence_SET_ITEM(v, index+3, fval);
Martin v. Löwis94717ed2002-09-09 14:24:16 +00001271}
1272
Tim Peters5aa91602002-01-30 05:46:57 +00001273/* pack a system stat C structure into the Python stat tuple
Fred Drake699f3522000-06-29 21:12:41 +00001274 (used by posix_stat() and posix_fstat()) */
1275static PyObject*
Martin v. Löwis14694662006-02-03 12:54:16 +00001276_pystat_fromstructstat(STRUCT_STAT *st)
Fred Drake699f3522000-06-29 21:12:41 +00001277{
Martin v. Löwis94717ed2002-09-09 14:24:16 +00001278 unsigned long ansec, mnsec, cnsec;
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001279 PyObject *v = PyStructSequence_New(&StatResultType);
Fred Drake699f3522000-06-29 21:12:41 +00001280 if (v == NULL)
1281 return NULL;
1282
Martin v. Löwis14694662006-02-03 12:54:16 +00001283 PyStructSequence_SET_ITEM(v, 0, PyInt_FromLong((long)st->st_mode));
Fred Drake699f3522000-06-29 21:12:41 +00001284#ifdef HAVE_LARGEFILE_SUPPORT
Tim Peters5aa91602002-01-30 05:46:57 +00001285 PyStructSequence_SET_ITEM(v, 1,
Martin v. Löwis14694662006-02-03 12:54:16 +00001286 PyLong_FromLongLong((PY_LONG_LONG)st->st_ino));
Fred Drake699f3522000-06-29 21:12:41 +00001287#else
Martin v. Löwis14694662006-02-03 12:54:16 +00001288 PyStructSequence_SET_ITEM(v, 1, PyInt_FromLong((long)st->st_ino));
Fred Drake699f3522000-06-29 21:12:41 +00001289#endif
1290#if defined(HAVE_LONG_LONG) && !defined(MS_WINDOWS)
Tim Peters5aa91602002-01-30 05:46:57 +00001291 PyStructSequence_SET_ITEM(v, 2,
Martin v. Löwis14694662006-02-03 12:54:16 +00001292 PyLong_FromLongLong((PY_LONG_LONG)st->st_dev));
Fred Drake699f3522000-06-29 21:12:41 +00001293#else
Martin v. Löwis14694662006-02-03 12:54:16 +00001294 PyStructSequence_SET_ITEM(v, 2, PyInt_FromLong((long)st->st_dev));
Fred Drake699f3522000-06-29 21:12:41 +00001295#endif
Martin v. Löwis14694662006-02-03 12:54:16 +00001296 PyStructSequence_SET_ITEM(v, 3, PyInt_FromLong((long)st->st_nlink));
1297 PyStructSequence_SET_ITEM(v, 4, PyInt_FromLong((long)st->st_uid));
1298 PyStructSequence_SET_ITEM(v, 5, PyInt_FromLong((long)st->st_gid));
Fred Drake699f3522000-06-29 21:12:41 +00001299#ifdef HAVE_LARGEFILE_SUPPORT
Tim Peters5aa91602002-01-30 05:46:57 +00001300 PyStructSequence_SET_ITEM(v, 6,
Martin v. Löwis14694662006-02-03 12:54:16 +00001301 PyLong_FromLongLong((PY_LONG_LONG)st->st_size));
Fred Drake699f3522000-06-29 21:12:41 +00001302#else
Martin v. Löwis14694662006-02-03 12:54:16 +00001303 PyStructSequence_SET_ITEM(v, 6, PyInt_FromLong(st->st_size));
Fred Drake699f3522000-06-29 21:12:41 +00001304#endif
Martin v. Löwis94717ed2002-09-09 14:24:16 +00001305
Martin v. Löwis14694662006-02-03 12:54:16 +00001306#if defined(HAVE_STAT_TV_NSEC)
1307 ansec = st->st_atim.tv_nsec;
1308 mnsec = st->st_mtim.tv_nsec;
1309 cnsec = st->st_ctim.tv_nsec;
1310#elif defined(HAVE_STAT_TV_NSEC2)
1311 ansec = st->st_atimespec.tv_nsec;
1312 mnsec = st->st_mtimespec.tv_nsec;
1313 cnsec = st->st_ctimespec.tv_nsec;
1314#elif defined(HAVE_STAT_NSEC)
1315 ansec = st->st_atime_nsec;
1316 mnsec = st->st_mtime_nsec;
1317 cnsec = st->st_ctime_nsec;
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001318#else
Martin v. Löwis94717ed2002-09-09 14:24:16 +00001319 ansec = mnsec = cnsec = 0;
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001320#endif
Martin v. Löwis14694662006-02-03 12:54:16 +00001321 fill_time(v, 7, st->st_atime, ansec);
1322 fill_time(v, 8, st->st_mtime, mnsec);
1323 fill_time(v, 9, st->st_ctime, cnsec);
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001324
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001325#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
Tim Peters5aa91602002-01-30 05:46:57 +00001326 PyStructSequence_SET_ITEM(v, ST_BLKSIZE_IDX,
Martin v. Löwis14694662006-02-03 12:54:16 +00001327 PyInt_FromLong((long)st->st_blksize));
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001328#endif
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001329#ifdef HAVE_STRUCT_STAT_ST_BLOCKS
Tim Peters5aa91602002-01-30 05:46:57 +00001330 PyStructSequence_SET_ITEM(v, ST_BLOCKS_IDX,
Martin v. Löwis14694662006-02-03 12:54:16 +00001331 PyInt_FromLong((long)st->st_blocks));
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001332#endif
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001333#ifdef HAVE_STRUCT_STAT_ST_RDEV
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001334 PyStructSequence_SET_ITEM(v, ST_RDEV_IDX,
Martin v. Löwis14694662006-02-03 12:54:16 +00001335 PyInt_FromLong((long)st->st_rdev));
Fred Drake699f3522000-06-29 21:12:41 +00001336#endif
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001337#ifdef HAVE_STRUCT_STAT_ST_GEN
1338 PyStructSequence_SET_ITEM(v, ST_GEN_IDX,
Martin v. Löwis14694662006-02-03 12:54:16 +00001339 PyInt_FromLong((long)st->st_gen));
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001340#endif
1341#ifdef HAVE_STRUCT_STAT_ST_BIRTHTIME
1342 {
1343 PyObject *val;
1344 unsigned long bsec,bnsec;
Martin v. Löwis14694662006-02-03 12:54:16 +00001345 bsec = (long)st->st_birthtime;
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001346#ifdef HAVE_STAT_TV_NSEC2
Hye-Shik Changd69e0342006-02-19 16:22:22 +00001347 bnsec = st->st_birthtimespec.tv_nsec;
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001348#else
1349 bnsec = 0;
1350#endif
1351 if (_stat_float_times) {
1352 val = PyFloat_FromDouble(bsec + 1e-9*bnsec);
1353 } else {
1354 val = PyInt_FromLong((long)bsec);
1355 }
1356 PyStructSequence_SET_ITEM(v, ST_BIRTHTIME_IDX,
1357 val);
1358 }
1359#endif
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001360#ifdef HAVE_STRUCT_STAT_ST_FLAGS
1361 PyStructSequence_SET_ITEM(v, ST_FLAGS_IDX,
Martin v. Löwis14694662006-02-03 12:54:16 +00001362 PyInt_FromLong((long)st->st_flags));
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001363#endif
Fred Drake699f3522000-06-29 21:12:41 +00001364
1365 if (PyErr_Occurred()) {
1366 Py_DECREF(v);
1367 return NULL;
1368 }
1369
1370 return v;
1371}
1372
Martin v. Löwisd8948722004-06-02 09:57:56 +00001373#ifdef MS_WINDOWS
1374
1375/* IsUNCRoot -- test whether the supplied path is of the form \\SERVER\SHARE\,
1376 where / can be used in place of \ and the trailing slash is optional.
1377 Both SERVER and SHARE must have at least one character.
1378*/
1379
1380#define ISSLASHA(c) ((c) == '\\' || (c) == '/')
1381#define ISSLASHW(c) ((c) == L'\\' || (c) == L'/')
Kristján Valur Jónssondbeaa692006-06-09 16:28:01 +00001382#ifndef ARRAYSIZE
Martin v. Löwisd8948722004-06-02 09:57:56 +00001383#define ARRAYSIZE(a) (sizeof(a) / sizeof(a[0]))
Kristján Valur Jónssondbeaa692006-06-09 16:28:01 +00001384#endif
Martin v. Löwisd8948722004-06-02 09:57:56 +00001385
Tim Peters4ad82172004-08-30 17:02:04 +00001386static BOOL
Martin v. Löwisd8948722004-06-02 09:57:56 +00001387IsUNCRootA(char *path, int pathlen)
1388{
1389 #define ISSLASH ISSLASHA
1390
1391 int i, share;
1392
1393 if (pathlen < 5 || !ISSLASH(path[0]) || !ISSLASH(path[1]))
1394 /* minimum UNCRoot is \\x\y */
1395 return FALSE;
1396 for (i = 2; i < pathlen ; i++)
1397 if (ISSLASH(path[i])) break;
1398 if (i == 2 || i == pathlen)
1399 /* do not allow \\\SHARE or \\SERVER */
1400 return FALSE;
1401 share = i+1;
1402 for (i = share; i < pathlen; i++)
1403 if (ISSLASH(path[i])) break;
1404 return (i != share && (i == pathlen || i == pathlen-1));
1405
1406 #undef ISSLASH
1407}
1408
1409#ifdef Py_WIN_WIDE_FILENAMES
Tim Peters4ad82172004-08-30 17:02:04 +00001410static BOOL
Martin v. Löwisd8948722004-06-02 09:57:56 +00001411IsUNCRootW(Py_UNICODE *path, int pathlen)
1412{
1413 #define ISSLASH ISSLASHW
1414
1415 int i, share;
1416
1417 if (pathlen < 5 || !ISSLASH(path[0]) || !ISSLASH(path[1]))
1418 /* minimum UNCRoot is \\x\y */
1419 return FALSE;
1420 for (i = 2; i < pathlen ; i++)
1421 if (ISSLASH(path[i])) break;
1422 if (i == 2 || i == pathlen)
1423 /* do not allow \\\SHARE or \\SERVER */
1424 return FALSE;
1425 share = i+1;
1426 for (i = share; i < pathlen; i++)
1427 if (ISSLASH(path[i])) break;
1428 return (i != share && (i == pathlen || i == pathlen-1));
1429
1430 #undef ISSLASH
1431}
1432#endif /* Py_WIN_WIDE_FILENAMES */
1433#endif /* MS_WINDOWS */
1434
Barry Warsaw53699e91996-12-10 23:23:01 +00001435static PyObject *
Tim Peters11b23062003-04-23 02:39:17 +00001436posix_do_stat(PyObject *self, PyObject *args,
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001437 char *format,
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001438#ifdef __VMS
1439 int (*statfunc)(const char *, STRUCT_STAT *, ...),
1440#else
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001441 int (*statfunc)(const char *, STRUCT_STAT *),
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001442#endif
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001443 char *wformat,
1444 int (*wstatfunc)(const Py_UNICODE *, STRUCT_STAT *))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001445{
Fred Drake699f3522000-06-29 21:12:41 +00001446 STRUCT_STAT st;
Tim Peters500bd032001-12-19 19:05:01 +00001447 char *path = NULL; /* pass this to stat; do not free() it */
1448 char *pathfree = NULL; /* this memory must be free'd */
Guido van Rossumff4949e1992-08-05 19:58:53 +00001449 int res;
Martin v. Löwis14694662006-02-03 12:54:16 +00001450 PyObject *result;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001451
1452#ifdef Py_WIN_WIDE_FILENAMES
1453 /* If on wide-character-capable OS see if argument
1454 is Unicode and if so use wide API. */
1455 if (unicode_file_names()) {
1456 PyUnicodeObject *po;
1457 if (PyArg_ParseTuple(args, wformat, &po)) {
Martin v. Löwis14694662006-02-03 12:54:16 +00001458 Py_UNICODE *wpath = PyUnicode_AS_UNICODE(po);
1459
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001460 Py_BEGIN_ALLOW_THREADS
1461 /* PyUnicode_AS_UNICODE result OK without
1462 thread lock as it is a simple dereference. */
1463 res = wstatfunc(wpath, &st);
1464 Py_END_ALLOW_THREADS
Martin v. Löwis14694662006-02-03 12:54:16 +00001465
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001466 if (res != 0)
Martin v. Löwis14694662006-02-03 12:54:16 +00001467 return win32_error_unicode("stat", wpath);
1468 return _pystat_fromstructstat(&st);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001469 }
1470 /* Drop the argument parsing error as narrow strings
1471 are also valid. */
1472 PyErr_Clear();
1473 }
1474#endif
1475
Tim Peters5aa91602002-01-30 05:46:57 +00001476 if (!PyArg_ParseTuple(args, format,
Mark Hammondef8b6542001-05-13 08:04:26 +00001477 Py_FileSystemDefaultEncoding, &path))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001478 return NULL;
Tim Peters500bd032001-12-19 19:05:01 +00001479 pathfree = path;
Guido van Rossumace88ae2000-04-21 18:54:45 +00001480
Barry Warsaw53699e91996-12-10 23:23:01 +00001481 Py_BEGIN_ALLOW_THREADS
Guido van Rossumff4949e1992-08-05 19:58:53 +00001482 res = (*statfunc)(path, &st);
Barry Warsaw53699e91996-12-10 23:23:01 +00001483 Py_END_ALLOW_THREADS
Martin v. Löwis14694662006-02-03 12:54:16 +00001484
1485 if (res != 0) {
1486#ifdef MS_WINDOWS
1487 result = win32_error("stat", pathfree);
1488#else
1489 result = posix_error_with_filename(pathfree);
1490#endif
1491 }
1492 else
1493 result = _pystat_fromstructstat(&st);
Fred Drake699f3522000-06-29 21:12:41 +00001494
Tim Peters500bd032001-12-19 19:05:01 +00001495 PyMem_Free(pathfree);
Martin v. Löwis14694662006-02-03 12:54:16 +00001496 return result;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001497}
1498
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001499/* POSIX methods */
1500
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001501PyDoc_STRVAR(posix_access__doc__,
Georg Brandl7a284472007-01-27 19:38:50 +00001502"access(path, mode) -> True if granted, False otherwise\n\n\
Guido van Rossuma0b90752002-06-18 16:22:43 +00001503Use the real uid/gid to test for access to a path. Note that most\n\
1504operations will use the effective uid/gid, therefore this routine can\n\
1505be used in a suid/sgid environment to test if the invoking user has the\n\
1506specified access to the path. The mode argument can be F_OK to test\n\
1507existence, or the inclusive-OR of R_OK, W_OK, and X_OK.");
Guido van Rossum94f6f721999-01-06 18:42:14 +00001508
1509static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00001510posix_access(PyObject *self, PyObject *args)
Guido van Rossum94f6f721999-01-06 18:42:14 +00001511{
Guido van Rossum015f22a1999-01-06 22:52:38 +00001512 char *path;
1513 int mode;
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001514
Martin v. Löwis1b699a52003-09-12 16:25:38 +00001515#ifdef Py_WIN_WIDE_FILENAMES
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001516 DWORD attr;
Martin v. Löwis1b699a52003-09-12 16:25:38 +00001517 if (unicode_file_names()) {
1518 PyUnicodeObject *po;
1519 if (PyArg_ParseTuple(args, "Ui:access", &po, &mode)) {
1520 Py_BEGIN_ALLOW_THREADS
1521 /* PyUnicode_AS_UNICODE OK without thread lock as
1522 it is a simple dereference. */
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001523 attr = GetFileAttributesW(PyUnicode_AS_UNICODE(po));
Martin v. Löwis1b699a52003-09-12 16:25:38 +00001524 Py_END_ALLOW_THREADS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001525 goto finish;
Martin v. Löwis1b699a52003-09-12 16:25:38 +00001526 }
1527 /* Drop the argument parsing error as narrow strings
1528 are also valid. */
1529 PyErr_Clear();
1530 }
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001531 if (!PyArg_ParseTuple(args, "eti:access",
1532 Py_FileSystemDefaultEncoding, &path, &mode))
1533 return 0;
1534 Py_BEGIN_ALLOW_THREADS
1535 attr = GetFileAttributesA(path);
1536 Py_END_ALLOW_THREADS
1537 PyMem_Free(path);
1538finish:
1539 if (attr == 0xFFFFFFFF)
1540 /* File does not exist, or cannot read attributes */
1541 return PyBool_FromLong(0);
1542 /* Access is possible if either write access wasn't requested, or
Martin v. Löwis7b3cc062007-12-03 23:09:04 +00001543 the file isn't read-only, or if it's a directory, as there are
1544 no read-only directories on Windows. */
1545 return PyBool_FromLong(!(mode & 2)
1546 || !(attr & FILE_ATTRIBUTE_READONLY)
1547 || (attr & FILE_ATTRIBUTE_DIRECTORY));
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001548#else
1549 int res;
Martin v. Löwisb60ae992005-03-08 09:10:29 +00001550 if (!PyArg_ParseTuple(args, "eti:access",
1551 Py_FileSystemDefaultEncoding, &path, &mode))
Guido van Rossum015f22a1999-01-06 22:52:38 +00001552 return NULL;
1553 Py_BEGIN_ALLOW_THREADS
1554 res = access(path, mode);
1555 Py_END_ALLOW_THREADS
Neal Norwitz24b3c222005-09-19 06:43:44 +00001556 PyMem_Free(path);
Neal Norwitz3efd0a12005-09-19 06:45:53 +00001557 return PyBool_FromLong(res == 0);
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001558#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00001559}
1560
Guido van Rossumd371ff11999-01-25 16:12:23 +00001561#ifndef F_OK
1562#define F_OK 0
1563#endif
1564#ifndef R_OK
1565#define R_OK 4
1566#endif
1567#ifndef W_OK
1568#define W_OK 2
1569#endif
1570#ifndef X_OK
1571#define X_OK 1
1572#endif
1573
1574#ifdef HAVE_TTYNAME
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001575PyDoc_STRVAR(posix_ttyname__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001576"ttyname(fd) -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001577Return the name of the terminal device connected to 'fd'.");
Guido van Rossum94f6f721999-01-06 18:42:14 +00001578
1579static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00001580posix_ttyname(PyObject *self, PyObject *args)
Guido van Rossum94f6f721999-01-06 18:42:14 +00001581{
Guido van Rossum94f6f721999-01-06 18:42:14 +00001582 int id;
1583 char *ret;
1584
Fred Drake5ab8eaf1999-12-09 21:13:07 +00001585 if (!PyArg_ParseTuple(args, "i:ttyname", &id))
Guido van Rossum94f6f721999-01-06 18:42:14 +00001586 return NULL;
1587
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001588#if defined(__VMS)
Martin v. Löwisc16f3bd2003-05-03 09:14:54 +00001589 /* file descriptor 0 only, the default input device (stdin) */
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001590 if (id == 0) {
1591 ret = ttyname();
1592 }
1593 else {
1594 ret = NULL;
1595 }
1596#else
Guido van Rossum94f6f721999-01-06 18:42:14 +00001597 ret = ttyname(id);
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001598#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00001599 if (ret == NULL)
Neal Norwitz3efd0a12005-09-19 06:45:53 +00001600 return posix_error();
1601 return PyString_FromString(ret);
Guido van Rossum94f6f721999-01-06 18:42:14 +00001602}
Guido van Rossumd371ff11999-01-25 16:12:23 +00001603#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00001604
Fred Drake5ab8eaf1999-12-09 21:13:07 +00001605#ifdef HAVE_CTERMID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001606PyDoc_STRVAR(posix_ctermid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001607"ctermid() -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001608Return the name of the controlling terminal for this process.");
Fred Drake5ab8eaf1999-12-09 21:13:07 +00001609
1610static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00001611posix_ctermid(PyObject *self, PyObject *noargs)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00001612{
1613 char *ret;
1614 char buffer[L_ctermid];
1615
Greg Wardb48bc172000-03-01 21:51:56 +00001616#ifdef USE_CTERMID_R
Fred Drake5ab8eaf1999-12-09 21:13:07 +00001617 ret = ctermid_r(buffer);
1618#else
1619 ret = ctermid(buffer);
1620#endif
1621 if (ret == NULL)
Neal Norwitz3efd0a12005-09-19 06:45:53 +00001622 return posix_error();
1623 return PyString_FromString(buffer);
Fred Drake5ab8eaf1999-12-09 21:13:07 +00001624}
1625#endif
1626
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001627PyDoc_STRVAR(posix_chdir__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001628"chdir(path)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001629Change the current working directory to the specified path.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001630
Barry Warsaw53699e91996-12-10 23:23:01 +00001631static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00001632posix_chdir(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001633{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001634#ifdef MS_WINDOWS
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00001635 return win32_1str(args, "chdir", "s:chdir", win32_chdir, "U:chdir", win32_wchdir);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001636#elif defined(PYOS_OS2) && defined(PYCC_GCC)
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00001637 return posix_1str(args, "et:chdir", _chdir2);
Martin v. Löwis7a924e62003-03-05 14:15:21 +00001638#elif defined(__VMS)
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00001639 return posix_1str(args, "et:chdir", (int (*)(const char *))chdir);
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001640#else
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00001641 return posix_1str(args, "et:chdir", chdir);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00001642#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001643}
1644
Fred Drake4d1e64b2002-04-15 19:40:07 +00001645#ifdef HAVE_FCHDIR
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001646PyDoc_STRVAR(posix_fchdir__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001647"fchdir(fildes)\n\n\
Fred Drake4d1e64b2002-04-15 19:40:07 +00001648Change to the directory of the given file descriptor. fildes must be\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001649opened on a directory, not a file.");
Fred Drake4d1e64b2002-04-15 19:40:07 +00001650
1651static PyObject *
1652posix_fchdir(PyObject *self, PyObject *fdobj)
1653{
1654 return posix_fildes(fdobj, fchdir);
1655}
1656#endif /* HAVE_FCHDIR */
1657
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001658
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001659PyDoc_STRVAR(posix_chmod__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001660"chmod(path, mode)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001661Change the access permissions of a file.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001662
Barry Warsaw53699e91996-12-10 23:23:01 +00001663static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00001664posix_chmod(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001665{
Mark Hammondef8b6542001-05-13 08:04:26 +00001666 char *path = NULL;
Guido van Rossumffd15f52000-03-31 00:47:28 +00001667 int i;
1668 int res;
Mark Hammond817c9292003-12-03 01:22:38 +00001669#ifdef Py_WIN_WIDE_FILENAMES
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001670 DWORD attr;
Mark Hammond817c9292003-12-03 01:22:38 +00001671 if (unicode_file_names()) {
1672 PyUnicodeObject *po;
1673 if (PyArg_ParseTuple(args, "Ui|:chmod", &po, &i)) {
1674 Py_BEGIN_ALLOW_THREADS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001675 attr = GetFileAttributesW(PyUnicode_AS_UNICODE(po));
1676 if (attr != 0xFFFFFFFF) {
1677 if (i & _S_IWRITE)
1678 attr &= ~FILE_ATTRIBUTE_READONLY;
1679 else
1680 attr |= FILE_ATTRIBUTE_READONLY;
1681 res = SetFileAttributesW(PyUnicode_AS_UNICODE(po), attr);
1682 }
1683 else
1684 res = 0;
Mark Hammond817c9292003-12-03 01:22:38 +00001685 Py_END_ALLOW_THREADS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001686 if (!res)
1687 return win32_error_unicode("chmod",
Mark Hammond817c9292003-12-03 01:22:38 +00001688 PyUnicode_AS_UNICODE(po));
1689 Py_INCREF(Py_None);
1690 return Py_None;
1691 }
1692 /* Drop the argument parsing error as narrow strings
1693 are also valid. */
1694 PyErr_Clear();
1695 }
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001696 if (!PyArg_ParseTuple(args, "eti:chmod", Py_FileSystemDefaultEncoding,
1697 &path, &i))
1698 return NULL;
1699 Py_BEGIN_ALLOW_THREADS
1700 attr = GetFileAttributesA(path);
1701 if (attr != 0xFFFFFFFF) {
1702 if (i & _S_IWRITE)
1703 attr &= ~FILE_ATTRIBUTE_READONLY;
1704 else
1705 attr |= FILE_ATTRIBUTE_READONLY;
1706 res = SetFileAttributesA(path, attr);
1707 }
1708 else
1709 res = 0;
1710 Py_END_ALLOW_THREADS
1711 if (!res) {
1712 win32_error("chmod", path);
1713 PyMem_Free(path);
1714 return NULL;
1715 }
Martin v. Löwis9f485bc2006-05-08 05:25:56 +00001716 PyMem_Free(path);
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001717 Py_INCREF(Py_None);
1718 return Py_None;
1719#else /* Py_WIN_WIDE_FILENAMES */
Mark Hammond817c9292003-12-03 01:22:38 +00001720 if (!PyArg_ParseTuple(args, "eti:chmod", Py_FileSystemDefaultEncoding,
Mark Hammondef8b6542001-05-13 08:04:26 +00001721 &path, &i))
Guido van Rossumffd15f52000-03-31 00:47:28 +00001722 return NULL;
1723 Py_BEGIN_ALLOW_THREADS
Guido van Rossumef40e772000-03-31 01:26:23 +00001724 res = chmod(path, i);
Guido van Rossumffd15f52000-03-31 00:47:28 +00001725 Py_END_ALLOW_THREADS
1726 if (res < 0)
Mark Hammondef8b6542001-05-13 08:04:26 +00001727 return posix_error_with_allocated_filename(path);
1728 PyMem_Free(path);
Guido van Rossumffd15f52000-03-31 00:47:28 +00001729 Py_INCREF(Py_None);
1730 return Py_None;
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001731#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001732}
1733
Christian Heimes36281872007-11-30 21:11:28 +00001734#ifdef HAVE_FCHMOD
1735PyDoc_STRVAR(posix_fchmod__doc__,
1736"fchmod(fd, mode)\n\n\
1737Change the access permissions of the file given by file\n\
1738descriptor fd.");
1739
1740static PyObject *
1741posix_fchmod(PyObject *self, PyObject *args)
1742{
1743 int fd, mode, res;
1744 if (!PyArg_ParseTuple(args, "ii:fchmod", &fd, &mode))
1745 return NULL;
1746 Py_BEGIN_ALLOW_THREADS
1747 res = fchmod(fd, mode);
1748 Py_END_ALLOW_THREADS
1749 if (res < 0)
1750 return posix_error();
1751 Py_RETURN_NONE;
1752}
1753#endif /* HAVE_FCHMOD */
1754
1755#ifdef HAVE_LCHMOD
1756PyDoc_STRVAR(posix_lchmod__doc__,
1757"lchmod(path, mode)\n\n\
1758Change the access permissions of a file. If path is a symlink, this\n\
1759affects the link itself rather than the target.");
1760
1761static PyObject *
1762posix_lchmod(PyObject *self, PyObject *args)
1763{
1764 char *path = NULL;
1765 int i;
1766 int res;
1767 if (!PyArg_ParseTuple(args, "eti:lchmod", Py_FileSystemDefaultEncoding,
1768 &path, &i))
1769 return NULL;
1770 Py_BEGIN_ALLOW_THREADS
1771 res = lchmod(path, i);
1772 Py_END_ALLOW_THREADS
1773 if (res < 0)
1774 return posix_error_with_allocated_filename(path);
1775 PyMem_Free(path);
1776 Py_RETURN_NONE;
1777}
1778#endif /* HAVE_LCHMOD */
1779
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001780
Martin v. Löwis382abef2007-02-19 10:55:19 +00001781#ifdef HAVE_CHFLAGS
1782PyDoc_STRVAR(posix_chflags__doc__,
1783"chflags(path, flags)\n\n\
1784Set file flags.");
1785
1786static PyObject *
1787posix_chflags(PyObject *self, PyObject *args)
1788{
1789 char *path;
1790 unsigned long flags;
1791 int res;
1792 if (!PyArg_ParseTuple(args, "etk:chflags",
1793 Py_FileSystemDefaultEncoding, &path, &flags))
1794 return NULL;
1795 Py_BEGIN_ALLOW_THREADS
1796 res = chflags(path, flags);
1797 Py_END_ALLOW_THREADS
1798 if (res < 0)
1799 return posix_error_with_allocated_filename(path);
1800 PyMem_Free(path);
1801 Py_INCREF(Py_None);
1802 return Py_None;
1803}
1804#endif /* HAVE_CHFLAGS */
1805
1806#ifdef HAVE_LCHFLAGS
1807PyDoc_STRVAR(posix_lchflags__doc__,
1808"lchflags(path, flags)\n\n\
1809Set file flags.\n\
1810This function will not follow symbolic links.");
1811
1812static PyObject *
1813posix_lchflags(PyObject *self, PyObject *args)
1814{
1815 char *path;
1816 unsigned long flags;
1817 int res;
1818 if (!PyArg_ParseTuple(args, "etk:lchflags",
1819 Py_FileSystemDefaultEncoding, &path, &flags))
1820 return NULL;
1821 Py_BEGIN_ALLOW_THREADS
1822 res = lchflags(path, flags);
1823 Py_END_ALLOW_THREADS
1824 if (res < 0)
1825 return posix_error_with_allocated_filename(path);
1826 PyMem_Free(path);
1827 Py_INCREF(Py_None);
1828 return Py_None;
1829}
1830#endif /* HAVE_LCHFLAGS */
1831
Martin v. Löwis244edc82001-10-04 22:44:26 +00001832#ifdef HAVE_CHROOT
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001833PyDoc_STRVAR(posix_chroot__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001834"chroot(path)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001835Change root directory to path.");
Martin v. Löwis244edc82001-10-04 22:44:26 +00001836
1837static PyObject *
1838posix_chroot(PyObject *self, PyObject *args)
1839{
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00001840 return posix_1str(args, "et:chroot", chroot);
Martin v. Löwis244edc82001-10-04 22:44:26 +00001841}
1842#endif
1843
Guido van Rossum21142a01999-01-08 21:05:37 +00001844#ifdef HAVE_FSYNC
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001845PyDoc_STRVAR(posix_fsync__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001846"fsync(fildes)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001847force write of file with filedescriptor to disk.");
Guido van Rossum21142a01999-01-08 21:05:37 +00001848
1849static PyObject *
Fred Drake4d1e64b2002-04-15 19:40:07 +00001850posix_fsync(PyObject *self, PyObject *fdobj)
Guido van Rossum21142a01999-01-08 21:05:37 +00001851{
Fred Drake4d1e64b2002-04-15 19:40:07 +00001852 return posix_fildes(fdobj, fsync);
Guido van Rossum21142a01999-01-08 21:05:37 +00001853}
1854#endif /* HAVE_FSYNC */
1855
1856#ifdef HAVE_FDATASYNC
Guido van Rossumecc23b02000-09-22 16:01:05 +00001857
Guido van Rossum7f58e2e2000-09-22 17:26:14 +00001858#ifdef __hpux
Guido van Rossumecc23b02000-09-22 16:01:05 +00001859extern int fdatasync(int); /* On HP-UX, in libc but not in unistd.h */
1860#endif
1861
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001862PyDoc_STRVAR(posix_fdatasync__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001863"fdatasync(fildes)\n\n\
Guido van Rossum21142a01999-01-08 21:05:37 +00001864force write of file with filedescriptor to disk.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001865 does not force update of metadata.");
Guido van Rossum21142a01999-01-08 21:05:37 +00001866
1867static PyObject *
Fred Drake4d1e64b2002-04-15 19:40:07 +00001868posix_fdatasync(PyObject *self, PyObject *fdobj)
Guido van Rossum21142a01999-01-08 21:05:37 +00001869{
Fred Drake4d1e64b2002-04-15 19:40:07 +00001870 return posix_fildes(fdobj, fdatasync);
Guido van Rossum21142a01999-01-08 21:05:37 +00001871}
1872#endif /* HAVE_FDATASYNC */
1873
1874
Fredrik Lundh10723342000-07-10 16:38:09 +00001875#ifdef HAVE_CHOWN
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001876PyDoc_STRVAR(posix_chown__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001877"chown(path, uid, gid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001878Change the owner and group id of path to the numeric uid and gid.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001879
Barry Warsaw53699e91996-12-10 23:23:01 +00001880static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00001881posix_chown(PyObject *self, PyObject *args)
Guido van Rossumb6775db1994-08-01 11:34:53 +00001882{
Mark Hammondef8b6542001-05-13 08:04:26 +00001883 char *path = NULL;
Fredrik Lundh44328e62000-07-10 15:59:30 +00001884 int uid, gid;
1885 int res;
Tim Peters5aa91602002-01-30 05:46:57 +00001886 if (!PyArg_ParseTuple(args, "etii:chown",
1887 Py_FileSystemDefaultEncoding, &path,
Mark Hammondef8b6542001-05-13 08:04:26 +00001888 &uid, &gid))
Fredrik Lundh44328e62000-07-10 15:59:30 +00001889 return NULL;
1890 Py_BEGIN_ALLOW_THREADS
1891 res = chown(path, (uid_t) uid, (gid_t) gid);
1892 Py_END_ALLOW_THREADS
1893 if (res < 0)
Mark Hammondef8b6542001-05-13 08:04:26 +00001894 return posix_error_with_allocated_filename(path);
1895 PyMem_Free(path);
Fredrik Lundh44328e62000-07-10 15:59:30 +00001896 Py_INCREF(Py_None);
1897 return Py_None;
Guido van Rossumb6775db1994-08-01 11:34:53 +00001898}
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00001899#endif /* HAVE_CHOWN */
Guido van Rossumb6775db1994-08-01 11:34:53 +00001900
Christian Heimes36281872007-11-30 21:11:28 +00001901#ifdef HAVE_FCHOWN
1902PyDoc_STRVAR(posix_fchown__doc__,
1903"fchown(fd, uid, gid)\n\n\
1904Change the owner and group id of the file given by file descriptor\n\
1905fd to the numeric uid and gid.");
1906
1907static PyObject *
1908posix_fchown(PyObject *self, PyObject *args)
1909{
1910 int fd, uid, gid;
1911 int res;
1912 if (!PyArg_ParseTuple(args, "iii:chown", &fd, &uid, &gid))
1913 return NULL;
1914 Py_BEGIN_ALLOW_THREADS
1915 res = fchown(fd, (uid_t) uid, (gid_t) gid);
1916 Py_END_ALLOW_THREADS
1917 if (res < 0)
1918 return posix_error();
1919 Py_RETURN_NONE;
1920}
1921#endif /* HAVE_FCHOWN */
1922
Martin v. Löwis0cec0ff2002-07-28 16:33:45 +00001923#ifdef HAVE_LCHOWN
1924PyDoc_STRVAR(posix_lchown__doc__,
1925"lchown(path, uid, gid)\n\n\
1926Change the owner and group id of path to the numeric uid and gid.\n\
1927This function will not follow symbolic links.");
1928
1929static PyObject *
1930posix_lchown(PyObject *self, PyObject *args)
1931{
1932 char *path = NULL;
1933 int uid, gid;
1934 int res;
1935 if (!PyArg_ParseTuple(args, "etii:lchown",
1936 Py_FileSystemDefaultEncoding, &path,
1937 &uid, &gid))
1938 return NULL;
1939 Py_BEGIN_ALLOW_THREADS
1940 res = lchown(path, (uid_t) uid, (gid_t) gid);
1941 Py_END_ALLOW_THREADS
Tim Peters11b23062003-04-23 02:39:17 +00001942 if (res < 0)
Martin v. Löwis0cec0ff2002-07-28 16:33:45 +00001943 return posix_error_with_allocated_filename(path);
1944 PyMem_Free(path);
1945 Py_INCREF(Py_None);
1946 return Py_None;
1947}
1948#endif /* HAVE_LCHOWN */
1949
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001950
Guido van Rossum36bc6801995-06-14 22:54:23 +00001951#ifdef HAVE_GETCWD
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001952PyDoc_STRVAR(posix_getcwd__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00001953"getcwd() -> path\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001954Return a string representing the current working directory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00001955
Barry Warsaw53699e91996-12-10 23:23:01 +00001956static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00001957posix_getcwd(PyObject *self, PyObject *noargs)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001958{
1959 char buf[1026];
Guido van Rossumff4949e1992-08-05 19:58:53 +00001960 char *res;
Neal Norwitze241ce82003-02-17 18:17:05 +00001961
Barry Warsaw53699e91996-12-10 23:23:01 +00001962 Py_BEGIN_ALLOW_THREADS
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00001963#if defined(PYOS_OS2) && defined(PYCC_GCC)
1964 res = _getcwd2(buf, sizeof buf);
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001965#else
Guido van Rossumff4949e1992-08-05 19:58:53 +00001966 res = getcwd(buf, sizeof buf);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00001967#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00001968 Py_END_ALLOW_THREADS
Guido van Rossumff4949e1992-08-05 19:58:53 +00001969 if (res == NULL)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001970 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00001971 return PyString_FromString(buf);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001972}
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001973
Walter Dörwald3b918c32002-11-21 20:18:46 +00001974#ifdef Py_USING_UNICODE
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001975PyDoc_STRVAR(posix_getcwdu__doc__,
1976"getcwdu() -> path\n\n\
1977Return a unicode string representing the current working directory.");
1978
1979static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00001980posix_getcwdu(PyObject *self, PyObject *noargs)
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001981{
1982 char buf[1026];
1983 char *res;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001984
1985#ifdef Py_WIN_WIDE_FILENAMES
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001986 DWORD len;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001987 if (unicode_file_names()) {
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001988 wchar_t wbuf[1026];
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001989 wchar_t *wbuf2 = wbuf;
1990 PyObject *resobj;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001991 Py_BEGIN_ALLOW_THREADS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00001992 len = GetCurrentDirectoryW(sizeof wbuf/ sizeof wbuf[0], wbuf);
1993 /* If the buffer is large enough, len does not include the
1994 terminating \0. If the buffer is too small, len includes
1995 the space needed for the terminator. */
1996 if (len >= sizeof wbuf/ sizeof wbuf[0]) {
1997 wbuf2 = malloc(len * sizeof(wchar_t));
1998 if (wbuf2)
1999 len = GetCurrentDirectoryW(len, wbuf2);
2000 }
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002001 Py_END_ALLOW_THREADS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002002 if (!wbuf2) {
2003 PyErr_NoMemory();
2004 return NULL;
2005 }
2006 if (!len) {
2007 if (wbuf2 != wbuf) free(wbuf2);
2008 return win32_error("getcwdu", NULL);
2009 }
2010 resobj = PyUnicode_FromWideChar(wbuf2, len);
2011 if (wbuf2 != wbuf) free(wbuf2);
2012 return resobj;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002013 }
2014#endif
2015
2016 Py_BEGIN_ALLOW_THREADS
2017#if defined(PYOS_OS2) && defined(PYCC_GCC)
2018 res = _getcwd2(buf, sizeof buf);
2019#else
2020 res = getcwd(buf, sizeof buf);
2021#endif
2022 Py_END_ALLOW_THREADS
2023 if (res == NULL)
2024 return posix_error();
2025 return PyUnicode_Decode(buf, strlen(buf), Py_FileSystemDefaultEncoding,"strict");
2026}
Guido van Rossum36bc6801995-06-14 22:54:23 +00002027#endif
Walter Dörwald3b918c32002-11-21 20:18:46 +00002028#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002029
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002030
Guido van Rossumb6775db1994-08-01 11:34:53 +00002031#ifdef HAVE_LINK
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002032PyDoc_STRVAR(posix_link__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002033"link(src, dst)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002034Create a hard link to a file.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002035
Barry Warsaw53699e91996-12-10 23:23:01 +00002036static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002037posix_link(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002038{
Martin v. Löwis4fc2bda2006-05-04 12:04:27 +00002039 return posix_2str(args, "etet:link", link);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002040}
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002041#endif /* HAVE_LINK */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002042
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002043
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002044PyDoc_STRVAR(posix_listdir__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002045"listdir(path) -> list_of_strings\n\n\
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002046Return a list containing the names of the entries in the directory.\n\
2047\n\
2048 path: path of directory to list\n\
2049\n\
2050The list is in arbitrary order. It does not include the special\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002051entries '.' and '..' even if they are present in the directory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002052
Barry Warsaw53699e91996-12-10 23:23:01 +00002053static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002054posix_listdir(PyObject *self, PyObject *args)
Guido van Rossumb6775db1994-08-01 11:34:53 +00002055{
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002056 /* XXX Should redo this putting the (now four) versions of opendir
Guido van Rossum6d8841c1997-08-14 19:57:39 +00002057 in separate files instead of having them all here... */
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00002058#if defined(MS_WINDOWS) && !defined(HAVE_OPENDIR)
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002059
Barry Warsaw53699e91996-12-10 23:23:01 +00002060 PyObject *d, *v;
Guido van Rossumb6775db1994-08-01 11:34:53 +00002061 HANDLE hFindFile;
Martin v. Löwise920f0d2006-03-07 23:59:33 +00002062 BOOL result;
Guido van Rossumb6775db1994-08-01 11:34:53 +00002063 WIN32_FIND_DATA FileData;
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002064 char namebuf[MAX_PATH+5]; /* Overallocate for \\*.*\0 */
Mark Hammondef8b6542001-05-13 08:04:26 +00002065 char *bufptr = namebuf;
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002066 Py_ssize_t len = sizeof(namebuf)-5; /* only claim to have space for MAX_PATH */
Guido van Rossumb6775db1994-08-01 11:34:53 +00002067
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002068#ifdef Py_WIN_WIDE_FILENAMES
2069 /* If on wide-character-capable OS see if argument
2070 is Unicode and if so use wide API. */
2071 if (unicode_file_names()) {
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002072 PyObject *po;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002073 if (PyArg_ParseTuple(args, "U:listdir", &po)) {
2074 WIN32_FIND_DATAW wFileData;
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002075 Py_UNICODE *wnamebuf;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002076 Py_UNICODE wch;
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002077 /* Overallocate for \\*.*\0 */
2078 len = PyUnicode_GET_SIZE(po);
2079 wnamebuf = malloc((len + 5) * sizeof(wchar_t));
2080 if (!wnamebuf) {
2081 PyErr_NoMemory();
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002082 return NULL;
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002083 }
2084 wcscpy(wnamebuf, PyUnicode_AS_UNICODE(po));
2085 wch = len > 0 ? wnamebuf[len-1] : '\0';
2086 if (wch != L'/' && wch != L'\\' && wch != L':')
2087 wnamebuf[len++] = L'\\';
2088 wcscpy(wnamebuf + len, L"*.*");
2089 if ((d = PyList_New(0)) == NULL) {
2090 free(wnamebuf);
2091 return NULL;
2092 }
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002093 hFindFile = FindFirstFileW(wnamebuf, &wFileData);
2094 if (hFindFile == INVALID_HANDLE_VALUE) {
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002095 int error = GetLastError();
2096 if (error == ERROR_FILE_NOT_FOUND) {
2097 free(wnamebuf);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002098 return d;
2099 }
2100 Py_DECREF(d);
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002101 win32_error_unicode("FindFirstFileW", wnamebuf);
2102 free(wnamebuf);
2103 return NULL;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002104 }
2105 do {
Martin v. Löwise920f0d2006-03-07 23:59:33 +00002106 /* Skip over . and .. */
2107 if (wcscmp(wFileData.cFileName, L".") != 0 &&
2108 wcscmp(wFileData.cFileName, L"..") != 0) {
2109 v = PyUnicode_FromUnicode(wFileData.cFileName, wcslen(wFileData.cFileName));
2110 if (v == NULL) {
2111 Py_DECREF(d);
2112 d = NULL;
2113 break;
2114 }
2115 if (PyList_Append(d, v) != 0) {
2116 Py_DECREF(v);
2117 Py_DECREF(d);
2118 d = NULL;
2119 break;
2120 }
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002121 Py_DECREF(v);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002122 }
Georg Brandl622927b2006-03-07 12:48:03 +00002123 Py_BEGIN_ALLOW_THREADS
2124 result = FindNextFileW(hFindFile, &wFileData);
2125 Py_END_ALLOW_THREADS
Martin v. Löwis982e9fe2006-07-24 12:54:17 +00002126 /* FindNextFile sets error to ERROR_NO_MORE_FILES if
2127 it got to the end of the directory. */
2128 if (!result && GetLastError() != ERROR_NO_MORE_FILES) {
2129 Py_DECREF(d);
2130 win32_error_unicode("FindNextFileW", wnamebuf);
2131 FindClose(hFindFile);
2132 free(wnamebuf);
2133 return NULL;
2134 }
Georg Brandl622927b2006-03-07 12:48:03 +00002135 } while (result == TRUE);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002136
2137 if (FindClose(hFindFile) == FALSE) {
2138 Py_DECREF(d);
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002139 win32_error_unicode("FindClose", wnamebuf);
2140 free(wnamebuf);
2141 return NULL;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002142 }
Martin v. Löwise3edaea2006-05-15 05:51:36 +00002143 free(wnamebuf);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002144 return d;
2145 }
2146 /* Drop the argument parsing error as narrow strings
2147 are also valid. */
2148 PyErr_Clear();
2149 }
2150#endif
2151
Tim Peters5aa91602002-01-30 05:46:57 +00002152 if (!PyArg_ParseTuple(args, "et#:listdir",
Mark Hammondef8b6542001-05-13 08:04:26 +00002153 Py_FileSystemDefaultEncoding, &bufptr, &len))
Guido van Rossumb6775db1994-08-01 11:34:53 +00002154 return NULL;
Neil Schemenauer94b866a2002-03-22 20:51:58 +00002155 if (len > 0) {
2156 char ch = namebuf[len-1];
2157 if (ch != SEP && ch != ALTSEP && ch != ':')
2158 namebuf[len++] = '/';
2159 }
Guido van Rossumb6775db1994-08-01 11:34:53 +00002160 strcpy(namebuf + len, "*.*");
2161
Barry Warsaw53699e91996-12-10 23:23:01 +00002162 if ((d = PyList_New(0)) == NULL)
Guido van Rossumb6775db1994-08-01 11:34:53 +00002163 return NULL;
2164
2165 hFindFile = FindFirstFile(namebuf, &FileData);
2166 if (hFindFile == INVALID_HANDLE_VALUE) {
Martin v. Löwis682b1bb2006-05-12 12:27:28 +00002167 int error = GetLastError();
2168 if (error == ERROR_FILE_NOT_FOUND)
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002169 return d;
2170 Py_DECREF(d);
Mark Hammondef8b6542001-05-13 08:04:26 +00002171 return win32_error("FindFirstFile", namebuf);
Guido van Rossumb6775db1994-08-01 11:34:53 +00002172 }
2173 do {
Martin v. Löwise920f0d2006-03-07 23:59:33 +00002174 /* Skip over . and .. */
2175 if (strcmp(FileData.cFileName, ".") != 0 &&
2176 strcmp(FileData.cFileName, "..") != 0) {
2177 v = PyString_FromString(FileData.cFileName);
2178 if (v == NULL) {
2179 Py_DECREF(d);
2180 d = NULL;
2181 break;
2182 }
2183 if (PyList_Append(d, v) != 0) {
2184 Py_DECREF(v);
2185 Py_DECREF(d);
2186 d = NULL;
2187 break;
2188 }
Barry Warsaw53699e91996-12-10 23:23:01 +00002189 Py_DECREF(v);
Guido van Rossumb6775db1994-08-01 11:34:53 +00002190 }
Georg Brandl622927b2006-03-07 12:48:03 +00002191 Py_BEGIN_ALLOW_THREADS
2192 result = FindNextFile(hFindFile, &FileData);
2193 Py_END_ALLOW_THREADS
Martin v. Löwis982e9fe2006-07-24 12:54:17 +00002194 /* FindNextFile sets error to ERROR_NO_MORE_FILES if
2195 it got to the end of the directory. */
2196 if (!result && GetLastError() != ERROR_NO_MORE_FILES) {
2197 Py_DECREF(d);
2198 win32_error("FindNextFile", namebuf);
2199 FindClose(hFindFile);
2200 return NULL;
2201 }
Georg Brandl622927b2006-03-07 12:48:03 +00002202 } while (result == TRUE);
Guido van Rossumb6775db1994-08-01 11:34:53 +00002203
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002204 if (FindClose(hFindFile) == FALSE) {
2205 Py_DECREF(d);
Mark Hammondef8b6542001-05-13 08:04:26 +00002206 return win32_error("FindClose", namebuf);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002207 }
Guido van Rossumb6775db1994-08-01 11:34:53 +00002208
2209 return d;
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002210
Tim Peters0bb44a42000-09-15 07:44:49 +00002211#elif defined(PYOS_OS2)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002212
2213#ifndef MAX_PATH
2214#define MAX_PATH CCHMAXPATH
2215#endif
2216 char *name, *pt;
Thomas Wouters68bc4f92006-03-01 01:05:10 +00002217 Py_ssize_t len;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002218 PyObject *d, *v;
2219 char namebuf[MAX_PATH+5];
2220 HDIR hdir = 1;
2221 ULONG srchcnt = 1;
2222 FILEFINDBUF3 ep;
2223 APIRET rc;
2224
Fred Drake5ab8eaf1999-12-09 21:13:07 +00002225 if (!PyArg_ParseTuple(args, "t#:listdir", &name, &len))
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002226 return NULL;
2227 if (len >= MAX_PATH) {
2228 PyErr_SetString(PyExc_ValueError, "path too long");
2229 return NULL;
2230 }
2231 strcpy(namebuf, name);
2232 for (pt = namebuf; *pt; pt++)
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00002233 if (*pt == ALTSEP)
2234 *pt = SEP;
2235 if (namebuf[len-1] != SEP)
2236 namebuf[len++] = SEP;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002237 strcpy(namebuf + len, "*.*");
2238
2239 if ((d = PyList_New(0)) == NULL)
2240 return NULL;
2241
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002242 rc = DosFindFirst(namebuf, /* Wildcard Pattern to Match */
2243 &hdir, /* Handle to Use While Search Directory */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002244 FILE_READONLY | FILE_HIDDEN | FILE_SYSTEM | FILE_DIRECTORY,
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002245 &ep, sizeof(ep), /* Structure to Receive Directory Entry */
2246 &srchcnt, /* Max and Actual Count of Entries Per Iteration */
2247 FIL_STANDARD); /* Format of Entry (EAs or Not) */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002248
2249 if (rc != NO_ERROR) {
2250 errno = ENOENT;
Barry Warsawf63b8cc1999-05-27 23:13:21 +00002251 return posix_error_with_filename(name);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002252 }
2253
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002254 if (srchcnt > 0) { /* If Directory is NOT Totally Empty, */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002255 do {
2256 if (ep.achName[0] == '.'
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00002257 && (ep.achName[1] == '\0' || (ep.achName[1] == '.' && ep.achName[2] == '\0')))
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002258 continue; /* Skip Over "." and ".." Names */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002259
2260 strcpy(namebuf, ep.achName);
2261
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002262 /* Leave Case of Name Alone -- In Native Form */
2263 /* (Removed Forced Lowercasing Code) */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002264
2265 v = PyString_FromString(namebuf);
2266 if (v == NULL) {
2267 Py_DECREF(d);
2268 d = NULL;
2269 break;
2270 }
2271 if (PyList_Append(d, v) != 0) {
2272 Py_DECREF(v);
2273 Py_DECREF(d);
2274 d = NULL;
2275 break;
2276 }
2277 Py_DECREF(v);
2278 } while (DosFindNext(hdir, &ep, sizeof(ep), &srchcnt) == NO_ERROR && srchcnt > 0);
2279 }
2280
2281 return d;
2282#else
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002283
Just van Rossum2fe07fd2003-03-03 19:07:13 +00002284 char *name = NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00002285 PyObject *d, *v;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002286 DIR *dirp;
Guido van Rossumb6775db1994-08-01 11:34:53 +00002287 struct dirent *ep;
Just van Rossum96b1c902003-03-03 17:32:15 +00002288 int arg_is_unicode = 1;
2289
Georg Brandl05e89b82006-04-11 07:04:06 +00002290 errno = 0;
Just van Rossum96b1c902003-03-03 17:32:15 +00002291 if (!PyArg_ParseTuple(args, "U:listdir", &v)) {
2292 arg_is_unicode = 0;
2293 PyErr_Clear();
2294 }
2295 if (!PyArg_ParseTuple(args, "et:listdir", Py_FileSystemDefaultEncoding, &name))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002296 return NULL;
Guido van Rossumff4949e1992-08-05 19:58:53 +00002297 if ((dirp = opendir(name)) == NULL) {
Just van Rossum2fe07fd2003-03-03 19:07:13 +00002298 return posix_error_with_allocated_filename(name);
Guido van Rossumff4949e1992-08-05 19:58:53 +00002299 }
Barry Warsaw53699e91996-12-10 23:23:01 +00002300 if ((d = PyList_New(0)) == NULL) {
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002301 closedir(dirp);
Just van Rossum2fe07fd2003-03-03 19:07:13 +00002302 PyMem_Free(name);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002303 return NULL;
2304 }
Georg Brandl622927b2006-03-07 12:48:03 +00002305 for (;;) {
2306 Py_BEGIN_ALLOW_THREADS
2307 ep = readdir(dirp);
2308 Py_END_ALLOW_THREADS
2309 if (ep == NULL)
2310 break;
Guido van Rossum24f42ac1995-07-18 18:16:52 +00002311 if (ep->d_name[0] == '.' &&
2312 (NAMLEN(ep) == 1 ||
Guido van Rossuma376cc51996-12-05 23:43:35 +00002313 (ep->d_name[1] == '.' && NAMLEN(ep) == 2)))
Guido van Rossum24f42ac1995-07-18 18:16:52 +00002314 continue;
Barry Warsaw53699e91996-12-10 23:23:01 +00002315 v = PyString_FromStringAndSize(ep->d_name, NAMLEN(ep));
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002316 if (v == NULL) {
Barry Warsaw53699e91996-12-10 23:23:01 +00002317 Py_DECREF(d);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002318 d = NULL;
2319 break;
2320 }
Just van Rossum46c97842003-02-25 21:42:15 +00002321#ifdef Py_USING_UNICODE
Just van Rossum96b1c902003-03-03 17:32:15 +00002322 if (arg_is_unicode) {
Just van Rossum46c97842003-02-25 21:42:15 +00002323 PyObject *w;
2324
2325 w = PyUnicode_FromEncodedObject(v,
Tim Peters11b23062003-04-23 02:39:17 +00002326 Py_FileSystemDefaultEncoding,
Just van Rossum46c97842003-02-25 21:42:15 +00002327 "strict");
Just van Rossum6a421832003-03-04 19:30:44 +00002328 if (w != NULL) {
2329 Py_DECREF(v);
2330 v = w;
2331 }
2332 else {
2333 /* fall back to the original byte string, as
2334 discussed in patch #683592 */
2335 PyErr_Clear();
Just van Rossum46c97842003-02-25 21:42:15 +00002336 }
Just van Rossum46c97842003-02-25 21:42:15 +00002337 }
2338#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00002339 if (PyList_Append(d, v) != 0) {
2340 Py_DECREF(v);
2341 Py_DECREF(d);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002342 d = NULL;
2343 break;
2344 }
Barry Warsaw53699e91996-12-10 23:23:01 +00002345 Py_DECREF(v);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002346 }
Georg Brandlbbfe4fa2006-04-11 06:47:43 +00002347 if (errno != 0 && d != NULL) {
2348 /* readdir() returned NULL and set errno */
2349 closedir(dirp);
2350 Py_DECREF(d);
2351 return posix_error_with_allocated_filename(name);
2352 }
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002353 closedir(dirp);
Just van Rossum2fe07fd2003-03-03 19:07:13 +00002354 PyMem_Free(name);
Guido van Rossum0ee42cd1991-04-08 21:01:03 +00002355
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002356 return d;
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002357
Tim Peters0bb44a42000-09-15 07:44:49 +00002358#endif /* which OS */
2359} /* end of posix_listdir */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002360
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00002361#ifdef MS_WINDOWS
Mark Hammondef8b6542001-05-13 08:04:26 +00002362/* A helper function for abspath on win32 */
2363static PyObject *
2364posix__getfullpathname(PyObject *self, PyObject *args)
2365{
2366 /* assume encoded strings wont more than double no of chars */
2367 char inbuf[MAX_PATH*2];
2368 char *inbufp = inbuf;
Tim Peters67d70eb2006-03-01 04:35:45 +00002369 Py_ssize_t insize = sizeof(inbuf);
Mark Hammondef8b6542001-05-13 08:04:26 +00002370 char outbuf[MAX_PATH*2];
2371 char *temp;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002372#ifdef Py_WIN_WIDE_FILENAMES
2373 if (unicode_file_names()) {
2374 PyUnicodeObject *po;
2375 if (PyArg_ParseTuple(args, "U|:_getfullpathname", &po)) {
2376 Py_UNICODE woutbuf[MAX_PATH*2];
2377 Py_UNICODE *wtemp;
Tim Peters11b23062003-04-23 02:39:17 +00002378 if (!GetFullPathNameW(PyUnicode_AS_UNICODE(po),
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002379 sizeof(woutbuf)/sizeof(woutbuf[0]),
2380 woutbuf, &wtemp))
2381 return win32_error("GetFullPathName", "");
2382 return PyUnicode_FromUnicode(woutbuf, wcslen(woutbuf));
2383 }
2384 /* Drop the argument parsing error as narrow strings
2385 are also valid. */
2386 PyErr_Clear();
2387 }
2388#endif
Tim Peters5aa91602002-01-30 05:46:57 +00002389 if (!PyArg_ParseTuple (args, "et#:_getfullpathname",
2390 Py_FileSystemDefaultEncoding, &inbufp,
Mark Hammondef8b6542001-05-13 08:04:26 +00002391 &insize))
2392 return NULL;
2393 if (!GetFullPathName(inbuf, sizeof(outbuf)/sizeof(outbuf[0]),
2394 outbuf, &temp))
2395 return win32_error("GetFullPathName", inbuf);
Martin v. Löwis969297f2004-06-15 18:49:58 +00002396 if (PyUnicode_Check(PyTuple_GetItem(args, 0))) {
2397 return PyUnicode_Decode(outbuf, strlen(outbuf),
2398 Py_FileSystemDefaultEncoding, NULL);
2399 }
Mark Hammondef8b6542001-05-13 08:04:26 +00002400 return PyString_FromString(outbuf);
2401} /* end of posix__getfullpathname */
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00002402#endif /* MS_WINDOWS */
Mark Hammondef8b6542001-05-13 08:04:26 +00002403
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002404PyDoc_STRVAR(posix_mkdir__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002405"mkdir(path [, mode=0777])\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002406Create a directory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002407
Barry Warsaw53699e91996-12-10 23:23:01 +00002408static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002409posix_mkdir(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002410{
Guido van Rossumb0824db1996-02-25 04:50:32 +00002411 int res;
Mark Hammondef8b6542001-05-13 08:04:26 +00002412 char *path = NULL;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002413 int mode = 0777;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002414
2415#ifdef Py_WIN_WIDE_FILENAMES
2416 if (unicode_file_names()) {
2417 PyUnicodeObject *po;
Mark Hammond05107b62003-02-19 04:08:27 +00002418 if (PyArg_ParseTuple(args, "U|i:mkdir", &po, &mode)) {
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002419 Py_BEGIN_ALLOW_THREADS
2420 /* PyUnicode_AS_UNICODE OK without thread lock as
2421 it is a simple dereference. */
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002422 res = CreateDirectoryW(PyUnicode_AS_UNICODE(po), NULL);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002423 Py_END_ALLOW_THREADS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002424 if (!res)
2425 return win32_error_unicode("mkdir", PyUnicode_AS_UNICODE(po));
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002426 Py_INCREF(Py_None);
2427 return Py_None;
2428 }
2429 /* Drop the argument parsing error as narrow strings
2430 are also valid. */
2431 PyErr_Clear();
2432 }
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002433 if (!PyArg_ParseTuple(args, "et|i:mkdir",
2434 Py_FileSystemDefaultEncoding, &path, &mode))
2435 return NULL;
2436 Py_BEGIN_ALLOW_THREADS
2437 /* PyUnicode_AS_UNICODE OK without thread lock as
2438 it is a simple dereference. */
2439 res = CreateDirectoryA(path, NULL);
2440 Py_END_ALLOW_THREADS
2441 if (!res) {
2442 win32_error("mkdir", path);
2443 PyMem_Free(path);
2444 return NULL;
2445 }
2446 PyMem_Free(path);
2447 Py_INCREF(Py_None);
2448 return Py_None;
2449#else
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002450
Tim Peters5aa91602002-01-30 05:46:57 +00002451 if (!PyArg_ParseTuple(args, "et|i:mkdir",
Mark Hammondef8b6542001-05-13 08:04:26 +00002452 Py_FileSystemDefaultEncoding, &path, &mode))
Guido van Rossumb0824db1996-02-25 04:50:32 +00002453 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00002454 Py_BEGIN_ALLOW_THREADS
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002455#if ( defined(__WATCOMC__) || defined(PYCC_VACPP) ) && !defined(__QNX__)
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002456 res = mkdir(path);
2457#else
Guido van Rossumb0824db1996-02-25 04:50:32 +00002458 res = mkdir(path, mode);
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002459#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00002460 Py_END_ALLOW_THREADS
Guido van Rossumb0824db1996-02-25 04:50:32 +00002461 if (res < 0)
Mark Hammondef8b6542001-05-13 08:04:26 +00002462 return posix_error_with_allocated_filename(path);
2463 PyMem_Free(path);
Barry Warsaw53699e91996-12-10 23:23:01 +00002464 Py_INCREF(Py_None);
2465 return Py_None;
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002466#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002467}
2468
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002469
Neal Norwitz1818ed72006-03-26 00:29:48 +00002470/* sys/resource.h is needed for at least: wait3(), wait4(), broken nice. */
2471#if defined(HAVE_SYS_RESOURCE_H)
Thomas Wouterse38b2f12001-07-11 22:35:31 +00002472#include <sys/resource.h>
2473#endif
Thomas Wouterse38b2f12001-07-11 22:35:31 +00002474
Neal Norwitz1818ed72006-03-26 00:29:48 +00002475
2476#ifdef HAVE_NICE
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002477PyDoc_STRVAR(posix_nice__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002478"nice(inc) -> new_priority\n\n\
2479Decrease the priority of process by inc and return the new priority.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002480
Barry Warsaw53699e91996-12-10 23:23:01 +00002481static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002482posix_nice(PyObject *self, PyObject *args)
Guido van Rossum775f4da1993-01-09 17:18:52 +00002483{
2484 int increment, value;
2485
Fred Drake5ab8eaf1999-12-09 21:13:07 +00002486 if (!PyArg_ParseTuple(args, "i:nice", &increment))
Guido van Rossum775f4da1993-01-09 17:18:52 +00002487 return NULL;
Thomas Woutersc2c12dc2001-07-11 14:45:34 +00002488
2489 /* There are two flavours of 'nice': one that returns the new
2490 priority (as required by almost all standards out there) and the
Thomas Wouterse38b2f12001-07-11 22:35:31 +00002491 Linux/FreeBSD/BSDI one, which returns '0' on success and advices
2492 the use of getpriority() to get the new priority.
Tim Peters5aa91602002-01-30 05:46:57 +00002493
Thomas Woutersc2c12dc2001-07-11 14:45:34 +00002494 If we are of the nice family that returns the new priority, we
2495 need to clear errno before the call, and check if errno is filled
2496 before calling posix_error() on a returnvalue of -1, because the
2497 -1 may be the actual new priority! */
2498
2499 errno = 0;
Guido van Rossum775f4da1993-01-09 17:18:52 +00002500 value = nice(increment);
Thomas Wouterse38b2f12001-07-11 22:35:31 +00002501#if defined(HAVE_BROKEN_NICE) && defined(HAVE_GETPRIORITY)
Thomas Woutersc2c12dc2001-07-11 14:45:34 +00002502 if (value == 0)
2503 value = getpriority(PRIO_PROCESS, 0);
2504#endif
2505 if (value == -1 && errno != 0)
2506 /* either nice() or getpriority() returned an error */
Guido van Rossum775f4da1993-01-09 17:18:52 +00002507 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00002508 return PyInt_FromLong((long) value);
Guido van Rossum775f4da1993-01-09 17:18:52 +00002509}
Guido van Rossumb6775db1994-08-01 11:34:53 +00002510#endif /* HAVE_NICE */
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002511
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002512PyDoc_STRVAR(posix_rename__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002513"rename(old, new)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002514Rename a file or directory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002515
Barry Warsaw53699e91996-12-10 23:23:01 +00002516static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002517posix_rename(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002518{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002519#ifdef MS_WINDOWS
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002520 PyObject *o1, *o2;
2521 char *p1, *p2;
2522 BOOL result;
2523 if (unicode_file_names()) {
2524 if (!PyArg_ParseTuple(args, "O&O&:rename",
2525 convert_to_unicode, &o1,
2526 convert_to_unicode, &o2))
2527 PyErr_Clear();
2528 else {
2529 Py_BEGIN_ALLOW_THREADS
2530 result = MoveFileW(PyUnicode_AsUnicode(o1),
2531 PyUnicode_AsUnicode(o2));
2532 Py_END_ALLOW_THREADS
2533 Py_DECREF(o1);
2534 Py_DECREF(o2);
2535 if (!result)
2536 return win32_error("rename", NULL);
2537 Py_INCREF(Py_None);
2538 return Py_None;
2539 }
2540 }
2541 if (!PyArg_ParseTuple(args, "ss:rename", &p1, &p2))
2542 return NULL;
2543 Py_BEGIN_ALLOW_THREADS
2544 result = MoveFileA(p1, p2);
2545 Py_END_ALLOW_THREADS
2546 if (!result)
2547 return win32_error("rename", NULL);
2548 Py_INCREF(Py_None);
2549 return Py_None;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002550#else
Martin v. Löwis4fc2bda2006-05-04 12:04:27 +00002551 return posix_2str(args, "etet:rename", rename);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002552#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002553}
2554
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002555
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002556PyDoc_STRVAR(posix_rmdir__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002557"rmdir(path)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002558Remove a directory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002559
Barry Warsaw53699e91996-12-10 23:23:01 +00002560static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002561posix_rmdir(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002562{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002563#ifdef MS_WINDOWS
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002564 return win32_1str(args, "rmdir", "s:rmdir", RemoveDirectoryA, "U:rmdir", RemoveDirectoryW);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002565#else
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002566 return posix_1str(args, "et:rmdir", rmdir);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002567#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002568}
2569
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002570
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002571PyDoc_STRVAR(posix_stat__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002572"stat(path) -> stat result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002573Perform a stat system call on the given path.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002574
Barry Warsaw53699e91996-12-10 23:23:01 +00002575static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002576posix_stat(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002577{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002578#ifdef MS_WINDOWS
Martin v. Löwis14694662006-02-03 12:54:16 +00002579 return posix_do_stat(self, args, "et:stat", STAT, "U:stat", win32_wstat);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002580#else
2581 return posix_do_stat(self, args, "et:stat", STAT, NULL, NULL);
2582#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002583}
2584
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002585
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002586#ifdef HAVE_SYSTEM
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002587PyDoc_STRVAR(posix_system__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002588"system(command) -> exit_status\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002589Execute the command (a string) in a subshell.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002590
Barry Warsaw53699e91996-12-10 23:23:01 +00002591static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002592posix_system(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002593{
Guido van Rossumef0a00e1992-01-27 16:51:30 +00002594 char *command;
Guido van Rossumff4949e1992-08-05 19:58:53 +00002595 long sts;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00002596 if (!PyArg_ParseTuple(args, "s:system", &command))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002597 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00002598 Py_BEGIN_ALLOW_THREADS
Guido van Rossumef0a00e1992-01-27 16:51:30 +00002599 sts = system(command);
Barry Warsaw53699e91996-12-10 23:23:01 +00002600 Py_END_ALLOW_THREADS
2601 return PyInt_FromLong(sts);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002602}
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002603#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002604
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002605
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002606PyDoc_STRVAR(posix_umask__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002607"umask(new_mask) -> old_mask\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002608Set the current numeric umask and return the previous umask.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002609
Barry Warsaw53699e91996-12-10 23:23:01 +00002610static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002611posix_umask(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002612{
2613 int i;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00002614 if (!PyArg_ParseTuple(args, "i:umask", &i))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002615 return NULL;
Fred Drake0368bc42001-07-19 20:48:32 +00002616 i = (int)umask(i);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002617 if (i < 0)
2618 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00002619 return PyInt_FromLong((long)i);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002620}
2621
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002622
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002623PyDoc_STRVAR(posix_unlink__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002624"unlink(path)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002625Remove a file (same as remove(path)).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002626
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002627PyDoc_STRVAR(posix_remove__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002628"remove(path)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002629Remove a file (same as unlink(path)).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002630
Barry Warsaw53699e91996-12-10 23:23:01 +00002631static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002632posix_unlink(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002633{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002634#ifdef MS_WINDOWS
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002635 return win32_1str(args, "remove", "s:remove", DeleteFileA, "U:remove", DeleteFileW);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002636#else
Martin v. Löwis8e0d4942006-05-04 10:08:42 +00002637 return posix_1str(args, "et:remove", unlink);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002638#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002639}
2640
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002641
Guido van Rossumb6775db1994-08-01 11:34:53 +00002642#ifdef HAVE_UNAME
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002643PyDoc_STRVAR(posix_uname__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002644"uname() -> (sysname, nodename, release, version, machine)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002645Return a tuple identifying the current operating system.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002646
Barry Warsaw53699e91996-12-10 23:23:01 +00002647static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00002648posix_uname(PyObject *self, PyObject *noargs)
Guido van Rossumc39de5f1992-02-05 11:15:54 +00002649{
Guido van Rossumc39de5f1992-02-05 11:15:54 +00002650 struct utsname u;
Guido van Rossumff4949e1992-08-05 19:58:53 +00002651 int res;
Neal Norwitze241ce82003-02-17 18:17:05 +00002652
Barry Warsaw53699e91996-12-10 23:23:01 +00002653 Py_BEGIN_ALLOW_THREADS
Guido van Rossumff4949e1992-08-05 19:58:53 +00002654 res = uname(&u);
Barry Warsaw53699e91996-12-10 23:23:01 +00002655 Py_END_ALLOW_THREADS
Guido van Rossumff4949e1992-08-05 19:58:53 +00002656 if (res < 0)
Guido van Rossumc39de5f1992-02-05 11:15:54 +00002657 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00002658 return Py_BuildValue("(sssss)",
Barry Warsaw43d68b81996-12-19 22:10:44 +00002659 u.sysname,
2660 u.nodename,
2661 u.release,
2662 u.version,
2663 u.machine);
Guido van Rossumc39de5f1992-02-05 11:15:54 +00002664}
Guido van Rossumb6775db1994-08-01 11:34:53 +00002665#endif /* HAVE_UNAME */
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002666
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002667static int
2668extract_time(PyObject *t, long* sec, long* usec)
2669{
2670 long intval;
2671 if (PyFloat_Check(t)) {
2672 double tval = PyFloat_AsDouble(t);
Christian Heimese93237d2007-12-19 02:37:44 +00002673 PyObject *intobj = Py_TYPE(t)->tp_as_number->nb_int(t);
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002674 if (!intobj)
2675 return -1;
2676 intval = PyInt_AsLong(intobj);
2677 Py_DECREF(intobj);
Michael W. Hudsonb8963812005-07-05 15:21:58 +00002678 if (intval == -1 && PyErr_Occurred())
2679 return -1;
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002680 *sec = intval;
Tim Peters96940cf2002-09-10 15:37:28 +00002681 *usec = (long)((tval - intval) * 1e6); /* can't exceed 1000000 */
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002682 if (*usec < 0)
2683 /* If rounding gave us a negative number,
2684 truncate. */
2685 *usec = 0;
2686 return 0;
2687 }
2688 intval = PyInt_AsLong(t);
2689 if (intval == -1 && PyErr_Occurred())
2690 return -1;
2691 *sec = intval;
2692 *usec = 0;
Martin v. Löwis076b2092002-09-10 15:04:41 +00002693 return 0;
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002694}
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002695
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002696PyDoc_STRVAR(posix_utime__doc__,
Georg Brandl9e5b5e42006-05-17 14:18:20 +00002697"utime(path, (atime, mtime))\n\
Fred Drakef7ce04d2002-06-20 18:31:21 +00002698utime(path, None)\n\n\
Barry Warsaw3cef8562000-05-01 16:17:24 +00002699Set the access and modified time of the file to the given values. If the\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002700second form is used, set the access and modified times to the current time.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002701
Barry Warsaw53699e91996-12-10 23:23:01 +00002702static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002703posix_utime(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002704{
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002705#ifdef Py_WIN_WIDE_FILENAMES
2706 PyObject *arg;
2707 PyUnicodeObject *obwpath;
2708 wchar_t *wpath = NULL;
2709 char *apath = NULL;
2710 HANDLE hFile;
2711 long atimesec, mtimesec, ausec, musec;
2712 FILETIME atime, mtime;
2713 PyObject *result = NULL;
2714
2715 if (unicode_file_names()) {
2716 if (PyArg_ParseTuple(args, "UO|:utime", &obwpath, &arg)) {
2717 wpath = PyUnicode_AS_UNICODE(obwpath);
2718 Py_BEGIN_ALLOW_THREADS
2719 hFile = CreateFileW(wpath, FILE_WRITE_ATTRIBUTES, 0,
Martin v. Löwis18aaa562006-10-15 08:43:33 +00002720 NULL, OPEN_EXISTING,
2721 FILE_FLAG_BACKUP_SEMANTICS, NULL);
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002722 Py_END_ALLOW_THREADS
2723 if (hFile == INVALID_HANDLE_VALUE)
2724 return win32_error_unicode("utime", wpath);
2725 } else
2726 /* Drop the argument parsing error as narrow strings
2727 are also valid. */
2728 PyErr_Clear();
2729 }
2730 if (!wpath) {
2731 if (!PyArg_ParseTuple(args, "etO:utime",
2732 Py_FileSystemDefaultEncoding, &apath, &arg))
2733 return NULL;
2734 Py_BEGIN_ALLOW_THREADS
2735 hFile = CreateFileA(apath, FILE_WRITE_ATTRIBUTES, 0,
Martin v. Löwis18aaa562006-10-15 08:43:33 +00002736 NULL, OPEN_EXISTING,
2737 FILE_FLAG_BACKUP_SEMANTICS, NULL);
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002738 Py_END_ALLOW_THREADS
2739 if (hFile == INVALID_HANDLE_VALUE) {
2740 win32_error("utime", apath);
2741 PyMem_Free(apath);
2742 return NULL;
2743 }
2744 PyMem_Free(apath);
2745 }
2746
2747 if (arg == Py_None) {
2748 SYSTEMTIME now;
2749 GetSystemTime(&now);
2750 if (!SystemTimeToFileTime(&now, &mtime) ||
2751 !SystemTimeToFileTime(&now, &atime)) {
2752 win32_error("utime", NULL);
2753 goto done;
2754 }
2755 }
2756 else if (!PyTuple_Check(arg) || PyTuple_Size(arg) != 2) {
2757 PyErr_SetString(PyExc_TypeError,
2758 "utime() arg 2 must be a tuple (atime, mtime)");
2759 goto done;
2760 }
2761 else {
2762 if (extract_time(PyTuple_GET_ITEM(arg, 0),
2763 &atimesec, &ausec) == -1)
2764 goto done;
Martin v. Löwisf43893a2006-10-09 20:44:25 +00002765 time_t_to_FILE_TIME(atimesec, 1000*ausec, &atime);
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002766 if (extract_time(PyTuple_GET_ITEM(arg, 1),
2767 &mtimesec, &musec) == -1)
2768 goto done;
Martin v. Löwisf43893a2006-10-09 20:44:25 +00002769 time_t_to_FILE_TIME(mtimesec, 1000*musec, &mtime);
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002770 }
2771 if (!SetFileTime(hFile, NULL, &atime, &mtime)) {
2772 /* Avoid putting the file name into the error here,
2773 as that may confuse the user into believing that
2774 something is wrong with the file, when it also
2775 could be the time stamp that gives a problem. */
2776 win32_error("utime", NULL);
2777 }
2778 Py_INCREF(Py_None);
2779 result = Py_None;
2780done:
2781 CloseHandle(hFile);
2782 return result;
2783#else /* Py_WIN_WIDE_FILENAMES */
2784
Neal Norwitz2adf2102004-06-09 01:46:02 +00002785 char *path = NULL;
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002786 long atime, mtime, ausec, musec;
Guido van Rossumff4949e1992-08-05 19:58:53 +00002787 int res;
Barry Warsaw3cef8562000-05-01 16:17:24 +00002788 PyObject* arg;
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002789
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002790#if defined(HAVE_UTIMES)
2791 struct timeval buf[2];
2792#define ATIME buf[0].tv_sec
2793#define MTIME buf[1].tv_sec
2794#elif defined(HAVE_UTIME_H)
Guido van Rossum6d8841c1997-08-14 19:57:39 +00002795/* XXX should define struct utimbuf instead, above */
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002796 struct utimbuf buf;
2797#define ATIME buf.actime
2798#define MTIME buf.modtime
2799#define UTIME_ARG &buf
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002800#else /* HAVE_UTIMES */
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002801 time_t buf[2];
2802#define ATIME buf[0]
2803#define MTIME buf[1]
2804#define UTIME_ARG buf
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002805#endif /* HAVE_UTIMES */
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002806
Mark Hammond817c9292003-12-03 01:22:38 +00002807
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002808 if (!PyArg_ParseTuple(args, "etO:utime",
Hye-Shik Chang2b2c9732004-01-04 13:54:25 +00002809 Py_FileSystemDefaultEncoding, &path, &arg))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002810 return NULL;
Barry Warsaw3cef8562000-05-01 16:17:24 +00002811 if (arg == Py_None) {
2812 /* optional time values not given */
2813 Py_BEGIN_ALLOW_THREADS
2814 res = utime(path, NULL);
2815 Py_END_ALLOW_THREADS
2816 }
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002817 else if (!PyTuple_Check(arg) || PyTuple_Size(arg) != 2) {
Barry Warsaw3cef8562000-05-01 16:17:24 +00002818 PyErr_SetString(PyExc_TypeError,
Fred Drake661ea262000-10-24 19:57:45 +00002819 "utime() arg 2 must be a tuple (atime, mtime)");
Neal Norwitz96652712004-06-06 20:40:27 +00002820 PyMem_Free(path);
Barry Warsaw3cef8562000-05-01 16:17:24 +00002821 return NULL;
2822 }
2823 else {
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002824 if (extract_time(PyTuple_GET_ITEM(arg, 0),
Neal Norwitz96652712004-06-06 20:40:27 +00002825 &atime, &ausec) == -1) {
2826 PyMem_Free(path);
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002827 return NULL;
Neal Norwitz96652712004-06-06 20:40:27 +00002828 }
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002829 if (extract_time(PyTuple_GET_ITEM(arg, 1),
Neal Norwitz96652712004-06-06 20:40:27 +00002830 &mtime, &musec) == -1) {
2831 PyMem_Free(path);
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002832 return NULL;
Neal Norwitz96652712004-06-06 20:40:27 +00002833 }
Barry Warsaw3cef8562000-05-01 16:17:24 +00002834 ATIME = atime;
2835 MTIME = mtime;
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00002836#ifdef HAVE_UTIMES
2837 buf[0].tv_usec = ausec;
2838 buf[1].tv_usec = musec;
2839 Py_BEGIN_ALLOW_THREADS
2840 res = utimes(path, buf);
2841 Py_END_ALLOW_THREADS
2842#else
Barry Warsaw3cef8562000-05-01 16:17:24 +00002843 Py_BEGIN_ALLOW_THREADS
2844 res = utime(path, UTIME_ARG);
2845 Py_END_ALLOW_THREADS
Mark Hammond817c9292003-12-03 01:22:38 +00002846#endif /* HAVE_UTIMES */
Barry Warsaw3cef8562000-05-01 16:17:24 +00002847 }
Mark Hammond2d5914b2004-05-04 08:10:37 +00002848 if (res < 0) {
Neal Norwitz96652712004-06-06 20:40:27 +00002849 return posix_error_with_allocated_filename(path);
Mark Hammond2d5914b2004-05-04 08:10:37 +00002850 }
Neal Norwitz96652712004-06-06 20:40:27 +00002851 PyMem_Free(path);
Barry Warsaw53699e91996-12-10 23:23:01 +00002852 Py_INCREF(Py_None);
2853 return Py_None;
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00002854#undef UTIME_ARG
2855#undef ATIME
2856#undef MTIME
Martin v. Löwisd4e3bb32006-05-06 16:32:54 +00002857#endif /* Py_WIN_WIDE_FILENAMES */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002858}
2859
Guido van Rossum85e3b011991-06-03 12:42:10 +00002860
Guido van Rossum3b066191991-06-04 19:40:25 +00002861/* Process operations */
Guido van Rossum85e3b011991-06-03 12:42:10 +00002862
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002863PyDoc_STRVAR(posix__exit__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002864"_exit(status)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002865Exit to the system with specified status, without normal exit processing.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002866
Barry Warsaw53699e91996-12-10 23:23:01 +00002867static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002868posix__exit(PyObject *self, PyObject *args)
Guido van Rossum85e3b011991-06-03 12:42:10 +00002869{
2870 int sts;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00002871 if (!PyArg_ParseTuple(args, "i:_exit", &sts))
Guido van Rossum85e3b011991-06-03 12:42:10 +00002872 return NULL;
2873 _exit(sts);
Guido van Rossuma376cc51996-12-05 23:43:35 +00002874 return NULL; /* Make gcc -Wall happy */
Guido van Rossum85e3b011991-06-03 12:42:10 +00002875}
2876
Martin v. Löwis114619e2002-10-07 06:44:21 +00002877#if defined(HAVE_EXECV) || defined(HAVE_SPAWNV)
2878static void
Martin v. Löwis725507b2006-03-07 12:08:51 +00002879free_string_array(char **array, Py_ssize_t count)
Martin v. Löwis114619e2002-10-07 06:44:21 +00002880{
Martin v. Löwis725507b2006-03-07 12:08:51 +00002881 Py_ssize_t i;
Martin v. Löwis114619e2002-10-07 06:44:21 +00002882 for (i = 0; i < count; i++)
2883 PyMem_Free(array[i]);
2884 PyMem_DEL(array);
2885}
2886#endif
2887
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002888
Guido van Rossuma4916fa1996-05-23 22:58:55 +00002889#ifdef HAVE_EXECV
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002890PyDoc_STRVAR(posix_execv__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002891"execv(path, args)\n\n\
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002892Execute an executable path with arguments, replacing current process.\n\
2893\n\
2894 path: path of executable file\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002895 args: tuple or list of strings");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002896
Barry Warsaw53699e91996-12-10 23:23:01 +00002897static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002898posix_execv(PyObject *self, PyObject *args)
Guido van Rossum85e3b011991-06-03 12:42:10 +00002899{
Guido van Rossumef0a00e1992-01-27 16:51:30 +00002900 char *path;
Barry Warsaw53699e91996-12-10 23:23:01 +00002901 PyObject *argv;
Guido van Rossum85e3b011991-06-03 12:42:10 +00002902 char **argvlist;
Martin v. Löwis725507b2006-03-07 12:08:51 +00002903 Py_ssize_t i, argc;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002904 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Guido van Rossum85e3b011991-06-03 12:42:10 +00002905
Guido van Rossum89b33251993-10-22 14:26:06 +00002906 /* execv has two arguments: (path, argv), where
Guido van Rossum85e3b011991-06-03 12:42:10 +00002907 argv is a list or tuple of strings. */
2908
Martin v. Löwis114619e2002-10-07 06:44:21 +00002909 if (!PyArg_ParseTuple(args, "etO:execv",
2910 Py_FileSystemDefaultEncoding,
2911 &path, &argv))
Guido van Rossum85e3b011991-06-03 12:42:10 +00002912 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00002913 if (PyList_Check(argv)) {
2914 argc = PyList_Size(argv);
2915 getitem = PyList_GetItem;
Guido van Rossum85e3b011991-06-03 12:42:10 +00002916 }
Barry Warsaw53699e91996-12-10 23:23:01 +00002917 else if (PyTuple_Check(argv)) {
2918 argc = PyTuple_Size(argv);
2919 getitem = PyTuple_GetItem;
Guido van Rossum85e3b011991-06-03 12:42:10 +00002920 }
Guido van Rossumef0a00e1992-01-27 16:51:30 +00002921 else {
Fred Drake661ea262000-10-24 19:57:45 +00002922 PyErr_SetString(PyExc_TypeError, "execv() arg 2 must be a tuple or list");
Martin v. Löwis114619e2002-10-07 06:44:21 +00002923 PyMem_Free(path);
Guido van Rossum50422b42000-04-26 20:34:28 +00002924 return NULL;
2925 }
2926
Barry Warsaw53699e91996-12-10 23:23:01 +00002927 argvlist = PyMem_NEW(char *, argc+1);
Martin v. Löwis114619e2002-10-07 06:44:21 +00002928 if (argvlist == NULL) {
2929 PyMem_Free(path);
Neal Norwitzec74f2f2003-02-11 23:05:40 +00002930 return PyErr_NoMemory();
Martin v. Löwis114619e2002-10-07 06:44:21 +00002931 }
Guido van Rossum85e3b011991-06-03 12:42:10 +00002932 for (i = 0; i < argc; i++) {
Martin v. Löwis114619e2002-10-07 06:44:21 +00002933 if (!PyArg_Parse((*getitem)(argv, i), "et",
2934 Py_FileSystemDefaultEncoding,
2935 &argvlist[i])) {
2936 free_string_array(argvlist, i);
Tim Peters5aa91602002-01-30 05:46:57 +00002937 PyErr_SetString(PyExc_TypeError,
Fred Drake661ea262000-10-24 19:57:45 +00002938 "execv() arg 2 must contain only strings");
Martin v. Löwis114619e2002-10-07 06:44:21 +00002939 PyMem_Free(path);
Guido van Rossum50422b42000-04-26 20:34:28 +00002940 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00002941
Guido van Rossum85e3b011991-06-03 12:42:10 +00002942 }
Guido van Rossum85e3b011991-06-03 12:42:10 +00002943 }
2944 argvlist[argc] = NULL;
2945
Guido van Rossumef0a00e1992-01-27 16:51:30 +00002946 execv(path, argvlist);
Guido van Rossumb6775db1994-08-01 11:34:53 +00002947
Guido van Rossum85e3b011991-06-03 12:42:10 +00002948 /* If we get here it's definitely an error */
2949
Martin v. Löwis114619e2002-10-07 06:44:21 +00002950 free_string_array(argvlist, argc);
2951 PyMem_Free(path);
Guido van Rossum85e3b011991-06-03 12:42:10 +00002952 return posix_error();
2953}
2954
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002955
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002956PyDoc_STRVAR(posix_execve__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002957"execve(path, args, env)\n\n\
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002958Execute a path with arguments and environment, replacing current process.\n\
2959\n\
2960 path: path of executable file\n\
2961 args: tuple or list of arguments\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002962 env: dictionary of strings mapping to strings");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002963
Barry Warsaw53699e91996-12-10 23:23:01 +00002964static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002965posix_execve(PyObject *self, PyObject *args)
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00002966{
2967 char *path;
Barry Warsaw53699e91996-12-10 23:23:01 +00002968 PyObject *argv, *env;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00002969 char **argvlist;
2970 char **envlist;
Barry Warsaw5ed19dc1997-01-29 15:08:24 +00002971 PyObject *key, *val, *keys=NULL, *vals=NULL;
Martin v. Löwis725507b2006-03-07 12:08:51 +00002972 Py_ssize_t i, pos, argc, envc;
Martin v. Löwis18e16552006-02-15 17:27:45 +00002973 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Martin v. Löwis26fd9602006-04-22 11:15:41 +00002974 Py_ssize_t lastarg = 0;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00002975
2976 /* execve has three arguments: (path, argv, env), where
2977 argv is a list or tuple of strings and env is a dictionary
2978 like posix.environ. */
2979
Martin v. Löwis114619e2002-10-07 06:44:21 +00002980 if (!PyArg_ParseTuple(args, "etOO:execve",
2981 Py_FileSystemDefaultEncoding,
2982 &path, &argv, &env))
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00002983 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00002984 if (PyList_Check(argv)) {
2985 argc = PyList_Size(argv);
2986 getitem = PyList_GetItem;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00002987 }
Barry Warsaw53699e91996-12-10 23:23:01 +00002988 else if (PyTuple_Check(argv)) {
2989 argc = PyTuple_Size(argv);
2990 getitem = PyTuple_GetItem;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00002991 }
2992 else {
Guido van Rossum0847c5c2002-12-13 18:36:22 +00002993 PyErr_SetString(PyExc_TypeError,
2994 "execve() arg 2 must be a tuple or list");
Martin v. Löwis114619e2002-10-07 06:44:21 +00002995 goto fail_0;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00002996 }
Barry Warsaw5ed19dc1997-01-29 15:08:24 +00002997 if (!PyMapping_Check(env)) {
Guido van Rossum0847c5c2002-12-13 18:36:22 +00002998 PyErr_SetString(PyExc_TypeError,
2999 "execve() arg 3 must be a mapping object");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003000 goto fail_0;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003001 }
3002
Barry Warsaw53699e91996-12-10 23:23:01 +00003003 argvlist = PyMem_NEW(char *, argc+1);
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003004 if (argvlist == NULL) {
Barry Warsaw53699e91996-12-10 23:23:01 +00003005 PyErr_NoMemory();
Martin v. Löwis114619e2002-10-07 06:44:21 +00003006 goto fail_0;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003007 }
3008 for (i = 0; i < argc; i++) {
Barry Warsaw53699e91996-12-10 23:23:01 +00003009 if (!PyArg_Parse((*getitem)(argv, i),
Martin v. Löwis114619e2002-10-07 06:44:21 +00003010 "et;execve() arg 2 must contain only strings",
Guido van Rossum1e700d22002-10-16 16:52:11 +00003011 Py_FileSystemDefaultEncoding,
Barry Warsaw43d68b81996-12-19 22:10:44 +00003012 &argvlist[i]))
3013 {
Martin v. Löwis114619e2002-10-07 06:44:21 +00003014 lastarg = i;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003015 goto fail_1;
3016 }
3017 }
Martin v. Löwis114619e2002-10-07 06:44:21 +00003018 lastarg = argc;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003019 argvlist[argc] = NULL;
3020
Jeremy Hylton03657cf2000-07-12 13:05:33 +00003021 i = PyMapping_Size(env);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003022 if (i < 0)
3023 goto fail_1;
Barry Warsaw53699e91996-12-10 23:23:01 +00003024 envlist = PyMem_NEW(char *, i + 1);
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003025 if (envlist == NULL) {
Barry Warsaw53699e91996-12-10 23:23:01 +00003026 PyErr_NoMemory();
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003027 goto fail_1;
3028 }
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003029 envc = 0;
Barry Warsaw5ed19dc1997-01-29 15:08:24 +00003030 keys = PyMapping_Keys(env);
3031 vals = PyMapping_Values(env);
3032 if (!keys || !vals)
3033 goto fail_2;
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003034 if (!PyList_Check(keys) || !PyList_Check(vals)) {
3035 PyErr_SetString(PyExc_TypeError,
3036 "execve(): env.keys() or env.values() is not a list");
3037 goto fail_2;
3038 }
Tim Peters5aa91602002-01-30 05:46:57 +00003039
Barry Warsaw5ed19dc1997-01-29 15:08:24 +00003040 for (pos = 0; pos < i; pos++) {
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003041 char *p, *k, *v;
Tim Petersc8996f52001-12-03 20:41:00 +00003042 size_t len;
Barry Warsaw5ed19dc1997-01-29 15:08:24 +00003043
3044 key = PyList_GetItem(keys, pos);
3045 val = PyList_GetItem(vals, pos);
3046 if (!key || !val)
3047 goto fail_2;
Tim Peters5aa91602002-01-30 05:46:57 +00003048
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003049 if (!PyArg_Parse(
3050 key,
3051 "s;execve() arg 3 contains a non-string key",
3052 &k) ||
3053 !PyArg_Parse(
3054 val,
3055 "s;execve() arg 3 contains a non-string value",
3056 &v))
Barry Warsaw43d68b81996-12-19 22:10:44 +00003057 {
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003058 goto fail_2;
3059 }
Guido van Rossumd48f2521997-12-05 22:19:34 +00003060
3061#if defined(PYOS_OS2)
3062 /* Omit Pseudo-Env Vars that Would Confuse Programs if Passed On */
3063 if (stricmp(k, "BEGINLIBPATH") != 0 && stricmp(k, "ENDLIBPATH") != 0) {
3064#endif
Tim Petersc8996f52001-12-03 20:41:00 +00003065 len = PyString_Size(key) + PyString_Size(val) + 2;
3066 p = PyMem_NEW(char, len);
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003067 if (p == NULL) {
Barry Warsaw53699e91996-12-10 23:23:01 +00003068 PyErr_NoMemory();
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003069 goto fail_2;
3070 }
Tim Petersc8996f52001-12-03 20:41:00 +00003071 PyOS_snprintf(p, len, "%s=%s", k, v);
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003072 envlist[envc++] = p;
Guido van Rossumd48f2521997-12-05 22:19:34 +00003073#if defined(PYOS_OS2)
3074 }
3075#endif
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003076 }
3077 envlist[envc] = 0;
3078
3079 execve(path, argvlist, envlist);
Tim Peters5aa91602002-01-30 05:46:57 +00003080
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003081 /* If we get here it's definitely an error */
3082
3083 (void) posix_error();
3084
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003085 fail_2:
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003086 while (--envc >= 0)
Barry Warsaw53699e91996-12-10 23:23:01 +00003087 PyMem_DEL(envlist[envc]);
3088 PyMem_DEL(envlist);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003089 fail_1:
3090 free_string_array(argvlist, lastarg);
Barry Warsaw5ed19dc1997-01-29 15:08:24 +00003091 Py_XDECREF(vals);
3092 Py_XDECREF(keys);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003093 fail_0:
Martin v. Löwis114619e2002-10-07 06:44:21 +00003094 PyMem_Free(path);
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003095 return NULL;
3096}
Guido van Rossuma4916fa1996-05-23 22:58:55 +00003097#endif /* HAVE_EXECV */
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00003098
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003099
Guido van Rossuma1065681999-01-25 23:20:23 +00003100#ifdef HAVE_SPAWNV
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003101PyDoc_STRVAR(posix_spawnv__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003102"spawnv(mode, path, args)\n\n\
Tim Peters25059d32001-12-07 20:35:43 +00003103Execute the program 'path' in a new process.\n\
Guido van Rossuma1065681999-01-25 23:20:23 +00003104\n\
Fred Drakea6dff3e1999-02-01 22:24:40 +00003105 mode: mode of process creation\n\
Guido van Rossuma1065681999-01-25 23:20:23 +00003106 path: path of executable file\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003107 args: tuple or list of strings");
Guido van Rossuma1065681999-01-25 23:20:23 +00003108
3109static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00003110posix_spawnv(PyObject *self, PyObject *args)
Guido van Rossuma1065681999-01-25 23:20:23 +00003111{
3112 char *path;
3113 PyObject *argv;
3114 char **argvlist;
Martin v. Löwis26fd9602006-04-22 11:15:41 +00003115 int mode, i;
3116 Py_ssize_t argc;
Tim Peters79248aa2001-08-29 21:37:10 +00003117 Py_intptr_t spawnval;
Martin v. Löwis18e16552006-02-15 17:27:45 +00003118 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Guido van Rossuma1065681999-01-25 23:20:23 +00003119
3120 /* spawnv has three arguments: (mode, path, argv), where
3121 argv is a list or tuple of strings. */
3122
Martin v. Löwis114619e2002-10-07 06:44:21 +00003123 if (!PyArg_ParseTuple(args, "ietO:spawnv", &mode,
3124 Py_FileSystemDefaultEncoding,
3125 &path, &argv))
Guido van Rossuma1065681999-01-25 23:20:23 +00003126 return NULL;
3127 if (PyList_Check(argv)) {
3128 argc = PyList_Size(argv);
3129 getitem = PyList_GetItem;
3130 }
3131 else if (PyTuple_Check(argv)) {
3132 argc = PyTuple_Size(argv);
3133 getitem = PyTuple_GetItem;
3134 }
3135 else {
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003136 PyErr_SetString(PyExc_TypeError,
3137 "spawnv() arg 2 must be a tuple or list");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003138 PyMem_Free(path);
Guido van Rossuma1065681999-01-25 23:20:23 +00003139 return NULL;
3140 }
3141
3142 argvlist = PyMem_NEW(char *, argc+1);
Martin v. Löwis114619e2002-10-07 06:44:21 +00003143 if (argvlist == NULL) {
3144 PyMem_Free(path);
Neal Norwitzec74f2f2003-02-11 23:05:40 +00003145 return PyErr_NoMemory();
Martin v. Löwis114619e2002-10-07 06:44:21 +00003146 }
Guido van Rossuma1065681999-01-25 23:20:23 +00003147 for (i = 0; i < argc; i++) {
Martin v. Löwis114619e2002-10-07 06:44:21 +00003148 if (!PyArg_Parse((*getitem)(argv, i), "et",
3149 Py_FileSystemDefaultEncoding,
3150 &argvlist[i])) {
3151 free_string_array(argvlist, i);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003152 PyErr_SetString(
3153 PyExc_TypeError,
3154 "spawnv() arg 2 must contain only strings");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003155 PyMem_Free(path);
Fred Drake137507e2000-06-01 02:02:46 +00003156 return NULL;
Guido van Rossuma1065681999-01-25 23:20:23 +00003157 }
3158 }
3159 argvlist[argc] = NULL;
3160
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00003161#if defined(PYOS_OS2) && defined(PYCC_GCC)
3162 Py_BEGIN_ALLOW_THREADS
3163 spawnval = spawnv(mode, path, argvlist);
3164 Py_END_ALLOW_THREADS
3165#else
Guido van Rossum246bc171999-02-01 23:54:31 +00003166 if (mode == _OLD_P_OVERLAY)
3167 mode = _P_OVERLAY;
Tim Peters5aa91602002-01-30 05:46:57 +00003168
Tim Peters25059d32001-12-07 20:35:43 +00003169 Py_BEGIN_ALLOW_THREADS
Fred Drake699f3522000-06-29 21:12:41 +00003170 spawnval = _spawnv(mode, path, argvlist);
Tim Peters25059d32001-12-07 20:35:43 +00003171 Py_END_ALLOW_THREADS
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00003172#endif
Tim Peters5aa91602002-01-30 05:46:57 +00003173
Martin v. Löwis114619e2002-10-07 06:44:21 +00003174 free_string_array(argvlist, argc);
3175 PyMem_Free(path);
Guido van Rossuma1065681999-01-25 23:20:23 +00003176
Fred Drake699f3522000-06-29 21:12:41 +00003177 if (spawnval == -1)
Guido van Rossuma1065681999-01-25 23:20:23 +00003178 return posix_error();
3179 else
Fredrik Lundhe25cfd82000-07-09 13:10:40 +00003180#if SIZEOF_LONG == SIZEOF_VOID_P
3181 return Py_BuildValue("l", (long) spawnval);
Fred Drake699f3522000-06-29 21:12:41 +00003182#else
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00003183 return Py_BuildValue("L", (PY_LONG_LONG) spawnval);
Fred Drake699f3522000-06-29 21:12:41 +00003184#endif
Guido van Rossuma1065681999-01-25 23:20:23 +00003185}
3186
3187
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003188PyDoc_STRVAR(posix_spawnve__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003189"spawnve(mode, path, args, env)\n\n\
Tim Peters25059d32001-12-07 20:35:43 +00003190Execute the program 'path' in a new process.\n\
Guido van Rossuma1065681999-01-25 23:20:23 +00003191\n\
Fred Drakea6dff3e1999-02-01 22:24:40 +00003192 mode: mode of process creation\n\
Guido van Rossuma1065681999-01-25 23:20:23 +00003193 path: path of executable file\n\
3194 args: tuple or list of arguments\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003195 env: dictionary of strings mapping to strings");
Guido van Rossuma1065681999-01-25 23:20:23 +00003196
3197static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00003198posix_spawnve(PyObject *self, PyObject *args)
Guido van Rossuma1065681999-01-25 23:20:23 +00003199{
3200 char *path;
3201 PyObject *argv, *env;
3202 char **argvlist;
3203 char **envlist;
3204 PyObject *key, *val, *keys=NULL, *vals=NULL, *res=NULL;
Martin v. Löwis26fd9602006-04-22 11:15:41 +00003205 int mode, pos, envc;
3206 Py_ssize_t argc, i;
Tim Peters79248aa2001-08-29 21:37:10 +00003207 Py_intptr_t spawnval;
Martin v. Löwis18e16552006-02-15 17:27:45 +00003208 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Martin v. Löwis26fd9602006-04-22 11:15:41 +00003209 Py_ssize_t lastarg = 0;
Guido van Rossuma1065681999-01-25 23:20:23 +00003210
3211 /* spawnve has four arguments: (mode, path, argv, env), where
3212 argv is a list or tuple of strings and env is a dictionary
3213 like posix.environ. */
3214
Martin v. Löwis114619e2002-10-07 06:44:21 +00003215 if (!PyArg_ParseTuple(args, "ietOO:spawnve", &mode,
3216 Py_FileSystemDefaultEncoding,
3217 &path, &argv, &env))
Guido van Rossuma1065681999-01-25 23:20:23 +00003218 return NULL;
3219 if (PyList_Check(argv)) {
3220 argc = PyList_Size(argv);
3221 getitem = PyList_GetItem;
3222 }
3223 else if (PyTuple_Check(argv)) {
3224 argc = PyTuple_Size(argv);
3225 getitem = PyTuple_GetItem;
3226 }
3227 else {
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003228 PyErr_SetString(PyExc_TypeError,
3229 "spawnve() arg 2 must be a tuple or list");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003230 goto fail_0;
Guido van Rossuma1065681999-01-25 23:20:23 +00003231 }
3232 if (!PyMapping_Check(env)) {
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003233 PyErr_SetString(PyExc_TypeError,
3234 "spawnve() arg 3 must be a mapping object");
Martin v. Löwis114619e2002-10-07 06:44:21 +00003235 goto fail_0;
Guido van Rossuma1065681999-01-25 23:20:23 +00003236 }
3237
3238 argvlist = PyMem_NEW(char *, argc+1);
3239 if (argvlist == NULL) {
3240 PyErr_NoMemory();
Martin v. Löwis114619e2002-10-07 06:44:21 +00003241 goto fail_0;
Guido van Rossuma1065681999-01-25 23:20:23 +00003242 }
3243 for (i = 0; i < argc; i++) {
3244 if (!PyArg_Parse((*getitem)(argv, i),
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003245 "et;spawnve() arg 2 must contain only strings",
Martin v. Löwis114619e2002-10-07 06:44:21 +00003246 Py_FileSystemDefaultEncoding,
Guido van Rossuma1065681999-01-25 23:20:23 +00003247 &argvlist[i]))
3248 {
Martin v. Löwis114619e2002-10-07 06:44:21 +00003249 lastarg = i;
Guido van Rossuma1065681999-01-25 23:20:23 +00003250 goto fail_1;
3251 }
3252 }
Martin v. Löwis114619e2002-10-07 06:44:21 +00003253 lastarg = argc;
Guido van Rossuma1065681999-01-25 23:20:23 +00003254 argvlist[argc] = NULL;
3255
Jeremy Hylton03657cf2000-07-12 13:05:33 +00003256 i = PyMapping_Size(env);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003257 if (i < 0)
3258 goto fail_1;
Guido van Rossuma1065681999-01-25 23:20:23 +00003259 envlist = PyMem_NEW(char *, i + 1);
3260 if (envlist == NULL) {
3261 PyErr_NoMemory();
3262 goto fail_1;
3263 }
3264 envc = 0;
3265 keys = PyMapping_Keys(env);
3266 vals = PyMapping_Values(env);
3267 if (!keys || !vals)
3268 goto fail_2;
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003269 if (!PyList_Check(keys) || !PyList_Check(vals)) {
3270 PyErr_SetString(PyExc_TypeError,
3271 "spawnve(): env.keys() or env.values() is not a list");
3272 goto fail_2;
3273 }
Tim Peters5aa91602002-01-30 05:46:57 +00003274
Guido van Rossuma1065681999-01-25 23:20:23 +00003275 for (pos = 0; pos < i; pos++) {
3276 char *p, *k, *v;
Tim Petersc8996f52001-12-03 20:41:00 +00003277 size_t len;
Guido van Rossuma1065681999-01-25 23:20:23 +00003278
3279 key = PyList_GetItem(keys, pos);
3280 val = PyList_GetItem(vals, pos);
3281 if (!key || !val)
3282 goto fail_2;
Tim Peters5aa91602002-01-30 05:46:57 +00003283
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003284 if (!PyArg_Parse(
3285 key,
3286 "s;spawnve() arg 3 contains a non-string key",
3287 &k) ||
3288 !PyArg_Parse(
3289 val,
3290 "s;spawnve() arg 3 contains a non-string value",
3291 &v))
Guido van Rossuma1065681999-01-25 23:20:23 +00003292 {
3293 goto fail_2;
3294 }
Tim Petersc8996f52001-12-03 20:41:00 +00003295 len = PyString_Size(key) + PyString_Size(val) + 2;
3296 p = PyMem_NEW(char, len);
Guido van Rossuma1065681999-01-25 23:20:23 +00003297 if (p == NULL) {
3298 PyErr_NoMemory();
3299 goto fail_2;
3300 }
Tim Petersc8996f52001-12-03 20:41:00 +00003301 PyOS_snprintf(p, len, "%s=%s", k, v);
Guido van Rossuma1065681999-01-25 23:20:23 +00003302 envlist[envc++] = p;
3303 }
3304 envlist[envc] = 0;
3305
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00003306#if defined(PYOS_OS2) && defined(PYCC_GCC)
3307 Py_BEGIN_ALLOW_THREADS
3308 spawnval = spawnve(mode, path, argvlist, envlist);
3309 Py_END_ALLOW_THREADS
3310#else
Guido van Rossum246bc171999-02-01 23:54:31 +00003311 if (mode == _OLD_P_OVERLAY)
3312 mode = _P_OVERLAY;
Tim Peters25059d32001-12-07 20:35:43 +00003313
3314 Py_BEGIN_ALLOW_THREADS
Fred Drake699f3522000-06-29 21:12:41 +00003315 spawnval = _spawnve(mode, path, argvlist, envlist);
Tim Peters25059d32001-12-07 20:35:43 +00003316 Py_END_ALLOW_THREADS
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00003317#endif
Tim Peters25059d32001-12-07 20:35:43 +00003318
Fred Drake699f3522000-06-29 21:12:41 +00003319 if (spawnval == -1)
Guido van Rossuma1065681999-01-25 23:20:23 +00003320 (void) posix_error();
3321 else
Fredrik Lundhe25cfd82000-07-09 13:10:40 +00003322#if SIZEOF_LONG == SIZEOF_VOID_P
3323 res = Py_BuildValue("l", (long) spawnval);
Fred Drake699f3522000-06-29 21:12:41 +00003324#else
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00003325 res = Py_BuildValue("L", (PY_LONG_LONG) spawnval);
Fred Drake699f3522000-06-29 21:12:41 +00003326#endif
Guido van Rossuma1065681999-01-25 23:20:23 +00003327
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003328 fail_2:
Guido van Rossuma1065681999-01-25 23:20:23 +00003329 while (--envc >= 0)
3330 PyMem_DEL(envlist[envc]);
3331 PyMem_DEL(envlist);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00003332 fail_1:
Martin v. Löwis114619e2002-10-07 06:44:21 +00003333 free_string_array(argvlist, lastarg);
Guido van Rossuma1065681999-01-25 23:20:23 +00003334 Py_XDECREF(vals);
3335 Py_XDECREF(keys);
Martin v. Löwis114619e2002-10-07 06:44:21 +00003336 fail_0:
3337 PyMem_Free(path);
Guido van Rossuma1065681999-01-25 23:20:23 +00003338 return res;
3339}
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003340
3341/* OS/2 supports spawnvp & spawnvpe natively */
3342#if defined(PYOS_OS2)
3343PyDoc_STRVAR(posix_spawnvp__doc__,
3344"spawnvp(mode, file, args)\n\n\
3345Execute the program 'file' in a new process, using the environment\n\
3346search path to find the file.\n\
3347\n\
3348 mode: mode of process creation\n\
3349 file: executable file name\n\
3350 args: tuple or list of strings");
3351
3352static PyObject *
3353posix_spawnvp(PyObject *self, PyObject *args)
3354{
3355 char *path;
3356 PyObject *argv;
3357 char **argvlist;
3358 int mode, i, argc;
3359 Py_intptr_t spawnval;
Martin v. Löwis18e16552006-02-15 17:27:45 +00003360 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003361
3362 /* spawnvp has three arguments: (mode, path, argv), where
3363 argv is a list or tuple of strings. */
3364
3365 if (!PyArg_ParseTuple(args, "ietO:spawnvp", &mode,
3366 Py_FileSystemDefaultEncoding,
3367 &path, &argv))
3368 return NULL;
3369 if (PyList_Check(argv)) {
3370 argc = PyList_Size(argv);
3371 getitem = PyList_GetItem;
3372 }
3373 else if (PyTuple_Check(argv)) {
3374 argc = PyTuple_Size(argv);
3375 getitem = PyTuple_GetItem;
3376 }
3377 else {
3378 PyErr_SetString(PyExc_TypeError,
3379 "spawnvp() arg 2 must be a tuple or list");
3380 PyMem_Free(path);
3381 return NULL;
3382 }
3383
3384 argvlist = PyMem_NEW(char *, argc+1);
3385 if (argvlist == NULL) {
3386 PyMem_Free(path);
3387 return PyErr_NoMemory();
3388 }
3389 for (i = 0; i < argc; i++) {
3390 if (!PyArg_Parse((*getitem)(argv, i), "et",
3391 Py_FileSystemDefaultEncoding,
3392 &argvlist[i])) {
3393 free_string_array(argvlist, i);
3394 PyErr_SetString(
3395 PyExc_TypeError,
3396 "spawnvp() arg 2 must contain only strings");
3397 PyMem_Free(path);
3398 return NULL;
3399 }
3400 }
3401 argvlist[argc] = NULL;
3402
3403 Py_BEGIN_ALLOW_THREADS
3404#if defined(PYCC_GCC)
3405 spawnval = spawnvp(mode, path, argvlist);
3406#else
3407 spawnval = _spawnvp(mode, path, argvlist);
3408#endif
3409 Py_END_ALLOW_THREADS
3410
3411 free_string_array(argvlist, argc);
3412 PyMem_Free(path);
3413
3414 if (spawnval == -1)
3415 return posix_error();
3416 else
3417 return Py_BuildValue("l", (long) spawnval);
3418}
3419
3420
3421PyDoc_STRVAR(posix_spawnvpe__doc__,
3422"spawnvpe(mode, file, args, env)\n\n\
3423Execute the program 'file' in a new process, using the environment\n\
3424search path to find the file.\n\
3425\n\
3426 mode: mode of process creation\n\
3427 file: executable file name\n\
3428 args: tuple or list of arguments\n\
3429 env: dictionary of strings mapping to strings");
3430
3431static PyObject *
3432posix_spawnvpe(PyObject *self, PyObject *args)
3433{
3434 char *path;
3435 PyObject *argv, *env;
3436 char **argvlist;
3437 char **envlist;
3438 PyObject *key, *val, *keys=NULL, *vals=NULL, *res=NULL;
3439 int mode, i, pos, argc, envc;
3440 Py_intptr_t spawnval;
Martin v. Löwis18e16552006-02-15 17:27:45 +00003441 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00003442 int lastarg = 0;
3443
3444 /* spawnvpe has four arguments: (mode, path, argv, env), where
3445 argv is a list or tuple of strings and env is a dictionary
3446 like posix.environ. */
3447
3448 if (!PyArg_ParseTuple(args, "ietOO:spawnvpe", &mode,
3449 Py_FileSystemDefaultEncoding,
3450 &path, &argv, &env))
3451 return NULL;
3452 if (PyList_Check(argv)) {
3453 argc = PyList_Size(argv);
3454 getitem = PyList_GetItem;
3455 }
3456 else if (PyTuple_Check(argv)) {
3457 argc = PyTuple_Size(argv);
3458 getitem = PyTuple_GetItem;
3459 }
3460 else {
3461 PyErr_SetString(PyExc_TypeError,
3462 "spawnvpe() arg 2 must be a tuple or list");
3463 goto fail_0;
3464 }
3465 if (!PyMapping_Check(env)) {
3466 PyErr_SetString(PyExc_TypeError,
3467 "spawnvpe() arg 3 must be a mapping object");
3468 goto fail_0;
3469 }
3470
3471 argvlist = PyMem_NEW(char *, argc+1);
3472 if (argvlist == NULL) {
3473 PyErr_NoMemory();
3474 goto fail_0;
3475 }
3476 for (i = 0; i < argc; i++) {
3477 if (!PyArg_Parse((*getitem)(argv, i),
3478 "et;spawnvpe() arg 2 must contain only strings",
3479 Py_FileSystemDefaultEncoding,
3480 &argvlist[i]))
3481 {
3482 lastarg = i;
3483 goto fail_1;
3484 }
3485 }
3486 lastarg = argc;
3487 argvlist[argc] = NULL;
3488
3489 i = PyMapping_Size(env);
3490 if (i < 0)
3491 goto fail_1;
3492 envlist = PyMem_NEW(char *, i + 1);
3493 if (envlist == NULL) {
3494 PyErr_NoMemory();
3495 goto fail_1;
3496 }
3497 envc = 0;
3498 keys = PyMapping_Keys(env);
3499 vals = PyMapping_Values(env);
3500 if (!keys || !vals)
3501 goto fail_2;
3502 if (!PyList_Check(keys) || !PyList_Check(vals)) {
3503 PyErr_SetString(PyExc_TypeError,
3504 "spawnvpe(): env.keys() or env.values() is not a list");
3505 goto fail_2;
3506 }
3507
3508 for (pos = 0; pos < i; pos++) {
3509 char *p, *k, *v;
3510 size_t len;
3511
3512 key = PyList_GetItem(keys, pos);
3513 val = PyList_GetItem(vals, pos);
3514 if (!key || !val)
3515 goto fail_2;
3516
3517 if (!PyArg_Parse(
3518 key,
3519 "s;spawnvpe() arg 3 contains a non-string key",
3520 &k) ||
3521 !PyArg_Parse(
3522 val,
3523 "s;spawnvpe() arg 3 contains a non-string value",
3524 &v))
3525 {
3526 goto fail_2;
3527 }
3528 len = PyString_Size(key) + PyString_Size(val) + 2;
3529 p = PyMem_NEW(char, len);
3530 if (p == NULL) {
3531 PyErr_NoMemory();
3532 goto fail_2;
3533 }
3534 PyOS_snprintf(p, len, "%s=%s", k, v);
3535 envlist[envc++] = p;
3536 }
3537 envlist[envc] = 0;
3538
3539 Py_BEGIN_ALLOW_THREADS
3540#if defined(PYCC_GCC)
3541 spawnval = spawnve(mode, path, argvlist, envlist);
3542#else
3543 spawnval = _spawnve(mode, path, argvlist, envlist);
3544#endif
3545 Py_END_ALLOW_THREADS
3546
3547 if (spawnval == -1)
3548 (void) posix_error();
3549 else
3550 res = Py_BuildValue("l", (long) spawnval);
3551
3552 fail_2:
3553 while (--envc >= 0)
3554 PyMem_DEL(envlist[envc]);
3555 PyMem_DEL(envlist);
3556 fail_1:
3557 free_string_array(argvlist, lastarg);
3558 Py_XDECREF(vals);
3559 Py_XDECREF(keys);
3560 fail_0:
3561 PyMem_Free(path);
3562 return res;
3563}
3564#endif /* PYOS_OS2 */
Guido van Rossuma1065681999-01-25 23:20:23 +00003565#endif /* HAVE_SPAWNV */
3566
3567
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003568#ifdef HAVE_FORK1
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003569PyDoc_STRVAR(posix_fork1__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003570"fork1() -> pid\n\n\
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003571Fork a child process with a single multiplexed (i.e., not bound) thread.\n\
3572\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003573Return 0 to child process and PID of child to parent process.");
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003574
3575static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003576posix_fork1(PyObject *self, PyObject *noargs)
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003577{
Christian Heimes951cc0f2008-01-31 23:08:23 +00003578 pid_t pid = fork1();
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003579 if (pid == -1)
3580 return posix_error();
3581 PyOS_AfterFork();
Christian Heimes951cc0f2008-01-31 23:08:23 +00003582 return PyInt_FromLong(pid);
Guido van Rossum2242f2f2001-04-11 20:58:20 +00003583}
3584#endif
3585
3586
Guido van Rossumad0ee831995-03-01 10:34:45 +00003587#ifdef HAVE_FORK
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003588PyDoc_STRVAR(posix_fork__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003589"fork() -> pid\n\n\
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003590Fork a child process.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003591Return 0 to child process and PID of child to parent process.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003592
Barry Warsaw53699e91996-12-10 23:23:01 +00003593static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003594posix_fork(PyObject *self, PyObject *noargs)
Guido van Rossum85e3b011991-06-03 12:42:10 +00003595{
Christian Heimes951cc0f2008-01-31 23:08:23 +00003596 pid_t pid = fork();
Guido van Rossum85e3b011991-06-03 12:42:10 +00003597 if (pid == -1)
3598 return posix_error();
Fred Drake49b0c3b2000-07-06 19:42:19 +00003599 if (pid == 0)
3600 PyOS_AfterFork();
Christian Heimes951cc0f2008-01-31 23:08:23 +00003601 return PyInt_FromLong(pid);
Guido van Rossum85e3b011991-06-03 12:42:10 +00003602}
Guido van Rossumad0ee831995-03-01 10:34:45 +00003603#endif
Guido van Rossum85e3b011991-06-03 12:42:10 +00003604
Neal Norwitzb59798b2003-03-21 01:43:31 +00003605/* AIX uses /dev/ptc but is otherwise the same as /dev/ptmx */
Neal Norwitz2deaddb2003-03-21 03:08:31 +00003606/* IRIX has both /dev/ptc and /dev/ptmx, use ptmx */
3607#if defined(HAVE_DEV_PTC) && !defined(HAVE_DEV_PTMX)
Neal Norwitzb59798b2003-03-21 01:43:31 +00003608#define DEV_PTY_FILE "/dev/ptc"
3609#define HAVE_DEV_PTMX
3610#else
3611#define DEV_PTY_FILE "/dev/ptmx"
3612#endif
3613
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003614#if defined(HAVE_OPENPTY) || defined(HAVE_FORKPTY) || defined(HAVE_DEV_PTMX)
Fred Drake8cef4cf2000-06-28 16:40:38 +00003615#ifdef HAVE_PTY_H
3616#include <pty.h>
3617#else
3618#ifdef HAVE_LIBUTIL_H
3619#include <libutil.h>
Fred Drake8cef4cf2000-06-28 16:40:38 +00003620#endif /* HAVE_LIBUTIL_H */
3621#endif /* HAVE_PTY_H */
Martin v. Löwis14e73b12003-01-01 09:51:12 +00003622#ifdef HAVE_STROPTS_H
3623#include <stropts.h>
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003624#endif
3625#endif /* defined(HAVE_OPENPTY) || defined(HAVE_FORKPTY) || defined(HAVE_DEV_PTMX */
Fred Drake8cef4cf2000-06-28 16:40:38 +00003626
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003627#if defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX)
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003628PyDoc_STRVAR(posix_openpty__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003629"openpty() -> (master_fd, slave_fd)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003630Open a pseudo-terminal, returning open fd's for both master and slave end.\n");
Fred Drake8cef4cf2000-06-28 16:40:38 +00003631
3632static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003633posix_openpty(PyObject *self, PyObject *noargs)
Fred Drake8cef4cf2000-06-28 16:40:38 +00003634{
3635 int master_fd, slave_fd;
Thomas Wouters70c21a12000-07-14 14:28:33 +00003636#ifndef HAVE_OPENPTY
3637 char * slave_name;
Thomas Wouters70c21a12000-07-14 14:28:33 +00003638#endif
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003639#if defined(HAVE_DEV_PTMX) && !defined(HAVE_OPENPTY) && !defined(HAVE__GETPTY)
Martin v. Löwisc8b2e772002-12-31 14:30:26 +00003640 PyOS_sighandler_t sig_saved;
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003641#ifdef sun
Neal Norwitz84a98e02006-04-10 07:44:23 +00003642 extern char *ptsname(int fildes);
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003643#endif
3644#endif
Thomas Wouters70c21a12000-07-14 14:28:33 +00003645
Thomas Wouters70c21a12000-07-14 14:28:33 +00003646#ifdef HAVE_OPENPTY
Fred Drake8cef4cf2000-06-28 16:40:38 +00003647 if (openpty(&master_fd, &slave_fd, NULL, NULL, NULL) != 0)
3648 return posix_error();
Neal Norwitzb59798b2003-03-21 01:43:31 +00003649#elif defined(HAVE__GETPTY)
Thomas Wouters70c21a12000-07-14 14:28:33 +00003650 slave_name = _getpty(&master_fd, O_RDWR, 0666, 0);
3651 if (slave_name == NULL)
3652 return posix_error();
3653
3654 slave_fd = open(slave_name, O_RDWR);
3655 if (slave_fd < 0)
3656 return posix_error();
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003657#else
Neal Norwitzb59798b2003-03-21 01:43:31 +00003658 master_fd = open(DEV_PTY_FILE, O_RDWR | O_NOCTTY); /* open master */
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003659 if (master_fd < 0)
3660 return posix_error();
Anthony Baxter9ceaa722004-10-13 14:48:50 +00003661 sig_saved = PyOS_setsig(SIGCHLD, SIG_DFL);
Martin v. Löwisc8b2e772002-12-31 14:30:26 +00003662 /* change permission of slave */
3663 if (grantpt(master_fd) < 0) {
Anthony Baxter9ceaa722004-10-13 14:48:50 +00003664 PyOS_setsig(SIGCHLD, sig_saved);
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003665 return posix_error();
Martin v. Löwisc8b2e772002-12-31 14:30:26 +00003666 }
3667 /* unlock slave */
3668 if (unlockpt(master_fd) < 0) {
Anthony Baxter9ceaa722004-10-13 14:48:50 +00003669 PyOS_setsig(SIGCHLD, sig_saved);
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003670 return posix_error();
Martin v. Löwisc8b2e772002-12-31 14:30:26 +00003671 }
Anthony Baxter9ceaa722004-10-13 14:48:50 +00003672 PyOS_setsig(SIGCHLD, sig_saved);
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003673 slave_name = ptsname(master_fd); /* get name of slave */
3674 if (slave_name == NULL)
3675 return posix_error();
3676 slave_fd = open(slave_name, O_RDWR | O_NOCTTY); /* open slave */
3677 if (slave_fd < 0)
3678 return posix_error();
Neal Norwitzb59798b2003-03-21 01:43:31 +00003679#if !defined(__CYGWIN__) && !defined(HAVE_DEV_PTC)
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003680 ioctl(slave_fd, I_PUSH, "ptem"); /* push ptem */
3681 ioctl(slave_fd, I_PUSH, "ldterm"); /* push ldterm */
Neal Norwitz6700e472002-12-31 16:16:07 +00003682#ifndef __hpux
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003683 ioctl(slave_fd, I_PUSH, "ttcompat"); /* push ttcompat */
Neal Norwitz6700e472002-12-31 16:16:07 +00003684#endif /* __hpux */
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003685#endif /* HAVE_CYGWIN */
Thomas Wouters1e0c2f42000-07-24 16:06:23 +00003686#endif /* HAVE_OPENPTY */
Thomas Wouters70c21a12000-07-14 14:28:33 +00003687
Fred Drake8cef4cf2000-06-28 16:40:38 +00003688 return Py_BuildValue("(ii)", master_fd, slave_fd);
Thomas Wouters70c21a12000-07-14 14:28:33 +00003689
Fred Drake8cef4cf2000-06-28 16:40:38 +00003690}
Martin v. Löwis24a880b2002-12-31 12:55:15 +00003691#endif /* defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX) */
Fred Drake8cef4cf2000-06-28 16:40:38 +00003692
3693#ifdef HAVE_FORKPTY
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003694PyDoc_STRVAR(posix_forkpty__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003695"forkpty() -> (pid, master_fd)\n\n\
Fred Drake8cef4cf2000-06-28 16:40:38 +00003696Fork a new process with a new pseudo-terminal as controlling tty.\n\n\
3697Like fork(), return 0 as pid to child process, and PID of child to parent.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003698To both, return fd of newly opened pseudo-terminal.\n");
Fred Drake8cef4cf2000-06-28 16:40:38 +00003699
3700static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003701posix_forkpty(PyObject *self, PyObject *noargs)
Fred Drake8cef4cf2000-06-28 16:40:38 +00003702{
Christian Heimes951cc0f2008-01-31 23:08:23 +00003703 int master_fd = -1;
3704 pid_t pid;
Tim Peters5aa91602002-01-30 05:46:57 +00003705
Fred Drake8cef4cf2000-06-28 16:40:38 +00003706 pid = forkpty(&master_fd, NULL, NULL, NULL);
3707 if (pid == -1)
3708 return posix_error();
Fred Drake49b0c3b2000-07-06 19:42:19 +00003709 if (pid == 0)
3710 PyOS_AfterFork();
Christian Heimes951cc0f2008-01-31 23:08:23 +00003711 return Py_BuildValue("(li)", pid, master_fd);
Fred Drake8cef4cf2000-06-28 16:40:38 +00003712}
3713#endif
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003714
Guido van Rossumad0ee831995-03-01 10:34:45 +00003715#ifdef HAVE_GETEGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003716PyDoc_STRVAR(posix_getegid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003717"getegid() -> egid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003718Return the current process's effective group id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003719
Barry Warsaw53699e91996-12-10 23:23:01 +00003720static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003721posix_getegid(PyObject *self, PyObject *noargs)
Guido van Rossum46003ff1992-05-15 11:05:24 +00003722{
Barry Warsaw53699e91996-12-10 23:23:01 +00003723 return PyInt_FromLong((long)getegid());
Guido van Rossum46003ff1992-05-15 11:05:24 +00003724}
Guido van Rossumad0ee831995-03-01 10:34:45 +00003725#endif
Guido van Rossum46003ff1992-05-15 11:05:24 +00003726
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003727
Guido van Rossumad0ee831995-03-01 10:34:45 +00003728#ifdef HAVE_GETEUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003729PyDoc_STRVAR(posix_geteuid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003730"geteuid() -> euid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003731Return the current process's effective user id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003732
Barry Warsaw53699e91996-12-10 23:23:01 +00003733static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003734posix_geteuid(PyObject *self, PyObject *noargs)
Guido van Rossum46003ff1992-05-15 11:05:24 +00003735{
Barry Warsaw53699e91996-12-10 23:23:01 +00003736 return PyInt_FromLong((long)geteuid());
Guido van Rossum46003ff1992-05-15 11:05:24 +00003737}
Guido van Rossumad0ee831995-03-01 10:34:45 +00003738#endif
Guido van Rossum46003ff1992-05-15 11:05:24 +00003739
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003740
Guido van Rossumad0ee831995-03-01 10:34:45 +00003741#ifdef HAVE_GETGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003742PyDoc_STRVAR(posix_getgid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003743"getgid() -> gid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003744Return the current process's group id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003745
Barry Warsaw53699e91996-12-10 23:23:01 +00003746static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003747posix_getgid(PyObject *self, PyObject *noargs)
Guido van Rossum46003ff1992-05-15 11:05:24 +00003748{
Barry Warsaw53699e91996-12-10 23:23:01 +00003749 return PyInt_FromLong((long)getgid());
Guido van Rossum46003ff1992-05-15 11:05:24 +00003750}
Guido van Rossumad0ee831995-03-01 10:34:45 +00003751#endif
Guido van Rossum46003ff1992-05-15 11:05:24 +00003752
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003753
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003754PyDoc_STRVAR(posix_getpid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003755"getpid() -> pid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003756Return the current process id");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003757
Barry Warsaw53699e91996-12-10 23:23:01 +00003758static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003759posix_getpid(PyObject *self, PyObject *noargs)
Guido van Rossum85e3b011991-06-03 12:42:10 +00003760{
Barry Warsaw53699e91996-12-10 23:23:01 +00003761 return PyInt_FromLong((long)getpid());
Guido van Rossum85e3b011991-06-03 12:42:10 +00003762}
3763
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003764
Fred Drakec9680921999-12-13 16:37:25 +00003765#ifdef HAVE_GETGROUPS
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003766PyDoc_STRVAR(posix_getgroups__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003767"getgroups() -> list of group IDs\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003768Return list of supplemental group IDs for the process.");
Fred Drakec9680921999-12-13 16:37:25 +00003769
3770static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003771posix_getgroups(PyObject *self, PyObject *noargs)
Fred Drakec9680921999-12-13 16:37:25 +00003772{
3773 PyObject *result = NULL;
3774
Fred Drakec9680921999-12-13 16:37:25 +00003775#ifdef NGROUPS_MAX
3776#define MAX_GROUPS NGROUPS_MAX
3777#else
3778 /* defined to be 16 on Solaris7, so this should be a small number */
3779#define MAX_GROUPS 64
3780#endif
3781 gid_t grouplist[MAX_GROUPS];
3782 int n;
3783
3784 n = getgroups(MAX_GROUPS, grouplist);
3785 if (n < 0)
3786 posix_error();
3787 else {
3788 result = PyList_New(n);
3789 if (result != NULL) {
Fred Drakec9680921999-12-13 16:37:25 +00003790 int i;
3791 for (i = 0; i < n; ++i) {
Neal Norwitze241ce82003-02-17 18:17:05 +00003792 PyObject *o = PyInt_FromLong((long)grouplist[i]);
Fred Drakec9680921999-12-13 16:37:25 +00003793 if (o == NULL) {
3794 Py_DECREF(result);
3795 result = NULL;
3796 break;
3797 }
3798 PyList_SET_ITEM(result, i, o);
3799 }
3800 }
3801 }
Neal Norwitze241ce82003-02-17 18:17:05 +00003802
Fred Drakec9680921999-12-13 16:37:25 +00003803 return result;
3804}
3805#endif
3806
Martin v. Löwis606edc12002-06-13 21:09:11 +00003807#ifdef HAVE_GETPGID
Neal Norwitz0c2c17c2002-06-13 21:22:11 +00003808PyDoc_STRVAR(posix_getpgid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003809"getpgid(pid) -> pgid\n\n\
Neal Norwitz0c2c17c2002-06-13 21:22:11 +00003810Call the system call getpgid().");
Martin v. Löwis606edc12002-06-13 21:09:11 +00003811
3812static PyObject *
3813posix_getpgid(PyObject *self, PyObject *args)
3814{
3815 int pid, pgid;
3816 if (!PyArg_ParseTuple(args, "i:getpgid", &pid))
3817 return NULL;
3818 pgid = getpgid(pid);
3819 if (pgid < 0)
3820 return posix_error();
3821 return PyInt_FromLong((long)pgid);
3822}
3823#endif /* HAVE_GETPGID */
3824
3825
Guido van Rossumb6775db1994-08-01 11:34:53 +00003826#ifdef HAVE_GETPGRP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003827PyDoc_STRVAR(posix_getpgrp__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003828"getpgrp() -> pgrp\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003829Return the current process group id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003830
Barry Warsaw53699e91996-12-10 23:23:01 +00003831static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003832posix_getpgrp(PyObject *self, PyObject *noargs)
Guido van Rossum04814471991-06-04 20:23:49 +00003833{
Guido van Rossumb6775db1994-08-01 11:34:53 +00003834#ifdef GETPGRP_HAVE_ARG
Barry Warsaw53699e91996-12-10 23:23:01 +00003835 return PyInt_FromLong((long)getpgrp(0));
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00003836#else /* GETPGRP_HAVE_ARG */
Barry Warsaw53699e91996-12-10 23:23:01 +00003837 return PyInt_FromLong((long)getpgrp());
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00003838#endif /* GETPGRP_HAVE_ARG */
Guido van Rossum04814471991-06-04 20:23:49 +00003839}
Guido van Rossumb6775db1994-08-01 11:34:53 +00003840#endif /* HAVE_GETPGRP */
Guido van Rossum04814471991-06-04 20:23:49 +00003841
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003842
Guido van Rossumb6775db1994-08-01 11:34:53 +00003843#ifdef HAVE_SETPGRP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003844PyDoc_STRVAR(posix_setpgrp__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003845"setpgrp()\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003846Make this process a session leader.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003847
Barry Warsaw53699e91996-12-10 23:23:01 +00003848static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003849posix_setpgrp(PyObject *self, PyObject *noargs)
Guido van Rossumc2670a01992-09-13 20:07:29 +00003850{
Guido van Rossum64933891994-10-20 21:56:42 +00003851#ifdef SETPGRP_HAVE_ARG
Guido van Rossumc2670a01992-09-13 20:07:29 +00003852 if (setpgrp(0, 0) < 0)
Guido van Rossum64933891994-10-20 21:56:42 +00003853#else /* SETPGRP_HAVE_ARG */
Guido van Rossumb6775db1994-08-01 11:34:53 +00003854 if (setpgrp() < 0)
Guido van Rossum64933891994-10-20 21:56:42 +00003855#endif /* SETPGRP_HAVE_ARG */
Guido van Rossum687dd131993-05-17 08:34:16 +00003856 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00003857 Py_INCREF(Py_None);
3858 return Py_None;
Guido van Rossumc2670a01992-09-13 20:07:29 +00003859}
3860
Guido van Rossumb6775db1994-08-01 11:34:53 +00003861#endif /* HAVE_SETPGRP */
3862
Guido van Rossumad0ee831995-03-01 10:34:45 +00003863#ifdef HAVE_GETPPID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003864PyDoc_STRVAR(posix_getppid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003865"getppid() -> ppid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003866Return the parent's process id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003867
Barry Warsaw53699e91996-12-10 23:23:01 +00003868static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003869posix_getppid(PyObject *self, PyObject *noargs)
Guido van Rossum85e3b011991-06-03 12:42:10 +00003870{
Barry Warsaw53699e91996-12-10 23:23:01 +00003871 return PyInt_FromLong((long)getppid());
Guido van Rossum85e3b011991-06-03 12:42:10 +00003872}
Guido van Rossumad0ee831995-03-01 10:34:45 +00003873#endif
Guido van Rossum85e3b011991-06-03 12:42:10 +00003874
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003875
Fred Drake12c6e2d1999-12-14 21:25:03 +00003876#ifdef HAVE_GETLOGIN
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003877PyDoc_STRVAR(posix_getlogin__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003878"getlogin() -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003879Return the actual login name.");
Fred Drake12c6e2d1999-12-14 21:25:03 +00003880
3881static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003882posix_getlogin(PyObject *self, PyObject *noargs)
Fred Drake12c6e2d1999-12-14 21:25:03 +00003883{
Neal Norwitze241ce82003-02-17 18:17:05 +00003884 PyObject *result = NULL;
Fred Drakea30680b2000-12-06 21:24:28 +00003885 char *name;
3886 int old_errno = errno;
Fred Drake12c6e2d1999-12-14 21:25:03 +00003887
Fred Drakea30680b2000-12-06 21:24:28 +00003888 errno = 0;
3889 name = getlogin();
3890 if (name == NULL) {
3891 if (errno)
3892 posix_error();
3893 else
3894 PyErr_SetString(PyExc_OSError,
Fred Drakee63544f2000-12-06 21:45:33 +00003895 "unable to determine login name");
Fred Drakea30680b2000-12-06 21:24:28 +00003896 }
Fred Drake12c6e2d1999-12-14 21:25:03 +00003897 else
3898 result = PyString_FromString(name);
Fred Drakea30680b2000-12-06 21:24:28 +00003899 errno = old_errno;
Neal Norwitze241ce82003-02-17 18:17:05 +00003900
Fred Drake12c6e2d1999-12-14 21:25:03 +00003901 return result;
3902}
3903#endif
3904
Guido van Rossumad0ee831995-03-01 10:34:45 +00003905#ifdef HAVE_GETUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003906PyDoc_STRVAR(posix_getuid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003907"getuid() -> uid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003908Return the current process's user id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003909
Barry Warsaw53699e91996-12-10 23:23:01 +00003910static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003911posix_getuid(PyObject *self, PyObject *noargs)
Guido van Rossum46003ff1992-05-15 11:05:24 +00003912{
Barry Warsaw53699e91996-12-10 23:23:01 +00003913 return PyInt_FromLong((long)getuid());
Guido van Rossum46003ff1992-05-15 11:05:24 +00003914}
Guido van Rossumad0ee831995-03-01 10:34:45 +00003915#endif
Guido van Rossum46003ff1992-05-15 11:05:24 +00003916
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003917
Guido van Rossumad0ee831995-03-01 10:34:45 +00003918#ifdef HAVE_KILL
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003919PyDoc_STRVAR(posix_kill__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003920"kill(pid, sig)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003921Kill a process with a signal.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003922
Barry Warsaw53699e91996-12-10 23:23:01 +00003923static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00003924posix_kill(PyObject *self, PyObject *args)
Guido van Rossum85e3b011991-06-03 12:42:10 +00003925{
3926 int pid, sig;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00003927 if (!PyArg_ParseTuple(args, "ii:kill", &pid, &sig))
Guido van Rossum85e3b011991-06-03 12:42:10 +00003928 return NULL;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00003929#if defined(PYOS_OS2) && !defined(PYCC_GCC)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00003930 if (sig == XCPT_SIGNAL_INTR || sig == XCPT_SIGNAL_BREAK) {
3931 APIRET rc;
3932 if ((rc = DosSendSignalException(pid, sig)) != NO_ERROR)
Guido van Rossumd48f2521997-12-05 22:19:34 +00003933 return os2_error(rc);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00003934
3935 } else if (sig == XCPT_SIGNAL_KILLPROC) {
3936 APIRET rc;
3937 if ((rc = DosKillProcess(DKP_PROCESS, pid)) != NO_ERROR)
Guido van Rossumd48f2521997-12-05 22:19:34 +00003938 return os2_error(rc);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00003939
3940 } else
Guido van Rossumc5a0f531997-12-02 20:36:02 +00003941 return NULL; /* Unrecognized Signal Requested */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00003942#else
Guido van Rossum85e3b011991-06-03 12:42:10 +00003943 if (kill(pid, sig) == -1)
3944 return posix_error();
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00003945#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00003946 Py_INCREF(Py_None);
3947 return Py_None;
Guido van Rossum85e3b011991-06-03 12:42:10 +00003948}
Guido van Rossumad0ee831995-03-01 10:34:45 +00003949#endif
Guido van Rossum85e3b011991-06-03 12:42:10 +00003950
Martin v. Löwisb2c92f42002-02-16 23:35:41 +00003951#ifdef HAVE_KILLPG
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003952PyDoc_STRVAR(posix_killpg__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003953"killpg(pgid, sig)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003954Kill a process group with a signal.");
Martin v. Löwisb2c92f42002-02-16 23:35:41 +00003955
3956static PyObject *
3957posix_killpg(PyObject *self, PyObject *args)
3958{
3959 int pgid, sig;
3960 if (!PyArg_ParseTuple(args, "ii:killpg", &pgid, &sig))
3961 return NULL;
3962 if (killpg(pgid, sig) == -1)
3963 return posix_error();
3964 Py_INCREF(Py_None);
3965 return Py_None;
3966}
3967#endif
3968
Guido van Rossumc0125471996-06-28 18:55:32 +00003969#ifdef HAVE_PLOCK
3970
3971#ifdef HAVE_SYS_LOCK_H
3972#include <sys/lock.h>
3973#endif
3974
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003975PyDoc_STRVAR(posix_plock__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003976"plock(op)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003977Lock program segments into memory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003978
Barry Warsaw53699e91996-12-10 23:23:01 +00003979static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00003980posix_plock(PyObject *self, PyObject *args)
Guido van Rossumc0125471996-06-28 18:55:32 +00003981{
3982 int op;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00003983 if (!PyArg_ParseTuple(args, "i:plock", &op))
Guido van Rossumc0125471996-06-28 18:55:32 +00003984 return NULL;
3985 if (plock(op) == -1)
3986 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00003987 Py_INCREF(Py_None);
3988 return Py_None;
Guido van Rossumc0125471996-06-28 18:55:32 +00003989}
3990#endif
3991
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003992
Guido van Rossuma4916fa1996-05-23 22:58:55 +00003993#ifdef HAVE_POPEN
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003994PyDoc_STRVAR(posix_popen__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003995"popen(command [, mode='r' [, bufsize]]) -> pipe\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003996Open a pipe to/from a command returning a file object.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003997
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00003998#if defined(PYOS_OS2)
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00003999#if defined(PYCC_VACPP)
Guido van Rossumd48f2521997-12-05 22:19:34 +00004000static int
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004001async_system(const char *command)
4002{
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004003 char errormsg[256], args[1024];
4004 RESULTCODES rcodes;
4005 APIRET rc;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004006
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004007 char *shell = getenv("COMSPEC");
4008 if (!shell)
4009 shell = "cmd";
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004010
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004011 /* avoid overflowing the argument buffer */
4012 if (strlen(shell) + 3 + strlen(command) >= 1024)
4013 return ERROR_NOT_ENOUGH_MEMORY
4014
4015 args[0] = '\0';
4016 strcat(args, shell);
4017 strcat(args, "/c ");
4018 strcat(args, command);
4019
4020 /* execute asynchronously, inheriting the environment */
4021 rc = DosExecPgm(errormsg,
4022 sizeof(errormsg),
4023 EXEC_ASYNC,
4024 args,
4025 NULL,
4026 &rcodes,
4027 shell);
4028 return rc;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004029}
4030
Guido van Rossumd48f2521997-12-05 22:19:34 +00004031static FILE *
4032popen(const char *command, const char *mode, int pipesize, int *err)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004033{
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004034 int oldfd, tgtfd;
4035 HFILE pipeh[2];
4036 APIRET rc;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004037
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004038 /* mode determines which of stdin or stdout is reconnected to
4039 * the pipe to the child
4040 */
4041 if (strchr(mode, 'r') != NULL) {
4042 tgt_fd = 1; /* stdout */
4043 } else if (strchr(mode, 'w')) {
4044 tgt_fd = 0; /* stdin */
4045 } else {
4046 *err = ERROR_INVALID_ACCESS;
4047 return NULL;
4048 }
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004049
Andrew MacIntyrea3be2582004-12-18 09:51:05 +00004050 /* setup the pipe */
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004051 if ((rc = DosCreatePipe(&pipeh[0], &pipeh[1], pipesize)) != NO_ERROR) {
4052 *err = rc;
4053 return NULL;
4054 }
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004055
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004056 /* prevent other threads accessing stdio */
4057 DosEnterCritSec();
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004058
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004059 /* reconnect stdio and execute child */
4060 oldfd = dup(tgtfd);
4061 close(tgtfd);
4062 if (dup2(pipeh[tgtfd], tgtfd) == 0) {
4063 DosClose(pipeh[tgtfd]);
4064 rc = async_system(command);
4065 }
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004066
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004067 /* restore stdio */
4068 dup2(oldfd, tgtfd);
4069 close(oldfd);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004070
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004071 /* allow other threads access to stdio */
4072 DosExitCritSec();
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004073
Andrew MacIntyrea4a8afb2004-12-12 08:30:51 +00004074 /* if execution of child was successful return file stream */
4075 if (rc == NO_ERROR)
4076 return fdopen(pipeh[1 - tgtfd], mode);
4077 else {
4078 DosClose(pipeh[1 - tgtfd]);
4079 *err = rc;
4080 return NULL;
4081 }
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004082}
4083
4084static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00004085posix_popen(PyObject *self, PyObject *args)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004086{
4087 char *name;
4088 char *mode = "r";
Guido van Rossumd48f2521997-12-05 22:19:34 +00004089 int err, bufsize = -1;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004090 FILE *fp;
4091 PyObject *f;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00004092 if (!PyArg_ParseTuple(args, "s|si:popen", &name, &mode, &bufsize))
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004093 return NULL;
4094 Py_BEGIN_ALLOW_THREADS
Guido van Rossumd48f2521997-12-05 22:19:34 +00004095 fp = popen(name, mode, (bufsize > 0) ? bufsize : 4096, &err);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004096 Py_END_ALLOW_THREADS
4097 if (fp == NULL)
Guido van Rossumd48f2521997-12-05 22:19:34 +00004098 return os2_error(err);
4099
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00004100 f = PyFile_FromFile(fp, name, mode, fclose);
4101 if (f != NULL)
4102 PyFile_SetBufSize(f, bufsize);
4103 return f;
4104}
4105
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004106#elif defined(PYCC_GCC)
4107
4108/* standard posix version of popen() support */
4109static PyObject *
4110posix_popen(PyObject *self, PyObject *args)
4111{
4112 char *name;
4113 char *mode = "r";
4114 int bufsize = -1;
4115 FILE *fp;
4116 PyObject *f;
4117 if (!PyArg_ParseTuple(args, "s|si:popen", &name, &mode, &bufsize))
4118 return NULL;
4119 Py_BEGIN_ALLOW_THREADS
4120 fp = popen(name, mode);
4121 Py_END_ALLOW_THREADS
4122 if (fp == NULL)
4123 return posix_error();
4124 f = PyFile_FromFile(fp, name, mode, pclose);
4125 if (f != NULL)
4126 PyFile_SetBufSize(f, bufsize);
4127 return f;
4128}
4129
4130/* fork() under OS/2 has lots'o'warts
4131 * EMX supports pipe() and spawn*() so we can synthesize popen[234]()
4132 * most of this code is a ripoff of the win32 code, but using the
4133 * capabilities of EMX's C library routines
4134 */
4135
4136/* These tell _PyPopen() whether to return 1, 2, or 3 file objects. */
4137#define POPEN_1 1
4138#define POPEN_2 2
4139#define POPEN_3 3
4140#define POPEN_4 4
4141
4142static PyObject *_PyPopen(char *, int, int, int);
4143static int _PyPclose(FILE *file);
4144
4145/*
4146 * Internal dictionary mapping popen* file pointers to process handles,
4147 * for use when retrieving the process exit code. See _PyPclose() below
4148 * for more information on this dictionary's use.
4149 */
4150static PyObject *_PyPopenProcs = NULL;
4151
4152/* os2emx version of popen2()
4153 *
4154 * The result of this function is a pipe (file) connected to the
4155 * process's stdin, and a pipe connected to the process's stdout.
4156 */
4157
4158static PyObject *
4159os2emx_popen2(PyObject *self, PyObject *args)
4160{
4161 PyObject *f;
4162 int tm=0;
4163
4164 char *cmdstring;
4165 char *mode = "t";
4166 int bufsize = -1;
4167 if (!PyArg_ParseTuple(args, "s|si:popen2", &cmdstring, &mode, &bufsize))
4168 return NULL;
4169
4170 if (*mode == 't')
4171 tm = O_TEXT;
4172 else if (*mode != 'b') {
4173 PyErr_SetString(PyExc_ValueError, "mode must be 't' or 'b'");
4174 return NULL;
4175 } else
4176 tm = O_BINARY;
4177
4178 f = _PyPopen(cmdstring, tm, POPEN_2, bufsize);
4179
4180 return f;
4181}
4182
4183/*
4184 * Variation on os2emx.popen2
4185 *
4186 * The result of this function is 3 pipes - the process's stdin,
4187 * stdout and stderr
4188 */
4189
4190static PyObject *
4191os2emx_popen3(PyObject *self, PyObject *args)
4192{
4193 PyObject *f;
4194 int tm = 0;
4195
4196 char *cmdstring;
4197 char *mode = "t";
4198 int bufsize = -1;
4199 if (!PyArg_ParseTuple(args, "s|si:popen3", &cmdstring, &mode, &bufsize))
4200 return NULL;
4201
4202 if (*mode == 't')
4203 tm = O_TEXT;
4204 else if (*mode != 'b') {
4205 PyErr_SetString(PyExc_ValueError, "mode must be 't' or 'b'");
4206 return NULL;
4207 } else
4208 tm = O_BINARY;
4209
4210 f = _PyPopen(cmdstring, tm, POPEN_3, bufsize);
4211
4212 return f;
4213}
4214
4215/*
4216 * Variation on os2emx.popen2
4217 *
Tim Peters11b23062003-04-23 02:39:17 +00004218 * The result of this function is 2 pipes - the processes stdin,
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004219 * and stdout+stderr combined as a single pipe.
4220 */
4221
4222static PyObject *
4223os2emx_popen4(PyObject *self, PyObject *args)
4224{
4225 PyObject *f;
4226 int tm = 0;
4227
4228 char *cmdstring;
4229 char *mode = "t";
4230 int bufsize = -1;
4231 if (!PyArg_ParseTuple(args, "s|si:popen4", &cmdstring, &mode, &bufsize))
4232 return NULL;
4233
4234 if (*mode == 't')
4235 tm = O_TEXT;
4236 else if (*mode != 'b') {
4237 PyErr_SetString(PyExc_ValueError, "mode must be 't' or 'b'");
4238 return NULL;
4239 } else
4240 tm = O_BINARY;
4241
4242 f = _PyPopen(cmdstring, tm, POPEN_4, bufsize);
4243
4244 return f;
4245}
4246
4247/* a couple of structures for convenient handling of multiple
4248 * file handles and pipes
4249 */
4250struct file_ref
4251{
4252 int handle;
4253 int flags;
4254};
4255
4256struct pipe_ref
4257{
4258 int rd;
4259 int wr;
4260};
4261
4262/* The following code is derived from the win32 code */
4263
4264static PyObject *
4265_PyPopen(char *cmdstring, int mode, int n, int bufsize)
4266{
4267 struct file_ref stdio[3];
4268 struct pipe_ref p_fd[3];
4269 FILE *p_s[3];
4270 int file_count, i, pipe_err, pipe_pid;
4271 char *shell, *sh_name, *opt, *rd_mode, *wr_mode;
4272 PyObject *f, *p_f[3];
4273
4274 /* file modes for subsequent fdopen's on pipe handles */
4275 if (mode == O_TEXT)
4276 {
4277 rd_mode = "rt";
4278 wr_mode = "wt";
4279 }
4280 else
4281 {
4282 rd_mode = "rb";
4283 wr_mode = "wb";
4284 }
4285
4286 /* prepare shell references */
4287 if ((shell = getenv("EMXSHELL")) == NULL)
4288 if ((shell = getenv("COMSPEC")) == NULL)
4289 {
4290 errno = ENOENT;
4291 return posix_error();
4292 }
4293
4294 sh_name = _getname(shell);
4295 if (stricmp(sh_name, "cmd.exe") == 0 || stricmp(sh_name, "4os2.exe") == 0)
4296 opt = "/c";
4297 else
4298 opt = "-c";
4299
4300 /* save current stdio fds + their flags, and set not inheritable */
4301 i = pipe_err = 0;
4302 while (pipe_err >= 0 && i < 3)
4303 {
4304 pipe_err = stdio[i].handle = dup(i);
4305 stdio[i].flags = fcntl(i, F_GETFD, 0);
4306 fcntl(stdio[i].handle, F_SETFD, stdio[i].flags | FD_CLOEXEC);
4307 i++;
4308 }
4309 if (pipe_err < 0)
4310 {
4311 /* didn't get them all saved - clean up and bail out */
4312 int saved_err = errno;
4313 while (i-- > 0)
4314 {
4315 close(stdio[i].handle);
4316 }
4317 errno = saved_err;
4318 return posix_error();
4319 }
4320
4321 /* create pipe ends */
4322 file_count = 2;
4323 if (n == POPEN_3)
4324 file_count = 3;
4325 i = pipe_err = 0;
4326 while ((pipe_err == 0) && (i < file_count))
4327 pipe_err = pipe((int *)&p_fd[i++]);
4328 if (pipe_err < 0)
4329 {
4330 /* didn't get them all made - clean up and bail out */
4331 while (i-- > 0)
4332 {
4333 close(p_fd[i].wr);
4334 close(p_fd[i].rd);
4335 }
4336 errno = EPIPE;
4337 return posix_error();
4338 }
4339
4340 /* change the actual standard IO streams over temporarily,
4341 * making the retained pipe ends non-inheritable
4342 */
4343 pipe_err = 0;
4344
4345 /* - stdin */
4346 if (dup2(p_fd[0].rd, 0) == 0)
4347 {
4348 close(p_fd[0].rd);
4349 i = fcntl(p_fd[0].wr, F_GETFD, 0);
4350 fcntl(p_fd[0].wr, F_SETFD, i | FD_CLOEXEC);
4351 if ((p_s[0] = fdopen(p_fd[0].wr, wr_mode)) == NULL)
4352 {
4353 close(p_fd[0].wr);
4354 pipe_err = -1;
4355 }
4356 }
4357 else
4358 {
4359 pipe_err = -1;
4360 }
4361
4362 /* - stdout */
4363 if (pipe_err == 0)
4364 {
4365 if (dup2(p_fd[1].wr, 1) == 1)
4366 {
4367 close(p_fd[1].wr);
4368 i = fcntl(p_fd[1].rd, F_GETFD, 0);
4369 fcntl(p_fd[1].rd, F_SETFD, i | FD_CLOEXEC);
4370 if ((p_s[1] = fdopen(p_fd[1].rd, rd_mode)) == NULL)
4371 {
4372 close(p_fd[1].rd);
4373 pipe_err = -1;
4374 }
4375 }
4376 else
4377 {
4378 pipe_err = -1;
4379 }
4380 }
4381
4382 /* - stderr, as required */
4383 if (pipe_err == 0)
4384 switch (n)
4385 {
4386 case POPEN_3:
4387 {
4388 if (dup2(p_fd[2].wr, 2) == 2)
4389 {
4390 close(p_fd[2].wr);
4391 i = fcntl(p_fd[2].rd, F_GETFD, 0);
4392 fcntl(p_fd[2].rd, F_SETFD, i | FD_CLOEXEC);
4393 if ((p_s[2] = fdopen(p_fd[2].rd, rd_mode)) == NULL)
4394 {
4395 close(p_fd[2].rd);
4396 pipe_err = -1;
4397 }
4398 }
4399 else
4400 {
4401 pipe_err = -1;
4402 }
4403 break;
4404 }
4405
4406 case POPEN_4:
4407 {
4408 if (dup2(1, 2) != 2)
4409 {
4410 pipe_err = -1;
4411 }
4412 break;
4413 }
4414 }
4415
4416 /* spawn the child process */
4417 if (pipe_err == 0)
4418 {
4419 pipe_pid = spawnlp(P_NOWAIT, shell, shell, opt, cmdstring, (char *)0);
4420 if (pipe_pid == -1)
4421 {
4422 pipe_err = -1;
4423 }
4424 else
4425 {
4426 /* save the PID into the FILE structure
4427 * NOTE: this implementation doesn't actually
4428 * take advantage of this, but do it for
4429 * completeness - AIM Apr01
4430 */
4431 for (i = 0; i < file_count; i++)
4432 p_s[i]->_pid = pipe_pid;
4433 }
4434 }
4435
4436 /* reset standard IO to normal */
4437 for (i = 0; i < 3; i++)
4438 {
4439 dup2(stdio[i].handle, i);
4440 fcntl(i, F_SETFD, stdio[i].flags);
4441 close(stdio[i].handle);
4442 }
4443
4444 /* if any remnant problems, clean up and bail out */
4445 if (pipe_err < 0)
4446 {
4447 for (i = 0; i < 3; i++)
4448 {
4449 close(p_fd[i].rd);
4450 close(p_fd[i].wr);
4451 }
4452 errno = EPIPE;
4453 return posix_error_with_filename(cmdstring);
4454 }
4455
4456 /* build tuple of file objects to return */
4457 if ((p_f[0] = PyFile_FromFile(p_s[0], cmdstring, wr_mode, _PyPclose)) != NULL)
4458 PyFile_SetBufSize(p_f[0], bufsize);
4459 if ((p_f[1] = PyFile_FromFile(p_s[1], cmdstring, rd_mode, _PyPclose)) != NULL)
4460 PyFile_SetBufSize(p_f[1], bufsize);
4461 if (n == POPEN_3)
4462 {
4463 if ((p_f[2] = PyFile_FromFile(p_s[2], cmdstring, rd_mode, _PyPclose)) != NULL)
4464 PyFile_SetBufSize(p_f[0], bufsize);
Raymond Hettinger8ae46892003-10-12 19:09:37 +00004465 f = PyTuple_Pack(3, p_f[0], p_f[1], p_f[2]);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004466 }
4467 else
Raymond Hettinger8ae46892003-10-12 19:09:37 +00004468 f = PyTuple_Pack(2, p_f[0], p_f[1]);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004469
4470 /*
4471 * Insert the files we've created into the process dictionary
4472 * all referencing the list with the process handle and the
4473 * initial number of files (see description below in _PyPclose).
4474 * Since if _PyPclose later tried to wait on a process when all
4475 * handles weren't closed, it could create a deadlock with the
4476 * child, we spend some energy here to try to ensure that we
4477 * either insert all file handles into the dictionary or none
4478 * at all. It's a little clumsy with the various popen modes
4479 * and variable number of files involved.
4480 */
4481 if (!_PyPopenProcs)
4482 {
4483 _PyPopenProcs = PyDict_New();
4484 }
4485
4486 if (_PyPopenProcs)
4487 {
4488 PyObject *procObj, *pidObj, *intObj, *fileObj[3];
4489 int ins_rc[3];
4490
4491 fileObj[0] = fileObj[1] = fileObj[2] = NULL;
4492 ins_rc[0] = ins_rc[1] = ins_rc[2] = 0;
4493
4494 procObj = PyList_New(2);
4495 pidObj = PyInt_FromLong((long) pipe_pid);
4496 intObj = PyInt_FromLong((long) file_count);
4497
4498 if (procObj && pidObj && intObj)
4499 {
4500 PyList_SetItem(procObj, 0, pidObj);
4501 PyList_SetItem(procObj, 1, intObj);
4502
4503 fileObj[0] = PyLong_FromVoidPtr(p_s[0]);
4504 if (fileObj[0])
4505 {
4506 ins_rc[0] = PyDict_SetItem(_PyPopenProcs,
4507 fileObj[0],
4508 procObj);
4509 }
4510 fileObj[1] = PyLong_FromVoidPtr(p_s[1]);
4511 if (fileObj[1])
4512 {
4513 ins_rc[1] = PyDict_SetItem(_PyPopenProcs,
4514 fileObj[1],
4515 procObj);
4516 }
4517 if (file_count >= 3)
4518 {
4519 fileObj[2] = PyLong_FromVoidPtr(p_s[2]);
4520 if (fileObj[2])
4521 {
4522 ins_rc[2] = PyDict_SetItem(_PyPopenProcs,
4523 fileObj[2],
4524 procObj);
4525 }
4526 }
4527
4528 if (ins_rc[0] < 0 || !fileObj[0] ||
4529 ins_rc[1] < 0 || (file_count > 1 && !fileObj[1]) ||
4530 ins_rc[2] < 0 || (file_count > 2 && !fileObj[2]))
4531 {
4532 /* Something failed - remove any dictionary
4533 * entries that did make it.
4534 */
4535 if (!ins_rc[0] && fileObj[0])
4536 {
4537 PyDict_DelItem(_PyPopenProcs,
4538 fileObj[0]);
4539 }
4540 if (!ins_rc[1] && fileObj[1])
4541 {
4542 PyDict_DelItem(_PyPopenProcs,
4543 fileObj[1]);
4544 }
4545 if (!ins_rc[2] && fileObj[2])
4546 {
4547 PyDict_DelItem(_PyPopenProcs,
4548 fileObj[2]);
4549 }
4550 }
4551 }
Tim Peters11b23062003-04-23 02:39:17 +00004552
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004553 /*
4554 * Clean up our localized references for the dictionary keys
4555 * and value since PyDict_SetItem will Py_INCREF any copies
4556 * that got placed in the dictionary.
4557 */
4558 Py_XDECREF(procObj);
4559 Py_XDECREF(fileObj[0]);
4560 Py_XDECREF(fileObj[1]);
4561 Py_XDECREF(fileObj[2]);
4562 }
4563
4564 /* Child is launched. */
4565 return f;
4566}
4567
4568/*
4569 * Wrapper for fclose() to use for popen* files, so we can retrieve the
4570 * exit code for the child process and return as a result of the close.
4571 *
4572 * This function uses the _PyPopenProcs dictionary in order to map the
4573 * input file pointer to information about the process that was
4574 * originally created by the popen* call that created the file pointer.
4575 * The dictionary uses the file pointer as a key (with one entry
4576 * inserted for each file returned by the original popen* call) and a
4577 * single list object as the value for all files from a single call.
4578 * The list object contains the Win32 process handle at [0], and a file
4579 * count at [1], which is initialized to the total number of file
4580 * handles using that list.
4581 *
4582 * This function closes whichever handle it is passed, and decrements
4583 * the file count in the dictionary for the process handle pointed to
4584 * by this file. On the last close (when the file count reaches zero),
4585 * this function will wait for the child process and then return its
4586 * exit code as the result of the close() operation. This permits the
4587 * files to be closed in any order - it is always the close() of the
4588 * final handle that will return the exit code.
Andrew MacIntyrebaf25b02003-04-21 14:22:36 +00004589 *
4590 * NOTE: This function is currently called with the GIL released.
4591 * hence we use the GILState API to manage our state.
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004592 */
4593
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004594static int _PyPclose(FILE *file)
4595{
4596 int result;
4597 int exit_code;
4598 int pipe_pid;
4599 PyObject *procObj, *pidObj, *intObj, *fileObj;
4600 int file_count;
4601#ifdef WITH_THREAD
Andrew MacIntyrebaf25b02003-04-21 14:22:36 +00004602 PyGILState_STATE state;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004603#endif
4604
4605 /* Close the file handle first, to ensure it can't block the
4606 * child from exiting if it's the last handle.
4607 */
4608 result = fclose(file);
4609
4610#ifdef WITH_THREAD
Andrew MacIntyrebaf25b02003-04-21 14:22:36 +00004611 state = PyGILState_Ensure();
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004612#endif
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004613 if (_PyPopenProcs)
4614 {
4615 if ((fileObj = PyLong_FromVoidPtr(file)) != NULL &&
4616 (procObj = PyDict_GetItem(_PyPopenProcs,
4617 fileObj)) != NULL &&
4618 (pidObj = PyList_GetItem(procObj,0)) != NULL &&
4619 (intObj = PyList_GetItem(procObj,1)) != NULL)
4620 {
4621 pipe_pid = (int) PyInt_AsLong(pidObj);
4622 file_count = (int) PyInt_AsLong(intObj);
4623
4624 if (file_count > 1)
4625 {
4626 /* Still other files referencing process */
4627 file_count--;
4628 PyList_SetItem(procObj,1,
4629 PyInt_FromLong((long) file_count));
4630 }
4631 else
4632 {
4633 /* Last file for this process */
4634 if (result != EOF &&
4635 waitpid(pipe_pid, &exit_code, 0) == pipe_pid)
4636 {
4637 /* extract exit status */
4638 if (WIFEXITED(exit_code))
4639 {
4640 result = WEXITSTATUS(exit_code);
4641 }
4642 else
4643 {
4644 errno = EPIPE;
4645 result = -1;
4646 }
4647 }
4648 else
4649 {
4650 /* Indicate failure - this will cause the file object
4651 * to raise an I/O error and translate the last
4652 * error code from errno. We do have a problem with
4653 * last errors that overlap the normal errno table,
4654 * but that's a consistent problem with the file object.
4655 */
4656 result = -1;
4657 }
4658 }
4659
4660 /* Remove this file pointer from dictionary */
4661 PyDict_DelItem(_PyPopenProcs, fileObj);
4662
4663 if (PyDict_Size(_PyPopenProcs) == 0)
4664 {
4665 Py_DECREF(_PyPopenProcs);
4666 _PyPopenProcs = NULL;
4667 }
4668
4669 } /* if object retrieval ok */
4670
4671 Py_XDECREF(fileObj);
4672 } /* if _PyPopenProcs */
4673
4674#ifdef WITH_THREAD
Andrew MacIntyrebaf25b02003-04-21 14:22:36 +00004675 PyGILState_Release(state);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004676#endif
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004677 return result;
4678}
4679
4680#endif /* PYCC_??? */
4681
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00004682#elif defined(MS_WINDOWS)
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004683
4684/*
4685 * Portable 'popen' replacement for Win32.
4686 *
4687 * Written by Bill Tutt <billtut@microsoft.com>. Minor tweaks
4688 * and 2.0 integration by Fredrik Lundh <fredrik@pythonware.com>
Mark Hammondb37a3732000-08-14 04:47:33 +00004689 * Return code handling by David Bolen <db3l@fitlinxx.com>.
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004690 */
4691
4692#include <malloc.h>
4693#include <io.h>
4694#include <fcntl.h>
4695
4696/* These tell _PyPopen() wether to return 1, 2, or 3 file objects. */
4697#define POPEN_1 1
4698#define POPEN_2 2
4699#define POPEN_3 3
4700#define POPEN_4 4
4701
4702static PyObject *_PyPopen(char *, int, int);
Fredrik Lundh56055a42000-07-23 19:47:12 +00004703static int _PyPclose(FILE *file);
4704
4705/*
4706 * Internal dictionary mapping popen* file pointers to process handles,
Mark Hammondb37a3732000-08-14 04:47:33 +00004707 * for use when retrieving the process exit code. See _PyPclose() below
4708 * for more information on this dictionary's use.
Fredrik Lundh56055a42000-07-23 19:47:12 +00004709 */
4710static PyObject *_PyPopenProcs = NULL;
4711
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004712
4713/* popen that works from a GUI.
4714 *
4715 * The result of this function is a pipe (file) connected to the
4716 * processes stdin or stdout, depending on the requested mode.
4717 */
4718
4719static PyObject *
4720posix_popen(PyObject *self, PyObject *args)
4721{
Raymond Hettingerb5cb6652003-09-01 22:25:41 +00004722 PyObject *f;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004723 int tm = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00004724
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004725 char *cmdstring;
4726 char *mode = "r";
Fredrik Lundhbb7eeff2000-07-09 17:59:32 +00004727 int bufsize = -1;
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004728 if (!PyArg_ParseTuple(args, "s|si:popen", &cmdstring, &mode, &bufsize))
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004729 return NULL;
4730
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004731 if (*mode == 'r')
4732 tm = _O_RDONLY;
4733 else if (*mode != 'w') {
Fred Drake661ea262000-10-24 19:57:45 +00004734 PyErr_SetString(PyExc_ValueError, "popen() arg 2 must be 'r' or 'w'");
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004735 return NULL;
4736 } else
4737 tm = _O_WRONLY;
Tim Peters5aa91602002-01-30 05:46:57 +00004738
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004739 if (bufsize != -1) {
Fred Drake661ea262000-10-24 19:57:45 +00004740 PyErr_SetString(PyExc_ValueError, "popen() arg 3 must be -1");
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004741 return NULL;
4742 }
4743
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004744 if (*(mode+1) == 't')
Fredrik Lundhbb7eeff2000-07-09 17:59:32 +00004745 f = _PyPopen(cmdstring, tm | _O_TEXT, POPEN_1);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004746 else if (*(mode+1) == 'b')
Fredrik Lundhbb7eeff2000-07-09 17:59:32 +00004747 f = _PyPopen(cmdstring, tm | _O_BINARY, POPEN_1);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004748 else
4749 f = _PyPopen(cmdstring, tm | _O_TEXT, POPEN_1);
4750
4751 return f;
4752}
4753
4754/* Variation on win32pipe.popen
4755 *
4756 * The result of this function is a pipe (file) connected to the
4757 * process's stdin, and a pipe connected to the process's stdout.
4758 */
4759
4760static PyObject *
4761win32_popen2(PyObject *self, PyObject *args)
4762{
4763 PyObject *f;
4764 int tm=0;
Tim Peters5aa91602002-01-30 05:46:57 +00004765
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004766 char *cmdstring;
4767 char *mode = "t";
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004768 int bufsize = -1;
4769 if (!PyArg_ParseTuple(args, "s|si:popen2", &cmdstring, &mode, &bufsize))
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004770 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00004771
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004772 if (*mode == 't')
4773 tm = _O_TEXT;
4774 else if (*mode != 'b') {
Fred Drake661ea262000-10-24 19:57:45 +00004775 PyErr_SetString(PyExc_ValueError, "popen2() arg 2 must be 't' or 'b'");
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004776 return NULL;
4777 } else
4778 tm = _O_BINARY;
Tim Peters5aa91602002-01-30 05:46:57 +00004779
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004780 if (bufsize != -1) {
Fred Drake661ea262000-10-24 19:57:45 +00004781 PyErr_SetString(PyExc_ValueError, "popen2() arg 3 must be -1");
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004782 return NULL;
4783 }
4784
4785 f = _PyPopen(cmdstring, tm, POPEN_2);
Tim Peters5aa91602002-01-30 05:46:57 +00004786
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004787 return f;
4788}
4789
4790/*
4791 * Variation on <om win32pipe.popen>
Fredrik Lundhbb7eeff2000-07-09 17:59:32 +00004792 *
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004793 * The result of this function is 3 pipes - the process's stdin,
4794 * stdout and stderr
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004795 */
4796
4797static PyObject *
4798win32_popen3(PyObject *self, PyObject *args)
4799{
4800 PyObject *f;
4801 int tm = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00004802
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004803 char *cmdstring;
4804 char *mode = "t";
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004805 int bufsize = -1;
4806 if (!PyArg_ParseTuple(args, "s|si:popen3", &cmdstring, &mode, &bufsize))
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004807 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00004808
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004809 if (*mode == 't')
4810 tm = _O_TEXT;
4811 else if (*mode != 'b') {
Fred Drake661ea262000-10-24 19:57:45 +00004812 PyErr_SetString(PyExc_ValueError, "popen3() arg 2 must be 't' or 'b'");
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004813 return NULL;
4814 } else
4815 tm = _O_BINARY;
Tim Peters5aa91602002-01-30 05:46:57 +00004816
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004817 if (bufsize != -1) {
Fred Drake661ea262000-10-24 19:57:45 +00004818 PyErr_SetString(PyExc_ValueError, "popen3() arg 3 must be -1");
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004819 return NULL;
4820 }
4821
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004822 f = _PyPopen(cmdstring, tm, POPEN_3);
Tim Peters5aa91602002-01-30 05:46:57 +00004823
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004824 return f;
4825}
4826
4827/*
4828 * Variation on win32pipe.popen
4829 *
Tim Peters5aa91602002-01-30 05:46:57 +00004830 * The result of this function is 2 pipes - the processes stdin,
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004831 * and stdout+stderr combined as a single pipe.
4832 */
4833
4834static PyObject *
4835win32_popen4(PyObject *self, PyObject *args)
4836{
4837 PyObject *f;
4838 int tm = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00004839
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004840 char *cmdstring;
4841 char *mode = "t";
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004842 int bufsize = -1;
4843 if (!PyArg_ParseTuple(args, "s|si:popen4", &cmdstring, &mode, &bufsize))
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004844 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00004845
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004846 if (*mode == 't')
4847 tm = _O_TEXT;
4848 else if (*mode != 'b') {
Fred Drake661ea262000-10-24 19:57:45 +00004849 PyErr_SetString(PyExc_ValueError, "popen4() arg 2 must be 't' or 'b'");
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004850 return NULL;
4851 } else
4852 tm = _O_BINARY;
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004853
4854 if (bufsize != -1) {
Fred Drake661ea262000-10-24 19:57:45 +00004855 PyErr_SetString(PyExc_ValueError, "popen4() arg 3 must be -1");
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004856 return NULL;
4857 }
4858
Fredrik Lundhbb7eeff2000-07-09 17:59:32 +00004859 f = _PyPopen(cmdstring, tm, POPEN_4);
Fredrik Lundh766ccdc2000-07-09 17:41:01 +00004860
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004861 return f;
4862}
4863
Mark Hammond08501372001-01-31 07:30:29 +00004864static BOOL
Mark Hammondb37a3732000-08-14 04:47:33 +00004865_PyPopenCreateProcess(char *cmdstring,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00004866 HANDLE hStdin,
4867 HANDLE hStdout,
Mark Hammondb37a3732000-08-14 04:47:33 +00004868 HANDLE hStderr,
4869 HANDLE *hProcess)
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004870{
4871 PROCESS_INFORMATION piProcInfo;
4872 STARTUPINFO siStartInfo;
Mark Hammondfe51c6d2002-08-02 02:27:13 +00004873 DWORD dwProcessFlags = 0; /* no NEW_CONSOLE by default for Ctrl+C handling */
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004874 char *s1,*s2, *s3 = " /c ";
Mark Hammond08501372001-01-31 07:30:29 +00004875 const char *szConsoleSpawn = "w9xpopen.exe";
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004876 int i;
Martin v. Löwis18e16552006-02-15 17:27:45 +00004877 Py_ssize_t x;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004878
4879 if (i = GetEnvironmentVariable("COMSPEC",NULL,0)) {
Tim Peters402d5982001-08-27 06:37:48 +00004880 char *comshell;
4881
Tim Peters92e4dd82002-10-05 01:47:34 +00004882 s1 = (char *)alloca(i);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004883 if (!(x = GetEnvironmentVariable("COMSPEC", s1, i)))
Martin v. Löwis18e16552006-02-15 17:27:45 +00004884 /* x < i, so x fits into an integer */
4885 return (int)x;
Tim Peters402d5982001-08-27 06:37:48 +00004886
4887 /* Explicitly check if we are using COMMAND.COM. If we are
4888 * then use the w9xpopen hack.
4889 */
4890 comshell = s1 + x;
4891 while (comshell >= s1 && *comshell != '\\')
4892 --comshell;
4893 ++comshell;
4894
4895 if (GetVersion() < 0x80000000 &&
4896 _stricmp(comshell, "command.com") != 0) {
4897 /* NT/2000 and not using command.com. */
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004898 x = i + strlen(s3) + strlen(cmdstring) + 1;
Tim Peters92e4dd82002-10-05 01:47:34 +00004899 s2 = (char *)alloca(x);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004900 ZeroMemory(s2, x);
Tim Peters75cdad52001-11-28 22:07:30 +00004901 PyOS_snprintf(s2, x, "%s%s%s", s1, s3, cmdstring);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004902 }
4903 else {
4904 /*
Tim Peters402d5982001-08-27 06:37:48 +00004905 * Oh gag, we're on Win9x or using COMMAND.COM. Use
4906 * the workaround listed in KB: Q150956
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004907 */
Mark Hammond08501372001-01-31 07:30:29 +00004908 char modulepath[_MAX_PATH];
4909 struct stat statinfo;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004910 GetModuleFileName(NULL, modulepath, sizeof(modulepath));
Martin v. Löwis26fd9602006-04-22 11:15:41 +00004911 for (x = i = 0; modulepath[i]; i++)
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004912 if (modulepath[i] == SEP)
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004913 x = i+1;
4914 modulepath[x] = '\0';
Mark Hammond08501372001-01-31 07:30:29 +00004915 /* Create the full-name to w9xpopen, so we can test it exists */
Tim Peters5aa91602002-01-30 05:46:57 +00004916 strncat(modulepath,
4917 szConsoleSpawn,
Mark Hammond08501372001-01-31 07:30:29 +00004918 (sizeof(modulepath)/sizeof(modulepath[0]))
4919 -strlen(modulepath));
4920 if (stat(modulepath, &statinfo) != 0) {
Kristján Valur Jónsson17b8e972007-04-25 00:10:50 +00004921 size_t mplen = sizeof(modulepath)/sizeof(modulepath[0]);
Tim Peters5aa91602002-01-30 05:46:57 +00004922 /* Eeek - file-not-found - possibly an embedding
4923 situation - see if we can locate it in sys.prefix
Mark Hammond08501372001-01-31 07:30:29 +00004924 */
Tim Peters5aa91602002-01-30 05:46:57 +00004925 strncpy(modulepath,
4926 Py_GetExecPrefix(),
Kristján Valur Jónsson17b8e972007-04-25 00:10:50 +00004927 mplen);
4928 modulepath[mplen-1] = '\0';
Mark Hammond08501372001-01-31 07:30:29 +00004929 if (modulepath[strlen(modulepath)-1] != '\\')
4930 strcat(modulepath, "\\");
Tim Peters5aa91602002-01-30 05:46:57 +00004931 strncat(modulepath,
4932 szConsoleSpawn,
Kristján Valur Jónsson17b8e972007-04-25 00:10:50 +00004933 mplen-strlen(modulepath));
Mark Hammond08501372001-01-31 07:30:29 +00004934 /* No where else to look - raise an easily identifiable
4935 error, rather than leaving Windows to report
4936 "file not found" - as the user is probably blissfully
4937 unaware this shim EXE is used, and it will confuse them.
4938 (well, it confused me for a while ;-)
4939 */
4940 if (stat(modulepath, &statinfo) != 0) {
Tim Peters5aa91602002-01-30 05:46:57 +00004941 PyErr_Format(PyExc_RuntimeError,
Mark Hammond08501372001-01-31 07:30:29 +00004942 "Can not locate '%s' which is needed "
Tim Peters402d5982001-08-27 06:37:48 +00004943 "for popen to work with your shell "
4944 "or platform.",
Mark Hammond08501372001-01-31 07:30:29 +00004945 szConsoleSpawn);
4946 return FALSE;
4947 }
4948 }
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004949 x = i + strlen(s3) + strlen(cmdstring) + 1 +
Tim Peters5aa91602002-01-30 05:46:57 +00004950 strlen(modulepath) +
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004951 strlen(szConsoleSpawn) + 1;
Mark Hammond08501372001-01-31 07:30:29 +00004952
Tim Peters92e4dd82002-10-05 01:47:34 +00004953 s2 = (char *)alloca(x);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004954 ZeroMemory(s2, x);
Mark Hammonde7fefbf2002-04-03 01:47:00 +00004955 /* To maintain correct argument passing semantics,
4956 we pass the command-line as it stands, and allow
4957 quoting to be applied. w9xpopen.exe will then
4958 use its argv vector, and re-quote the necessary
4959 args for the ultimate child process.
4960 */
Tim Peters75cdad52001-11-28 22:07:30 +00004961 PyOS_snprintf(
4962 s2, x,
Mark Hammonde7fefbf2002-04-03 01:47:00 +00004963 "\"%s\" %s%s%s",
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004964 modulepath,
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004965 s1,
4966 s3,
4967 cmdstring);
Mark Hammondfe51c6d2002-08-02 02:27:13 +00004968 /* Not passing CREATE_NEW_CONSOLE has been known to
Tim Peters11b23062003-04-23 02:39:17 +00004969 cause random failures on win9x. Specifically a
Mark Hammondfe51c6d2002-08-02 02:27:13 +00004970 dialog:
4971 "Your program accessed mem currently in use at xxx"
4972 and a hopeful warning about the stability of your
4973 system.
4974 Cost is Ctrl+C wont kill children, but anyone
4975 who cares can have a go!
4976 */
4977 dwProcessFlags |= CREATE_NEW_CONSOLE;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004978 }
4979 }
4980
4981 /* Could be an else here to try cmd.exe / command.com in the path
4982 Now we'll just error out.. */
Mark Hammond08501372001-01-31 07:30:29 +00004983 else {
Tim Peters402d5982001-08-27 06:37:48 +00004984 PyErr_SetString(PyExc_RuntimeError,
4985 "Cannot locate a COMSPEC environment variable to "
4986 "use as the shell");
Mark Hammond08501372001-01-31 07:30:29 +00004987 return FALSE;
4988 }
Tim Peters5aa91602002-01-30 05:46:57 +00004989
Fredrik Lundhffb9c772000-07-09 14:49:51 +00004990 ZeroMemory(&siStartInfo, sizeof(STARTUPINFO));
4991 siStartInfo.cb = sizeof(STARTUPINFO);
4992 siStartInfo.dwFlags = STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW;
4993 siStartInfo.hStdInput = hStdin;
4994 siStartInfo.hStdOutput = hStdout;
4995 siStartInfo.hStdError = hStderr;
4996 siStartInfo.wShowWindow = SW_HIDE;
4997
4998 if (CreateProcess(NULL,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00004999 s2,
5000 NULL,
5001 NULL,
5002 TRUE,
Mark Hammondfe51c6d2002-08-02 02:27:13 +00005003 dwProcessFlags,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005004 NULL,
5005 NULL,
5006 &siStartInfo,
5007 &piProcInfo) ) {
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005008 /* Close the handles now so anyone waiting is woken. */
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005009 CloseHandle(piProcInfo.hThread);
Fredrik Lundh56055a42000-07-23 19:47:12 +00005010
Mark Hammondb37a3732000-08-14 04:47:33 +00005011 /* Return process handle */
5012 *hProcess = piProcInfo.hProcess;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005013 return TRUE;
5014 }
Tim Peters402d5982001-08-27 06:37:48 +00005015 win32_error("CreateProcess", s2);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005016 return FALSE;
5017}
5018
5019/* The following code is based off of KB: Q190351 */
5020
5021static PyObject *
5022_PyPopen(char *cmdstring, int mode, int n)
5023{
5024 HANDLE hChildStdinRd, hChildStdinWr, hChildStdoutRd, hChildStdoutWr,
5025 hChildStderrRd, hChildStderrWr, hChildStdinWrDup, hChildStdoutRdDup,
Mark Hammondb37a3732000-08-14 04:47:33 +00005026 hChildStderrRdDup, hProcess; /* hChildStdoutWrDup; */
Tim Peters5aa91602002-01-30 05:46:57 +00005027
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005028 SECURITY_ATTRIBUTES saAttr;
5029 BOOL fSuccess;
5030 int fd1, fd2, fd3;
5031 FILE *f1, *f2, *f3;
Mark Hammondb37a3732000-08-14 04:47:33 +00005032 long file_count;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005033 PyObject *f;
5034
5035 saAttr.nLength = sizeof(SECURITY_ATTRIBUTES);
5036 saAttr.bInheritHandle = TRUE;
5037 saAttr.lpSecurityDescriptor = NULL;
5038
5039 if (!CreatePipe(&hChildStdinRd, &hChildStdinWr, &saAttr, 0))
5040 return win32_error("CreatePipe", NULL);
5041
5042 /* Create new output read handle and the input write handle. Set
5043 * the inheritance properties to FALSE. Otherwise, the child inherits
Walter Dörwaldf0dfc7a2003-10-20 14:01:56 +00005044 * these handles; resulting in non-closeable handles to the pipes
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005045 * being created. */
5046 fSuccess = DuplicateHandle(GetCurrentProcess(), hChildStdinWr,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005047 GetCurrentProcess(), &hChildStdinWrDup, 0,
5048 FALSE,
5049 DUPLICATE_SAME_ACCESS);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005050 if (!fSuccess)
5051 return win32_error("DuplicateHandle", NULL);
5052
5053 /* Close the inheritable version of ChildStdin
5054 that we're using. */
5055 CloseHandle(hChildStdinWr);
5056
5057 if (!CreatePipe(&hChildStdoutRd, &hChildStdoutWr, &saAttr, 0))
5058 return win32_error("CreatePipe", NULL);
5059
5060 fSuccess = DuplicateHandle(GetCurrentProcess(), hChildStdoutRd,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005061 GetCurrentProcess(), &hChildStdoutRdDup, 0,
5062 FALSE, DUPLICATE_SAME_ACCESS);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005063 if (!fSuccess)
5064 return win32_error("DuplicateHandle", NULL);
5065
5066 /* Close the inheritable version of ChildStdout
5067 that we're using. */
5068 CloseHandle(hChildStdoutRd);
5069
5070 if (n != POPEN_4) {
5071 if (!CreatePipe(&hChildStderrRd, &hChildStderrWr, &saAttr, 0))
5072 return win32_error("CreatePipe", NULL);
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005073 fSuccess = DuplicateHandle(GetCurrentProcess(),
5074 hChildStderrRd,
5075 GetCurrentProcess(),
5076 &hChildStderrRdDup, 0,
5077 FALSE, DUPLICATE_SAME_ACCESS);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005078 if (!fSuccess)
5079 return win32_error("DuplicateHandle", NULL);
5080 /* Close the inheritable version of ChildStdErr that we're using. */
5081 CloseHandle(hChildStderrRd);
5082 }
Tim Peters5aa91602002-01-30 05:46:57 +00005083
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005084 switch (n) {
5085 case POPEN_1:
5086 switch (mode & (_O_RDONLY | _O_TEXT | _O_BINARY | _O_WRONLY)) {
5087 case _O_WRONLY | _O_TEXT:
5088 /* Case for writing to child Stdin in text mode. */
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005089 fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005090 f1 = _fdopen(fd1, "w");
Fredrik Lundh56055a42000-07-23 19:47:12 +00005091 f = PyFile_FromFile(f1, cmdstring, "w", _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005092 PyFile_SetBufSize(f, 0);
5093 /* We don't care about these pipes anymore, so close them. */
5094 CloseHandle(hChildStdoutRdDup);
5095 CloseHandle(hChildStderrRdDup);
5096 break;
5097
5098 case _O_RDONLY | _O_TEXT:
5099 /* Case for reading from child Stdout in text mode. */
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005100 fd1 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005101 f1 = _fdopen(fd1, "r");
Fredrik Lundh56055a42000-07-23 19:47:12 +00005102 f = PyFile_FromFile(f1, cmdstring, "r", _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005103 PyFile_SetBufSize(f, 0);
5104 /* We don't care about these pipes anymore, so close them. */
5105 CloseHandle(hChildStdinWrDup);
5106 CloseHandle(hChildStderrRdDup);
5107 break;
5108
5109 case _O_RDONLY | _O_BINARY:
5110 /* Case for readinig from child Stdout in binary mode. */
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005111 fd1 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005112 f1 = _fdopen(fd1, "rb");
Fredrik Lundh56055a42000-07-23 19:47:12 +00005113 f = PyFile_FromFile(f1, cmdstring, "rb", _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005114 PyFile_SetBufSize(f, 0);
5115 /* We don't care about these pipes anymore, so close them. */
5116 CloseHandle(hChildStdinWrDup);
5117 CloseHandle(hChildStderrRdDup);
5118 break;
5119
5120 case _O_WRONLY | _O_BINARY:
5121 /* Case for writing to child Stdin in binary mode. */
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005122 fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005123 f1 = _fdopen(fd1, "wb");
Fredrik Lundh56055a42000-07-23 19:47:12 +00005124 f = PyFile_FromFile(f1, cmdstring, "wb", _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005125 PyFile_SetBufSize(f, 0);
5126 /* We don't care about these pipes anymore, so close them. */
5127 CloseHandle(hChildStdoutRdDup);
5128 CloseHandle(hChildStderrRdDup);
5129 break;
5130 }
Mark Hammondb37a3732000-08-14 04:47:33 +00005131 file_count = 1;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005132 break;
Tim Peters5aa91602002-01-30 05:46:57 +00005133
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005134 case POPEN_2:
5135 case POPEN_4:
5136 {
5137 char *m1, *m2;
5138 PyObject *p1, *p2;
Tim Peters5aa91602002-01-30 05:46:57 +00005139
Tim Peters7dca21e2002-08-19 00:42:29 +00005140 if (mode & _O_TEXT) {
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005141 m1 = "r";
5142 m2 = "w";
5143 } else {
5144 m1 = "rb";
5145 m2 = "wb";
5146 }
5147
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005148 fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005149 f1 = _fdopen(fd1, m2);
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005150 fd2 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005151 f2 = _fdopen(fd2, m1);
Fredrik Lundh56055a42000-07-23 19:47:12 +00005152 p1 = PyFile_FromFile(f1, cmdstring, m2, _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005153 PyFile_SetBufSize(p1, 0);
Mark Hammondb37a3732000-08-14 04:47:33 +00005154 p2 = PyFile_FromFile(f2, cmdstring, m1, _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005155 PyFile_SetBufSize(p2, 0);
5156
5157 if (n != 4)
5158 CloseHandle(hChildStderrRdDup);
5159
Raymond Hettinger8ae46892003-10-12 19:09:37 +00005160 f = PyTuple_Pack(2,p1,p2);
Mark Hammond64aae662001-01-31 05:38:47 +00005161 Py_XDECREF(p1);
5162 Py_XDECREF(p2);
Mark Hammondb37a3732000-08-14 04:47:33 +00005163 file_count = 2;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005164 break;
5165 }
Tim Peters5aa91602002-01-30 05:46:57 +00005166
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005167 case POPEN_3:
5168 {
5169 char *m1, *m2;
5170 PyObject *p1, *p2, *p3;
Tim Peters5aa91602002-01-30 05:46:57 +00005171
Tim Peters7dca21e2002-08-19 00:42:29 +00005172 if (mode & _O_TEXT) {
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005173 m1 = "r";
5174 m2 = "w";
5175 } else {
5176 m1 = "rb";
5177 m2 = "wb";
5178 }
5179
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005180 fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005181 f1 = _fdopen(fd1, m2);
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005182 fd2 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005183 f2 = _fdopen(fd2, m1);
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005184 fd3 = _open_osfhandle((Py_intptr_t)hChildStderrRdDup, mode);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005185 f3 = _fdopen(fd3, m1);
Fredrik Lundh56055a42000-07-23 19:47:12 +00005186 p1 = PyFile_FromFile(f1, cmdstring, m2, _PyPclose);
Mark Hammondb37a3732000-08-14 04:47:33 +00005187 p2 = PyFile_FromFile(f2, cmdstring, m1, _PyPclose);
5188 p3 = PyFile_FromFile(f3, cmdstring, m1, _PyPclose);
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005189 PyFile_SetBufSize(p1, 0);
5190 PyFile_SetBufSize(p2, 0);
5191 PyFile_SetBufSize(p3, 0);
Raymond Hettinger8ae46892003-10-12 19:09:37 +00005192 f = PyTuple_Pack(3,p1,p2,p3);
Mark Hammond64aae662001-01-31 05:38:47 +00005193 Py_XDECREF(p1);
5194 Py_XDECREF(p2);
5195 Py_XDECREF(p3);
Mark Hammondb37a3732000-08-14 04:47:33 +00005196 file_count = 3;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005197 break;
5198 }
5199 }
5200
5201 if (n == POPEN_4) {
5202 if (!_PyPopenCreateProcess(cmdstring,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005203 hChildStdinRd,
5204 hChildStdoutWr,
Mark Hammondb37a3732000-08-14 04:47:33 +00005205 hChildStdoutWr,
5206 &hProcess))
Mark Hammond08501372001-01-31 07:30:29 +00005207 return NULL;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005208 }
5209 else {
5210 if (!_PyPopenCreateProcess(cmdstring,
Fredrik Lundh9ac81f62000-07-09 23:35:24 +00005211 hChildStdinRd,
5212 hChildStdoutWr,
Mark Hammondb37a3732000-08-14 04:47:33 +00005213 hChildStderrWr,
5214 &hProcess))
Mark Hammond08501372001-01-31 07:30:29 +00005215 return NULL;
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005216 }
5217
Mark Hammondb37a3732000-08-14 04:47:33 +00005218 /*
5219 * Insert the files we've created into the process dictionary
5220 * all referencing the list with the process handle and the
5221 * initial number of files (see description below in _PyPclose).
5222 * Since if _PyPclose later tried to wait on a process when all
5223 * handles weren't closed, it could create a deadlock with the
5224 * child, we spend some energy here to try to ensure that we
5225 * either insert all file handles into the dictionary or none
5226 * at all. It's a little clumsy with the various popen modes
5227 * and variable number of files involved.
5228 */
5229 if (!_PyPopenProcs) {
5230 _PyPopenProcs = PyDict_New();
5231 }
5232
5233 if (_PyPopenProcs) {
5234 PyObject *procObj, *hProcessObj, *intObj, *fileObj[3];
5235 int ins_rc[3];
5236
5237 fileObj[0] = fileObj[1] = fileObj[2] = NULL;
5238 ins_rc[0] = ins_rc[1] = ins_rc[2] = 0;
5239
5240 procObj = PyList_New(2);
5241 hProcessObj = PyLong_FromVoidPtr(hProcess);
5242 intObj = PyInt_FromLong(file_count);
5243
5244 if (procObj && hProcessObj && intObj) {
5245 PyList_SetItem(procObj,0,hProcessObj);
5246 PyList_SetItem(procObj,1,intObj);
5247
5248 fileObj[0] = PyLong_FromVoidPtr(f1);
5249 if (fileObj[0]) {
5250 ins_rc[0] = PyDict_SetItem(_PyPopenProcs,
5251 fileObj[0],
5252 procObj);
5253 }
5254 if (file_count >= 2) {
5255 fileObj[1] = PyLong_FromVoidPtr(f2);
5256 if (fileObj[1]) {
5257 ins_rc[1] = PyDict_SetItem(_PyPopenProcs,
5258 fileObj[1],
5259 procObj);
5260 }
5261 }
5262 if (file_count >= 3) {
5263 fileObj[2] = PyLong_FromVoidPtr(f3);
5264 if (fileObj[2]) {
5265 ins_rc[2] = PyDict_SetItem(_PyPopenProcs,
5266 fileObj[2],
5267 procObj);
5268 }
5269 }
5270
5271 if (ins_rc[0] < 0 || !fileObj[0] ||
5272 ins_rc[1] < 0 || (file_count > 1 && !fileObj[1]) ||
5273 ins_rc[2] < 0 || (file_count > 2 && !fileObj[2])) {
5274 /* Something failed - remove any dictionary
5275 * entries that did make it.
5276 */
5277 if (!ins_rc[0] && fileObj[0]) {
5278 PyDict_DelItem(_PyPopenProcs,
5279 fileObj[0]);
5280 }
5281 if (!ins_rc[1] && fileObj[1]) {
5282 PyDict_DelItem(_PyPopenProcs,
5283 fileObj[1]);
5284 }
5285 if (!ins_rc[2] && fileObj[2]) {
5286 PyDict_DelItem(_PyPopenProcs,
5287 fileObj[2]);
5288 }
5289 }
5290 }
Tim Peters5aa91602002-01-30 05:46:57 +00005291
Mark Hammondb37a3732000-08-14 04:47:33 +00005292 /*
5293 * Clean up our localized references for the dictionary keys
5294 * and value since PyDict_SetItem will Py_INCREF any copies
5295 * that got placed in the dictionary.
5296 */
5297 Py_XDECREF(procObj);
5298 Py_XDECREF(fileObj[0]);
5299 Py_XDECREF(fileObj[1]);
5300 Py_XDECREF(fileObj[2]);
5301 }
5302
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005303 /* Child is launched. Close the parents copy of those pipe
5304 * handles that only the child should have open. You need to
5305 * make sure that no handles to the write end of the output pipe
5306 * are maintained in this process or else the pipe will not close
5307 * when the child process exits and the ReadFile will hang. */
5308
5309 if (!CloseHandle(hChildStdinRd))
5310 return win32_error("CloseHandle", NULL);
Tim Peters5aa91602002-01-30 05:46:57 +00005311
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005312 if (!CloseHandle(hChildStdoutWr))
5313 return win32_error("CloseHandle", NULL);
Tim Peters5aa91602002-01-30 05:46:57 +00005314
Fredrik Lundhffb9c772000-07-09 14:49:51 +00005315 if ((n != 4) && (!CloseHandle(hChildStderrWr)))
5316 return win32_error("CloseHandle", NULL);
5317
5318 return f;
5319}
Fredrik Lundh56055a42000-07-23 19:47:12 +00005320
5321/*
5322 * Wrapper for fclose() to use for popen* files, so we can retrieve the
5323 * exit code for the child process and return as a result of the close.
Mark Hammondb37a3732000-08-14 04:47:33 +00005324 *
5325 * This function uses the _PyPopenProcs dictionary in order to map the
5326 * input file pointer to information about the process that was
5327 * originally created by the popen* call that created the file pointer.
5328 * The dictionary uses the file pointer as a key (with one entry
5329 * inserted for each file returned by the original popen* call) and a
5330 * single list object as the value for all files from a single call.
5331 * The list object contains the Win32 process handle at [0], and a file
5332 * count at [1], which is initialized to the total number of file
5333 * handles using that list.
5334 *
5335 * This function closes whichever handle it is passed, and decrements
5336 * the file count in the dictionary for the process handle pointed to
5337 * by this file. On the last close (when the file count reaches zero),
5338 * this function will wait for the child process and then return its
5339 * exit code as the result of the close() operation. This permits the
5340 * files to be closed in any order - it is always the close() of the
5341 * final handle that will return the exit code.
Mark Hammond8d98d2c2003-04-19 15:41:53 +00005342 *
5343 * NOTE: This function is currently called with the GIL released.
5344 * hence we use the GILState API to manage our state.
Fredrik Lundh56055a42000-07-23 19:47:12 +00005345 */
Tim Peters736aa322000-09-01 06:51:24 +00005346
Fredrik Lundh56055a42000-07-23 19:47:12 +00005347static int _PyPclose(FILE *file)
5348{
Fredrik Lundh20318932000-07-26 17:29:12 +00005349 int result;
Fredrik Lundh56055a42000-07-23 19:47:12 +00005350 DWORD exit_code;
5351 HANDLE hProcess;
Mark Hammondb37a3732000-08-14 04:47:33 +00005352 PyObject *procObj, *hProcessObj, *intObj, *fileObj;
5353 long file_count;
Tim Peters736aa322000-09-01 06:51:24 +00005354#ifdef WITH_THREAD
Mark Hammond8d98d2c2003-04-19 15:41:53 +00005355 PyGILState_STATE state;
Tim Peters736aa322000-09-01 06:51:24 +00005356#endif
5357
Fredrik Lundh20318932000-07-26 17:29:12 +00005358 /* Close the file handle first, to ensure it can't block the
Mark Hammondb37a3732000-08-14 04:47:33 +00005359 * child from exiting if it's the last handle.
Fredrik Lundh20318932000-07-26 17:29:12 +00005360 */
5361 result = fclose(file);
Tim Peters736aa322000-09-01 06:51:24 +00005362#ifdef WITH_THREAD
Mark Hammond8d98d2c2003-04-19 15:41:53 +00005363 state = PyGILState_Ensure();
Tim Peters736aa322000-09-01 06:51:24 +00005364#endif
Fredrik Lundh56055a42000-07-23 19:47:12 +00005365 if (_PyPopenProcs) {
Mark Hammondb37a3732000-08-14 04:47:33 +00005366 if ((fileObj = PyLong_FromVoidPtr(file)) != NULL &&
5367 (procObj = PyDict_GetItem(_PyPopenProcs,
5368 fileObj)) != NULL &&
5369 (hProcessObj = PyList_GetItem(procObj,0)) != NULL &&
5370 (intObj = PyList_GetItem(procObj,1)) != NULL) {
5371
5372 hProcess = PyLong_AsVoidPtr(hProcessObj);
5373 file_count = PyInt_AsLong(intObj);
5374
5375 if (file_count > 1) {
5376 /* Still other files referencing process */
5377 file_count--;
5378 PyList_SetItem(procObj,1,
5379 PyInt_FromLong(file_count));
5380 } else {
5381 /* Last file for this process */
Fredrik Lundh20318932000-07-26 17:29:12 +00005382 if (result != EOF &&
5383 WaitForSingleObject(hProcess, INFINITE) != WAIT_FAILED &&
5384 GetExitCodeProcess(hProcess, &exit_code)) {
Fredrik Lundh56055a42000-07-23 19:47:12 +00005385 /* Possible truncation here in 16-bit environments, but
5386 * real exit codes are just the lower byte in any event.
5387 */
5388 result = exit_code;
Fredrik Lundh56055a42000-07-23 19:47:12 +00005389 } else {
Fredrik Lundh20318932000-07-26 17:29:12 +00005390 /* Indicate failure - this will cause the file object
5391 * to raise an I/O error and translate the last Win32
5392 * error code from errno. We do have a problem with
5393 * last errors that overlap the normal errno table,
5394 * but that's a consistent problem with the file object.
Fredrik Lundh56055a42000-07-23 19:47:12 +00005395 */
Fredrik Lundh20318932000-07-26 17:29:12 +00005396 if (result != EOF) {
5397 /* If the error wasn't from the fclose(), then
5398 * set errno for the file object error handling.
5399 */
5400 errno = GetLastError();
5401 }
5402 result = -1;
Fredrik Lundh56055a42000-07-23 19:47:12 +00005403 }
5404
5405 /* Free up the native handle at this point */
5406 CloseHandle(hProcess);
Mark Hammondb37a3732000-08-14 04:47:33 +00005407 }
Fredrik Lundh56055a42000-07-23 19:47:12 +00005408
Mark Hammondb37a3732000-08-14 04:47:33 +00005409 /* Remove this file pointer from dictionary */
5410 PyDict_DelItem(_PyPopenProcs, fileObj);
5411
5412 if (PyDict_Size(_PyPopenProcs) == 0) {
5413 Py_DECREF(_PyPopenProcs);
5414 _PyPopenProcs = NULL;
5415 }
5416
5417 } /* if object retrieval ok */
5418
5419 Py_XDECREF(fileObj);
Fredrik Lundh56055a42000-07-23 19:47:12 +00005420 } /* if _PyPopenProcs */
5421
Tim Peters736aa322000-09-01 06:51:24 +00005422#ifdef WITH_THREAD
Mark Hammond8d98d2c2003-04-19 15:41:53 +00005423 PyGILState_Release(state);
Tim Peters736aa322000-09-01 06:51:24 +00005424#endif
Fredrik Lundh56055a42000-07-23 19:47:12 +00005425 return result;
5426}
Tim Peters9acdd3a2000-09-01 19:26:36 +00005427
5428#else /* which OS? */
Barry Warsaw53699e91996-12-10 23:23:01 +00005429static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005430posix_popen(PyObject *self, PyObject *args)
Guido van Rossum3b066191991-06-04 19:40:25 +00005431{
Guido van Rossuma6a1e531995-01-10 15:36:38 +00005432 char *name;
5433 char *mode = "r";
5434 int bufsize = -1;
Guido van Rossum3b066191991-06-04 19:40:25 +00005435 FILE *fp;
Barry Warsaw53699e91996-12-10 23:23:01 +00005436 PyObject *f;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00005437 if (!PyArg_ParseTuple(args, "s|si:popen", &name, &mode, &bufsize))
Guido van Rossum3b066191991-06-04 19:40:25 +00005438 return NULL;
Martin v. Löwis9ad853b2003-10-31 10:01:53 +00005439 /* Strip mode of binary or text modifiers */
5440 if (strcmp(mode, "rb") == 0 || strcmp(mode, "rt") == 0)
5441 mode = "r";
5442 else if (strcmp(mode, "wb") == 0 || strcmp(mode, "wt") == 0)
5443 mode = "w";
Barry Warsaw53699e91996-12-10 23:23:01 +00005444 Py_BEGIN_ALLOW_THREADS
Guido van Rossumef0a00e1992-01-27 16:51:30 +00005445 fp = popen(name, mode);
Barry Warsaw53699e91996-12-10 23:23:01 +00005446 Py_END_ALLOW_THREADS
Guido van Rossum3b066191991-06-04 19:40:25 +00005447 if (fp == NULL)
5448 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00005449 f = PyFile_FromFile(fp, name, mode, pclose);
Guido van Rossuma6a1e531995-01-10 15:36:38 +00005450 if (f != NULL)
Barry Warsaw53699e91996-12-10 23:23:01 +00005451 PyFile_SetBufSize(f, bufsize);
Guido van Rossuma6a1e531995-01-10 15:36:38 +00005452 return f;
Guido van Rossum3b066191991-06-04 19:40:25 +00005453}
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00005454
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00005455#endif /* PYOS_??? */
Guido van Rossuma4916fa1996-05-23 22:58:55 +00005456#endif /* HAVE_POPEN */
Guido van Rossum3b066191991-06-04 19:40:25 +00005457
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005458
Guido van Rossumb6775db1994-08-01 11:34:53 +00005459#ifdef HAVE_SETUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005460PyDoc_STRVAR(posix_setuid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005461"setuid(uid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005462Set the current process's user id.");
5463
Barry Warsaw53699e91996-12-10 23:23:01 +00005464static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005465posix_setuid(PyObject *self, PyObject *args)
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005466{
5467 int uid;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00005468 if (!PyArg_ParseTuple(args, "i:setuid", &uid))
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005469 return NULL;
5470 if (setuid(uid) < 0)
5471 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00005472 Py_INCREF(Py_None);
5473 return Py_None;
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005474}
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00005475#endif /* HAVE_SETUID */
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005476
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005477
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005478#ifdef HAVE_SETEUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005479PyDoc_STRVAR(posix_seteuid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005480"seteuid(uid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005481Set the current process's effective user id.");
5482
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005483static PyObject *
5484posix_seteuid (PyObject *self, PyObject *args)
5485{
5486 int euid;
5487 if (!PyArg_ParseTuple(args, "i", &euid)) {
5488 return NULL;
5489 } else if (seteuid(euid) < 0) {
5490 return posix_error();
5491 } else {
5492 Py_INCREF(Py_None);
5493 return Py_None;
5494 }
5495}
5496#endif /* HAVE_SETEUID */
5497
5498#ifdef HAVE_SETEGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005499PyDoc_STRVAR(posix_setegid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005500"setegid(gid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005501Set the current process's effective group id.");
5502
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005503static PyObject *
5504posix_setegid (PyObject *self, PyObject *args)
5505{
5506 int egid;
5507 if (!PyArg_ParseTuple(args, "i", &egid)) {
5508 return NULL;
5509 } else if (setegid(egid) < 0) {
5510 return posix_error();
5511 } else {
5512 Py_INCREF(Py_None);
5513 return Py_None;
5514 }
5515}
5516#endif /* HAVE_SETEGID */
5517
5518#ifdef HAVE_SETREUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005519PyDoc_STRVAR(posix_setreuid__doc__,
Neal Norwitz94f1d712004-02-16 01:26:34 +00005520"setreuid(ruid, euid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005521Set the current process's real and effective user ids.");
5522
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005523static PyObject *
5524posix_setreuid (PyObject *self, PyObject *args)
5525{
5526 int ruid, euid;
5527 if (!PyArg_ParseTuple(args, "ii", &ruid, &euid)) {
5528 return NULL;
5529 } else if (setreuid(ruid, euid) < 0) {
5530 return posix_error();
5531 } else {
5532 Py_INCREF(Py_None);
5533 return Py_None;
5534 }
5535}
5536#endif /* HAVE_SETREUID */
5537
5538#ifdef HAVE_SETREGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005539PyDoc_STRVAR(posix_setregid__doc__,
Neal Norwitz94f1d712004-02-16 01:26:34 +00005540"setregid(rgid, egid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005541Set the current process's real and effective group ids.");
5542
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005543static PyObject *
5544posix_setregid (PyObject *self, PyObject *args)
5545{
5546 int rgid, egid;
5547 if (!PyArg_ParseTuple(args, "ii", &rgid, &egid)) {
5548 return NULL;
5549 } else if (setregid(rgid, egid) < 0) {
5550 return posix_error();
5551 } else {
5552 Py_INCREF(Py_None);
5553 return Py_None;
5554 }
5555}
5556#endif /* HAVE_SETREGID */
5557
Guido van Rossumb6775db1994-08-01 11:34:53 +00005558#ifdef HAVE_SETGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005559PyDoc_STRVAR(posix_setgid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005560"setgid(gid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005561Set the current process's group id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005562
Barry Warsaw53699e91996-12-10 23:23:01 +00005563static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005564posix_setgid(PyObject *self, PyObject *args)
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005565{
5566 int gid;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00005567 if (!PyArg_ParseTuple(args, "i:setgid", &gid))
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005568 return NULL;
5569 if (setgid(gid) < 0)
5570 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00005571 Py_INCREF(Py_None);
5572 return Py_None;
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005573}
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00005574#endif /* HAVE_SETGID */
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005575
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005576#ifdef HAVE_SETGROUPS
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005577PyDoc_STRVAR(posix_setgroups__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005578"setgroups(list)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005579Set the groups of the current process to list.");
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005580
5581static PyObject *
Georg Brandl96a8c392006-05-29 21:04:52 +00005582posix_setgroups(PyObject *self, PyObject *groups)
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005583{
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005584 int i, len;
5585 gid_t grouplist[MAX_GROUPS];
Tim Peters5aa91602002-01-30 05:46:57 +00005586
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005587 if (!PySequence_Check(groups)) {
5588 PyErr_SetString(PyExc_TypeError, "setgroups argument must be a sequence");
5589 return NULL;
5590 }
5591 len = PySequence_Size(groups);
5592 if (len > MAX_GROUPS) {
5593 PyErr_SetString(PyExc_ValueError, "too many groups");
5594 return NULL;
5595 }
5596 for(i = 0; i < len; i++) {
5597 PyObject *elem;
5598 elem = PySequence_GetItem(groups, i);
5599 if (!elem)
5600 return NULL;
5601 if (!PyInt_Check(elem)) {
Georg Brandla13c2442005-11-22 19:30:31 +00005602 if (!PyLong_Check(elem)) {
5603 PyErr_SetString(PyExc_TypeError,
5604 "groups must be integers");
5605 Py_DECREF(elem);
5606 return NULL;
5607 } else {
5608 unsigned long x = PyLong_AsUnsignedLong(elem);
5609 if (PyErr_Occurred()) {
5610 PyErr_SetString(PyExc_TypeError,
5611 "group id too big");
5612 Py_DECREF(elem);
5613 return NULL;
5614 }
5615 grouplist[i] = x;
5616 /* read back the value to see if it fitted in gid_t */
5617 if (grouplist[i] != x) {
5618 PyErr_SetString(PyExc_TypeError,
5619 "group id too big");
5620 Py_DECREF(elem);
5621 return NULL;
5622 }
5623 }
5624 } else {
5625 long x = PyInt_AsLong(elem);
5626 grouplist[i] = x;
5627 if (grouplist[i] != x) {
5628 PyErr_SetString(PyExc_TypeError,
5629 "group id too big");
5630 Py_DECREF(elem);
5631 return NULL;
5632 }
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005633 }
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00005634 Py_DECREF(elem);
5635 }
5636
5637 if (setgroups(len, grouplist) < 0)
5638 return posix_error();
5639 Py_INCREF(Py_None);
5640 return Py_None;
5641}
5642#endif /* HAVE_SETGROUPS */
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005643
Neal Norwitz6c2f9132006-03-20 07:25:26 +00005644#if defined(HAVE_WAIT3) || defined(HAVE_WAIT4)
Neal Norwitz05a45592006-03-20 06:30:08 +00005645static PyObject *
5646wait_helper(int pid, int status, struct rusage *ru)
5647{
5648 PyObject *result;
5649 static PyObject *struct_rusage;
5650
5651 if (pid == -1)
5652 return posix_error();
5653
5654 if (struct_rusage == NULL) {
Christian Heimes000a0742008-01-03 22:16:32 +00005655 PyObject *m = PyImport_ImportModuleNoBlock("resource");
Neal Norwitz05a45592006-03-20 06:30:08 +00005656 if (m == NULL)
5657 return NULL;
5658 struct_rusage = PyObject_GetAttrString(m, "struct_rusage");
5659 Py_DECREF(m);
5660 if (struct_rusage == NULL)
5661 return NULL;
5662 }
5663
5664 /* XXX(nnorwitz): Copied (w/mods) from resource.c, there should be only one. */
5665 result = PyStructSequence_New((PyTypeObject*) struct_rusage);
5666 if (!result)
5667 return NULL;
5668
5669#ifndef doubletime
5670#define doubletime(TV) ((double)(TV).tv_sec + (TV).tv_usec * 0.000001)
5671#endif
5672
5673 PyStructSequence_SET_ITEM(result, 0,
5674 PyFloat_FromDouble(doubletime(ru->ru_utime)));
5675 PyStructSequence_SET_ITEM(result, 1,
5676 PyFloat_FromDouble(doubletime(ru->ru_stime)));
5677#define SET_INT(result, index, value)\
5678 PyStructSequence_SET_ITEM(result, index, PyInt_FromLong(value))
5679 SET_INT(result, 2, ru->ru_maxrss);
5680 SET_INT(result, 3, ru->ru_ixrss);
5681 SET_INT(result, 4, ru->ru_idrss);
5682 SET_INT(result, 5, ru->ru_isrss);
5683 SET_INT(result, 6, ru->ru_minflt);
5684 SET_INT(result, 7, ru->ru_majflt);
5685 SET_INT(result, 8, ru->ru_nswap);
5686 SET_INT(result, 9, ru->ru_inblock);
5687 SET_INT(result, 10, ru->ru_oublock);
5688 SET_INT(result, 11, ru->ru_msgsnd);
5689 SET_INT(result, 12, ru->ru_msgrcv);
5690 SET_INT(result, 13, ru->ru_nsignals);
5691 SET_INT(result, 14, ru->ru_nvcsw);
5692 SET_INT(result, 15, ru->ru_nivcsw);
5693#undef SET_INT
5694
5695 if (PyErr_Occurred()) {
5696 Py_DECREF(result);
5697 return NULL;
5698 }
5699
Neal Norwitz9b00a562006-03-20 08:47:12 +00005700 return Py_BuildValue("iiN", pid, status, result);
Neal Norwitz05a45592006-03-20 06:30:08 +00005701}
Neal Norwitz6c2f9132006-03-20 07:25:26 +00005702#endif /* HAVE_WAIT3 || HAVE_WAIT4 */
Neal Norwitz05a45592006-03-20 06:30:08 +00005703
5704#ifdef HAVE_WAIT3
5705PyDoc_STRVAR(posix_wait3__doc__,
5706"wait3(options) -> (pid, status, rusage)\n\n\
5707Wait for completion of a child process.");
5708
5709static PyObject *
5710posix_wait3(PyObject *self, PyObject *args)
5711{
5712 int pid, options;
5713 struct rusage ru;
Neal Norwitzd5a37542006-03-20 06:48:34 +00005714 WAIT_TYPE status;
5715 WAIT_STATUS_INT(status) = 0;
Neal Norwitz05a45592006-03-20 06:30:08 +00005716
5717 if (!PyArg_ParseTuple(args, "i:wait3", &options))
5718 return NULL;
5719
5720 Py_BEGIN_ALLOW_THREADS
5721 pid = wait3(&status, options, &ru);
5722 Py_END_ALLOW_THREADS
5723
Neal Norwitzd5a37542006-03-20 06:48:34 +00005724 return wait_helper(pid, WAIT_STATUS_INT(status), &ru);
Neal Norwitz05a45592006-03-20 06:30:08 +00005725}
5726#endif /* HAVE_WAIT3 */
5727
5728#ifdef HAVE_WAIT4
5729PyDoc_STRVAR(posix_wait4__doc__,
5730"wait4(pid, options) -> (pid, status, rusage)\n\n\
5731Wait for completion of a given child process.");
5732
5733static PyObject *
5734posix_wait4(PyObject *self, PyObject *args)
5735{
5736 int pid, options;
5737 struct rusage ru;
Neal Norwitzd5a37542006-03-20 06:48:34 +00005738 WAIT_TYPE status;
5739 WAIT_STATUS_INT(status) = 0;
Neal Norwitz05a45592006-03-20 06:30:08 +00005740
5741 if (!PyArg_ParseTuple(args, "ii:wait4", &pid, &options))
5742 return NULL;
5743
5744 Py_BEGIN_ALLOW_THREADS
5745 pid = wait4(pid, &status, options, &ru);
5746 Py_END_ALLOW_THREADS
5747
Neal Norwitzd5a37542006-03-20 06:48:34 +00005748 return wait_helper(pid, WAIT_STATUS_INT(status), &ru);
Neal Norwitz05a45592006-03-20 06:30:08 +00005749}
5750#endif /* HAVE_WAIT4 */
5751
Guido van Rossumb6775db1994-08-01 11:34:53 +00005752#ifdef HAVE_WAITPID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005753PyDoc_STRVAR(posix_waitpid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005754"waitpid(pid, options) -> (pid, status)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005755Wait for completion of a given child process.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005756
Barry Warsaw53699e91996-12-10 23:23:01 +00005757static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005758posix_waitpid(PyObject *self, PyObject *args)
Guido van Rossum85e3b011991-06-03 12:42:10 +00005759{
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00005760 int pid, options;
Neal Norwitzd5a37542006-03-20 06:48:34 +00005761 WAIT_TYPE status;
5762 WAIT_STATUS_INT(status) = 0;
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00005763
Fred Drake5ab8eaf1999-12-09 21:13:07 +00005764 if (!PyArg_ParseTuple(args, "ii:waitpid", &pid, &options))
Guido van Rossum21803b81992-08-09 12:55:27 +00005765 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00005766 Py_BEGIN_ALLOW_THREADS
Guido van Rossume6a3aa61999-02-01 16:15:30 +00005767 pid = waitpid(pid, &status, options);
Barry Warsaw53699e91996-12-10 23:23:01 +00005768 Py_END_ALLOW_THREADS
Guido van Rossum85e3b011991-06-03 12:42:10 +00005769 if (pid == -1)
5770 return posix_error();
Neal Norwitzd5a37542006-03-20 06:48:34 +00005771
5772 return Py_BuildValue("ii", pid, WAIT_STATUS_INT(status));
Guido van Rossum21803b81992-08-09 12:55:27 +00005773}
5774
Tim Petersab034fa2002-02-01 11:27:43 +00005775#elif defined(HAVE_CWAIT)
5776
5777/* MS C has a variant of waitpid() that's usable for most purposes. */
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005778PyDoc_STRVAR(posix_waitpid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005779"waitpid(pid, options) -> (pid, status << 8)\n\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005780"Wait for completion of a given process. options is ignored on Windows.");
Tim Petersab034fa2002-02-01 11:27:43 +00005781
5782static PyObject *
5783posix_waitpid(PyObject *self, PyObject *args)
5784{
Martin v. Löwisa43190b2006-05-22 09:15:18 +00005785 Py_intptr_t pid;
Martin v. Löwis18e16552006-02-15 17:27:45 +00005786 int status, options;
Tim Petersab034fa2002-02-01 11:27:43 +00005787
5788 if (!PyArg_ParseTuple(args, "ii:waitpid", &pid, &options))
5789 return NULL;
5790 Py_BEGIN_ALLOW_THREADS
5791 pid = _cwait(&status, pid, options);
5792 Py_END_ALLOW_THREADS
5793 if (pid == -1)
5794 return posix_error();
Neal Norwitzd5a37542006-03-20 06:48:34 +00005795
5796 /* shift the status left a byte so this is more like the POSIX waitpid */
5797 return Py_BuildValue("ii", pid, status << 8);
Tim Petersab034fa2002-02-01 11:27:43 +00005798}
5799#endif /* HAVE_WAITPID || HAVE_CWAIT */
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005800
Guido van Rossumad0ee831995-03-01 10:34:45 +00005801#ifdef HAVE_WAIT
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005802PyDoc_STRVAR(posix_wait__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005803"wait() -> (pid, status)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005804Wait for completion of a child process.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005805
Barry Warsaw53699e91996-12-10 23:23:01 +00005806static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00005807posix_wait(PyObject *self, PyObject *noargs)
Guido van Rossum21803b81992-08-09 12:55:27 +00005808{
Fred Drake5ab8eaf1999-12-09 21:13:07 +00005809 int pid;
Neal Norwitzd5a37542006-03-20 06:48:34 +00005810 WAIT_TYPE status;
5811 WAIT_STATUS_INT(status) = 0;
Neal Norwitze241ce82003-02-17 18:17:05 +00005812
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00005813 Py_BEGIN_ALLOW_THREADS
5814 pid = wait(&status);
Barry Warsaw53699e91996-12-10 23:23:01 +00005815 Py_END_ALLOW_THREADS
Guido van Rossum21803b81992-08-09 12:55:27 +00005816 if (pid == -1)
5817 return posix_error();
Neal Norwitzd5a37542006-03-20 06:48:34 +00005818
5819 return Py_BuildValue("ii", pid, WAIT_STATUS_INT(status));
Guido van Rossum85e3b011991-06-03 12:42:10 +00005820}
Guido van Rossumad0ee831995-03-01 10:34:45 +00005821#endif
Guido van Rossum85e3b011991-06-03 12:42:10 +00005822
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005823
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005824PyDoc_STRVAR(posix_lstat__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005825"lstat(path) -> stat result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005826Like stat(path), but do not follow symbolic links.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005827
Barry Warsaw53699e91996-12-10 23:23:01 +00005828static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005829posix_lstat(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00005830{
Guido van Rossumb6775db1994-08-01 11:34:53 +00005831#ifdef HAVE_LSTAT
Mark Hammondc2e85bd2002-10-03 05:10:39 +00005832 return posix_do_stat(self, args, "et:lstat", lstat, NULL, NULL);
Guido van Rossumb6775db1994-08-01 11:34:53 +00005833#else /* !HAVE_LSTAT */
Mark Hammondc2e85bd2002-10-03 05:10:39 +00005834#ifdef MS_WINDOWS
Martin v. Löwis14694662006-02-03 12:54:16 +00005835 return posix_do_stat(self, args, "et:lstat", STAT, "U:lstat", win32_wstat);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00005836#else
5837 return posix_do_stat(self, args, "et:lstat", STAT, NULL, NULL);
5838#endif
Guido van Rossumb6775db1994-08-01 11:34:53 +00005839#endif /* !HAVE_LSTAT */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00005840}
5841
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005842
Guido van Rossumb6775db1994-08-01 11:34:53 +00005843#ifdef HAVE_READLINK
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005844PyDoc_STRVAR(posix_readlink__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005845"readlink(path) -> path\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005846Return a string representing the path to which the symbolic link points.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005847
Barry Warsaw53699e91996-12-10 23:23:01 +00005848static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005849posix_readlink(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00005850{
Ronald Oussoren10168f22006-10-22 10:45:18 +00005851 PyObject* v;
Guido van Rossumb6775db1994-08-01 11:34:53 +00005852 char buf[MAXPATHLEN];
Guido van Rossumef0a00e1992-01-27 16:51:30 +00005853 char *path;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00005854 int n;
Ronald Oussoren10168f22006-10-22 10:45:18 +00005855#ifdef Py_USING_UNICODE
5856 int arg_is_unicode = 0;
5857#endif
5858
5859 if (!PyArg_ParseTuple(args, "et:readlink",
5860 Py_FileSystemDefaultEncoding, &path))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00005861 return NULL;
Ronald Oussoren10168f22006-10-22 10:45:18 +00005862#ifdef Py_USING_UNICODE
5863 v = PySequence_GetItem(args, 0);
Neal Norwitz91a57212007-08-12 17:11:13 +00005864 if (v == NULL) {
5865 PyMem_Free(path);
5866 return NULL;
5867 }
Ronald Oussoren10168f22006-10-22 10:45:18 +00005868
5869 if (PyUnicode_Check(v)) {
5870 arg_is_unicode = 1;
5871 }
5872 Py_DECREF(v);
5873#endif
5874
Barry Warsaw53699e91996-12-10 23:23:01 +00005875 Py_BEGIN_ALLOW_THREADS
Guido van Rossum50e61dc1992-03-27 17:22:31 +00005876 n = readlink(path, buf, (int) sizeof buf);
Barry Warsaw53699e91996-12-10 23:23:01 +00005877 Py_END_ALLOW_THREADS
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00005878 if (n < 0)
Neal Norwitz91a57212007-08-12 17:11:13 +00005879 return posix_error_with_allocated_filename(path);
Ronald Oussoren10168f22006-10-22 10:45:18 +00005880
Neal Norwitz91a57212007-08-12 17:11:13 +00005881 PyMem_Free(path);
Ronald Oussoren10168f22006-10-22 10:45:18 +00005882 v = PyString_FromStringAndSize(buf, n);
5883#ifdef Py_USING_UNICODE
5884 if (arg_is_unicode) {
5885 PyObject *w;
5886
5887 w = PyUnicode_FromEncodedObject(v,
5888 Py_FileSystemDefaultEncoding,
5889 "strict");
5890 if (w != NULL) {
5891 Py_DECREF(v);
5892 v = w;
5893 }
5894 else {
5895 /* fall back to the original byte string, as
5896 discussed in patch #683592 */
5897 PyErr_Clear();
5898 }
5899 }
5900#endif
5901 return v;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00005902}
Guido van Rossumb6775db1994-08-01 11:34:53 +00005903#endif /* HAVE_READLINK */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00005904
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005905
Guido van Rossumb6775db1994-08-01 11:34:53 +00005906#ifdef HAVE_SYMLINK
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005907PyDoc_STRVAR(posix_symlink__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005908"symlink(src, dst)\n\n\
Brett Cannon807413d2003-06-11 00:18:09 +00005909Create a symbolic link pointing to src named dst.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005910
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00005911static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005912posix_symlink(PyObject *self, PyObject *args)
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00005913{
Martin v. Löwis4fc2bda2006-05-04 12:04:27 +00005914 return posix_2str(args, "etet:symlink", symlink);
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00005915}
5916#endif /* HAVE_SYMLINK */
5917
5918
5919#ifdef HAVE_TIMES
5920#ifndef HZ
5921#define HZ 60 /* Universal constant :-) */
5922#endif /* HZ */
Tim Peters5aa91602002-01-30 05:46:57 +00005923
Guido van Rossumd48f2521997-12-05 22:19:34 +00005924#if defined(PYCC_VACPP) && defined(PYOS_OS2)
5925static long
Thomas Woutersf3f33dc2000-07-21 06:00:07 +00005926system_uptime(void)
Guido van Rossumd48f2521997-12-05 22:19:34 +00005927{
5928 ULONG value = 0;
5929
5930 Py_BEGIN_ALLOW_THREADS
5931 DosQuerySysInfo(QSV_MS_COUNT, QSV_MS_COUNT, &value, sizeof(value));
5932 Py_END_ALLOW_THREADS
5933
5934 return value;
5935}
5936
5937static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00005938posix_times(PyObject *self, PyObject *noargs)
Guido van Rossumd48f2521997-12-05 22:19:34 +00005939{
Guido van Rossumd48f2521997-12-05 22:19:34 +00005940 /* Currently Only Uptime is Provided -- Others Later */
5941 return Py_BuildValue("ddddd",
5942 (double)0 /* t.tms_utime / HZ */,
5943 (double)0 /* t.tms_stime / HZ */,
5944 (double)0 /* t.tms_cutime / HZ */,
5945 (double)0 /* t.tms_cstime / HZ */,
5946 (double)system_uptime() / 1000);
5947}
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00005948#else /* not OS2 */
Barry Warsaw53699e91996-12-10 23:23:01 +00005949static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00005950posix_times(PyObject *self, PyObject *noargs)
Guido van Rossum22db57e1992-04-05 14:25:30 +00005951{
5952 struct tms t;
5953 clock_t c;
Guido van Rossum22db57e1992-04-05 14:25:30 +00005954 errno = 0;
5955 c = times(&t);
Guido van Rossum687dd131993-05-17 08:34:16 +00005956 if (c == (clock_t) -1)
5957 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00005958 return Py_BuildValue("ddddd",
Barry Warsaw43d68b81996-12-19 22:10:44 +00005959 (double)t.tms_utime / HZ,
5960 (double)t.tms_stime / HZ,
5961 (double)t.tms_cutime / HZ,
5962 (double)t.tms_cstime / HZ,
5963 (double)c / HZ);
Guido van Rossum22db57e1992-04-05 14:25:30 +00005964}
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00005965#endif /* not OS2 */
Guido van Rossumb6775db1994-08-01 11:34:53 +00005966#endif /* HAVE_TIMES */
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00005967
5968
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00005969#ifdef MS_WINDOWS
Guido van Rossum14ed0b21994-09-29 09:50:09 +00005970#define HAVE_TIMES /* so the method table will pick it up */
Barry Warsaw53699e91996-12-10 23:23:01 +00005971static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00005972posix_times(PyObject *self, PyObject *noargs)
Guido van Rossum14ed0b21994-09-29 09:50:09 +00005973{
5974 FILETIME create, exit, kernel, user;
5975 HANDLE hProc;
Guido van Rossum14ed0b21994-09-29 09:50:09 +00005976 hProc = GetCurrentProcess();
Guido van Rossumb8c3cbd1999-02-16 14:37:28 +00005977 GetProcessTimes(hProc, &create, &exit, &kernel, &user);
5978 /* The fields of a FILETIME structure are the hi and lo part
5979 of a 64-bit value expressed in 100 nanosecond units.
5980 1e7 is one second in such units; 1e-7 the inverse.
5981 429.4967296 is 2**32 / 1e7 or 2**32 * 1e-7.
5982 */
Barry Warsaw53699e91996-12-10 23:23:01 +00005983 return Py_BuildValue(
5984 "ddddd",
Guido van Rossumb8c3cbd1999-02-16 14:37:28 +00005985 (double)(kernel.dwHighDateTime*429.4967296 +
5986 kernel.dwLowDateTime*1e-7),
5987 (double)(user.dwHighDateTime*429.4967296 +
5988 user.dwLowDateTime*1e-7),
Barry Warsaw53699e91996-12-10 23:23:01 +00005989 (double)0,
5990 (double)0,
5991 (double)0);
Guido van Rossum14ed0b21994-09-29 09:50:09 +00005992}
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00005993#endif /* MS_WINDOWS */
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00005994
5995#ifdef HAVE_TIMES
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005996PyDoc_STRVAR(posix_times__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005997"times() -> (utime, stime, cutime, cstime, elapsed_time)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005998Return a tuple of floating point numbers indicating process times.");
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00005999#endif
Guido van Rossum22db57e1992-04-05 14:25:30 +00006000
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006001
Martin v. Löwis49ee14d2003-11-10 06:35:36 +00006002#ifdef HAVE_GETSID
6003PyDoc_STRVAR(posix_getsid__doc__,
6004"getsid(pid) -> sid\n\n\
6005Call the system call getsid().");
6006
6007static PyObject *
6008posix_getsid(PyObject *self, PyObject *args)
6009{
6010 int pid, sid;
6011 if (!PyArg_ParseTuple(args, "i:getsid", &pid))
6012 return NULL;
6013 sid = getsid(pid);
6014 if (sid < 0)
6015 return posix_error();
6016 return PyInt_FromLong((long)sid);
6017}
6018#endif /* HAVE_GETSID */
6019
6020
Guido van Rossumb6775db1994-08-01 11:34:53 +00006021#ifdef HAVE_SETSID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006022PyDoc_STRVAR(posix_setsid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006023"setsid()\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006024Call the system call setsid().");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006025
Barry Warsaw53699e91996-12-10 23:23:01 +00006026static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00006027posix_setsid(PyObject *self, PyObject *noargs)
Guido van Rossumc2670a01992-09-13 20:07:29 +00006028{
Guido van Rossum687dd131993-05-17 08:34:16 +00006029 if (setsid() < 0)
6030 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006031 Py_INCREF(Py_None);
6032 return Py_None;
Guido van Rossumc2670a01992-09-13 20:07:29 +00006033}
Guido van Rossumb6775db1994-08-01 11:34:53 +00006034#endif /* HAVE_SETSID */
Guido van Rossumc2670a01992-09-13 20:07:29 +00006035
Guido van Rossumb6775db1994-08-01 11:34:53 +00006036#ifdef HAVE_SETPGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006037PyDoc_STRVAR(posix_setpgid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006038"setpgid(pid, pgrp)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006039Call the system call setpgid().");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006040
Barry Warsaw53699e91996-12-10 23:23:01 +00006041static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006042posix_setpgid(PyObject *self, PyObject *args)
Guido van Rossumc2670a01992-09-13 20:07:29 +00006043{
6044 int pid, pgrp;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006045 if (!PyArg_ParseTuple(args, "ii:setpgid", &pid, &pgrp))
Guido van Rossumc2670a01992-09-13 20:07:29 +00006046 return NULL;
Guido van Rossum687dd131993-05-17 08:34:16 +00006047 if (setpgid(pid, pgrp) < 0)
6048 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006049 Py_INCREF(Py_None);
6050 return Py_None;
Guido van Rossumc2670a01992-09-13 20:07:29 +00006051}
Guido van Rossumb6775db1994-08-01 11:34:53 +00006052#endif /* HAVE_SETPGID */
Guido van Rossumc2670a01992-09-13 20:07:29 +00006053
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006054
Guido van Rossumb6775db1994-08-01 11:34:53 +00006055#ifdef HAVE_TCGETPGRP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006056PyDoc_STRVAR(posix_tcgetpgrp__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006057"tcgetpgrp(fd) -> pgid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006058Return the process group associated with the terminal given by a fd.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006059
Barry Warsaw53699e91996-12-10 23:23:01 +00006060static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006061posix_tcgetpgrp(PyObject *self, PyObject *args)
Guido van Rossum7066dd71992-09-17 17:54:56 +00006062{
6063 int fd, pgid;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006064 if (!PyArg_ParseTuple(args, "i:tcgetpgrp", &fd))
Guido van Rossum7066dd71992-09-17 17:54:56 +00006065 return NULL;
6066 pgid = tcgetpgrp(fd);
Guido van Rossum687dd131993-05-17 08:34:16 +00006067 if (pgid < 0)
6068 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006069 return PyInt_FromLong((long)pgid);
Guido van Rossum7066dd71992-09-17 17:54:56 +00006070}
Guido van Rossumb6775db1994-08-01 11:34:53 +00006071#endif /* HAVE_TCGETPGRP */
Guido van Rossum7066dd71992-09-17 17:54:56 +00006072
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006073
Guido van Rossumb6775db1994-08-01 11:34:53 +00006074#ifdef HAVE_TCSETPGRP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006075PyDoc_STRVAR(posix_tcsetpgrp__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006076"tcsetpgrp(fd, pgid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006077Set the process group associated with the terminal given by a fd.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006078
Barry Warsaw53699e91996-12-10 23:23:01 +00006079static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006080posix_tcsetpgrp(PyObject *self, PyObject *args)
Guido van Rossum7066dd71992-09-17 17:54:56 +00006081{
6082 int fd, pgid;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006083 if (!PyArg_ParseTuple(args, "ii:tcsetpgrp", &fd, &pgid))
Guido van Rossum7066dd71992-09-17 17:54:56 +00006084 return NULL;
Guido van Rossum687dd131993-05-17 08:34:16 +00006085 if (tcsetpgrp(fd, pgid) < 0)
6086 return posix_error();
Barry Warsaw43d68b81996-12-19 22:10:44 +00006087 Py_INCREF(Py_None);
Barry Warsaw53699e91996-12-10 23:23:01 +00006088 return Py_None;
Guido van Rossum7066dd71992-09-17 17:54:56 +00006089}
Guido van Rossumb6775db1994-08-01 11:34:53 +00006090#endif /* HAVE_TCSETPGRP */
Guido van Rossum22db57e1992-04-05 14:25:30 +00006091
Guido van Rossum687dd131993-05-17 08:34:16 +00006092/* Functions acting on file descriptors */
6093
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006094PyDoc_STRVAR(posix_open__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006095"open(filename, flag [, mode=0777]) -> fd\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006096Open a file (for low level IO).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006097
Barry Warsaw53699e91996-12-10 23:23:01 +00006098static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006099posix_open(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006100{
Mark Hammondef8b6542001-05-13 08:04:26 +00006101 char *file = NULL;
Guido van Rossum687dd131993-05-17 08:34:16 +00006102 int flag;
6103 int mode = 0777;
6104 int fd;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00006105
6106#ifdef MS_WINDOWS
6107 if (unicode_file_names()) {
6108 PyUnicodeObject *po;
6109 if (PyArg_ParseTuple(args, "Ui|i:mkdir", &po, &flag, &mode)) {
6110 Py_BEGIN_ALLOW_THREADS
6111 /* PyUnicode_AS_UNICODE OK without thread
6112 lock as it is a simple dereference. */
6113 fd = _wopen(PyUnicode_AS_UNICODE(po), flag, mode);
6114 Py_END_ALLOW_THREADS
6115 if (fd < 0)
6116 return posix_error();
6117 return PyInt_FromLong((long)fd);
6118 }
6119 /* Drop the argument parsing error as narrow strings
6120 are also valid. */
6121 PyErr_Clear();
6122 }
6123#endif
6124
Tim Peters5aa91602002-01-30 05:46:57 +00006125 if (!PyArg_ParseTuple(args, "eti|i",
Mark Hammondef8b6542001-05-13 08:04:26 +00006126 Py_FileSystemDefaultEncoding, &file,
6127 &flag, &mode))
Barry Warsaw43d68b81996-12-19 22:10:44 +00006128 return NULL;
6129
Barry Warsaw53699e91996-12-10 23:23:01 +00006130 Py_BEGIN_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006131 fd = open(file, flag, mode);
Barry Warsaw53699e91996-12-10 23:23:01 +00006132 Py_END_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006133 if (fd < 0)
Mark Hammondef8b6542001-05-13 08:04:26 +00006134 return posix_error_with_allocated_filename(file);
6135 PyMem_Free(file);
Barry Warsaw53699e91996-12-10 23:23:01 +00006136 return PyInt_FromLong((long)fd);
Guido van Rossum687dd131993-05-17 08:34:16 +00006137}
6138
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006139
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006140PyDoc_STRVAR(posix_close__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006141"close(fd)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006142Close a file descriptor (for low level IO).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006143
Barry Warsaw53699e91996-12-10 23:23:01 +00006144static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006145posix_close(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006146{
6147 int fd, res;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006148 if (!PyArg_ParseTuple(args, "i:close", &fd))
Guido van Rossum687dd131993-05-17 08:34:16 +00006149 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00006150 Py_BEGIN_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006151 res = close(fd);
Barry Warsaw53699e91996-12-10 23:23:01 +00006152 Py_END_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006153 if (res < 0)
6154 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006155 Py_INCREF(Py_None);
6156 return Py_None;
Guido van Rossum687dd131993-05-17 08:34:16 +00006157}
6158
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006159
Georg Brandl309501a2008-01-19 20:22:13 +00006160PyDoc_STRVAR(posix_closerange__doc__,
6161"closerange(fd_low, fd_high)\n\n\
6162Closes all file descriptors in [fd_low, fd_high), ignoring errors.");
6163
6164static PyObject *
6165posix_closerange(PyObject *self, PyObject *args)
6166{
6167 int fd_from, fd_to, i;
6168 if (!PyArg_ParseTuple(args, "ii:closerange", &fd_from, &fd_to))
6169 return NULL;
6170 Py_BEGIN_ALLOW_THREADS
6171 for (i = fd_from; i < fd_to; i++)
6172 close(i);
6173 Py_END_ALLOW_THREADS
6174 Py_RETURN_NONE;
6175}
6176
6177
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006178PyDoc_STRVAR(posix_dup__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006179"dup(fd) -> fd2\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006180Return a duplicate of a file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006181
Barry Warsaw53699e91996-12-10 23:23:01 +00006182static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006183posix_dup(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006184{
6185 int fd;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006186 if (!PyArg_ParseTuple(args, "i:dup", &fd))
Guido van Rossum687dd131993-05-17 08:34:16 +00006187 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00006188 Py_BEGIN_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006189 fd = dup(fd);
Barry Warsaw53699e91996-12-10 23:23:01 +00006190 Py_END_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006191 if (fd < 0)
6192 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006193 return PyInt_FromLong((long)fd);
Guido van Rossum687dd131993-05-17 08:34:16 +00006194}
6195
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006196
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006197PyDoc_STRVAR(posix_dup2__doc__,
Andrew M. Kuchling8135fd52004-01-16 13:18:42 +00006198"dup2(old_fd, new_fd)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006199Duplicate file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006200
Barry Warsaw53699e91996-12-10 23:23:01 +00006201static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006202posix_dup2(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006203{
6204 int fd, fd2, res;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006205 if (!PyArg_ParseTuple(args, "ii:dup2", &fd, &fd2))
Guido van Rossum687dd131993-05-17 08:34:16 +00006206 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00006207 Py_BEGIN_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006208 res = dup2(fd, fd2);
Barry Warsaw53699e91996-12-10 23:23:01 +00006209 Py_END_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006210 if (res < 0)
6211 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006212 Py_INCREF(Py_None);
6213 return Py_None;
Guido van Rossum687dd131993-05-17 08:34:16 +00006214}
6215
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006216
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006217PyDoc_STRVAR(posix_lseek__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006218"lseek(fd, pos, how) -> newpos\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006219Set the current position of a file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006220
Barry Warsaw53699e91996-12-10 23:23:01 +00006221static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006222posix_lseek(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006223{
6224 int fd, how;
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006225#if defined(MS_WIN64) || defined(MS_WINDOWS)
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00006226 PY_LONG_LONG pos, res;
Fred Drake699f3522000-06-29 21:12:41 +00006227#else
Guido van Rossum94f6f721999-01-06 18:42:14 +00006228 off_t pos, res;
Fred Drake699f3522000-06-29 21:12:41 +00006229#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00006230 PyObject *posobj;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006231 if (!PyArg_ParseTuple(args, "iOi:lseek", &fd, &posobj, &how))
Guido van Rossum687dd131993-05-17 08:34:16 +00006232 return NULL;
6233#ifdef SEEK_SET
6234 /* Turn 0, 1, 2 into SEEK_{SET,CUR,END} */
6235 switch (how) {
6236 case 0: how = SEEK_SET; break;
6237 case 1: how = SEEK_CUR; break;
6238 case 2: how = SEEK_END; break;
6239 }
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00006240#endif /* SEEK_END */
Guido van Rossum94f6f721999-01-06 18:42:14 +00006241
6242#if !defined(HAVE_LARGEFILE_SUPPORT)
6243 pos = PyInt_AsLong(posobj);
6244#else
6245 pos = PyLong_Check(posobj) ?
6246 PyLong_AsLongLong(posobj) : PyInt_AsLong(posobj);
6247#endif
6248 if (PyErr_Occurred())
6249 return NULL;
6250
Barry Warsaw53699e91996-12-10 23:23:01 +00006251 Py_BEGIN_ALLOW_THREADS
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006252#if defined(MS_WIN64) || defined(MS_WINDOWS)
Fred Drake699f3522000-06-29 21:12:41 +00006253 res = _lseeki64(fd, pos, how);
6254#else
Guido van Rossum687dd131993-05-17 08:34:16 +00006255 res = lseek(fd, pos, how);
Fred Drake699f3522000-06-29 21:12:41 +00006256#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00006257 Py_END_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006258 if (res < 0)
6259 return posix_error();
Guido van Rossum94f6f721999-01-06 18:42:14 +00006260
6261#if !defined(HAVE_LARGEFILE_SUPPORT)
Barry Warsaw53699e91996-12-10 23:23:01 +00006262 return PyInt_FromLong(res);
Guido van Rossum94f6f721999-01-06 18:42:14 +00006263#else
6264 return PyLong_FromLongLong(res);
6265#endif
Guido van Rossum687dd131993-05-17 08:34:16 +00006266}
6267
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006268
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006269PyDoc_STRVAR(posix_read__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006270"read(fd, buffersize) -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006271Read a file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006272
Barry Warsaw53699e91996-12-10 23:23:01 +00006273static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006274posix_read(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006275{
Guido van Rossum8bac5461996-06-11 18:38:48 +00006276 int fd, size, n;
Barry Warsaw53699e91996-12-10 23:23:01 +00006277 PyObject *buffer;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006278 if (!PyArg_ParseTuple(args, "ii:read", &fd, &size))
Guido van Rossum687dd131993-05-17 08:34:16 +00006279 return NULL;
Michael W. Hudson9867ced2005-01-31 17:01:59 +00006280 if (size < 0) {
6281 errno = EINVAL;
6282 return posix_error();
6283 }
Barry Warsaw53699e91996-12-10 23:23:01 +00006284 buffer = PyString_FromStringAndSize((char *)NULL, size);
Guido van Rossum687dd131993-05-17 08:34:16 +00006285 if (buffer == NULL)
6286 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00006287 Py_BEGIN_ALLOW_THREADS
6288 n = read(fd, PyString_AsString(buffer), size);
6289 Py_END_ALLOW_THREADS
Guido van Rossum8bac5461996-06-11 18:38:48 +00006290 if (n < 0) {
Barry Warsaw53699e91996-12-10 23:23:01 +00006291 Py_DECREF(buffer);
Guido van Rossum687dd131993-05-17 08:34:16 +00006292 return posix_error();
6293 }
Guido van Rossum8bac5461996-06-11 18:38:48 +00006294 if (n != size)
Barry Warsaw53699e91996-12-10 23:23:01 +00006295 _PyString_Resize(&buffer, n);
Guido van Rossum687dd131993-05-17 08:34:16 +00006296 return buffer;
6297}
6298
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006299
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006300PyDoc_STRVAR(posix_write__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006301"write(fd, string) -> byteswritten\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006302Write a string to a file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006303
Barry Warsaw53699e91996-12-10 23:23:01 +00006304static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006305posix_write(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006306{
Thomas Wouters68bc4f92006-03-01 01:05:10 +00006307 int fd;
6308 Py_ssize_t size;
Guido van Rossum687dd131993-05-17 08:34:16 +00006309 char *buffer;
Thomas Wouters68bc4f92006-03-01 01:05:10 +00006310
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006311 if (!PyArg_ParseTuple(args, "is#:write", &fd, &buffer, &size))
Guido van Rossum687dd131993-05-17 08:34:16 +00006312 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00006313 Py_BEGIN_ALLOW_THREADS
Thomas Wouters68bc4f92006-03-01 01:05:10 +00006314 size = write(fd, buffer, (size_t)size);
Barry Warsaw53699e91996-12-10 23:23:01 +00006315 Py_END_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006316 if (size < 0)
6317 return posix_error();
Thomas Wouters68bc4f92006-03-01 01:05:10 +00006318 return PyInt_FromSsize_t(size);
Guido van Rossum687dd131993-05-17 08:34:16 +00006319}
6320
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006321
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006322PyDoc_STRVAR(posix_fstat__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006323"fstat(fd) -> stat result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006324Like stat(), but for an open file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006325
Barry Warsaw53699e91996-12-10 23:23:01 +00006326static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006327posix_fstat(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006328{
6329 int fd;
Fred Drake699f3522000-06-29 21:12:41 +00006330 STRUCT_STAT st;
Guido van Rossum687dd131993-05-17 08:34:16 +00006331 int res;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006332 if (!PyArg_ParseTuple(args, "i:fstat", &fd))
Guido van Rossum687dd131993-05-17 08:34:16 +00006333 return NULL;
Martin v. Löwis7a924e62003-03-05 14:15:21 +00006334#ifdef __VMS
6335 /* on OpenVMS we must ensure that all bytes are written to the file */
6336 fsync(fd);
6337#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00006338 Py_BEGIN_ALLOW_THREADS
Fred Drake699f3522000-06-29 21:12:41 +00006339 res = FSTAT(fd, &st);
Barry Warsaw53699e91996-12-10 23:23:01 +00006340 Py_END_ALLOW_THREADS
Martin v. Löwis14694662006-02-03 12:54:16 +00006341 if (res != 0) {
6342#ifdef MS_WINDOWS
6343 return win32_error("fstat", NULL);
6344#else
Guido van Rossum687dd131993-05-17 08:34:16 +00006345 return posix_error();
Martin v. Löwis14694662006-02-03 12:54:16 +00006346#endif
6347 }
Tim Peters5aa91602002-01-30 05:46:57 +00006348
Martin v. Löwis14694662006-02-03 12:54:16 +00006349 return _pystat_fromstructstat(&st);
Guido van Rossum687dd131993-05-17 08:34:16 +00006350}
6351
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006352
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006353PyDoc_STRVAR(posix_fdopen__doc__,
Neal Norwitzc18b3082002-10-11 22:19:42 +00006354"fdopen(fd [, mode='r' [, bufsize]]) -> file_object\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006355Return an open file object connected to a file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006356
Barry Warsaw53699e91996-12-10 23:23:01 +00006357static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006358posix_fdopen(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006359{
Guido van Rossum687dd131993-05-17 08:34:16 +00006360 int fd;
Kristján Valur Jónsson0a440d42007-04-26 09:15:08 +00006361 char *orgmode = "r";
Guido van Rossuma6a1e531995-01-10 15:36:38 +00006362 int bufsize = -1;
Guido van Rossum687dd131993-05-17 08:34:16 +00006363 FILE *fp;
Barry Warsaw53699e91996-12-10 23:23:01 +00006364 PyObject *f;
Kristján Valur Jónsson0a440d42007-04-26 09:15:08 +00006365 char *mode;
6366 if (!PyArg_ParseTuple(args, "i|si", &fd, &orgmode, &bufsize))
Guido van Rossum687dd131993-05-17 08:34:16 +00006367 return NULL;
Barry Warsaw43d68b81996-12-19 22:10:44 +00006368
Kristján Valur Jónsson0a440d42007-04-26 09:15:08 +00006369 /* Sanitize mode. See fileobject.c */
6370 mode = PyMem_MALLOC(strlen(orgmode)+3);
6371 if (!mode) {
6372 PyErr_NoMemory();
6373 return NULL;
6374 }
6375 strcpy(mode, orgmode);
6376 if (_PyFile_SanitizeMode(mode)) {
6377 PyMem_FREE(mode);
Thomas Heller1f043e22002-11-07 16:00:59 +00006378 return NULL;
6379 }
Barry Warsaw53699e91996-12-10 23:23:01 +00006380 Py_BEGIN_ALLOW_THREADS
Georg Brandl644b1e72006-03-31 20:27:22 +00006381#if !defined(MS_WINDOWS) && defined(HAVE_FCNTL_H)
Georg Brandl54a188a2006-03-31 20:00:11 +00006382 if (mode[0] == 'a') {
6383 /* try to make sure the O_APPEND flag is set */
6384 int flags;
6385 flags = fcntl(fd, F_GETFL);
6386 if (flags != -1)
6387 fcntl(fd, F_SETFL, flags | O_APPEND);
6388 fp = fdopen(fd, mode);
Thomas Wouters2a9a6b02006-03-31 22:38:19 +00006389 if (fp == NULL && flags != -1)
Georg Brandl54a188a2006-03-31 20:00:11 +00006390 /* restore old mode if fdopen failed */
6391 fcntl(fd, F_SETFL, flags);
6392 } else {
6393 fp = fdopen(fd, mode);
6394 }
Georg Brandl644b1e72006-03-31 20:27:22 +00006395#else
6396 fp = fdopen(fd, mode);
6397#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00006398 Py_END_ALLOW_THREADS
Neal Norwitzd83eb312007-05-02 04:47:55 +00006399 PyMem_FREE(mode);
Guido van Rossum687dd131993-05-17 08:34:16 +00006400 if (fp == NULL)
6401 return posix_error();
Kristján Valur Jónsson0a440d42007-04-26 09:15:08 +00006402 f = PyFile_FromFile(fp, "<fdopen>", orgmode, fclose);
Guido van Rossuma6a1e531995-01-10 15:36:38 +00006403 if (f != NULL)
Barry Warsaw53699e91996-12-10 23:23:01 +00006404 PyFile_SetBufSize(f, bufsize);
Guido van Rossuma6a1e531995-01-10 15:36:38 +00006405 return f;
Guido van Rossum687dd131993-05-17 08:34:16 +00006406}
6407
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006408PyDoc_STRVAR(posix_isatty__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006409"isatty(fd) -> bool\n\n\
Fred Drake106c1a02002-04-23 15:58:02 +00006410Return True if the file descriptor 'fd' is an open file descriptor\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006411connected to the slave end of a terminal.");
Skip Montanaro1517d842000-07-19 14:34:14 +00006412
6413static PyObject *
Thomas Wouters616607a2000-07-19 14:45:40 +00006414posix_isatty(PyObject *self, PyObject *args)
Skip Montanaro1517d842000-07-19 14:34:14 +00006415{
6416 int fd;
6417 if (!PyArg_ParseTuple(args, "i:isatty", &fd))
6418 return NULL;
Fred Drake106c1a02002-04-23 15:58:02 +00006419 return PyBool_FromLong(isatty(fd));
Skip Montanaro1517d842000-07-19 14:34:14 +00006420}
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006421
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006422#ifdef HAVE_PIPE
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006423PyDoc_STRVAR(posix_pipe__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006424"pipe() -> (read_end, write_end)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006425Create a pipe.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006426
Barry Warsaw53699e91996-12-10 23:23:01 +00006427static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00006428posix_pipe(PyObject *self, PyObject *noargs)
Guido van Rossum687dd131993-05-17 08:34:16 +00006429{
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00006430#if defined(PYOS_OS2)
6431 HFILE read, write;
6432 APIRET rc;
6433
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00006434 Py_BEGIN_ALLOW_THREADS
6435 rc = DosCreatePipe( &read, &write, 4096);
6436 Py_END_ALLOW_THREADS
6437 if (rc != NO_ERROR)
Guido van Rossumd48f2521997-12-05 22:19:34 +00006438 return os2_error(rc);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00006439
6440 return Py_BuildValue("(ii)", read, write);
6441#else
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006442#if !defined(MS_WINDOWS)
Guido van Rossum687dd131993-05-17 08:34:16 +00006443 int fds[2];
6444 int res;
Barry Warsaw53699e91996-12-10 23:23:01 +00006445 Py_BEGIN_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006446 res = pipe(fds);
Barry Warsaw53699e91996-12-10 23:23:01 +00006447 Py_END_ALLOW_THREADS
Guido van Rossum687dd131993-05-17 08:34:16 +00006448 if (res != 0)
6449 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006450 return Py_BuildValue("(ii)", fds[0], fds[1]);
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006451#else /* MS_WINDOWS */
Guido van Rossum794d8131994-08-23 13:48:48 +00006452 HANDLE read, write;
Guido van Rossumb3f9f4b1998-06-12 15:05:15 +00006453 int read_fd, write_fd;
Guido van Rossum794d8131994-08-23 13:48:48 +00006454 BOOL ok;
Barry Warsaw53699e91996-12-10 23:23:01 +00006455 Py_BEGIN_ALLOW_THREADS
Guido van Rossumb3f9f4b1998-06-12 15:05:15 +00006456 ok = CreatePipe(&read, &write, NULL, 0);
Barry Warsaw53699e91996-12-10 23:23:01 +00006457 Py_END_ALLOW_THREADS
Guido van Rossum794d8131994-08-23 13:48:48 +00006458 if (!ok)
Fredrik Lundhffb9c772000-07-09 14:49:51 +00006459 return win32_error("CreatePipe", NULL);
Tim Peters79248aa2001-08-29 21:37:10 +00006460 read_fd = _open_osfhandle((Py_intptr_t)read, 0);
6461 write_fd = _open_osfhandle((Py_intptr_t)write, 1);
Guido van Rossumb3f9f4b1998-06-12 15:05:15 +00006462 return Py_BuildValue("(ii)", read_fd, write_fd);
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006463#endif /* MS_WINDOWS */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00006464#endif
Guido van Rossum687dd131993-05-17 08:34:16 +00006465}
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006466#endif /* HAVE_PIPE */
6467
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006468
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006469#ifdef HAVE_MKFIFO
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006470PyDoc_STRVAR(posix_mkfifo__doc__,
Neal Norwitzc18b3082002-10-11 22:19:42 +00006471"mkfifo(filename [, mode=0666])\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006472Create a FIFO (a POSIX named pipe).");
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_mkfifo(PyObject *self, PyObject *args)
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006476{
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006477 char *filename;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006478 int mode = 0666;
6479 int res;
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006480 if (!PyArg_ParseTuple(args, "s|i:mkfifo", &filename, &mode))
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006481 return NULL;
Barry Warsaw53699e91996-12-10 23:23:01 +00006482 Py_BEGIN_ALLOW_THREADS
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006483 res = mkfifo(filename, mode);
6484 Py_END_ALLOW_THREADS
6485 if (res < 0)
6486 return posix_error();
6487 Py_INCREF(Py_None);
6488 return Py_None;
6489}
6490#endif
6491
6492
Neal Norwitz11690112002-07-30 01:08:28 +00006493#if defined(HAVE_MKNOD) && defined(HAVE_MAKEDEV)
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006494PyDoc_STRVAR(posix_mknod__doc__,
Neal Norwitzc18b3082002-10-11 22:19:42 +00006495"mknod(filename [, mode=0600, device])\n\n\
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006496Create a filesystem node (file, device special file or named pipe)\n\
6497named filename. mode specifies both the permissions to use and the\n\
6498type of node to be created, being combined (bitwise OR) with one of\n\
6499S_IFREG, S_IFCHR, S_IFBLK, and S_IFIFO. For S_IFCHR and S_IFBLK,\n\
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00006500device defines the newly created device special file (probably using\n\
6501os.makedev()), otherwise it is ignored.");
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006502
6503
6504static PyObject *
6505posix_mknod(PyObject *self, PyObject *args)
6506{
6507 char *filename;
6508 int mode = 0600;
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00006509 int device = 0;
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006510 int res;
Martin v. Löwisd631ebe2002-11-02 17:42:33 +00006511 if (!PyArg_ParseTuple(args, "s|ii:mknod", &filename, &mode, &device))
Martin v. Löwis06a83e92002-04-14 10:19:44 +00006512 return NULL;
6513 Py_BEGIN_ALLOW_THREADS
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00006514 res = mknod(filename, mode, device);
Barry Warsaw53699e91996-12-10 23:23:01 +00006515 Py_END_ALLOW_THREADS
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006516 if (res < 0)
6517 return posix_error();
Barry Warsaw53699e91996-12-10 23:23:01 +00006518 Py_INCREF(Py_None);
6519 return Py_None;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006520}
6521#endif
6522
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00006523#ifdef HAVE_DEVICE_MACROS
6524PyDoc_STRVAR(posix_major__doc__,
6525"major(device) -> major number\n\
6526Extracts a device major number from a raw device number.");
6527
6528static PyObject *
6529posix_major(PyObject *self, PyObject *args)
6530{
6531 int device;
6532 if (!PyArg_ParseTuple(args, "i:major", &device))
6533 return NULL;
6534 return PyInt_FromLong((long)major(device));
6535}
6536
6537PyDoc_STRVAR(posix_minor__doc__,
6538"minor(device) -> minor number\n\
6539Extracts a device minor number from a raw device number.");
6540
6541static PyObject *
6542posix_minor(PyObject *self, PyObject *args)
6543{
6544 int device;
6545 if (!PyArg_ParseTuple(args, "i:minor", &device))
6546 return NULL;
6547 return PyInt_FromLong((long)minor(device));
6548}
6549
6550PyDoc_STRVAR(posix_makedev__doc__,
6551"makedev(major, minor) -> device number\n\
6552Composes a raw device number from the major and minor device numbers.");
6553
6554static PyObject *
6555posix_makedev(PyObject *self, PyObject *args)
6556{
6557 int major, minor;
6558 if (!PyArg_ParseTuple(args, "ii:makedev", &major, &minor))
6559 return NULL;
6560 return PyInt_FromLong((long)makedev(major, minor));
6561}
6562#endif /* device macros */
6563
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006564
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006565#ifdef HAVE_FTRUNCATE
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006566PyDoc_STRVAR(posix_ftruncate__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006567"ftruncate(fd, length)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006568Truncate a file to a specified length.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006569
Barry Warsaw53699e91996-12-10 23:23:01 +00006570static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006571posix_ftruncate(PyObject *self, PyObject *args)
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006572{
6573 int fd;
Guido van Rossum94f6f721999-01-06 18:42:14 +00006574 off_t length;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006575 int res;
Guido van Rossum94f6f721999-01-06 18:42:14 +00006576 PyObject *lenobj;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006577
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006578 if (!PyArg_ParseTuple(args, "iO:ftruncate", &fd, &lenobj))
Guido van Rossum94f6f721999-01-06 18:42:14 +00006579 return NULL;
6580
6581#if !defined(HAVE_LARGEFILE_SUPPORT)
6582 length = PyInt_AsLong(lenobj);
6583#else
6584 length = PyLong_Check(lenobj) ?
6585 PyLong_AsLongLong(lenobj) : PyInt_AsLong(lenobj);
6586#endif
6587 if (PyErr_Occurred())
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006588 return NULL;
6589
Barry Warsaw53699e91996-12-10 23:23:01 +00006590 Py_BEGIN_ALLOW_THREADS
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006591 res = ftruncate(fd, length);
Barry Warsaw53699e91996-12-10 23:23:01 +00006592 Py_END_ALLOW_THREADS
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006593 if (res < 0) {
Barry Warsaw53699e91996-12-10 23:23:01 +00006594 PyErr_SetFromErrno(PyExc_IOError);
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006595 return NULL;
6596 }
Barry Warsaw53699e91996-12-10 23:23:01 +00006597 Py_INCREF(Py_None);
6598 return Py_None;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00006599}
6600#endif
Guido van Rossum22db57e1992-04-05 14:25:30 +00006601
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006602#ifdef HAVE_PUTENV
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006603PyDoc_STRVAR(posix_putenv__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006604"putenv(key, value)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006605Change or add an environment variable.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006606
Fred Drake762e2061999-08-26 17:23:54 +00006607/* Save putenv() parameters as values here, so we can collect them when they
6608 * get re-set with another call for the same key. */
6609static PyObject *posix_putenv_garbage;
6610
Tim Peters5aa91602002-01-30 05:46:57 +00006611static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006612posix_putenv(PyObject *self, PyObject *args)
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006613{
6614 char *s1, *s2;
Anthony Baxter64182fe2006-04-11 12:14:09 +00006615 char *newenv;
Fred Drake762e2061999-08-26 17:23:54 +00006616 PyObject *newstr;
Tim Petersc8996f52001-12-03 20:41:00 +00006617 size_t len;
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006618
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006619 if (!PyArg_ParseTuple(args, "ss:putenv", &s1, &s2))
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006620 return NULL;
Guido van Rossumd48f2521997-12-05 22:19:34 +00006621
6622#if defined(PYOS_OS2)
6623 if (stricmp(s1, "BEGINLIBPATH") == 0) {
6624 APIRET rc;
6625
Guido van Rossumd48f2521997-12-05 22:19:34 +00006626 rc = DosSetExtLIBPATH(s2, BEGIN_LIBPATH);
6627 if (rc != NO_ERROR)
6628 return os2_error(rc);
6629
6630 } else if (stricmp(s1, "ENDLIBPATH") == 0) {
6631 APIRET rc;
6632
Guido van Rossumd48f2521997-12-05 22:19:34 +00006633 rc = DosSetExtLIBPATH(s2, END_LIBPATH);
6634 if (rc != NO_ERROR)
6635 return os2_error(rc);
6636 } else {
6637#endif
6638
Fred Drake762e2061999-08-26 17:23:54 +00006639 /* XXX This can leak memory -- not easy to fix :-( */
Tim Petersc8996f52001-12-03 20:41:00 +00006640 len = strlen(s1) + strlen(s2) + 2;
6641 /* len includes space for a trailing \0; the size arg to
6642 PyString_FromStringAndSize does not count that */
6643 newstr = PyString_FromStringAndSize(NULL, (int)len - 1);
Fred Drake762e2061999-08-26 17:23:54 +00006644 if (newstr == NULL)
6645 return PyErr_NoMemory();
Anthony Baxter64182fe2006-04-11 12:14:09 +00006646 newenv = PyString_AS_STRING(newstr);
6647 PyOS_snprintf(newenv, len, "%s=%s", s1, s2);
6648 if (putenv(newenv)) {
Neal Norwitz4adc9ab2003-02-10 03:10:43 +00006649 Py_DECREF(newstr);
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006650 posix_error();
6651 return NULL;
6652 }
Fred Drake762e2061999-08-26 17:23:54 +00006653 /* Install the first arg and newstr in posix_putenv_garbage;
6654 * this will cause previous value to be collected. This has to
6655 * happen after the real putenv() call because the old value
6656 * was still accessible until then. */
6657 if (PyDict_SetItem(posix_putenv_garbage,
6658 PyTuple_GET_ITEM(args, 0), newstr)) {
6659 /* really not much we can do; just leak */
6660 PyErr_Clear();
6661 }
6662 else {
6663 Py_DECREF(newstr);
6664 }
Guido van Rossumd48f2521997-12-05 22:19:34 +00006665
6666#if defined(PYOS_OS2)
6667 }
6668#endif
Barry Warsaw53699e91996-12-10 23:23:01 +00006669 Py_INCREF(Py_None);
6670 return Py_None;
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006671}
Guido van Rossumb6a47161997-09-15 22:54:34 +00006672#endif /* putenv */
6673
Guido van Rossumc524d952001-10-19 01:31:59 +00006674#ifdef HAVE_UNSETENV
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006675PyDoc_STRVAR(posix_unsetenv__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006676"unsetenv(key)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006677Delete an environment variable.");
Guido van Rossumc524d952001-10-19 01:31:59 +00006678
6679static PyObject *
6680posix_unsetenv(PyObject *self, PyObject *args)
6681{
6682 char *s1;
6683
6684 if (!PyArg_ParseTuple(args, "s:unsetenv", &s1))
6685 return NULL;
6686
6687 unsetenv(s1);
6688
6689 /* Remove the key from posix_putenv_garbage;
6690 * this will cause it to be collected. This has to
Tim Peters5aa91602002-01-30 05:46:57 +00006691 * happen after the real unsetenv() call because the
Guido van Rossumc524d952001-10-19 01:31:59 +00006692 * old value was still accessible until then.
6693 */
6694 if (PyDict_DelItem(posix_putenv_garbage,
6695 PyTuple_GET_ITEM(args, 0))) {
6696 /* really not much we can do; just leak */
6697 PyErr_Clear();
6698 }
6699
6700 Py_INCREF(Py_None);
6701 return Py_None;
6702}
6703#endif /* unsetenv */
6704
Guido van Rossumb6a47161997-09-15 22:54:34 +00006705#ifdef HAVE_STRERROR
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006706PyDoc_STRVAR(posix_strerror__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006707"strerror(code) -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006708Translate an error code to a message string.");
Guido van Rossumb6a47161997-09-15 22:54:34 +00006709
Guido van Rossumf68d8e52001-04-14 17:55:09 +00006710static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006711posix_strerror(PyObject *self, PyObject *args)
Guido van Rossumb6a47161997-09-15 22:54:34 +00006712{
6713 int code;
6714 char *message;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006715 if (!PyArg_ParseTuple(args, "i:strerror", &code))
Guido van Rossumb6a47161997-09-15 22:54:34 +00006716 return NULL;
6717 message = strerror(code);
6718 if (message == NULL) {
6719 PyErr_SetString(PyExc_ValueError,
Fred Drake661ea262000-10-24 19:57:45 +00006720 "strerror() argument out of range");
Guido van Rossumb6a47161997-09-15 22:54:34 +00006721 return NULL;
6722 }
6723 return PyString_FromString(message);
6724}
6725#endif /* strerror */
6726
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00006727
Guido van Rossumc9641791998-08-04 15:26:23 +00006728#ifdef HAVE_SYS_WAIT_H
6729
Fred Drake106c1a02002-04-23 15:58:02 +00006730#ifdef WCOREDUMP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006731PyDoc_STRVAR(posix_WCOREDUMP__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006732"WCOREDUMP(status) -> bool\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006733Return True if the process returning 'status' was dumped to a core file.");
Fred Drake106c1a02002-04-23 15:58:02 +00006734
6735static PyObject *
6736posix_WCOREDUMP(PyObject *self, PyObject *args)
6737{
Neal Norwitzd5a37542006-03-20 06:48:34 +00006738 WAIT_TYPE status;
6739 WAIT_STATUS_INT(status) = 0;
Fred Drake106c1a02002-04-23 15:58:02 +00006740
Neal Norwitzd5a37542006-03-20 06:48:34 +00006741 if (!PyArg_ParseTuple(args, "i:WCOREDUMP", &WAIT_STATUS_INT(status)))
Fred Drake106c1a02002-04-23 15:58:02 +00006742 return NULL;
Fred Drake106c1a02002-04-23 15:58:02 +00006743
6744 return PyBool_FromLong(WCOREDUMP(status));
Fred Drake106c1a02002-04-23 15:58:02 +00006745}
6746#endif /* WCOREDUMP */
6747
6748#ifdef WIFCONTINUED
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006749PyDoc_STRVAR(posix_WIFCONTINUED__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006750"WIFCONTINUED(status) -> bool\n\n\
Fred Drake106c1a02002-04-23 15:58:02 +00006751Return True if the process returning 'status' was continued from a\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006752job control stop.");
Fred Drake106c1a02002-04-23 15:58:02 +00006753
6754static PyObject *
Martin v. Löwis2b41b0d2002-05-04 13:13:41 +00006755posix_WIFCONTINUED(PyObject *self, PyObject *args)
Fred Drake106c1a02002-04-23 15:58:02 +00006756{
Neal Norwitzd5a37542006-03-20 06:48:34 +00006757 WAIT_TYPE status;
6758 WAIT_STATUS_INT(status) = 0;
Fred Drake106c1a02002-04-23 15:58:02 +00006759
Neal Norwitzd5a37542006-03-20 06:48:34 +00006760 if (!PyArg_ParseTuple(args, "i:WCONTINUED", &WAIT_STATUS_INT(status)))
Fred Drake106c1a02002-04-23 15:58:02 +00006761 return NULL;
Fred Drake106c1a02002-04-23 15:58:02 +00006762
Martin v. Löwis2b41b0d2002-05-04 13:13:41 +00006763 return PyBool_FromLong(WIFCONTINUED(status));
Fred Drake106c1a02002-04-23 15:58:02 +00006764}
6765#endif /* WIFCONTINUED */
6766
Guido van Rossumc9641791998-08-04 15:26:23 +00006767#ifdef WIFSTOPPED
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006768PyDoc_STRVAR(posix_WIFSTOPPED__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006769"WIFSTOPPED(status) -> bool\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006770Return True if the process returning 'status' was stopped.");
Guido van Rossumc9641791998-08-04 15:26:23 +00006771
6772static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006773posix_WIFSTOPPED(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00006774{
Neal Norwitzd5a37542006-03-20 06:48:34 +00006775 WAIT_TYPE status;
6776 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00006777
Neal Norwitzd5a37542006-03-20 06:48:34 +00006778 if (!PyArg_ParseTuple(args, "i:WIFSTOPPED", &WAIT_STATUS_INT(status)))
Guido van Rossumc9641791998-08-04 15:26:23 +00006779 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00006780
Fred Drake106c1a02002-04-23 15:58:02 +00006781 return PyBool_FromLong(WIFSTOPPED(status));
Guido van Rossumc9641791998-08-04 15:26:23 +00006782}
6783#endif /* WIFSTOPPED */
6784
6785#ifdef WIFSIGNALED
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006786PyDoc_STRVAR(posix_WIFSIGNALED__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006787"WIFSIGNALED(status) -> bool\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006788Return True if the process returning 'status' was terminated by a signal.");
Guido van Rossumc9641791998-08-04 15:26:23 +00006789
6790static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006791posix_WIFSIGNALED(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00006792{
Neal Norwitzd5a37542006-03-20 06:48:34 +00006793 WAIT_TYPE status;
6794 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00006795
Neal Norwitzd5a37542006-03-20 06:48:34 +00006796 if (!PyArg_ParseTuple(args, "i:WIFSIGNALED", &WAIT_STATUS_INT(status)))
Guido van Rossumc9641791998-08-04 15:26:23 +00006797 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00006798
Fred Drake106c1a02002-04-23 15:58:02 +00006799 return PyBool_FromLong(WIFSIGNALED(status));
Guido van Rossumc9641791998-08-04 15:26:23 +00006800}
6801#endif /* WIFSIGNALED */
6802
6803#ifdef WIFEXITED
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006804PyDoc_STRVAR(posix_WIFEXITED__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006805"WIFEXITED(status) -> bool\n\n\
Fred Drake7e3535c1999-02-02 16:37:11 +00006806Return true if the process returning 'status' exited using the exit()\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006807system call.");
Guido van Rossumc9641791998-08-04 15:26:23 +00006808
6809static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006810posix_WIFEXITED(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00006811{
Neal Norwitzd5a37542006-03-20 06:48:34 +00006812 WAIT_TYPE status;
6813 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00006814
Neal Norwitzd5a37542006-03-20 06:48:34 +00006815 if (!PyArg_ParseTuple(args, "i:WIFEXITED", &WAIT_STATUS_INT(status)))
Guido van Rossumc9641791998-08-04 15:26:23 +00006816 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00006817
Fred Drake106c1a02002-04-23 15:58:02 +00006818 return PyBool_FromLong(WIFEXITED(status));
Guido van Rossumc9641791998-08-04 15:26:23 +00006819}
6820#endif /* WIFEXITED */
6821
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00006822#ifdef WEXITSTATUS
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006823PyDoc_STRVAR(posix_WEXITSTATUS__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006824"WEXITSTATUS(status) -> integer\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006825Return the process return code from 'status'.");
Guido van Rossumc9641791998-08-04 15:26:23 +00006826
6827static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006828posix_WEXITSTATUS(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00006829{
Neal Norwitzd5a37542006-03-20 06:48:34 +00006830 WAIT_TYPE status;
6831 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00006832
Neal Norwitzd5a37542006-03-20 06:48:34 +00006833 if (!PyArg_ParseTuple(args, "i:WEXITSTATUS", &WAIT_STATUS_INT(status)))
Guido van Rossumc9641791998-08-04 15:26:23 +00006834 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00006835
Guido van Rossumc9641791998-08-04 15:26:23 +00006836 return Py_BuildValue("i", WEXITSTATUS(status));
6837}
6838#endif /* WEXITSTATUS */
6839
6840#ifdef WTERMSIG
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006841PyDoc_STRVAR(posix_WTERMSIG__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006842"WTERMSIG(status) -> integer\n\n\
Fred Drake7e3535c1999-02-02 16:37:11 +00006843Return the signal that terminated the process that provided the 'status'\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006844value.");
Guido van Rossumc9641791998-08-04 15:26:23 +00006845
6846static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006847posix_WTERMSIG(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00006848{
Neal Norwitzd5a37542006-03-20 06:48:34 +00006849 WAIT_TYPE status;
6850 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00006851
Neal Norwitzd5a37542006-03-20 06:48:34 +00006852 if (!PyArg_ParseTuple(args, "i:WTERMSIG", &WAIT_STATUS_INT(status)))
Guido van Rossumc9641791998-08-04 15:26:23 +00006853 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00006854
Guido van Rossumc9641791998-08-04 15:26:23 +00006855 return Py_BuildValue("i", WTERMSIG(status));
6856}
6857#endif /* WTERMSIG */
6858
6859#ifdef WSTOPSIG
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006860PyDoc_STRVAR(posix_WSTOPSIG__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006861"WSTOPSIG(status) -> integer\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006862Return the signal that stopped the process that provided\n\
6863the 'status' value.");
Guido van Rossumc9641791998-08-04 15:26:23 +00006864
6865static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006866posix_WSTOPSIG(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00006867{
Neal Norwitzd5a37542006-03-20 06:48:34 +00006868 WAIT_TYPE status;
6869 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00006870
Neal Norwitzd5a37542006-03-20 06:48:34 +00006871 if (!PyArg_ParseTuple(args, "i:WSTOPSIG", &WAIT_STATUS_INT(status)))
Guido van Rossumc9641791998-08-04 15:26:23 +00006872 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00006873
Guido van Rossumc9641791998-08-04 15:26:23 +00006874 return Py_BuildValue("i", WSTOPSIG(status));
6875}
6876#endif /* WSTOPSIG */
6877
6878#endif /* HAVE_SYS_WAIT_H */
6879
6880
Martin v. Löwis5f5d99c2006-05-16 07:05:37 +00006881#if defined(HAVE_FSTATVFS) && defined(HAVE_SYS_STATVFS_H)
Guido van Rossumd5753e11999-10-19 13:29:23 +00006882#ifdef _SCO_DS
6883/* SCO OpenServer 5.0 and later requires _SVID3 before it reveals the
6884 needed definitions in sys/statvfs.h */
6885#define _SVID3
6886#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00006887#include <sys/statvfs.h>
6888
Guido van Rossum98bf58f2001-10-18 20:34:25 +00006889static PyObject*
6890_pystatvfs_fromstructstatvfs(struct statvfs st) {
6891 PyObject *v = PyStructSequence_New(&StatVFSResultType);
6892 if (v == NULL)
6893 return NULL;
6894
6895#if !defined(HAVE_LARGEFILE_SUPPORT)
6896 PyStructSequence_SET_ITEM(v, 0, PyInt_FromLong((long) st.f_bsize));
6897 PyStructSequence_SET_ITEM(v, 1, PyInt_FromLong((long) st.f_frsize));
6898 PyStructSequence_SET_ITEM(v, 2, PyInt_FromLong((long) st.f_blocks));
6899 PyStructSequence_SET_ITEM(v, 3, PyInt_FromLong((long) st.f_bfree));
6900 PyStructSequence_SET_ITEM(v, 4, PyInt_FromLong((long) st.f_bavail));
6901 PyStructSequence_SET_ITEM(v, 5, PyInt_FromLong((long) st.f_files));
6902 PyStructSequence_SET_ITEM(v, 6, PyInt_FromLong((long) st.f_ffree));
6903 PyStructSequence_SET_ITEM(v, 7, PyInt_FromLong((long) st.f_favail));
6904 PyStructSequence_SET_ITEM(v, 8, PyInt_FromLong((long) st.f_flag));
6905 PyStructSequence_SET_ITEM(v, 9, PyInt_FromLong((long) st.f_namemax));
6906#else
6907 PyStructSequence_SET_ITEM(v, 0, PyInt_FromLong((long) st.f_bsize));
6908 PyStructSequence_SET_ITEM(v, 1, PyInt_FromLong((long) st.f_frsize));
Tim Peters5aa91602002-01-30 05:46:57 +00006909 PyStructSequence_SET_ITEM(v, 2,
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00006910 PyLong_FromLongLong((PY_LONG_LONG) st.f_blocks));
Tim Peters5aa91602002-01-30 05:46:57 +00006911 PyStructSequence_SET_ITEM(v, 3,
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00006912 PyLong_FromLongLong((PY_LONG_LONG) st.f_bfree));
Guido van Rossum98bf58f2001-10-18 20:34:25 +00006913 PyStructSequence_SET_ITEM(v, 4,
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00006914 PyLong_FromLongLong((PY_LONG_LONG) st.f_bavail));
Tim Peters5aa91602002-01-30 05:46:57 +00006915 PyStructSequence_SET_ITEM(v, 5,
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00006916 PyLong_FromLongLong((PY_LONG_LONG) st.f_files));
Tim Peters5aa91602002-01-30 05:46:57 +00006917 PyStructSequence_SET_ITEM(v, 6,
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00006918 PyLong_FromLongLong((PY_LONG_LONG) st.f_ffree));
Tim Peters5aa91602002-01-30 05:46:57 +00006919 PyStructSequence_SET_ITEM(v, 7,
Martin v. Löwisb9a0f912003-03-29 10:06:18 +00006920 PyLong_FromLongLong((PY_LONG_LONG) st.f_favail));
Guido van Rossum98bf58f2001-10-18 20:34:25 +00006921 PyStructSequence_SET_ITEM(v, 8, PyInt_FromLong((long) st.f_flag));
6922 PyStructSequence_SET_ITEM(v, 9, PyInt_FromLong((long) st.f_namemax));
6923#endif
6924
6925 return v;
6926}
6927
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006928PyDoc_STRVAR(posix_fstatvfs__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006929"fstatvfs(fd) -> statvfs result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006930Perform an fstatvfs system call on the given fd.");
Guido van Rossum94f6f721999-01-06 18:42:14 +00006931
6932static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006933posix_fstatvfs(PyObject *self, PyObject *args)
Guido van Rossum94f6f721999-01-06 18:42:14 +00006934{
6935 int fd, res;
6936 struct statvfs st;
Guido van Rossum98bf58f2001-10-18 20:34:25 +00006937
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006938 if (!PyArg_ParseTuple(args, "i:fstatvfs", &fd))
Guido van Rossum94f6f721999-01-06 18:42:14 +00006939 return NULL;
6940 Py_BEGIN_ALLOW_THREADS
6941 res = fstatvfs(fd, &st);
6942 Py_END_ALLOW_THREADS
6943 if (res != 0)
6944 return posix_error();
Guido van Rossum98bf58f2001-10-18 20:34:25 +00006945
6946 return _pystatvfs_fromstructstatvfs(st);
Guido van Rossum94f6f721999-01-06 18:42:14 +00006947}
Martin v. Löwis5f5d99c2006-05-16 07:05:37 +00006948#endif /* HAVE_FSTATVFS && HAVE_SYS_STATVFS_H */
Guido van Rossum94f6f721999-01-06 18:42:14 +00006949
6950
Martin v. Löwis5f5d99c2006-05-16 07:05:37 +00006951#if defined(HAVE_STATVFS) && defined(HAVE_SYS_STATVFS_H)
Guido van Rossum94f6f721999-01-06 18:42:14 +00006952#include <sys/statvfs.h>
6953
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006954PyDoc_STRVAR(posix_statvfs__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006955"statvfs(path) -> statvfs result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006956Perform a statvfs system call on the given path.");
Guido van Rossum94f6f721999-01-06 18:42:14 +00006957
6958static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006959posix_statvfs(PyObject *self, PyObject *args)
Guido van Rossum94f6f721999-01-06 18:42:14 +00006960{
6961 char *path;
6962 int res;
6963 struct statvfs st;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006964 if (!PyArg_ParseTuple(args, "s:statvfs", &path))
Guido van Rossum94f6f721999-01-06 18:42:14 +00006965 return NULL;
6966 Py_BEGIN_ALLOW_THREADS
6967 res = statvfs(path, &st);
6968 Py_END_ALLOW_THREADS
6969 if (res != 0)
6970 return posix_error_with_filename(path);
Guido van Rossum98bf58f2001-10-18 20:34:25 +00006971
6972 return _pystatvfs_fromstructstatvfs(st);
Guido van Rossum94f6f721999-01-06 18:42:14 +00006973}
6974#endif /* HAVE_STATVFS */
6975
6976
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006977#ifdef HAVE_TEMPNAM
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006978PyDoc_STRVAR(posix_tempnam__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006979"tempnam([dir[, prefix]]) -> string\n\n\
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006980Return a unique name for a temporary file.\n\
Neal Norwitz50d5d4f2002-07-30 01:17:43 +00006981The directory and a prefix may be specified as strings; they may be omitted\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006982or None if not needed.");
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006983
6984static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006985posix_tempnam(PyObject *self, PyObject *args)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00006986{
6987 PyObject *result = NULL;
6988 char *dir = NULL;
6989 char *pfx = NULL;
6990 char *name;
6991
6992 if (!PyArg_ParseTuple(args, "|zz:tempnam", &dir, &pfx))
6993 return NULL;
Skip Montanaro95618b52001-08-18 18:52:10 +00006994
6995 if (PyErr_Warn(PyExc_RuntimeWarning,
6996 "tempnam is a potential security risk to your program") < 0)
6997 return NULL;
6998
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006999#ifdef MS_WINDOWS
Fred Drake78b71c22001-07-17 20:37:36 +00007000 name = _tempnam(dir, pfx);
7001#else
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007002 name = tempnam(dir, pfx);
Fred Drake78b71c22001-07-17 20:37:36 +00007003#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007004 if (name == NULL)
7005 return PyErr_NoMemory();
7006 result = PyString_FromString(name);
7007 free(name);
7008 return result;
7009}
Guido van Rossumd371ff11999-01-25 16:12:23 +00007010#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007011
7012
7013#ifdef HAVE_TMPFILE
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007014PyDoc_STRVAR(posix_tmpfile__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007015"tmpfile() -> file object\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007016Create a temporary file with no directory entries.");
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007017
7018static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00007019posix_tmpfile(PyObject *self, PyObject *noargs)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007020{
7021 FILE *fp;
7022
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007023 fp = tmpfile();
7024 if (fp == NULL)
7025 return posix_error();
Guido van Rossumdb9198a2002-06-10 19:23:22 +00007026 return PyFile_FromFile(fp, "<tmpfile>", "w+b", fclose);
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007027}
7028#endif
7029
7030
7031#ifdef HAVE_TMPNAM
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007032PyDoc_STRVAR(posix_tmpnam__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007033"tmpnam() -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007034Return a unique name for a temporary file.");
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007035
7036static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00007037posix_tmpnam(PyObject *self, PyObject *noargs)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007038{
7039 char buffer[L_tmpnam];
7040 char *name;
7041
Skip Montanaro95618b52001-08-18 18:52:10 +00007042 if (PyErr_Warn(PyExc_RuntimeWarning,
7043 "tmpnam is a potential security risk to your program") < 0)
7044 return NULL;
7045
Greg Wardb48bc172000-03-01 21:51:56 +00007046#ifdef USE_TMPNAM_R
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007047 name = tmpnam_r(buffer);
7048#else
7049 name = tmpnam(buffer);
7050#endif
7051 if (name == NULL) {
Neal Norwitzd1e0ef62006-03-20 04:08:12 +00007052 PyObject *err = Py_BuildValue("is", 0,
Greg Wardb48bc172000-03-01 21:51:56 +00007053#ifdef USE_TMPNAM_R
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007054 "unexpected NULL from tmpnam_r"
7055#else
7056 "unexpected NULL from tmpnam"
7057#endif
Neal Norwitzd1e0ef62006-03-20 04:08:12 +00007058 );
7059 PyErr_SetObject(PyExc_OSError, err);
7060 Py_XDECREF(err);
7061 return NULL;
Fred Drake5ab8eaf1999-12-09 21:13:07 +00007062 }
7063 return PyString_FromString(buffer);
7064}
7065#endif
7066
7067
Fred Drakec9680921999-12-13 16:37:25 +00007068/* This is used for fpathconf(), pathconf(), confstr() and sysconf().
7069 * It maps strings representing configuration variable names to
7070 * integer values, allowing those functions to be called with the
Thomas Wouters7e474022000-07-16 12:04:32 +00007071 * magic names instead of polluting the module's namespace with tons of
Fred Drake12c6e2d1999-12-14 21:25:03 +00007072 * rarely-used constants. There are three separate tables that use
7073 * these definitions.
Fred Drakebec628d1999-12-15 18:31:10 +00007074 *
7075 * This code is always included, even if none of the interfaces that
7076 * need it are included. The #if hackery needed to avoid it would be
7077 * sufficiently pervasive that it's not worth the loss of readability.
Fred Drakec9680921999-12-13 16:37:25 +00007078 */
7079struct constdef {
7080 char *name;
7081 long value;
7082};
7083
Fred Drake12c6e2d1999-12-14 21:25:03 +00007084static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007085conv_confname(PyObject *arg, int *valuep, struct constdef *table,
7086 size_t tablesize)
Fred Drake12c6e2d1999-12-14 21:25:03 +00007087{
7088 if (PyInt_Check(arg)) {
7089 *valuep = PyInt_AS_LONG(arg);
7090 return 1;
7091 }
7092 if (PyString_Check(arg)) {
7093 /* look up the value in the table using a binary search */
Fred Drake699f3522000-06-29 21:12:41 +00007094 size_t lo = 0;
7095 size_t mid;
7096 size_t hi = tablesize;
7097 int cmp;
Fred Drake12c6e2d1999-12-14 21:25:03 +00007098 char *confname = PyString_AS_STRING(arg);
7099 while (lo < hi) {
7100 mid = (lo + hi) / 2;
7101 cmp = strcmp(confname, table[mid].name);
7102 if (cmp < 0)
7103 hi = mid;
7104 else if (cmp > 0)
7105 lo = mid + 1;
7106 else {
7107 *valuep = table[mid].value;
7108 return 1;
7109 }
7110 }
7111 PyErr_SetString(PyExc_ValueError, "unrecognized configuration name");
7112 }
7113 else
7114 PyErr_SetString(PyExc_TypeError,
7115 "configuration names must be strings or integers");
7116 return 0;
7117}
7118
7119
7120#if defined(HAVE_FPATHCONF) || defined(HAVE_PATHCONF)
7121static struct constdef posix_constants_pathconf[] = {
Fred Draked86ed291999-12-15 15:34:33 +00007122#ifdef _PC_ABI_AIO_XFER_MAX
7123 {"PC_ABI_AIO_XFER_MAX", _PC_ABI_AIO_XFER_MAX},
7124#endif
7125#ifdef _PC_ABI_ASYNC_IO
7126 {"PC_ABI_ASYNC_IO", _PC_ABI_ASYNC_IO},
7127#endif
Fred Drakec9680921999-12-13 16:37:25 +00007128#ifdef _PC_ASYNC_IO
7129 {"PC_ASYNC_IO", _PC_ASYNC_IO},
7130#endif
7131#ifdef _PC_CHOWN_RESTRICTED
7132 {"PC_CHOWN_RESTRICTED", _PC_CHOWN_RESTRICTED},
7133#endif
7134#ifdef _PC_FILESIZEBITS
7135 {"PC_FILESIZEBITS", _PC_FILESIZEBITS},
7136#endif
7137#ifdef _PC_LAST
7138 {"PC_LAST", _PC_LAST},
7139#endif
7140#ifdef _PC_LINK_MAX
7141 {"PC_LINK_MAX", _PC_LINK_MAX},
7142#endif
7143#ifdef _PC_MAX_CANON
7144 {"PC_MAX_CANON", _PC_MAX_CANON},
7145#endif
7146#ifdef _PC_MAX_INPUT
7147 {"PC_MAX_INPUT", _PC_MAX_INPUT},
7148#endif
7149#ifdef _PC_NAME_MAX
7150 {"PC_NAME_MAX", _PC_NAME_MAX},
7151#endif
7152#ifdef _PC_NO_TRUNC
7153 {"PC_NO_TRUNC", _PC_NO_TRUNC},
7154#endif
7155#ifdef _PC_PATH_MAX
7156 {"PC_PATH_MAX", _PC_PATH_MAX},
7157#endif
7158#ifdef _PC_PIPE_BUF
7159 {"PC_PIPE_BUF", _PC_PIPE_BUF},
7160#endif
7161#ifdef _PC_PRIO_IO
7162 {"PC_PRIO_IO", _PC_PRIO_IO},
7163#endif
7164#ifdef _PC_SOCK_MAXBUF
7165 {"PC_SOCK_MAXBUF", _PC_SOCK_MAXBUF},
7166#endif
7167#ifdef _PC_SYNC_IO
7168 {"PC_SYNC_IO", _PC_SYNC_IO},
7169#endif
7170#ifdef _PC_VDISABLE
7171 {"PC_VDISABLE", _PC_VDISABLE},
7172#endif
7173};
7174
Fred Drakec9680921999-12-13 16:37:25 +00007175static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007176conv_path_confname(PyObject *arg, int *valuep)
Fred Drakec9680921999-12-13 16:37:25 +00007177{
7178 return conv_confname(arg, valuep, posix_constants_pathconf,
7179 sizeof(posix_constants_pathconf)
7180 / sizeof(struct constdef));
7181}
7182#endif
7183
7184#ifdef HAVE_FPATHCONF
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007185PyDoc_STRVAR(posix_fpathconf__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007186"fpathconf(fd, name) -> integer\n\n\
Fred Drakec9680921999-12-13 16:37:25 +00007187Return the configuration limit name for the file descriptor fd.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007188If there is no limit, return -1.");
Fred Drakec9680921999-12-13 16:37:25 +00007189
7190static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007191posix_fpathconf(PyObject *self, PyObject *args)
Fred Drakec9680921999-12-13 16:37:25 +00007192{
7193 PyObject *result = NULL;
7194 int name, fd;
7195
Fred Drake12c6e2d1999-12-14 21:25:03 +00007196 if (PyArg_ParseTuple(args, "iO&:fpathconf", &fd,
7197 conv_path_confname, &name)) {
Fred Drakec9680921999-12-13 16:37:25 +00007198 long limit;
7199
7200 errno = 0;
7201 limit = fpathconf(fd, name);
7202 if (limit == -1 && errno != 0)
7203 posix_error();
7204 else
7205 result = PyInt_FromLong(limit);
7206 }
7207 return result;
7208}
7209#endif
7210
7211
7212#ifdef HAVE_PATHCONF
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007213PyDoc_STRVAR(posix_pathconf__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007214"pathconf(path, name) -> integer\n\n\
Fred Drakec9680921999-12-13 16:37:25 +00007215Return the configuration limit name for the file or directory path.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007216If there is no limit, return -1.");
Fred Drakec9680921999-12-13 16:37:25 +00007217
7218static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007219posix_pathconf(PyObject *self, PyObject *args)
Fred Drakec9680921999-12-13 16:37:25 +00007220{
7221 PyObject *result = NULL;
7222 int name;
7223 char *path;
7224
7225 if (PyArg_ParseTuple(args, "sO&:pathconf", &path,
7226 conv_path_confname, &name)) {
7227 long limit;
7228
7229 errno = 0;
7230 limit = pathconf(path, name);
Fred Drake12c6e2d1999-12-14 21:25:03 +00007231 if (limit == -1 && errno != 0) {
Fred Drakec9680921999-12-13 16:37:25 +00007232 if (errno == EINVAL)
7233 /* could be a path or name problem */
7234 posix_error();
7235 else
7236 posix_error_with_filename(path);
Fred Drake12c6e2d1999-12-14 21:25:03 +00007237 }
Fred Drakec9680921999-12-13 16:37:25 +00007238 else
7239 result = PyInt_FromLong(limit);
7240 }
7241 return result;
7242}
7243#endif
7244
7245#ifdef HAVE_CONFSTR
7246static struct constdef posix_constants_confstr[] = {
Fred Draked86ed291999-12-15 15:34:33 +00007247#ifdef _CS_ARCHITECTURE
7248 {"CS_ARCHITECTURE", _CS_ARCHITECTURE},
7249#endif
7250#ifdef _CS_HOSTNAME
7251 {"CS_HOSTNAME", _CS_HOSTNAME},
7252#endif
7253#ifdef _CS_HW_PROVIDER
7254 {"CS_HW_PROVIDER", _CS_HW_PROVIDER},
7255#endif
7256#ifdef _CS_HW_SERIAL
7257 {"CS_HW_SERIAL", _CS_HW_SERIAL},
7258#endif
7259#ifdef _CS_INITTAB_NAME
7260 {"CS_INITTAB_NAME", _CS_INITTAB_NAME},
7261#endif
Fred Drakec9680921999-12-13 16:37:25 +00007262#ifdef _CS_LFS64_CFLAGS
7263 {"CS_LFS64_CFLAGS", _CS_LFS64_CFLAGS},
7264#endif
7265#ifdef _CS_LFS64_LDFLAGS
7266 {"CS_LFS64_LDFLAGS", _CS_LFS64_LDFLAGS},
7267#endif
7268#ifdef _CS_LFS64_LIBS
7269 {"CS_LFS64_LIBS", _CS_LFS64_LIBS},
7270#endif
7271#ifdef _CS_LFS64_LINTFLAGS
7272 {"CS_LFS64_LINTFLAGS", _CS_LFS64_LINTFLAGS},
7273#endif
7274#ifdef _CS_LFS_CFLAGS
7275 {"CS_LFS_CFLAGS", _CS_LFS_CFLAGS},
7276#endif
7277#ifdef _CS_LFS_LDFLAGS
7278 {"CS_LFS_LDFLAGS", _CS_LFS_LDFLAGS},
7279#endif
7280#ifdef _CS_LFS_LIBS
7281 {"CS_LFS_LIBS", _CS_LFS_LIBS},
7282#endif
7283#ifdef _CS_LFS_LINTFLAGS
7284 {"CS_LFS_LINTFLAGS", _CS_LFS_LINTFLAGS},
7285#endif
Fred Draked86ed291999-12-15 15:34:33 +00007286#ifdef _CS_MACHINE
7287 {"CS_MACHINE", _CS_MACHINE},
7288#endif
Fred Drakec9680921999-12-13 16:37:25 +00007289#ifdef _CS_PATH
7290 {"CS_PATH", _CS_PATH},
7291#endif
Fred Draked86ed291999-12-15 15:34:33 +00007292#ifdef _CS_RELEASE
7293 {"CS_RELEASE", _CS_RELEASE},
7294#endif
7295#ifdef _CS_SRPC_DOMAIN
7296 {"CS_SRPC_DOMAIN", _CS_SRPC_DOMAIN},
7297#endif
7298#ifdef _CS_SYSNAME
7299 {"CS_SYSNAME", _CS_SYSNAME},
7300#endif
7301#ifdef _CS_VERSION
7302 {"CS_VERSION", _CS_VERSION},
7303#endif
Fred Drakec9680921999-12-13 16:37:25 +00007304#ifdef _CS_XBS5_ILP32_OFF32_CFLAGS
7305 {"CS_XBS5_ILP32_OFF32_CFLAGS", _CS_XBS5_ILP32_OFF32_CFLAGS},
7306#endif
7307#ifdef _CS_XBS5_ILP32_OFF32_LDFLAGS
7308 {"CS_XBS5_ILP32_OFF32_LDFLAGS", _CS_XBS5_ILP32_OFF32_LDFLAGS},
7309#endif
7310#ifdef _CS_XBS5_ILP32_OFF32_LIBS
7311 {"CS_XBS5_ILP32_OFF32_LIBS", _CS_XBS5_ILP32_OFF32_LIBS},
7312#endif
7313#ifdef _CS_XBS5_ILP32_OFF32_LINTFLAGS
7314 {"CS_XBS5_ILP32_OFF32_LINTFLAGS", _CS_XBS5_ILP32_OFF32_LINTFLAGS},
7315#endif
7316#ifdef _CS_XBS5_ILP32_OFFBIG_CFLAGS
7317 {"CS_XBS5_ILP32_OFFBIG_CFLAGS", _CS_XBS5_ILP32_OFFBIG_CFLAGS},
7318#endif
7319#ifdef _CS_XBS5_ILP32_OFFBIG_LDFLAGS
7320 {"CS_XBS5_ILP32_OFFBIG_LDFLAGS", _CS_XBS5_ILP32_OFFBIG_LDFLAGS},
7321#endif
7322#ifdef _CS_XBS5_ILP32_OFFBIG_LIBS
7323 {"CS_XBS5_ILP32_OFFBIG_LIBS", _CS_XBS5_ILP32_OFFBIG_LIBS},
7324#endif
7325#ifdef _CS_XBS5_ILP32_OFFBIG_LINTFLAGS
7326 {"CS_XBS5_ILP32_OFFBIG_LINTFLAGS", _CS_XBS5_ILP32_OFFBIG_LINTFLAGS},
7327#endif
7328#ifdef _CS_XBS5_LP64_OFF64_CFLAGS
7329 {"CS_XBS5_LP64_OFF64_CFLAGS", _CS_XBS5_LP64_OFF64_CFLAGS},
7330#endif
7331#ifdef _CS_XBS5_LP64_OFF64_LDFLAGS
7332 {"CS_XBS5_LP64_OFF64_LDFLAGS", _CS_XBS5_LP64_OFF64_LDFLAGS},
7333#endif
7334#ifdef _CS_XBS5_LP64_OFF64_LIBS
7335 {"CS_XBS5_LP64_OFF64_LIBS", _CS_XBS5_LP64_OFF64_LIBS},
7336#endif
7337#ifdef _CS_XBS5_LP64_OFF64_LINTFLAGS
7338 {"CS_XBS5_LP64_OFF64_LINTFLAGS", _CS_XBS5_LP64_OFF64_LINTFLAGS},
7339#endif
7340#ifdef _CS_XBS5_LPBIG_OFFBIG_CFLAGS
7341 {"CS_XBS5_LPBIG_OFFBIG_CFLAGS", _CS_XBS5_LPBIG_OFFBIG_CFLAGS},
7342#endif
7343#ifdef _CS_XBS5_LPBIG_OFFBIG_LDFLAGS
7344 {"CS_XBS5_LPBIG_OFFBIG_LDFLAGS", _CS_XBS5_LPBIG_OFFBIG_LDFLAGS},
7345#endif
7346#ifdef _CS_XBS5_LPBIG_OFFBIG_LIBS
7347 {"CS_XBS5_LPBIG_OFFBIG_LIBS", _CS_XBS5_LPBIG_OFFBIG_LIBS},
7348#endif
7349#ifdef _CS_XBS5_LPBIG_OFFBIG_LINTFLAGS
7350 {"CS_XBS5_LPBIG_OFFBIG_LINTFLAGS", _CS_XBS5_LPBIG_OFFBIG_LINTFLAGS},
7351#endif
Fred Draked86ed291999-12-15 15:34:33 +00007352#ifdef _MIPS_CS_AVAIL_PROCESSORS
7353 {"MIPS_CS_AVAIL_PROCESSORS", _MIPS_CS_AVAIL_PROCESSORS},
7354#endif
7355#ifdef _MIPS_CS_BASE
7356 {"MIPS_CS_BASE", _MIPS_CS_BASE},
7357#endif
7358#ifdef _MIPS_CS_HOSTID
7359 {"MIPS_CS_HOSTID", _MIPS_CS_HOSTID},
7360#endif
7361#ifdef _MIPS_CS_HW_NAME
7362 {"MIPS_CS_HW_NAME", _MIPS_CS_HW_NAME},
7363#endif
7364#ifdef _MIPS_CS_NUM_PROCESSORS
7365 {"MIPS_CS_NUM_PROCESSORS", _MIPS_CS_NUM_PROCESSORS},
7366#endif
7367#ifdef _MIPS_CS_OSREL_MAJ
7368 {"MIPS_CS_OSREL_MAJ", _MIPS_CS_OSREL_MAJ},
7369#endif
7370#ifdef _MIPS_CS_OSREL_MIN
7371 {"MIPS_CS_OSREL_MIN", _MIPS_CS_OSREL_MIN},
7372#endif
7373#ifdef _MIPS_CS_OSREL_PATCH
7374 {"MIPS_CS_OSREL_PATCH", _MIPS_CS_OSREL_PATCH},
7375#endif
7376#ifdef _MIPS_CS_OS_NAME
7377 {"MIPS_CS_OS_NAME", _MIPS_CS_OS_NAME},
7378#endif
7379#ifdef _MIPS_CS_OS_PROVIDER
7380 {"MIPS_CS_OS_PROVIDER", _MIPS_CS_OS_PROVIDER},
7381#endif
7382#ifdef _MIPS_CS_PROCESSORS
7383 {"MIPS_CS_PROCESSORS", _MIPS_CS_PROCESSORS},
7384#endif
7385#ifdef _MIPS_CS_SERIAL
7386 {"MIPS_CS_SERIAL", _MIPS_CS_SERIAL},
7387#endif
7388#ifdef _MIPS_CS_VENDOR
7389 {"MIPS_CS_VENDOR", _MIPS_CS_VENDOR},
7390#endif
Fred Drakec9680921999-12-13 16:37:25 +00007391};
7392
7393static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007394conv_confstr_confname(PyObject *arg, int *valuep)
Fred Drakec9680921999-12-13 16:37:25 +00007395{
7396 return conv_confname(arg, valuep, posix_constants_confstr,
7397 sizeof(posix_constants_confstr)
7398 / sizeof(struct constdef));
7399}
7400
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007401PyDoc_STRVAR(posix_confstr__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007402"confstr(name) -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007403Return a string-valued system configuration variable.");
Fred Drakec9680921999-12-13 16:37:25 +00007404
7405static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007406posix_confstr(PyObject *self, PyObject *args)
Fred Drakec9680921999-12-13 16:37:25 +00007407{
7408 PyObject *result = NULL;
7409 int name;
Neal Norwitz449b24e2006-04-20 06:56:05 +00007410 char buffer[256];
Fred Drakec9680921999-12-13 16:37:25 +00007411
7412 if (PyArg_ParseTuple(args, "O&:confstr", conv_confstr_confname, &name)) {
Skip Montanarodd527fc2006-04-18 00:49:49 +00007413 int len;
Fred Drakec9680921999-12-13 16:37:25 +00007414
Fred Drakec9680921999-12-13 16:37:25 +00007415 errno = 0;
Skip Montanarodd527fc2006-04-18 00:49:49 +00007416 len = confstr(name, buffer, sizeof(buffer));
Skip Montanaro94785ef2006-04-20 01:29:48 +00007417 if (len == 0) {
7418 if (errno) {
7419 posix_error();
7420 }
7421 else {
7422 result = Py_None;
7423 Py_INCREF(Py_None);
7424 }
Fred Drakec9680921999-12-13 16:37:25 +00007425 }
7426 else {
Neal Norwitz0d21b1e2006-04-20 06:44:42 +00007427 if ((unsigned int)len >= sizeof(buffer)) {
Neal Norwitz449b24e2006-04-20 06:56:05 +00007428 result = PyString_FromStringAndSize(NULL, len-1);
Fred Drakec9680921999-12-13 16:37:25 +00007429 if (result != NULL)
Neal Norwitz449b24e2006-04-20 06:56:05 +00007430 confstr(name, PyString_AS_STRING(result), len);
Fred Drakec9680921999-12-13 16:37:25 +00007431 }
7432 else
Neal Norwitz449b24e2006-04-20 06:56:05 +00007433 result = PyString_FromStringAndSize(buffer, len-1);
Fred Drakec9680921999-12-13 16:37:25 +00007434 }
7435 }
7436 return result;
7437}
7438#endif
7439
7440
7441#ifdef HAVE_SYSCONF
7442static struct constdef posix_constants_sysconf[] = {
7443#ifdef _SC_2_CHAR_TERM
7444 {"SC_2_CHAR_TERM", _SC_2_CHAR_TERM},
7445#endif
7446#ifdef _SC_2_C_BIND
7447 {"SC_2_C_BIND", _SC_2_C_BIND},
7448#endif
7449#ifdef _SC_2_C_DEV
7450 {"SC_2_C_DEV", _SC_2_C_DEV},
7451#endif
7452#ifdef _SC_2_C_VERSION
7453 {"SC_2_C_VERSION", _SC_2_C_VERSION},
7454#endif
7455#ifdef _SC_2_FORT_DEV
7456 {"SC_2_FORT_DEV", _SC_2_FORT_DEV},
7457#endif
7458#ifdef _SC_2_FORT_RUN
7459 {"SC_2_FORT_RUN", _SC_2_FORT_RUN},
7460#endif
7461#ifdef _SC_2_LOCALEDEF
7462 {"SC_2_LOCALEDEF", _SC_2_LOCALEDEF},
7463#endif
7464#ifdef _SC_2_SW_DEV
7465 {"SC_2_SW_DEV", _SC_2_SW_DEV},
7466#endif
7467#ifdef _SC_2_UPE
7468 {"SC_2_UPE", _SC_2_UPE},
7469#endif
7470#ifdef _SC_2_VERSION
7471 {"SC_2_VERSION", _SC_2_VERSION},
7472#endif
Fred Draked86ed291999-12-15 15:34:33 +00007473#ifdef _SC_ABI_ASYNCHRONOUS_IO
7474 {"SC_ABI_ASYNCHRONOUS_IO", _SC_ABI_ASYNCHRONOUS_IO},
7475#endif
7476#ifdef _SC_ACL
7477 {"SC_ACL", _SC_ACL},
7478#endif
Fred Drakec9680921999-12-13 16:37:25 +00007479#ifdef _SC_AIO_LISTIO_MAX
7480 {"SC_AIO_LISTIO_MAX", _SC_AIO_LISTIO_MAX},
7481#endif
Fred Drakec9680921999-12-13 16:37:25 +00007482#ifdef _SC_AIO_MAX
7483 {"SC_AIO_MAX", _SC_AIO_MAX},
7484#endif
7485#ifdef _SC_AIO_PRIO_DELTA_MAX
7486 {"SC_AIO_PRIO_DELTA_MAX", _SC_AIO_PRIO_DELTA_MAX},
7487#endif
7488#ifdef _SC_ARG_MAX
7489 {"SC_ARG_MAX", _SC_ARG_MAX},
7490#endif
7491#ifdef _SC_ASYNCHRONOUS_IO
7492 {"SC_ASYNCHRONOUS_IO", _SC_ASYNCHRONOUS_IO},
7493#endif
7494#ifdef _SC_ATEXIT_MAX
7495 {"SC_ATEXIT_MAX", _SC_ATEXIT_MAX},
7496#endif
Fred Draked86ed291999-12-15 15:34:33 +00007497#ifdef _SC_AUDIT
7498 {"SC_AUDIT", _SC_AUDIT},
7499#endif
Fred Drakec9680921999-12-13 16:37:25 +00007500#ifdef _SC_AVPHYS_PAGES
7501 {"SC_AVPHYS_PAGES", _SC_AVPHYS_PAGES},
7502#endif
7503#ifdef _SC_BC_BASE_MAX
7504 {"SC_BC_BASE_MAX", _SC_BC_BASE_MAX},
7505#endif
7506#ifdef _SC_BC_DIM_MAX
7507 {"SC_BC_DIM_MAX", _SC_BC_DIM_MAX},
7508#endif
7509#ifdef _SC_BC_SCALE_MAX
7510 {"SC_BC_SCALE_MAX", _SC_BC_SCALE_MAX},
7511#endif
7512#ifdef _SC_BC_STRING_MAX
7513 {"SC_BC_STRING_MAX", _SC_BC_STRING_MAX},
7514#endif
Fred Draked86ed291999-12-15 15:34:33 +00007515#ifdef _SC_CAP
7516 {"SC_CAP", _SC_CAP},
7517#endif
Fred Drakec9680921999-12-13 16:37:25 +00007518#ifdef _SC_CHARCLASS_NAME_MAX
7519 {"SC_CHARCLASS_NAME_MAX", _SC_CHARCLASS_NAME_MAX},
7520#endif
7521#ifdef _SC_CHAR_BIT
7522 {"SC_CHAR_BIT", _SC_CHAR_BIT},
7523#endif
7524#ifdef _SC_CHAR_MAX
7525 {"SC_CHAR_MAX", _SC_CHAR_MAX},
7526#endif
7527#ifdef _SC_CHAR_MIN
7528 {"SC_CHAR_MIN", _SC_CHAR_MIN},
7529#endif
7530#ifdef _SC_CHILD_MAX
7531 {"SC_CHILD_MAX", _SC_CHILD_MAX},
7532#endif
7533#ifdef _SC_CLK_TCK
7534 {"SC_CLK_TCK", _SC_CLK_TCK},
7535#endif
7536#ifdef _SC_COHER_BLKSZ
7537 {"SC_COHER_BLKSZ", _SC_COHER_BLKSZ},
7538#endif
7539#ifdef _SC_COLL_WEIGHTS_MAX
7540 {"SC_COLL_WEIGHTS_MAX", _SC_COLL_WEIGHTS_MAX},
7541#endif
7542#ifdef _SC_DCACHE_ASSOC
7543 {"SC_DCACHE_ASSOC", _SC_DCACHE_ASSOC},
7544#endif
7545#ifdef _SC_DCACHE_BLKSZ
7546 {"SC_DCACHE_BLKSZ", _SC_DCACHE_BLKSZ},
7547#endif
7548#ifdef _SC_DCACHE_LINESZ
7549 {"SC_DCACHE_LINESZ", _SC_DCACHE_LINESZ},
7550#endif
7551#ifdef _SC_DCACHE_SZ
7552 {"SC_DCACHE_SZ", _SC_DCACHE_SZ},
7553#endif
7554#ifdef _SC_DCACHE_TBLKSZ
7555 {"SC_DCACHE_TBLKSZ", _SC_DCACHE_TBLKSZ},
7556#endif
7557#ifdef _SC_DELAYTIMER_MAX
7558 {"SC_DELAYTIMER_MAX", _SC_DELAYTIMER_MAX},
7559#endif
7560#ifdef _SC_EQUIV_CLASS_MAX
7561 {"SC_EQUIV_CLASS_MAX", _SC_EQUIV_CLASS_MAX},
7562#endif
7563#ifdef _SC_EXPR_NEST_MAX
7564 {"SC_EXPR_NEST_MAX", _SC_EXPR_NEST_MAX},
7565#endif
7566#ifdef _SC_FSYNC
7567 {"SC_FSYNC", _SC_FSYNC},
7568#endif
7569#ifdef _SC_GETGR_R_SIZE_MAX
7570 {"SC_GETGR_R_SIZE_MAX", _SC_GETGR_R_SIZE_MAX},
7571#endif
7572#ifdef _SC_GETPW_R_SIZE_MAX
7573 {"SC_GETPW_R_SIZE_MAX", _SC_GETPW_R_SIZE_MAX},
7574#endif
7575#ifdef _SC_ICACHE_ASSOC
7576 {"SC_ICACHE_ASSOC", _SC_ICACHE_ASSOC},
7577#endif
7578#ifdef _SC_ICACHE_BLKSZ
7579 {"SC_ICACHE_BLKSZ", _SC_ICACHE_BLKSZ},
7580#endif
7581#ifdef _SC_ICACHE_LINESZ
7582 {"SC_ICACHE_LINESZ", _SC_ICACHE_LINESZ},
7583#endif
7584#ifdef _SC_ICACHE_SZ
7585 {"SC_ICACHE_SZ", _SC_ICACHE_SZ},
7586#endif
Fred Draked86ed291999-12-15 15:34:33 +00007587#ifdef _SC_INF
7588 {"SC_INF", _SC_INF},
7589#endif
Fred Drakec9680921999-12-13 16:37:25 +00007590#ifdef _SC_INT_MAX
7591 {"SC_INT_MAX", _SC_INT_MAX},
7592#endif
7593#ifdef _SC_INT_MIN
7594 {"SC_INT_MIN", _SC_INT_MIN},
7595#endif
7596#ifdef _SC_IOV_MAX
7597 {"SC_IOV_MAX", _SC_IOV_MAX},
7598#endif
Fred Draked86ed291999-12-15 15:34:33 +00007599#ifdef _SC_IP_SECOPTS
7600 {"SC_IP_SECOPTS", _SC_IP_SECOPTS},
7601#endif
Fred Drakec9680921999-12-13 16:37:25 +00007602#ifdef _SC_JOB_CONTROL
7603 {"SC_JOB_CONTROL", _SC_JOB_CONTROL},
7604#endif
Fred Draked86ed291999-12-15 15:34:33 +00007605#ifdef _SC_KERN_POINTERS
7606 {"SC_KERN_POINTERS", _SC_KERN_POINTERS},
7607#endif
7608#ifdef _SC_KERN_SIM
7609 {"SC_KERN_SIM", _SC_KERN_SIM},
7610#endif
Fred Drakec9680921999-12-13 16:37:25 +00007611#ifdef _SC_LINE_MAX
7612 {"SC_LINE_MAX", _SC_LINE_MAX},
7613#endif
7614#ifdef _SC_LOGIN_NAME_MAX
7615 {"SC_LOGIN_NAME_MAX", _SC_LOGIN_NAME_MAX},
7616#endif
7617#ifdef _SC_LOGNAME_MAX
7618 {"SC_LOGNAME_MAX", _SC_LOGNAME_MAX},
7619#endif
7620#ifdef _SC_LONG_BIT
7621 {"SC_LONG_BIT", _SC_LONG_BIT},
7622#endif
Fred Draked86ed291999-12-15 15:34:33 +00007623#ifdef _SC_MAC
7624 {"SC_MAC", _SC_MAC},
7625#endif
Fred Drakec9680921999-12-13 16:37:25 +00007626#ifdef _SC_MAPPED_FILES
7627 {"SC_MAPPED_FILES", _SC_MAPPED_FILES},
7628#endif
7629#ifdef _SC_MAXPID
7630 {"SC_MAXPID", _SC_MAXPID},
7631#endif
7632#ifdef _SC_MB_LEN_MAX
7633 {"SC_MB_LEN_MAX", _SC_MB_LEN_MAX},
7634#endif
7635#ifdef _SC_MEMLOCK
7636 {"SC_MEMLOCK", _SC_MEMLOCK},
7637#endif
7638#ifdef _SC_MEMLOCK_RANGE
7639 {"SC_MEMLOCK_RANGE", _SC_MEMLOCK_RANGE},
7640#endif
7641#ifdef _SC_MEMORY_PROTECTION
7642 {"SC_MEMORY_PROTECTION", _SC_MEMORY_PROTECTION},
7643#endif
7644#ifdef _SC_MESSAGE_PASSING
7645 {"SC_MESSAGE_PASSING", _SC_MESSAGE_PASSING},
7646#endif
Fred Draked86ed291999-12-15 15:34:33 +00007647#ifdef _SC_MMAP_FIXED_ALIGNMENT
7648 {"SC_MMAP_FIXED_ALIGNMENT", _SC_MMAP_FIXED_ALIGNMENT},
7649#endif
Fred Drakec9680921999-12-13 16:37:25 +00007650#ifdef _SC_MQ_OPEN_MAX
7651 {"SC_MQ_OPEN_MAX", _SC_MQ_OPEN_MAX},
7652#endif
7653#ifdef _SC_MQ_PRIO_MAX
7654 {"SC_MQ_PRIO_MAX", _SC_MQ_PRIO_MAX},
7655#endif
Fred Draked86ed291999-12-15 15:34:33 +00007656#ifdef _SC_NACLS_MAX
7657 {"SC_NACLS_MAX", _SC_NACLS_MAX},
7658#endif
Fred Drakec9680921999-12-13 16:37:25 +00007659#ifdef _SC_NGROUPS_MAX
7660 {"SC_NGROUPS_MAX", _SC_NGROUPS_MAX},
7661#endif
7662#ifdef _SC_NL_ARGMAX
7663 {"SC_NL_ARGMAX", _SC_NL_ARGMAX},
7664#endif
7665#ifdef _SC_NL_LANGMAX
7666 {"SC_NL_LANGMAX", _SC_NL_LANGMAX},
7667#endif
7668#ifdef _SC_NL_MSGMAX
7669 {"SC_NL_MSGMAX", _SC_NL_MSGMAX},
7670#endif
7671#ifdef _SC_NL_NMAX
7672 {"SC_NL_NMAX", _SC_NL_NMAX},
7673#endif
7674#ifdef _SC_NL_SETMAX
7675 {"SC_NL_SETMAX", _SC_NL_SETMAX},
7676#endif
7677#ifdef _SC_NL_TEXTMAX
7678 {"SC_NL_TEXTMAX", _SC_NL_TEXTMAX},
7679#endif
7680#ifdef _SC_NPROCESSORS_CONF
7681 {"SC_NPROCESSORS_CONF", _SC_NPROCESSORS_CONF},
7682#endif
7683#ifdef _SC_NPROCESSORS_ONLN
7684 {"SC_NPROCESSORS_ONLN", _SC_NPROCESSORS_ONLN},
7685#endif
Fred Draked86ed291999-12-15 15:34:33 +00007686#ifdef _SC_NPROC_CONF
7687 {"SC_NPROC_CONF", _SC_NPROC_CONF},
7688#endif
7689#ifdef _SC_NPROC_ONLN
7690 {"SC_NPROC_ONLN", _SC_NPROC_ONLN},
7691#endif
Fred Drakec9680921999-12-13 16:37:25 +00007692#ifdef _SC_NZERO
7693 {"SC_NZERO", _SC_NZERO},
7694#endif
7695#ifdef _SC_OPEN_MAX
7696 {"SC_OPEN_MAX", _SC_OPEN_MAX},
7697#endif
7698#ifdef _SC_PAGESIZE
7699 {"SC_PAGESIZE", _SC_PAGESIZE},
7700#endif
7701#ifdef _SC_PAGE_SIZE
7702 {"SC_PAGE_SIZE", _SC_PAGE_SIZE},
7703#endif
7704#ifdef _SC_PASS_MAX
7705 {"SC_PASS_MAX", _SC_PASS_MAX},
7706#endif
7707#ifdef _SC_PHYS_PAGES
7708 {"SC_PHYS_PAGES", _SC_PHYS_PAGES},
7709#endif
7710#ifdef _SC_PII
7711 {"SC_PII", _SC_PII},
7712#endif
7713#ifdef _SC_PII_INTERNET
7714 {"SC_PII_INTERNET", _SC_PII_INTERNET},
7715#endif
7716#ifdef _SC_PII_INTERNET_DGRAM
7717 {"SC_PII_INTERNET_DGRAM", _SC_PII_INTERNET_DGRAM},
7718#endif
7719#ifdef _SC_PII_INTERNET_STREAM
7720 {"SC_PII_INTERNET_STREAM", _SC_PII_INTERNET_STREAM},
7721#endif
7722#ifdef _SC_PII_OSI
7723 {"SC_PII_OSI", _SC_PII_OSI},
7724#endif
7725#ifdef _SC_PII_OSI_CLTS
7726 {"SC_PII_OSI_CLTS", _SC_PII_OSI_CLTS},
7727#endif
7728#ifdef _SC_PII_OSI_COTS
7729 {"SC_PII_OSI_COTS", _SC_PII_OSI_COTS},
7730#endif
7731#ifdef _SC_PII_OSI_M
7732 {"SC_PII_OSI_M", _SC_PII_OSI_M},
7733#endif
7734#ifdef _SC_PII_SOCKET
7735 {"SC_PII_SOCKET", _SC_PII_SOCKET},
7736#endif
7737#ifdef _SC_PII_XTI
7738 {"SC_PII_XTI", _SC_PII_XTI},
7739#endif
7740#ifdef _SC_POLL
7741 {"SC_POLL", _SC_POLL},
7742#endif
7743#ifdef _SC_PRIORITIZED_IO
7744 {"SC_PRIORITIZED_IO", _SC_PRIORITIZED_IO},
7745#endif
7746#ifdef _SC_PRIORITY_SCHEDULING
7747 {"SC_PRIORITY_SCHEDULING", _SC_PRIORITY_SCHEDULING},
7748#endif
7749#ifdef _SC_REALTIME_SIGNALS
7750 {"SC_REALTIME_SIGNALS", _SC_REALTIME_SIGNALS},
7751#endif
7752#ifdef _SC_RE_DUP_MAX
7753 {"SC_RE_DUP_MAX", _SC_RE_DUP_MAX},
7754#endif
7755#ifdef _SC_RTSIG_MAX
7756 {"SC_RTSIG_MAX", _SC_RTSIG_MAX},
7757#endif
7758#ifdef _SC_SAVED_IDS
7759 {"SC_SAVED_IDS", _SC_SAVED_IDS},
7760#endif
7761#ifdef _SC_SCHAR_MAX
7762 {"SC_SCHAR_MAX", _SC_SCHAR_MAX},
7763#endif
7764#ifdef _SC_SCHAR_MIN
7765 {"SC_SCHAR_MIN", _SC_SCHAR_MIN},
7766#endif
7767#ifdef _SC_SELECT
7768 {"SC_SELECT", _SC_SELECT},
7769#endif
7770#ifdef _SC_SEMAPHORES
7771 {"SC_SEMAPHORES", _SC_SEMAPHORES},
7772#endif
7773#ifdef _SC_SEM_NSEMS_MAX
7774 {"SC_SEM_NSEMS_MAX", _SC_SEM_NSEMS_MAX},
7775#endif
7776#ifdef _SC_SEM_VALUE_MAX
7777 {"SC_SEM_VALUE_MAX", _SC_SEM_VALUE_MAX},
7778#endif
7779#ifdef _SC_SHARED_MEMORY_OBJECTS
7780 {"SC_SHARED_MEMORY_OBJECTS", _SC_SHARED_MEMORY_OBJECTS},
7781#endif
7782#ifdef _SC_SHRT_MAX
7783 {"SC_SHRT_MAX", _SC_SHRT_MAX},
7784#endif
7785#ifdef _SC_SHRT_MIN
7786 {"SC_SHRT_MIN", _SC_SHRT_MIN},
7787#endif
7788#ifdef _SC_SIGQUEUE_MAX
7789 {"SC_SIGQUEUE_MAX", _SC_SIGQUEUE_MAX},
7790#endif
7791#ifdef _SC_SIGRT_MAX
7792 {"SC_SIGRT_MAX", _SC_SIGRT_MAX},
7793#endif
7794#ifdef _SC_SIGRT_MIN
7795 {"SC_SIGRT_MIN", _SC_SIGRT_MIN},
7796#endif
Fred Draked86ed291999-12-15 15:34:33 +00007797#ifdef _SC_SOFTPOWER
7798 {"SC_SOFTPOWER", _SC_SOFTPOWER},
7799#endif
Fred Drakec9680921999-12-13 16:37:25 +00007800#ifdef _SC_SPLIT_CACHE
7801 {"SC_SPLIT_CACHE", _SC_SPLIT_CACHE},
7802#endif
7803#ifdef _SC_SSIZE_MAX
7804 {"SC_SSIZE_MAX", _SC_SSIZE_MAX},
7805#endif
7806#ifdef _SC_STACK_PROT
7807 {"SC_STACK_PROT", _SC_STACK_PROT},
7808#endif
7809#ifdef _SC_STREAM_MAX
7810 {"SC_STREAM_MAX", _SC_STREAM_MAX},
7811#endif
7812#ifdef _SC_SYNCHRONIZED_IO
7813 {"SC_SYNCHRONIZED_IO", _SC_SYNCHRONIZED_IO},
7814#endif
7815#ifdef _SC_THREADS
7816 {"SC_THREADS", _SC_THREADS},
7817#endif
7818#ifdef _SC_THREAD_ATTR_STACKADDR
7819 {"SC_THREAD_ATTR_STACKADDR", _SC_THREAD_ATTR_STACKADDR},
7820#endif
7821#ifdef _SC_THREAD_ATTR_STACKSIZE
7822 {"SC_THREAD_ATTR_STACKSIZE", _SC_THREAD_ATTR_STACKSIZE},
7823#endif
7824#ifdef _SC_THREAD_DESTRUCTOR_ITERATIONS
7825 {"SC_THREAD_DESTRUCTOR_ITERATIONS", _SC_THREAD_DESTRUCTOR_ITERATIONS},
7826#endif
7827#ifdef _SC_THREAD_KEYS_MAX
7828 {"SC_THREAD_KEYS_MAX", _SC_THREAD_KEYS_MAX},
7829#endif
7830#ifdef _SC_THREAD_PRIORITY_SCHEDULING
7831 {"SC_THREAD_PRIORITY_SCHEDULING", _SC_THREAD_PRIORITY_SCHEDULING},
7832#endif
7833#ifdef _SC_THREAD_PRIO_INHERIT
7834 {"SC_THREAD_PRIO_INHERIT", _SC_THREAD_PRIO_INHERIT},
7835#endif
7836#ifdef _SC_THREAD_PRIO_PROTECT
7837 {"SC_THREAD_PRIO_PROTECT", _SC_THREAD_PRIO_PROTECT},
7838#endif
7839#ifdef _SC_THREAD_PROCESS_SHARED
7840 {"SC_THREAD_PROCESS_SHARED", _SC_THREAD_PROCESS_SHARED},
7841#endif
7842#ifdef _SC_THREAD_SAFE_FUNCTIONS
7843 {"SC_THREAD_SAFE_FUNCTIONS", _SC_THREAD_SAFE_FUNCTIONS},
7844#endif
7845#ifdef _SC_THREAD_STACK_MIN
7846 {"SC_THREAD_STACK_MIN", _SC_THREAD_STACK_MIN},
7847#endif
7848#ifdef _SC_THREAD_THREADS_MAX
7849 {"SC_THREAD_THREADS_MAX", _SC_THREAD_THREADS_MAX},
7850#endif
7851#ifdef _SC_TIMERS
7852 {"SC_TIMERS", _SC_TIMERS},
7853#endif
7854#ifdef _SC_TIMER_MAX
7855 {"SC_TIMER_MAX", _SC_TIMER_MAX},
7856#endif
7857#ifdef _SC_TTY_NAME_MAX
7858 {"SC_TTY_NAME_MAX", _SC_TTY_NAME_MAX},
7859#endif
7860#ifdef _SC_TZNAME_MAX
7861 {"SC_TZNAME_MAX", _SC_TZNAME_MAX},
7862#endif
7863#ifdef _SC_T_IOV_MAX
7864 {"SC_T_IOV_MAX", _SC_T_IOV_MAX},
7865#endif
7866#ifdef _SC_UCHAR_MAX
7867 {"SC_UCHAR_MAX", _SC_UCHAR_MAX},
7868#endif
7869#ifdef _SC_UINT_MAX
7870 {"SC_UINT_MAX", _SC_UINT_MAX},
7871#endif
7872#ifdef _SC_UIO_MAXIOV
7873 {"SC_UIO_MAXIOV", _SC_UIO_MAXIOV},
7874#endif
7875#ifdef _SC_ULONG_MAX
7876 {"SC_ULONG_MAX", _SC_ULONG_MAX},
7877#endif
7878#ifdef _SC_USHRT_MAX
7879 {"SC_USHRT_MAX", _SC_USHRT_MAX},
7880#endif
7881#ifdef _SC_VERSION
7882 {"SC_VERSION", _SC_VERSION},
7883#endif
7884#ifdef _SC_WORD_BIT
7885 {"SC_WORD_BIT", _SC_WORD_BIT},
7886#endif
7887#ifdef _SC_XBS5_ILP32_OFF32
7888 {"SC_XBS5_ILP32_OFF32", _SC_XBS5_ILP32_OFF32},
7889#endif
7890#ifdef _SC_XBS5_ILP32_OFFBIG
7891 {"SC_XBS5_ILP32_OFFBIG", _SC_XBS5_ILP32_OFFBIG},
7892#endif
7893#ifdef _SC_XBS5_LP64_OFF64
7894 {"SC_XBS5_LP64_OFF64", _SC_XBS5_LP64_OFF64},
7895#endif
7896#ifdef _SC_XBS5_LPBIG_OFFBIG
7897 {"SC_XBS5_LPBIG_OFFBIG", _SC_XBS5_LPBIG_OFFBIG},
7898#endif
7899#ifdef _SC_XOPEN_CRYPT
7900 {"SC_XOPEN_CRYPT", _SC_XOPEN_CRYPT},
7901#endif
7902#ifdef _SC_XOPEN_ENH_I18N
7903 {"SC_XOPEN_ENH_I18N", _SC_XOPEN_ENH_I18N},
7904#endif
7905#ifdef _SC_XOPEN_LEGACY
7906 {"SC_XOPEN_LEGACY", _SC_XOPEN_LEGACY},
7907#endif
7908#ifdef _SC_XOPEN_REALTIME
7909 {"SC_XOPEN_REALTIME", _SC_XOPEN_REALTIME},
7910#endif
7911#ifdef _SC_XOPEN_REALTIME_THREADS
7912 {"SC_XOPEN_REALTIME_THREADS", _SC_XOPEN_REALTIME_THREADS},
7913#endif
7914#ifdef _SC_XOPEN_SHM
7915 {"SC_XOPEN_SHM", _SC_XOPEN_SHM},
7916#endif
7917#ifdef _SC_XOPEN_UNIX
7918 {"SC_XOPEN_UNIX", _SC_XOPEN_UNIX},
7919#endif
7920#ifdef _SC_XOPEN_VERSION
7921 {"SC_XOPEN_VERSION", _SC_XOPEN_VERSION},
7922#endif
7923#ifdef _SC_XOPEN_XCU_VERSION
7924 {"SC_XOPEN_XCU_VERSION", _SC_XOPEN_XCU_VERSION},
7925#endif
7926#ifdef _SC_XOPEN_XPG2
7927 {"SC_XOPEN_XPG2", _SC_XOPEN_XPG2},
7928#endif
7929#ifdef _SC_XOPEN_XPG3
7930 {"SC_XOPEN_XPG3", _SC_XOPEN_XPG3},
7931#endif
7932#ifdef _SC_XOPEN_XPG4
7933 {"SC_XOPEN_XPG4", _SC_XOPEN_XPG4},
7934#endif
7935};
7936
7937static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007938conv_sysconf_confname(PyObject *arg, int *valuep)
Fred Drakec9680921999-12-13 16:37:25 +00007939{
7940 return conv_confname(arg, valuep, posix_constants_sysconf,
7941 sizeof(posix_constants_sysconf)
7942 / sizeof(struct constdef));
7943}
7944
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007945PyDoc_STRVAR(posix_sysconf__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007946"sysconf(name) -> integer\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007947Return an integer-valued system configuration variable.");
Fred Drakec9680921999-12-13 16:37:25 +00007948
7949static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007950posix_sysconf(PyObject *self, PyObject *args)
Fred Drakec9680921999-12-13 16:37:25 +00007951{
7952 PyObject *result = NULL;
7953 int name;
7954
7955 if (PyArg_ParseTuple(args, "O&:sysconf", conv_sysconf_confname, &name)) {
7956 int value;
7957
7958 errno = 0;
7959 value = sysconf(name);
7960 if (value == -1 && errno != 0)
7961 posix_error();
7962 else
7963 result = PyInt_FromLong(value);
7964 }
7965 return result;
7966}
7967#endif
7968
7969
Fred Drakebec628d1999-12-15 18:31:10 +00007970/* This code is used to ensure that the tables of configuration value names
7971 * are in sorted order as required by conv_confname(), and also to build the
7972 * the exported dictionaries that are used to publish information about the
7973 * names available on the host platform.
7974 *
7975 * Sorting the table at runtime ensures that the table is properly ordered
7976 * when used, even for platforms we're not able to test on. It also makes
7977 * it easier to add additional entries to the tables.
Fred Draked86ed291999-12-15 15:34:33 +00007978 */
Fred Drakebec628d1999-12-15 18:31:10 +00007979
7980static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007981cmp_constdefs(const void *v1, const void *v2)
Fred Drakebec628d1999-12-15 18:31:10 +00007982{
7983 const struct constdef *c1 =
7984 (const struct constdef *) v1;
7985 const struct constdef *c2 =
7986 (const struct constdef *) v2;
7987
7988 return strcmp(c1->name, c2->name);
7989}
7990
7991static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007992setup_confname_table(struct constdef *table, size_t tablesize,
Fred Drake4d1e64b2002-04-15 19:40:07 +00007993 char *tablename, PyObject *module)
Fred Draked86ed291999-12-15 15:34:33 +00007994{
Fred Drakebec628d1999-12-15 18:31:10 +00007995 PyObject *d = NULL;
Barry Warsaw3155db32000-04-13 15:20:40 +00007996 size_t i;
Fred Drakebec628d1999-12-15 18:31:10 +00007997
7998 qsort(table, tablesize, sizeof(struct constdef), cmp_constdefs);
7999 d = PyDict_New();
Barry Warsaw3155db32000-04-13 15:20:40 +00008000 if (d == NULL)
8001 return -1;
Fred Draked86ed291999-12-15 15:34:33 +00008002
Barry Warsaw3155db32000-04-13 15:20:40 +00008003 for (i=0; i < tablesize; ++i) {
8004 PyObject *o = PyInt_FromLong(table[i].value);
8005 if (o == NULL || PyDict_SetItemString(d, table[i].name, o) == -1) {
8006 Py_XDECREF(o);
8007 Py_DECREF(d);
8008 return -1;
Fred Draked86ed291999-12-15 15:34:33 +00008009 }
Barry Warsaw3155db32000-04-13 15:20:40 +00008010 Py_DECREF(o);
Fred Draked86ed291999-12-15 15:34:33 +00008011 }
Fred Drake4d1e64b2002-04-15 19:40:07 +00008012 return PyModule_AddObject(module, tablename, d);
Fred Draked86ed291999-12-15 15:34:33 +00008013}
8014
Fred Drakebec628d1999-12-15 18:31:10 +00008015/* Return -1 on failure, 0 on success. */
8016static int
Fred Drake4d1e64b2002-04-15 19:40:07 +00008017setup_confname_tables(PyObject *module)
Fred Draked86ed291999-12-15 15:34:33 +00008018{
8019#if defined(HAVE_FPATHCONF) || defined(HAVE_PATHCONF)
Fred Drakebec628d1999-12-15 18:31:10 +00008020 if (setup_confname_table(posix_constants_pathconf,
Fred Draked86ed291999-12-15 15:34:33 +00008021 sizeof(posix_constants_pathconf)
8022 / sizeof(struct constdef),
Fred Drake4d1e64b2002-04-15 19:40:07 +00008023 "pathconf_names", module))
Fred Drakebec628d1999-12-15 18:31:10 +00008024 return -1;
Fred Draked86ed291999-12-15 15:34:33 +00008025#endif
8026#ifdef HAVE_CONFSTR
Fred Drakebec628d1999-12-15 18:31:10 +00008027 if (setup_confname_table(posix_constants_confstr,
Fred Draked86ed291999-12-15 15:34:33 +00008028 sizeof(posix_constants_confstr)
8029 / sizeof(struct constdef),
Fred Drake4d1e64b2002-04-15 19:40:07 +00008030 "confstr_names", module))
Fred Drakebec628d1999-12-15 18:31:10 +00008031 return -1;
Fred Draked86ed291999-12-15 15:34:33 +00008032#endif
8033#ifdef HAVE_SYSCONF
Fred Drakebec628d1999-12-15 18:31:10 +00008034 if (setup_confname_table(posix_constants_sysconf,
Fred Draked86ed291999-12-15 15:34:33 +00008035 sizeof(posix_constants_sysconf)
8036 / sizeof(struct constdef),
Fred Drake4d1e64b2002-04-15 19:40:07 +00008037 "sysconf_names", module))
Fred Drakebec628d1999-12-15 18:31:10 +00008038 return -1;
Fred Draked86ed291999-12-15 15:34:33 +00008039#endif
Fred Drakebec628d1999-12-15 18:31:10 +00008040 return 0;
Fred Draked86ed291999-12-15 15:34:33 +00008041}
Fred Draked86ed291999-12-15 15:34:33 +00008042
8043
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008044PyDoc_STRVAR(posix_abort__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00008045"abort() -> does not return!\n\n\
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008046Abort the interpreter immediately. This 'dumps core' or otherwise fails\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008047in the hardest way possible on the hosting operating system.");
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008048
8049static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00008050posix_abort(PyObject *self, PyObject *noargs)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008051{
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008052 abort();
8053 /*NOTREACHED*/
8054 Py_FatalError("abort() called from Python code didn't abort!");
8055 return NULL;
8056}
Fred Drakebec628d1999-12-15 18:31:10 +00008057
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00008058#ifdef MS_WINDOWS
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008059PyDoc_STRVAR(win32_startfile__doc__,
Georg Brandlf4f44152006-02-18 22:29:33 +00008060"startfile(filepath [, operation]) - Start a file with its associated\n\
8061application.\n\
Tim Petersf58a7aa2000-09-22 10:05:54 +00008062\n\
Georg Brandlf4f44152006-02-18 22:29:33 +00008063When \"operation\" is not specified or \"open\", this acts like\n\
8064double-clicking the file in Explorer, or giving the file name as an\n\
8065argument to the DOS \"start\" command: the file is opened with whatever\n\
8066application (if any) its extension is associated.\n\
8067When another \"operation\" is given, it specifies what should be done with\n\
8068the file. A typical operation is \"print\".\n\
Tim Petersf58a7aa2000-09-22 10:05:54 +00008069\n\
8070startfile returns as soon as the associated application is launched.\n\
8071There is no option to wait for the application to close, and no way\n\
8072to retrieve the application's exit status.\n\
8073\n\
8074The filepath is relative to the current directory. If you want to use\n\
8075an absolute path, make sure the first character is not a slash (\"/\");\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008076the underlying Win32 ShellExecute function doesn't work if it is.");
Tim Petersf58a7aa2000-09-22 10:05:54 +00008077
8078static PyObject *
8079win32_startfile(PyObject *self, PyObject *args)
8080{
8081 char *filepath;
Georg Brandlf4f44152006-02-18 22:29:33 +00008082 char *operation = NULL;
Tim Petersf58a7aa2000-09-22 10:05:54 +00008083 HINSTANCE rc;
Georg Brandlad89dc82006-04-03 12:26:26 +00008084#ifdef Py_WIN_WIDE_FILENAMES
8085 if (unicode_file_names()) {
Martin v. Löwis5fe715f2006-04-03 23:01:24 +00008086 PyObject *unipath, *woperation = NULL;
Georg Brandlad89dc82006-04-03 12:26:26 +00008087 if (!PyArg_ParseTuple(args, "U|s:startfile",
8088 &unipath, &operation)) {
8089 PyErr_Clear();
8090 goto normal;
8091 }
8092
Martin v. Löwis5fe715f2006-04-03 23:01:24 +00008093
8094 if (operation) {
8095 woperation = PyUnicode_DecodeASCII(operation,
8096 strlen(operation), NULL);
8097 if (!woperation) {
8098 PyErr_Clear();
8099 operation = NULL;
8100 goto normal;
8101 }
Georg Brandlad89dc82006-04-03 12:26:26 +00008102 }
8103
8104 Py_BEGIN_ALLOW_THREADS
Martin v. Löwis5fe715f2006-04-03 23:01:24 +00008105 rc = ShellExecuteW((HWND)0, woperation ? PyUnicode_AS_UNICODE(woperation) : 0,
Georg Brandlad89dc82006-04-03 12:26:26 +00008106 PyUnicode_AS_UNICODE(unipath),
Georg Brandlad89dc82006-04-03 12:26:26 +00008107 NULL, NULL, SW_SHOWNORMAL);
8108 Py_END_ALLOW_THREADS
8109
Martin v. Löwis5fe715f2006-04-03 23:01:24 +00008110 Py_XDECREF(woperation);
Georg Brandlad89dc82006-04-03 12:26:26 +00008111 if (rc <= (HINSTANCE)32) {
8112 PyObject *errval = win32_error_unicode("startfile",
8113 PyUnicode_AS_UNICODE(unipath));
8114 return errval;
8115 }
8116 Py_INCREF(Py_None);
8117 return Py_None;
8118 }
8119#endif
8120
8121normal:
Georg Brandlf4f44152006-02-18 22:29:33 +00008122 if (!PyArg_ParseTuple(args, "et|s:startfile",
8123 Py_FileSystemDefaultEncoding, &filepath,
8124 &operation))
Tim Petersf58a7aa2000-09-22 10:05:54 +00008125 return NULL;
8126 Py_BEGIN_ALLOW_THREADS
Georg Brandlf4f44152006-02-18 22:29:33 +00008127 rc = ShellExecute((HWND)0, operation, filepath,
8128 NULL, NULL, SW_SHOWNORMAL);
Tim Petersf58a7aa2000-09-22 10:05:54 +00008129 Py_END_ALLOW_THREADS
Georg Brandle9f8ec92005-09-25 06:16:40 +00008130 if (rc <= (HINSTANCE)32) {
8131 PyObject *errval = win32_error("startfile", filepath);
8132 PyMem_Free(filepath);
8133 return errval;
8134 }
8135 PyMem_Free(filepath);
Tim Petersf58a7aa2000-09-22 10:05:54 +00008136 Py_INCREF(Py_None);
8137 return Py_None;
8138}
8139#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008140
Martin v. Löwis438b5342002-12-27 10:16:42 +00008141#ifdef HAVE_GETLOADAVG
8142PyDoc_STRVAR(posix_getloadavg__doc__,
8143"getloadavg() -> (float, float, float)\n\n\
8144Return the number of processes in the system run queue averaged over\n\
8145the last 1, 5, and 15 minutes or raises OSError if the load average\n\
8146was unobtainable");
8147
8148static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00008149posix_getloadavg(PyObject *self, PyObject *noargs)
Martin v. Löwis438b5342002-12-27 10:16:42 +00008150{
8151 double loadavg[3];
Martin v. Löwis438b5342002-12-27 10:16:42 +00008152 if (getloadavg(loadavg, 3)!=3) {
8153 PyErr_SetString(PyExc_OSError, "Load averages are unobtainable");
8154 return NULL;
8155 } else
8156 return Py_BuildValue("ddd", loadavg[0], loadavg[1], loadavg[2]);
8157}
8158#endif
8159
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008160#ifdef MS_WINDOWS
8161
8162PyDoc_STRVAR(win32_urandom__doc__,
8163"urandom(n) -> str\n\n\
8164Return a string of n random bytes suitable for cryptographic use.");
8165
8166typedef BOOL (WINAPI *CRYPTACQUIRECONTEXTA)(HCRYPTPROV *phProv,\
8167 LPCSTR pszContainer, LPCSTR pszProvider, DWORD dwProvType,\
8168 DWORD dwFlags );
8169typedef BOOL (WINAPI *CRYPTGENRANDOM)(HCRYPTPROV hProv, DWORD dwLen,\
8170 BYTE *pbBuffer );
8171
8172static CRYPTGENRANDOM pCryptGenRandom = NULL;
Martin v. Löwisaf699dd2007-09-04 09:51:57 +00008173/* This handle is never explicitly released. Instead, the operating
8174 system will release it when the process terminates. */
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008175static HCRYPTPROV hCryptProv = 0;
8176
Tim Peters4ad82172004-08-30 17:02:04 +00008177static PyObject*
8178win32_urandom(PyObject *self, PyObject *args)
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008179{
Tim Petersd3115382004-08-30 17:36:46 +00008180 int howMany;
8181 PyObject* result;
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008182
Tim Peters4ad82172004-08-30 17:02:04 +00008183 /* Read arguments */
Tim Peters9b279a82004-08-30 17:10:53 +00008184 if (! PyArg_ParseTuple(args, "i:urandom", &howMany))
Tim Peters4ad82172004-08-30 17:02:04 +00008185 return NULL;
Tim Peters51eba612004-08-30 17:08:02 +00008186 if (howMany < 0)
8187 return PyErr_Format(PyExc_ValueError,
8188 "negative argument not allowed");
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008189
Tim Peters4ad82172004-08-30 17:02:04 +00008190 if (hCryptProv == 0) {
8191 HINSTANCE hAdvAPI32 = NULL;
8192 CRYPTACQUIRECONTEXTA pCryptAcquireContext = NULL;
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008193
Tim Peters4ad82172004-08-30 17:02:04 +00008194 /* Obtain handle to the DLL containing CryptoAPI
8195 This should not fail */
8196 hAdvAPI32 = GetModuleHandle("advapi32.dll");
8197 if(hAdvAPI32 == NULL)
8198 return win32_error("GetModuleHandle", NULL);
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008199
Tim Peters4ad82172004-08-30 17:02:04 +00008200 /* Obtain pointers to the CryptoAPI functions
8201 This will fail on some early versions of Win95 */
8202 pCryptAcquireContext = (CRYPTACQUIRECONTEXTA)GetProcAddress(
8203 hAdvAPI32,
8204 "CryptAcquireContextA");
8205 if (pCryptAcquireContext == NULL)
8206 return PyErr_Format(PyExc_NotImplementedError,
8207 "CryptAcquireContextA not found");
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008208
Tim Peters4ad82172004-08-30 17:02:04 +00008209 pCryptGenRandom = (CRYPTGENRANDOM)GetProcAddress(
8210 hAdvAPI32, "CryptGenRandom");
Georg Brandl74bb7832006-09-06 06:03:59 +00008211 if (pCryptGenRandom == NULL)
Tim Peters4ad82172004-08-30 17:02:04 +00008212 return PyErr_Format(PyExc_NotImplementedError,
8213 "CryptGenRandom not found");
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008214
Tim Peters4ad82172004-08-30 17:02:04 +00008215 /* Acquire context */
8216 if (! pCryptAcquireContext(&hCryptProv, NULL, NULL,
8217 PROV_RSA_FULL, CRYPT_VERIFYCONTEXT))
8218 return win32_error("CryptAcquireContext", NULL);
8219 }
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008220
Tim Peters4ad82172004-08-30 17:02:04 +00008221 /* Allocate bytes */
Tim Petersd3115382004-08-30 17:36:46 +00008222 result = PyString_FromStringAndSize(NULL, howMany);
8223 if (result != NULL) {
8224 /* Get random data */
8225 if (! pCryptGenRandom(hCryptProv, howMany, (unsigned char*)
8226 PyString_AS_STRING(result))) {
8227 Py_DECREF(result);
8228 return win32_error("CryptGenRandom", NULL);
8229 }
Tim Peters4ad82172004-08-30 17:02:04 +00008230 }
Tim Petersd3115382004-08-30 17:36:46 +00008231 return result;
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008232}
8233#endif
Martin v. Löwis438b5342002-12-27 10:16:42 +00008234
Neal Norwitz2a30cd02006-07-10 01:18:57 +00008235#ifdef __VMS
8236/* Use openssl random routine */
8237#include <openssl/rand.h>
8238PyDoc_STRVAR(vms_urandom__doc__,
8239"urandom(n) -> str\n\n\
8240Return a string of n random bytes suitable for cryptographic use.");
8241
8242static PyObject*
8243vms_urandom(PyObject *self, PyObject *args)
8244{
8245 int howMany;
8246 PyObject* result;
8247
8248 /* Read arguments */
8249 if (! PyArg_ParseTuple(args, "i:urandom", &howMany))
8250 return NULL;
8251 if (howMany < 0)
8252 return PyErr_Format(PyExc_ValueError,
8253 "negative argument not allowed");
8254
8255 /* Allocate bytes */
8256 result = PyString_FromStringAndSize(NULL, howMany);
8257 if (result != NULL) {
8258 /* Get random data */
8259 if (RAND_pseudo_bytes((unsigned char*)
8260 PyString_AS_STRING(result),
8261 howMany) < 0) {
8262 Py_DECREF(result);
8263 return PyErr_Format(PyExc_ValueError,
8264 "RAND_pseudo_bytes");
8265 }
8266 }
8267 return result;
8268}
8269#endif
8270
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008271static PyMethodDef posix_methods[] = {
8272 {"access", posix_access, METH_VARARGS, posix_access__doc__},
8273#ifdef HAVE_TTYNAME
8274 {"ttyname", posix_ttyname, METH_VARARGS, posix_ttyname__doc__},
8275#endif
8276 {"chdir", posix_chdir, METH_VARARGS, posix_chdir__doc__},
Martin v. Löwis382abef2007-02-19 10:55:19 +00008277#ifdef HAVE_CHFLAGS
8278 {"chflags", posix_chflags, METH_VARARGS, posix_chflags__doc__},
8279#endif /* HAVE_CHFLAGS */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008280 {"chmod", posix_chmod, METH_VARARGS, posix_chmod__doc__},
Christian Heimes36281872007-11-30 21:11:28 +00008281#ifdef HAVE_FCHMOD
8282 {"fchmod", posix_fchmod, METH_VARARGS, posix_fchmod__doc__},
8283#endif /* HAVE_FCHMOD */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008284#ifdef HAVE_CHOWN
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008285 {"chown", posix_chown, METH_VARARGS, posix_chown__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008286#endif /* HAVE_CHOWN */
Christian Heimes36281872007-11-30 21:11:28 +00008287#ifdef HAVE_LCHMOD
8288 {"lchmod", posix_lchmod, METH_VARARGS, posix_lchmod__doc__},
8289#endif /* HAVE_LCHMOD */
8290#ifdef HAVE_FCHOWN
8291 {"fchown", posix_fchown, METH_VARARGS, posix_fchown__doc__},
8292#endif /* HAVE_FCHOWN */
Martin v. Löwis382abef2007-02-19 10:55:19 +00008293#ifdef HAVE_LCHFLAGS
8294 {"lchflags", posix_lchflags, METH_VARARGS, posix_lchflags__doc__},
8295#endif /* HAVE_LCHFLAGS */
Martin v. Löwis0cec0ff2002-07-28 16:33:45 +00008296#ifdef HAVE_LCHOWN
8297 {"lchown", posix_lchown, METH_VARARGS, posix_lchown__doc__},
8298#endif /* HAVE_LCHOWN */
Martin v. Löwis244edc82001-10-04 22:44:26 +00008299#ifdef HAVE_CHROOT
8300 {"chroot", posix_chroot, METH_VARARGS, posix_chroot__doc__},
8301#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008302#ifdef HAVE_CTERMID
Neal Norwitze241ce82003-02-17 18:17:05 +00008303 {"ctermid", posix_ctermid, METH_NOARGS, posix_ctermid__doc__},
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008304#endif
Guido van Rossum36bc6801995-06-14 22:54:23 +00008305#ifdef HAVE_GETCWD
Neal Norwitze241ce82003-02-17 18:17:05 +00008306 {"getcwd", posix_getcwd, METH_NOARGS, posix_getcwd__doc__},
Walter Dörwald3b918c32002-11-21 20:18:46 +00008307#ifdef Py_USING_UNICODE
Neal Norwitze241ce82003-02-17 18:17:05 +00008308 {"getcwdu", posix_getcwdu, METH_NOARGS, posix_getcwdu__doc__},
Guido van Rossum36bc6801995-06-14 22:54:23 +00008309#endif
Walter Dörwald3b918c32002-11-21 20:18:46 +00008310#endif
Guido van Rossumb6775db1994-08-01 11:34:53 +00008311#ifdef HAVE_LINK
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008312 {"link", posix_link, METH_VARARGS, posix_link__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008313#endif /* HAVE_LINK */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008314 {"listdir", posix_listdir, METH_VARARGS, posix_listdir__doc__},
8315 {"lstat", posix_lstat, METH_VARARGS, posix_lstat__doc__},
8316 {"mkdir", posix_mkdir, METH_VARARGS, posix_mkdir__doc__},
Guido van Rossumb6775db1994-08-01 11:34:53 +00008317#ifdef HAVE_NICE
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008318 {"nice", posix_nice, METH_VARARGS, posix_nice__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008319#endif /* HAVE_NICE */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008320#ifdef HAVE_READLINK
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008321 {"readlink", posix_readlink, METH_VARARGS, posix_readlink__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008322#endif /* HAVE_READLINK */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008323 {"rename", posix_rename, METH_VARARGS, posix_rename__doc__},
8324 {"rmdir", posix_rmdir, METH_VARARGS, posix_rmdir__doc__},
8325 {"stat", posix_stat, METH_VARARGS, posix_stat__doc__},
Martin v. Löwisf607bda2002-10-16 18:27:39 +00008326 {"stat_float_times", stat_float_times, METH_VARARGS, stat_float_times__doc__},
Guido van Rossumb6775db1994-08-01 11:34:53 +00008327#ifdef HAVE_SYMLINK
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008328 {"symlink", posix_symlink, METH_VARARGS, posix_symlink__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008329#endif /* HAVE_SYMLINK */
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008330#ifdef HAVE_SYSTEM
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008331 {"system", posix_system, METH_VARARGS, posix_system__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008332#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008333 {"umask", posix_umask, METH_VARARGS, posix_umask__doc__},
Guido van Rossumb6775db1994-08-01 11:34:53 +00008334#ifdef HAVE_UNAME
Neal Norwitze241ce82003-02-17 18:17:05 +00008335 {"uname", posix_uname, METH_NOARGS, posix_uname__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008336#endif /* HAVE_UNAME */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008337 {"unlink", posix_unlink, METH_VARARGS, posix_unlink__doc__},
8338 {"remove", posix_unlink, METH_VARARGS, posix_remove__doc__},
8339 {"utime", posix_utime, METH_VARARGS, posix_utime__doc__},
Guido van Rossumb6775db1994-08-01 11:34:53 +00008340#ifdef HAVE_TIMES
Neal Norwitze241ce82003-02-17 18:17:05 +00008341 {"times", posix_times, METH_NOARGS, posix_times__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008342#endif /* HAVE_TIMES */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008343 {"_exit", posix__exit, METH_VARARGS, posix__exit__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008344#ifdef HAVE_EXECV
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008345 {"execv", posix_execv, METH_VARARGS, posix_execv__doc__},
8346 {"execve", posix_execve, METH_VARARGS, posix_execve__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008347#endif /* HAVE_EXECV */
Guido van Rossuma1065681999-01-25 23:20:23 +00008348#ifdef HAVE_SPAWNV
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008349 {"spawnv", posix_spawnv, METH_VARARGS, posix_spawnv__doc__},
8350 {"spawnve", posix_spawnve, METH_VARARGS, posix_spawnve__doc__},
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00008351#if defined(PYOS_OS2)
8352 {"spawnvp", posix_spawnvp, METH_VARARGS, posix_spawnvp__doc__},
8353 {"spawnvpe", posix_spawnvpe, METH_VARARGS, posix_spawnvpe__doc__},
8354#endif /* PYOS_OS2 */
Guido van Rossuma1065681999-01-25 23:20:23 +00008355#endif /* HAVE_SPAWNV */
Guido van Rossum2242f2f2001-04-11 20:58:20 +00008356#ifdef HAVE_FORK1
Neal Norwitze241ce82003-02-17 18:17:05 +00008357 {"fork1", posix_fork1, METH_NOARGS, posix_fork1__doc__},
Guido van Rossum2242f2f2001-04-11 20:58:20 +00008358#endif /* HAVE_FORK1 */
Guido van Rossumad0ee831995-03-01 10:34:45 +00008359#ifdef HAVE_FORK
Neal Norwitze241ce82003-02-17 18:17:05 +00008360 {"fork", posix_fork, METH_NOARGS, posix_fork__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008361#endif /* HAVE_FORK */
Martin v. Löwis24a880b2002-12-31 12:55:15 +00008362#if defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX)
Neal Norwitze241ce82003-02-17 18:17:05 +00008363 {"openpty", posix_openpty, METH_NOARGS, posix_openpty__doc__},
Martin v. Löwis24a880b2002-12-31 12:55:15 +00008364#endif /* HAVE_OPENPTY || HAVE__GETPTY || HAVE_DEV_PTMX */
Fred Drake8cef4cf2000-06-28 16:40:38 +00008365#ifdef HAVE_FORKPTY
Neal Norwitze241ce82003-02-17 18:17:05 +00008366 {"forkpty", posix_forkpty, METH_NOARGS, posix_forkpty__doc__},
Fred Drake8cef4cf2000-06-28 16:40:38 +00008367#endif /* HAVE_FORKPTY */
Guido van Rossumad0ee831995-03-01 10:34:45 +00008368#ifdef HAVE_GETEGID
Neal Norwitze241ce82003-02-17 18:17:05 +00008369 {"getegid", posix_getegid, METH_NOARGS, posix_getegid__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008370#endif /* HAVE_GETEGID */
8371#ifdef HAVE_GETEUID
Neal Norwitze241ce82003-02-17 18:17:05 +00008372 {"geteuid", posix_geteuid, METH_NOARGS, posix_geteuid__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008373#endif /* HAVE_GETEUID */
8374#ifdef HAVE_GETGID
Neal Norwitze241ce82003-02-17 18:17:05 +00008375 {"getgid", posix_getgid, METH_NOARGS, posix_getgid__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008376#endif /* HAVE_GETGID */
Fred Drakec9680921999-12-13 16:37:25 +00008377#ifdef HAVE_GETGROUPS
Neal Norwitze241ce82003-02-17 18:17:05 +00008378 {"getgroups", posix_getgroups, METH_NOARGS, posix_getgroups__doc__},
Fred Drakec9680921999-12-13 16:37:25 +00008379#endif
Neal Norwitze241ce82003-02-17 18:17:05 +00008380 {"getpid", posix_getpid, METH_NOARGS, posix_getpid__doc__},
Guido van Rossumb6775db1994-08-01 11:34:53 +00008381#ifdef HAVE_GETPGRP
Neal Norwitze241ce82003-02-17 18:17:05 +00008382 {"getpgrp", posix_getpgrp, METH_NOARGS, posix_getpgrp__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008383#endif /* HAVE_GETPGRP */
Guido van Rossumad0ee831995-03-01 10:34:45 +00008384#ifdef HAVE_GETPPID
Neal Norwitze241ce82003-02-17 18:17:05 +00008385 {"getppid", posix_getppid, METH_NOARGS, posix_getppid__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008386#endif /* HAVE_GETPPID */
8387#ifdef HAVE_GETUID
Neal Norwitze241ce82003-02-17 18:17:05 +00008388 {"getuid", posix_getuid, METH_NOARGS, posix_getuid__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008389#endif /* HAVE_GETUID */
Fred Drake12c6e2d1999-12-14 21:25:03 +00008390#ifdef HAVE_GETLOGIN
Neal Norwitze241ce82003-02-17 18:17:05 +00008391 {"getlogin", posix_getlogin, METH_NOARGS, posix_getlogin__doc__},
Fred Drake12c6e2d1999-12-14 21:25:03 +00008392#endif
Guido van Rossumad0ee831995-03-01 10:34:45 +00008393#ifdef HAVE_KILL
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008394 {"kill", posix_kill, METH_VARARGS, posix_kill__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008395#endif /* HAVE_KILL */
Martin v. Löwisb2c92f42002-02-16 23:35:41 +00008396#ifdef HAVE_KILLPG
8397 {"killpg", posix_killpg, METH_VARARGS, posix_killpg__doc__},
8398#endif /* HAVE_KILLPG */
Guido van Rossumc0125471996-06-28 18:55:32 +00008399#ifdef HAVE_PLOCK
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008400 {"plock", posix_plock, METH_VARARGS, posix_plock__doc__},
Guido van Rossumc0125471996-06-28 18:55:32 +00008401#endif /* HAVE_PLOCK */
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008402#ifdef HAVE_POPEN
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008403 {"popen", posix_popen, METH_VARARGS, posix_popen__doc__},
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00008404#ifdef MS_WINDOWS
Fredrik Lundhffb9c772000-07-09 14:49:51 +00008405 {"popen2", win32_popen2, METH_VARARGS},
8406 {"popen3", win32_popen3, METH_VARARGS},
8407 {"popen4", win32_popen4, METH_VARARGS},
Tim Petersf58a7aa2000-09-22 10:05:54 +00008408 {"startfile", win32_startfile, METH_VARARGS, win32_startfile__doc__},
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00008409#else
8410#if defined(PYOS_OS2) && defined(PYCC_GCC)
8411 {"popen2", os2emx_popen2, METH_VARARGS},
8412 {"popen3", os2emx_popen3, METH_VARARGS},
8413 {"popen4", os2emx_popen4, METH_VARARGS},
8414#endif
Fredrik Lundhffb9c772000-07-09 14:49:51 +00008415#endif
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008416#endif /* HAVE_POPEN */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008417#ifdef HAVE_SETUID
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008418 {"setuid", posix_setuid, METH_VARARGS, posix_setuid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008419#endif /* HAVE_SETUID */
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00008420#ifdef HAVE_SETEUID
8421 {"seteuid", posix_seteuid, METH_VARARGS, posix_seteuid__doc__},
8422#endif /* HAVE_SETEUID */
8423#ifdef HAVE_SETEGID
8424 {"setegid", posix_setegid, METH_VARARGS, posix_setegid__doc__},
8425#endif /* HAVE_SETEGID */
8426#ifdef HAVE_SETREUID
8427 {"setreuid", posix_setreuid, METH_VARARGS, posix_setreuid__doc__},
8428#endif /* HAVE_SETREUID */
8429#ifdef HAVE_SETREGID
8430 {"setregid", posix_setregid, METH_VARARGS, posix_setregid__doc__},
8431#endif /* HAVE_SETREGID */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008432#ifdef HAVE_SETGID
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008433 {"setgid", posix_setgid, METH_VARARGS, posix_setgid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008434#endif /* HAVE_SETGID */
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00008435#ifdef HAVE_SETGROUPS
Georg Brandl96a8c392006-05-29 21:04:52 +00008436 {"setgroups", posix_setgroups, METH_O, posix_setgroups__doc__},
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00008437#endif /* HAVE_SETGROUPS */
Martin v. Löwis606edc12002-06-13 21:09:11 +00008438#ifdef HAVE_GETPGID
8439 {"getpgid", posix_getpgid, METH_VARARGS, posix_getpgid__doc__},
8440#endif /* HAVE_GETPGID */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008441#ifdef HAVE_SETPGRP
Neal Norwitze241ce82003-02-17 18:17:05 +00008442 {"setpgrp", posix_setpgrp, METH_NOARGS, posix_setpgrp__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008443#endif /* HAVE_SETPGRP */
Guido van Rossumad0ee831995-03-01 10:34:45 +00008444#ifdef HAVE_WAIT
Neal Norwitze241ce82003-02-17 18:17:05 +00008445 {"wait", posix_wait, METH_NOARGS, posix_wait__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +00008446#endif /* HAVE_WAIT */
Neal Norwitz05a45592006-03-20 06:30:08 +00008447#ifdef HAVE_WAIT3
8448 {"wait3", posix_wait3, METH_VARARGS, posix_wait3__doc__},
8449#endif /* HAVE_WAIT3 */
8450#ifdef HAVE_WAIT4
8451 {"wait4", posix_wait4, METH_VARARGS, posix_wait4__doc__},
8452#endif /* HAVE_WAIT4 */
Tim Petersab034fa2002-02-01 11:27:43 +00008453#if defined(HAVE_WAITPID) || defined(HAVE_CWAIT)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008454 {"waitpid", posix_waitpid, METH_VARARGS, posix_waitpid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008455#endif /* HAVE_WAITPID */
Martin v. Löwis49ee14d2003-11-10 06:35:36 +00008456#ifdef HAVE_GETSID
8457 {"getsid", posix_getsid, METH_VARARGS, posix_getsid__doc__},
8458#endif /* HAVE_GETSID */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008459#ifdef HAVE_SETSID
Neal Norwitze241ce82003-02-17 18:17:05 +00008460 {"setsid", posix_setsid, METH_NOARGS, posix_setsid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008461#endif /* HAVE_SETSID */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008462#ifdef HAVE_SETPGID
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008463 {"setpgid", posix_setpgid, METH_VARARGS, posix_setpgid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008464#endif /* HAVE_SETPGID */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008465#ifdef HAVE_TCGETPGRP
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008466 {"tcgetpgrp", posix_tcgetpgrp, METH_VARARGS, posix_tcgetpgrp__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008467#endif /* HAVE_TCGETPGRP */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008468#ifdef HAVE_TCSETPGRP
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008469 {"tcsetpgrp", posix_tcsetpgrp, METH_VARARGS, posix_tcsetpgrp__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00008470#endif /* HAVE_TCSETPGRP */
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008471 {"open", posix_open, METH_VARARGS, posix_open__doc__},
8472 {"close", posix_close, METH_VARARGS, posix_close__doc__},
Georg Brandl309501a2008-01-19 20:22:13 +00008473 {"closerange", posix_closerange, METH_VARARGS, posix_closerange__doc__},
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008474 {"dup", posix_dup, METH_VARARGS, posix_dup__doc__},
8475 {"dup2", posix_dup2, METH_VARARGS, posix_dup2__doc__},
8476 {"lseek", posix_lseek, METH_VARARGS, posix_lseek__doc__},
8477 {"read", posix_read, METH_VARARGS, posix_read__doc__},
8478 {"write", posix_write, METH_VARARGS, posix_write__doc__},
8479 {"fstat", posix_fstat, METH_VARARGS, posix_fstat__doc__},
8480 {"fdopen", posix_fdopen, METH_VARARGS, posix_fdopen__doc__},
Skip Montanaro1517d842000-07-19 14:34:14 +00008481 {"isatty", posix_isatty, METH_VARARGS, posix_isatty__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008482#ifdef HAVE_PIPE
Neal Norwitze241ce82003-02-17 18:17:05 +00008483 {"pipe", posix_pipe, METH_NOARGS, posix_pipe__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008484#endif
8485#ifdef HAVE_MKFIFO
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008486 {"mkfifo", posix_mkfifo, METH_VARARGS, posix_mkfifo__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008487#endif
Neal Norwitz11690112002-07-30 01:08:28 +00008488#if defined(HAVE_MKNOD) && defined(HAVE_MAKEDEV)
Martin v. Löwis06a83e92002-04-14 10:19:44 +00008489 {"mknod", posix_mknod, METH_VARARGS, posix_mknod__doc__},
8490#endif
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00008491#ifdef HAVE_DEVICE_MACROS
8492 {"major", posix_major, METH_VARARGS, posix_major__doc__},
8493 {"minor", posix_minor, METH_VARARGS, posix_minor__doc__},
8494 {"makedev", posix_makedev, METH_VARARGS, posix_makedev__doc__},
8495#endif
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008496#ifdef HAVE_FTRUNCATE
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008497 {"ftruncate", posix_ftruncate, METH_VARARGS, posix_ftruncate__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +00008498#endif
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00008499#ifdef HAVE_PUTENV
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008500 {"putenv", posix_putenv, METH_VARARGS, posix_putenv__doc__},
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00008501#endif
Guido van Rossumc524d952001-10-19 01:31:59 +00008502#ifdef HAVE_UNSETENV
8503 {"unsetenv", posix_unsetenv, METH_VARARGS, posix_unsetenv__doc__},
8504#endif
Guido van Rossumb6a47161997-09-15 22:54:34 +00008505#ifdef HAVE_STRERROR
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008506 {"strerror", posix_strerror, METH_VARARGS, posix_strerror__doc__},
Guido van Rossumb6a47161997-09-15 22:54:34 +00008507#endif
Fred Drake4d1e64b2002-04-15 19:40:07 +00008508#ifdef HAVE_FCHDIR
8509 {"fchdir", posix_fchdir, METH_O, posix_fchdir__doc__},
8510#endif
Guido van Rossum21142a01999-01-08 21:05:37 +00008511#ifdef HAVE_FSYNC
Fred Drake4d1e64b2002-04-15 19:40:07 +00008512 {"fsync", posix_fsync, METH_O, posix_fsync__doc__},
Guido van Rossum21142a01999-01-08 21:05:37 +00008513#endif
8514#ifdef HAVE_FDATASYNC
Fred Drake4d1e64b2002-04-15 19:40:07 +00008515 {"fdatasync", posix_fdatasync, METH_O, posix_fdatasync__doc__},
Guido van Rossum21142a01999-01-08 21:05:37 +00008516#endif
Guido van Rossumc9641791998-08-04 15:26:23 +00008517#ifdef HAVE_SYS_WAIT_H
Fred Drake106c1a02002-04-23 15:58:02 +00008518#ifdef WCOREDUMP
8519 {"WCOREDUMP", posix_WCOREDUMP, METH_VARARGS, posix_WCOREDUMP__doc__},
8520#endif /* WCOREDUMP */
Martin v. Löwis2b41b0d2002-05-04 13:13:41 +00008521#ifdef WIFCONTINUED
8522 {"WIFCONTINUED",posix_WIFCONTINUED, METH_VARARGS, posix_WIFCONTINUED__doc__},
8523#endif /* WIFCONTINUED */
Guido van Rossumc9641791998-08-04 15:26:23 +00008524#ifdef WIFSTOPPED
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008525 {"WIFSTOPPED", posix_WIFSTOPPED, METH_VARARGS, posix_WIFSTOPPED__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008526#endif /* WIFSTOPPED */
8527#ifdef WIFSIGNALED
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008528 {"WIFSIGNALED", posix_WIFSIGNALED, METH_VARARGS, posix_WIFSIGNALED__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008529#endif /* WIFSIGNALED */
8530#ifdef WIFEXITED
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008531 {"WIFEXITED", posix_WIFEXITED, METH_VARARGS, posix_WIFEXITED__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008532#endif /* WIFEXITED */
8533#ifdef WEXITSTATUS
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008534 {"WEXITSTATUS", posix_WEXITSTATUS, METH_VARARGS, posix_WEXITSTATUS__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008535#endif /* WEXITSTATUS */
8536#ifdef WTERMSIG
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008537 {"WTERMSIG", posix_WTERMSIG, METH_VARARGS, posix_WTERMSIG__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008538#endif /* WTERMSIG */
8539#ifdef WSTOPSIG
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008540 {"WSTOPSIG", posix_WSTOPSIG, METH_VARARGS, posix_WSTOPSIG__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +00008541#endif /* WSTOPSIG */
8542#endif /* HAVE_SYS_WAIT_H */
Martin v. Löwis5f5d99c2006-05-16 07:05:37 +00008543#if defined(HAVE_FSTATVFS) && defined(HAVE_SYS_STATVFS_H)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008544 {"fstatvfs", posix_fstatvfs, METH_VARARGS, posix_fstatvfs__doc__},
Guido van Rossum94f6f721999-01-06 18:42:14 +00008545#endif
Martin v. Löwis5f5d99c2006-05-16 07:05:37 +00008546#if defined(HAVE_STATVFS) && defined(HAVE_SYS_STATVFS_H)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008547 {"statvfs", posix_statvfs, METH_VARARGS, posix_statvfs__doc__},
Guido van Rossum94f6f721999-01-06 18:42:14 +00008548#endif
Guido van Rossume2ad6332001-01-08 17:51:55 +00008549#ifdef HAVE_TMPFILE
Neal Norwitze241ce82003-02-17 18:17:05 +00008550 {"tmpfile", posix_tmpfile, METH_NOARGS, posix_tmpfile__doc__},
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008551#endif
8552#ifdef HAVE_TEMPNAM
8553 {"tempnam", posix_tempnam, METH_VARARGS, posix_tempnam__doc__},
8554#endif
8555#ifdef HAVE_TMPNAM
Neal Norwitze241ce82003-02-17 18:17:05 +00008556 {"tmpnam", posix_tmpnam, METH_NOARGS, posix_tmpnam__doc__},
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008557#endif
Fred Drakec9680921999-12-13 16:37:25 +00008558#ifdef HAVE_CONFSTR
8559 {"confstr", posix_confstr, METH_VARARGS, posix_confstr__doc__},
8560#endif
8561#ifdef HAVE_SYSCONF
8562 {"sysconf", posix_sysconf, METH_VARARGS, posix_sysconf__doc__},
8563#endif
8564#ifdef HAVE_FPATHCONF
8565 {"fpathconf", posix_fpathconf, METH_VARARGS, posix_fpathconf__doc__},
8566#endif
8567#ifdef HAVE_PATHCONF
8568 {"pathconf", posix_pathconf, METH_VARARGS, posix_pathconf__doc__},
8569#endif
Neal Norwitze241ce82003-02-17 18:17:05 +00008570 {"abort", posix_abort, METH_NOARGS, posix_abort__doc__},
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00008571#ifdef MS_WINDOWS
Mark Hammondef8b6542001-05-13 08:04:26 +00008572 {"_getfullpathname", posix__getfullpathname, METH_VARARGS, NULL},
8573#endif
Martin v. Löwis438b5342002-12-27 10:16:42 +00008574#ifdef HAVE_GETLOADAVG
Neal Norwitze241ce82003-02-17 18:17:05 +00008575 {"getloadavg", posix_getloadavg, METH_NOARGS, posix_getloadavg__doc__},
Martin v. Löwis438b5342002-12-27 10:16:42 +00008576#endif
Martin v. Löwisdc3883f2004-08-29 15:46:35 +00008577 #ifdef MS_WINDOWS
8578 {"urandom", win32_urandom, METH_VARARGS, win32_urandom__doc__},
8579 #endif
Neal Norwitz2a30cd02006-07-10 01:18:57 +00008580 #ifdef __VMS
8581 {"urandom", vms_urandom, METH_VARARGS, vms_urandom__doc__},
8582 #endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00008583 {NULL, NULL} /* Sentinel */
8584};
8585
8586
Barry Warsaw4a342091996-12-19 23:50:02 +00008587static int
Fred Drake4d1e64b2002-04-15 19:40:07 +00008588ins(PyObject *module, char *symbol, long value)
Barry Warsaw4a342091996-12-19 23:50:02 +00008589{
Fred Drake4d1e64b2002-04-15 19:40:07 +00008590 return PyModule_AddIntConstant(module, symbol, value);
Barry Warsaw4a342091996-12-19 23:50:02 +00008591}
8592
Guido van Rossumd48f2521997-12-05 22:19:34 +00008593#if defined(PYOS_OS2)
8594/* Insert Platform-Specific Constant Values (Strings & Numbers) of Common Use */
Fred Drake4d1e64b2002-04-15 19:40:07 +00008595static int insertvalues(PyObject *module)
Guido van Rossumd48f2521997-12-05 22:19:34 +00008596{
8597 APIRET rc;
8598 ULONG values[QSV_MAX+1];
8599 PyObject *v;
Marc-André Lemburgd4c0a9c2001-11-28 11:47:00 +00008600 char *ver, tmp[50];
Guido van Rossumd48f2521997-12-05 22:19:34 +00008601
8602 Py_BEGIN_ALLOW_THREADS
Andrew MacIntyre75e01452003-04-21 14:19:51 +00008603 rc = DosQuerySysInfo(1L, QSV_MAX, &values[1], sizeof(ULONG) * QSV_MAX);
Guido van Rossumd48f2521997-12-05 22:19:34 +00008604 Py_END_ALLOW_THREADS
8605
8606 if (rc != NO_ERROR) {
8607 os2_error(rc);
8608 return -1;
8609 }
8610
Fred Drake4d1e64b2002-04-15 19:40:07 +00008611 if (ins(module, "meminstalled", values[QSV_TOTPHYSMEM])) return -1;
8612 if (ins(module, "memkernel", values[QSV_TOTRESMEM])) return -1;
8613 if (ins(module, "memvirtual", values[QSV_TOTAVAILMEM])) return -1;
8614 if (ins(module, "maxpathlen", values[QSV_MAX_PATH_LENGTH])) return -1;
8615 if (ins(module, "maxnamelen", values[QSV_MAX_COMP_LENGTH])) return -1;
8616 if (ins(module, "revision", values[QSV_VERSION_REVISION])) return -1;
8617 if (ins(module, "timeslice", values[QSV_MIN_SLICE])) return -1;
Guido van Rossumd48f2521997-12-05 22:19:34 +00008618
8619 switch (values[QSV_VERSION_MINOR]) {
8620 case 0: ver = "2.00"; break;
8621 case 10: ver = "2.10"; break;
8622 case 11: ver = "2.11"; break;
8623 case 30: ver = "3.00"; break;
8624 case 40: ver = "4.00"; break;
8625 case 50: ver = "5.00"; break;
8626 default:
Tim Peters885d4572001-11-28 20:27:42 +00008627 PyOS_snprintf(tmp, sizeof(tmp),
8628 "%d-%d", values[QSV_VERSION_MAJOR],
8629 values[QSV_VERSION_MINOR]);
Guido van Rossumd48f2521997-12-05 22:19:34 +00008630 ver = &tmp[0];
8631 }
8632
8633 /* Add Indicator of the Version of the Operating System */
Fred Drake4d1e64b2002-04-15 19:40:07 +00008634 if (PyModule_AddStringConstant(module, "version", tmp) < 0)
Guido van Rossumd48f2521997-12-05 22:19:34 +00008635 return -1;
Guido van Rossumd48f2521997-12-05 22:19:34 +00008636
8637 /* Add Indicator of Which Drive was Used to Boot the System */
8638 tmp[0] = 'A' + values[QSV_BOOT_DRIVE] - 1;
8639 tmp[1] = ':';
8640 tmp[2] = '\0';
8641
Fred Drake4d1e64b2002-04-15 19:40:07 +00008642 return PyModule_AddStringConstant(module, "bootdrive", tmp);
Guido van Rossumd48f2521997-12-05 22:19:34 +00008643}
8644#endif
8645
Barry Warsaw4a342091996-12-19 23:50:02 +00008646static int
Thomas Woutersf3f33dc2000-07-21 06:00:07 +00008647all_ins(PyObject *d)
Barry Warsaw4a342091996-12-19 23:50:02 +00008648{
Guido van Rossum94f6f721999-01-06 18:42:14 +00008649#ifdef F_OK
8650 if (ins(d, "F_OK", (long)F_OK)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00008651#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00008652#ifdef R_OK
8653 if (ins(d, "R_OK", (long)R_OK)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00008654#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00008655#ifdef W_OK
8656 if (ins(d, "W_OK", (long)W_OK)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00008657#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00008658#ifdef X_OK
8659 if (ins(d, "X_OK", (long)X_OK)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00008660#endif
Fred Drakec9680921999-12-13 16:37:25 +00008661#ifdef NGROUPS_MAX
8662 if (ins(d, "NGROUPS_MAX", (long)NGROUPS_MAX)) return -1;
8663#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00008664#ifdef TMP_MAX
8665 if (ins(d, "TMP_MAX", (long)TMP_MAX)) return -1;
8666#endif
Fred Drake106c1a02002-04-23 15:58:02 +00008667#ifdef WCONTINUED
8668 if (ins(d, "WCONTINUED", (long)WCONTINUED)) return -1;
8669#endif
Barry Warsaw4a342091996-12-19 23:50:02 +00008670#ifdef WNOHANG
8671 if (ins(d, "WNOHANG", (long)WNOHANG)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +00008672#endif
Fred Drake106c1a02002-04-23 15:58:02 +00008673#ifdef WUNTRACED
8674 if (ins(d, "WUNTRACED", (long)WUNTRACED)) return -1;
8675#endif
Barry Warsaw4a342091996-12-19 23:50:02 +00008676#ifdef O_RDONLY
8677 if (ins(d, "O_RDONLY", (long)O_RDONLY)) return -1;
8678#endif
8679#ifdef O_WRONLY
8680 if (ins(d, "O_WRONLY", (long)O_WRONLY)) return -1;
8681#endif
8682#ifdef O_RDWR
8683 if (ins(d, "O_RDWR", (long)O_RDWR)) return -1;
8684#endif
8685#ifdef O_NDELAY
8686 if (ins(d, "O_NDELAY", (long)O_NDELAY)) return -1;
8687#endif
8688#ifdef O_NONBLOCK
8689 if (ins(d, "O_NONBLOCK", (long)O_NONBLOCK)) return -1;
8690#endif
8691#ifdef O_APPEND
8692 if (ins(d, "O_APPEND", (long)O_APPEND)) return -1;
8693#endif
8694#ifdef O_DSYNC
8695 if (ins(d, "O_DSYNC", (long)O_DSYNC)) return -1;
8696#endif
8697#ifdef O_RSYNC
8698 if (ins(d, "O_RSYNC", (long)O_RSYNC)) return -1;
8699#endif
8700#ifdef O_SYNC
8701 if (ins(d, "O_SYNC", (long)O_SYNC)) return -1;
8702#endif
8703#ifdef O_NOCTTY
8704 if (ins(d, "O_NOCTTY", (long)O_NOCTTY)) return -1;
8705#endif
8706#ifdef O_CREAT
8707 if (ins(d, "O_CREAT", (long)O_CREAT)) return -1;
8708#endif
8709#ifdef O_EXCL
8710 if (ins(d, "O_EXCL", (long)O_EXCL)) return -1;
8711#endif
8712#ifdef O_TRUNC
8713 if (ins(d, "O_TRUNC", (long)O_TRUNC)) return -1;
8714#endif
Guido van Rossum98d9d091997-08-08 21:48:51 +00008715#ifdef O_BINARY
8716 if (ins(d, "O_BINARY", (long)O_BINARY)) return -1;
8717#endif
8718#ifdef O_TEXT
8719 if (ins(d, "O_TEXT", (long)O_TEXT)) return -1;
8720#endif
Martin v. Löwis4fe3c272001-10-18 22:05:36 +00008721#ifdef O_LARGEFILE
8722 if (ins(d, "O_LARGEFILE", (long)O_LARGEFILE)) return -1;
8723#endif
Skip Montanaro5ff14922005-05-16 02:42:22 +00008724#ifdef O_SHLOCK
8725 if (ins(d, "O_SHLOCK", (long)O_SHLOCK)) return -1;
8726#endif
8727#ifdef O_EXLOCK
8728 if (ins(d, "O_EXLOCK", (long)O_EXLOCK)) return -1;
8729#endif
Martin v. Löwis4fe3c272001-10-18 22:05:36 +00008730
Tim Peters5aa91602002-01-30 05:46:57 +00008731/* MS Windows */
8732#ifdef O_NOINHERIT
8733 /* Don't inherit in child processes. */
8734 if (ins(d, "O_NOINHERIT", (long)O_NOINHERIT)) return -1;
8735#endif
8736#ifdef _O_SHORT_LIVED
8737 /* Optimize for short life (keep in memory). */
8738 /* MS forgot to define this one with a non-underscore form too. */
8739 if (ins(d, "O_SHORT_LIVED", (long)_O_SHORT_LIVED)) return -1;
8740#endif
8741#ifdef O_TEMPORARY
8742 /* Automatically delete when last handle is closed. */
8743 if (ins(d, "O_TEMPORARY", (long)O_TEMPORARY)) return -1;
8744#endif
8745#ifdef O_RANDOM
8746 /* Optimize for random access. */
8747 if (ins(d, "O_RANDOM", (long)O_RANDOM)) return -1;
8748#endif
8749#ifdef O_SEQUENTIAL
8750 /* Optimize for sequential access. */
8751 if (ins(d, "O_SEQUENTIAL", (long)O_SEQUENTIAL)) return -1;
8752#endif
8753
Martin v. Löwis4fe3c272001-10-18 22:05:36 +00008754/* GNU extensions. */
8755#ifdef O_DIRECT
8756 /* Direct disk access. */
8757 if (ins(d, "O_DIRECT", (long)O_DIRECT)) return -1;
8758#endif
8759#ifdef O_DIRECTORY
8760 /* Must be a directory. */
8761 if (ins(d, "O_DIRECTORY", (long)O_DIRECTORY)) return -1;
8762#endif
8763#ifdef O_NOFOLLOW
8764 /* Do not follow links. */
8765 if (ins(d, "O_NOFOLLOW", (long)O_NOFOLLOW)) return -1;
8766#endif
Georg Brandlb67da6e2007-11-24 13:56:09 +00008767#ifdef O_NOATIME
8768 /* Do not update the access time. */
8769 if (ins(d, "O_NOATIME", (long)O_NOATIME)) return -1;
8770#endif
Guido van Rossumd48f2521997-12-05 22:19:34 +00008771
Barry Warsaw5676bd12003-01-07 20:57:09 +00008772 /* These come from sysexits.h */
8773#ifdef EX_OK
8774 if (ins(d, "EX_OK", (long)EX_OK)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008775#endif /* EX_OK */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008776#ifdef EX_USAGE
8777 if (ins(d, "EX_USAGE", (long)EX_USAGE)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008778#endif /* EX_USAGE */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008779#ifdef EX_DATAERR
8780 if (ins(d, "EX_DATAERR", (long)EX_DATAERR)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008781#endif /* EX_DATAERR */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008782#ifdef EX_NOINPUT
8783 if (ins(d, "EX_NOINPUT", (long)EX_NOINPUT)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008784#endif /* EX_NOINPUT */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008785#ifdef EX_NOUSER
8786 if (ins(d, "EX_NOUSER", (long)EX_NOUSER)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008787#endif /* EX_NOUSER */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008788#ifdef EX_NOHOST
8789 if (ins(d, "EX_NOHOST", (long)EX_NOHOST)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008790#endif /* EX_NOHOST */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008791#ifdef EX_UNAVAILABLE
8792 if (ins(d, "EX_UNAVAILABLE", (long)EX_UNAVAILABLE)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008793#endif /* EX_UNAVAILABLE */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008794#ifdef EX_SOFTWARE
8795 if (ins(d, "EX_SOFTWARE", (long)EX_SOFTWARE)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008796#endif /* EX_SOFTWARE */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008797#ifdef EX_OSERR
8798 if (ins(d, "EX_OSERR", (long)EX_OSERR)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008799#endif /* EX_OSERR */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008800#ifdef EX_OSFILE
8801 if (ins(d, "EX_OSFILE", (long)EX_OSFILE)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008802#endif /* EX_OSFILE */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008803#ifdef EX_CANTCREAT
8804 if (ins(d, "EX_CANTCREAT", (long)EX_CANTCREAT)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008805#endif /* EX_CANTCREAT */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008806#ifdef EX_IOERR
8807 if (ins(d, "EX_IOERR", (long)EX_IOERR)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008808#endif /* EX_IOERR */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008809#ifdef EX_TEMPFAIL
8810 if (ins(d, "EX_TEMPFAIL", (long)EX_TEMPFAIL)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008811#endif /* EX_TEMPFAIL */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008812#ifdef EX_PROTOCOL
8813 if (ins(d, "EX_PROTOCOL", (long)EX_PROTOCOL)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008814#endif /* EX_PROTOCOL */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008815#ifdef EX_NOPERM
8816 if (ins(d, "EX_NOPERM", (long)EX_NOPERM)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008817#endif /* EX_NOPERM */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008818#ifdef EX_CONFIG
8819 if (ins(d, "EX_CONFIG", (long)EX_CONFIG)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008820#endif /* EX_CONFIG */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008821#ifdef EX_NOTFOUND
8822 if (ins(d, "EX_NOTFOUND", (long)EX_NOTFOUND)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +00008823#endif /* EX_NOTFOUND */
Barry Warsaw5676bd12003-01-07 20:57:09 +00008824
Guido van Rossum246bc171999-02-01 23:54:31 +00008825#ifdef HAVE_SPAWNV
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00008826#if defined(PYOS_OS2) && defined(PYCC_GCC)
8827 if (ins(d, "P_WAIT", (long)P_WAIT)) return -1;
8828 if (ins(d, "P_NOWAIT", (long)P_NOWAIT)) return -1;
8829 if (ins(d, "P_OVERLAY", (long)P_OVERLAY)) return -1;
8830 if (ins(d, "P_DEBUG", (long)P_DEBUG)) return -1;
8831 if (ins(d, "P_SESSION", (long)P_SESSION)) return -1;
8832 if (ins(d, "P_DETACH", (long)P_DETACH)) return -1;
8833 if (ins(d, "P_PM", (long)P_PM)) return -1;
8834 if (ins(d, "P_DEFAULT", (long)P_DEFAULT)) return -1;
8835 if (ins(d, "P_MINIMIZE", (long)P_MINIMIZE)) return -1;
8836 if (ins(d, "P_MAXIMIZE", (long)P_MAXIMIZE)) return -1;
8837 if (ins(d, "P_FULLSCREEN", (long)P_FULLSCREEN)) return -1;
8838 if (ins(d, "P_WINDOWED", (long)P_WINDOWED)) return -1;
8839 if (ins(d, "P_FOREGROUND", (long)P_FOREGROUND)) return -1;
8840 if (ins(d, "P_BACKGROUND", (long)P_BACKGROUND)) return -1;
8841 if (ins(d, "P_NOCLOSE", (long)P_NOCLOSE)) return -1;
8842 if (ins(d, "P_NOSESSION", (long)P_NOSESSION)) return -1;
8843 if (ins(d, "P_QUOTE", (long)P_QUOTE)) return -1;
8844 if (ins(d, "P_TILDE", (long)P_TILDE)) return -1;
8845 if (ins(d, "P_UNRELATED", (long)P_UNRELATED)) return -1;
8846 if (ins(d, "P_DEBUGDESC", (long)P_DEBUGDESC)) return -1;
8847#else
Guido van Rossum7d385291999-02-16 19:38:04 +00008848 if (ins(d, "P_WAIT", (long)_P_WAIT)) return -1;
8849 if (ins(d, "P_NOWAIT", (long)_P_NOWAIT)) return -1;
8850 if (ins(d, "P_OVERLAY", (long)_OLD_P_OVERLAY)) return -1;
8851 if (ins(d, "P_NOWAITO", (long)_P_NOWAITO)) return -1;
8852 if (ins(d, "P_DETACH", (long)_P_DETACH)) return -1;
Guido van Rossum246bc171999-02-01 23:54:31 +00008853#endif
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00008854#endif
Guido van Rossum246bc171999-02-01 23:54:31 +00008855
Guido van Rossumd48f2521997-12-05 22:19:34 +00008856#if defined(PYOS_OS2)
8857 if (insertvalues(d)) return -1;
8858#endif
Barry Warsaw4a342091996-12-19 23:50:02 +00008859 return 0;
8860}
8861
8862
Tim Peters5aa91602002-01-30 05:46:57 +00008863#if (defined(_MSC_VER) || defined(__WATCOMC__) || defined(__BORLANDC__)) && !defined(__QNX__)
Guido van Rossum0cb96de1997-10-01 04:29:29 +00008864#define INITFUNC initnt
8865#define MODNAME "nt"
Tim Peters58e0a8c2001-05-14 22:32:33 +00008866
8867#elif defined(PYOS_OS2)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00008868#define INITFUNC initos2
8869#define MODNAME "os2"
Tim Peters58e0a8c2001-05-14 22:32:33 +00008870
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00008871#else
Guido van Rossum0cb96de1997-10-01 04:29:29 +00008872#define INITFUNC initposix
8873#define MODNAME "posix"
8874#endif
8875
Mark Hammondfe51c6d2002-08-02 02:27:13 +00008876PyMODINIT_FUNC
Thomas Woutersf3f33dc2000-07-21 06:00:07 +00008877INITFUNC(void)
Guido van Rossumb6775db1994-08-01 11:34:53 +00008878{
Fred Drake4d1e64b2002-04-15 19:40:07 +00008879 PyObject *m, *v;
Tim Peters5aa91602002-01-30 05:46:57 +00008880
Fred Drake4d1e64b2002-04-15 19:40:07 +00008881 m = Py_InitModule3(MODNAME,
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00008882 posix_methods,
Fred Drake4d1e64b2002-04-15 19:40:07 +00008883 posix__doc__);
Neal Norwitz1ac754f2006-01-19 06:09:39 +00008884 if (m == NULL)
8885 return;
Tim Peters5aa91602002-01-30 05:46:57 +00008886
Guido van Rossum0cb96de1997-10-01 04:29:29 +00008887 /* Initialize environ dictionary */
Guido van Rossumb6775db1994-08-01 11:34:53 +00008888 v = convertenviron();
Fred Drake4d1e64b2002-04-15 19:40:07 +00008889 Py_XINCREF(v);
8890 if (v == NULL || PyModule_AddObject(m, "environ", v) != 0)
Guido van Rossum0cb96de1997-10-01 04:29:29 +00008891 return;
Barry Warsaw53699e91996-12-10 23:23:01 +00008892 Py_DECREF(v);
Fred Drakec9680921999-12-13 16:37:25 +00008893
Fred Drake4d1e64b2002-04-15 19:40:07 +00008894 if (all_ins(m))
Barry Warsaw4a342091996-12-19 23:50:02 +00008895 return;
8896
Fred Drake4d1e64b2002-04-15 19:40:07 +00008897 if (setup_confname_tables(m))
Fred Drakebec628d1999-12-15 18:31:10 +00008898 return;
8899
Fred Drake4d1e64b2002-04-15 19:40:07 +00008900 Py_INCREF(PyExc_OSError);
8901 PyModule_AddObject(m, "error", PyExc_OSError);
Fred Drake762e2061999-08-26 17:23:54 +00008902
Guido van Rossumb3d39562000-01-31 18:41:26 +00008903#ifdef HAVE_PUTENV
Neil Schemenauer19030a02001-01-16 04:27:47 +00008904 if (posix_putenv_garbage == NULL)
8905 posix_putenv_garbage = PyDict_New();
Guido van Rossumb3d39562000-01-31 18:41:26 +00008906#endif
Guido van Rossum98bf58f2001-10-18 20:34:25 +00008907
Martin v. Löwis19ab6c92006-04-16 18:55:50 +00008908 if (!initialized) {
8909 stat_result_desc.name = MODNAME ".stat_result";
8910 stat_result_desc.fields[7].name = PyStructSequence_UnnamedField;
8911 stat_result_desc.fields[8].name = PyStructSequence_UnnamedField;
8912 stat_result_desc.fields[9].name = PyStructSequence_UnnamedField;
8913 PyStructSequence_InitType(&StatResultType, &stat_result_desc);
8914 structseq_new = StatResultType.tp_new;
8915 StatResultType.tp_new = statresult_new;
8916
8917 statvfs_result_desc.name = MODNAME ".statvfs_result";
8918 PyStructSequence_InitType(&StatVFSResultType, &statvfs_result_desc);
8919 }
Fred Drake4d1e64b2002-04-15 19:40:07 +00008920 Py_INCREF((PyObject*) &StatResultType);
8921 PyModule_AddObject(m, "stat_result", (PyObject*) &StatResultType);
Fred Drake4d1e64b2002-04-15 19:40:07 +00008922 Py_INCREF((PyObject*) &StatVFSResultType);
8923 PyModule_AddObject(m, "statvfs_result",
8924 (PyObject*) &StatVFSResultType);
Martin v. Löwis19ab6c92006-04-16 18:55:50 +00008925 initialized = 1;
Ronald Oussorend06b6f22006-04-23 11:59:25 +00008926
8927#ifdef __APPLE__
8928 /*
8929 * Step 2 of weak-linking support on Mac OS X.
8930 *
8931 * The code below removes functions that are not available on the
8932 * currently active platform.
8933 *
8934 * This block allow one to use a python binary that was build on
8935 * OSX 10.4 on OSX 10.3, without loosing access to new APIs on
8936 * OSX 10.4.
8937 */
8938#ifdef HAVE_FSTATVFS
8939 if (fstatvfs == NULL) {
8940 if (PyObject_DelAttrString(m, "fstatvfs") == -1) {
8941 return;
8942 }
8943 }
8944#endif /* HAVE_FSTATVFS */
8945
8946#ifdef HAVE_STATVFS
8947 if (statvfs == NULL) {
8948 if (PyObject_DelAttrString(m, "statvfs") == -1) {
8949 return;
8950 }
8951 }
8952#endif /* HAVE_STATVFS */
8953
8954# ifdef HAVE_LCHOWN
8955 if (lchown == NULL) {
8956 if (PyObject_DelAttrString(m, "lchown") == -1) {
8957 return;
8958 }
8959 }
8960#endif /* HAVE_LCHOWN */
8961
8962
8963#endif /* __APPLE__ */
8964
Guido van Rossumb6775db1994-08-01 11:34:53 +00008965}
Anthony Baxterac6bd462006-04-13 02:06:09 +00008966
8967#ifdef __cplusplus
8968}
8969#endif
8970
Martin v. Löwis18aaa562006-10-15 08:43:33 +00008971