blob: 09c430fd708ae262d3616edfc586ef2b971bf45c [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
Thomas Wouters477c8d52006-05-27 19:21:47 +000014#ifdef __APPLE__
15 /*
Victor Stinner8c62be82010-05-06 00:08:46 +000016 * Step 1 of support for weak-linking a number of symbols existing on
Thomas Wouters477c8d52006-05-27 19:21:47 +000017 * OSX 10.4 and later, see the comment in the #ifdef __APPLE__ block
18 * at the end of this file for more information.
19 */
20# pragma weak lchown
21# pragma weak statvfs
22# pragma weak fstatvfs
23
24#endif /* __APPLE__ */
25
Thomas Wouters68bc4f92006-03-01 01:05:10 +000026#define PY_SSIZE_T_CLEAN
27
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000028#include "Python.h"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000029
Martin v. Löwis79acb9e2002-12-06 12:48:53 +000030#if defined(__VMS)
Victor Stinnerb90db4c2011-04-26 22:48:24 +020031# error "PEP 11: VMS is now unsupported, code will be removed in Python 3.4"
Martin v. Löwis79acb9e2002-12-06 12:48:53 +000032# include <unixio.h>
Martin v. Löwis79acb9e2002-12-06 12:48:53 +000033#endif /* defined(__VMS) */
34
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000035#ifdef __cplusplus
36extern "C" {
37#endif
38
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000039PyDoc_STRVAR(posix__doc__,
Guido van Rossumec4f4ac1997-06-02 22:20:51 +000040"This module provides access to operating system functionality that is\n\
41standardized by the C Standard and the POSIX standard (a thinly\n\
42disguised Unix interface). Refer to the library manual and\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000043corresponding Unix manual entries for more information on calls.");
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000044
Martin v. Löwis0073f2e2002-11-21 23:52:35 +000045
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +000046#if defined(PYOS_OS2)
Victor Stinnerb90db4c2011-04-26 22:48:24 +020047#error "PEP 11: OS/2 is now unsupported, code will be removed in Python 3.4"
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +000048#define INCL_DOS
49#define INCL_DOSERRORS
50#define INCL_DOSPROCESS
51#define INCL_NOPMAPI
52#include <os2.h>
Andrew MacIntyre6c73af22002-03-03 03:07:07 +000053#if defined(PYCC_GCC)
54#include <ctype.h>
55#include <io.h>
56#include <stdio.h>
57#include <process.h>
Andrew MacIntyre6c73af22002-03-03 03:07:07 +000058#endif
Andrew MacIntyreda4d6cb2004-03-29 11:53:38 +000059#include "osdefs.h"
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +000060#endif
61
Ross Lagerwall4d076da2011-03-18 06:56:53 +020062#ifdef HAVE_SYS_UIO_H
63#include <sys/uio.h>
64#endif
65
Thomas Wouters0e3f5912006-08-11 14:57:12 +000066#ifdef HAVE_SYS_TYPES_H
Guido van Rossumb6775db1994-08-01 11:34:53 +000067#include <sys/types.h>
Thomas Wouters0e3f5912006-08-11 14:57:12 +000068#endif /* HAVE_SYS_TYPES_H */
69
70#ifdef HAVE_SYS_STAT_H
Guido van Rossumb6775db1994-08-01 11:34:53 +000071#include <sys/stat.h>
Thomas Wouters0e3f5912006-08-11 14:57:12 +000072#endif /* HAVE_SYS_STAT_H */
Guido van Rossuma6535fd2001-10-18 19:44:10 +000073
Guido van Rossum36bc6801995-06-14 22:54:23 +000074#ifdef HAVE_SYS_WAIT_H
Victor Stinner8c62be82010-05-06 00:08:46 +000075#include <sys/wait.h> /* For WNOHANG */
Guido van Rossum36bc6801995-06-14 22:54:23 +000076#endif
Guido van Rossumb6775db1994-08-01 11:34:53 +000077
Thomas Wouters0e3f5912006-08-11 14:57:12 +000078#ifdef HAVE_SIGNAL_H
Guido van Rossuma376cc51996-12-05 23:43:35 +000079#include <signal.h>
Thomas Wouters0e3f5912006-08-11 14:57:12 +000080#endif
Guido van Rossuma376cc51996-12-05 23:43:35 +000081
Guido van Rossumb6775db1994-08-01 11:34:53 +000082#ifdef HAVE_FCNTL_H
83#include <fcntl.h>
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +000084#endif /* HAVE_FCNTL_H */
Guido van Rossumb6775db1994-08-01 11:34:53 +000085
Guido van Rossuma6535fd2001-10-18 19:44:10 +000086#ifdef HAVE_GRP_H
87#include <grp.h>
88#endif
89
Barry Warsaw5676bd12003-01-07 20:57:09 +000090#ifdef HAVE_SYSEXITS_H
91#include <sysexits.h>
92#endif /* HAVE_SYSEXITS_H */
93
Anthony Baxter8a560de2004-10-13 15:30:56 +000094#ifdef HAVE_SYS_LOADAVG_H
95#include <sys/loadavg.h>
96#endif
97
Martin v. Löwisd1cd4d42007-08-11 14:02:14 +000098#ifdef HAVE_LANGINFO_H
99#include <langinfo.h>
100#endif
101
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +0000102#ifdef HAVE_SYS_SENDFILE_H
103#include <sys/sendfile.h>
104#endif
105
Benjamin Peterson94b580d2011-08-02 17:30:04 -0500106#ifdef HAVE_SCHED_H
107#include <sched.h>
108#endif
109
Benjamin Peterson2dbda072012-03-16 10:12:55 -0500110#if !defined(CPU_ALLOC) && defined(HAVE_SCHED_SETAFFINITY)
Benjamin Peterson7b51b8d2012-03-14 22:28:25 -0500111#undef HAVE_SCHED_SETAFFINITY
112#endif
113
Benjamin Peterson9428d532011-09-14 11:45:52 -0400114#if defined(HAVE_SYS_XATTR_H) && defined(__GLIBC__)
115#define USE_XATTRS
116#endif
117
118#ifdef USE_XATTRS
Benjamin Petersonb77fe172011-09-13 17:20:47 -0400119#include <sys/xattr.h>
Benjamin Peterson799bd802011-08-31 22:15:17 -0400120#endif
121
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +0000122#if defined(__FreeBSD__) || defined(__DragonFly__) || defined(__APPLE__)
123#ifdef HAVE_SYS_SOCKET_H
124#include <sys/socket.h>
125#endif
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +0000126#endif
127
Victor Stinner8b905bd2011-10-25 13:34:04 +0200128#ifdef HAVE_DLFCN_H
129#include <dlfcn.h>
130#endif
131
Antoine Pitroubcf2b592012-02-08 23:28:36 +0100132#if defined(MS_WINDOWS)
133# define TERMSIZE_USE_CONIO
134#elif defined(HAVE_SYS_IOCTL_H)
135# include <sys/ioctl.h>
136# if defined(HAVE_TERMIOS_H)
137# include <termios.h>
138# endif
139# if defined(TIOCGWINSZ)
140# define TERMSIZE_USE_IOCTL
141# endif
142#endif /* MS_WINDOWS */
143
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000144/* Various compilers have only certain posix functions */
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +0000145/* XXX Gosh I wish these were all moved into pyconfig.h */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000146#if defined(PYCC_VACPP) && defined(PYOS_OS2)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000147#include <process.h>
148#else
Victor Stinner8c62be82010-05-06 00:08:46 +0000149#if defined(__WATCOMC__) && !defined(__QNX__) /* Watcom compiler */
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000150#define HAVE_GETCWD 1
151#define HAVE_OPENDIR 1
Victor Stinner8c62be82010-05-06 00:08:46 +0000152#define HAVE_SYSTEM 1
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000153#if defined(__OS2__)
154#define HAVE_EXECV 1
155#define HAVE_WAIT 1
Guido van Rossumad0ee831995-03-01 10:34:45 +0000156#endif
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000157#include <process.h>
158#else
Victor Stinner8c62be82010-05-06 00:08:46 +0000159#ifdef __BORLANDC__ /* Borland compiler */
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000160#define HAVE_EXECV 1
161#define HAVE_GETCWD 1
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000162#define HAVE_OPENDIR 1
163#define HAVE_PIPE 1
Victor Stinner8c62be82010-05-06 00:08:46 +0000164#define HAVE_SYSTEM 1
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000165#define HAVE_WAIT 1
166#else
Victor Stinner8c62be82010-05-06 00:08:46 +0000167#ifdef _MSC_VER /* Microsoft compiler */
Guido van Rossum8d665e61996-06-26 18:22:49 +0000168#define HAVE_GETCWD 1
Amaury Forgeot d'Arc4b6fdf32010-09-07 21:31:17 +0000169#define HAVE_GETPPID 1
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +0000170#define HAVE_GETLOGIN 1
Victor Stinner8c62be82010-05-06 00:08:46 +0000171#define HAVE_SPAWNV 1
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000172#define HAVE_EXECV 1
173#define HAVE_PIPE 1
Victor Stinner8c62be82010-05-06 00:08:46 +0000174#define HAVE_SYSTEM 1
175#define HAVE_CWAIT 1
176#define HAVE_FSYNC 1
Tim Peters11b23062003-04-23 02:39:17 +0000177#define fsync _commit
Andrew MacIntyre6c73af22002-03-03 03:07:07 +0000178#else
Martin v. Löwis79acb9e2002-12-06 12:48:53 +0000179#if defined(PYOS_OS2) && defined(PYCC_GCC) || defined(__VMS)
180/* Everything needed is defined in PC/os2emx/pyconfig.h or vms/pyconfig.h */
Victor Stinner8c62be82010-05-06 00:08:46 +0000181#else /* all other compilers */
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000182/* Unix functions that the configure script doesn't check for */
183#define HAVE_EXECV 1
184#define HAVE_FORK 1
Victor Stinner8c62be82010-05-06 00:08:46 +0000185#if defined(__USLC__) && defined(__SCO_VERSION__) /* SCO UDK Compiler */
Guido van Rossum2242f2f2001-04-11 20:58:20 +0000186#define HAVE_FORK1 1
187#endif
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000188#define HAVE_GETCWD 1
189#define HAVE_GETEGID 1
190#define HAVE_GETEUID 1
191#define HAVE_GETGID 1
192#define HAVE_GETPPID 1
193#define HAVE_GETUID 1
194#define HAVE_KILL 1
195#define HAVE_OPENDIR 1
196#define HAVE_PIPE 1
Victor Stinner8c62be82010-05-06 00:08:46 +0000197#define HAVE_SYSTEM 1
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000198#define HAVE_WAIT 1
Victor Stinner8c62be82010-05-06 00:08:46 +0000199#define HAVE_TTYNAME 1
Martin v. Löwis7a924e62003-03-05 14:15:21 +0000200#endif /* PYOS_OS2 && PYCC_GCC && __VMS */
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000201#endif /* _MSC_VER */
202#endif /* __BORLANDC__ */
Guido van Rossumc5a0f531997-12-02 20:36:02 +0000203#endif /* ! __WATCOMC__ || __QNX__ */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000204#endif /* ! __IBMC__ */
Guido van Rossumad0ee831995-03-01 10:34:45 +0000205
Victor Stinnera2f7c002012-02-08 03:36:25 +0100206
207
208
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000209#ifndef _MSC_VER
Guido van Rossum36bc6801995-06-14 22:54:23 +0000210
Martin v. Löwis8eb92a02002-09-19 08:03:21 +0000211#if defined(__sgi)&&_COMPILER_VERSION>=700
212/* declare ctermid_r if compiling with MIPSPro 7.x in ANSI C mode
213 (default) */
214extern char *ctermid_r(char *);
215#endif
216
Thomas Wouters1e0c2f42000-07-24 16:06:23 +0000217#ifndef HAVE_UNISTD_H
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000218#if defined(PYCC_VACPP)
Fredrik Lundhff7df9d2000-07-08 22:48:53 +0000219extern int mkdir(char *);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000220#else
Guido van Rossumc5a0f531997-12-02 20:36:02 +0000221#if ( defined(__WATCOMC__) || defined(_MSC_VER) ) && !defined(__QNX__)
Fredrik Lundhff7df9d2000-07-08 22:48:53 +0000222extern int mkdir(const char *);
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000223#else
Fredrik Lundhff7df9d2000-07-08 22:48:53 +0000224extern int mkdir(const char *, mode_t);
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000225#endif
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000226#endif
227#if defined(__IBMC__) || defined(__IBMCPP__)
Fredrik Lundhff7df9d2000-07-08 22:48:53 +0000228extern int chdir(char *);
229extern int rmdir(char *);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000230#else
Fredrik Lundhff7df9d2000-07-08 22:48:53 +0000231extern int chdir(const char *);
232extern int rmdir(const char *);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +0000233#endif
Tim Peters58e0a8c2001-05-14 22:32:33 +0000234#ifdef __BORLANDC__
235extern int chmod(const char *, int);
236#else
Fredrik Lundhff7df9d2000-07-08 22:48:53 +0000237extern int chmod(const char *, mode_t);
Tim Peters58e0a8c2001-05-14 22:32:33 +0000238#endif
Christian Heimes4e30a842007-11-30 22:12:06 +0000239/*#ifdef HAVE_FCHMOD
240extern int fchmod(int, mode_t);
241#endif*/
242/*#ifdef HAVE_LCHMOD
243extern int lchmod(const char *, mode_t);
244#endif*/
Fredrik Lundhff7df9d2000-07-08 22:48:53 +0000245extern int chown(const char *, uid_t, gid_t);
246extern char *getcwd(char *, int);
247extern char *strerror(int);
248extern int link(const char *, const char *);
249extern int rename(const char *, const char *);
250extern int stat(const char *, struct stat *);
251extern int unlink(const char *);
Guido van Rossumb6775db1994-08-01 11:34:53 +0000252#ifdef HAVE_SYMLINK
Fredrik Lundhff7df9d2000-07-08 22:48:53 +0000253extern int symlink(const char *, const char *);
Guido van Rossuma38a5031995-02-17 15:11:36 +0000254#endif /* HAVE_SYMLINK */
Guido van Rossumb6775db1994-08-01 11:34:53 +0000255#ifdef HAVE_LSTAT
Fredrik Lundhff7df9d2000-07-08 22:48:53 +0000256extern int lstat(const char *, struct stat *);
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +0000257#endif /* HAVE_LSTAT */
Guido van Rossumb6775db1994-08-01 11:34:53 +0000258#endif /* !HAVE_UNISTD_H */
Guido van Rossum36bc6801995-06-14 22:54:23 +0000259
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000260#endif /* !_MSC_VER */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000261
Guido van Rossumb6775db1994-08-01 11:34:53 +0000262#ifdef HAVE_UTIME_H
263#include <utime.h>
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +0000264#endif /* HAVE_UTIME_H */
Guido van Rossumb6775db1994-08-01 11:34:53 +0000265
Guido van Rossum14ed0b21994-09-29 09:50:09 +0000266#ifdef HAVE_SYS_UTIME_H
267#include <sys/utime.h>
268#define HAVE_UTIME_H /* pretend we do for the rest of this file */
269#endif /* HAVE_SYS_UTIME_H */
270
Guido van Rossumb6775db1994-08-01 11:34:53 +0000271#ifdef HAVE_SYS_TIMES_H
272#include <sys/times.h>
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +0000273#endif /* HAVE_SYS_TIMES_H */
Guido van Rossumb6775db1994-08-01 11:34:53 +0000274
275#ifdef HAVE_SYS_PARAM_H
276#include <sys/param.h>
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +0000277#endif /* HAVE_SYS_PARAM_H */
Guido van Rossumb6775db1994-08-01 11:34:53 +0000278
279#ifdef HAVE_SYS_UTSNAME_H
280#include <sys/utsname.h>
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +0000281#endif /* HAVE_SYS_UTSNAME_H */
Guido van Rossumb6775db1994-08-01 11:34:53 +0000282
Guido van Rossum3bbc62e1995-01-02 19:30:30 +0000283#ifdef HAVE_DIRENT_H
Guido van Rossumb6775db1994-08-01 11:34:53 +0000284#include <dirent.h>
Guido van Rossum3bbc62e1995-01-02 19:30:30 +0000285#define NAMLEN(dirent) strlen((dirent)->d_name)
286#else
Guido van Rossumc5a0f531997-12-02 20:36:02 +0000287#if defined(__WATCOMC__) && !defined(__QNX__)
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000288#include <direct.h>
289#define NAMLEN(dirent) strlen((dirent)->d_name)
290#else
Guido van Rossumb6775db1994-08-01 11:34:53 +0000291#define dirent direct
Guido van Rossum3bbc62e1995-01-02 19:30:30 +0000292#define NAMLEN(dirent) (dirent)->d_namlen
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000293#endif
Guido van Rossum3bbc62e1995-01-02 19:30:30 +0000294#ifdef HAVE_SYS_NDIR_H
Guido van Rossumb6775db1994-08-01 11:34:53 +0000295#include <sys/ndir.h>
Guido van Rossum3bbc62e1995-01-02 19:30:30 +0000296#endif
297#ifdef HAVE_SYS_DIR_H
Guido van Rossumb6775db1994-08-01 11:34:53 +0000298#include <sys/dir.h>
Guido van Rossum3bbc62e1995-01-02 19:30:30 +0000299#endif
300#ifdef HAVE_NDIR_H
Guido van Rossumb6775db1994-08-01 11:34:53 +0000301#include <ndir.h>
Guido van Rossum3bbc62e1995-01-02 19:30:30 +0000302#endif
303#endif
Guido van Rossumb6775db1994-08-01 11:34:53 +0000304
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000305#ifdef _MSC_VER
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000306#ifdef HAVE_DIRECT_H
Guido van Rossumb6775db1994-08-01 11:34:53 +0000307#include <direct.h>
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000308#endif
309#ifdef HAVE_IO_H
Guido van Rossumb6775db1994-08-01 11:34:53 +0000310#include <io.h>
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000311#endif
312#ifdef HAVE_PROCESS_H
Guido van Rossumb6775db1994-08-01 11:34:53 +0000313#include <process.h>
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000314#endif
Raymond Hettinger0291c9f2010-08-01 21:10:35 +0000315#ifndef VOLUME_NAME_DOS
Amaury Forgeot d'Arc844807e2010-08-16 22:16:51 +0000316#define VOLUME_NAME_DOS 0x0
Raymond Hettinger0291c9f2010-08-01 21:10:35 +0000317#endif
318#ifndef VOLUME_NAME_NT
Amaury Forgeot d'Arc844807e2010-08-16 22:16:51 +0000319#define VOLUME_NAME_NT 0x2
Raymond Hettinger0291c9f2010-08-01 21:10:35 +0000320#endif
321#ifndef IO_REPARSE_TAG_SYMLINK
Amaury Forgeot d'Arc844807e2010-08-16 22:16:51 +0000322#define IO_REPARSE_TAG_SYMLINK (0xA000000CL)
Raymond Hettinger0291c9f2010-08-01 21:10:35 +0000323#endif
Tim Petersbc2e10e2002-03-03 23:17:02 +0000324#include "osdefs.h"
Kristján Valur Jónssonf64e6512009-04-13 10:16:14 +0000325#include <malloc.h>
Guido van Rossumb6775db1994-08-01 11:34:53 +0000326#include <windows.h>
Victor Stinner8c62be82010-05-06 00:08:46 +0000327#include <shellapi.h> /* for ShellExecute() */
Brian Curtine8e4b3b2010-09-23 20:04:14 +0000328#include <lmcons.h> /* for UNLEN */
Brian Curtin52173d42010-12-02 18:29:18 +0000329#ifdef SE_CREATE_SYMBOLIC_LINK_NAME /* Available starting with Vista */
330#define HAVE_SYMLINK
Brian Curtin3b4499c2010-12-28 14:31:47 +0000331static int win32_can_symlink = 0;
Brian Curtin52173d42010-12-02 18:29:18 +0000332#endif
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000333#endif /* _MSC_VER */
Guido van Rossumb6775db1994-08-01 11:34:53 +0000334
Guido van Rossumd48f2521997-12-05 22:19:34 +0000335#if defined(PYCC_VACPP) && defined(PYOS_OS2)
Guido van Rossumb6775db1994-08-01 11:34:53 +0000336#include <io.h>
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +0000337#endif /* OS2 */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000338
Tim Petersbc2e10e2002-03-03 23:17:02 +0000339#ifndef MAXPATHLEN
Thomas Wouters477c8d52006-05-27 19:21:47 +0000340#if defined(PATH_MAX) && PATH_MAX > 1024
341#define MAXPATHLEN PATH_MAX
342#else
Tim Petersbc2e10e2002-03-03 23:17:02 +0000343#define MAXPATHLEN 1024
Thomas Wouters477c8d52006-05-27 19:21:47 +0000344#endif
Tim Petersbc2e10e2002-03-03 23:17:02 +0000345#endif /* MAXPATHLEN */
346
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000347#ifdef UNION_WAIT
348/* Emulate some macros on systems that have a union instead of macros */
349
350#ifndef WIFEXITED
351#define WIFEXITED(u_wait) (!(u_wait).w_termsig && !(u_wait).w_coredump)
352#endif
353
354#ifndef WEXITSTATUS
355#define WEXITSTATUS(u_wait) (WIFEXITED(u_wait)?((u_wait).w_retcode):-1)
356#endif
357
358#ifndef WTERMSIG
359#define WTERMSIG(u_wait) ((u_wait).w_termsig)
360#endif
361
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000362#define WAIT_TYPE union wait
363#define WAIT_STATUS_INT(s) (s.w_status)
364
365#else /* !UNION_WAIT */
366#define WAIT_TYPE int
367#define WAIT_STATUS_INT(s) (s)
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000368#endif /* UNION_WAIT */
369
Greg Wardb48bc172000-03-01 21:51:56 +0000370/* Don't use the "_r" form if we don't need it (also, won't have a
371 prototype for it, at least on Solaris -- maybe others as well?). */
372#if defined(HAVE_CTERMID_R) && defined(WITH_THREAD)
373#define USE_CTERMID_R
374#endif
375
Fred Drake699f3522000-06-29 21:12:41 +0000376/* choose the appropriate stat and fstat functions and return structs */
Guido van Rossum64529cd2000-06-30 22:45:12 +0000377#undef STAT
Antoine Pitroue47e0932011-01-19 15:21:35 +0000378#undef FSTAT
379#undef STRUCT_STAT
Martin v. Löwis6238d2b2002-06-30 15:26:10 +0000380#if defined(MS_WIN64) || defined(MS_WINDOWS)
Victor Stinner8c62be82010-05-06 00:08:46 +0000381# define STAT win32_stat
382# define FSTAT win32_fstat
383# define STRUCT_STAT struct win32_stat
Fred Drake699f3522000-06-29 21:12:41 +0000384#else
Victor Stinner8c62be82010-05-06 00:08:46 +0000385# define STAT stat
386# define FSTAT fstat
387# define STRUCT_STAT struct stat
Fred Drake699f3522000-06-29 21:12:41 +0000388#endif
389
Tim Peters11b23062003-04-23 02:39:17 +0000390#if defined(MAJOR_IN_MKDEV)
Martin v. Löwisdbe3f762002-10-10 14:27:30 +0000391#include <sys/mkdev.h>
392#else
393#if defined(MAJOR_IN_SYSMACROS)
394#include <sys/sysmacros.h>
395#endif
Neal Norwitz3d949422002-04-20 13:46:43 +0000396#if defined(HAVE_MKNOD) && defined(HAVE_SYS_MKDEV_H)
397#include <sys/mkdev.h>
398#endif
Martin v. Löwisdbe3f762002-10-10 14:27:30 +0000399#endif
Fred Drake699f3522000-06-29 21:12:41 +0000400
Ross Lagerwallb1e5d592011-09-19 08:30:43 +0200401/* A helper used by a number of POSIX-only functions */
402#ifndef MS_WINDOWS
Georg Brandla391b112011-02-25 15:23:18 +0000403static int
404_parse_off_t(PyObject* arg, void* addr)
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +0000405{
406#if !defined(HAVE_LARGEFILE_SUPPORT)
407 *((off_t*)addr) = PyLong_AsLong(arg);
408#else
Antoine Pitroudcc20b82011-02-26 13:38:35 +0000409 *((off_t*)addr) = PyLong_AsLongLong(arg);
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +0000410#endif
411 if (PyErr_Occurred())
412 return 0;
413 return 1;
414}
Ross Lagerwallb1e5d592011-09-19 08:30:43 +0200415#endif
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +0000416
Amaury Forgeot d'Arc2fc224f2009-02-19 23:23:47 +0000417#if defined _MSC_VER && _MSC_VER >= 1400
418/* Microsoft CRT in VS2005 and higher will verify that a filehandle is
419 * valid and throw an assertion if it isn't.
420 * Normally, an invalid fd is likely to be a C program error and therefore
421 * an assertion can be useful, but it does contradict the POSIX standard
422 * which for write(2) states:
423 * "Otherwise, -1 shall be returned and errno set to indicate the error."
424 * "[EBADF] The fildes argument is not a valid file descriptor open for
425 * writing."
426 * Furthermore, python allows the user to enter any old integer
427 * as a fd and should merely raise a python exception on error.
428 * The Microsoft CRT doesn't provide an official way to check for the
429 * validity of a file descriptor, but we can emulate its internal behaviour
Victor Stinner8c62be82010-05-06 00:08:46 +0000430 * by using the exported __pinfo data member and knowledge of the
Amaury Forgeot d'Arc2fc224f2009-02-19 23:23:47 +0000431 * internal structures involved.
432 * The structures below must be updated for each version of visual studio
433 * according to the file internal.h in the CRT source, until MS comes
434 * up with a less hacky way to do this.
435 * (all of this is to avoid globally modifying the CRT behaviour using
436 * _set_invalid_parameter_handler() and _CrtSetReportMode())
437 */
Kristján Valur Jónssonf64e6512009-04-13 10:16:14 +0000438/* The actual size of the structure is determined at runtime.
439 * Only the first items must be present.
440 */
Amaury Forgeot d'Arc2fc224f2009-02-19 23:23:47 +0000441typedef struct {
Victor Stinner8c62be82010-05-06 00:08:46 +0000442 intptr_t osfhnd;
443 char osfile;
Kristján Valur Jónssonf64e6512009-04-13 10:16:14 +0000444} my_ioinfo;
Amaury Forgeot d'Arc2fc224f2009-02-19 23:23:47 +0000445
Kristján Valur Jónssonf64e6512009-04-13 10:16:14 +0000446extern __declspec(dllimport) char * __pioinfo[];
Amaury Forgeot d'Arc2fc224f2009-02-19 23:23:47 +0000447#define IOINFO_L2E 5
448#define IOINFO_ARRAY_ELTS (1 << IOINFO_L2E)
449#define IOINFO_ARRAYS 64
450#define _NHANDLE_ (IOINFO_ARRAYS * IOINFO_ARRAY_ELTS)
451#define FOPEN 0x01
452#define _NO_CONSOLE_FILENO (intptr_t)-2
453
454/* This function emulates what the windows CRT does to validate file handles */
455int
456_PyVerify_fd(int fd)
457{
Victor Stinner8c62be82010-05-06 00:08:46 +0000458 const int i1 = fd >> IOINFO_L2E;
459 const int i2 = fd & ((1 << IOINFO_L2E) - 1);
Kristján Valur Jónssonf64e6512009-04-13 10:16:14 +0000460
Antoine Pitrou22e41552010-08-15 18:07:50 +0000461 static size_t sizeof_ioinfo = 0;
Amaury Forgeot d'Arc2fc224f2009-02-19 23:23:47 +0000462
Victor Stinner8c62be82010-05-06 00:08:46 +0000463 /* Determine the actual size of the ioinfo structure,
464 * as used by the CRT loaded in memory
465 */
466 if (sizeof_ioinfo == 0 && __pioinfo[0] != NULL) {
467 sizeof_ioinfo = _msize(__pioinfo[0]) / IOINFO_ARRAY_ELTS;
468 }
469 if (sizeof_ioinfo == 0) {
470 /* This should not happen... */
471 goto fail;
472 }
473
474 /* See that it isn't a special CLEAR fileno */
475 if (fd != _NO_CONSOLE_FILENO) {
476 /* Microsoft CRT would check that 0<=fd<_nhandle but we can't do that. Instead
477 * we check pointer validity and other info
478 */
479 if (0 <= i1 && i1 < IOINFO_ARRAYS && __pioinfo[i1] != NULL) {
480 /* finally, check that the file is open */
481 my_ioinfo* info = (my_ioinfo*)(__pioinfo[i1] + i2 * sizeof_ioinfo);
482 if (info->osfile & FOPEN) {
483 return 1;
484 }
485 }
486 }
Kristján Valur Jónssonf64e6512009-04-13 10:16:14 +0000487 fail:
Victor Stinner8c62be82010-05-06 00:08:46 +0000488 errno = EBADF;
489 return 0;
Amaury Forgeot d'Arc2fc224f2009-02-19 23:23:47 +0000490}
491
492/* the special case of checking dup2. The target fd must be in a sensible range */
493static int
494_PyVerify_fd_dup2(int fd1, int fd2)
495{
Victor Stinner8c62be82010-05-06 00:08:46 +0000496 if (!_PyVerify_fd(fd1))
497 return 0;
498 if (fd2 == _NO_CONSOLE_FILENO)
499 return 0;
500 if ((unsigned)fd2 < _NHANDLE_)
501 return 1;
502 else
503 return 0;
Amaury Forgeot d'Arc2fc224f2009-02-19 23:23:47 +0000504}
505#else
506/* dummy version. _PyVerify_fd() is already defined in fileobject.h */
507#define _PyVerify_fd_dup2(A, B) (1)
508#endif
509
Brian Curtinfc1be6d2010-11-24 13:23:18 +0000510#ifdef MS_WINDOWS
Brian Curtinf5e76d02010-11-24 13:14:05 +0000511/* The following structure was copied from
512 http://msdn.microsoft.com/en-us/library/ms791514.aspx as the required
513 include doesn't seem to be present in the Windows SDK (at least as included
514 with Visual Studio Express). */
515typedef struct _REPARSE_DATA_BUFFER {
516 ULONG ReparseTag;
517 USHORT ReparseDataLength;
518 USHORT Reserved;
519 union {
520 struct {
521 USHORT SubstituteNameOffset;
522 USHORT SubstituteNameLength;
523 USHORT PrintNameOffset;
524 USHORT PrintNameLength;
525 ULONG Flags;
526 WCHAR PathBuffer[1];
527 } SymbolicLinkReparseBuffer;
528
529 struct {
530 USHORT SubstituteNameOffset;
531 USHORT SubstituteNameLength;
532 USHORT PrintNameOffset;
533 USHORT PrintNameLength;
534 WCHAR PathBuffer[1];
535 } MountPointReparseBuffer;
536
537 struct {
538 UCHAR DataBuffer[1];
539 } GenericReparseBuffer;
540 };
541} REPARSE_DATA_BUFFER, *PREPARSE_DATA_BUFFER;
542
543#define REPARSE_DATA_BUFFER_HEADER_SIZE FIELD_OFFSET(REPARSE_DATA_BUFFER,\
544 GenericReparseBuffer)
545#define MAXIMUM_REPARSE_DATA_BUFFER_SIZE ( 16 * 1024 )
546
547static int
Brian Curtind25aef52011-06-13 15:16:04 -0500548win32_get_reparse_tag(HANDLE reparse_point_handle, ULONG *reparse_tag)
Brian Curtinf5e76d02010-11-24 13:14:05 +0000549{
550 char target_buffer[MAXIMUM_REPARSE_DATA_BUFFER_SIZE];
551 REPARSE_DATA_BUFFER *rdb = (REPARSE_DATA_BUFFER *)target_buffer;
552 DWORD n_bytes_returned;
Brian Curtinf5e76d02010-11-24 13:14:05 +0000553
554 if (0 == DeviceIoControl(
555 reparse_point_handle,
556 FSCTL_GET_REPARSE_POINT,
557 NULL, 0, /* in buffer */
558 target_buffer, sizeof(target_buffer),
559 &n_bytes_returned,
560 NULL)) /* we're not using OVERLAPPED_IO */
Brian Curtind25aef52011-06-13 15:16:04 -0500561 return FALSE;
Brian Curtinf5e76d02010-11-24 13:14:05 +0000562
563 if (reparse_tag)
564 *reparse_tag = rdb->ReparseTag;
565
Brian Curtind25aef52011-06-13 15:16:04 -0500566 return TRUE;
Brian Curtinf5e76d02010-11-24 13:14:05 +0000567}
Victor Stinner1ab6c2d2011-11-15 22:27:41 +0100568
569static int
570win32_warn_bytes_api()
571{
572 return PyErr_WarnEx(PyExc_DeprecationWarning,
573 "The Windows bytes API has been deprecated, "
574 "use Unicode filenames instead",
575 1);
576}
577
578static PyObject*
579win32_decode_filename(PyObject *obj)
580{
581 PyObject *unicode;
582 if (PyUnicode_Check(obj)) {
583 if (PyUnicode_READY(obj))
584 return NULL;
585 Py_INCREF(obj);
586 return obj;
587 }
588 if (!PyUnicode_FSDecoder(obj, &unicode))
589 return NULL;
590 if (win32_warn_bytes_api()) {
591 Py_DECREF(unicode);
592 return NULL;
593 }
594 return unicode;
595}
Brian Curtinfc1be6d2010-11-24 13:23:18 +0000596#endif /* MS_WINDOWS */
Brian Curtinf5e76d02010-11-24 13:14:05 +0000597
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000598/* Return a dictionary corresponding to the POSIX environment table */
Jack Jansenea0c3822002-08-01 21:57:49 +0000599#ifdef WITH_NEXT_FRAMEWORK
600/* On Darwin/MacOSX a shared library or framework has no access to
601** environ directly, we must obtain it with _NSGetEnviron().
602*/
603#include <crt_externs.h>
604static char **environ;
605#elif !defined(_MSC_VER) && ( !defined(__WATCOMC__) || defined(__QNX__) )
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000606extern char **environ;
Guido van Rossuma4916fa1996-05-23 22:58:55 +0000607#endif /* !_MSC_VER */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000608
Barry Warsaw53699e91996-12-10 23:23:01 +0000609static PyObject *
Thomas Woutersf3f33dc2000-07-21 06:00:07 +0000610convertenviron(void)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000611{
Victor Stinner8c62be82010-05-06 00:08:46 +0000612 PyObject *d;
Thomas Hellerf78f12a2007-11-08 19:33:05 +0000613#ifdef MS_WINDOWS
Victor Stinner8c62be82010-05-06 00:08:46 +0000614 wchar_t **e;
Thomas Hellerf78f12a2007-11-08 19:33:05 +0000615#else
Victor Stinner8c62be82010-05-06 00:08:46 +0000616 char **e;
Thomas Hellerf78f12a2007-11-08 19:33:05 +0000617#endif
Martin v. Löwisc16f3bd2003-05-03 09:14:54 +0000618#if defined(PYOS_OS2)
Victor Stinner8c62be82010-05-06 00:08:46 +0000619 APIRET rc;
620 char buffer[1024]; /* OS/2 Provides a Documented Max of 1024 Chars */
621#endif
Guido van Rossumd48f2521997-12-05 22:19:34 +0000622
Victor Stinner8c62be82010-05-06 00:08:46 +0000623 d = PyDict_New();
624 if (d == NULL)
625 return NULL;
626#ifdef WITH_NEXT_FRAMEWORK
627 if (environ == NULL)
628 environ = *_NSGetEnviron();
629#endif
630#ifdef MS_WINDOWS
631 /* _wenviron must be initialized in this way if the program is started
632 through main() instead of wmain(). */
633 _wgetenv(L"");
634 if (_wenviron == NULL)
635 return d;
636 /* This part ignores errors */
637 for (e = _wenviron; *e != NULL; e++) {
638 PyObject *k;
639 PyObject *v;
640 wchar_t *p = wcschr(*e, L'=');
641 if (p == NULL)
642 continue;
643 k = PyUnicode_FromWideChar(*e, (Py_ssize_t)(p-*e));
644 if (k == NULL) {
645 PyErr_Clear();
646 continue;
Guido van Rossumd48f2521997-12-05 22:19:34 +0000647 }
Victor Stinner8c62be82010-05-06 00:08:46 +0000648 v = PyUnicode_FromWideChar(p+1, wcslen(p+1));
649 if (v == NULL) {
650 PyErr_Clear();
651 Py_DECREF(k);
652 continue;
Guido van Rossumd48f2521997-12-05 22:19:34 +0000653 }
Victor Stinner8c62be82010-05-06 00:08:46 +0000654 if (PyDict_GetItem(d, k) == NULL) {
655 if (PyDict_SetItem(d, k, v) != 0)
656 PyErr_Clear();
657 }
658 Py_DECREF(k);
659 Py_DECREF(v);
660 }
661#else
662 if (environ == NULL)
663 return d;
664 /* This part ignores errors */
665 for (e = environ; *e != NULL; e++) {
666 PyObject *k;
667 PyObject *v;
668 char *p = strchr(*e, '=');
669 if (p == NULL)
670 continue;
Victor Stinner84ae1182010-05-06 22:05:07 +0000671 k = PyBytes_FromStringAndSize(*e, (int)(p-*e));
Victor Stinner8c62be82010-05-06 00:08:46 +0000672 if (k == NULL) {
673 PyErr_Clear();
674 continue;
675 }
Victor Stinner84ae1182010-05-06 22:05:07 +0000676 v = PyBytes_FromStringAndSize(p+1, strlen(p+1));
Victor Stinner8c62be82010-05-06 00:08:46 +0000677 if (v == NULL) {
678 PyErr_Clear();
679 Py_DECREF(k);
680 continue;
681 }
682 if (PyDict_GetItem(d, k) == NULL) {
683 if (PyDict_SetItem(d, k, v) != 0)
684 PyErr_Clear();
685 }
686 Py_DECREF(k);
687 Py_DECREF(v);
Guido van Rossumd48f2521997-12-05 22:19:34 +0000688 }
689#endif
Victor Stinner8c62be82010-05-06 00:08:46 +0000690#if defined(PYOS_OS2)
691 rc = DosQueryExtLIBPATH(buffer, BEGIN_LIBPATH);
692 if (rc == NO_ERROR) { /* (not a type, envname is NOT 'BEGIN_LIBPATH') */
693 PyObject *v = PyBytes_FromString(buffer);
694 PyDict_SetItemString(d, "BEGINLIBPATH", v);
695 Py_DECREF(v);
696 }
697 rc = DosQueryExtLIBPATH(buffer, END_LIBPATH);
698 if (rc == NO_ERROR) { /* (not a typo, envname is NOT 'END_LIBPATH') */
699 PyObject *v = PyBytes_FromString(buffer);
700 PyDict_SetItemString(d, "ENDLIBPATH", v);
701 Py_DECREF(v);
702 }
703#endif
704 return d;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000705}
706
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000707/* Set a POSIX-specific error from errno, and return NULL */
708
Barry Warsawd58d7641998-07-23 16:14:40 +0000709static PyObject *
Thomas Woutersf3f33dc2000-07-21 06:00:07 +0000710posix_error(void)
Guido van Rossumad0ee831995-03-01 10:34:45 +0000711{
Victor Stinner8c62be82010-05-06 00:08:46 +0000712 return PyErr_SetFromErrno(PyExc_OSError);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000713}
Barry Warsawd58d7641998-07-23 16:14:40 +0000714static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +0000715posix_error_with_filename(char* name)
Barry Warsawd58d7641998-07-23 16:14:40 +0000716{
Victor Stinner8c62be82010-05-06 00:08:46 +0000717 return PyErr_SetFromErrnoWithFilename(PyExc_OSError, name);
Barry Warsawd58d7641998-07-23 16:14:40 +0000718}
719
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000720
Mark Hammondef8b6542001-05-13 08:04:26 +0000721static PyObject *
Martin v. Löwis011e8422009-05-05 04:43:17 +0000722posix_error_with_allocated_filename(PyObject* name)
Mark Hammondef8b6542001-05-13 08:04:26 +0000723{
Victor Stinner77ccd6d2010-05-08 00:36:42 +0000724 PyObject *name_str, *rc;
725 name_str = PyUnicode_DecodeFSDefaultAndSize(PyBytes_AsString(name),
726 PyBytes_GET_SIZE(name));
Victor Stinner8c62be82010-05-06 00:08:46 +0000727 Py_DECREF(name);
Victor Stinner77ccd6d2010-05-08 00:36:42 +0000728 rc = PyErr_SetFromErrnoWithFilenameObject(PyExc_OSError,
729 name_str);
730 Py_XDECREF(name_str);
Victor Stinner8c62be82010-05-06 00:08:46 +0000731 return rc;
Mark Hammondef8b6542001-05-13 08:04:26 +0000732}
733
Martin v. Löwis6238d2b2002-06-30 15:26:10 +0000734#ifdef MS_WINDOWS
Fredrik Lundhffb9c772000-07-09 14:49:51 +0000735static PyObject *
Brian Curtind40e6f72010-07-08 21:39:08 +0000736win32_error(char* function, const char* filename)
Fredrik Lundhffb9c772000-07-09 14:49:51 +0000737{
Victor Stinner8c62be82010-05-06 00:08:46 +0000738 /* XXX We should pass the function name along in the future.
739 (winreg.c also wants to pass the function name.)
740 This would however require an additional param to the
741 Windows error object, which is non-trivial.
742 */
743 errno = GetLastError();
744 if (filename)
745 return PyErr_SetFromWindowsErrWithFilename(errno, filename);
746 else
747 return PyErr_SetFromWindowsErr(errno);
Fredrik Lundhffb9c772000-07-09 14:49:51 +0000748}
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000749
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000750static PyObject *
Victor Stinnereb5657a2011-09-30 01:44:27 +0200751win32_error_unicode(char* function, wchar_t* filename)
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000752{
Victor Stinner8c62be82010-05-06 00:08:46 +0000753 /* XXX - see win32_error for comments on 'function' */
754 errno = GetLastError();
755 if (filename)
756 return PyErr_SetFromWindowsErrWithUnicodeFilename(errno, filename);
757 else
758 return PyErr_SetFromWindowsErr(errno);
Mark Hammondc2e85bd2002-10-03 05:10:39 +0000759}
760
Victor Stinnereb5657a2011-09-30 01:44:27 +0200761static PyObject *
762win32_error_object(char* function, PyObject* filename)
763{
764 /* XXX - see win32_error for comments on 'function' */
765 errno = GetLastError();
766 if (filename)
767 return PyErr_SetExcFromWindowsErrWithFilenameObject(
768 PyExc_WindowsError,
769 errno,
770 filename);
771 else
772 return PyErr_SetFromWindowsErr(errno);
773}
774
Hirokazu Yamamoto8223c242009-05-17 04:21:53 +0000775#endif /* MS_WINDOWS */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000776
Guido van Rossumd48f2521997-12-05 22:19:34 +0000777#if defined(PYOS_OS2)
778/**********************************************************************
779 * Helper Function to Trim and Format OS/2 Messages
780 **********************************************************************/
Victor Stinner8c62be82010-05-06 00:08:46 +0000781static void
Guido van Rossumd48f2521997-12-05 22:19:34 +0000782os2_formatmsg(char *msgbuf, int msglen, char *reason)
783{
784 msgbuf[msglen] = '\0'; /* OS/2 Doesn't Guarantee a Terminator */
785
786 if (strlen(msgbuf) > 0) { /* If Non-Empty Msg, Trim CRLF */
787 char *lastc = &msgbuf[ strlen(msgbuf)-1 ];
788
Neal Norwitz30b5c5d2005-12-19 06:05:18 +0000789 while (lastc > msgbuf && isspace(Py_CHARMASK(*lastc)))
Guido van Rossumd48f2521997-12-05 22:19:34 +0000790 *lastc-- = '\0'; /* Trim Trailing Whitespace (CRLF) */
791 }
792
793 /* Add Optional Reason Text */
794 if (reason) {
795 strcat(msgbuf, " : ");
796 strcat(msgbuf, reason);
797 }
798}
799
800/**********************************************************************
801 * Decode an OS/2 Operating System Error Code
802 *
803 * A convenience function to lookup an OS/2 error code and return a
804 * text message we can use to raise a Python exception.
805 *
806 * Notes:
807 * The messages for errors returned from the OS/2 kernel reside in
808 * the file OSO001.MSG in the \OS2 directory hierarchy.
809 *
810 **********************************************************************/
Victor Stinner8c62be82010-05-06 00:08:46 +0000811static char *
Guido van Rossumd48f2521997-12-05 22:19:34 +0000812os2_strerror(char *msgbuf, int msgbuflen, int errorcode, char *reason)
813{
814 APIRET rc;
815 ULONG msglen;
816
817 /* Retrieve Kernel-Related Error Message from OSO001.MSG File */
818 Py_BEGIN_ALLOW_THREADS
819 rc = DosGetMessage(NULL, 0, msgbuf, msgbuflen,
820 errorcode, "oso001.msg", &msglen);
821 Py_END_ALLOW_THREADS
822
823 if (rc == NO_ERROR)
824 os2_formatmsg(msgbuf, msglen, reason);
825 else
Tim Peters1ceb5fb2001-11-28 20:32:57 +0000826 PyOS_snprintf(msgbuf, msgbuflen,
Victor Stinner8c62be82010-05-06 00:08:46 +0000827 "unknown OS error #%d", errorcode);
Guido van Rossumd48f2521997-12-05 22:19:34 +0000828
829 return msgbuf;
830}
831
832/* Set an OS/2-specific error and return NULL. OS/2 kernel
833 errors are not in a global variable e.g. 'errno' nor are
834 they congruent with posix error numbers. */
835
Victor Stinner8c62be82010-05-06 00:08:46 +0000836static PyObject *
837os2_error(int code)
Guido van Rossumd48f2521997-12-05 22:19:34 +0000838{
839 char text[1024];
840 PyObject *v;
841
842 os2_strerror(text, sizeof(text), code, "");
843
844 v = Py_BuildValue("(is)", code, text);
845 if (v != NULL) {
Barry Warsawca74da41999-02-09 19:31:45 +0000846 PyErr_SetObject(PyExc_OSError, v);
Guido van Rossumd48f2521997-12-05 22:19:34 +0000847 Py_DECREF(v);
848 }
849 return NULL; /* Signal to Python that an Exception is Pending */
850}
851
852#endif /* OS2 */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000853
854/* POSIX generic methods */
855
Barry Warsaw53699e91996-12-10 23:23:01 +0000856static PyObject *
Fred Drake4d1e64b2002-04-15 19:40:07 +0000857posix_fildes(PyObject *fdobj, int (*func)(int))
858{
Victor Stinner8c62be82010-05-06 00:08:46 +0000859 int fd;
860 int res;
861 fd = PyObject_AsFileDescriptor(fdobj);
862 if (fd < 0)
863 return NULL;
864 if (!_PyVerify_fd(fd))
865 return posix_error();
866 Py_BEGIN_ALLOW_THREADS
867 res = (*func)(fd);
868 Py_END_ALLOW_THREADS
869 if (res < 0)
870 return posix_error();
871 Py_INCREF(Py_None);
872 return Py_None;
Fred Drake4d1e64b2002-04-15 19:40:07 +0000873}
Guido van Rossum21142a01999-01-08 21:05:37 +0000874
875static PyObject *
Thomas Wouters477c8d52006-05-27 19:21:47 +0000876posix_1str(PyObject *args, char *format, int (*func)(const char*))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000877{
Victor Stinner8c62be82010-05-06 00:08:46 +0000878 PyObject *opath1 = NULL;
879 char *path1;
880 int res;
881 if (!PyArg_ParseTuple(args, format,
882 PyUnicode_FSConverter, &opath1))
883 return NULL;
884 path1 = PyBytes_AsString(opath1);
885 Py_BEGIN_ALLOW_THREADS
886 res = (*func)(path1);
887 Py_END_ALLOW_THREADS
888 if (res < 0)
889 return posix_error_with_allocated_filename(opath1);
890 Py_DECREF(opath1);
891 Py_INCREF(Py_None);
892 return Py_None;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000893}
894
Barry Warsaw53699e91996-12-10 23:23:01 +0000895static PyObject *
Tim Peters11b23062003-04-23 02:39:17 +0000896posix_2str(PyObject *args,
Victor Stinner8c62be82010-05-06 00:08:46 +0000897 char *format,
898 int (*func)(const char *, const char *))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000899{
Victor Stinner8c62be82010-05-06 00:08:46 +0000900 PyObject *opath1 = NULL, *opath2 = NULL;
901 char *path1, *path2;
902 int res;
903 if (!PyArg_ParseTuple(args, format,
904 PyUnicode_FSConverter, &opath1,
905 PyUnicode_FSConverter, &opath2)) {
906 return NULL;
907 }
908 path1 = PyBytes_AsString(opath1);
909 path2 = PyBytes_AsString(opath2);
910 Py_BEGIN_ALLOW_THREADS
911 res = (*func)(path1, path2);
912 Py_END_ALLOW_THREADS
913 Py_DECREF(opath1);
914 Py_DECREF(opath2);
915 if (res != 0)
916 /* XXX how to report both path1 and path2??? */
917 return posix_error();
918 Py_INCREF(Py_None);
919 return Py_None;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000920}
921
Hirokazu Yamamoto8223c242009-05-17 04:21:53 +0000922#ifdef MS_WINDOWS
Thomas Wouters477c8d52006-05-27 19:21:47 +0000923static PyObject*
Victor Stinner8c62be82010-05-06 00:08:46 +0000924win32_1str(PyObject* args, char* func,
925 char* format, BOOL (__stdcall *funcA)(LPCSTR),
926 char* wformat, BOOL (__stdcall *funcW)(LPWSTR))
Thomas Wouters477c8d52006-05-27 19:21:47 +0000927{
Victor Stinner8c62be82010-05-06 00:08:46 +0000928 PyObject *uni;
Victor Stinner1ab6c2d2011-11-15 22:27:41 +0100929 const char *ansi;
Victor Stinner8c62be82010-05-06 00:08:46 +0000930 BOOL result;
Hirokazu Yamamoto892a37a2009-06-28 11:07:03 +0000931
Victor Stinnereb5657a2011-09-30 01:44:27 +0200932 if (PyArg_ParseTuple(args, wformat, &uni))
933 {
934 wchar_t *wstr = PyUnicode_AsUnicode(uni);
935 if (wstr == NULL)
936 return NULL;
Victor Stinner8c62be82010-05-06 00:08:46 +0000937 Py_BEGIN_ALLOW_THREADS
Victor Stinnereb5657a2011-09-30 01:44:27 +0200938 result = funcW(wstr);
Victor Stinner8c62be82010-05-06 00:08:46 +0000939 Py_END_ALLOW_THREADS
940 if (!result)
Victor Stinnereb5657a2011-09-30 01:44:27 +0200941 return win32_error_object(func, uni);
Victor Stinner8c62be82010-05-06 00:08:46 +0000942 Py_INCREF(Py_None);
943 return Py_None;
944 }
Victor Stinnereb5657a2011-09-30 01:44:27 +0200945 PyErr_Clear();
946
Victor Stinner8c62be82010-05-06 00:08:46 +0000947 if (!PyArg_ParseTuple(args, format, &ansi))
948 return NULL;
Victor Stinner1ab6c2d2011-11-15 22:27:41 +0100949 if (win32_warn_bytes_api())
950 return NULL;
Victor Stinner8c62be82010-05-06 00:08:46 +0000951 Py_BEGIN_ALLOW_THREADS
952 result = funcA(ansi);
953 Py_END_ALLOW_THREADS
954 if (!result)
955 return win32_error(func, ansi);
956 Py_INCREF(Py_None);
957 return Py_None;
Thomas Wouters477c8d52006-05-27 19:21:47 +0000958
959}
960
961/* This is a reimplementation of the C library's chdir function,
962 but one that produces Win32 errors instead of DOS error codes.
963 chdir is essentially a wrapper around SetCurrentDirectory; however,
964 it also needs to set "magic" environment variables indicating
965 the per-drive current directory, which are of the form =<drive>: */
Benjamin Peterson206e3072008-10-19 14:07:49 +0000966static BOOL __stdcall
Thomas Wouters477c8d52006-05-27 19:21:47 +0000967win32_chdir(LPCSTR path)
968{
Victor Stinner8c62be82010-05-06 00:08:46 +0000969 char new_path[MAX_PATH+1];
970 int result;
971 char env[4] = "=x:";
Thomas Wouters477c8d52006-05-27 19:21:47 +0000972
Victor Stinner8c62be82010-05-06 00:08:46 +0000973 if(!SetCurrentDirectoryA(path))
974 return FALSE;
975 result = GetCurrentDirectoryA(MAX_PATH+1, new_path);
976 if (!result)
977 return FALSE;
978 /* In the ANSI API, there should not be any paths longer
979 than MAX_PATH. */
980 assert(result <= MAX_PATH+1);
981 if (strncmp(new_path, "\\\\", 2) == 0 ||
982 strncmp(new_path, "//", 2) == 0)
983 /* UNC path, nothing to do. */
984 return TRUE;
985 env[1] = new_path[0];
986 return SetEnvironmentVariableA(env, new_path);
Thomas Wouters477c8d52006-05-27 19:21:47 +0000987}
988
989/* The Unicode version differs from the ANSI version
990 since the current directory might exceed MAX_PATH characters */
Benjamin Peterson206e3072008-10-19 14:07:49 +0000991static BOOL __stdcall
Thomas Wouters477c8d52006-05-27 19:21:47 +0000992win32_wchdir(LPCWSTR path)
993{
Victor Stinner8c62be82010-05-06 00:08:46 +0000994 wchar_t _new_path[MAX_PATH+1], *new_path = _new_path;
995 int result;
996 wchar_t env[4] = L"=x:";
Thomas Wouters477c8d52006-05-27 19:21:47 +0000997
Victor Stinner8c62be82010-05-06 00:08:46 +0000998 if(!SetCurrentDirectoryW(path))
999 return FALSE;
1000 result = GetCurrentDirectoryW(MAX_PATH+1, new_path);
1001 if (!result)
1002 return FALSE;
1003 if (result > MAX_PATH+1) {
1004 new_path = malloc(result * sizeof(wchar_t));
1005 if (!new_path) {
1006 SetLastError(ERROR_OUTOFMEMORY);
1007 return FALSE;
1008 }
1009 result = GetCurrentDirectoryW(result, new_path);
1010 if (!result) {
1011 free(new_path);
1012 return FALSE;
1013 }
1014 }
1015 if (wcsncmp(new_path, L"\\\\", 2) == 0 ||
1016 wcsncmp(new_path, L"//", 2) == 0)
1017 /* UNC path, nothing to do. */
1018 return TRUE;
1019 env[1] = new_path[0];
1020 result = SetEnvironmentVariableW(env, new_path);
1021 if (new_path != _new_path)
1022 free(new_path);
1023 return result;
Thomas Wouters477c8d52006-05-27 19:21:47 +00001024}
1025#endif
1026
Martin v. Löwis14694662006-02-03 12:54:16 +00001027#ifdef MS_WINDOWS
1028/* The CRT of Windows has a number of flaws wrt. its stat() implementation:
1029 - time stamps are restricted to second resolution
1030 - file modification times suffer from forth-and-back conversions between
1031 UTC and local time
1032 Therefore, we implement our own stat, based on the Win32 API directly.
1033*/
Victor Stinner8c62be82010-05-06 00:08:46 +00001034#define HAVE_STAT_NSEC 1
Martin v. Löwis14694662006-02-03 12:54:16 +00001035
1036struct win32_stat{
1037 int st_dev;
1038 __int64 st_ino;
1039 unsigned short st_mode;
1040 int st_nlink;
1041 int st_uid;
1042 int st_gid;
1043 int st_rdev;
1044 __int64 st_size;
Amaury Forgeot d'Arca251a852011-01-03 00:19:11 +00001045 time_t st_atime;
Martin v. Löwis14694662006-02-03 12:54:16 +00001046 int st_atime_nsec;
Amaury Forgeot d'Arca251a852011-01-03 00:19:11 +00001047 time_t st_mtime;
Martin v. Löwis14694662006-02-03 12:54:16 +00001048 int st_mtime_nsec;
Amaury Forgeot d'Arca251a852011-01-03 00:19:11 +00001049 time_t st_ctime;
Martin v. Löwis14694662006-02-03 12:54:16 +00001050 int st_ctime_nsec;
1051};
1052
1053static __int64 secs_between_epochs = 11644473600; /* Seconds between 1.1.1601 and 1.1.1970 */
1054
1055static void
Amaury Forgeot d'Arca251a852011-01-03 00:19:11 +00001056FILE_TIME_to_time_t_nsec(FILETIME *in_ptr, time_t *time_out, int* nsec_out)
Martin v. Löwis14694662006-02-03 12:54:16 +00001057{
Victor Stinner8c62be82010-05-06 00:08:46 +00001058 /* XXX endianness. Shouldn't matter, as all Windows implementations are little-endian */
1059 /* Cannot simply cast and dereference in_ptr,
1060 since it might not be aligned properly */
1061 __int64 in;
1062 memcpy(&in, in_ptr, sizeof(in));
1063 *nsec_out = (int)(in % 10000000) * 100; /* FILETIME is in units of 100 nsec. */
Amaury Forgeot d'Arca251a852011-01-03 00:19:11 +00001064 *time_out = Py_SAFE_DOWNCAST((in / 10000000) - secs_between_epochs, __int64, time_t);
Martin v. Löwis14694662006-02-03 12:54:16 +00001065}
1066
Thomas Wouters477c8d52006-05-27 19:21:47 +00001067static void
Amaury Forgeot d'Arca251a852011-01-03 00:19:11 +00001068time_t_to_FILE_TIME(time_t time_in, int nsec_in, FILETIME *out_ptr)
Thomas Wouters477c8d52006-05-27 19:21:47 +00001069{
Victor Stinner8c62be82010-05-06 00:08:46 +00001070 /* XXX endianness */
1071 __int64 out;
1072 out = time_in + secs_between_epochs;
1073 out = out * 10000000 + nsec_in / 100;
1074 memcpy(out_ptr, &out, sizeof(out));
Thomas Wouters477c8d52006-05-27 19:21:47 +00001075}
1076
Martin v. Löwis14694662006-02-03 12:54:16 +00001077/* Below, we *know* that ugo+r is 0444 */
1078#if _S_IREAD != 0400
1079#error Unsupported C library
1080#endif
1081static int
1082attributes_to_mode(DWORD attr)
1083{
Victor Stinner8c62be82010-05-06 00:08:46 +00001084 int m = 0;
1085 if (attr & FILE_ATTRIBUTE_DIRECTORY)
1086 m |= _S_IFDIR | 0111; /* IFEXEC for user,group,other */
1087 else
1088 m |= _S_IFREG;
1089 if (attr & FILE_ATTRIBUTE_READONLY)
1090 m |= 0444;
1091 else
1092 m |= 0666;
1093 return m;
Martin v. Löwis14694662006-02-03 12:54:16 +00001094}
1095
1096static int
Hirokazu Yamamoto427d3142010-12-04 10:16:05 +00001097attribute_data_to_stat(BY_HANDLE_FILE_INFORMATION *info, ULONG reparse_tag, struct win32_stat *result)
Martin v. Löwis14694662006-02-03 12:54:16 +00001098{
Victor Stinner8c62be82010-05-06 00:08:46 +00001099 memset(result, 0, sizeof(*result));
1100 result->st_mode = attributes_to_mode(info->dwFileAttributes);
1101 result->st_size = (((__int64)info->nFileSizeHigh)<<32) + info->nFileSizeLow;
1102 FILE_TIME_to_time_t_nsec(&info->ftCreationTime, &result->st_ctime, &result->st_ctime_nsec);
1103 FILE_TIME_to_time_t_nsec(&info->ftLastWriteTime, &result->st_mtime, &result->st_mtime_nsec);
1104 FILE_TIME_to_time_t_nsec(&info->ftLastAccessTime, &result->st_atime, &result->st_atime_nsec);
Brian Curtinf5e76d02010-11-24 13:14:05 +00001105 result->st_nlink = info->nNumberOfLinks;
Brian Curtin1b9df392010-11-24 20:24:31 +00001106 result->st_ino = (((__int64)info->nFileIndexHigh)<<32) + info->nFileIndexLow;
Hirokazu Yamamoto427d3142010-12-04 10:16:05 +00001107 if (reparse_tag == IO_REPARSE_TAG_SYMLINK) {
1108 /* first clear the S_IFMT bits */
1109 result->st_mode ^= (result->st_mode & 0170000);
1110 /* now set the bits that make this a symlink */
1111 result->st_mode |= 0120000;
1112 }
Martin v. Löwis14694662006-02-03 12:54:16 +00001113
Victor Stinner8c62be82010-05-06 00:08:46 +00001114 return 0;
Martin v. Löwis14694662006-02-03 12:54:16 +00001115}
1116
Guido van Rossumd8faa362007-04-27 19:54:29 +00001117static BOOL
Hirokazu Yamamoto427d3142010-12-04 10:16:05 +00001118attributes_from_dir(LPCSTR pszFile, BY_HANDLE_FILE_INFORMATION *info, ULONG *reparse_tag)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001119{
Victor Stinner8c62be82010-05-06 00:08:46 +00001120 HANDLE hFindFile;
1121 WIN32_FIND_DATAA FileData;
1122 hFindFile = FindFirstFileA(pszFile, &FileData);
1123 if (hFindFile == INVALID_HANDLE_VALUE)
1124 return FALSE;
1125 FindClose(hFindFile);
Brian Curtinf5e76d02010-11-24 13:14:05 +00001126 memset(info, 0, sizeof(*info));
Hirokazu Yamamoto427d3142010-12-04 10:16:05 +00001127 *reparse_tag = 0;
Brian Curtinf5e76d02010-11-24 13:14:05 +00001128 info->dwFileAttributes = FileData.dwFileAttributes;
1129 info->ftCreationTime = FileData.ftCreationTime;
1130 info->ftLastAccessTime = FileData.ftLastAccessTime;
1131 info->ftLastWriteTime = FileData.ftLastWriteTime;
1132 info->nFileSizeHigh = FileData.nFileSizeHigh;
1133 info->nFileSizeLow = FileData.nFileSizeLow;
1134/* info->nNumberOfLinks = 1; */
Hirokazu Yamamoto427d3142010-12-04 10:16:05 +00001135 if (FileData.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT)
1136 *reparse_tag = FileData.dwReserved0;
Victor Stinner8c62be82010-05-06 00:08:46 +00001137 return TRUE;
Guido van Rossumd8faa362007-04-27 19:54:29 +00001138}
1139
1140static BOOL
Hirokazu Yamamoto427d3142010-12-04 10:16:05 +00001141attributes_from_dir_w(LPCWSTR pszFile, BY_HANDLE_FILE_INFORMATION *info, ULONG *reparse_tag)
Guido van Rossumd8faa362007-04-27 19:54:29 +00001142{
Victor Stinner8c62be82010-05-06 00:08:46 +00001143 HANDLE hFindFile;
1144 WIN32_FIND_DATAW FileData;
1145 hFindFile = FindFirstFileW(pszFile, &FileData);
1146 if (hFindFile == INVALID_HANDLE_VALUE)
1147 return FALSE;
1148 FindClose(hFindFile);
Brian Curtinf5e76d02010-11-24 13:14:05 +00001149 memset(info, 0, sizeof(*info));
Hirokazu Yamamoto427d3142010-12-04 10:16:05 +00001150 *reparse_tag = 0;
Brian Curtinf5e76d02010-11-24 13:14:05 +00001151 info->dwFileAttributes = FileData.dwFileAttributes;
1152 info->ftCreationTime = FileData.ftCreationTime;
1153 info->ftLastAccessTime = FileData.ftLastAccessTime;
1154 info->ftLastWriteTime = FileData.ftLastWriteTime;
1155 info->nFileSizeHigh = FileData.nFileSizeHigh;
1156 info->nFileSizeLow = FileData.nFileSizeLow;
1157/* info->nNumberOfLinks = 1; */
Hirokazu Yamamoto427d3142010-12-04 10:16:05 +00001158 if (FileData.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT)
1159 *reparse_tag = FileData.dwReserved0;
Victor Stinner8c62be82010-05-06 00:08:46 +00001160 return TRUE;
Guido van Rossumd8faa362007-04-27 19:54:29 +00001161}
1162
Brian Curtind25aef52011-06-13 15:16:04 -05001163/* Grab GetFinalPathNameByHandle dynamically from kernel32 */
1164static int has_GetFinalPathNameByHandle = 0;
Brian Curtind25aef52011-06-13 15:16:04 -05001165static DWORD (CALLBACK *Py_GetFinalPathNameByHandleW)(HANDLE, LPWSTR, DWORD,
1166 DWORD);
Brian Curtinf5e76d02010-11-24 13:14:05 +00001167static int
Brian Curtind25aef52011-06-13 15:16:04 -05001168check_GetFinalPathNameByHandle()
Brian Curtinf5e76d02010-11-24 13:14:05 +00001169{
Brian Curtind25aef52011-06-13 15:16:04 -05001170 HINSTANCE hKernel32;
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01001171 DWORD (CALLBACK *Py_GetFinalPathNameByHandleA)(HANDLE, LPSTR, DWORD,
1172 DWORD);
1173
Brian Curtind25aef52011-06-13 15:16:04 -05001174 /* only recheck */
1175 if (!has_GetFinalPathNameByHandle)
1176 {
Martin v. Löwis50590f12012-01-14 17:54:09 +01001177 hKernel32 = GetModuleHandleW(L"KERNEL32");
Brian Curtind25aef52011-06-13 15:16:04 -05001178 *(FARPROC*)&Py_GetFinalPathNameByHandleA = GetProcAddress(hKernel32,
1179 "GetFinalPathNameByHandleA");
1180 *(FARPROC*)&Py_GetFinalPathNameByHandleW = GetProcAddress(hKernel32,
1181 "GetFinalPathNameByHandleW");
1182 has_GetFinalPathNameByHandle = Py_GetFinalPathNameByHandleA &&
1183 Py_GetFinalPathNameByHandleW;
1184 }
1185 return has_GetFinalPathNameByHandle;
1186}
1187
1188static BOOL
1189get_target_path(HANDLE hdl, wchar_t **target_path)
1190{
1191 int buf_size, result_length;
1192 wchar_t *buf;
1193
1194 /* We have a good handle to the target, use it to determine
1195 the target path name (then we'll call lstat on it). */
1196 buf_size = Py_GetFinalPathNameByHandleW(hdl, 0, 0,
1197 VOLUME_NAME_DOS);
1198 if(!buf_size)
1199 return FALSE;
1200
1201 buf = (wchar_t *)malloc((buf_size+1)*sizeof(wchar_t));
Brian Curtinc8be8402011-06-14 09:52:50 -05001202 if (!buf) {
1203 SetLastError(ERROR_OUTOFMEMORY);
1204 return FALSE;
1205 }
1206
Brian Curtind25aef52011-06-13 15:16:04 -05001207 result_length = Py_GetFinalPathNameByHandleW(hdl,
1208 buf, buf_size, VOLUME_NAME_DOS);
1209
1210 if(!result_length) {
1211 free(buf);
1212 return FALSE;
1213 }
1214
1215 if(!CloseHandle(hdl)) {
1216 free(buf);
1217 return FALSE;
1218 }
1219
1220 buf[result_length] = 0;
1221
1222 *target_path = buf;
1223 return TRUE;
1224}
1225
1226static int
1227win32_xstat_impl_w(const wchar_t *path, struct win32_stat *result,
1228 BOOL traverse);
1229static int
1230win32_xstat_impl(const char *path, struct win32_stat *result,
1231 BOOL traverse)
1232{
Victor Stinner26de69d2011-06-17 15:15:38 +02001233 int code;
Brian Curtind25aef52011-06-13 15:16:04 -05001234 HANDLE hFile, hFile2;
Brian Curtinf5e76d02010-11-24 13:14:05 +00001235 BY_HANDLE_FILE_INFORMATION info;
Hirokazu Yamamoto427d3142010-12-04 10:16:05 +00001236 ULONG reparse_tag = 0;
Victor Stinner26de69d2011-06-17 15:15:38 +02001237 wchar_t *target_path;
Brian Curtinf5e76d02010-11-24 13:14:05 +00001238 const char *dot;
1239
Brian Curtind25aef52011-06-13 15:16:04 -05001240 if(!check_GetFinalPathNameByHandle()) {
Brian Curtinc8be8402011-06-14 09:52:50 -05001241 /* If the OS doesn't have GetFinalPathNameByHandle, don't
1242 traverse reparse point. */
1243 traverse = FALSE;
Hirokazu Yamamoto427d3142010-12-04 10:16:05 +00001244 }
1245
Brian Curtinf5e76d02010-11-24 13:14:05 +00001246 hFile = CreateFileA(
1247 path,
Brian Curtind25aef52011-06-13 15:16:04 -05001248 FILE_READ_ATTRIBUTES, /* desired access */
Brian Curtinf5e76d02010-11-24 13:14:05 +00001249 0, /* share mode */
1250 NULL, /* security attributes */
1251 OPEN_EXISTING,
1252 /* FILE_FLAG_BACKUP_SEMANTICS is required to open a directory */
Brian Curtind25aef52011-06-13 15:16:04 -05001253 /* FILE_FLAG_OPEN_REPARSE_POINT does not follow the symlink.
1254 Because of this, calls like GetFinalPathNameByHandle will return
1255 the symlink path agin and not the actual final path. */
1256 FILE_ATTRIBUTE_NORMAL|FILE_FLAG_BACKUP_SEMANTICS|
1257 FILE_FLAG_OPEN_REPARSE_POINT,
Brian Curtinf5e76d02010-11-24 13:14:05 +00001258 NULL);
1259
Hirokazu Yamamoto427d3142010-12-04 10:16:05 +00001260 if (hFile == INVALID_HANDLE_VALUE) {
Brian Curtinf5e76d02010-11-24 13:14:05 +00001261 /* Either the target doesn't exist, or we don't have access to
1262 get a handle to it. If the former, we need to return an error.
1263 If the latter, we can use attributes_from_dir. */
1264 if (GetLastError() != ERROR_SHARING_VIOLATION)
Hirokazu Yamamoto427d3142010-12-04 10:16:05 +00001265 return -1;
1266 /* Could not get attributes on open file. Fall back to
1267 reading the directory. */
1268 if (!attributes_from_dir(path, &info, &reparse_tag))
1269 /* Very strange. This should not fail now */
1270 return -1;
1271 if (info.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT) {
1272 if (traverse) {
1273 /* Should traverse, but could not open reparse point handle */
Brian Curtinf5e76d02010-11-24 13:14:05 +00001274 SetLastError(ERROR_SHARING_VIOLATION);
Hirokazu Yamamoto427d3142010-12-04 10:16:05 +00001275 return -1;
Brian Curtinf5e76d02010-11-24 13:14:05 +00001276 }
Brian Curtinf5e76d02010-11-24 13:14:05 +00001277 }
Hirokazu Yamamoto427d3142010-12-04 10:16:05 +00001278 } else {
1279 if (!GetFileInformationByHandle(hFile, &info)) {
1280 CloseHandle(hFile);
Brian Curtind25aef52011-06-13 15:16:04 -05001281 return -1;
Hirokazu Yamamoto427d3142010-12-04 10:16:05 +00001282 }
1283 if (info.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT) {
Brian Curtind25aef52011-06-13 15:16:04 -05001284 if (!win32_get_reparse_tag(hFile, &reparse_tag))
1285 return -1;
1286
1287 /* Close the outer open file handle now that we're about to
1288 reopen it with different flags. */
1289 if (!CloseHandle(hFile))
1290 return -1;
1291
Hirokazu Yamamoto427d3142010-12-04 10:16:05 +00001292 if (traverse) {
Brian Curtind25aef52011-06-13 15:16:04 -05001293 /* In order to call GetFinalPathNameByHandle we need to open
1294 the file without the reparse handling flag set. */
1295 hFile2 = CreateFileA(
1296 path, FILE_READ_ATTRIBUTES, FILE_SHARE_READ,
1297 NULL, OPEN_EXISTING,
1298 FILE_ATTRIBUTE_NORMAL|FILE_FLAG_BACKUP_SEMANTICS,
1299 NULL);
1300 if (hFile2 == INVALID_HANDLE_VALUE)
1301 return -1;
1302
1303 if (!get_target_path(hFile2, &target_path))
1304 return -1;
1305
1306 code = win32_xstat_impl_w(target_path, result, FALSE);
Hirokazu Yamamoto427d3142010-12-04 10:16:05 +00001307 free(target_path);
1308 return code;
1309 }
Hirokazu Yamamoto7ed117a2010-12-07 10:24:37 +00001310 } else
1311 CloseHandle(hFile);
Brian Curtinf5e76d02010-11-24 13:14:05 +00001312 }
Hirokazu Yamamoto427d3142010-12-04 10:16:05 +00001313 attribute_data_to_stat(&info, reparse_tag, result);
Brian Curtinf5e76d02010-11-24 13:14:05 +00001314
1315 /* Set S_IEXEC if it is an .exe, .bat, ... */
1316 dot = strrchr(path, '.');
1317 if (dot) {
1318 if (stricmp(dot, ".bat") == 0 || stricmp(dot, ".cmd") == 0 ||
1319 stricmp(dot, ".exe") == 0 || stricmp(dot, ".com") == 0)
1320 result->st_mode |= 0111;
1321 }
1322 return 0;
Brian Curtinf5e76d02010-11-24 13:14:05 +00001323}
1324
1325static int
Brian Curtind25aef52011-06-13 15:16:04 -05001326win32_xstat_impl_w(const wchar_t *path, struct win32_stat *result,
1327 BOOL traverse)
Brian Curtinf5e76d02010-11-24 13:14:05 +00001328{
1329 int code;
Brian Curtind25aef52011-06-13 15:16:04 -05001330 HANDLE hFile, hFile2;
Brian Curtinf5e76d02010-11-24 13:14:05 +00001331 BY_HANDLE_FILE_INFORMATION info;
Hirokazu Yamamoto427d3142010-12-04 10:16:05 +00001332 ULONG reparse_tag = 0;
Victor Stinner26de69d2011-06-17 15:15:38 +02001333 wchar_t *target_path;
Brian Curtinf5e76d02010-11-24 13:14:05 +00001334 const wchar_t *dot;
1335
Brian Curtind25aef52011-06-13 15:16:04 -05001336 if(!check_GetFinalPathNameByHandle()) {
Brian Curtinc8be8402011-06-14 09:52:50 -05001337 /* If the OS doesn't have GetFinalPathNameByHandle, don't
1338 traverse reparse point. */
1339 traverse = FALSE;
Hirokazu Yamamoto427d3142010-12-04 10:16:05 +00001340 }
1341
Brian Curtinf5e76d02010-11-24 13:14:05 +00001342 hFile = CreateFileW(
1343 path,
Brian Curtind25aef52011-06-13 15:16:04 -05001344 FILE_READ_ATTRIBUTES, /* desired access */
Brian Curtinf5e76d02010-11-24 13:14:05 +00001345 0, /* share mode */
1346 NULL, /* security attributes */
1347 OPEN_EXISTING,
1348 /* FILE_FLAG_BACKUP_SEMANTICS is required to open a directory */
Brian Curtind25aef52011-06-13 15:16:04 -05001349 /* FILE_FLAG_OPEN_REPARSE_POINT does not follow the symlink.
1350 Because of this, calls like GetFinalPathNameByHandle will return
1351 the symlink path agin and not the actual final path. */
Victor Stinner26de69d2011-06-17 15:15:38 +02001352 FILE_ATTRIBUTE_NORMAL|FILE_FLAG_BACKUP_SEMANTICS|
Brian Curtind25aef52011-06-13 15:16:04 -05001353 FILE_FLAG_OPEN_REPARSE_POINT,
Brian Curtinf5e76d02010-11-24 13:14:05 +00001354 NULL);
1355
Hirokazu Yamamoto427d3142010-12-04 10:16:05 +00001356 if (hFile == INVALID_HANDLE_VALUE) {
Brian Curtinf5e76d02010-11-24 13:14:05 +00001357 /* Either the target doesn't exist, or we don't have access to
1358 get a handle to it. If the former, we need to return an error.
1359 If the latter, we can use attributes_from_dir. */
1360 if (GetLastError() != ERROR_SHARING_VIOLATION)
Hirokazu Yamamoto427d3142010-12-04 10:16:05 +00001361 return -1;
1362 /* Could not get attributes on open file. Fall back to
1363 reading the directory. */
1364 if (!attributes_from_dir_w(path, &info, &reparse_tag))
1365 /* Very strange. This should not fail now */
1366 return -1;
1367 if (info.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT) {
1368 if (traverse) {
1369 /* Should traverse, but could not open reparse point handle */
Brian Curtinf5e76d02010-11-24 13:14:05 +00001370 SetLastError(ERROR_SHARING_VIOLATION);
Hirokazu Yamamoto427d3142010-12-04 10:16:05 +00001371 return -1;
Brian Curtinf5e76d02010-11-24 13:14:05 +00001372 }
Brian Curtinf5e76d02010-11-24 13:14:05 +00001373 }
Hirokazu Yamamoto427d3142010-12-04 10:16:05 +00001374 } else {
1375 if (!GetFileInformationByHandle(hFile, &info)) {
1376 CloseHandle(hFile);
Brian Curtind25aef52011-06-13 15:16:04 -05001377 return -1;
Hirokazu Yamamoto427d3142010-12-04 10:16:05 +00001378 }
1379 if (info.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT) {
Brian Curtind25aef52011-06-13 15:16:04 -05001380 if (!win32_get_reparse_tag(hFile, &reparse_tag))
1381 return -1;
1382
1383 /* Close the outer open file handle now that we're about to
1384 reopen it with different flags. */
1385 if (!CloseHandle(hFile))
1386 return -1;
1387
Hirokazu Yamamoto427d3142010-12-04 10:16:05 +00001388 if (traverse) {
Brian Curtind25aef52011-06-13 15:16:04 -05001389 /* In order to call GetFinalPathNameByHandle we need to open
1390 the file without the reparse handling flag set. */
1391 hFile2 = CreateFileW(
1392 path, FILE_READ_ATTRIBUTES, FILE_SHARE_READ,
1393 NULL, OPEN_EXISTING,
1394 FILE_ATTRIBUTE_NORMAL|FILE_FLAG_BACKUP_SEMANTICS,
1395 NULL);
1396 if (hFile2 == INVALID_HANDLE_VALUE)
1397 return -1;
1398
1399 if (!get_target_path(hFile2, &target_path))
1400 return -1;
1401
1402 code = win32_xstat_impl_w(target_path, result, FALSE);
Hirokazu Yamamoto427d3142010-12-04 10:16:05 +00001403 free(target_path);
1404 return code;
1405 }
Hirokazu Yamamoto7ed117a2010-12-07 10:24:37 +00001406 } else
1407 CloseHandle(hFile);
Brian Curtinf5e76d02010-11-24 13:14:05 +00001408 }
Hirokazu Yamamoto427d3142010-12-04 10:16:05 +00001409 attribute_data_to_stat(&info, reparse_tag, result);
Brian Curtinf5e76d02010-11-24 13:14:05 +00001410
1411 /* Set S_IEXEC if it is an .exe, .bat, ... */
1412 dot = wcsrchr(path, '.');
1413 if (dot) {
1414 if (_wcsicmp(dot, L".bat") == 0 || _wcsicmp(dot, L".cmd") == 0 ||
1415 _wcsicmp(dot, L".exe") == 0 || _wcsicmp(dot, L".com") == 0)
1416 result->st_mode |= 0111;
1417 }
1418 return 0;
Brian Curtinf5e76d02010-11-24 13:14:05 +00001419}
1420
1421static int
Hirokazu Yamamoto427d3142010-12-04 10:16:05 +00001422win32_xstat(const char *path, struct win32_stat *result, BOOL traverse)
Brian Curtinf5e76d02010-11-24 13:14:05 +00001423{
Hirokazu Yamamoto427d3142010-12-04 10:16:05 +00001424 /* Protocol violation: we explicitly clear errno, instead of
1425 setting it to a POSIX error. Callers should use GetLastError. */
Brian Curtind25aef52011-06-13 15:16:04 -05001426 int code = win32_xstat_impl(path, result, traverse);
Hirokazu Yamamoto427d3142010-12-04 10:16:05 +00001427 errno = 0;
1428 return code;
1429}
Brian Curtinf5e76d02010-11-24 13:14:05 +00001430
Hirokazu Yamamoto427d3142010-12-04 10:16:05 +00001431static int
1432win32_xstat_w(const wchar_t *path, struct win32_stat *result, BOOL traverse)
1433{
1434 /* Protocol violation: we explicitly clear errno, instead of
1435 setting it to a POSIX error. Callers should use GetLastError. */
Brian Curtind25aef52011-06-13 15:16:04 -05001436 int code = win32_xstat_impl_w(path, result, traverse);
Hirokazu Yamamoto427d3142010-12-04 10:16:05 +00001437 errno = 0;
1438 return code;
Brian Curtinf5e76d02010-11-24 13:14:05 +00001439}
Brian Curtind25aef52011-06-13 15:16:04 -05001440/* About the following functions: win32_lstat_w, win32_stat, win32_stat_w
Brian Curtind40e6f72010-07-08 21:39:08 +00001441
1442 In Posix, stat automatically traverses symlinks and returns the stat
1443 structure for the target. In Windows, the equivalent GetFileAttributes by
1444 default does not traverse symlinks and instead returns attributes for
1445 the symlink.
1446
1447 Therefore, win32_lstat will get the attributes traditionally, and
1448 win32_stat will first explicitly resolve the symlink target and then will
1449 call win32_lstat on that result.
1450
Ezio Melotti4969f702011-03-15 05:59:46 +02001451 The _w represent Unicode equivalents of the aforementioned ANSI functions. */
Brian Curtind40e6f72010-07-08 21:39:08 +00001452
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00001453static int
Brian Curtind40e6f72010-07-08 21:39:08 +00001454win32_lstat(const char* path, struct win32_stat *result)
Martin v. Löwis14694662006-02-03 12:54:16 +00001455{
Hirokazu Yamamoto427d3142010-12-04 10:16:05 +00001456 return win32_xstat(path, result, FALSE);
Martin v. Löwis14694662006-02-03 12:54:16 +00001457}
1458
Victor Stinner8c62be82010-05-06 00:08:46 +00001459static int
Brian Curtind40e6f72010-07-08 21:39:08 +00001460win32_lstat_w(const wchar_t* path, struct win32_stat *result)
Martin v. Löwis14694662006-02-03 12:54:16 +00001461{
Hirokazu Yamamoto427d3142010-12-04 10:16:05 +00001462 return win32_xstat_w(path, result, FALSE);
Brian Curtind40e6f72010-07-08 21:39:08 +00001463}
1464
1465static int
1466win32_stat(const char* path, struct win32_stat *result)
1467{
Hirokazu Yamamoto427d3142010-12-04 10:16:05 +00001468 return win32_xstat(path, result, TRUE);
Brian Curtind40e6f72010-07-08 21:39:08 +00001469}
1470
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00001471static int
Brian Curtind40e6f72010-07-08 21:39:08 +00001472win32_stat_w(const wchar_t* path, struct win32_stat *result)
1473{
Hirokazu Yamamoto427d3142010-12-04 10:16:05 +00001474 return win32_xstat_w(path, result, TRUE);
Martin v. Löwis14694662006-02-03 12:54:16 +00001475}
1476
1477static int
1478win32_fstat(int file_number, struct win32_stat *result)
1479{
Victor Stinner8c62be82010-05-06 00:08:46 +00001480 BY_HANDLE_FILE_INFORMATION info;
1481 HANDLE h;
1482 int type;
Martin v. Löwis14694662006-02-03 12:54:16 +00001483
Victor Stinner8c62be82010-05-06 00:08:46 +00001484 h = (HANDLE)_get_osfhandle(file_number);
Martin v. Löwis14694662006-02-03 12:54:16 +00001485
Victor Stinner8c62be82010-05-06 00:08:46 +00001486 /* Protocol violation: we explicitly clear errno, instead of
1487 setting it to a POSIX error. Callers should use GetLastError. */
1488 errno = 0;
Martin v. Löwis14694662006-02-03 12:54:16 +00001489
Victor Stinner8c62be82010-05-06 00:08:46 +00001490 if (h == INVALID_HANDLE_VALUE) {
1491 /* This is really a C library error (invalid file handle).
1492 We set the Win32 error to the closes one matching. */
1493 SetLastError(ERROR_INVALID_HANDLE);
1494 return -1;
1495 }
1496 memset(result, 0, sizeof(*result));
Martin v. Löwis14694662006-02-03 12:54:16 +00001497
Victor Stinner8c62be82010-05-06 00:08:46 +00001498 type = GetFileType(h);
1499 if (type == FILE_TYPE_UNKNOWN) {
1500 DWORD error = GetLastError();
1501 if (error != 0) {
Brian Curtinf5e76d02010-11-24 13:14:05 +00001502 return -1;
Victor Stinner8c62be82010-05-06 00:08:46 +00001503 }
1504 /* else: valid but unknown file */
1505 }
Martin v. Löwis14694662006-02-03 12:54:16 +00001506
Victor Stinner8c62be82010-05-06 00:08:46 +00001507 if (type != FILE_TYPE_DISK) {
1508 if (type == FILE_TYPE_CHAR)
1509 result->st_mode = _S_IFCHR;
1510 else if (type == FILE_TYPE_PIPE)
1511 result->st_mode = _S_IFIFO;
1512 return 0;
1513 }
1514
1515 if (!GetFileInformationByHandle(h, &info)) {
1516 return -1;
1517 }
1518
Hirokazu Yamamoto427d3142010-12-04 10:16:05 +00001519 attribute_data_to_stat(&info, 0, result);
Victor Stinner8c62be82010-05-06 00:08:46 +00001520 /* specific to fstat() */
Victor Stinner8c62be82010-05-06 00:08:46 +00001521 result->st_ino = (((__int64)info.nFileIndexHigh)<<32) + info.nFileIndexLow;
1522 return 0;
Martin v. Löwis14694662006-02-03 12:54:16 +00001523}
1524
1525#endif /* MS_WINDOWS */
1526
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001527PyDoc_STRVAR(stat_result__doc__,
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001528"stat_result: Result from stat or lstat.\n\n\
1529This object may be accessed either as a tuple of\n\
Fred Drakef7ce04d2002-06-20 18:31:21 +00001530 (mode, ino, dev, nlink, uid, gid, size, atime, mtime, ctime)\n\
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001531or via the attributes st_mode, st_ino, st_dev, st_nlink, st_uid, and so on.\n\
1532\n\
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001533Posix/windows: If your platform supports st_blksize, st_blocks, st_rdev,\n\
1534or st_flags, they are available as attributes only.\n\
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001535\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001536See os.stat for more information.");
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001537
1538static PyStructSequence_Field stat_result_fields[] = {
Victor Stinner8c62be82010-05-06 00:08:46 +00001539 {"st_mode", "protection bits"},
1540 {"st_ino", "inode"},
1541 {"st_dev", "device"},
1542 {"st_nlink", "number of hard links"},
1543 {"st_uid", "user ID of owner"},
1544 {"st_gid", "group ID of owner"},
1545 {"st_size", "total size, in bytes"},
1546 /* The NULL is replaced with PyStructSequence_UnnamedField later. */
1547 {NULL, "integer time of last access"},
1548 {NULL, "integer time of last modification"},
1549 {NULL, "integer time of last change"},
1550 {"st_atime", "time of last access"},
1551 {"st_mtime", "time of last modification"},
1552 {"st_ctime", "time of last change"},
Larry Hastings6fe20b32012-04-19 15:07:49 -07001553 {"st_atime_ns", "time of last access in nanoseconds"},
1554 {"st_mtime_ns", "time of last modification in nanoseconds"},
1555 {"st_ctime_ns", "time of last change in nanoseconds"},
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001556#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
Victor Stinner8c62be82010-05-06 00:08:46 +00001557 {"st_blksize", "blocksize for filesystem I/O"},
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001558#endif
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001559#ifdef HAVE_STRUCT_STAT_ST_BLOCKS
Victor Stinner8c62be82010-05-06 00:08:46 +00001560 {"st_blocks", "number of blocks allocated"},
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001561#endif
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001562#ifdef HAVE_STRUCT_STAT_ST_RDEV
Victor Stinner8c62be82010-05-06 00:08:46 +00001563 {"st_rdev", "device type (if inode device)"},
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001564#endif
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001565#ifdef HAVE_STRUCT_STAT_ST_FLAGS
Victor Stinner8c62be82010-05-06 00:08:46 +00001566 {"st_flags", "user defined flags for file"},
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001567#endif
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001568#ifdef HAVE_STRUCT_STAT_ST_GEN
Victor Stinner8c62be82010-05-06 00:08:46 +00001569 {"st_gen", "generation number"},
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001570#endif
1571#ifdef HAVE_STRUCT_STAT_ST_BIRTHTIME
Victor Stinner8c62be82010-05-06 00:08:46 +00001572 {"st_birthtime", "time of creation"},
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001573#endif
Victor Stinner8c62be82010-05-06 00:08:46 +00001574 {0}
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001575};
1576
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001577#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
Larry Hastings6fe20b32012-04-19 15:07:49 -07001578#define ST_BLKSIZE_IDX 16
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001579#else
Larry Hastings6fe20b32012-04-19 15:07:49 -07001580#define ST_BLKSIZE_IDX 15
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001581#endif
1582
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001583#ifdef HAVE_STRUCT_STAT_ST_BLOCKS
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001584#define ST_BLOCKS_IDX (ST_BLKSIZE_IDX+1)
1585#else
1586#define ST_BLOCKS_IDX ST_BLKSIZE_IDX
1587#endif
1588
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001589#ifdef HAVE_STRUCT_STAT_ST_RDEV
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001590#define ST_RDEV_IDX (ST_BLOCKS_IDX+1)
1591#else
1592#define ST_RDEV_IDX ST_BLOCKS_IDX
1593#endif
1594
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001595#ifdef HAVE_STRUCT_STAT_ST_FLAGS
1596#define ST_FLAGS_IDX (ST_RDEV_IDX+1)
1597#else
1598#define ST_FLAGS_IDX ST_RDEV_IDX
1599#endif
1600
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001601#ifdef HAVE_STRUCT_STAT_ST_GEN
Martin v. Löwisf09582e2005-08-14 21:42:34 +00001602#define ST_GEN_IDX (ST_FLAGS_IDX+1)
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001603#else
Martin v. Löwisf09582e2005-08-14 21:42:34 +00001604#define ST_GEN_IDX ST_FLAGS_IDX
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001605#endif
1606
1607#ifdef HAVE_STRUCT_STAT_ST_BIRTHTIME
1608#define ST_BIRTHTIME_IDX (ST_GEN_IDX+1)
1609#else
1610#define ST_BIRTHTIME_IDX ST_GEN_IDX
1611#endif
1612
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001613static PyStructSequence_Desc stat_result_desc = {
Victor Stinner8c62be82010-05-06 00:08:46 +00001614 "stat_result", /* name */
1615 stat_result__doc__, /* doc */
1616 stat_result_fields,
1617 10
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001618};
1619
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001620PyDoc_STRVAR(statvfs_result__doc__,
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001621"statvfs_result: Result from statvfs or fstatvfs.\n\n\
1622This object may be accessed either as a tuple of\n\
Fred Drakef7ce04d2002-06-20 18:31:21 +00001623 (bsize, frsize, blocks, bfree, bavail, files, ffree, favail, flag, namemax),\n\
Guido van Rossuma4dc73e2001-10-18 20:53:15 +00001624or via the attributes f_bsize, f_frsize, f_blocks, f_bfree, and so on.\n\
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001625\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001626See os.statvfs for more information.");
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001627
1628static PyStructSequence_Field statvfs_result_fields[] = {
Victor Stinner8c62be82010-05-06 00:08:46 +00001629 {"f_bsize", },
1630 {"f_frsize", },
1631 {"f_blocks", },
1632 {"f_bfree", },
1633 {"f_bavail", },
1634 {"f_files", },
1635 {"f_ffree", },
1636 {"f_favail", },
1637 {"f_flag", },
1638 {"f_namemax",},
1639 {0}
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001640};
1641
1642static PyStructSequence_Desc statvfs_result_desc = {
Victor Stinner8c62be82010-05-06 00:08:46 +00001643 "statvfs_result", /* name */
1644 statvfs_result__doc__, /* doc */
1645 statvfs_result_fields,
1646 10
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001647};
1648
Ross Lagerwall7807c352011-03-17 20:20:30 +02001649#if defined(HAVE_WAITID) && !defined(__APPLE__)
1650PyDoc_STRVAR(waitid_result__doc__,
1651"waitid_result: Result from waitid.\n\n\
1652This object may be accessed either as a tuple of\n\
1653 (si_pid, si_uid, si_signo, si_status, si_code),\n\
1654or via the attributes si_pid, si_uid, and so on.\n\
1655\n\
1656See os.waitid for more information.");
1657
1658static PyStructSequence_Field waitid_result_fields[] = {
1659 {"si_pid", },
1660 {"si_uid", },
1661 {"si_signo", },
1662 {"si_status", },
1663 {"si_code", },
1664 {0}
1665};
1666
1667static PyStructSequence_Desc waitid_result_desc = {
1668 "waitid_result", /* name */
1669 waitid_result__doc__, /* doc */
1670 waitid_result_fields,
1671 5
1672};
1673static PyTypeObject WaitidResultType;
1674#endif
1675
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001676static int initialized;
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001677static PyTypeObject StatResultType;
1678static PyTypeObject StatVFSResultType;
Benjamin Petersonbad9c2f2011-08-02 18:42:14 -05001679#if defined(HAVE_SCHED_SETPARAM) || defined(HAVE_SCHED_SETSCHEDULER)
Benjamin Peterson94b580d2011-08-02 17:30:04 -05001680static PyTypeObject SchedParamType;
Benjamin Petersonbad9c2f2011-08-02 18:42:14 -05001681#endif
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001682static newfunc structseq_new;
1683
1684static PyObject *
1685statresult_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
1686{
Victor Stinner8c62be82010-05-06 00:08:46 +00001687 PyStructSequence *result;
1688 int i;
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001689
Victor Stinner8c62be82010-05-06 00:08:46 +00001690 result = (PyStructSequence*)structseq_new(type, args, kwds);
1691 if (!result)
1692 return NULL;
1693 /* If we have been initialized from a tuple,
1694 st_?time might be set to None. Initialize it
1695 from the int slots. */
1696 for (i = 7; i <= 9; i++) {
1697 if (result->ob_item[i+3] == Py_None) {
1698 Py_DECREF(Py_None);
1699 Py_INCREF(result->ob_item[i]);
1700 result->ob_item[i+3] = result->ob_item[i];
1701 }
1702 }
1703 return (PyObject*)result;
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001704}
1705
1706
1707
1708/* If true, st_?time is float. */
Martin v. Löwisfe33d0b2005-01-16 08:57:39 +00001709static int _stat_float_times = 1;
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001710
1711PyDoc_STRVAR(stat_float_times__doc__,
1712"stat_float_times([newval]) -> oldval\n\n\
1713Determine whether os.[lf]stat represents time stamps as float objects.\n\
1714If newval is True, future calls to stat() return floats, if it is False,\n\
1715future calls return ints. \n\
1716If newval is omitted, return the current setting.\n");
1717
1718static PyObject*
1719stat_float_times(PyObject* self, PyObject *args)
1720{
Victor Stinner8c62be82010-05-06 00:08:46 +00001721 int newval = -1;
1722 if (!PyArg_ParseTuple(args, "|i:stat_float_times", &newval))
1723 return NULL;
1724 if (newval == -1)
1725 /* Return old value */
1726 return PyBool_FromLong(_stat_float_times);
1727 _stat_float_times = newval;
1728 Py_INCREF(Py_None);
1729 return Py_None;
Martin v. Löwisf607bda2002-10-16 18:27:39 +00001730}
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001731
Larry Hastings6fe20b32012-04-19 15:07:49 -07001732static PyObject *billion = NULL;
1733
Martin v. Löwis94717ed2002-09-09 14:24:16 +00001734static void
Victor Stinner4195b5c2012-02-08 23:03:19 +01001735fill_time(PyObject *v, int index, time_t sec, unsigned long nsec)
Martin v. Löwis94717ed2002-09-09 14:24:16 +00001736{
Larry Hastings6fe20b32012-04-19 15:07:49 -07001737 PyObject *s = _PyLong_FromTime_t(sec);
1738 PyObject *ns_fractional = PyLong_FromUnsignedLong(nsec);
1739 PyObject *s_in_ns = NULL;
1740 PyObject *ns_total = NULL;
1741 PyObject *float_s = NULL;
1742
1743 if (!(s && ns_fractional))
1744 goto exit;
1745
1746 s_in_ns = PyNumber_Multiply(s, billion);
1747 if (!s_in_ns)
1748 goto exit;
1749
1750 ns_total = PyNumber_Add(s_in_ns, ns_fractional);
1751 if (!ns_total)
1752 goto exit;
1753
Victor Stinner4195b5c2012-02-08 23:03:19 +01001754 if (_stat_float_times) {
Larry Hastings6fe20b32012-04-19 15:07:49 -07001755 float_s = PyFloat_FromDouble(sec + 1e-9*nsec);
1756 if (!float_s)
1757 goto exit;
Victor Stinner8c62be82010-05-06 00:08:46 +00001758 }
Larry Hastings6fe20b32012-04-19 15:07:49 -07001759 else {
1760 float_s = s;
1761 Py_INCREF(float_s);
1762 }
1763
1764 PyStructSequence_SET_ITEM(v, index, s);
1765 PyStructSequence_SET_ITEM(v, index+3, float_s);
1766 PyStructSequence_SET_ITEM(v, index+6, ns_total);
1767 s = NULL;
1768 float_s = NULL;
1769 ns_total = NULL;
1770exit:
1771 Py_XDECREF(s);
1772 Py_XDECREF(ns_fractional);
1773 Py_XDECREF(s_in_ns);
1774 Py_XDECREF(ns_total);
1775 Py_XDECREF(float_s);
Martin v. Löwis94717ed2002-09-09 14:24:16 +00001776}
1777
Tim Peters5aa91602002-01-30 05:46:57 +00001778/* pack a system stat C structure into the Python stat tuple
Fred Drake699f3522000-06-29 21:12:41 +00001779 (used by posix_stat() and posix_fstat()) */
1780static PyObject*
Victor Stinner4195b5c2012-02-08 23:03:19 +01001781_pystat_fromstructstat(STRUCT_STAT *st)
Fred Drake699f3522000-06-29 21:12:41 +00001782{
Victor Stinner8c62be82010-05-06 00:08:46 +00001783 unsigned long ansec, mnsec, cnsec;
1784 PyObject *v = PyStructSequence_New(&StatResultType);
1785 if (v == NULL)
1786 return NULL;
Fred Drake699f3522000-06-29 21:12:41 +00001787
Victor Stinner8c62be82010-05-06 00:08:46 +00001788 PyStructSequence_SET_ITEM(v, 0, PyLong_FromLong((long)st->st_mode));
Fred Drake699f3522000-06-29 21:12:41 +00001789#ifdef HAVE_LARGEFILE_SUPPORT
Victor Stinner8c62be82010-05-06 00:08:46 +00001790 PyStructSequence_SET_ITEM(v, 1,
1791 PyLong_FromLongLong((PY_LONG_LONG)st->st_ino));
Fred Drake699f3522000-06-29 21:12:41 +00001792#else
Victor Stinner8c62be82010-05-06 00:08:46 +00001793 PyStructSequence_SET_ITEM(v, 1, PyLong_FromLong((long)st->st_ino));
Fred Drake699f3522000-06-29 21:12:41 +00001794#endif
1795#if defined(HAVE_LONG_LONG) && !defined(MS_WINDOWS)
Victor Stinner8c62be82010-05-06 00:08:46 +00001796 PyStructSequence_SET_ITEM(v, 2,
1797 PyLong_FromLongLong((PY_LONG_LONG)st->st_dev));
Fred Drake699f3522000-06-29 21:12:41 +00001798#else
Victor Stinner8c62be82010-05-06 00:08:46 +00001799 PyStructSequence_SET_ITEM(v, 2, PyLong_FromLong((long)st->st_dev));
Fred Drake699f3522000-06-29 21:12:41 +00001800#endif
Victor Stinner8c62be82010-05-06 00:08:46 +00001801 PyStructSequence_SET_ITEM(v, 3, PyLong_FromLong((long)st->st_nlink));
1802 PyStructSequence_SET_ITEM(v, 4, PyLong_FromLong((long)st->st_uid));
1803 PyStructSequence_SET_ITEM(v, 5, PyLong_FromLong((long)st->st_gid));
Fred Drake699f3522000-06-29 21:12:41 +00001804#ifdef HAVE_LARGEFILE_SUPPORT
Victor Stinner8c62be82010-05-06 00:08:46 +00001805 PyStructSequence_SET_ITEM(v, 6,
1806 PyLong_FromLongLong((PY_LONG_LONG)st->st_size));
Fred Drake699f3522000-06-29 21:12:41 +00001807#else
Victor Stinner8c62be82010-05-06 00:08:46 +00001808 PyStructSequence_SET_ITEM(v, 6, PyLong_FromLong(st->st_size));
Fred Drake699f3522000-06-29 21:12:41 +00001809#endif
Martin v. Löwis94717ed2002-09-09 14:24:16 +00001810
Martin v. Löwis14694662006-02-03 12:54:16 +00001811#if defined(HAVE_STAT_TV_NSEC)
Victor Stinner8c62be82010-05-06 00:08:46 +00001812 ansec = st->st_atim.tv_nsec;
1813 mnsec = st->st_mtim.tv_nsec;
1814 cnsec = st->st_ctim.tv_nsec;
Martin v. Löwis14694662006-02-03 12:54:16 +00001815#elif defined(HAVE_STAT_TV_NSEC2)
Victor Stinner8c62be82010-05-06 00:08:46 +00001816 ansec = st->st_atimespec.tv_nsec;
1817 mnsec = st->st_mtimespec.tv_nsec;
1818 cnsec = st->st_ctimespec.tv_nsec;
Martin v. Löwis14694662006-02-03 12:54:16 +00001819#elif defined(HAVE_STAT_NSEC)
Victor Stinner8c62be82010-05-06 00:08:46 +00001820 ansec = st->st_atime_nsec;
1821 mnsec = st->st_mtime_nsec;
1822 cnsec = st->st_ctime_nsec;
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001823#else
Victor Stinner8c62be82010-05-06 00:08:46 +00001824 ansec = mnsec = cnsec = 0;
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001825#endif
Victor Stinner4195b5c2012-02-08 23:03:19 +01001826 fill_time(v, 7, st->st_atime, ansec);
1827 fill_time(v, 8, st->st_mtime, mnsec);
1828 fill_time(v, 9, st->st_ctime, cnsec);
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001829
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001830#ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
Victor Stinner8c62be82010-05-06 00:08:46 +00001831 PyStructSequence_SET_ITEM(v, ST_BLKSIZE_IDX,
1832 PyLong_FromLong((long)st->st_blksize));
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001833#endif
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001834#ifdef HAVE_STRUCT_STAT_ST_BLOCKS
Victor Stinner8c62be82010-05-06 00:08:46 +00001835 PyStructSequence_SET_ITEM(v, ST_BLOCKS_IDX,
1836 PyLong_FromLong((long)st->st_blocks));
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001837#endif
Martin v. Löwis60a5d722002-10-16 20:28:25 +00001838#ifdef HAVE_STRUCT_STAT_ST_RDEV
Victor Stinner8c62be82010-05-06 00:08:46 +00001839 PyStructSequence_SET_ITEM(v, ST_RDEV_IDX,
1840 PyLong_FromLong((long)st->st_rdev));
Fred Drake699f3522000-06-29 21:12:41 +00001841#endif
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001842#ifdef HAVE_STRUCT_STAT_ST_GEN
Victor Stinner8c62be82010-05-06 00:08:46 +00001843 PyStructSequence_SET_ITEM(v, ST_GEN_IDX,
1844 PyLong_FromLong((long)st->st_gen));
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001845#endif
1846#ifdef HAVE_STRUCT_STAT_ST_BIRTHTIME
Victor Stinner8c62be82010-05-06 00:08:46 +00001847 {
Victor Stinner4195b5c2012-02-08 23:03:19 +01001848 PyObject *val;
1849 unsigned long bsec,bnsec;
1850 bsec = (long)st->st_birthtime;
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001851#ifdef HAVE_STAT_TV_NSEC2
Victor Stinner4195b5c2012-02-08 23:03:19 +01001852 bnsec = st->st_birthtimespec.tv_nsec;
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001853#else
Victor Stinner4195b5c2012-02-08 23:03:19 +01001854 bnsec = 0;
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001855#endif
Victor Stinner4195b5c2012-02-08 23:03:19 +01001856 if (_stat_float_times) {
1857 val = PyFloat_FromDouble(bsec + 1e-9*bnsec);
1858 } else {
1859 val = PyLong_FromLong((long)bsec);
1860 }
1861 PyStructSequence_SET_ITEM(v, ST_BIRTHTIME_IDX,
1862 val);
Victor Stinner8c62be82010-05-06 00:08:46 +00001863 }
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00001864#endif
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001865#ifdef HAVE_STRUCT_STAT_ST_FLAGS
Victor Stinner8c62be82010-05-06 00:08:46 +00001866 PyStructSequence_SET_ITEM(v, ST_FLAGS_IDX,
1867 PyLong_FromLong((long)st->st_flags));
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00001868#endif
Fred Drake699f3522000-06-29 21:12:41 +00001869
Victor Stinner8c62be82010-05-06 00:08:46 +00001870 if (PyErr_Occurred()) {
1871 Py_DECREF(v);
1872 return NULL;
1873 }
Fred Drake699f3522000-06-29 21:12:41 +00001874
Victor Stinner8c62be82010-05-06 00:08:46 +00001875 return v;
Fred Drake699f3522000-06-29 21:12:41 +00001876}
1877
Barry Warsaw53699e91996-12-10 23:23:01 +00001878static PyObject *
Victor Stinner4195b5c2012-02-08 23:03:19 +01001879posix_do_stat(PyObject *self, PyObject *args,
Victor Stinner8c62be82010-05-06 00:08:46 +00001880 char *format,
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001881#ifdef __VMS
Victor Stinner8c62be82010-05-06 00:08:46 +00001882 int (*statfunc)(const char *, STRUCT_STAT *, ...),
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001883#else
Victor Stinner8c62be82010-05-06 00:08:46 +00001884 int (*statfunc)(const char *, STRUCT_STAT *),
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00001885#endif
Victor Stinner8c62be82010-05-06 00:08:46 +00001886 char *wformat,
Victor Stinnereb5657a2011-09-30 01:44:27 +02001887 int (*wstatfunc)(const wchar_t *, STRUCT_STAT *))
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001888{
Victor Stinner8c62be82010-05-06 00:08:46 +00001889 STRUCT_STAT st;
1890 PyObject *opath;
1891 char *path;
1892 int res;
1893 PyObject *result;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001894
Hirokazu Yamamoto8223c242009-05-17 04:21:53 +00001895#ifdef MS_WINDOWS
Victor Stinnereb5657a2011-09-30 01:44:27 +02001896 PyObject *po;
Victor Stinner4195b5c2012-02-08 23:03:19 +01001897 if (PyArg_ParseTuple(args, wformat, &po)) {
Victor Stinnereb5657a2011-09-30 01:44:27 +02001898 wchar_t *wpath = PyUnicode_AsUnicode(po);
1899 if (wpath == NULL)
1900 return NULL;
Martin v. Löwis14694662006-02-03 12:54:16 +00001901
Victor Stinner8c62be82010-05-06 00:08:46 +00001902 Py_BEGIN_ALLOW_THREADS
Victor Stinner8c62be82010-05-06 00:08:46 +00001903 res = wstatfunc(wpath, &st);
1904 Py_END_ALLOW_THREADS
Martin v. Löwis14694662006-02-03 12:54:16 +00001905
Victor Stinner8c62be82010-05-06 00:08:46 +00001906 if (res != 0)
Victor Stinnereb5657a2011-09-30 01:44:27 +02001907 return win32_error_object("stat", po);
Victor Stinner4195b5c2012-02-08 23:03:19 +01001908 return _pystat_fromstructstat(&st);
Victor Stinner8c62be82010-05-06 00:08:46 +00001909 }
1910 /* Drop the argument parsing error as narrow strings
1911 are also valid. */
1912 PyErr_Clear();
Mark Hammondc2e85bd2002-10-03 05:10:39 +00001913#endif
1914
Victor Stinner4195b5c2012-02-08 23:03:19 +01001915 if (!PyArg_ParseTuple(args, format,
1916 PyUnicode_FSConverter, &opath))
Victor Stinner8c62be82010-05-06 00:08:46 +00001917 return NULL;
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01001918#ifdef MS_WINDOWS
1919 if (win32_warn_bytes_api()) {
1920 Py_DECREF(opath);
1921 return NULL;
1922 }
1923#endif
Victor Stinner8c62be82010-05-06 00:08:46 +00001924 path = PyBytes_AsString(opath);
1925 Py_BEGIN_ALLOW_THREADS
1926 res = (*statfunc)(path, &st);
1927 Py_END_ALLOW_THREADS
Martin v. Löwis14694662006-02-03 12:54:16 +00001928
Victor Stinner8c62be82010-05-06 00:08:46 +00001929 if (res != 0) {
Martin v. Löwis14694662006-02-03 12:54:16 +00001930#ifdef MS_WINDOWS
Victor Stinner8c62be82010-05-06 00:08:46 +00001931 result = win32_error("stat", path);
Martin v. Löwis14694662006-02-03 12:54:16 +00001932#else
Victor Stinner8c62be82010-05-06 00:08:46 +00001933 result = posix_error_with_filename(path);
Martin v. Löwis14694662006-02-03 12:54:16 +00001934#endif
Victor Stinner8c62be82010-05-06 00:08:46 +00001935 }
1936 else
Victor Stinner4195b5c2012-02-08 23:03:19 +01001937 result = _pystat_fromstructstat(&st);
Fred Drake699f3522000-06-29 21:12:41 +00001938
Victor Stinner8c62be82010-05-06 00:08:46 +00001939 Py_DECREF(opath);
1940 return result;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001941}
1942
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001943/* POSIX methods */
1944
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00001945PyDoc_STRVAR(posix_access__doc__,
Thomas Wouters9fe394c2007-02-05 01:24:16 +00001946"access(path, mode) -> True if granted, False otherwise\n\n\
Guido van Rossuma0b90752002-06-18 16:22:43 +00001947Use the real uid/gid to test for access to a path. Note that most\n\
1948operations will use the effective uid/gid, therefore this routine can\n\
1949be used in a suid/sgid environment to test if the invoking user has the\n\
1950specified access to the path. The mode argument can be F_OK to test\n\
1951existence, or the inclusive-OR of R_OK, W_OK, and X_OK.");
Guido van Rossum94f6f721999-01-06 18:42:14 +00001952
1953static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00001954posix_access(PyObject *self, PyObject *args)
Guido van Rossum94f6f721999-01-06 18:42:14 +00001955{
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01001956 const char *path;
Victor Stinner8c62be82010-05-06 00:08:46 +00001957 int mode;
1958
Hirokazu Yamamoto8223c242009-05-17 04:21:53 +00001959#ifdef MS_WINDOWS
Victor Stinner8c62be82010-05-06 00:08:46 +00001960 DWORD attr;
Victor Stinnereb5657a2011-09-30 01:44:27 +02001961 PyObject *po;
Victor Stinner8c62be82010-05-06 00:08:46 +00001962 if (PyArg_ParseTuple(args, "Ui:access", &po, &mode)) {
Victor Stinnereb5657a2011-09-30 01:44:27 +02001963 wchar_t* wpath = PyUnicode_AsUnicode(po);
1964 if (wpath == NULL)
1965 return NULL;
Victor Stinner8c62be82010-05-06 00:08:46 +00001966 Py_BEGIN_ALLOW_THREADS
Victor Stinnereb5657a2011-09-30 01:44:27 +02001967 attr = GetFileAttributesW(wpath);
Victor Stinner8c62be82010-05-06 00:08:46 +00001968 Py_END_ALLOW_THREADS
1969 goto finish;
1970 }
1971 /* Drop the argument parsing error as narrow strings
1972 are also valid. */
1973 PyErr_Clear();
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01001974 if (!PyArg_ParseTuple(args, "yi:access", &path, &mode))
Victor Stinner8c62be82010-05-06 00:08:46 +00001975 return NULL;
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01001976 if (win32_warn_bytes_api())
1977 return NULL;
Victor Stinner8c62be82010-05-06 00:08:46 +00001978 Py_BEGIN_ALLOW_THREADS
1979 attr = GetFileAttributesA(path);
1980 Py_END_ALLOW_THREADS
Thomas Wouters477c8d52006-05-27 19:21:47 +00001981finish:
Victor Stinner8c62be82010-05-06 00:08:46 +00001982 if (attr == 0xFFFFFFFF)
1983 /* File does not exist, or cannot read attributes */
1984 return PyBool_FromLong(0);
1985 /* Access is possible if either write access wasn't requested, or
1986 the file isn't read-only, or if it's a directory, as there are
1987 no read-only directories on Windows. */
1988 return PyBool_FromLong(!(mode & 2)
1989 || !(attr & FILE_ATTRIBUTE_READONLY)
1990 || (attr & FILE_ATTRIBUTE_DIRECTORY));
Thomas Wouters477c8d52006-05-27 19:21:47 +00001991#else
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01001992 PyObject *opath;
Victor Stinner8c62be82010-05-06 00:08:46 +00001993 int res;
1994 if (!PyArg_ParseTuple(args, "O&i:access",
1995 PyUnicode_FSConverter, &opath, &mode))
1996 return NULL;
1997 path = PyBytes_AsString(opath);
1998 Py_BEGIN_ALLOW_THREADS
1999 res = access(path, mode);
2000 Py_END_ALLOW_THREADS
2001 Py_DECREF(opath);
2002 return PyBool_FromLong(res == 0);
Thomas Wouters477c8d52006-05-27 19:21:47 +00002003#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00002004}
2005
Guido van Rossumd371ff11999-01-25 16:12:23 +00002006#ifndef F_OK
2007#define F_OK 0
2008#endif
2009#ifndef R_OK
2010#define R_OK 4
2011#endif
2012#ifndef W_OK
2013#define W_OK 2
2014#endif
2015#ifndef X_OK
2016#define X_OK 1
2017#endif
2018
2019#ifdef HAVE_TTYNAME
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002020PyDoc_STRVAR(posix_ttyname__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002021"ttyname(fd) -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002022Return the name of the terminal device connected to 'fd'.");
Guido van Rossum94f6f721999-01-06 18:42:14 +00002023
2024static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002025posix_ttyname(PyObject *self, PyObject *args)
Guido van Rossum94f6f721999-01-06 18:42:14 +00002026{
Victor Stinner8c62be82010-05-06 00:08:46 +00002027 int id;
2028 char *ret;
Guido van Rossum94f6f721999-01-06 18:42:14 +00002029
Victor Stinner8c62be82010-05-06 00:08:46 +00002030 if (!PyArg_ParseTuple(args, "i:ttyname", &id))
2031 return NULL;
Guido van Rossum94f6f721999-01-06 18:42:14 +00002032
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00002033#if defined(__VMS)
Victor Stinner8c62be82010-05-06 00:08:46 +00002034 /* file descriptor 0 only, the default input device (stdin) */
2035 if (id == 0) {
2036 ret = ttyname();
2037 }
2038 else {
2039 ret = NULL;
2040 }
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00002041#else
Victor Stinner8c62be82010-05-06 00:08:46 +00002042 ret = ttyname(id);
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00002043#endif
Victor Stinner8c62be82010-05-06 00:08:46 +00002044 if (ret == NULL)
2045 return posix_error();
Victor Stinner5fe6de82010-08-15 09:12:51 +00002046 return PyUnicode_DecodeFSDefault(ret);
Guido van Rossum94f6f721999-01-06 18:42:14 +00002047}
Guido van Rossumd371ff11999-01-25 16:12:23 +00002048#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00002049
Fred Drake5ab8eaf1999-12-09 21:13:07 +00002050#ifdef HAVE_CTERMID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002051PyDoc_STRVAR(posix_ctermid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002052"ctermid() -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002053Return the name of the controlling terminal for this process.");
Fred Drake5ab8eaf1999-12-09 21:13:07 +00002054
2055static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00002056posix_ctermid(PyObject *self, PyObject *noargs)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00002057{
Victor Stinner8c62be82010-05-06 00:08:46 +00002058 char *ret;
2059 char buffer[L_ctermid];
Fred Drake5ab8eaf1999-12-09 21:13:07 +00002060
Greg Wardb48bc172000-03-01 21:51:56 +00002061#ifdef USE_CTERMID_R
Victor Stinner8c62be82010-05-06 00:08:46 +00002062 ret = ctermid_r(buffer);
Fred Drake5ab8eaf1999-12-09 21:13:07 +00002063#else
Victor Stinner8c62be82010-05-06 00:08:46 +00002064 ret = ctermid(buffer);
Fred Drake5ab8eaf1999-12-09 21:13:07 +00002065#endif
Victor Stinner8c62be82010-05-06 00:08:46 +00002066 if (ret == NULL)
2067 return posix_error();
Victor Stinner5fe6de82010-08-15 09:12:51 +00002068 return PyUnicode_DecodeFSDefault(buffer);
Fred Drake5ab8eaf1999-12-09 21:13:07 +00002069}
2070#endif
2071
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002072PyDoc_STRVAR(posix_chdir__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002073"chdir(path)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002074Change the current working directory to the specified path.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002075
Barry Warsaw53699e91996-12-10 23:23:01 +00002076static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002077posix_chdir(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002078{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002079#ifdef MS_WINDOWS
Victor Stinner8c62be82010-05-06 00:08:46 +00002080 return win32_1str(args, "chdir", "y:chdir", win32_chdir, "U:chdir", win32_wchdir);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002081#elif defined(PYOS_OS2) && defined(PYCC_GCC)
Victor Stinner8c62be82010-05-06 00:08:46 +00002082 return posix_1str(args, "O&:chdir", _chdir2);
Martin v. Löwis7a924e62003-03-05 14:15:21 +00002083#elif defined(__VMS)
Victor Stinner8c62be82010-05-06 00:08:46 +00002084 return posix_1str(args, "O&:chdir", (int (*)(const char *))chdir);
Martin v. Löwis79acb9e2002-12-06 12:48:53 +00002085#else
Victor Stinner8c62be82010-05-06 00:08:46 +00002086 return posix_1str(args, "O&:chdir", chdir);
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00002087#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002088}
2089
Fred Drake4d1e64b2002-04-15 19:40:07 +00002090#ifdef HAVE_FCHDIR
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002091PyDoc_STRVAR(posix_fchdir__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002092"fchdir(fildes)\n\n\
Fred Drake4d1e64b2002-04-15 19:40:07 +00002093Change to the directory of the given file descriptor. fildes must be\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002094opened on a directory, not a file.");
Fred Drake4d1e64b2002-04-15 19:40:07 +00002095
2096static PyObject *
2097posix_fchdir(PyObject *self, PyObject *fdobj)
2098{
Victor Stinner8c62be82010-05-06 00:08:46 +00002099 return posix_fildes(fdobj, fchdir);
Fred Drake4d1e64b2002-04-15 19:40:07 +00002100}
2101#endif /* HAVE_FCHDIR */
2102
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002103
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002104PyDoc_STRVAR(posix_chmod__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002105"chmod(path, mode)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002106Change the access permissions of a file.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002107
Barry Warsaw53699e91996-12-10 23:23:01 +00002108static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002109posix_chmod(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002110{
Victor Stinner8c62be82010-05-06 00:08:46 +00002111 PyObject *opath = NULL;
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01002112 const char *path = NULL;
Victor Stinner8c62be82010-05-06 00:08:46 +00002113 int i;
2114 int res;
Hirokazu Yamamoto8223c242009-05-17 04:21:53 +00002115#ifdef MS_WINDOWS
Victor Stinner8c62be82010-05-06 00:08:46 +00002116 DWORD attr;
Victor Stinnereb5657a2011-09-30 01:44:27 +02002117 PyObject *po;
Victor Stinner8c62be82010-05-06 00:08:46 +00002118 if (PyArg_ParseTuple(args, "Ui|:chmod", &po, &i)) {
Victor Stinnereb5657a2011-09-30 01:44:27 +02002119 wchar_t *wpath = PyUnicode_AsUnicode(po);
2120 if (wpath == NULL)
2121 return NULL;
Victor Stinner8c62be82010-05-06 00:08:46 +00002122 Py_BEGIN_ALLOW_THREADS
Victor Stinnereb5657a2011-09-30 01:44:27 +02002123 attr = GetFileAttributesW(wpath);
Victor Stinner8c62be82010-05-06 00:08:46 +00002124 if (attr != 0xFFFFFFFF) {
2125 if (i & _S_IWRITE)
2126 attr &= ~FILE_ATTRIBUTE_READONLY;
2127 else
2128 attr |= FILE_ATTRIBUTE_READONLY;
Victor Stinnereb5657a2011-09-30 01:44:27 +02002129 res = SetFileAttributesW(wpath, attr);
Victor Stinner8c62be82010-05-06 00:08:46 +00002130 }
2131 else
2132 res = 0;
2133 Py_END_ALLOW_THREADS
2134 if (!res)
Victor Stinnereb5657a2011-09-30 01:44:27 +02002135 return win32_error_object("chmod", po);
Victor Stinner8c62be82010-05-06 00:08:46 +00002136 Py_INCREF(Py_None);
2137 return Py_None;
2138 }
2139 /* Drop the argument parsing error as narrow strings
2140 are also valid. */
2141 PyErr_Clear();
Hirokazu Yamamoto892a37a2009-06-28 11:07:03 +00002142
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01002143 if (!PyArg_ParseTuple(args, "yi:chmod", &path, &i))
Victor Stinner8c62be82010-05-06 00:08:46 +00002144 return NULL;
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01002145 if (win32_warn_bytes_api())
2146 return NULL;
Victor Stinner8c62be82010-05-06 00:08:46 +00002147 Py_BEGIN_ALLOW_THREADS
2148 attr = GetFileAttributesA(path);
2149 if (attr != 0xFFFFFFFF) {
2150 if (i & _S_IWRITE)
2151 attr &= ~FILE_ATTRIBUTE_READONLY;
2152 else
2153 attr |= FILE_ATTRIBUTE_READONLY;
2154 res = SetFileAttributesA(path, attr);
2155 }
2156 else
2157 res = 0;
2158 Py_END_ALLOW_THREADS
2159 if (!res) {
2160 win32_error("chmod", path);
Victor Stinner8c62be82010-05-06 00:08:46 +00002161 return NULL;
2162 }
Victor Stinner8c62be82010-05-06 00:08:46 +00002163 Py_INCREF(Py_None);
2164 return Py_None;
Hirokazu Yamamoto8223c242009-05-17 04:21:53 +00002165#else /* MS_WINDOWS */
Victor Stinner8c62be82010-05-06 00:08:46 +00002166 if (!PyArg_ParseTuple(args, "O&i:chmod", PyUnicode_FSConverter,
2167 &opath, &i))
2168 return NULL;
2169 path = PyBytes_AsString(opath);
2170 Py_BEGIN_ALLOW_THREADS
2171 res = chmod(path, i);
2172 Py_END_ALLOW_THREADS
2173 if (res < 0)
2174 return posix_error_with_allocated_filename(opath);
2175 Py_DECREF(opath);
2176 Py_INCREF(Py_None);
2177 return Py_None;
Thomas Wouters477c8d52006-05-27 19:21:47 +00002178#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002179}
2180
Christian Heimes4e30a842007-11-30 22:12:06 +00002181#ifdef HAVE_FCHMOD
2182PyDoc_STRVAR(posix_fchmod__doc__,
2183"fchmod(fd, mode)\n\n\
2184Change the access permissions of the file given by file\n\
2185descriptor fd.");
2186
2187static PyObject *
2188posix_fchmod(PyObject *self, PyObject *args)
2189{
Victor Stinner8c62be82010-05-06 00:08:46 +00002190 int fd, mode, res;
2191 if (!PyArg_ParseTuple(args, "ii:fchmod", &fd, &mode))
2192 return NULL;
2193 Py_BEGIN_ALLOW_THREADS
2194 res = fchmod(fd, mode);
2195 Py_END_ALLOW_THREADS
2196 if (res < 0)
2197 return posix_error();
2198 Py_RETURN_NONE;
Christian Heimes4e30a842007-11-30 22:12:06 +00002199}
2200#endif /* HAVE_FCHMOD */
2201
2202#ifdef HAVE_LCHMOD
2203PyDoc_STRVAR(posix_lchmod__doc__,
2204"lchmod(path, mode)\n\n\
2205Change the access permissions of a file. If path is a symlink, this\n\
2206affects the link itself rather than the target.");
2207
2208static PyObject *
2209posix_lchmod(PyObject *self, PyObject *args)
2210{
Victor Stinner8c62be82010-05-06 00:08:46 +00002211 PyObject *opath;
2212 char *path;
2213 int i;
2214 int res;
2215 if (!PyArg_ParseTuple(args, "O&i:lchmod", PyUnicode_FSConverter,
2216 &opath, &i))
2217 return NULL;
2218 path = PyBytes_AsString(opath);
2219 Py_BEGIN_ALLOW_THREADS
2220 res = lchmod(path, i);
2221 Py_END_ALLOW_THREADS
2222 if (res < 0)
2223 return posix_error_with_allocated_filename(opath);
2224 Py_DECREF(opath);
2225 Py_RETURN_NONE;
Christian Heimes4e30a842007-11-30 22:12:06 +00002226}
2227#endif /* HAVE_LCHMOD */
2228
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002229
Thomas Wouterscf297e42007-02-23 15:07:44 +00002230#ifdef HAVE_CHFLAGS
2231PyDoc_STRVAR(posix_chflags__doc__,
2232"chflags(path, flags)\n\n\
2233Set file flags.");
2234
2235static PyObject *
2236posix_chflags(PyObject *self, PyObject *args)
2237{
Victor Stinner8c62be82010-05-06 00:08:46 +00002238 PyObject *opath;
2239 char *path;
2240 unsigned long flags;
2241 int res;
2242 if (!PyArg_ParseTuple(args, "O&k:chflags",
2243 PyUnicode_FSConverter, &opath, &flags))
2244 return NULL;
2245 path = PyBytes_AsString(opath);
2246 Py_BEGIN_ALLOW_THREADS
2247 res = chflags(path, flags);
2248 Py_END_ALLOW_THREADS
2249 if (res < 0)
2250 return posix_error_with_allocated_filename(opath);
2251 Py_DECREF(opath);
2252 Py_INCREF(Py_None);
2253 return Py_None;
Thomas Wouterscf297e42007-02-23 15:07:44 +00002254}
2255#endif /* HAVE_CHFLAGS */
2256
2257#ifdef HAVE_LCHFLAGS
2258PyDoc_STRVAR(posix_lchflags__doc__,
2259"lchflags(path, flags)\n\n\
2260Set file flags.\n\
2261This function will not follow symbolic links.");
2262
2263static PyObject *
2264posix_lchflags(PyObject *self, PyObject *args)
2265{
Victor Stinner8c62be82010-05-06 00:08:46 +00002266 PyObject *opath;
2267 char *path;
2268 unsigned long flags;
2269 int res;
2270 if (!PyArg_ParseTuple(args, "O&k:lchflags",
2271 PyUnicode_FSConverter, &opath, &flags))
2272 return NULL;
2273 path = PyBytes_AsString(opath);
2274 Py_BEGIN_ALLOW_THREADS
2275 res = lchflags(path, flags);
2276 Py_END_ALLOW_THREADS
2277 if (res < 0)
2278 return posix_error_with_allocated_filename(opath);
2279 Py_DECREF(opath);
2280 Py_INCREF(Py_None);
2281 return Py_None;
Thomas Wouterscf297e42007-02-23 15:07:44 +00002282}
2283#endif /* HAVE_LCHFLAGS */
2284
Martin v. Löwis244edc82001-10-04 22:44:26 +00002285#ifdef HAVE_CHROOT
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002286PyDoc_STRVAR(posix_chroot__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002287"chroot(path)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002288Change root directory to path.");
Martin v. Löwis244edc82001-10-04 22:44:26 +00002289
2290static PyObject *
2291posix_chroot(PyObject *self, PyObject *args)
2292{
Victor Stinner8c62be82010-05-06 00:08:46 +00002293 return posix_1str(args, "O&:chroot", chroot);
Martin v. Löwis244edc82001-10-04 22:44:26 +00002294}
2295#endif
2296
Guido van Rossum21142a01999-01-08 21:05:37 +00002297#ifdef HAVE_FSYNC
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002298PyDoc_STRVAR(posix_fsync__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002299"fsync(fildes)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002300force write of file with filedescriptor to disk.");
Guido van Rossum21142a01999-01-08 21:05:37 +00002301
2302static PyObject *
Fred Drake4d1e64b2002-04-15 19:40:07 +00002303posix_fsync(PyObject *self, PyObject *fdobj)
Guido van Rossum21142a01999-01-08 21:05:37 +00002304{
Stefan Krah0e803b32010-11-26 16:16:47 +00002305 return posix_fildes(fdobj, fsync);
Guido van Rossum21142a01999-01-08 21:05:37 +00002306}
2307#endif /* HAVE_FSYNC */
2308
Ross Lagerwall7807c352011-03-17 20:20:30 +02002309#ifdef HAVE_SYNC
2310PyDoc_STRVAR(posix_sync__doc__,
2311"sync()\n\n\
2312Force write of everything to disk.");
2313
2314static PyObject *
2315posix_sync(PyObject *self, PyObject *noargs)
2316{
2317 Py_BEGIN_ALLOW_THREADS
2318 sync();
2319 Py_END_ALLOW_THREADS
2320 Py_RETURN_NONE;
2321}
2322#endif
2323
Guido van Rossum21142a01999-01-08 21:05:37 +00002324#ifdef HAVE_FDATASYNC
Guido van Rossumecc23b02000-09-22 16:01:05 +00002325
Guido van Rossum7f58e2e2000-09-22 17:26:14 +00002326#ifdef __hpux
Guido van Rossumecc23b02000-09-22 16:01:05 +00002327extern int fdatasync(int); /* On HP-UX, in libc but not in unistd.h */
2328#endif
2329
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002330PyDoc_STRVAR(posix_fdatasync__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002331"fdatasync(fildes)\n\n\
Guido van Rossum21142a01999-01-08 21:05:37 +00002332force write of file with filedescriptor to disk.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002333 does not force update of metadata.");
Guido van Rossum21142a01999-01-08 21:05:37 +00002334
2335static PyObject *
Fred Drake4d1e64b2002-04-15 19:40:07 +00002336posix_fdatasync(PyObject *self, PyObject *fdobj)
Guido van Rossum21142a01999-01-08 21:05:37 +00002337{
Stefan Krah0e803b32010-11-26 16:16:47 +00002338 return posix_fildes(fdobj, fdatasync);
Guido van Rossum21142a01999-01-08 21:05:37 +00002339}
2340#endif /* HAVE_FDATASYNC */
2341
2342
Fredrik Lundh10723342000-07-10 16:38:09 +00002343#ifdef HAVE_CHOWN
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002344PyDoc_STRVAR(posix_chown__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002345"chown(path, uid, gid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002346Change the owner and group id of path to the numeric uid and gid.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002347
Barry Warsaw53699e91996-12-10 23:23:01 +00002348static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002349posix_chown(PyObject *self, PyObject *args)
Guido van Rossumb6775db1994-08-01 11:34:53 +00002350{
Victor Stinner8c62be82010-05-06 00:08:46 +00002351 PyObject *opath;
2352 char *path;
2353 long uid, gid;
2354 int res;
2355 if (!PyArg_ParseTuple(args, "O&ll:chown",
2356 PyUnicode_FSConverter, &opath,
2357 &uid, &gid))
2358 return NULL;
2359 path = PyBytes_AsString(opath);
2360 Py_BEGIN_ALLOW_THREADS
2361 res = chown(path, (uid_t) uid, (gid_t) gid);
2362 Py_END_ALLOW_THREADS
2363 if (res < 0)
2364 return posix_error_with_allocated_filename(opath);
2365 Py_DECREF(opath);
2366 Py_INCREF(Py_None);
2367 return Py_None;
Guido van Rossumb6775db1994-08-01 11:34:53 +00002368}
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002369#endif /* HAVE_CHOWN */
Guido van Rossumb6775db1994-08-01 11:34:53 +00002370
Christian Heimes4e30a842007-11-30 22:12:06 +00002371#ifdef HAVE_FCHOWN
2372PyDoc_STRVAR(posix_fchown__doc__,
2373"fchown(fd, uid, gid)\n\n\
2374Change the owner and group id of the file given by file descriptor\n\
2375fd to the numeric uid and gid.");
2376
2377static PyObject *
2378posix_fchown(PyObject *self, PyObject *args)
2379{
Victor Stinner8c62be82010-05-06 00:08:46 +00002380 int fd;
2381 long uid, gid;
2382 int res;
Victor Stinner26de69d2011-06-17 15:15:38 +02002383 if (!PyArg_ParseTuple(args, "ill:fchown", &fd, &uid, &gid))
Victor Stinner8c62be82010-05-06 00:08:46 +00002384 return NULL;
2385 Py_BEGIN_ALLOW_THREADS
2386 res = fchown(fd, (uid_t) uid, (gid_t) gid);
2387 Py_END_ALLOW_THREADS
2388 if (res < 0)
2389 return posix_error();
2390 Py_RETURN_NONE;
Christian Heimes4e30a842007-11-30 22:12:06 +00002391}
2392#endif /* HAVE_FCHOWN */
2393
Martin v. Löwis0cec0ff2002-07-28 16:33:45 +00002394#ifdef HAVE_LCHOWN
2395PyDoc_STRVAR(posix_lchown__doc__,
2396"lchown(path, uid, gid)\n\n\
2397Change the owner and group id of path to the numeric uid and gid.\n\
2398This function will not follow symbolic links.");
2399
2400static PyObject *
2401posix_lchown(PyObject *self, PyObject *args)
2402{
Victor Stinner8c62be82010-05-06 00:08:46 +00002403 PyObject *opath;
2404 char *path;
2405 long uid, gid;
2406 int res;
2407 if (!PyArg_ParseTuple(args, "O&ll:lchown",
2408 PyUnicode_FSConverter, &opath,
2409 &uid, &gid))
2410 return NULL;
2411 path = PyBytes_AsString(opath);
2412 Py_BEGIN_ALLOW_THREADS
2413 res = lchown(path, (uid_t) uid, (gid_t) gid);
2414 Py_END_ALLOW_THREADS
2415 if (res < 0)
2416 return posix_error_with_allocated_filename(opath);
2417 Py_DECREF(opath);
2418 Py_INCREF(Py_None);
2419 return Py_None;
Martin v. Löwis0cec0ff2002-07-28 16:33:45 +00002420}
2421#endif /* HAVE_LCHOWN */
2422
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002423
Guido van Rossum36bc6801995-06-14 22:54:23 +00002424#ifdef HAVE_GETCWD
Barry Warsaw53699e91996-12-10 23:23:01 +00002425static PyObject *
Guido van Rossumf0af3e32008-10-02 18:55:37 +00002426posix_getcwd(int use_bytes)
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002427{
Victor Stinner8c62be82010-05-06 00:08:46 +00002428 char buf[1026];
2429 char *res;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002430
Hirokazu Yamamoto8223c242009-05-17 04:21:53 +00002431#ifdef MS_WINDOWS
Victor Stinner8c62be82010-05-06 00:08:46 +00002432 if (!use_bytes) {
2433 wchar_t wbuf[1026];
2434 wchar_t *wbuf2 = wbuf;
2435 PyObject *resobj;
2436 DWORD len;
2437 Py_BEGIN_ALLOW_THREADS
2438 len = GetCurrentDirectoryW(sizeof wbuf/ sizeof wbuf[0], wbuf);
2439 /* If the buffer is large enough, len does not include the
2440 terminating \0. If the buffer is too small, len includes
2441 the space needed for the terminator. */
2442 if (len >= sizeof wbuf/ sizeof wbuf[0]) {
2443 wbuf2 = malloc(len * sizeof(wchar_t));
2444 if (wbuf2)
2445 len = GetCurrentDirectoryW(len, wbuf2);
2446 }
2447 Py_END_ALLOW_THREADS
2448 if (!wbuf2) {
2449 PyErr_NoMemory();
2450 return NULL;
2451 }
2452 if (!len) {
2453 if (wbuf2 != wbuf) free(wbuf2);
2454 return win32_error("getcwdu", NULL);
2455 }
2456 resobj = PyUnicode_FromWideChar(wbuf2, len);
2457 if (wbuf2 != wbuf) free(wbuf2);
2458 return resobj;
2459 }
Victor Stinnerf7c5ae22011-11-16 23:43:07 +01002460
2461 if (win32_warn_bytes_api())
2462 return NULL;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002463#endif
2464
Victor Stinner8c62be82010-05-06 00:08:46 +00002465 Py_BEGIN_ALLOW_THREADS
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002466#if defined(PYOS_OS2) && defined(PYCC_GCC)
Victor Stinner8c62be82010-05-06 00:08:46 +00002467 res = _getcwd2(buf, sizeof buf);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002468#else
Victor Stinner8c62be82010-05-06 00:08:46 +00002469 res = getcwd(buf, sizeof buf);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002470#endif
Victor Stinner8c62be82010-05-06 00:08:46 +00002471 Py_END_ALLOW_THREADS
2472 if (res == NULL)
2473 return posix_error();
2474 if (use_bytes)
2475 return PyBytes_FromStringAndSize(buf, strlen(buf));
Victor Stinner97c18ab2010-05-07 16:34:53 +00002476 return PyUnicode_DecodeFSDefault(buf);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002477}
Guido van Rossumf0af3e32008-10-02 18:55:37 +00002478
2479PyDoc_STRVAR(posix_getcwd__doc__,
2480"getcwd() -> path\n\n\
2481Return a unicode string representing the current working directory.");
2482
2483static PyObject *
2484posix_getcwd_unicode(PyObject *self)
2485{
2486 return posix_getcwd(0);
2487}
2488
2489PyDoc_STRVAR(posix_getcwdb__doc__,
2490"getcwdb() -> path\n\n\
2491Return a bytes string representing the current working directory.");
2492
2493static PyObject *
2494posix_getcwd_bytes(PyObject *self)
2495{
2496 return posix_getcwd(1);
2497}
Guido van Rossum36bc6801995-06-14 22:54:23 +00002498#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002499
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002500
Guido van Rossumb6775db1994-08-01 11:34:53 +00002501#ifdef HAVE_LINK
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002502PyDoc_STRVAR(posix_link__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00002503"link(src, dst)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002504Create a hard link to a file.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002505
Barry Warsaw53699e91996-12-10 23:23:01 +00002506static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002507posix_link(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002508{
Victor Stinner8c62be82010-05-06 00:08:46 +00002509 return posix_2str(args, "O&O&:link", link);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002510}
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002511#endif /* HAVE_LINK */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002512
Brian Curtin1b9df392010-11-24 20:24:31 +00002513#ifdef MS_WINDOWS
2514PyDoc_STRVAR(win32_link__doc__,
2515"link(src, dst)\n\n\
2516Create a hard link to a file.");
2517
2518static PyObject *
2519win32_link(PyObject *self, PyObject *args)
2520{
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01002521 PyObject *src, *dst;
2522 BOOL ok;
Brian Curtin1b9df392010-11-24 20:24:31 +00002523
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01002524 if (PyArg_ParseTuple(args, "UU:link", &src, &dst))
Victor Stinnereb5657a2011-09-30 01:44:27 +02002525 {
2526 wchar_t *wsrc, *wdst;
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01002527
2528 wsrc = PyUnicode_AsUnicode(src);
Victor Stinnereb5657a2011-09-30 01:44:27 +02002529 if (wsrc == NULL)
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01002530 goto error;
2531 wdst = PyUnicode_AsUnicode(dst);
Victor Stinnereb5657a2011-09-30 01:44:27 +02002532 if (wdst == NULL)
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01002533 goto error;
Victor Stinnereb5657a2011-09-30 01:44:27 +02002534
Brian Curtinfc889c42010-11-28 23:59:46 +00002535 Py_BEGIN_ALLOW_THREADS
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01002536 ok = CreateHardLinkW(wdst, wsrc, NULL);
Brian Curtinfc889c42010-11-28 23:59:46 +00002537 Py_END_ALLOW_THREADS
2538
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01002539 if (!ok)
Brian Curtinfc889c42010-11-28 23:59:46 +00002540 return win32_error("link", NULL);
Brian Curtinfc889c42010-11-28 23:59:46 +00002541 Py_RETURN_NONE;
2542 }
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01002543 else {
2544 PyErr_Clear();
2545 if (!PyArg_ParseTuple(args, "O&O&:link",
2546 PyUnicode_FSConverter, &src,
2547 PyUnicode_FSConverter, &dst))
2548 return NULL;
Brian Curtinfc889c42010-11-28 23:59:46 +00002549
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01002550 if (win32_warn_bytes_api())
2551 goto error;
Brian Curtinfc889c42010-11-28 23:59:46 +00002552
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01002553 Py_BEGIN_ALLOW_THREADS
2554 ok = CreateHardLinkA(PyBytes_AS_STRING(dst),
2555 PyBytes_AS_STRING(src),
2556 NULL);
2557 Py_END_ALLOW_THREADS
2558
2559 Py_XDECREF(src);
2560 Py_XDECREF(dst);
2561
2562 if (!ok)
2563 return win32_error("link", NULL);
2564 Py_RETURN_NONE;
2565
2566 error:
2567 Py_XDECREF(src);
2568 Py_XDECREF(dst);
Brian Curtin1b9df392010-11-24 20:24:31 +00002569 return NULL;
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01002570 }
Brian Curtin1b9df392010-11-24 20:24:31 +00002571}
2572#endif /* MS_WINDOWS */
2573
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002574
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002575PyDoc_STRVAR(posix_listdir__doc__,
Martin v. Löwisc9e1c7d2010-07-23 12:16:41 +00002576"listdir([path]) -> list_of_strings\n\n\
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002577Return a list containing the names of the entries in the directory.\n\
2578\n\
Martin v. Löwisc9e1c7d2010-07-23 12:16:41 +00002579 path: path of directory to list (default: '.')\n\
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002580\n\
2581The list is in arbitrary order. It does not include the special\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00002582entries '.' and '..' even if they are present in the directory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00002583
Barry Warsaw53699e91996-12-10 23:23:01 +00002584static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00002585posix_listdir(PyObject *self, PyObject *args)
Guido van Rossumb6775db1994-08-01 11:34:53 +00002586{
Victor Stinner8c62be82010-05-06 00:08:46 +00002587 /* XXX Should redo this putting the (now four) versions of opendir
2588 in separate files instead of having them all here... */
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00002589#if defined(MS_WINDOWS) && !defined(HAVE_OPENDIR)
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002590
Victor Stinner8c62be82010-05-06 00:08:46 +00002591 PyObject *d, *v;
2592 HANDLE hFindFile;
2593 BOOL result;
2594 WIN32_FIND_DATA FileData;
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01002595 const char *path;
2596 Py_ssize_t pathlen;
Victor Stinner8c62be82010-05-06 00:08:46 +00002597 char namebuf[MAX_PATH+5]; /* Overallocate for \\*.*\0 */
2598 char *bufptr = namebuf;
2599 Py_ssize_t len = sizeof(namebuf)-5; /* only claim to have space for MAX_PATH */
Guido van Rossumb6775db1994-08-01 11:34:53 +00002600
Martin v. Löwisc9e1c7d2010-07-23 12:16:41 +00002601 PyObject *po = NULL;
2602 if (PyArg_ParseTuple(args, "|U:listdir", &po)) {
Victor Stinner8c62be82010-05-06 00:08:46 +00002603 WIN32_FIND_DATAW wFileData;
Victor Stinnereb5657a2011-09-30 01:44:27 +02002604 wchar_t *wnamebuf, *po_wchars;
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00002605
Antoine Pitrou3d330ad2010-09-14 10:08:08 +00002606 if (po == NULL) { /* Default arg: "." */
Martin v. Löwisc9e1c7d2010-07-23 12:16:41 +00002607 po_wchars = L".";
2608 len = 1;
2609 } else {
Victor Stinnerbeac78b2011-10-11 21:55:01 +02002610 po_wchars = PyUnicode_AsUnicodeAndSize(po, &len);
Victor Stinnereb5657a2011-09-30 01:44:27 +02002611 if (po_wchars == NULL)
2612 return NULL;
Martin v. Löwisc9e1c7d2010-07-23 12:16:41 +00002613 }
Victor Stinner8c62be82010-05-06 00:08:46 +00002614 /* Overallocate for \\*.*\0 */
Victor Stinner8c62be82010-05-06 00:08:46 +00002615 wnamebuf = malloc((len + 5) * sizeof(wchar_t));
2616 if (!wnamebuf) {
2617 PyErr_NoMemory();
2618 return NULL;
2619 }
Martin v. Löwisc9e1c7d2010-07-23 12:16:41 +00002620 wcscpy(wnamebuf, po_wchars);
Victor Stinner8c62be82010-05-06 00:08:46 +00002621 if (len > 0) {
Victor Stinnereb5657a2011-09-30 01:44:27 +02002622 wchar_t wch = wnamebuf[len-1];
Victor Stinner8c62be82010-05-06 00:08:46 +00002623 if (wch != L'/' && wch != L'\\' && wch != L':')
2624 wnamebuf[len++] = L'\\';
2625 wcscpy(wnamebuf + len, L"*.*");
2626 }
2627 if ((d = PyList_New(0)) == NULL) {
2628 free(wnamebuf);
2629 return NULL;
2630 }
Antoine Pitroub73caab2010-08-09 23:39:31 +00002631 Py_BEGIN_ALLOW_THREADS
Victor Stinner8c62be82010-05-06 00:08:46 +00002632 hFindFile = FindFirstFileW(wnamebuf, &wFileData);
Antoine Pitroub73caab2010-08-09 23:39:31 +00002633 Py_END_ALLOW_THREADS
Victor Stinner8c62be82010-05-06 00:08:46 +00002634 if (hFindFile == INVALID_HANDLE_VALUE) {
2635 int error = GetLastError();
2636 if (error == ERROR_FILE_NOT_FOUND) {
2637 free(wnamebuf);
2638 return d;
2639 }
2640 Py_DECREF(d);
2641 win32_error_unicode("FindFirstFileW", wnamebuf);
2642 free(wnamebuf);
2643 return NULL;
2644 }
2645 do {
2646 /* Skip over . and .. */
2647 if (wcscmp(wFileData.cFileName, L".") != 0 &&
2648 wcscmp(wFileData.cFileName, L"..") != 0) {
Victor Stinner9d3b93b2011-11-22 02:27:30 +01002649 v = PyUnicode_FromWideChar(wFileData.cFileName, wcslen(wFileData.cFileName));
Victor Stinner8c62be82010-05-06 00:08:46 +00002650 if (v == NULL) {
2651 Py_DECREF(d);
2652 d = NULL;
2653 break;
2654 }
2655 if (PyList_Append(d, v) != 0) {
2656 Py_DECREF(v);
2657 Py_DECREF(d);
2658 d = NULL;
2659 break;
2660 }
2661 Py_DECREF(v);
2662 }
2663 Py_BEGIN_ALLOW_THREADS
2664 result = FindNextFileW(hFindFile, &wFileData);
2665 Py_END_ALLOW_THREADS
2666 /* FindNextFile sets error to ERROR_NO_MORE_FILES if
2667 it got to the end of the directory. */
2668 if (!result && GetLastError() != ERROR_NO_MORE_FILES) {
2669 Py_DECREF(d);
2670 win32_error_unicode("FindNextFileW", wnamebuf);
2671 FindClose(hFindFile);
2672 free(wnamebuf);
2673 return NULL;
2674 }
2675 } while (result == TRUE);
Hirokazu Yamamoto892a37a2009-06-28 11:07:03 +00002676
Victor Stinner8c62be82010-05-06 00:08:46 +00002677 if (FindClose(hFindFile) == FALSE) {
2678 Py_DECREF(d);
2679 win32_error_unicode("FindClose", wnamebuf);
2680 free(wnamebuf);
2681 return NULL;
2682 }
2683 free(wnamebuf);
2684 return d;
2685 }
2686 /* Drop the argument parsing error as narrow strings
2687 are also valid. */
2688 PyErr_Clear();
Mark Hammondc2e85bd2002-10-03 05:10:39 +00002689
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01002690 if (!PyArg_ParseTuple(args, "y#:listdir", &path, &pathlen))
Victor Stinner8c62be82010-05-06 00:08:46 +00002691 return NULL;
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01002692 if (win32_warn_bytes_api())
2693 return NULL;
2694 if (pathlen+1 > MAX_PATH) {
Victor Stinner8c62be82010-05-06 00:08:46 +00002695 PyErr_SetString(PyExc_ValueError, "path too long");
Victor Stinner8c62be82010-05-06 00:08:46 +00002696 return NULL;
2697 }
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01002698 strcpy(namebuf, path);
2699 len = pathlen;
Victor Stinner8c62be82010-05-06 00:08:46 +00002700 if (len > 0) {
2701 char ch = namebuf[len-1];
2702 if (ch != SEP && ch != ALTSEP && ch != ':')
2703 namebuf[len++] = '/';
2704 strcpy(namebuf + len, "*.*");
2705 }
Guido van Rossumb6775db1994-08-01 11:34:53 +00002706
Victor Stinner8c62be82010-05-06 00:08:46 +00002707 if ((d = PyList_New(0)) == NULL)
2708 return NULL;
Guido van Rossumb6775db1994-08-01 11:34:53 +00002709
Antoine Pitroub73caab2010-08-09 23:39:31 +00002710 Py_BEGIN_ALLOW_THREADS
Victor Stinner8c62be82010-05-06 00:08:46 +00002711 hFindFile = FindFirstFile(namebuf, &FileData);
Antoine Pitroub73caab2010-08-09 23:39:31 +00002712 Py_END_ALLOW_THREADS
Victor Stinner8c62be82010-05-06 00:08:46 +00002713 if (hFindFile == INVALID_HANDLE_VALUE) {
2714 int error = GetLastError();
2715 if (error == ERROR_FILE_NOT_FOUND)
2716 return d;
2717 Py_DECREF(d);
2718 return win32_error("FindFirstFile", namebuf);
2719 }
2720 do {
2721 /* Skip over . and .. */
2722 if (strcmp(FileData.cFileName, ".") != 0 &&
2723 strcmp(FileData.cFileName, "..") != 0) {
2724 v = PyBytes_FromString(FileData.cFileName);
2725 if (v == NULL) {
2726 Py_DECREF(d);
2727 d = NULL;
2728 break;
2729 }
2730 if (PyList_Append(d, v) != 0) {
2731 Py_DECREF(v);
2732 Py_DECREF(d);
2733 d = NULL;
2734 break;
2735 }
2736 Py_DECREF(v);
2737 }
2738 Py_BEGIN_ALLOW_THREADS
2739 result = FindNextFile(hFindFile, &FileData);
2740 Py_END_ALLOW_THREADS
2741 /* FindNextFile sets error to ERROR_NO_MORE_FILES if
2742 it got to the end of the directory. */
2743 if (!result && GetLastError() != ERROR_NO_MORE_FILES) {
2744 Py_DECREF(d);
2745 win32_error("FindNextFile", namebuf);
2746 FindClose(hFindFile);
2747 return NULL;
2748 }
2749 } while (result == TRUE);
Guido van Rossumb6775db1994-08-01 11:34:53 +00002750
Victor Stinner8c62be82010-05-06 00:08:46 +00002751 if (FindClose(hFindFile) == FALSE) {
2752 Py_DECREF(d);
2753 return win32_error("FindClose", namebuf);
2754 }
Guido van Rossumb6775db1994-08-01 11:34:53 +00002755
Victor Stinner8c62be82010-05-06 00:08:46 +00002756 return d;
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002757
Tim Peters0bb44a42000-09-15 07:44:49 +00002758#elif defined(PYOS_OS2)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002759
2760#ifndef MAX_PATH
2761#define MAX_PATH CCHMAXPATH
2762#endif
Martin v. Löwis011e8422009-05-05 04:43:17 +00002763 PyObject *oname;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002764 char *name, *pt;
Thomas Wouters68bc4f92006-03-01 01:05:10 +00002765 Py_ssize_t len;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002766 PyObject *d, *v;
2767 char namebuf[MAX_PATH+5];
2768 HDIR hdir = 1;
2769 ULONG srchcnt = 1;
2770 FILEFINDBUF3 ep;
2771 APIRET rc;
2772
Victor Stinner8c62be82010-05-06 00:08:46 +00002773 if (!PyArg_ParseTuple(args, "O&:listdir",
Martin v. Löwis011e8422009-05-05 04:43:17 +00002774 PyUnicode_FSConverter, &oname))
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002775 return NULL;
Victor Stinnerdcb24032010-04-22 12:08:36 +00002776 name = PyBytes_AsString(oname);
2777 len = PyBytes_GET_SIZE(oname);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002778 if (len >= MAX_PATH) {
Victor Stinnerdcb24032010-04-22 12:08:36 +00002779 Py_DECREF(oname);
Neal Norwitz6c913782007-10-14 03:23:09 +00002780 PyErr_SetString(PyExc_ValueError, "path too long");
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002781 return NULL;
2782 }
2783 strcpy(namebuf, name);
2784 for (pt = namebuf; *pt; pt++)
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00002785 if (*pt == ALTSEP)
2786 *pt = SEP;
2787 if (namebuf[len-1] != SEP)
2788 namebuf[len++] = SEP;
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002789 strcpy(namebuf + len, "*.*");
2790
Neal Norwitz6c913782007-10-14 03:23:09 +00002791 if ((d = PyList_New(0)) == NULL) {
Victor Stinnerdcb24032010-04-22 12:08:36 +00002792 Py_DECREF(oname);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002793 return NULL;
Alexandre Vassalotti4167ebc2007-10-14 02:54:41 +00002794 }
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002795
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002796 rc = DosFindFirst(namebuf, /* Wildcard Pattern to Match */
2797 &hdir, /* Handle to Use While Search Directory */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002798 FILE_READONLY | FILE_HIDDEN | FILE_SYSTEM | FILE_DIRECTORY,
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002799 &ep, sizeof(ep), /* Structure to Receive Directory Entry */
2800 &srchcnt, /* Max and Actual Count of Entries Per Iteration */
2801 FIL_STANDARD); /* Format of Entry (EAs or Not) */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002802
2803 if (rc != NO_ERROR) {
2804 errno = ENOENT;
Martin v. Löwis011e8422009-05-05 04:43:17 +00002805 return posix_error_with_allocated_filename(oname);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002806 }
2807
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002808 if (srchcnt > 0) { /* If Directory is NOT Totally Empty, */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002809 do {
2810 if (ep.achName[0] == '.'
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00002811 && (ep.achName[1] == '\0' || (ep.achName[1] == '.' && ep.achName[2] == '\0')))
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002812 continue; /* Skip Over "." and ".." Names */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002813
2814 strcpy(namebuf, ep.achName);
2815
Guido van Rossumc5a0f531997-12-02 20:36:02 +00002816 /* Leave Case of Name Alone -- In Native Form */
2817 /* (Removed Forced Lowercasing Code) */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002818
Christian Heimes72b710a2008-05-26 13:28:38 +00002819 v = PyBytes_FromString(namebuf);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002820 if (v == NULL) {
2821 Py_DECREF(d);
2822 d = NULL;
2823 break;
2824 }
2825 if (PyList_Append(d, v) != 0) {
2826 Py_DECREF(v);
2827 Py_DECREF(d);
2828 d = NULL;
2829 break;
2830 }
2831 Py_DECREF(v);
2832 } while (DosFindNext(hdir, &ep, sizeof(ep), &srchcnt) == NO_ERROR && srchcnt > 0);
2833 }
2834
Victor Stinnerdcb24032010-04-22 12:08:36 +00002835 Py_DECREF(oname);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00002836 return d;
2837#else
Victor Stinner8c62be82010-05-06 00:08:46 +00002838 PyObject *oname;
2839 char *name;
2840 PyObject *d, *v;
2841 DIR *dirp;
2842 struct dirent *ep;
2843 int arg_is_unicode = 1;
Just van Rossum96b1c902003-03-03 17:32:15 +00002844
Victor Stinner8c62be82010-05-06 00:08:46 +00002845 errno = 0;
Martin v. Löwisc9e1c7d2010-07-23 12:16:41 +00002846 /* v is never read, so it does not need to be initialized yet. */
2847 if (!PyArg_ParseTuple(args, "|U:listdir", &v)) {
Victor Stinner8c62be82010-05-06 00:08:46 +00002848 arg_is_unicode = 0;
2849 PyErr_Clear();
2850 }
Martin v. Löwisc9e1c7d2010-07-23 12:16:41 +00002851 oname = NULL;
2852 if (!PyArg_ParseTuple(args, "|O&:listdir", PyUnicode_FSConverter, &oname))
Victor Stinner8c62be82010-05-06 00:08:46 +00002853 return NULL;
Antoine Pitrou3d330ad2010-09-14 10:08:08 +00002854 if (oname == NULL) { /* Default arg: "." */
Stefan Krah0e803b32010-11-26 16:16:47 +00002855 oname = PyBytes_FromString(".");
Martin v. Löwisc9e1c7d2010-07-23 12:16:41 +00002856 }
Victor Stinner8c62be82010-05-06 00:08:46 +00002857 name = PyBytes_AsString(oname);
Antoine Pitroud3ccde82010-09-04 17:21:57 +00002858 Py_BEGIN_ALLOW_THREADS
2859 dirp = opendir(name);
2860 Py_END_ALLOW_THREADS
2861 if (dirp == NULL) {
Victor Stinner8c62be82010-05-06 00:08:46 +00002862 return posix_error_with_allocated_filename(oname);
2863 }
2864 if ((d = PyList_New(0)) == NULL) {
Antoine Pitroud3ccde82010-09-04 17:21:57 +00002865 Py_BEGIN_ALLOW_THREADS
Victor Stinner8c62be82010-05-06 00:08:46 +00002866 closedir(dirp);
Antoine Pitroud3ccde82010-09-04 17:21:57 +00002867 Py_END_ALLOW_THREADS
Victor Stinner8c62be82010-05-06 00:08:46 +00002868 Py_DECREF(oname);
2869 return NULL;
2870 }
2871 for (;;) {
2872 errno = 0;
2873 Py_BEGIN_ALLOW_THREADS
2874 ep = readdir(dirp);
2875 Py_END_ALLOW_THREADS
2876 if (ep == NULL) {
2877 if (errno == 0) {
2878 break;
2879 } else {
Antoine Pitroud3ccde82010-09-04 17:21:57 +00002880 Py_BEGIN_ALLOW_THREADS
Victor Stinner8c62be82010-05-06 00:08:46 +00002881 closedir(dirp);
Antoine Pitroud3ccde82010-09-04 17:21:57 +00002882 Py_END_ALLOW_THREADS
Victor Stinner8c62be82010-05-06 00:08:46 +00002883 Py_DECREF(d);
2884 return posix_error_with_allocated_filename(oname);
2885 }
2886 }
2887 if (ep->d_name[0] == '.' &&
2888 (NAMLEN(ep) == 1 ||
2889 (ep->d_name[1] == '.' && NAMLEN(ep) == 2)))
2890 continue;
Victor Stinnera45598a2010-05-14 16:35:39 +00002891 if (arg_is_unicode)
2892 v = PyUnicode_DecodeFSDefaultAndSize(ep->d_name, NAMLEN(ep));
2893 else
2894 v = PyBytes_FromStringAndSize(ep->d_name, NAMLEN(ep));
Victor Stinner8c62be82010-05-06 00:08:46 +00002895 if (v == NULL) {
Victor Stinnera45598a2010-05-14 16:35:39 +00002896 Py_CLEAR(d);
Victor Stinner8c62be82010-05-06 00:08:46 +00002897 break;
2898 }
Victor Stinner8c62be82010-05-06 00:08:46 +00002899 if (PyList_Append(d, v) != 0) {
2900 Py_DECREF(v);
Victor Stinnera45598a2010-05-14 16:35:39 +00002901 Py_CLEAR(d);
Victor Stinner8c62be82010-05-06 00:08:46 +00002902 break;
2903 }
2904 Py_DECREF(v);
2905 }
Antoine Pitroud3ccde82010-09-04 17:21:57 +00002906 Py_BEGIN_ALLOW_THREADS
Victor Stinner8c62be82010-05-06 00:08:46 +00002907 closedir(dirp);
Antoine Pitroud3ccde82010-09-04 17:21:57 +00002908 Py_END_ALLOW_THREADS
Victor Stinner8c62be82010-05-06 00:08:46 +00002909 Py_DECREF(oname);
Guido van Rossum0ee42cd1991-04-08 21:01:03 +00002910
Victor Stinner8c62be82010-05-06 00:08:46 +00002911 return d;
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00002912
Tim Peters0bb44a42000-09-15 07:44:49 +00002913#endif /* which OS */
2914} /* end of posix_listdir */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00002915
Antoine Pitrou8250e232011-02-25 23:41:16 +00002916#ifdef HAVE_FDOPENDIR
Charles-François Natali77940902012-02-06 19:54:48 +01002917PyDoc_STRVAR(posix_flistdir__doc__,
2918"flistdir(fd) -> list_of_strings\n\n\
Charles-François Natali76961fa2012-01-10 20:25:09 +01002919Like listdir(), but uses a file descriptor instead.");
Antoine Pitrou8250e232011-02-25 23:41:16 +00002920
2921static PyObject *
Charles-François Natali77940902012-02-06 19:54:48 +01002922posix_flistdir(PyObject *self, PyObject *args)
Antoine Pitrou8250e232011-02-25 23:41:16 +00002923{
2924 PyObject *d, *v;
2925 DIR *dirp;
2926 struct dirent *ep;
2927 int fd;
2928
2929 errno = 0;
Charles-François Natali77940902012-02-06 19:54:48 +01002930 if (!PyArg_ParseTuple(args, "i:flistdir", &fd))
Antoine Pitrou8250e232011-02-25 23:41:16 +00002931 return NULL;
Charles-François Natali76961fa2012-01-10 20:25:09 +01002932 /* closedir() closes the FD, so we duplicate it */
2933 fd = dup(fd);
2934 if (fd < 0)
2935 return posix_error();
Antoine Pitrou8250e232011-02-25 23:41:16 +00002936 Py_BEGIN_ALLOW_THREADS
2937 dirp = fdopendir(fd);
2938 Py_END_ALLOW_THREADS
2939 if (dirp == NULL) {
2940 close(fd);
2941 return posix_error();
2942 }
2943 if ((d = PyList_New(0)) == NULL) {
2944 Py_BEGIN_ALLOW_THREADS
2945 closedir(dirp);
2946 Py_END_ALLOW_THREADS
2947 return NULL;
2948 }
2949 for (;;) {
2950 errno = 0;
2951 Py_BEGIN_ALLOW_THREADS
2952 ep = readdir(dirp);
2953 Py_END_ALLOW_THREADS
2954 if (ep == NULL) {
2955 if (errno == 0) {
2956 break;
2957 } else {
2958 Py_BEGIN_ALLOW_THREADS
Charles-François Natalif2840a82012-01-08 20:30:47 +01002959 rewinddir(dirp);
Antoine Pitrou8250e232011-02-25 23:41:16 +00002960 closedir(dirp);
2961 Py_END_ALLOW_THREADS
2962 Py_DECREF(d);
2963 return posix_error();
2964 }
2965 }
2966 if (ep->d_name[0] == '.' &&
2967 (NAMLEN(ep) == 1 ||
2968 (ep->d_name[1] == '.' && NAMLEN(ep) == 2)))
2969 continue;
2970 v = PyUnicode_DecodeFSDefaultAndSize(ep->d_name, NAMLEN(ep));
2971 if (v == NULL) {
2972 Py_CLEAR(d);
2973 break;
2974 }
2975 if (PyList_Append(d, v) != 0) {
2976 Py_DECREF(v);
2977 Py_CLEAR(d);
2978 break;
2979 }
2980 Py_DECREF(v);
2981 }
2982 Py_BEGIN_ALLOW_THREADS
Charles-François Natalif2840a82012-01-08 20:30:47 +01002983 rewinddir(dirp);
Antoine Pitrou8250e232011-02-25 23:41:16 +00002984 closedir(dirp);
2985 Py_END_ALLOW_THREADS
2986
2987 return d;
2988}
2989#endif
2990
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00002991#ifdef MS_WINDOWS
Mark Hammondef8b6542001-05-13 08:04:26 +00002992/* A helper function for abspath on win32 */
2993static PyObject *
2994posix__getfullpathname(PyObject *self, PyObject *args)
2995{
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01002996 const char *path;
Victor Stinner8c62be82010-05-06 00:08:46 +00002997 char outbuf[MAX_PATH*2];
2998 char *temp;
Victor Stinnereb5657a2011-09-30 01:44:27 +02002999 PyObject *po;
3000
3001 if (PyArg_ParseTuple(args, "U|:_getfullpathname", &po))
3002 {
3003 wchar_t *wpath;
3004 wchar_t woutbuf[MAX_PATH*2], *woutbufp = woutbuf;
3005 wchar_t *wtemp;
Victor Stinner8c62be82010-05-06 00:08:46 +00003006 DWORD result;
3007 PyObject *v;
Victor Stinnereb5657a2011-09-30 01:44:27 +02003008
3009 wpath = PyUnicode_AsUnicode(po);
3010 if (wpath == NULL)
3011 return NULL;
Victor Stinner8c62be82010-05-06 00:08:46 +00003012 result = GetFullPathNameW(wpath,
Victor Stinner63941882011-09-29 00:42:28 +02003013 Py_ARRAY_LENGTH(woutbuf),
Victor Stinner8c62be82010-05-06 00:08:46 +00003014 woutbuf, &wtemp);
Victor Stinner63941882011-09-29 00:42:28 +02003015 if (result > Py_ARRAY_LENGTH(woutbuf)) {
Victor Stinnereb5657a2011-09-30 01:44:27 +02003016 woutbufp = malloc(result * sizeof(wchar_t));
Victor Stinner8c62be82010-05-06 00:08:46 +00003017 if (!woutbufp)
3018 return PyErr_NoMemory();
3019 result = GetFullPathNameW(wpath, result, woutbufp, &wtemp);
3020 }
3021 if (result)
Victor Stinner9d3b93b2011-11-22 02:27:30 +01003022 v = PyUnicode_FromWideChar(woutbufp, wcslen(woutbufp));
Victor Stinner8c62be82010-05-06 00:08:46 +00003023 else
Victor Stinnereb5657a2011-09-30 01:44:27 +02003024 v = win32_error_object("GetFullPathNameW", po);
Victor Stinner8c62be82010-05-06 00:08:46 +00003025 if (woutbufp != woutbuf)
3026 free(woutbufp);
3027 return v;
3028 }
3029 /* Drop the argument parsing error as narrow strings
3030 are also valid. */
3031 PyErr_Clear();
Victor Stinnereb5657a2011-09-30 01:44:27 +02003032
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01003033 if (!PyArg_ParseTuple (args, "y:_getfullpathname",
3034 &path))
Victor Stinner8c62be82010-05-06 00:08:46 +00003035 return NULL;
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01003036 if (win32_warn_bytes_api())
3037 return NULL;
Victor Stinner63941882011-09-29 00:42:28 +02003038 if (!GetFullPathName(path, Py_ARRAY_LENGTH(outbuf),
Victor Stinner8c62be82010-05-06 00:08:46 +00003039 outbuf, &temp)) {
3040 win32_error("GetFullPathName", path);
Victor Stinner8c62be82010-05-06 00:08:46 +00003041 return NULL;
3042 }
Victor Stinner8c62be82010-05-06 00:08:46 +00003043 if (PyUnicode_Check(PyTuple_GetItem(args, 0))) {
3044 return PyUnicode_Decode(outbuf, strlen(outbuf),
3045 Py_FileSystemDefaultEncoding, NULL);
3046 }
3047 return PyBytes_FromString(outbuf);
Mark Hammondef8b6542001-05-13 08:04:26 +00003048} /* end of posix__getfullpathname */
Brian Curtind40e6f72010-07-08 21:39:08 +00003049
Brian Curtind25aef52011-06-13 15:16:04 -05003050
Brian Curtinf5e76d02010-11-24 13:14:05 +00003051
Brian Curtind40e6f72010-07-08 21:39:08 +00003052/* A helper function for samepath on windows */
3053static PyObject *
3054posix__getfinalpathname(PyObject *self, PyObject *args)
3055{
3056 HANDLE hFile;
3057 int buf_size;
3058 wchar_t *target_path;
3059 int result_length;
Victor Stinnereb5657a2011-09-30 01:44:27 +02003060 PyObject *po, *result;
Brian Curtind40e6f72010-07-08 21:39:08 +00003061 wchar_t *path;
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00003062
Victor Stinnereb5657a2011-09-30 01:44:27 +02003063 if (!PyArg_ParseTuple(args, "U|:_getfinalpathname", &po))
Brian Curtind40e6f72010-07-08 21:39:08 +00003064 return NULL;
Victor Stinnereb5657a2011-09-30 01:44:27 +02003065 path = PyUnicode_AsUnicode(po);
3066 if (path == NULL)
3067 return NULL;
Brian Curtind40e6f72010-07-08 21:39:08 +00003068
3069 if(!check_GetFinalPathNameByHandle()) {
3070 /* If the OS doesn't have GetFinalPathNameByHandle, return a
3071 NotImplementedError. */
3072 return PyErr_Format(PyExc_NotImplementedError,
3073 "GetFinalPathNameByHandle not available on this platform");
3074 }
3075
3076 hFile = CreateFileW(
3077 path,
3078 0, /* desired access */
3079 0, /* share mode */
3080 NULL, /* security attributes */
3081 OPEN_EXISTING,
3082 /* FILE_FLAG_BACKUP_SEMANTICS is required to open a directory */
3083 FILE_FLAG_BACKUP_SEMANTICS,
3084 NULL);
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00003085
Victor Stinnereb5657a2011-09-30 01:44:27 +02003086 if(hFile == INVALID_HANDLE_VALUE)
3087 return win32_error_object("CreateFileW", po);
Brian Curtind40e6f72010-07-08 21:39:08 +00003088
3089 /* We have a good handle to the target, use it to determine the
3090 target path name. */
3091 buf_size = Py_GetFinalPathNameByHandleW(hFile, 0, 0, VOLUME_NAME_NT);
3092
3093 if(!buf_size)
Victor Stinnereb5657a2011-09-30 01:44:27 +02003094 return win32_error_object("GetFinalPathNameByHandle", po);
Brian Curtind40e6f72010-07-08 21:39:08 +00003095
3096 target_path = (wchar_t *)malloc((buf_size+1)*sizeof(wchar_t));
3097 if(!target_path)
3098 return PyErr_NoMemory();
3099
3100 result_length = Py_GetFinalPathNameByHandleW(hFile, target_path,
3101 buf_size, VOLUME_NAME_DOS);
3102 if(!result_length)
Victor Stinnereb5657a2011-09-30 01:44:27 +02003103 return win32_error_object("GetFinalPathNamyByHandle", po);
Brian Curtind40e6f72010-07-08 21:39:08 +00003104
3105 if(!CloseHandle(hFile))
Victor Stinnereb5657a2011-09-30 01:44:27 +02003106 return win32_error_object("CloseHandle", po);
Brian Curtind40e6f72010-07-08 21:39:08 +00003107
3108 target_path[result_length] = 0;
Victor Stinner9d3b93b2011-11-22 02:27:30 +01003109 result = PyUnicode_FromWideChar(target_path, result_length);
Brian Curtind40e6f72010-07-08 21:39:08 +00003110 free(target_path);
3111 return result;
3112
3113} /* end of posix__getfinalpathname */
Brian Curtin62857742010-09-06 17:07:27 +00003114
3115static PyObject *
3116posix__getfileinformation(PyObject *self, PyObject *args)
3117{
3118 HANDLE hFile;
3119 BY_HANDLE_FILE_INFORMATION info;
3120 int fd;
3121
3122 if (!PyArg_ParseTuple(args, "i:_getfileinformation", &fd))
3123 return NULL;
3124
Hirokazu Yamamoto26253bb2010-12-05 04:16:47 +00003125 if (!_PyVerify_fd(fd))
3126 return posix_error();
Brian Curtin62857742010-09-06 17:07:27 +00003127
3128 hFile = (HANDLE)_get_osfhandle(fd);
3129 if (hFile == INVALID_HANDLE_VALUE)
Hirokazu Yamamoto26253bb2010-12-05 04:16:47 +00003130 return posix_error();
Brian Curtin62857742010-09-06 17:07:27 +00003131
3132 if (!GetFileInformationByHandle(hFile, &info))
3133 return win32_error("_getfileinformation", NULL);
3134
3135 return Py_BuildValue("iii", info.dwVolumeSerialNumber,
3136 info.nFileIndexHigh,
3137 info.nFileIndexLow);
3138}
Brian Curtin9c669cc2011-06-08 18:17:18 -05003139
Brian Curtin95d028f2011-06-09 09:10:38 -05003140PyDoc_STRVAR(posix__isdir__doc__,
3141"Return true if the pathname refers to an existing directory.");
3142
Brian Curtin9c669cc2011-06-08 18:17:18 -05003143static PyObject *
3144posix__isdir(PyObject *self, PyObject *args)
3145{
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01003146 const char *path;
Victor Stinnereb5657a2011-09-30 01:44:27 +02003147 PyObject *po;
Brian Curtin9c669cc2011-06-08 18:17:18 -05003148 DWORD attributes;
3149
3150 if (PyArg_ParseTuple(args, "U|:_isdir", &po)) {
Victor Stinnereb5657a2011-09-30 01:44:27 +02003151 wchar_t *wpath = PyUnicode_AsUnicode(po);
3152 if (wpath == NULL)
3153 return NULL;
Brian Curtin9c669cc2011-06-08 18:17:18 -05003154
3155 attributes = GetFileAttributesW(wpath);
3156 if (attributes == INVALID_FILE_ATTRIBUTES)
3157 Py_RETURN_FALSE;
3158 goto check;
3159 }
3160 /* Drop the argument parsing error as narrow strings
3161 are also valid. */
3162 PyErr_Clear();
3163
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01003164 if (!PyArg_ParseTuple(args, "y:_isdir", &path))
Brian Curtin9c669cc2011-06-08 18:17:18 -05003165 return NULL;
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01003166 if (win32_warn_bytes_api())
3167 return NULL;
Brian Curtin9c669cc2011-06-08 18:17:18 -05003168 attributes = GetFileAttributesA(path);
3169 if (attributes == INVALID_FILE_ATTRIBUTES)
3170 Py_RETURN_FALSE;
3171
3172check:
3173 if (attributes & FILE_ATTRIBUTE_DIRECTORY)
3174 Py_RETURN_TRUE;
3175 else
3176 Py_RETURN_FALSE;
3177}
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00003178#endif /* MS_WINDOWS */
Mark Hammondef8b6542001-05-13 08:04:26 +00003179
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003180PyDoc_STRVAR(posix_mkdir__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003181"mkdir(path [, mode=0777])\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003182Create a directory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003183
Barry Warsaw53699e91996-12-10 23:23:01 +00003184static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00003185posix_mkdir(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00003186{
Victor Stinner8c62be82010-05-06 00:08:46 +00003187 int res;
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01003188 const char *path;
Victor Stinner8c62be82010-05-06 00:08:46 +00003189 int mode = 0777;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00003190
Hirokazu Yamamoto8223c242009-05-17 04:21:53 +00003191#ifdef MS_WINDOWS
Victor Stinnereb5657a2011-09-30 01:44:27 +02003192 PyObject *po;
3193 if (PyArg_ParseTuple(args, "U|i:mkdir", &po, &mode))
3194 {
3195 wchar_t *wpath = PyUnicode_AsUnicode(po);
3196 if (wpath == NULL)
3197 return NULL;
3198
Victor Stinner8c62be82010-05-06 00:08:46 +00003199 Py_BEGIN_ALLOW_THREADS
Victor Stinnereb5657a2011-09-30 01:44:27 +02003200 res = CreateDirectoryW(wpath, NULL);
Victor Stinner8c62be82010-05-06 00:08:46 +00003201 Py_END_ALLOW_THREADS
3202 if (!res)
Victor Stinnereb5657a2011-09-30 01:44:27 +02003203 return win32_error_object("mkdir", po);
Victor Stinner8c62be82010-05-06 00:08:46 +00003204 Py_INCREF(Py_None);
3205 return Py_None;
3206 }
3207 /* Drop the argument parsing error as narrow strings
3208 are also valid. */
3209 PyErr_Clear();
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01003210 if (!PyArg_ParseTuple(args, "y|i:mkdir", &path, &mode))
Victor Stinner8c62be82010-05-06 00:08:46 +00003211 return NULL;
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01003212 if (win32_warn_bytes_api())
3213 return NULL;
Victor Stinner8c62be82010-05-06 00:08:46 +00003214 Py_BEGIN_ALLOW_THREADS
Victor Stinner8c62be82010-05-06 00:08:46 +00003215 res = CreateDirectoryA(path, NULL);
3216 Py_END_ALLOW_THREADS
3217 if (!res) {
3218 win32_error("mkdir", path);
Victor Stinner8c62be82010-05-06 00:08:46 +00003219 return NULL;
3220 }
Victor Stinner8c62be82010-05-06 00:08:46 +00003221 Py_INCREF(Py_None);
3222 return Py_None;
Thomas Wouters477c8d52006-05-27 19:21:47 +00003223#else
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01003224 PyObject *opath;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00003225
Victor Stinner8c62be82010-05-06 00:08:46 +00003226 if (!PyArg_ParseTuple(args, "O&|i:mkdir",
3227 PyUnicode_FSConverter, &opath, &mode))
3228 return NULL;
3229 path = PyBytes_AsString(opath);
3230 Py_BEGIN_ALLOW_THREADS
Thomas Wouters477c8d52006-05-27 19:21:47 +00003231#if ( defined(__WATCOMC__) || defined(PYCC_VACPP) ) && !defined(__QNX__)
Victor Stinner8c62be82010-05-06 00:08:46 +00003232 res = mkdir(path);
Guido van Rossuma4916fa1996-05-23 22:58:55 +00003233#else
Victor Stinner8c62be82010-05-06 00:08:46 +00003234 res = mkdir(path, mode);
Guido van Rossuma4916fa1996-05-23 22:58:55 +00003235#endif
Victor Stinner8c62be82010-05-06 00:08:46 +00003236 Py_END_ALLOW_THREADS
3237 if (res < 0)
3238 return posix_error_with_allocated_filename(opath);
3239 Py_DECREF(opath);
3240 Py_INCREF(Py_None);
3241 return Py_None;
Thomas Wouters477c8d52006-05-27 19:21:47 +00003242#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00003243}
3244
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003245
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00003246/* sys/resource.h is needed for at least: wait3(), wait4(), broken nice. */
3247#if defined(HAVE_SYS_RESOURCE_H)
Thomas Wouterse38b2f12001-07-11 22:35:31 +00003248#include <sys/resource.h>
3249#endif
Thomas Wouterse38b2f12001-07-11 22:35:31 +00003250
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00003251
3252#ifdef HAVE_NICE
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003253PyDoc_STRVAR(posix_nice__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003254"nice(inc) -> new_priority\n\n\
3255Decrease the priority of process by inc and return the new priority.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003256
Barry Warsaw53699e91996-12-10 23:23:01 +00003257static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00003258posix_nice(PyObject *self, PyObject *args)
Guido van Rossum775f4da1993-01-09 17:18:52 +00003259{
Victor Stinner8c62be82010-05-06 00:08:46 +00003260 int increment, value;
Guido van Rossum775f4da1993-01-09 17:18:52 +00003261
Victor Stinner8c62be82010-05-06 00:08:46 +00003262 if (!PyArg_ParseTuple(args, "i:nice", &increment))
3263 return NULL;
Thomas Woutersc2c12dc2001-07-11 14:45:34 +00003264
Victor Stinner8c62be82010-05-06 00:08:46 +00003265 /* There are two flavours of 'nice': one that returns the new
3266 priority (as required by almost all standards out there) and the
3267 Linux/FreeBSD/BSDI one, which returns '0' on success and advices
3268 the use of getpriority() to get the new priority.
Tim Peters5aa91602002-01-30 05:46:57 +00003269
Victor Stinner8c62be82010-05-06 00:08:46 +00003270 If we are of the nice family that returns the new priority, we
3271 need to clear errno before the call, and check if errno is filled
3272 before calling posix_error() on a returnvalue of -1, because the
3273 -1 may be the actual new priority! */
Thomas Woutersc2c12dc2001-07-11 14:45:34 +00003274
Victor Stinner8c62be82010-05-06 00:08:46 +00003275 errno = 0;
3276 value = nice(increment);
Thomas Wouterse38b2f12001-07-11 22:35:31 +00003277#if defined(HAVE_BROKEN_NICE) && defined(HAVE_GETPRIORITY)
Victor Stinner8c62be82010-05-06 00:08:46 +00003278 if (value == 0)
3279 value = getpriority(PRIO_PROCESS, 0);
Thomas Woutersc2c12dc2001-07-11 14:45:34 +00003280#endif
Victor Stinner8c62be82010-05-06 00:08:46 +00003281 if (value == -1 && errno != 0)
3282 /* either nice() or getpriority() returned an error */
3283 return posix_error();
3284 return PyLong_FromLong((long) value);
Guido van Rossum775f4da1993-01-09 17:18:52 +00003285}
Guido van Rossumb6775db1994-08-01 11:34:53 +00003286#endif /* HAVE_NICE */
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00003287
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +00003288
3289#ifdef HAVE_GETPRIORITY
3290PyDoc_STRVAR(posix_getpriority__doc__,
3291"getpriority(which, who) -> current_priority\n\n\
3292Get program scheduling priority.");
3293
3294static PyObject *
3295posix_getpriority(PyObject *self, PyObject *args)
3296{
3297 int which, who, retval;
3298
3299 if (!PyArg_ParseTuple(args, "ii", &which, &who))
3300 return NULL;
3301 errno = 0;
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +00003302 retval = getpriority(which, who);
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +00003303 if (errno != 0)
3304 return posix_error();
3305 return PyLong_FromLong((long)retval);
3306}
3307#endif /* HAVE_GETPRIORITY */
3308
3309
3310#ifdef HAVE_SETPRIORITY
3311PyDoc_STRVAR(posix_setpriority__doc__,
3312"setpriority(which, who, prio) -> None\n\n\
3313Set program scheduling priority.");
3314
3315static PyObject *
3316posix_setpriority(PyObject *self, PyObject *args)
3317{
3318 int which, who, prio, retval;
3319
3320 if (!PyArg_ParseTuple(args, "iii", &which, &who, &prio))
3321 return NULL;
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +00003322 retval = setpriority(which, who, prio);
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +00003323 if (retval == -1)
3324 return posix_error();
3325 Py_RETURN_NONE;
3326}
3327#endif /* HAVE_SETPRIORITY */
3328
3329
Barry Warsaw53699e91996-12-10 23:23:01 +00003330static PyObject *
Antoine Pitrouf3b2d882012-01-30 22:08:52 +01003331internal_rename(PyObject *self, PyObject *args, int is_replace)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00003332{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00003333#ifdef MS_WINDOWS
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01003334 PyObject *src, *dst;
Victor Stinner8c62be82010-05-06 00:08:46 +00003335 BOOL result;
Antoine Pitrouf3b2d882012-01-30 22:08:52 +01003336 int flags = is_replace ? MOVEFILE_REPLACE_EXISTING : 0;
3337 if (PyArg_ParseTuple(args,
3338 is_replace ? "UU:replace" : "UU:rename",
3339 &src, &dst))
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01003340 {
3341 wchar_t *wsrc, *wdst;
3342
3343 wsrc = PyUnicode_AsUnicode(src);
3344 if (wsrc == NULL)
3345 return NULL;
3346 wdst = PyUnicode_AsUnicode(dst);
3347 if (wdst == NULL)
3348 return NULL;
3349 Py_BEGIN_ALLOW_THREADS
Antoine Pitrouf3b2d882012-01-30 22:08:52 +01003350 result = MoveFileExW(wsrc, wdst, flags);
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01003351 Py_END_ALLOW_THREADS
3352 if (!result)
Antoine Pitrouf3b2d882012-01-30 22:08:52 +01003353 return win32_error(is_replace ? "replace" : "rename", NULL);
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01003354 Py_INCREF(Py_None);
3355 return Py_None;
Victor Stinner8c62be82010-05-06 00:08:46 +00003356 }
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01003357 else {
3358 PyErr_Clear();
Antoine Pitrouf3b2d882012-01-30 22:08:52 +01003359 if (!PyArg_ParseTuple(args,
3360 is_replace ? "O&O&:replace" : "O&O&:rename",
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01003361 PyUnicode_FSConverter, &src,
3362 PyUnicode_FSConverter, &dst))
3363 return NULL;
3364
3365 if (win32_warn_bytes_api())
3366 goto error;
3367
3368 Py_BEGIN_ALLOW_THREADS
Antoine Pitrouf3b2d882012-01-30 22:08:52 +01003369 result = MoveFileExA(PyBytes_AS_STRING(src),
3370 PyBytes_AS_STRING(dst), flags);
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01003371 Py_END_ALLOW_THREADS
3372
3373 Py_XDECREF(src);
3374 Py_XDECREF(dst);
3375
3376 if (!result)
Antoine Pitrouf3b2d882012-01-30 22:08:52 +01003377 return win32_error(is_replace ? "replace" : "rename", NULL);
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01003378 Py_INCREF(Py_None);
3379 return Py_None;
3380
Hirokazu Yamamoto892a37a2009-06-28 11:07:03 +00003381error:
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01003382 Py_XDECREF(src);
3383 Py_XDECREF(dst);
Victor Stinner8c62be82010-05-06 00:08:46 +00003384 return NULL;
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01003385 }
Mark Hammondc2e85bd2002-10-03 05:10:39 +00003386#else
Antoine Pitrouf3b2d882012-01-30 22:08:52 +01003387 return posix_2str(args,
3388 is_replace ? "O&O&:replace" : "O&O&:rename", rename);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00003389#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00003390}
3391
Antoine Pitrouf3b2d882012-01-30 22:08:52 +01003392PyDoc_STRVAR(posix_rename__doc__,
3393"rename(old, new)\n\n\
3394Rename a file or directory.");
3395
3396static PyObject *
3397posix_rename(PyObject *self, PyObject *args)
3398{
3399 return internal_rename(self, args, 0);
3400}
3401
3402PyDoc_STRVAR(posix_replace__doc__,
3403"replace(old, new)\n\n\
3404Rename a file or directory, overwriting the destination.");
3405
3406static PyObject *
3407posix_replace(PyObject *self, PyObject *args)
3408{
3409 return internal_rename(self, args, 1);
3410}
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003411
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003412PyDoc_STRVAR(posix_rmdir__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003413"rmdir(path)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003414Remove a directory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003415
Barry Warsaw53699e91996-12-10 23:23:01 +00003416static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00003417posix_rmdir(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00003418{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00003419#ifdef MS_WINDOWS
Victor Stinner8c62be82010-05-06 00:08:46 +00003420 return win32_1str(args, "rmdir", "y:rmdir", RemoveDirectoryA, "U:rmdir", RemoveDirectoryW);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00003421#else
Victor Stinner8c62be82010-05-06 00:08:46 +00003422 return posix_1str(args, "O&:rmdir", rmdir);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00003423#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00003424}
3425
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003426
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003427PyDoc_STRVAR(posix_stat__doc__,
Victor Stinner4195b5c2012-02-08 23:03:19 +01003428"stat(path) -> stat result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003429Perform a stat system call on the given path.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003430
Barry Warsaw53699e91996-12-10 23:23:01 +00003431static PyObject *
Victor Stinner4195b5c2012-02-08 23:03:19 +01003432posix_stat(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00003433{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00003434#ifdef MS_WINDOWS
Victor Stinner4195b5c2012-02-08 23:03:19 +01003435 return posix_do_stat(self, args, "O&:stat", STAT, "U:stat", win32_stat_w);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00003436#else
Victor Stinner4195b5c2012-02-08 23:03:19 +01003437 return posix_do_stat(self, args, "O&:stat", STAT, NULL, NULL);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00003438#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00003439}
3440
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003441
Guido van Rossuma4916fa1996-05-23 22:58:55 +00003442#ifdef HAVE_SYSTEM
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003443PyDoc_STRVAR(posix_system__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003444"system(command) -> exit_status\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003445Execute the command (a string) in a subshell.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003446
Barry Warsaw53699e91996-12-10 23:23:01 +00003447static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00003448posix_system(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00003449{
Victor Stinner8c62be82010-05-06 00:08:46 +00003450 long sts;
Amaury Forgeot d'Arc90ebd3e2007-11-20 01:52:14 +00003451#ifdef MS_WINDOWS
Victor Stinner8c62be82010-05-06 00:08:46 +00003452 wchar_t *command;
3453 if (!PyArg_ParseTuple(args, "u:system", &command))
3454 return NULL;
Victor Stinnercfa72782010-04-16 11:45:13 +00003455
Victor Stinner8c62be82010-05-06 00:08:46 +00003456 Py_BEGIN_ALLOW_THREADS
3457 sts = _wsystem(command);
3458 Py_END_ALLOW_THREADS
Victor Stinnercfa72782010-04-16 11:45:13 +00003459#else
Victor Stinner8c62be82010-05-06 00:08:46 +00003460 PyObject *command_obj;
3461 char *command;
3462 if (!PyArg_ParseTuple(args, "O&:system",
3463 PyUnicode_FSConverter, &command_obj))
3464 return NULL;
Victor Stinnercfa72782010-04-16 11:45:13 +00003465
Victor Stinner8c62be82010-05-06 00:08:46 +00003466 command = PyBytes_AsString(command_obj);
3467 Py_BEGIN_ALLOW_THREADS
3468 sts = system(command);
3469 Py_END_ALLOW_THREADS
3470 Py_DECREF(command_obj);
Victor Stinnercfa72782010-04-16 11:45:13 +00003471#endif
Victor Stinner8c62be82010-05-06 00:08:46 +00003472 return PyLong_FromLong(sts);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00003473}
Guido van Rossuma4916fa1996-05-23 22:58:55 +00003474#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00003475
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003476
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003477PyDoc_STRVAR(posix_umask__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003478"umask(new_mask) -> old_mask\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003479Set the current numeric umask and return the previous umask.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003480
Barry Warsaw53699e91996-12-10 23:23:01 +00003481static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00003482posix_umask(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00003483{
Victor Stinner8c62be82010-05-06 00:08:46 +00003484 int i;
3485 if (!PyArg_ParseTuple(args, "i:umask", &i))
3486 return NULL;
3487 i = (int)umask(i);
3488 if (i < 0)
3489 return posix_error();
3490 return PyLong_FromLong((long)i);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00003491}
3492
Brian Curtind40e6f72010-07-08 21:39:08 +00003493#ifdef MS_WINDOWS
3494
3495/* override the default DeleteFileW behavior so that directory
3496symlinks can be removed with this function, the same as with
3497Unix symlinks */
3498BOOL WINAPI Py_DeleteFileW(LPCWSTR lpFileName)
3499{
3500 WIN32_FILE_ATTRIBUTE_DATA info;
3501 WIN32_FIND_DATAW find_data;
3502 HANDLE find_data_handle;
3503 int is_directory = 0;
3504 int is_link = 0;
3505
3506 if (GetFileAttributesExW(lpFileName, GetFileExInfoStandard, &info)) {
3507 is_directory = info.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY;
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00003508
Brian Curtind40e6f72010-07-08 21:39:08 +00003509 /* Get WIN32_FIND_DATA structure for the path to determine if
3510 it is a symlink */
3511 if(is_directory &&
3512 info.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT) {
3513 find_data_handle = FindFirstFileW(lpFileName, &find_data);
3514
3515 if(find_data_handle != INVALID_HANDLE_VALUE) {
3516 is_link = find_data.dwReserved0 == IO_REPARSE_TAG_SYMLINK;
3517 FindClose(find_data_handle);
3518 }
3519 }
3520 }
3521
3522 if (is_directory && is_link)
3523 return RemoveDirectoryW(lpFileName);
3524
3525 return DeleteFileW(lpFileName);
3526}
3527#endif /* MS_WINDOWS */
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003528
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003529PyDoc_STRVAR(posix_unlink__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003530"unlink(path)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003531Remove a file (same as remove(path)).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003532
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003533PyDoc_STRVAR(posix_remove__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003534"remove(path)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003535Remove a file (same as unlink(path)).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003536
Barry Warsaw53699e91996-12-10 23:23:01 +00003537static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00003538posix_unlink(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00003539{
Mark Hammondc2e85bd2002-10-03 05:10:39 +00003540#ifdef MS_WINDOWS
Brian Curtin74e45612010-07-09 15:58:59 +00003541 return win32_1str(args, "remove", "y:remove", DeleteFileA,
3542 "U:remove", Py_DeleteFileW);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00003543#else
Victor Stinner8c62be82010-05-06 00:08:46 +00003544 return posix_1str(args, "O&:remove", unlink);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00003545#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00003546}
3547
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003548
Guido van Rossumb6775db1994-08-01 11:34:53 +00003549#ifdef HAVE_UNAME
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003550PyDoc_STRVAR(posix_uname__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003551"uname() -> (sysname, nodename, release, version, machine)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003552Return a tuple identifying the current operating system.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003553
Barry Warsaw53699e91996-12-10 23:23:01 +00003554static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00003555posix_uname(PyObject *self, PyObject *noargs)
Guido van Rossumc39de5f1992-02-05 11:15:54 +00003556{
Victor Stinner8c62be82010-05-06 00:08:46 +00003557 struct utsname u;
3558 int res;
Neal Norwitze241ce82003-02-17 18:17:05 +00003559
Victor Stinner8c62be82010-05-06 00:08:46 +00003560 Py_BEGIN_ALLOW_THREADS
3561 res = uname(&u);
3562 Py_END_ALLOW_THREADS
3563 if (res < 0)
3564 return posix_error();
3565 return Py_BuildValue("(sssss)",
3566 u.sysname,
3567 u.nodename,
3568 u.release,
3569 u.version,
3570 u.machine);
Guido van Rossumc39de5f1992-02-05 11:15:54 +00003571}
Guido van Rossumb6775db1994-08-01 11:34:53 +00003572#endif /* HAVE_UNAME */
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00003573
Larry Hastings9e3e70b2011-09-08 19:29:07 -07003574
Larry Hastings76ad59b2012-05-03 00:30:07 -07003575static int
3576split_py_long_to_s_and_ns(PyObject *py_long, time_t *s, long *ns)
3577{
3578 int result = 0;
3579 PyObject *divmod;
3580 divmod = PyNumber_Divmod(py_long, billion);
3581 if (!divmod)
3582 goto exit;
3583 *s = _PyLong_AsTime_t(PyTuple_GET_ITEM(divmod, 0));
3584 if ((*s == -1) && PyErr_Occurred())
3585 goto exit;
3586 *ns = PyLong_AsLong(PyTuple_GET_ITEM(divmod, 1));
3587 if ((*s == -1) && PyErr_Occurred())
3588 goto exit;
3589
3590 result = 1;
3591exit:
3592 Py_XDECREF(divmod);
3593 return result;
3594}
3595
3596
3597typedef int (*parameter_converter_t)(PyObject *, void *);
3598
3599typedef struct {
3600 /* input only */
3601 char path_format;
3602 parameter_converter_t converter;
3603 char *function_name;
3604 char *first_argument_name;
3605 PyObject *args;
3606 PyObject *kwargs;
3607
3608 /* input/output */
3609 PyObject **path;
3610
3611 /* output only */
3612 int now;
3613 time_t atime_s;
3614 long atime_ns;
3615 time_t mtime_s;
3616 long mtime_ns;
3617} utime_arguments;
3618
3619#define DECLARE_UA(ua, fname) \
3620 utime_arguments ua; \
3621 memset(&ua, 0, sizeof(ua)); \
3622 ua.function_name = fname; \
3623 ua.args = args; \
3624 ua.kwargs = kwargs; \
3625 ua.first_argument_name = "path"; \
3626
3627/* UA_TO_FILETIME doesn't declare atime and mtime for you */
3628#define UA_TO_FILETIME(ua, atime, mtime) \
3629 time_t_to_FILE_TIME(ua.atime_s, ua.atime_ns, &atime); \
3630 time_t_to_FILE_TIME(ua.mtime_s, ua.mtime_ns, &mtime)
3631
3632/* the rest of these macros declare the output variable for you */
3633#define UA_TO_TIMESPEC(ua, ts) \
3634 struct timespec ts[2]; \
3635 ts[0].tv_sec = ua.atime_s; \
3636 ts[0].tv_nsec = ua.atime_ns; \
3637 ts[1].tv_sec = ua.mtime_s; \
3638 ts[1].tv_nsec = ua.mtime_ns
3639
3640#define UA_TO_TIMEVAL(ua, tv) \
3641 struct timeval tv[2]; \
3642 tv[0].tv_sec = ua.atime_s; \
3643 tv[0].tv_usec = ua.atime_ns / 1000; \
3644 tv[1].tv_sec = ua.mtime_s; \
3645 tv[1].tv_usec = ua.mtime_ns / 1000
3646
3647#define UA_TO_UTIMBUF(ua, u) \
3648 struct utimbuf u; \
3649 utimbuf.actime = ua.atime_s; \
3650 utimbuf.modtime = ua.mtime_s
3651
3652#define UA_TO_TIME_T(ua, timet) \
3653 time_t timet[2]; \
3654 timet[0] = ua.atime_s; \
3655 timet[1] = ua.mtime_s
3656
3657
3658/*
3659 * utime_read_time_arguments() processes arguments for the utime
3660 * family of functions.
3661 * returns zero on failure.
3662 */
3663static int
3664utime_read_time_arguments(utime_arguments *ua)
3665{
3666 PyObject *times = NULL;
3667 PyObject *ns = NULL;
3668 char format[24];
3669 char *kwlist[4];
3670 char **kw = kwlist;
3671 int return_value;
3672
3673 *kw++ = ua->first_argument_name;
3674 *kw++ = "times";
3675 *kw++ = "ns";
3676 *kw = NULL;
3677
3678 sprintf(format, "%c%s|O$O:%s",
3679 ua->path_format,
3680 ua->converter ? "&" : "",
3681 ua->function_name);
3682
3683 if (ua->converter)
3684 return_value = PyArg_ParseTupleAndKeywords(ua->args, ua->kwargs,
3685 format, kwlist, ua->converter, ua->path, &times, &ns);
3686 else
3687 return_value = PyArg_ParseTupleAndKeywords(ua->args, ua->kwargs,
3688 format, kwlist, ua->path, &times, &ns);
3689
3690 if (!return_value)
3691 return 0;
3692
3693 if (times && ns) {
3694 PyErr_Format(PyExc_RuntimeError,
3695 "%s: you may specify either 'times'"
3696 " or 'ns' but not both",
3697 ua->function_name);
3698 return 0;
3699 }
3700
3701 if (times && (times != Py_None)) {
3702 if (!PyTuple_CheckExact(times) || (PyTuple_Size(times) != 2)) {
3703 PyErr_Format(PyExc_TypeError,
3704 "%s: 'time' must be either"
3705 " a valid tuple of two ints or None",
3706 ua->function_name);
3707 return 0;
3708 }
3709 ua->now = 0;
3710 return (_PyTime_ObjectToTimespec(PyTuple_GET_ITEM(times, 0),
3711 &(ua->atime_s), &(ua->atime_ns)) != -1)
3712 && (_PyTime_ObjectToTimespec(PyTuple_GET_ITEM(times, 1),
3713 &(ua->mtime_s), &(ua->mtime_ns)) != -1);
3714 }
3715
3716 if (ns) {
3717 if (!PyTuple_CheckExact(ns) || (PyTuple_Size(ns) != 2)) {
3718 PyErr_Format(PyExc_TypeError,
3719 "%s: 'ns' must be a valid tuple of two ints",
3720 ua->function_name);
3721 return 0;
3722 }
3723 ua->now = 0;
3724 return (split_py_long_to_s_and_ns(PyTuple_GET_ITEM(ns, 0),
3725 &(ua->atime_s), &(ua->atime_ns)))
3726 && (split_py_long_to_s_and_ns(PyTuple_GET_ITEM(ns, 1),
3727 &(ua->mtime_s), &(ua->mtime_ns)));
3728 }
3729
3730 /* either times=None, or neither times nor ns was specified. use "now". */
3731 ua->now = 1;
3732 return 1;
3733}
3734
3735
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003736PyDoc_STRVAR(posix_utime__doc__,
Larry Hastings76ad59b2012-05-03 00:30:07 -07003737"utime(path[, times=(atime, mtime), *, ns=(atime_ns, mtime_ns)])\n\
3738Set the access and modified time of the file.\n\
3739If the second argument ('times') is specified,\n\
3740 the values should be expressed as float seconds since the epoch.\n\
3741If the keyword argument 'ns' is specified,\n\
3742 the values should be expressed as integer nanoseconds since the epoch.\n\
3743If neither the second nor the 'ns' argument is specified,\n\
3744 utime uses the current time.\n\
3745Specifying both 'times' and 'ns' is an error.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003746
Barry Warsaw53699e91996-12-10 23:23:01 +00003747static PyObject *
Larry Hastings76ad59b2012-05-03 00:30:07 -07003748posix_utime(PyObject *self, PyObject *args, PyObject *kwargs)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00003749{
Hirokazu Yamamoto8223c242009-05-17 04:21:53 +00003750#ifdef MS_WINDOWS
Larry Hastings76ad59b2012-05-03 00:30:07 -07003751 PyObject *upath;
Victor Stinner8c62be82010-05-06 00:08:46 +00003752 HANDLE hFile;
Victor Stinner8c62be82010-05-06 00:08:46 +00003753 PyObject *result = NULL;
Larry Hastings76ad59b2012-05-03 00:30:07 -07003754 FILETIME atime, mtime;
Thomas Wouters477c8d52006-05-27 19:21:47 +00003755
Larry Hastings76ad59b2012-05-03 00:30:07 -07003756 DECLARE_UA(ua, "utime");
3757
3758 ua.path_format = 'U';
3759 ua.path = &upath;
3760
3761 if (!utime_read_time_arguments(&ua)) {
3762 wchar_t *wpath = PyUnicode_AsUnicode(upath);
Victor Stinnereb5657a2011-09-30 01:44:27 +02003763 if (wpath == NULL)
3764 return NULL;
Victor Stinner8c62be82010-05-06 00:08:46 +00003765 Py_BEGIN_ALLOW_THREADS
3766 hFile = CreateFileW(wpath, FILE_WRITE_ATTRIBUTES, 0,
3767 NULL, OPEN_EXISTING,
3768 FILE_FLAG_BACKUP_SEMANTICS, NULL);
3769 Py_END_ALLOW_THREADS
3770 if (hFile == INVALID_HANDLE_VALUE)
Larry Hastings76ad59b2012-05-03 00:30:07 -07003771 return win32_error_object("utime", upath);
Victor Stinnereb5657a2011-09-30 01:44:27 +02003772 }
3773 else {
Larry Hastings76ad59b2012-05-03 00:30:07 -07003774 const char *apath;
Victor Stinner8c62be82010-05-06 00:08:46 +00003775 /* Drop the argument parsing error as narrow strings
3776 are also valid. */
3777 PyErr_Clear();
Hirokazu Yamamoto892a37a2009-06-28 11:07:03 +00003778
Larry Hastings76ad59b2012-05-03 00:30:07 -07003779 ua.path_format = 'y';
3780 ua.path = (PyObject **)&apath;
3781 if (!utime_read_time_arguments(&ua))
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01003782 return NULL;
3783 if (win32_warn_bytes_api())
Victor Stinner8c62be82010-05-06 00:08:46 +00003784 return NULL;
Victor Stinnereb5657a2011-09-30 01:44:27 +02003785
Victor Stinner8c62be82010-05-06 00:08:46 +00003786 Py_BEGIN_ALLOW_THREADS
3787 hFile = CreateFileA(apath, FILE_WRITE_ATTRIBUTES, 0,
3788 NULL, OPEN_EXISTING,
3789 FILE_FLAG_BACKUP_SEMANTICS, NULL);
3790 Py_END_ALLOW_THREADS
3791 if (hFile == INVALID_HANDLE_VALUE) {
3792 win32_error("utime", apath);
Victor Stinner8c62be82010-05-06 00:08:46 +00003793 return NULL;
3794 }
Victor Stinner8c62be82010-05-06 00:08:46 +00003795 }
3796
Larry Hastings76ad59b2012-05-03 00:30:07 -07003797 if (ua.now) {
Victor Stinner8c62be82010-05-06 00:08:46 +00003798 SYSTEMTIME now;
3799 GetSystemTime(&now);
3800 if (!SystemTimeToFileTime(&now, &mtime) ||
3801 !SystemTimeToFileTime(&now, &atime)) {
3802 win32_error("utime", NULL);
3803 goto done;
Stefan Krah0e803b32010-11-26 16:16:47 +00003804 }
Victor Stinner8c62be82010-05-06 00:08:46 +00003805 }
Victor Stinner8c62be82010-05-06 00:08:46 +00003806 else {
Larry Hastings76ad59b2012-05-03 00:30:07 -07003807 UA_TO_FILETIME(ua, atime, mtime);
Victor Stinner8c62be82010-05-06 00:08:46 +00003808 }
3809 if (!SetFileTime(hFile, NULL, &atime, &mtime)) {
3810 /* Avoid putting the file name into the error here,
3811 as that may confuse the user into believing that
3812 something is wrong with the file, when it also
3813 could be the time stamp that gives a problem. */
3814 win32_error("utime", NULL);
Antoine Pitroue85da7a2011-01-06 18:25:55 +00003815 goto done;
Victor Stinner8c62be82010-05-06 00:08:46 +00003816 }
3817 Py_INCREF(Py_None);
3818 result = Py_None;
Thomas Wouters477c8d52006-05-27 19:21:47 +00003819done:
Victor Stinner8c62be82010-05-06 00:08:46 +00003820 CloseHandle(hFile);
3821 return result;
Hirokazu Yamamoto8223c242009-05-17 04:21:53 +00003822#else /* MS_WINDOWS */
Victor Stinner8c62be82010-05-06 00:08:46 +00003823 PyObject *opath;
3824 char *path;
Victor Stinner8c62be82010-05-06 00:08:46 +00003825 int res;
Guido van Rossum1ff6cb41991-04-08 20:59:13 +00003826
Larry Hastings76ad59b2012-05-03 00:30:07 -07003827 DECLARE_UA(ua, "utime");
3828
3829 ua.path_format = 'O';
3830 ua.path = &opath;
3831 ua.converter = PyUnicode_FSConverter;
3832
3833 if (!utime_read_time_arguments(&ua))
Victor Stinner8c62be82010-05-06 00:08:46 +00003834 return NULL;
3835 path = PyBytes_AsString(opath);
Larry Hastings76ad59b2012-05-03 00:30:07 -07003836 if (ua.now) {
Victor Stinner8c62be82010-05-06 00:08:46 +00003837 Py_BEGIN_ALLOW_THREADS
3838 res = utime(path, NULL);
3839 Py_END_ALLOW_THREADS
3840 }
Victor Stinner8c62be82010-05-06 00:08:46 +00003841 else {
Larry Hastings9e3e70b2011-09-08 19:29:07 -07003842 Py_BEGIN_ALLOW_THREADS
Larry Hastings9e3e70b2011-09-08 19:29:07 -07003843#ifdef HAVE_UTIMENSAT
Larry Hastings76ad59b2012-05-03 00:30:07 -07003844 UA_TO_TIMESPEC(ua, buf);
Larry Hastings9e3e70b2011-09-08 19:29:07 -07003845 res = utimensat(AT_FDCWD, path, buf, 0);
3846#elif defined(HAVE_UTIMES)
Larry Hastings76ad59b2012-05-03 00:30:07 -07003847 UA_TO_TIMEVAL(ua, buf);
Victor Stinner8c62be82010-05-06 00:08:46 +00003848 res = utimes(path, buf);
Larry Hastings9e3e70b2011-09-08 19:29:07 -07003849#elif defined(HAVE_UTIME_H)
3850 /* XXX should define struct utimbuf instead, above */
Larry Hastings76ad59b2012-05-03 00:30:07 -07003851 UA_TO_UTIMBUF(ua, buf);
Larry Hastings9e3e70b2011-09-08 19:29:07 -07003852 res = utime(path, &buf);
Martin v. Löwis6aa9fdb2002-09-10 09:16:13 +00003853#else
Larry Hastings76ad59b2012-05-03 00:30:07 -07003854 UA_TO_TIME_T(ua, buf);
Larry Hastings9e3e70b2011-09-08 19:29:07 -07003855 res = utime(path, buf);
3856#endif
Victor Stinner8c62be82010-05-06 00:08:46 +00003857 Py_END_ALLOW_THREADS
Victor Stinner8c62be82010-05-06 00:08:46 +00003858 }
Larry Hastings76ad59b2012-05-03 00:30:07 -07003859
Victor Stinner8c62be82010-05-06 00:08:46 +00003860 if (res < 0) {
3861 return posix_error_with_allocated_filename(opath);
3862 }
3863 Py_DECREF(opath);
Larry Hastings76ad59b2012-05-03 00:30:07 -07003864 Py_RETURN_NONE;
Larry Hastings9e3e70b2011-09-08 19:29:07 -07003865#undef UTIME_EXTRACT
Hirokazu Yamamoto8223c242009-05-17 04:21:53 +00003866#endif /* MS_WINDOWS */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00003867}
3868
Ross Lagerwall7807c352011-03-17 20:20:30 +02003869#ifdef HAVE_FUTIMES
3870PyDoc_STRVAR(posix_futimes__doc__,
Larry Hastings76ad59b2012-05-03 00:30:07 -07003871"futimes(fd[, times=(atime, mtime), *, ns=(atime_ns, mtime_ns)])\n\
Ross Lagerwall7807c352011-03-17 20:20:30 +02003872Set the access and modified time of the file specified by the file\n\
Larry Hastings76ad59b2012-05-03 00:30:07 -07003873descriptor fd. See utime for the semantics of the times and ns parameters.");
Ross Lagerwall7807c352011-03-17 20:20:30 +02003874
3875static PyObject *
Larry Hastings76ad59b2012-05-03 00:30:07 -07003876posix_futimes(PyObject *self, PyObject *args, PyObject *kwargs)
Ross Lagerwall7807c352011-03-17 20:20:30 +02003877{
3878 int res, fd;
Ross Lagerwall7807c352011-03-17 20:20:30 +02003879
Larry Hastings76ad59b2012-05-03 00:30:07 -07003880 DECLARE_UA(ua, "futimes");
3881
3882 ua.path_format = 'i';
3883 ua.path = (PyObject **)&fd;
3884 ua.first_argument_name = "fd";
3885
3886 if (!utime_read_time_arguments(&ua))
Ross Lagerwall7807c352011-03-17 20:20:30 +02003887 return NULL;
3888
Larry Hastings76ad59b2012-05-03 00:30:07 -07003889 if (ua.now) {
Ross Lagerwall7807c352011-03-17 20:20:30 +02003890 Py_BEGIN_ALLOW_THREADS
3891 res = futimes(fd, NULL);
3892 Py_END_ALLOW_THREADS
3893 }
Ross Lagerwall7807c352011-03-17 20:20:30 +02003894 else {
Ross Lagerwall7807c352011-03-17 20:20:30 +02003895 Py_BEGIN_ALLOW_THREADS
Larry Hastings9e3e70b2011-09-08 19:29:07 -07003896 {
3897#ifdef HAVE_FUTIMENS
Larry Hastings76ad59b2012-05-03 00:30:07 -07003898 UA_TO_TIMESPEC(ua, buf);
Larry Hastings9e3e70b2011-09-08 19:29:07 -07003899 res = futimens(fd, buf);
3900#else
Larry Hastings76ad59b2012-05-03 00:30:07 -07003901 UA_TO_TIMEVAL(ua, buf);
Ross Lagerwall7807c352011-03-17 20:20:30 +02003902 res = futimes(fd, buf);
Larry Hastings9e3e70b2011-09-08 19:29:07 -07003903#endif
3904 }
Ross Lagerwall7807c352011-03-17 20:20:30 +02003905 Py_END_ALLOW_THREADS
3906 }
3907 if (res < 0)
3908 return posix_error();
3909 Py_RETURN_NONE;
3910}
3911#endif
3912
3913#ifdef HAVE_LUTIMES
3914PyDoc_STRVAR(posix_lutimes__doc__,
Larry Hastings76ad59b2012-05-03 00:30:07 -07003915"lutimes(path[, times=(atime, mtime), *, ns=(atime_ns, mtime_ns)])\n\
Ross Lagerwall7807c352011-03-17 20:20:30 +02003916Like utime(), but if path is a symbolic link, it is not dereferenced.");
3917
3918static PyObject *
Larry Hastings76ad59b2012-05-03 00:30:07 -07003919posix_lutimes(PyObject *self, PyObject *args, PyObject *kwargs)
Ross Lagerwall7807c352011-03-17 20:20:30 +02003920{
Brian Curtinc1b65d12011-11-07 14:18:54 -06003921 PyObject *opath;
Ross Lagerwall7807c352011-03-17 20:20:30 +02003922 const char *path;
3923 int res;
Ross Lagerwall7807c352011-03-17 20:20:30 +02003924
Larry Hastings76ad59b2012-05-03 00:30:07 -07003925 DECLARE_UA(ua, "lutimes");
3926
3927 ua.path_format = 'O';
3928 ua.path = &opath;
3929 ua.converter = PyUnicode_FSConverter;
3930
3931 if (!utime_read_time_arguments(&ua))
Ross Lagerwall7807c352011-03-17 20:20:30 +02003932 return NULL;
3933 path = PyBytes_AsString(opath);
Larry Hastings76ad59b2012-05-03 00:30:07 -07003934
3935 if (ua.now) {
Ross Lagerwall7807c352011-03-17 20:20:30 +02003936 /* optional time values not given */
3937 Py_BEGIN_ALLOW_THREADS
3938 res = lutimes(path, NULL);
3939 Py_END_ALLOW_THREADS
3940 }
Ross Lagerwall7807c352011-03-17 20:20:30 +02003941 else {
Ross Lagerwall7807c352011-03-17 20:20:30 +02003942 Py_BEGIN_ALLOW_THREADS
Larry Hastings9e3e70b2011-09-08 19:29:07 -07003943 {
3944#ifdef HAVE_UTIMENSAT
Larry Hastings76ad59b2012-05-03 00:30:07 -07003945 UA_TO_TIMESPEC(ua, buf);
Larry Hastings9e3e70b2011-09-08 19:29:07 -07003946 res = utimensat(AT_FDCWD, path, buf, AT_SYMLINK_NOFOLLOW);
3947#else
Larry Hastings76ad59b2012-05-03 00:30:07 -07003948 UA_TO_TIMEVAL(ua, buf);
Ross Lagerwall7807c352011-03-17 20:20:30 +02003949 res = lutimes(path, buf);
Larry Hastings9e3e70b2011-09-08 19:29:07 -07003950#endif
3951 }
Ross Lagerwall7807c352011-03-17 20:20:30 +02003952 Py_END_ALLOW_THREADS
3953 }
3954 Py_DECREF(opath);
3955 if (res < 0)
3956 return posix_error();
3957 Py_RETURN_NONE;
3958}
3959#endif
3960
Guido van Rossum3b066191991-06-04 19:40:25 +00003961/* Process operations */
Guido van Rossum85e3b011991-06-03 12:42:10 +00003962
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003963PyDoc_STRVAR(posix__exit__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00003964"_exit(status)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00003965Exit to the system with specified status, without normal exit processing.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00003966
Barry Warsaw53699e91996-12-10 23:23:01 +00003967static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00003968posix__exit(PyObject *self, PyObject *args)
Guido van Rossum85e3b011991-06-03 12:42:10 +00003969{
Victor Stinner8c62be82010-05-06 00:08:46 +00003970 int sts;
3971 if (!PyArg_ParseTuple(args, "i:_exit", &sts))
3972 return NULL;
3973 _exit(sts);
3974 return NULL; /* Make gcc -Wall happy */
Guido van Rossum85e3b011991-06-03 12:42:10 +00003975}
3976
Martin v. Löwis114619e2002-10-07 06:44:21 +00003977#if defined(HAVE_EXECV) || defined(HAVE_SPAWNV)
3978static void
Martin v. Löwis725507b2006-03-07 12:08:51 +00003979free_string_array(char **array, Py_ssize_t count)
Martin v. Löwis114619e2002-10-07 06:44:21 +00003980{
Victor Stinner8c62be82010-05-06 00:08:46 +00003981 Py_ssize_t i;
3982 for (i = 0; i < count; i++)
3983 PyMem_Free(array[i]);
3984 PyMem_DEL(array);
Martin v. Löwis114619e2002-10-07 06:44:21 +00003985}
Martin v. Löwis011e8422009-05-05 04:43:17 +00003986
Antoine Pitrou69f71142009-05-24 21:25:49 +00003987static
Martin v. Löwis011e8422009-05-05 04:43:17 +00003988int fsconvert_strdup(PyObject *o, char**out)
3989{
Victor Stinner8c62be82010-05-06 00:08:46 +00003990 PyObject *bytes;
3991 Py_ssize_t size;
3992 if (!PyUnicode_FSConverter(o, &bytes))
3993 return 0;
3994 size = PyBytes_GET_SIZE(bytes);
3995 *out = PyMem_Malloc(size+1);
3996 if (!*out)
3997 return 0;
3998 memcpy(*out, PyBytes_AsString(bytes), size+1);
3999 Py_DECREF(bytes);
4000 return 1;
Martin v. Löwis011e8422009-05-05 04:43:17 +00004001}
Martin v. Löwis114619e2002-10-07 06:44:21 +00004002#endif
4003
Ross Lagerwall7807c352011-03-17 20:20:30 +02004004#if defined(HAVE_EXECV) || defined (HAVE_FEXECVE)
Victor Stinner13bb71c2010-04-23 21:41:56 +00004005static char**
4006parse_envlist(PyObject* env, Py_ssize_t *envc_ptr)
4007{
Victor Stinner8c62be82010-05-06 00:08:46 +00004008 char **envlist;
4009 Py_ssize_t i, pos, envc;
4010 PyObject *keys=NULL, *vals=NULL;
4011 PyObject *key, *val, *key2, *val2;
4012 char *p, *k, *v;
4013 size_t len;
Victor Stinner13bb71c2010-04-23 21:41:56 +00004014
Victor Stinner8c62be82010-05-06 00:08:46 +00004015 i = PyMapping_Size(env);
4016 if (i < 0)
4017 return NULL;
4018 envlist = PyMem_NEW(char *, i + 1);
4019 if (envlist == NULL) {
4020 PyErr_NoMemory();
4021 return NULL;
4022 }
4023 envc = 0;
4024 keys = PyMapping_Keys(env);
4025 vals = PyMapping_Values(env);
4026 if (!keys || !vals)
4027 goto error;
4028 if (!PyList_Check(keys) || !PyList_Check(vals)) {
4029 PyErr_Format(PyExc_TypeError,
4030 "env.keys() or env.values() is not a list");
4031 goto error;
4032 }
Victor Stinner13bb71c2010-04-23 21:41:56 +00004033
Victor Stinner8c62be82010-05-06 00:08:46 +00004034 for (pos = 0; pos < i; pos++) {
4035 key = PyList_GetItem(keys, pos);
4036 val = PyList_GetItem(vals, pos);
4037 if (!key || !val)
4038 goto error;
Victor Stinner13bb71c2010-04-23 21:41:56 +00004039
Victor Stinner8c62be82010-05-06 00:08:46 +00004040 if (PyUnicode_FSConverter(key, &key2) == 0)
4041 goto error;
4042 if (PyUnicode_FSConverter(val, &val2) == 0) {
4043 Py_DECREF(key2);
4044 goto error;
4045 }
Victor Stinner13bb71c2010-04-23 21:41:56 +00004046
4047#if defined(PYOS_OS2)
Victor Stinner8c62be82010-05-06 00:08:46 +00004048 /* Omit Pseudo-Env Vars that Would Confuse Programs if Passed On */
4049 if (stricmp(k, "BEGINLIBPATH") != 0 && stricmp(k, "ENDLIBPATH") != 0) {
Victor Stinner13bb71c2010-04-23 21:41:56 +00004050#endif
Victor Stinner8c62be82010-05-06 00:08:46 +00004051 k = PyBytes_AsString(key2);
4052 v = PyBytes_AsString(val2);
4053 len = PyBytes_GET_SIZE(key2) + PyBytes_GET_SIZE(val2) + 2;
Victor Stinner13bb71c2010-04-23 21:41:56 +00004054
Victor Stinner8c62be82010-05-06 00:08:46 +00004055 p = PyMem_NEW(char, len);
4056 if (p == NULL) {
4057 PyErr_NoMemory();
4058 Py_DECREF(key2);
4059 Py_DECREF(val2);
4060 goto error;
4061 }
4062 PyOS_snprintf(p, len, "%s=%s", k, v);
4063 envlist[envc++] = p;
4064 Py_DECREF(key2);
4065 Py_DECREF(val2);
Victor Stinner13bb71c2010-04-23 21:41:56 +00004066#if defined(PYOS_OS2)
Victor Stinner8c62be82010-05-06 00:08:46 +00004067 }
Victor Stinner13bb71c2010-04-23 21:41:56 +00004068#endif
Victor Stinner8c62be82010-05-06 00:08:46 +00004069 }
4070 Py_DECREF(vals);
4071 Py_DECREF(keys);
Victor Stinner13bb71c2010-04-23 21:41:56 +00004072
Victor Stinner8c62be82010-05-06 00:08:46 +00004073 envlist[envc] = 0;
4074 *envc_ptr = envc;
4075 return envlist;
Victor Stinner13bb71c2010-04-23 21:41:56 +00004076
4077error:
Victor Stinner8c62be82010-05-06 00:08:46 +00004078 Py_XDECREF(keys);
4079 Py_XDECREF(vals);
4080 while (--envc >= 0)
4081 PyMem_DEL(envlist[envc]);
4082 PyMem_DEL(envlist);
4083 return NULL;
Victor Stinner13bb71c2010-04-23 21:41:56 +00004084}
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004085
Ross Lagerwall7807c352011-03-17 20:20:30 +02004086static char**
4087parse_arglist(PyObject* argv, Py_ssize_t *argc)
4088{
4089 int i;
4090 char **argvlist = PyMem_NEW(char *, *argc+1);
4091 if (argvlist == NULL) {
4092 PyErr_NoMemory();
4093 return NULL;
4094 }
4095 for (i = 0; i < *argc; i++) {
Ross Lagerwall9ad63e02011-03-19 09:11:14 +02004096 PyObject* item = PySequence_ITEM(argv, i);
4097 if (item == NULL)
4098 goto fail;
4099 if (!fsconvert_strdup(item, &argvlist[i])) {
4100 Py_DECREF(item);
Ross Lagerwall7807c352011-03-17 20:20:30 +02004101 goto fail;
4102 }
Ross Lagerwall9ad63e02011-03-19 09:11:14 +02004103 Py_DECREF(item);
Ross Lagerwall7807c352011-03-17 20:20:30 +02004104 }
4105 argvlist[*argc] = NULL;
4106 return argvlist;
4107fail:
Ross Lagerwall9ad63e02011-03-19 09:11:14 +02004108 *argc = i;
Ross Lagerwall7807c352011-03-17 20:20:30 +02004109 free_string_array(argvlist, *argc);
4110 return NULL;
4111}
4112#endif
4113
4114#ifdef HAVE_EXECV
4115PyDoc_STRVAR(posix_execv__doc__,
4116"execv(path, args)\n\n\
4117Execute an executable path with arguments, replacing current process.\n\
4118\n\
4119 path: path of executable file\n\
4120 args: tuple or list of strings");
4121
4122static PyObject *
4123posix_execv(PyObject *self, PyObject *args)
4124{
4125 PyObject *opath;
4126 char *path;
4127 PyObject *argv;
4128 char **argvlist;
4129 Py_ssize_t argc;
4130
4131 /* execv has two arguments: (path, argv), where
4132 argv is a list or tuple of strings. */
4133
4134 if (!PyArg_ParseTuple(args, "O&O:execv",
4135 PyUnicode_FSConverter,
4136 &opath, &argv))
4137 return NULL;
4138 path = PyBytes_AsString(opath);
4139 if (!PyList_Check(argv) && !PyTuple_Check(argv)) {
4140 PyErr_SetString(PyExc_TypeError,
4141 "execv() arg 2 must be a tuple or list");
4142 Py_DECREF(opath);
4143 return NULL;
4144 }
4145 argc = PySequence_Size(argv);
4146 if (argc < 1) {
4147 PyErr_SetString(PyExc_ValueError, "execv() arg 2 must not be empty");
4148 Py_DECREF(opath);
4149 return NULL;
4150 }
4151
4152 argvlist = parse_arglist(argv, &argc);
4153 if (argvlist == NULL) {
4154 Py_DECREF(opath);
4155 return NULL;
4156 }
4157
4158 execv(path, argvlist);
4159
4160 /* If we get here it's definitely an error */
4161
4162 free_string_array(argvlist, argc);
4163 Py_DECREF(opath);
4164 return posix_error();
4165}
4166
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004167PyDoc_STRVAR(posix_execve__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00004168"execve(path, args, env)\n\n\
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004169Execute a path with arguments and environment, replacing current process.\n\
4170\n\
Victor Stinner8c62be82010-05-06 00:08:46 +00004171 path: path of executable file\n\
4172 args: tuple or list of arguments\n\
4173 env: dictionary of strings mapping to strings");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004174
Barry Warsaw53699e91996-12-10 23:23:01 +00004175static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00004176posix_execve(PyObject *self, PyObject *args)
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00004177{
Victor Stinner8c62be82010-05-06 00:08:46 +00004178 PyObject *opath;
4179 char *path;
4180 PyObject *argv, *env;
4181 char **argvlist;
4182 char **envlist;
Ross Lagerwall7807c352011-03-17 20:20:30 +02004183 Py_ssize_t argc, envc;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00004184
Victor Stinner8c62be82010-05-06 00:08:46 +00004185 /* execve has three arguments: (path, argv, env), where
4186 argv is a list or tuple of strings and env is a dictionary
4187 like posix.environ. */
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00004188
Victor Stinner8c62be82010-05-06 00:08:46 +00004189 if (!PyArg_ParseTuple(args, "O&OO:execve",
4190 PyUnicode_FSConverter,
4191 &opath, &argv, &env))
4192 return NULL;
4193 path = PyBytes_AsString(opath);
Ross Lagerwall7807c352011-03-17 20:20:30 +02004194 if (!PyList_Check(argv) && !PyTuple_Check(argv)) {
Victor Stinner8c62be82010-05-06 00:08:46 +00004195 PyErr_SetString(PyExc_TypeError,
4196 "execve() arg 2 must be a tuple or list");
4197 goto fail_0;
4198 }
Ross Lagerwall7807c352011-03-17 20:20:30 +02004199 argc = PySequence_Size(argv);
Victor Stinner8c62be82010-05-06 00:08:46 +00004200 if (!PyMapping_Check(env)) {
4201 PyErr_SetString(PyExc_TypeError,
4202 "execve() arg 3 must be a mapping object");
4203 goto fail_0;
4204 }
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00004205
Ross Lagerwall7807c352011-03-17 20:20:30 +02004206 argvlist = parse_arglist(argv, &argc);
Victor Stinner8c62be82010-05-06 00:08:46 +00004207 if (argvlist == NULL) {
Victor Stinner8c62be82010-05-06 00:08:46 +00004208 goto fail_0;
4209 }
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00004210
Victor Stinner8c62be82010-05-06 00:08:46 +00004211 envlist = parse_envlist(env, &envc);
4212 if (envlist == NULL)
4213 goto fail_1;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00004214
Victor Stinner8c62be82010-05-06 00:08:46 +00004215 execve(path, argvlist, envlist);
Tim Peters5aa91602002-01-30 05:46:57 +00004216
Victor Stinner8c62be82010-05-06 00:08:46 +00004217 /* If we get here it's definitely an error */
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00004218
Victor Stinner8c62be82010-05-06 00:08:46 +00004219 (void) posix_error();
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00004220
Victor Stinner8c62be82010-05-06 00:08:46 +00004221 while (--envc >= 0)
4222 PyMem_DEL(envlist[envc]);
4223 PyMem_DEL(envlist);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00004224 fail_1:
Ross Lagerwall7807c352011-03-17 20:20:30 +02004225 free_string_array(argvlist, argc);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00004226 fail_0:
Victor Stinner8c62be82010-05-06 00:08:46 +00004227 Py_DECREF(opath);
4228 return NULL;
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00004229}
Guido van Rossuma4916fa1996-05-23 22:58:55 +00004230#endif /* HAVE_EXECV */
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +00004231
Ross Lagerwall7807c352011-03-17 20:20:30 +02004232#ifdef HAVE_FEXECVE
4233PyDoc_STRVAR(posix_fexecve__doc__,
4234"fexecve(fd, args, env)\n\n\
4235Execute the program specified by a file descriptor with arguments and\n\
4236environment, replacing the current process.\n\
4237\n\
4238 fd: file descriptor of executable\n\
4239 args: tuple or list of arguments\n\
4240 env: dictionary of strings mapping to strings");
4241
4242static PyObject *
4243posix_fexecve(PyObject *self, PyObject *args)
4244{
4245 int fd;
4246 PyObject *argv, *env;
4247 char **argvlist;
4248 char **envlist;
4249 Py_ssize_t argc, envc;
4250
4251 if (!PyArg_ParseTuple(args, "iOO:fexecve",
4252 &fd, &argv, &env))
4253 return NULL;
4254 if (!PyList_Check(argv) && !PyTuple_Check(argv)) {
4255 PyErr_SetString(PyExc_TypeError,
4256 "fexecve() arg 2 must be a tuple or list");
4257 return NULL;
4258 }
4259 argc = PySequence_Size(argv);
4260 if (!PyMapping_Check(env)) {
4261 PyErr_SetString(PyExc_TypeError,
4262 "fexecve() arg 3 must be a mapping object");
4263 return NULL;
4264 }
4265
4266 argvlist = parse_arglist(argv, &argc);
4267 if (argvlist == NULL)
4268 return NULL;
4269
4270 envlist = parse_envlist(env, &envc);
4271 if (envlist == NULL)
4272 goto fail;
4273
4274 fexecve(fd, argvlist, envlist);
4275
4276 /* If we get here it's definitely an error */
4277
4278 (void) posix_error();
4279
4280 while (--envc >= 0)
4281 PyMem_DEL(envlist[envc]);
4282 PyMem_DEL(envlist);
4283 fail:
4284 free_string_array(argvlist, argc);
4285 return NULL;
4286}
4287#endif /* HAVE_FEXECVE */
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004288
Guido van Rossuma1065681999-01-25 23:20:23 +00004289#ifdef HAVE_SPAWNV
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004290PyDoc_STRVAR(posix_spawnv__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00004291"spawnv(mode, path, args)\n\n\
Tim Peters25059d32001-12-07 20:35:43 +00004292Execute the program 'path' in a new process.\n\
Guido van Rossuma1065681999-01-25 23:20:23 +00004293\n\
Victor Stinner8c62be82010-05-06 00:08:46 +00004294 mode: mode of process creation\n\
4295 path: path of executable file\n\
4296 args: tuple or list of strings");
Guido van Rossuma1065681999-01-25 23:20:23 +00004297
4298static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00004299posix_spawnv(PyObject *self, PyObject *args)
Guido van Rossuma1065681999-01-25 23:20:23 +00004300{
Victor Stinner8c62be82010-05-06 00:08:46 +00004301 PyObject *opath;
4302 char *path;
4303 PyObject *argv;
4304 char **argvlist;
4305 int mode, i;
4306 Py_ssize_t argc;
4307 Py_intptr_t spawnval;
4308 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Guido van Rossuma1065681999-01-25 23:20:23 +00004309
Victor Stinner8c62be82010-05-06 00:08:46 +00004310 /* spawnv has three arguments: (mode, path, argv), where
4311 argv is a list or tuple of strings. */
Guido van Rossuma1065681999-01-25 23:20:23 +00004312
Victor Stinner8c62be82010-05-06 00:08:46 +00004313 if (!PyArg_ParseTuple(args, "iO&O:spawnv", &mode,
4314 PyUnicode_FSConverter,
4315 &opath, &argv))
4316 return NULL;
4317 path = PyBytes_AsString(opath);
4318 if (PyList_Check(argv)) {
4319 argc = PyList_Size(argv);
4320 getitem = PyList_GetItem;
4321 }
4322 else if (PyTuple_Check(argv)) {
4323 argc = PyTuple_Size(argv);
4324 getitem = PyTuple_GetItem;
4325 }
4326 else {
4327 PyErr_SetString(PyExc_TypeError,
4328 "spawnv() arg 2 must be a tuple or list");
4329 Py_DECREF(opath);
4330 return NULL;
4331 }
Guido van Rossuma1065681999-01-25 23:20:23 +00004332
Victor Stinner8c62be82010-05-06 00:08:46 +00004333 argvlist = PyMem_NEW(char *, argc+1);
4334 if (argvlist == NULL) {
4335 Py_DECREF(opath);
4336 return PyErr_NoMemory();
4337 }
4338 for (i = 0; i < argc; i++) {
4339 if (!fsconvert_strdup((*getitem)(argv, i),
4340 &argvlist[i])) {
4341 free_string_array(argvlist, i);
4342 PyErr_SetString(
4343 PyExc_TypeError,
4344 "spawnv() arg 2 must contain only strings");
4345 Py_DECREF(opath);
4346 return NULL;
4347 }
4348 }
4349 argvlist[argc] = NULL;
Guido van Rossuma1065681999-01-25 23:20:23 +00004350
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004351#if defined(PYOS_OS2) && defined(PYCC_GCC)
Victor Stinner8c62be82010-05-06 00:08:46 +00004352 Py_BEGIN_ALLOW_THREADS
4353 spawnval = spawnv(mode, path, argvlist);
4354 Py_END_ALLOW_THREADS
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004355#else
Victor Stinner8c62be82010-05-06 00:08:46 +00004356 if (mode == _OLD_P_OVERLAY)
4357 mode = _P_OVERLAY;
Tim Peters5aa91602002-01-30 05:46:57 +00004358
Victor Stinner8c62be82010-05-06 00:08:46 +00004359 Py_BEGIN_ALLOW_THREADS
4360 spawnval = _spawnv(mode, path, argvlist);
4361 Py_END_ALLOW_THREADS
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004362#endif
Tim Peters5aa91602002-01-30 05:46:57 +00004363
Victor Stinner8c62be82010-05-06 00:08:46 +00004364 free_string_array(argvlist, argc);
4365 Py_DECREF(opath);
Guido van Rossuma1065681999-01-25 23:20:23 +00004366
Victor Stinner8c62be82010-05-06 00:08:46 +00004367 if (spawnval == -1)
4368 return posix_error();
4369 else
Fredrik Lundhe25cfd82000-07-09 13:10:40 +00004370#if SIZEOF_LONG == SIZEOF_VOID_P
Victor Stinner8c62be82010-05-06 00:08:46 +00004371 return Py_BuildValue("l", (long) spawnval);
Fred Drake699f3522000-06-29 21:12:41 +00004372#else
Victor Stinner8c62be82010-05-06 00:08:46 +00004373 return Py_BuildValue("L", (PY_LONG_LONG) spawnval);
Fred Drake699f3522000-06-29 21:12:41 +00004374#endif
Guido van Rossuma1065681999-01-25 23:20:23 +00004375}
4376
4377
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004378PyDoc_STRVAR(posix_spawnve__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00004379"spawnve(mode, path, args, env)\n\n\
Tim Peters25059d32001-12-07 20:35:43 +00004380Execute the program 'path' in a new process.\n\
Guido van Rossuma1065681999-01-25 23:20:23 +00004381\n\
Victor Stinner8c62be82010-05-06 00:08:46 +00004382 mode: mode of process creation\n\
4383 path: path of executable file\n\
4384 args: tuple or list of arguments\n\
4385 env: dictionary of strings mapping to strings");
Guido van Rossuma1065681999-01-25 23:20:23 +00004386
4387static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00004388posix_spawnve(PyObject *self, PyObject *args)
Guido van Rossuma1065681999-01-25 23:20:23 +00004389{
Victor Stinner8c62be82010-05-06 00:08:46 +00004390 PyObject *opath;
4391 char *path;
4392 PyObject *argv, *env;
4393 char **argvlist;
4394 char **envlist;
4395 PyObject *res = NULL;
Antoine Pitrou22e41552010-08-15 18:07:50 +00004396 int mode;
4397 Py_ssize_t argc, i, envc;
Victor Stinner8c62be82010-05-06 00:08:46 +00004398 Py_intptr_t spawnval;
4399 PyObject *(*getitem)(PyObject *, Py_ssize_t);
4400 Py_ssize_t lastarg = 0;
Guido van Rossuma1065681999-01-25 23:20:23 +00004401
Victor Stinner8c62be82010-05-06 00:08:46 +00004402 /* spawnve has four arguments: (mode, path, argv, env), where
4403 argv is a list or tuple of strings and env is a dictionary
4404 like posix.environ. */
Guido van Rossuma1065681999-01-25 23:20:23 +00004405
Victor Stinner8c62be82010-05-06 00:08:46 +00004406 if (!PyArg_ParseTuple(args, "iO&OO:spawnve", &mode,
4407 PyUnicode_FSConverter,
4408 &opath, &argv, &env))
4409 return NULL;
4410 path = PyBytes_AsString(opath);
4411 if (PyList_Check(argv)) {
4412 argc = PyList_Size(argv);
4413 getitem = PyList_GetItem;
4414 }
4415 else if (PyTuple_Check(argv)) {
4416 argc = PyTuple_Size(argv);
4417 getitem = PyTuple_GetItem;
4418 }
4419 else {
4420 PyErr_SetString(PyExc_TypeError,
4421 "spawnve() arg 2 must be a tuple or list");
4422 goto fail_0;
4423 }
4424 if (!PyMapping_Check(env)) {
4425 PyErr_SetString(PyExc_TypeError,
4426 "spawnve() arg 3 must be a mapping object");
4427 goto fail_0;
4428 }
Guido van Rossuma1065681999-01-25 23:20:23 +00004429
Victor Stinner8c62be82010-05-06 00:08:46 +00004430 argvlist = PyMem_NEW(char *, argc+1);
4431 if (argvlist == NULL) {
4432 PyErr_NoMemory();
4433 goto fail_0;
4434 }
4435 for (i = 0; i < argc; i++) {
4436 if (!fsconvert_strdup((*getitem)(argv, i),
4437 &argvlist[i]))
4438 {
4439 lastarg = i;
4440 goto fail_1;
4441 }
4442 }
4443 lastarg = argc;
4444 argvlist[argc] = NULL;
Guido van Rossuma1065681999-01-25 23:20:23 +00004445
Victor Stinner8c62be82010-05-06 00:08:46 +00004446 envlist = parse_envlist(env, &envc);
4447 if (envlist == NULL)
4448 goto fail_1;
Guido van Rossuma1065681999-01-25 23:20:23 +00004449
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004450#if defined(PYOS_OS2) && defined(PYCC_GCC)
Victor Stinner8c62be82010-05-06 00:08:46 +00004451 Py_BEGIN_ALLOW_THREADS
4452 spawnval = spawnve(mode, path, argvlist, envlist);
4453 Py_END_ALLOW_THREADS
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004454#else
Victor Stinner8c62be82010-05-06 00:08:46 +00004455 if (mode == _OLD_P_OVERLAY)
4456 mode = _P_OVERLAY;
Tim Peters25059d32001-12-07 20:35:43 +00004457
Victor Stinner8c62be82010-05-06 00:08:46 +00004458 Py_BEGIN_ALLOW_THREADS
4459 spawnval = _spawnve(mode, path, argvlist, envlist);
4460 Py_END_ALLOW_THREADS
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00004461#endif
Tim Peters25059d32001-12-07 20:35:43 +00004462
Victor Stinner8c62be82010-05-06 00:08:46 +00004463 if (spawnval == -1)
4464 (void) posix_error();
4465 else
Fredrik Lundhe25cfd82000-07-09 13:10:40 +00004466#if SIZEOF_LONG == SIZEOF_VOID_P
Victor Stinner8c62be82010-05-06 00:08:46 +00004467 res = Py_BuildValue("l", (long) spawnval);
Fred Drake699f3522000-06-29 21:12:41 +00004468#else
Victor Stinner8c62be82010-05-06 00:08:46 +00004469 res = Py_BuildValue("L", (PY_LONG_LONG) spawnval);
Fred Drake699f3522000-06-29 21:12:41 +00004470#endif
Guido van Rossuma1065681999-01-25 23:20:23 +00004471
Victor Stinner8c62be82010-05-06 00:08:46 +00004472 while (--envc >= 0)
4473 PyMem_DEL(envlist[envc]);
4474 PyMem_DEL(envlist);
Guido van Rossum0847c5c2002-12-13 18:36:22 +00004475 fail_1:
Victor Stinner8c62be82010-05-06 00:08:46 +00004476 free_string_array(argvlist, lastarg);
Martin v. Löwis114619e2002-10-07 06:44:21 +00004477 fail_0:
Victor Stinner8c62be82010-05-06 00:08:46 +00004478 Py_DECREF(opath);
4479 return res;
Guido van Rossuma1065681999-01-25 23:20:23 +00004480}
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00004481
4482/* OS/2 supports spawnvp & spawnvpe natively */
4483#if defined(PYOS_OS2)
4484PyDoc_STRVAR(posix_spawnvp__doc__,
4485"spawnvp(mode, file, args)\n\n\
4486Execute the program 'file' in a new process, using the environment\n\
4487search path to find the file.\n\
4488\n\
Victor Stinner8c62be82010-05-06 00:08:46 +00004489 mode: mode of process creation\n\
4490 file: executable file name\n\
4491 args: tuple or list of strings");
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00004492
4493static PyObject *
4494posix_spawnvp(PyObject *self, PyObject *args)
4495{
Victor Stinner8c62be82010-05-06 00:08:46 +00004496 PyObject *opath;
4497 char *path;
4498 PyObject *argv;
4499 char **argvlist;
4500 int mode, i, argc;
4501 Py_intptr_t spawnval;
4502 PyObject *(*getitem)(PyObject *, Py_ssize_t);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00004503
Victor Stinner8c62be82010-05-06 00:08:46 +00004504 /* spawnvp has three arguments: (mode, path, argv), where
4505 argv is a list or tuple of strings. */
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00004506
Victor Stinner8c62be82010-05-06 00:08:46 +00004507 if (!PyArg_ParseTuple(args, "iO&O:spawnvp", &mode,
4508 PyUnicode_FSConverter,
4509 &opath, &argv))
4510 return NULL;
4511 path = PyBytes_AsString(opath);
4512 if (PyList_Check(argv)) {
4513 argc = PyList_Size(argv);
4514 getitem = PyList_GetItem;
4515 }
4516 else if (PyTuple_Check(argv)) {
4517 argc = PyTuple_Size(argv);
4518 getitem = PyTuple_GetItem;
4519 }
4520 else {
4521 PyErr_SetString(PyExc_TypeError,
4522 "spawnvp() arg 2 must be a tuple or list");
4523 Py_DECREF(opath);
4524 return NULL;
4525 }
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00004526
Victor Stinner8c62be82010-05-06 00:08:46 +00004527 argvlist = PyMem_NEW(char *, argc+1);
4528 if (argvlist == NULL) {
4529 Py_DECREF(opath);
4530 return PyErr_NoMemory();
4531 }
4532 for (i = 0; i < argc; i++) {
4533 if (!fsconvert_strdup((*getitem)(argv, i),
4534 &argvlist[i])) {
4535 free_string_array(argvlist, i);
4536 PyErr_SetString(
4537 PyExc_TypeError,
4538 "spawnvp() arg 2 must contain only strings");
4539 Py_DECREF(opath);
4540 return NULL;
4541 }
4542 }
4543 argvlist[argc] = NULL;
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00004544
Victor Stinner8c62be82010-05-06 00:08:46 +00004545 Py_BEGIN_ALLOW_THREADS
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00004546#if defined(PYCC_GCC)
Victor Stinner8c62be82010-05-06 00:08:46 +00004547 spawnval = spawnvp(mode, path, argvlist);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00004548#else
Victor Stinner8c62be82010-05-06 00:08:46 +00004549 spawnval = _spawnvp(mode, path, argvlist);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00004550#endif
Victor Stinner8c62be82010-05-06 00:08:46 +00004551 Py_END_ALLOW_THREADS
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00004552
Victor Stinner8c62be82010-05-06 00:08:46 +00004553 free_string_array(argvlist, argc);
4554 Py_DECREF(opath);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00004555
Victor Stinner8c62be82010-05-06 00:08:46 +00004556 if (spawnval == -1)
4557 return posix_error();
4558 else
4559 return Py_BuildValue("l", (long) spawnval);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00004560}
4561
4562
4563PyDoc_STRVAR(posix_spawnvpe__doc__,
4564"spawnvpe(mode, file, args, env)\n\n\
4565Execute the program 'file' in a new process, using the environment\n\
4566search path to find the file.\n\
4567\n\
Victor Stinner8c62be82010-05-06 00:08:46 +00004568 mode: mode of process creation\n\
4569 file: executable file name\n\
4570 args: tuple or list of arguments\n\
4571 env: dictionary of strings mapping to strings");
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00004572
4573static PyObject *
4574posix_spawnvpe(PyObject *self, PyObject *args)
4575{
Ross Lagerwalldcfde5a2011-11-04 07:09:14 +02004576 PyObject *opath;
Victor Stinner8c62be82010-05-06 00:08:46 +00004577 char *path;
4578 PyObject *argv, *env;
4579 char **argvlist;
4580 char **envlist;
4581 PyObject *res=NULL;
Antoine Pitrou22e41552010-08-15 18:07:50 +00004582 int mode;
4583 Py_ssize_t argc, i, envc;
Victor Stinner8c62be82010-05-06 00:08:46 +00004584 Py_intptr_t spawnval;
4585 PyObject *(*getitem)(PyObject *, Py_ssize_t);
4586 int lastarg = 0;
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00004587
Victor Stinner8c62be82010-05-06 00:08:46 +00004588 /* spawnvpe has four arguments: (mode, path, argv, env), where
4589 argv is a list or tuple of strings and env is a dictionary
4590 like posix.environ. */
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00004591
Victor Stinner8c62be82010-05-06 00:08:46 +00004592 if (!PyArg_ParseTuple(args, "ietOO:spawnvpe", &mode,
4593 PyUnicode_FSConverter,
4594 &opath, &argv, &env))
4595 return NULL;
4596 path = PyBytes_AsString(opath);
4597 if (PyList_Check(argv)) {
4598 argc = PyList_Size(argv);
4599 getitem = PyList_GetItem;
4600 }
4601 else if (PyTuple_Check(argv)) {
4602 argc = PyTuple_Size(argv);
4603 getitem = PyTuple_GetItem;
4604 }
4605 else {
4606 PyErr_SetString(PyExc_TypeError,
4607 "spawnvpe() arg 2 must be a tuple or list");
4608 goto fail_0;
4609 }
4610 if (!PyMapping_Check(env)) {
4611 PyErr_SetString(PyExc_TypeError,
4612 "spawnvpe() arg 3 must be a mapping object");
4613 goto fail_0;
4614 }
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00004615
Victor Stinner8c62be82010-05-06 00:08:46 +00004616 argvlist = PyMem_NEW(char *, argc+1);
4617 if (argvlist == NULL) {
4618 PyErr_NoMemory();
4619 goto fail_0;
4620 }
4621 for (i = 0; i < argc; i++) {
4622 if (!fsconvert_strdup((*getitem)(argv, i),
4623 &argvlist[i]))
4624 {
4625 lastarg = i;
4626 goto fail_1;
4627 }
4628 }
4629 lastarg = argc;
4630 argvlist[argc] = NULL;
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00004631
Victor Stinner8c62be82010-05-06 00:08:46 +00004632 envlist = parse_envlist(env, &envc);
4633 if (envlist == NULL)
4634 goto fail_1;
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00004635
Victor Stinner8c62be82010-05-06 00:08:46 +00004636 Py_BEGIN_ALLOW_THREADS
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00004637#if defined(PYCC_GCC)
Victor Stinner8c62be82010-05-06 00:08:46 +00004638 spawnval = spawnvpe(mode, path, argvlist, envlist);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00004639#else
Victor Stinner8c62be82010-05-06 00:08:46 +00004640 spawnval = _spawnvpe(mode, path, argvlist, envlist);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00004641#endif
Victor Stinner8c62be82010-05-06 00:08:46 +00004642 Py_END_ALLOW_THREADS
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00004643
Victor Stinner8c62be82010-05-06 00:08:46 +00004644 if (spawnval == -1)
4645 (void) posix_error();
4646 else
4647 res = Py_BuildValue("l", (long) spawnval);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00004648
Victor Stinner8c62be82010-05-06 00:08:46 +00004649 while (--envc >= 0)
4650 PyMem_DEL(envlist[envc]);
4651 PyMem_DEL(envlist);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00004652 fail_1:
Victor Stinner8c62be82010-05-06 00:08:46 +00004653 free_string_array(argvlist, lastarg);
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00004654 fail_0:
Victor Stinner8c62be82010-05-06 00:08:46 +00004655 Py_DECREF(opath);
4656 return res;
Andrew MacIntyre69e18c92004-04-04 07:11:43 +00004657}
4658#endif /* PYOS_OS2 */
Guido van Rossuma1065681999-01-25 23:20:23 +00004659#endif /* HAVE_SPAWNV */
4660
4661
Guido van Rossum2242f2f2001-04-11 20:58:20 +00004662#ifdef HAVE_FORK1
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004663PyDoc_STRVAR(posix_fork1__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00004664"fork1() -> pid\n\n\
Guido van Rossum2242f2f2001-04-11 20:58:20 +00004665Fork a child process with a single multiplexed (i.e., not bound) thread.\n\
4666\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004667Return 0 to child process and PID of child to parent process.");
Guido van Rossum2242f2f2001-04-11 20:58:20 +00004668
4669static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00004670posix_fork1(PyObject *self, PyObject *noargs)
Guido van Rossum2242f2f2001-04-11 20:58:20 +00004671{
Victor Stinner8c62be82010-05-06 00:08:46 +00004672 pid_t pid;
4673 int result = 0;
4674 _PyImport_AcquireLock();
4675 pid = fork1();
4676 if (pid == 0) {
4677 /* child: this clobbers and resets the import lock. */
4678 PyOS_AfterFork();
4679 } else {
4680 /* parent: release the import lock. */
4681 result = _PyImport_ReleaseLock();
4682 }
4683 if (pid == -1)
4684 return posix_error();
4685 if (result < 0) {
4686 /* Don't clobber the OSError if the fork failed. */
4687 PyErr_SetString(PyExc_RuntimeError,
4688 "not holding the import lock");
4689 return NULL;
4690 }
4691 return PyLong_FromPid(pid);
Guido van Rossum2242f2f2001-04-11 20:58:20 +00004692}
4693#endif
4694
4695
Guido van Rossumad0ee831995-03-01 10:34:45 +00004696#ifdef HAVE_FORK
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004697PyDoc_STRVAR(posix_fork__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00004698"fork() -> pid\n\n\
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004699Fork a child process.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00004700Return 0 to child process and PID of child to parent process.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00004701
Barry Warsaw53699e91996-12-10 23:23:01 +00004702static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00004703posix_fork(PyObject *self, PyObject *noargs)
Guido van Rossum85e3b011991-06-03 12:42:10 +00004704{
Victor Stinner8c62be82010-05-06 00:08:46 +00004705 pid_t pid;
4706 int result = 0;
4707 _PyImport_AcquireLock();
4708 pid = fork();
4709 if (pid == 0) {
4710 /* child: this clobbers and resets the import lock. */
4711 PyOS_AfterFork();
4712 } else {
4713 /* parent: release the import lock. */
4714 result = _PyImport_ReleaseLock();
4715 }
4716 if (pid == -1)
4717 return posix_error();
4718 if (result < 0) {
4719 /* Don't clobber the OSError if the fork failed. */
4720 PyErr_SetString(PyExc_RuntimeError,
4721 "not holding the import lock");
4722 return NULL;
4723 }
4724 return PyLong_FromPid(pid);
Guido van Rossum85e3b011991-06-03 12:42:10 +00004725}
Guido van Rossumad0ee831995-03-01 10:34:45 +00004726#endif
Guido van Rossum85e3b011991-06-03 12:42:10 +00004727
Benjamin Peterson94b580d2011-08-02 17:30:04 -05004728#ifdef HAVE_SCHED_H
4729
Charles-François Nataliea0d5fc2011-09-06 19:03:35 +02004730#ifdef HAVE_SCHED_GET_PRIORITY_MAX
4731
Benjamin Peterson94b580d2011-08-02 17:30:04 -05004732PyDoc_STRVAR(posix_sched_get_priority_max__doc__,
4733"sched_get_priority_max(policy)\n\n\
4734Get the maximum scheduling priority for *policy*.");
4735
4736static PyObject *
4737posix_sched_get_priority_max(PyObject *self, PyObject *args)
4738{
4739 int policy, max;
4740
4741 if (!PyArg_ParseTuple(args, "i:sched_get_priority_max", &policy))
4742 return NULL;
4743 max = sched_get_priority_max(policy);
4744 if (max < 0)
4745 return posix_error();
4746 return PyLong_FromLong(max);
4747}
4748
4749PyDoc_STRVAR(posix_sched_get_priority_min__doc__,
4750"sched_get_priority_min(policy)\n\n\
4751Get the minimum scheduling priority for *policy*.");
4752
4753static PyObject *
4754posix_sched_get_priority_min(PyObject *self, PyObject *args)
4755{
4756 int policy, min;
4757
4758 if (!PyArg_ParseTuple(args, "i:sched_get_priority_min", &policy))
4759 return NULL;
4760 min = sched_get_priority_min(policy);
4761 if (min < 0)
4762 return posix_error();
4763 return PyLong_FromLong(min);
4764}
4765
Charles-François Nataliea0d5fc2011-09-06 19:03:35 +02004766#endif /* HAVE_SCHED_GET_PRIORITY_MAX */
4767
Benjamin Petersonc5fce4d2011-08-02 18:07:32 -05004768#ifdef HAVE_SCHED_SETSCHEDULER
4769
Benjamin Peterson94b580d2011-08-02 17:30:04 -05004770PyDoc_STRVAR(posix_sched_getscheduler__doc__,
4771"sched_getscheduler(pid)\n\n\
4772Get the scheduling policy for the process with a PID of *pid*.\n\
4773Passing a PID of 0 returns the scheduling policy for the calling process.");
4774
4775static PyObject *
4776posix_sched_getscheduler(PyObject *self, PyObject *args)
4777{
4778 pid_t pid;
4779 int policy;
4780
4781 if (!PyArg_ParseTuple(args, _Py_PARSE_PID ":sched_getscheduler", &pid))
4782 return NULL;
4783 policy = sched_getscheduler(pid);
4784 if (policy < 0)
4785 return posix_error();
4786 return PyLong_FromLong(policy);
4787}
4788
Benjamin Petersonc5fce4d2011-08-02 18:07:32 -05004789#endif
4790
4791#if defined(HAVE_SCHED_SETSCHEDULER) || defined(HAVE_SCHED_SETPARAM)
4792
Benjamin Peterson94b580d2011-08-02 17:30:04 -05004793static PyObject *
4794sched_param_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)
4795{
4796 PyObject *res, *priority;
Benjamin Peterson4e36d5a2011-08-02 19:56:11 -05004797 static char *kwlist[] = {"sched_priority", NULL};
Benjamin Peterson94b580d2011-08-02 17:30:04 -05004798
4799 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O:sched_param", kwlist, &priority))
4800 return NULL;
4801 res = PyStructSequence_New(type);
4802 if (!res)
4803 return NULL;
4804 Py_INCREF(priority);
4805 PyStructSequence_SET_ITEM(res, 0, priority);
4806 return res;
4807}
4808
4809PyDoc_STRVAR(sched_param__doc__,
4810"sched_param(sched_priority): A scheduling parameter.\n\n\
4811Current has only one field: sched_priority");
4812
4813static PyStructSequence_Field sched_param_fields[] = {
4814 {"sched_priority", "the scheduling priority"},
4815 {0}
4816};
4817
4818static PyStructSequence_Desc sched_param_desc = {
4819 "sched_param", /* name */
4820 sched_param__doc__, /* doc */
4821 sched_param_fields,
4822 1
4823};
4824
4825static int
4826convert_sched_param(PyObject *param, struct sched_param *res)
4827{
4828 long priority;
4829
4830 if (Py_TYPE(param) != &SchedParamType) {
4831 PyErr_SetString(PyExc_TypeError, "must have a sched_param object");
4832 return 0;
4833 }
4834 priority = PyLong_AsLong(PyStructSequence_GET_ITEM(param, 0));
4835 if (priority == -1 && PyErr_Occurred())
4836 return 0;
4837 if (priority > INT_MAX || priority < INT_MIN) {
4838 PyErr_SetString(PyExc_OverflowError, "sched_priority out of range");
4839 return 0;
4840 }
4841 res->sched_priority = Py_SAFE_DOWNCAST(priority, long, int);
4842 return 1;
4843}
4844
Benjamin Petersonc5fce4d2011-08-02 18:07:32 -05004845#endif
4846
4847#ifdef HAVE_SCHED_SETSCHEDULER
4848
Benjamin Peterson94b580d2011-08-02 17:30:04 -05004849PyDoc_STRVAR(posix_sched_setscheduler__doc__,
4850"sched_setscheduler(pid, policy, param)\n\n\
4851Set the scheduling policy, *policy*, for *pid*.\n\
4852If *pid* is 0, the calling process is changed.\n\
4853*param* is an instance of sched_param.");
4854
4855static PyObject *
4856posix_sched_setscheduler(PyObject *self, PyObject *args)
4857{
4858 pid_t pid;
4859 int policy;
4860 struct sched_param param;
4861
4862 if (!PyArg_ParseTuple(args, _Py_PARSE_PID "iO&:sched_setscheduler",
4863 &pid, &policy, &convert_sched_param, &param))
4864 return NULL;
Jesus Cea9c822272011-09-10 01:40:52 +02004865
4866 /*
Jesus Cea54b01492011-09-10 01:53:19 +02004867 ** sched_setscheduler() returns 0 in Linux, but the previous
4868 ** scheduling policy under Solaris/Illumos, and others.
4869 ** On error, -1 is returned in all Operating Systems.
Jesus Cea9c822272011-09-10 01:40:52 +02004870 */
4871 if (sched_setscheduler(pid, policy, &param) == -1)
Benjamin Peterson94b580d2011-08-02 17:30:04 -05004872 return posix_error();
4873 Py_RETURN_NONE;
4874}
4875
Benjamin Petersonc5fce4d2011-08-02 18:07:32 -05004876#endif
4877
4878#ifdef HAVE_SCHED_SETPARAM
4879
Benjamin Peterson94b580d2011-08-02 17:30:04 -05004880PyDoc_STRVAR(posix_sched_getparam__doc__,
4881"sched_getparam(pid) -> sched_param\n\n\
4882Returns scheduling parameters for the process with *pid* as an instance of the\n\
4883sched_param class. A PID of 0 means the calling process.");
4884
4885static PyObject *
4886posix_sched_getparam(PyObject *self, PyObject *args)
4887{
4888 pid_t pid;
4889 struct sched_param param;
4890 PyObject *res, *priority;
4891
4892 if (!PyArg_ParseTuple(args, _Py_PARSE_PID ":sched_getparam", &pid))
4893 return NULL;
4894 if (sched_getparam(pid, &param))
4895 return posix_error();
4896 res = PyStructSequence_New(&SchedParamType);
4897 if (!res)
4898 return NULL;
4899 priority = PyLong_FromLong(param.sched_priority);
4900 if (!priority) {
4901 Py_DECREF(res);
4902 return NULL;
4903 }
4904 PyStructSequence_SET_ITEM(res, 0, priority);
4905 return res;
4906}
4907
4908PyDoc_STRVAR(posix_sched_setparam__doc__,
4909"sched_setparam(pid, param)\n\n\
4910Set scheduling parameters for a process with PID *pid*.\n\
4911A PID of 0 means the calling process.");
4912
4913static PyObject *
4914posix_sched_setparam(PyObject *self, PyObject *args)
4915{
4916 pid_t pid;
4917 struct sched_param param;
4918
4919 if (!PyArg_ParseTuple(args, _Py_PARSE_PID "O&:sched_setparam",
4920 &pid, &convert_sched_param, &param))
4921 return NULL;
4922 if (sched_setparam(pid, &param))
4923 return posix_error();
4924 Py_RETURN_NONE;
4925}
4926
Benjamin Petersonc5fce4d2011-08-02 18:07:32 -05004927#endif
4928
4929#ifdef HAVE_SCHED_RR_GET_INTERVAL
4930
Benjamin Peterson94b580d2011-08-02 17:30:04 -05004931PyDoc_STRVAR(posix_sched_rr_get_interval__doc__,
4932"sched_rr_get_interval(pid) -> float\n\n\
4933Return the round-robin quantum for the process with PID *pid* in seconds.");
4934
4935static PyObject *
4936posix_sched_rr_get_interval(PyObject *self, PyObject *args)
4937{
4938 pid_t pid;
4939 struct timespec interval;
4940
4941 if (!PyArg_ParseTuple(args, _Py_PARSE_PID ":sched_rr_get_interval", &pid))
4942 return NULL;
4943 if (sched_rr_get_interval(pid, &interval))
4944 return posix_error();
4945 return PyFloat_FromDouble((double)interval.tv_sec + 1e-9*interval.tv_nsec);
4946}
4947
Benjamin Petersonc5fce4d2011-08-02 18:07:32 -05004948#endif
4949
Benjamin Peterson94b580d2011-08-02 17:30:04 -05004950PyDoc_STRVAR(posix_sched_yield__doc__,
4951"sched_yield()\n\n\
4952Voluntarily relinquish the CPU.");
4953
4954static PyObject *
4955posix_sched_yield(PyObject *self, PyObject *noargs)
4956{
4957 if (sched_yield())
4958 return posix_error();
4959 Py_RETURN_NONE;
4960}
4961
Benjamin Peterson2740af82011-08-02 17:41:34 -05004962#ifdef HAVE_SCHED_SETAFFINITY
4963
Benjamin Peterson94b580d2011-08-02 17:30:04 -05004964typedef struct {
4965 PyObject_HEAD;
4966 Py_ssize_t size;
4967 int ncpus;
4968 cpu_set_t *set;
4969} Py_cpu_set;
4970
4971static PyTypeObject cpu_set_type;
4972
4973static void
4974cpu_set_dealloc(Py_cpu_set *set)
4975{
4976 assert(set->set);
4977 CPU_FREE(set->set);
4978 Py_TYPE(set)->tp_free(set);
4979}
4980
4981static Py_cpu_set *
4982make_new_cpu_set(PyTypeObject *type, Py_ssize_t size)
4983{
4984 Py_cpu_set *set;
4985
4986 if (size < 0) {
4987 PyErr_SetString(PyExc_ValueError, "negative size");
4988 return NULL;
4989 }
4990 set = (Py_cpu_set *)type->tp_alloc(type, 0);
4991 if (!set)
4992 return NULL;
4993 set->ncpus = size;
4994 set->size = CPU_ALLOC_SIZE(size);
4995 set->set = CPU_ALLOC(size);
4996 if (!set->set) {
4997 type->tp_free(set);
4998 PyErr_NoMemory();
4999 return NULL;
5000 }
5001 CPU_ZERO_S(set->size, set->set);
5002 return set;
5003}
5004
5005static PyObject *
5006cpu_set_new(PyTypeObject *type, PyObject *args, PyObject *kwargs)
5007{
5008 int size;
5009
5010 if (!_PyArg_NoKeywords("cpu_set()", kwargs) ||
5011 !PyArg_ParseTuple(args, "i:cpu_set", &size))
5012 return NULL;
5013 return (PyObject *)make_new_cpu_set(type, size);
5014}
5015
5016static PyObject *
5017cpu_set_repr(Py_cpu_set *set)
5018{
5019 return PyUnicode_FromFormat("<cpu_set with %li entries>", set->ncpus);
Victor Stinner63941882011-09-29 00:42:28 +02005020}
Benjamin Peterson94b580d2011-08-02 17:30:04 -05005021
5022static Py_ssize_t
5023cpu_set_len(Py_cpu_set *set)
5024{
5025 return set->ncpus;
5026}
5027
5028static int
5029_get_cpu(Py_cpu_set *set, const char *requester, PyObject *args)
5030{
5031 int cpu;
5032 if (!PyArg_ParseTuple(args, requester, &cpu))
5033 return -1;
5034 if (cpu < 0) {
5035 PyErr_SetString(PyExc_ValueError, "cpu < 0 not valid");
5036 return -1;
5037 }
5038 if (cpu >= set->ncpus) {
5039 PyErr_SetString(PyExc_ValueError, "cpu too large for set");
5040 return -1;
5041 }
5042 return cpu;
5043}
5044
5045PyDoc_STRVAR(cpu_set_set_doc,
5046"cpu_set.set(i)\n\n\
5047Add CPU *i* to the set.");
5048
5049static PyObject *
5050cpu_set_set(Py_cpu_set *set, PyObject *args)
5051{
5052 int cpu = _get_cpu(set, "i|set", args);
5053 if (cpu == -1)
5054 return NULL;
5055 CPU_SET_S(cpu, set->size, set->set);
5056 Py_RETURN_NONE;
5057}
5058
5059PyDoc_STRVAR(cpu_set_count_doc,
5060"cpu_set.count() -> int\n\n\
5061Return the number of CPUs active in the set.");
5062
5063static PyObject *
5064cpu_set_count(Py_cpu_set *set, PyObject *noargs)
5065{
5066 return PyLong_FromLong(CPU_COUNT_S(set->size, set->set));
5067}
5068
5069PyDoc_STRVAR(cpu_set_clear_doc,
5070"cpu_set.clear(i)\n\n\
5071Remove CPU *i* from the set.");
5072
5073static PyObject *
5074cpu_set_clear(Py_cpu_set *set, PyObject *args)
5075{
5076 int cpu = _get_cpu(set, "i|clear", args);
5077 if (cpu == -1)
5078 return NULL;
5079 CPU_CLR_S(cpu, set->size, set->set);
5080 Py_RETURN_NONE;
5081}
5082
5083PyDoc_STRVAR(cpu_set_isset_doc,
5084"cpu_set.isset(i) -> bool\n\n\
5085Test if CPU *i* is in the set.");
5086
5087static PyObject *
5088cpu_set_isset(Py_cpu_set *set, PyObject *args)
5089{
5090 int cpu = _get_cpu(set, "i|isset", args);
5091 if (cpu == -1)
5092 return NULL;
5093 if (CPU_ISSET_S(cpu, set->size, set->set))
5094 Py_RETURN_TRUE;
5095 Py_RETURN_FALSE;
5096}
5097
5098PyDoc_STRVAR(cpu_set_zero_doc,
5099"cpu_set.zero()\n\n\
5100Clear the cpu_set.");
5101
5102static PyObject *
5103cpu_set_zero(Py_cpu_set *set, PyObject *noargs)
5104{
5105 CPU_ZERO_S(set->size, set->set);
5106 Py_RETURN_NONE;
5107}
5108
5109static PyObject *
5110cpu_set_richcompare(Py_cpu_set *set, Py_cpu_set *other, int op)
5111{
5112 int eq;
5113
Brian Curtindfc80e32011-08-10 20:28:54 -05005114 if ((op != Py_EQ && op != Py_NE) || Py_TYPE(other) != &cpu_set_type)
5115 Py_RETURN_NOTIMPLEMENTED;
5116
Benjamin Peterson94b580d2011-08-02 17:30:04 -05005117 eq = set->ncpus == other->ncpus && CPU_EQUAL_S(set->size, set->set, other->set);
5118 if ((op == Py_EQ) ? eq : !eq)
5119 Py_RETURN_TRUE;
5120 else
5121 Py_RETURN_FALSE;
5122}
5123
5124#define CPU_SET_BINOP(name, op) \
5125 static PyObject * \
5126 do_cpu_set_##name(Py_cpu_set *left, Py_cpu_set *right, Py_cpu_set *res) { \
5127 if (res) { \
5128 Py_INCREF(res); \
5129 } \
5130 else { \
Benjamin Petersone870fe62011-08-02 17:44:26 -05005131 res = make_new_cpu_set(&cpu_set_type, left->ncpus); \
Benjamin Peterson94b580d2011-08-02 17:30:04 -05005132 if (!res) \
5133 return NULL; \
5134 } \
Benjamin Peterson9b374bf2011-08-02 18:22:30 -05005135 if (Py_TYPE(right) != &cpu_set_type || left->ncpus != right->ncpus) { \
Benjamin Peterson94b580d2011-08-02 17:30:04 -05005136 Py_DECREF(res); \
Brian Curtindfc80e32011-08-10 20:28:54 -05005137 Py_RETURN_NOTIMPLEMENTED; \
Benjamin Peterson94b580d2011-08-02 17:30:04 -05005138 } \
Benjamin Peterson8f7bdd32011-08-02 18:34:30 -05005139 assert(left->size == right->size && right->size == res->size); \
Benjamin Peterson94b580d2011-08-02 17:30:04 -05005140 op(res->size, res->set, left->set, right->set); \
5141 return (PyObject *)res; \
5142 } \
5143 static PyObject * \
5144 cpu_set_##name(Py_cpu_set *left, Py_cpu_set *right) { \
5145 return do_cpu_set_##name(left, right, NULL); \
5146 } \
5147 static PyObject * \
5148 cpu_set_i##name(Py_cpu_set *left, Py_cpu_set *right) { \
5149 return do_cpu_set_##name(left, right, left); \
5150 } \
5151
5152CPU_SET_BINOP(and, CPU_AND_S)
5153CPU_SET_BINOP(or, CPU_OR_S)
5154CPU_SET_BINOP(xor, CPU_XOR_S)
5155#undef CPU_SET_BINOP
5156
5157PyDoc_STRVAR(cpu_set_doc,
5158"cpu_set(size)\n\n\
5159Create an empty mask of CPUs.");
5160
5161static PyNumberMethods cpu_set_as_number = {
5162 0, /*nb_add*/
5163 0, /*nb_subtract*/
5164 0, /*nb_multiply*/
5165 0, /*nb_remainder*/
5166 0, /*nb_divmod*/
5167 0, /*nb_power*/
5168 0, /*nb_negative*/
5169 0, /*nb_positive*/
5170 0, /*nb_absolute*/
5171 0, /*nb_bool*/
5172 0, /*nb_invert*/
5173 0, /*nb_lshift*/
5174 0, /*nb_rshift*/
5175 (binaryfunc)cpu_set_and, /*nb_and*/
5176 (binaryfunc)cpu_set_xor, /*nb_xor*/
5177 (binaryfunc)cpu_set_or, /*nb_or*/
5178 0, /*nb_int*/
5179 0, /*nb_reserved*/
5180 0, /*nb_float*/
5181 0, /*nb_inplace_add*/
5182 0, /*nb_inplace_subtract*/
5183 0, /*nb_inplace_multiply*/
5184 0, /*nb_inplace_remainder*/
5185 0, /*nb_inplace_power*/
5186 0, /*nb_inplace_lshift*/
5187 0, /*nb_inplace_rshift*/
5188 (binaryfunc)cpu_set_iand, /*nb_inplace_and*/
5189 (binaryfunc)cpu_set_ixor, /*nb_inplace_xor*/
5190 (binaryfunc)cpu_set_ior, /*nb_inplace_or*/
5191};
5192
5193static PySequenceMethods cpu_set_as_sequence = {
5194 (lenfunc)cpu_set_len, /* sq_length */
5195};
5196
5197static PyMethodDef cpu_set_methods[] = {
5198 {"clear", (PyCFunction)cpu_set_clear, METH_VARARGS, cpu_set_clear_doc},
5199 {"count", (PyCFunction)cpu_set_count, METH_NOARGS, cpu_set_count_doc},
5200 {"isset", (PyCFunction)cpu_set_isset, METH_VARARGS, cpu_set_isset_doc},
5201 {"set", (PyCFunction)cpu_set_set, METH_VARARGS, cpu_set_set_doc},
5202 {"zero", (PyCFunction)cpu_set_zero, METH_NOARGS, cpu_set_zero_doc},
5203 {NULL, NULL} /* sentinel */
5204};
5205
5206static PyTypeObject cpu_set_type = {
5207 PyVarObject_HEAD_INIT(&PyType_Type, 0)
5208 "posix.cpu_set", /* tp_name */
5209 sizeof(Py_cpu_set), /* tp_basicsize */
5210 0, /* tp_itemsize */
5211 /* methods */
5212 (destructor)cpu_set_dealloc, /* tp_dealloc */
5213 0, /* tp_print */
5214 0, /* tp_getattr */
5215 0, /* tp_setattr */
5216 0, /* tp_reserved */
5217 (reprfunc)cpu_set_repr, /* tp_repr */
5218 &cpu_set_as_number, /* tp_as_number */
5219 &cpu_set_as_sequence, /* tp_as_sequence */
5220 0, /* tp_as_mapping */
5221 PyObject_HashNotImplemented, /* tp_hash */
5222 0, /* tp_call */
5223 0, /* tp_str */
5224 PyObject_GenericGetAttr, /* tp_getattro */
5225 0, /* tp_setattro */
5226 0, /* tp_as_buffer */
5227 Py_TPFLAGS_DEFAULT, /* tp_flags */
5228 cpu_set_doc, /* tp_doc */
5229 0, /* tp_traverse */
5230 0, /* tp_clear */
5231 (richcmpfunc)cpu_set_richcompare, /* tp_richcompare */
5232 0, /* tp_weaklistoffset */
5233 0, /* tp_iter */
5234 0, /* tp_iternext */
5235 cpu_set_methods, /* tp_methods */
5236 0, /* tp_members */
5237 0, /* tp_getset */
5238 0, /* tp_base */
5239 0, /* tp_dict */
5240 0, /* tp_descr_get */
5241 0, /* tp_descr_set */
5242 0, /* tp_dictoffset */
5243 0, /* tp_init */
5244 PyType_GenericAlloc, /* tp_alloc */
5245 cpu_set_new, /* tp_new */
5246 PyObject_Del, /* tp_free */
5247};
5248
5249PyDoc_STRVAR(posix_sched_setaffinity__doc__,
5250"sched_setaffinity(pid, cpu_set)\n\n\
5251Set the affinity of the process with PID *pid* to *cpu_set*.");
5252
5253static PyObject *
5254posix_sched_setaffinity(PyObject *self, PyObject *args)
5255{
5256 pid_t pid;
5257 Py_cpu_set *cpu_set;
5258
Benjamin Petersona17a5d62011-08-09 16:49:13 -05005259 if (!PyArg_ParseTuple(args, _Py_PARSE_PID "O!:sched_setaffinity",
Benjamin Peterson94b580d2011-08-02 17:30:04 -05005260 &pid, &cpu_set_type, &cpu_set))
5261 return NULL;
5262 if (sched_setaffinity(pid, cpu_set->size, cpu_set->set))
5263 return posix_error();
5264 Py_RETURN_NONE;
5265}
5266
5267PyDoc_STRVAR(posix_sched_getaffinity__doc__,
5268"sched_getaffinity(pid, ncpus) -> cpu_set\n\n\
5269Return the affinity of the process with PID *pid*.\n\
5270The returned cpu_set will be of size *ncpus*.");
5271
5272static PyObject *
5273posix_sched_getaffinity(PyObject *self, PyObject *args)
5274{
5275 pid_t pid;
5276 int ncpus;
5277 Py_cpu_set *res;
5278
Benjamin Peterson7ac92142011-08-03 08:54:26 -05005279 if (!PyArg_ParseTuple(args, _Py_PARSE_PID "i:sched_getaffinity",
Benjamin Peterson94b580d2011-08-02 17:30:04 -05005280 &pid, &ncpus))
5281 return NULL;
5282 res = make_new_cpu_set(&cpu_set_type, ncpus);
5283 if (!res)
5284 return NULL;
5285 if (sched_getaffinity(pid, res->size, res->set)) {
5286 Py_DECREF(res);
5287 return posix_error();
5288 }
5289 return (PyObject *)res;
5290}
5291
Benjamin Peterson2740af82011-08-02 17:41:34 -05005292#endif /* HAVE_SCHED_SETAFFINITY */
5293
Benjamin Peterson94b580d2011-08-02 17:30:04 -05005294#endif /* HAVE_SCHED_H */
5295
Neal Norwitzb59798b2003-03-21 01:43:31 +00005296/* AIX uses /dev/ptc but is otherwise the same as /dev/ptmx */
Neal Norwitz2deaddb2003-03-21 03:08:31 +00005297/* IRIX has both /dev/ptc and /dev/ptmx, use ptmx */
5298#if defined(HAVE_DEV_PTC) && !defined(HAVE_DEV_PTMX)
Neal Norwitzb59798b2003-03-21 01:43:31 +00005299#define DEV_PTY_FILE "/dev/ptc"
5300#define HAVE_DEV_PTMX
5301#else
5302#define DEV_PTY_FILE "/dev/ptmx"
5303#endif
5304
Martin v. Löwis24a880b2002-12-31 12:55:15 +00005305#if defined(HAVE_OPENPTY) || defined(HAVE_FORKPTY) || defined(HAVE_DEV_PTMX)
Fred Drake8cef4cf2000-06-28 16:40:38 +00005306#ifdef HAVE_PTY_H
5307#include <pty.h>
5308#else
5309#ifdef HAVE_LIBUTIL_H
5310#include <libutil.h>
Ronald Oussoren755740f2010-02-07 19:56:39 +00005311#else
5312#ifdef HAVE_UTIL_H
5313#include <util.h>
5314#endif /* HAVE_UTIL_H */
Fred Drake8cef4cf2000-06-28 16:40:38 +00005315#endif /* HAVE_LIBUTIL_H */
5316#endif /* HAVE_PTY_H */
Martin v. Löwis14e73b12003-01-01 09:51:12 +00005317#ifdef HAVE_STROPTS_H
5318#include <stropts.h>
Martin v. Löwis24a880b2002-12-31 12:55:15 +00005319#endif
5320#endif /* defined(HAVE_OPENPTY) || defined(HAVE_FORKPTY) || defined(HAVE_DEV_PTMX */
Fred Drake8cef4cf2000-06-28 16:40:38 +00005321
Martin v. Löwis24a880b2002-12-31 12:55:15 +00005322#if defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX)
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005323PyDoc_STRVAR(posix_openpty__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005324"openpty() -> (master_fd, slave_fd)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005325Open a pseudo-terminal, returning open fd's for both master and slave end.\n");
Fred Drake8cef4cf2000-06-28 16:40:38 +00005326
5327static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00005328posix_openpty(PyObject *self, PyObject *noargs)
Fred Drake8cef4cf2000-06-28 16:40:38 +00005329{
Victor Stinner8c62be82010-05-06 00:08:46 +00005330 int master_fd, slave_fd;
Thomas Wouters70c21a12000-07-14 14:28:33 +00005331#ifndef HAVE_OPENPTY
Victor Stinner8c62be82010-05-06 00:08:46 +00005332 char * slave_name;
Thomas Wouters70c21a12000-07-14 14:28:33 +00005333#endif
Martin v. Löwis24a880b2002-12-31 12:55:15 +00005334#if defined(HAVE_DEV_PTMX) && !defined(HAVE_OPENPTY) && !defined(HAVE__GETPTY)
Victor Stinner8c62be82010-05-06 00:08:46 +00005335 PyOS_sighandler_t sig_saved;
Martin v. Löwis24a880b2002-12-31 12:55:15 +00005336#ifdef sun
Victor Stinner8c62be82010-05-06 00:08:46 +00005337 extern char *ptsname(int fildes);
Martin v. Löwis24a880b2002-12-31 12:55:15 +00005338#endif
5339#endif
Thomas Wouters70c21a12000-07-14 14:28:33 +00005340
Thomas Wouters70c21a12000-07-14 14:28:33 +00005341#ifdef HAVE_OPENPTY
Victor Stinner8c62be82010-05-06 00:08:46 +00005342 if (openpty(&master_fd, &slave_fd, NULL, NULL, NULL) != 0)
5343 return posix_error();
Neal Norwitzb59798b2003-03-21 01:43:31 +00005344#elif defined(HAVE__GETPTY)
Victor Stinner8c62be82010-05-06 00:08:46 +00005345 slave_name = _getpty(&master_fd, O_RDWR, 0666, 0);
5346 if (slave_name == NULL)
5347 return posix_error();
Thomas Wouters70c21a12000-07-14 14:28:33 +00005348
Victor Stinner8c62be82010-05-06 00:08:46 +00005349 slave_fd = open(slave_name, O_RDWR);
5350 if (slave_fd < 0)
5351 return posix_error();
Martin v. Löwis24a880b2002-12-31 12:55:15 +00005352#else
Victor Stinner8c62be82010-05-06 00:08:46 +00005353 master_fd = open(DEV_PTY_FILE, O_RDWR | O_NOCTTY); /* open master */
5354 if (master_fd < 0)
5355 return posix_error();
5356 sig_saved = PyOS_setsig(SIGCHLD, SIG_DFL);
5357 /* change permission of slave */
5358 if (grantpt(master_fd) < 0) {
5359 PyOS_setsig(SIGCHLD, sig_saved);
5360 return posix_error();
5361 }
5362 /* unlock slave */
5363 if (unlockpt(master_fd) < 0) {
5364 PyOS_setsig(SIGCHLD, sig_saved);
5365 return posix_error();
5366 }
5367 PyOS_setsig(SIGCHLD, sig_saved);
5368 slave_name = ptsname(master_fd); /* get name of slave */
5369 if (slave_name == NULL)
5370 return posix_error();
5371 slave_fd = open(slave_name, O_RDWR | O_NOCTTY); /* open slave */
5372 if (slave_fd < 0)
5373 return posix_error();
Neal Norwitzb59798b2003-03-21 01:43:31 +00005374#if !defined(__CYGWIN__) && !defined(HAVE_DEV_PTC)
Victor Stinner8c62be82010-05-06 00:08:46 +00005375 ioctl(slave_fd, I_PUSH, "ptem"); /* push ptem */
5376 ioctl(slave_fd, I_PUSH, "ldterm"); /* push ldterm */
Neal Norwitz6700e472002-12-31 16:16:07 +00005377#ifndef __hpux
Victor Stinner8c62be82010-05-06 00:08:46 +00005378 ioctl(slave_fd, I_PUSH, "ttcompat"); /* push ttcompat */
Neal Norwitz6700e472002-12-31 16:16:07 +00005379#endif /* __hpux */
Martin v. Löwis24a880b2002-12-31 12:55:15 +00005380#endif /* HAVE_CYGWIN */
Thomas Wouters1e0c2f42000-07-24 16:06:23 +00005381#endif /* HAVE_OPENPTY */
Thomas Wouters70c21a12000-07-14 14:28:33 +00005382
Victor Stinner8c62be82010-05-06 00:08:46 +00005383 return Py_BuildValue("(ii)", master_fd, slave_fd);
Thomas Wouters70c21a12000-07-14 14:28:33 +00005384
Fred Drake8cef4cf2000-06-28 16:40:38 +00005385}
Martin v. Löwis24a880b2002-12-31 12:55:15 +00005386#endif /* defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX) */
Fred Drake8cef4cf2000-06-28 16:40:38 +00005387
5388#ifdef HAVE_FORKPTY
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005389PyDoc_STRVAR(posix_forkpty__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005390"forkpty() -> (pid, master_fd)\n\n\
Fred Drake8cef4cf2000-06-28 16:40:38 +00005391Fork a new process with a new pseudo-terminal as controlling tty.\n\n\
5392Like fork(), return 0 as pid to child process, and PID of child to parent.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005393To both, return fd of newly opened pseudo-terminal.\n");
Fred Drake8cef4cf2000-06-28 16:40:38 +00005394
5395static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00005396posix_forkpty(PyObject *self, PyObject *noargs)
Fred Drake8cef4cf2000-06-28 16:40:38 +00005397{
Victor Stinner8c62be82010-05-06 00:08:46 +00005398 int master_fd = -1, result = 0;
5399 pid_t pid;
Tim Peters5aa91602002-01-30 05:46:57 +00005400
Victor Stinner8c62be82010-05-06 00:08:46 +00005401 _PyImport_AcquireLock();
5402 pid = forkpty(&master_fd, NULL, NULL, NULL);
5403 if (pid == 0) {
5404 /* child: this clobbers and resets the import lock. */
5405 PyOS_AfterFork();
5406 } else {
5407 /* parent: release the import lock. */
5408 result = _PyImport_ReleaseLock();
5409 }
5410 if (pid == -1)
5411 return posix_error();
5412 if (result < 0) {
5413 /* Don't clobber the OSError if the fork failed. */
5414 PyErr_SetString(PyExc_RuntimeError,
5415 "not holding the import lock");
5416 return NULL;
5417 }
5418 return Py_BuildValue("(Ni)", PyLong_FromPid(pid), master_fd);
Fred Drake8cef4cf2000-06-28 16:40:38 +00005419}
5420#endif
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005421
Ross Lagerwall7807c352011-03-17 20:20:30 +02005422
Guido van Rossumad0ee831995-03-01 10:34:45 +00005423#ifdef HAVE_GETEGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005424PyDoc_STRVAR(posix_getegid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005425"getegid() -> egid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005426Return the current process's effective group id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005427
Barry Warsaw53699e91996-12-10 23:23:01 +00005428static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00005429posix_getegid(PyObject *self, PyObject *noargs)
Guido van Rossum46003ff1992-05-15 11:05:24 +00005430{
Victor Stinner8c62be82010-05-06 00:08:46 +00005431 return PyLong_FromLong((long)getegid());
Guido van Rossum46003ff1992-05-15 11:05:24 +00005432}
Guido van Rossumad0ee831995-03-01 10:34:45 +00005433#endif
Guido van Rossum46003ff1992-05-15 11:05:24 +00005434
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005435
Guido van Rossumad0ee831995-03-01 10:34:45 +00005436#ifdef HAVE_GETEUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005437PyDoc_STRVAR(posix_geteuid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005438"geteuid() -> euid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005439Return the current process's effective user id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005440
Barry Warsaw53699e91996-12-10 23:23:01 +00005441static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00005442posix_geteuid(PyObject *self, PyObject *noargs)
Guido van Rossum46003ff1992-05-15 11:05:24 +00005443{
Victor Stinner8c62be82010-05-06 00:08:46 +00005444 return PyLong_FromLong((long)geteuid());
Guido van Rossum46003ff1992-05-15 11:05:24 +00005445}
Guido van Rossumad0ee831995-03-01 10:34:45 +00005446#endif
Guido van Rossum46003ff1992-05-15 11:05:24 +00005447
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005448
Guido van Rossumad0ee831995-03-01 10:34:45 +00005449#ifdef HAVE_GETGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005450PyDoc_STRVAR(posix_getgid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005451"getgid() -> gid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005452Return the current process's group id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005453
Barry Warsaw53699e91996-12-10 23:23:01 +00005454static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00005455posix_getgid(PyObject *self, PyObject *noargs)
Guido van Rossum46003ff1992-05-15 11:05:24 +00005456{
Victor Stinner8c62be82010-05-06 00:08:46 +00005457 return PyLong_FromLong((long)getgid());
Guido van Rossum46003ff1992-05-15 11:05:24 +00005458}
Guido van Rossumad0ee831995-03-01 10:34:45 +00005459#endif
Guido van Rossum46003ff1992-05-15 11:05:24 +00005460
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005461
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005462PyDoc_STRVAR(posix_getpid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005463"getpid() -> pid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005464Return the current process id");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005465
Barry Warsaw53699e91996-12-10 23:23:01 +00005466static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00005467posix_getpid(PyObject *self, PyObject *noargs)
Guido van Rossum85e3b011991-06-03 12:42:10 +00005468{
Victor Stinner8c62be82010-05-06 00:08:46 +00005469 return PyLong_FromPid(getpid());
Guido van Rossum85e3b011991-06-03 12:42:10 +00005470}
5471
Ross Lagerwallb0ae53d2011-06-10 07:30:30 +02005472#ifdef HAVE_GETGROUPLIST
5473PyDoc_STRVAR(posix_getgrouplist__doc__,
5474"getgrouplist(user, group) -> list of groups to which a user belongs\n\n\
5475Returns a list of groups to which a user belongs.\n\n\
5476 user: username to lookup\n\
5477 group: base group id of the user");
5478
5479static PyObject *
5480posix_getgrouplist(PyObject *self, PyObject *args)
5481{
5482#ifdef NGROUPS_MAX
5483#define MAX_GROUPS NGROUPS_MAX
5484#else
5485 /* defined to be 16 on Solaris7, so this should be a small number */
5486#define MAX_GROUPS 64
5487#endif
5488
5489 const char *user;
5490 int i, ngroups;
5491 PyObject *list;
5492#ifdef __APPLE__
5493 int *groups, basegid;
5494#else
5495 gid_t *groups, basegid;
5496#endif
5497 ngroups = MAX_GROUPS;
5498
5499 if (!PyArg_ParseTuple(args, "si", &user, &basegid))
5500 return NULL;
5501
5502#ifdef __APPLE__
5503 groups = PyMem_Malloc(ngroups * sizeof(int));
5504#else
5505 groups = PyMem_Malloc(ngroups * sizeof(gid_t));
5506#endif
5507 if (groups == NULL)
5508 return PyErr_NoMemory();
5509
5510 if (getgrouplist(user, basegid, groups, &ngroups) == -1) {
5511 PyMem_Del(groups);
5512 return posix_error();
5513 }
5514
5515 list = PyList_New(ngroups);
5516 if (list == NULL) {
5517 PyMem_Del(groups);
5518 return NULL;
5519 }
5520
5521 for (i = 0; i < ngroups; i++) {
5522 PyObject *o = PyLong_FromUnsignedLong((unsigned long)groups[i]);
5523 if (o == NULL) {
5524 Py_DECREF(list);
5525 PyMem_Del(groups);
5526 return NULL;
5527 }
5528 PyList_SET_ITEM(list, i, o);
5529 }
5530
5531 PyMem_Del(groups);
5532
5533 return list;
5534}
5535#endif
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005536
Fred Drakec9680921999-12-13 16:37:25 +00005537#ifdef HAVE_GETGROUPS
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005538PyDoc_STRVAR(posix_getgroups__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005539"getgroups() -> list of group IDs\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005540Return list of supplemental group IDs for the process.");
Fred Drakec9680921999-12-13 16:37:25 +00005541
5542static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00005543posix_getgroups(PyObject *self, PyObject *noargs)
Fred Drakec9680921999-12-13 16:37:25 +00005544{
5545 PyObject *result = NULL;
5546
Fred Drakec9680921999-12-13 16:37:25 +00005547#ifdef NGROUPS_MAX
5548#define MAX_GROUPS NGROUPS_MAX
5549#else
Victor Stinner8c62be82010-05-06 00:08:46 +00005550 /* defined to be 16 on Solaris7, so this should be a small number */
Fred Drakec9680921999-12-13 16:37:25 +00005551#define MAX_GROUPS 64
5552#endif
Victor Stinner8c62be82010-05-06 00:08:46 +00005553 gid_t grouplist[MAX_GROUPS];
Ronald Oussorenb6ee4f52010-07-23 13:53:51 +00005554
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00005555 /* On MacOSX getgroups(2) can return more than MAX_GROUPS results
Ronald Oussorenb6ee4f52010-07-23 13:53:51 +00005556 * This is a helper variable to store the intermediate result when
5557 * that happens.
5558 *
5559 * To keep the code readable the OSX behaviour is unconditional,
5560 * according to the POSIX spec this should be safe on all unix-y
5561 * systems.
5562 */
5563 gid_t* alt_grouplist = grouplist;
Victor Stinner8c62be82010-05-06 00:08:46 +00005564 int n;
Fred Drakec9680921999-12-13 16:37:25 +00005565
Victor Stinner8c62be82010-05-06 00:08:46 +00005566 n = getgroups(MAX_GROUPS, grouplist);
Ronald Oussorenb6ee4f52010-07-23 13:53:51 +00005567 if (n < 0) {
5568 if (errno == EINVAL) {
5569 n = getgroups(0, NULL);
5570 if (n == -1) {
5571 return posix_error();
5572 }
5573 if (n == 0) {
5574 /* Avoid malloc(0) */
5575 alt_grouplist = grouplist;
5576 } else {
5577 alt_grouplist = PyMem_Malloc(n * sizeof(gid_t));
5578 if (alt_grouplist == NULL) {
5579 errno = EINVAL;
5580 return posix_error();
5581 }
5582 n = getgroups(n, alt_grouplist);
5583 if (n == -1) {
5584 PyMem_Free(alt_grouplist);
5585 return posix_error();
5586 }
5587 }
5588 } else {
5589 return posix_error();
5590 }
5591 }
5592 result = PyList_New(n);
5593 if (result != NULL) {
Victor Stinner8c62be82010-05-06 00:08:46 +00005594 int i;
5595 for (i = 0; i < n; ++i) {
Ronald Oussorenb6ee4f52010-07-23 13:53:51 +00005596 PyObject *o = PyLong_FromLong((long)alt_grouplist[i]);
Victor Stinner8c62be82010-05-06 00:08:46 +00005597 if (o == NULL) {
Stefan Krah0e803b32010-11-26 16:16:47 +00005598 Py_DECREF(result);
5599 result = NULL;
5600 break;
Fred Drakec9680921999-12-13 16:37:25 +00005601 }
Victor Stinner8c62be82010-05-06 00:08:46 +00005602 PyList_SET_ITEM(result, i, o);
Fred Drakec9680921999-12-13 16:37:25 +00005603 }
Ronald Oussorenb6ee4f52010-07-23 13:53:51 +00005604 }
5605
5606 if (alt_grouplist != grouplist) {
5607 PyMem_Free(alt_grouplist);
Victor Stinner8c62be82010-05-06 00:08:46 +00005608 }
Neal Norwitze241ce82003-02-17 18:17:05 +00005609
Fred Drakec9680921999-12-13 16:37:25 +00005610 return result;
5611}
5612#endif
5613
Antoine Pitroub7572f02009-12-02 20:46:48 +00005614#ifdef HAVE_INITGROUPS
5615PyDoc_STRVAR(posix_initgroups__doc__,
5616"initgroups(username, gid) -> None\n\n\
5617Call the system initgroups() to initialize the group access list with all of\n\
5618the groups of which the specified username is a member, plus the specified\n\
5619group id.");
5620
5621static PyObject *
5622posix_initgroups(PyObject *self, PyObject *args)
5623{
Victor Stinner61ec5dc2010-08-15 09:22:44 +00005624 PyObject *oname;
Victor Stinner8c62be82010-05-06 00:08:46 +00005625 char *username;
Victor Stinner61ec5dc2010-08-15 09:22:44 +00005626 int res;
Victor Stinner8c62be82010-05-06 00:08:46 +00005627 long gid;
Antoine Pitroub7572f02009-12-02 20:46:48 +00005628
Victor Stinner61ec5dc2010-08-15 09:22:44 +00005629 if (!PyArg_ParseTuple(args, "O&l:initgroups",
5630 PyUnicode_FSConverter, &oname, &gid))
Victor Stinner8c62be82010-05-06 00:08:46 +00005631 return NULL;
Victor Stinner61ec5dc2010-08-15 09:22:44 +00005632 username = PyBytes_AS_STRING(oname);
Antoine Pitroub7572f02009-12-02 20:46:48 +00005633
Victor Stinner61ec5dc2010-08-15 09:22:44 +00005634 res = initgroups(username, (gid_t) gid);
5635 Py_DECREF(oname);
5636 if (res == -1)
Victor Stinner8c62be82010-05-06 00:08:46 +00005637 return PyErr_SetFromErrno(PyExc_OSError);
Antoine Pitroub7572f02009-12-02 20:46:48 +00005638
Victor Stinner8c62be82010-05-06 00:08:46 +00005639 Py_INCREF(Py_None);
5640 return Py_None;
Antoine Pitroub7572f02009-12-02 20:46:48 +00005641}
5642#endif
5643
Martin v. Löwis606edc12002-06-13 21:09:11 +00005644#ifdef HAVE_GETPGID
Neal Norwitz0c2c17c2002-06-13 21:22:11 +00005645PyDoc_STRVAR(posix_getpgid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005646"getpgid(pid) -> pgid\n\n\
Neal Norwitz0c2c17c2002-06-13 21:22:11 +00005647Call the system call getpgid().");
Martin v. Löwis606edc12002-06-13 21:09:11 +00005648
5649static PyObject *
5650posix_getpgid(PyObject *self, PyObject *args)
5651{
Victor Stinner8c62be82010-05-06 00:08:46 +00005652 pid_t pid, pgid;
5653 if (!PyArg_ParseTuple(args, _Py_PARSE_PID ":getpgid", &pid))
5654 return NULL;
5655 pgid = getpgid(pid);
5656 if (pgid < 0)
5657 return posix_error();
5658 return PyLong_FromPid(pgid);
Martin v. Löwis606edc12002-06-13 21:09:11 +00005659}
5660#endif /* HAVE_GETPGID */
5661
5662
Guido van Rossumb6775db1994-08-01 11:34:53 +00005663#ifdef HAVE_GETPGRP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005664PyDoc_STRVAR(posix_getpgrp__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005665"getpgrp() -> pgrp\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005666Return the current process group id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005667
Barry Warsaw53699e91996-12-10 23:23:01 +00005668static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00005669posix_getpgrp(PyObject *self, PyObject *noargs)
Guido van Rossum04814471991-06-04 20:23:49 +00005670{
Guido van Rossumb6775db1994-08-01 11:34:53 +00005671#ifdef GETPGRP_HAVE_ARG
Victor Stinner8c62be82010-05-06 00:08:46 +00005672 return PyLong_FromPid(getpgrp(0));
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00005673#else /* GETPGRP_HAVE_ARG */
Victor Stinner8c62be82010-05-06 00:08:46 +00005674 return PyLong_FromPid(getpgrp());
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00005675#endif /* GETPGRP_HAVE_ARG */
Guido van Rossum04814471991-06-04 20:23:49 +00005676}
Guido van Rossumb6775db1994-08-01 11:34:53 +00005677#endif /* HAVE_GETPGRP */
Guido van Rossum04814471991-06-04 20:23:49 +00005678
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005679
Guido van Rossumb6775db1994-08-01 11:34:53 +00005680#ifdef HAVE_SETPGRP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005681PyDoc_STRVAR(posix_setpgrp__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005682"setpgrp()\n\n\
Senthil Kumaran684760a2010-06-17 16:48:06 +00005683Make this process the process group leader.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005684
Barry Warsaw53699e91996-12-10 23:23:01 +00005685static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00005686posix_setpgrp(PyObject *self, PyObject *noargs)
Guido van Rossumc2670a01992-09-13 20:07:29 +00005687{
Guido van Rossum64933891994-10-20 21:56:42 +00005688#ifdef SETPGRP_HAVE_ARG
Victor Stinner8c62be82010-05-06 00:08:46 +00005689 if (setpgrp(0, 0) < 0)
Guido van Rossum64933891994-10-20 21:56:42 +00005690#else /* SETPGRP_HAVE_ARG */
Victor Stinner8c62be82010-05-06 00:08:46 +00005691 if (setpgrp() < 0)
Guido van Rossum64933891994-10-20 21:56:42 +00005692#endif /* SETPGRP_HAVE_ARG */
Victor Stinner8c62be82010-05-06 00:08:46 +00005693 return posix_error();
5694 Py_INCREF(Py_None);
5695 return Py_None;
Guido van Rossumc2670a01992-09-13 20:07:29 +00005696}
5697
Guido van Rossumb6775db1994-08-01 11:34:53 +00005698#endif /* HAVE_SETPGRP */
5699
Guido van Rossumad0ee831995-03-01 10:34:45 +00005700#ifdef HAVE_GETPPID
Amaury Forgeot d'Arc4b6fdf32010-09-07 21:31:17 +00005701
5702#ifdef MS_WINDOWS
5703#include <tlhelp32.h>
5704
5705static PyObject*
5706win32_getppid()
5707{
5708 HANDLE snapshot;
5709 pid_t mypid;
5710 PyObject* result = NULL;
5711 BOOL have_record;
5712 PROCESSENTRY32 pe;
5713
5714 mypid = getpid(); /* This function never fails */
5715
5716 snapshot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
5717 if (snapshot == INVALID_HANDLE_VALUE)
5718 return PyErr_SetFromWindowsErr(GetLastError());
5719
5720 pe.dwSize = sizeof(pe);
5721 have_record = Process32First(snapshot, &pe);
5722 while (have_record) {
5723 if (mypid == (pid_t)pe.th32ProcessID) {
5724 /* We could cache the ulong value in a static variable. */
5725 result = PyLong_FromPid((pid_t)pe.th32ParentProcessID);
5726 break;
5727 }
5728
5729 have_record = Process32Next(snapshot, &pe);
5730 }
5731
5732 /* If our loop exits and our pid was not found (result will be NULL)
5733 * then GetLastError will return ERROR_NO_MORE_FILES. This is an
5734 * error anyway, so let's raise it. */
5735 if (!result)
5736 result = PyErr_SetFromWindowsErr(GetLastError());
5737
5738 CloseHandle(snapshot);
5739
5740 return result;
5741}
5742#endif /*MS_WINDOWS*/
5743
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005744PyDoc_STRVAR(posix_getppid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005745"getppid() -> ppid\n\n\
Amaury Forgeot d'Arc4b6fdf32010-09-07 21:31:17 +00005746Return the parent's process id. If the parent process has already exited,\n\
5747Windows machines will still return its id; others systems will return the id\n\
5748of the 'init' process (1).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005749
Barry Warsaw53699e91996-12-10 23:23:01 +00005750static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00005751posix_getppid(PyObject *self, PyObject *noargs)
Guido van Rossum85e3b011991-06-03 12:42:10 +00005752{
Amaury Forgeot d'Arc4b6fdf32010-09-07 21:31:17 +00005753#ifdef MS_WINDOWS
5754 return win32_getppid();
5755#else
Victor Stinner8c62be82010-05-06 00:08:46 +00005756 return PyLong_FromPid(getppid());
Guido van Rossumad0ee831995-03-01 10:34:45 +00005757#endif
Amaury Forgeot d'Arc4b6fdf32010-09-07 21:31:17 +00005758}
5759#endif /* HAVE_GETPPID */
Guido van Rossum85e3b011991-06-03 12:42:10 +00005760
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005761
Fred Drake12c6e2d1999-12-14 21:25:03 +00005762#ifdef HAVE_GETLOGIN
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005763PyDoc_STRVAR(posix_getlogin__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005764"getlogin() -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005765Return the actual login name.");
Fred Drake12c6e2d1999-12-14 21:25:03 +00005766
5767static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00005768posix_getlogin(PyObject *self, PyObject *noargs)
Fred Drake12c6e2d1999-12-14 21:25:03 +00005769{
Victor Stinner8c62be82010-05-06 00:08:46 +00005770 PyObject *result = NULL;
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00005771#ifdef MS_WINDOWS
Brian Curtine8e4b3b2010-09-23 20:04:14 +00005772 wchar_t user_name[UNLEN + 1];
Victor Stinner63941882011-09-29 00:42:28 +02005773 DWORD num_chars = Py_ARRAY_LENGTH(user_name);
Brian Curtine8e4b3b2010-09-23 20:04:14 +00005774
5775 if (GetUserNameW(user_name, &num_chars)) {
5776 /* num_chars is the number of unicode chars plus null terminator */
5777 result = PyUnicode_FromWideChar(user_name, num_chars - 1);
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00005778 }
5779 else
Brian Curtine8e4b3b2010-09-23 20:04:14 +00005780 result = PyErr_SetFromWindowsErr(GetLastError());
5781#else
Victor Stinner8c62be82010-05-06 00:08:46 +00005782 char *name;
5783 int old_errno = errno;
Fred Drake12c6e2d1999-12-14 21:25:03 +00005784
Victor Stinner8c62be82010-05-06 00:08:46 +00005785 errno = 0;
5786 name = getlogin();
5787 if (name == NULL) {
5788 if (errno)
Victor Stinnere039ffe2010-08-15 09:33:08 +00005789 posix_error();
Fred Drake12c6e2d1999-12-14 21:25:03 +00005790 else
Victor Stinnere039ffe2010-08-15 09:33:08 +00005791 PyErr_SetString(PyExc_OSError, "unable to determine login name");
Victor Stinner8c62be82010-05-06 00:08:46 +00005792 }
5793 else
Victor Stinnere039ffe2010-08-15 09:33:08 +00005794 result = PyUnicode_DecodeFSDefault(name);
Victor Stinner8c62be82010-05-06 00:08:46 +00005795 errno = old_errno;
Brian Curtine8e4b3b2010-09-23 20:04:14 +00005796#endif
Fred Drake12c6e2d1999-12-14 21:25:03 +00005797 return result;
5798}
Brian Curtine8e4b3b2010-09-23 20:04:14 +00005799#endif /* HAVE_GETLOGIN */
Fred Drake12c6e2d1999-12-14 21:25:03 +00005800
Guido van Rossumad0ee831995-03-01 10:34:45 +00005801#ifdef HAVE_GETUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005802PyDoc_STRVAR(posix_getuid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005803"getuid() -> uid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005804Return the current process's user id.");
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_getuid(PyObject *self, PyObject *noargs)
Guido van Rossum46003ff1992-05-15 11:05:24 +00005808{
Victor Stinner8c62be82010-05-06 00:08:46 +00005809 return PyLong_FromLong((long)getuid());
Guido van Rossum46003ff1992-05-15 11:05:24 +00005810}
Guido van Rossumad0ee831995-03-01 10:34:45 +00005811#endif
Guido van Rossum46003ff1992-05-15 11:05:24 +00005812
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005813
Guido van Rossumad0ee831995-03-01 10:34:45 +00005814#ifdef HAVE_KILL
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005815PyDoc_STRVAR(posix_kill__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005816"kill(pid, sig)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005817Kill a process with a signal.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005818
Barry Warsaw53699e91996-12-10 23:23:01 +00005819static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005820posix_kill(PyObject *self, PyObject *args)
Guido van Rossum85e3b011991-06-03 12:42:10 +00005821{
Victor Stinner8c62be82010-05-06 00:08:46 +00005822 pid_t pid;
5823 int sig;
5824 if (!PyArg_ParseTuple(args, _Py_PARSE_PID "i:kill", &pid, &sig))
5825 return NULL;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +00005826#if defined(PYOS_OS2) && !defined(PYCC_GCC)
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00005827 if (sig == XCPT_SIGNAL_INTR || sig == XCPT_SIGNAL_BREAK) {
5828 APIRET rc;
5829 if ((rc = DosSendSignalException(pid, sig)) != NO_ERROR)
Guido van Rossumd48f2521997-12-05 22:19:34 +00005830 return os2_error(rc);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00005831
5832 } else if (sig == XCPT_SIGNAL_KILLPROC) {
5833 APIRET rc;
5834 if ((rc = DosKillProcess(DKP_PROCESS, pid)) != NO_ERROR)
Guido van Rossumd48f2521997-12-05 22:19:34 +00005835 return os2_error(rc);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00005836
5837 } else
Guido van Rossumc5a0f531997-12-02 20:36:02 +00005838 return NULL; /* Unrecognized Signal Requested */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00005839#else
Victor Stinner8c62be82010-05-06 00:08:46 +00005840 if (kill(pid, sig) == -1)
5841 return posix_error();
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00005842#endif
Victor Stinner8c62be82010-05-06 00:08:46 +00005843 Py_INCREF(Py_None);
5844 return Py_None;
Guido van Rossum85e3b011991-06-03 12:42:10 +00005845}
Guido van Rossumad0ee831995-03-01 10:34:45 +00005846#endif
Guido van Rossum85e3b011991-06-03 12:42:10 +00005847
Martin v. Löwisb2c92f42002-02-16 23:35:41 +00005848#ifdef HAVE_KILLPG
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005849PyDoc_STRVAR(posix_killpg__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005850"killpg(pgid, sig)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005851Kill a process group with a signal.");
Martin v. Löwisb2c92f42002-02-16 23:35:41 +00005852
5853static PyObject *
5854posix_killpg(PyObject *self, PyObject *args)
5855{
Victor Stinner8c62be82010-05-06 00:08:46 +00005856 int sig;
5857 pid_t pgid;
5858 /* XXX some man pages make the `pgid` parameter an int, others
5859 a pid_t. Since getpgrp() returns a pid_t, we assume killpg should
5860 take the same type. Moreover, pid_t is always at least as wide as
5861 int (else compilation of this module fails), which is safe. */
5862 if (!PyArg_ParseTuple(args, _Py_PARSE_PID "i:killpg", &pgid, &sig))
5863 return NULL;
5864 if (killpg(pgid, sig) == -1)
5865 return posix_error();
5866 Py_INCREF(Py_None);
5867 return Py_None;
Martin v. Löwisb2c92f42002-02-16 23:35:41 +00005868}
5869#endif
5870
Brian Curtineb24d742010-04-12 17:16:38 +00005871#ifdef MS_WINDOWS
5872PyDoc_STRVAR(win32_kill__doc__,
5873"kill(pid, sig)\n\n\
5874Kill a process with a signal.");
5875
5876static PyObject *
5877win32_kill(PyObject *self, PyObject *args)
5878{
Amaury Forgeot d'Arc0a589c92010-05-15 20:35:12 +00005879 PyObject *result;
Victor Stinner8c62be82010-05-06 00:08:46 +00005880 DWORD pid, sig, err;
5881 HANDLE handle;
Brian Curtineb24d742010-04-12 17:16:38 +00005882
Victor Stinner8c62be82010-05-06 00:08:46 +00005883 if (!PyArg_ParseTuple(args, "kk:kill", &pid, &sig))
5884 return NULL;
Brian Curtineb24d742010-04-12 17:16:38 +00005885
Victor Stinner8c62be82010-05-06 00:08:46 +00005886 /* Console processes which share a common console can be sent CTRL+C or
5887 CTRL+BREAK events, provided they handle said events. */
5888 if (sig == CTRL_C_EVENT || sig == CTRL_BREAK_EVENT) {
5889 if (GenerateConsoleCtrlEvent(sig, pid) == 0) {
5890 err = GetLastError();
5891 PyErr_SetFromWindowsErr(err);
5892 }
5893 else
5894 Py_RETURN_NONE;
5895 }
Brian Curtineb24d742010-04-12 17:16:38 +00005896
Victor Stinner8c62be82010-05-06 00:08:46 +00005897 /* If the signal is outside of what GenerateConsoleCtrlEvent can use,
5898 attempt to open and terminate the process. */
5899 handle = OpenProcess(PROCESS_ALL_ACCESS, FALSE, pid);
5900 if (handle == NULL) {
5901 err = GetLastError();
5902 return PyErr_SetFromWindowsErr(err);
5903 }
Brian Curtineb24d742010-04-12 17:16:38 +00005904
Victor Stinner8c62be82010-05-06 00:08:46 +00005905 if (TerminateProcess(handle, sig) == 0) {
5906 err = GetLastError();
5907 result = PyErr_SetFromWindowsErr(err);
5908 } else {
5909 Py_INCREF(Py_None);
5910 result = Py_None;
5911 }
Brian Curtineb24d742010-04-12 17:16:38 +00005912
Victor Stinner8c62be82010-05-06 00:08:46 +00005913 CloseHandle(handle);
5914 return result;
Brian Curtineb24d742010-04-12 17:16:38 +00005915}
5916#endif /* MS_WINDOWS */
5917
Guido van Rossumc0125471996-06-28 18:55:32 +00005918#ifdef HAVE_PLOCK
5919
5920#ifdef HAVE_SYS_LOCK_H
5921#include <sys/lock.h>
5922#endif
5923
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005924PyDoc_STRVAR(posix_plock__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005925"plock(op)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005926Lock program segments into memory.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005927
Barry Warsaw53699e91996-12-10 23:23:01 +00005928static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005929posix_plock(PyObject *self, PyObject *args)
Guido van Rossumc0125471996-06-28 18:55:32 +00005930{
Victor Stinner8c62be82010-05-06 00:08:46 +00005931 int op;
5932 if (!PyArg_ParseTuple(args, "i:plock", &op))
5933 return NULL;
5934 if (plock(op) == -1)
5935 return posix_error();
5936 Py_INCREF(Py_None);
5937 return Py_None;
Guido van Rossumc0125471996-06-28 18:55:32 +00005938}
5939#endif
5940
Guido van Rossumb6775db1994-08-01 11:34:53 +00005941#ifdef HAVE_SETUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005942PyDoc_STRVAR(posix_setuid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005943"setuid(uid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005944Set the current process's user id.");
5945
Barry Warsaw53699e91996-12-10 23:23:01 +00005946static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00005947posix_setuid(PyObject *self, PyObject *args)
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005948{
Victor Stinner8c62be82010-05-06 00:08:46 +00005949 long uid_arg;
5950 uid_t uid;
5951 if (!PyArg_ParseTuple(args, "l:setuid", &uid_arg))
5952 return NULL;
5953 uid = uid_arg;
5954 if (uid != uid_arg) {
5955 PyErr_SetString(PyExc_OverflowError, "user id too big");
5956 return NULL;
5957 }
5958 if (setuid(uid) < 0)
5959 return posix_error();
5960 Py_INCREF(Py_None);
5961 return Py_None;
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005962}
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00005963#endif /* HAVE_SETUID */
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00005964
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00005965
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005966#ifdef HAVE_SETEUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005967PyDoc_STRVAR(posix_seteuid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005968"seteuid(uid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005969Set the current process's effective user id.");
5970
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005971static PyObject *
5972posix_seteuid (PyObject *self, PyObject *args)
5973{
Victor Stinner8c62be82010-05-06 00:08:46 +00005974 long euid_arg;
5975 uid_t euid;
5976 if (!PyArg_ParseTuple(args, "l", &euid_arg))
5977 return NULL;
5978 euid = euid_arg;
5979 if (euid != euid_arg) {
5980 PyErr_SetString(PyExc_OverflowError, "user id too big");
5981 return NULL;
5982 }
5983 if (seteuid(euid) < 0) {
5984 return posix_error();
5985 } else {
5986 Py_INCREF(Py_None);
5987 return Py_None;
5988 }
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005989}
5990#endif /* HAVE_SETEUID */
5991
5992#ifdef HAVE_SETEGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005993PyDoc_STRVAR(posix_setegid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00005994"setegid(gid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00005995Set the current process's effective group id.");
5996
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00005997static PyObject *
5998posix_setegid (PyObject *self, PyObject *args)
5999{
Victor Stinner8c62be82010-05-06 00:08:46 +00006000 long egid_arg;
6001 gid_t egid;
6002 if (!PyArg_ParseTuple(args, "l", &egid_arg))
6003 return NULL;
6004 egid = egid_arg;
6005 if (egid != egid_arg) {
6006 PyErr_SetString(PyExc_OverflowError, "group id too big");
6007 return NULL;
6008 }
6009 if (setegid(egid) < 0) {
6010 return posix_error();
6011 } else {
6012 Py_INCREF(Py_None);
6013 return Py_None;
6014 }
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00006015}
6016#endif /* HAVE_SETEGID */
6017
6018#ifdef HAVE_SETREUID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006019PyDoc_STRVAR(posix_setreuid__doc__,
Neal Norwitz94f1d712004-02-16 01:26:34 +00006020"setreuid(ruid, euid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006021Set the current process's real and effective user ids.");
6022
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00006023static PyObject *
6024posix_setreuid (PyObject *self, PyObject *args)
6025{
Victor Stinner8c62be82010-05-06 00:08:46 +00006026 long ruid_arg, euid_arg;
6027 uid_t ruid, euid;
6028 if (!PyArg_ParseTuple(args, "ll", &ruid_arg, &euid_arg))
6029 return NULL;
6030 if (ruid_arg == -1)
6031 ruid = (uid_t)-1; /* let the compiler choose how -1 fits */
6032 else
6033 ruid = ruid_arg; /* otherwise, assign from our long */
6034 if (euid_arg == -1)
6035 euid = (uid_t)-1;
6036 else
6037 euid = euid_arg;
6038 if ((euid_arg != -1 && euid != euid_arg) ||
6039 (ruid_arg != -1 && ruid != ruid_arg)) {
6040 PyErr_SetString(PyExc_OverflowError, "user id too big");
6041 return NULL;
6042 }
6043 if (setreuid(ruid, euid) < 0) {
6044 return posix_error();
6045 } else {
6046 Py_INCREF(Py_None);
6047 return Py_None;
6048 }
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00006049}
6050#endif /* HAVE_SETREUID */
6051
6052#ifdef HAVE_SETREGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006053PyDoc_STRVAR(posix_setregid__doc__,
Neal Norwitz94f1d712004-02-16 01:26:34 +00006054"setregid(rgid, egid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006055Set the current process's real and effective group ids.");
6056
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00006057static PyObject *
6058posix_setregid (PyObject *self, PyObject *args)
6059{
Victor Stinner8c62be82010-05-06 00:08:46 +00006060 long rgid_arg, egid_arg;
6061 gid_t rgid, egid;
6062 if (!PyArg_ParseTuple(args, "ll", &rgid_arg, &egid_arg))
6063 return NULL;
6064 if (rgid_arg == -1)
6065 rgid = (gid_t)-1; /* let the compiler choose how -1 fits */
6066 else
6067 rgid = rgid_arg; /* otherwise, assign from our long */
6068 if (egid_arg == -1)
6069 egid = (gid_t)-1;
6070 else
6071 egid = egid_arg;
6072 if ((egid_arg != -1 && egid != egid_arg) ||
6073 (rgid_arg != -1 && rgid != rgid_arg)) {
6074 PyErr_SetString(PyExc_OverflowError, "group id too big");
6075 return NULL;
6076 }
6077 if (setregid(rgid, egid) < 0) {
6078 return posix_error();
6079 } else {
6080 Py_INCREF(Py_None);
6081 return Py_None;
6082 }
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00006083}
6084#endif /* HAVE_SETREGID */
6085
Guido van Rossumb6775db1994-08-01 11:34:53 +00006086#ifdef HAVE_SETGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006087PyDoc_STRVAR(posix_setgid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006088"setgid(gid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006089Set the current process's group id.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006090
Barry Warsaw53699e91996-12-10 23:23:01 +00006091static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006092posix_setgid(PyObject *self, PyObject *args)
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00006093{
Victor Stinner8c62be82010-05-06 00:08:46 +00006094 long gid_arg;
6095 gid_t gid;
6096 if (!PyArg_ParseTuple(args, "l:setgid", &gid_arg))
6097 return NULL;
6098 gid = gid_arg;
6099 if (gid != gid_arg) {
6100 PyErr_SetString(PyExc_OverflowError, "group id too big");
6101 return NULL;
6102 }
6103 if (setgid(gid) < 0)
6104 return posix_error();
6105 Py_INCREF(Py_None);
6106 return Py_None;
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00006107}
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00006108#endif /* HAVE_SETGID */
Guido van Rossuma3d78fb1993-11-10 09:23:53 +00006109
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00006110#ifdef HAVE_SETGROUPS
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006111PyDoc_STRVAR(posix_setgroups__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006112"setgroups(list)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006113Set the groups of the current process to list.");
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00006114
6115static PyObject *
Thomas Wouters4d70c3d2006-06-08 14:42:34 +00006116posix_setgroups(PyObject *self, PyObject *groups)
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00006117{
Victor Stinner8c62be82010-05-06 00:08:46 +00006118 int i, len;
6119 gid_t grouplist[MAX_GROUPS];
Tim Peters5aa91602002-01-30 05:46:57 +00006120
Victor Stinner8c62be82010-05-06 00:08:46 +00006121 if (!PySequence_Check(groups)) {
6122 PyErr_SetString(PyExc_TypeError, "setgroups argument must be a sequence");
6123 return NULL;
6124 }
6125 len = PySequence_Size(groups);
6126 if (len > MAX_GROUPS) {
6127 PyErr_SetString(PyExc_ValueError, "too many groups");
6128 return NULL;
6129 }
6130 for(i = 0; i < len; i++) {
6131 PyObject *elem;
6132 elem = PySequence_GetItem(groups, i);
6133 if (!elem)
6134 return NULL;
6135 if (!PyLong_Check(elem)) {
6136 PyErr_SetString(PyExc_TypeError,
6137 "groups must be integers");
6138 Py_DECREF(elem);
6139 return NULL;
6140 } else {
6141 unsigned long x = PyLong_AsUnsignedLong(elem);
6142 if (PyErr_Occurred()) {
6143 PyErr_SetString(PyExc_TypeError,
6144 "group id too big");
6145 Py_DECREF(elem);
6146 return NULL;
6147 }
6148 grouplist[i] = x;
6149 /* read back the value to see if it fitted in gid_t */
6150 if (grouplist[i] != x) {
6151 PyErr_SetString(PyExc_TypeError,
6152 "group id too big");
6153 Py_DECREF(elem);
6154 return NULL;
6155 }
6156 }
6157 Py_DECREF(elem);
6158 }
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00006159
Victor Stinner8c62be82010-05-06 00:08:46 +00006160 if (setgroups(len, grouplist) < 0)
6161 return posix_error();
6162 Py_INCREF(Py_None);
6163 return Py_None;
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00006164}
6165#endif /* HAVE_SETGROUPS */
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006166
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00006167#if defined(HAVE_WAIT3) || defined(HAVE_WAIT4)
6168static PyObject *
Victor Stinner4195b5c2012-02-08 23:03:19 +01006169wait_helper(pid_t pid, int status, struct rusage *ru)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00006170{
Victor Stinner8c62be82010-05-06 00:08:46 +00006171 PyObject *result;
6172 static PyObject *struct_rusage;
Martin v. Löwisbd928fe2011-10-14 10:20:37 +02006173 _Py_IDENTIFIER(struct_rusage);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00006174
Victor Stinner8c62be82010-05-06 00:08:46 +00006175 if (pid == -1)
6176 return posix_error();
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00006177
Victor Stinner8c62be82010-05-06 00:08:46 +00006178 if (struct_rusage == NULL) {
6179 PyObject *m = PyImport_ImportModuleNoBlock("resource");
6180 if (m == NULL)
6181 return NULL;
Martin v. Löwis1ee1b6f2011-10-10 18:11:30 +02006182 struct_rusage = _PyObject_GetAttrId(m, &PyId_struct_rusage);
Victor Stinner8c62be82010-05-06 00:08:46 +00006183 Py_DECREF(m);
6184 if (struct_rusage == NULL)
6185 return NULL;
6186 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00006187
Victor Stinner8c62be82010-05-06 00:08:46 +00006188 /* XXX(nnorwitz): Copied (w/mods) from resource.c, there should be only one. */
6189 result = PyStructSequence_New((PyTypeObject*) struct_rusage);
6190 if (!result)
6191 return NULL;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00006192
6193#ifndef doubletime
6194#define doubletime(TV) ((double)(TV).tv_sec + (TV).tv_usec * 0.000001)
6195#endif
6196
Victor Stinner8c62be82010-05-06 00:08:46 +00006197 PyStructSequence_SET_ITEM(result, 0,
Victor Stinner4195b5c2012-02-08 23:03:19 +01006198 PyFloat_FromDouble(doubletime(ru->ru_utime)));
Victor Stinner8c62be82010-05-06 00:08:46 +00006199 PyStructSequence_SET_ITEM(result, 1,
Victor Stinner4195b5c2012-02-08 23:03:19 +01006200 PyFloat_FromDouble(doubletime(ru->ru_stime)));
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00006201#define SET_INT(result, index, value)\
Victor Stinner8c62be82010-05-06 00:08:46 +00006202 PyStructSequence_SET_ITEM(result, index, PyLong_FromLong(value))
6203 SET_INT(result, 2, ru->ru_maxrss);
6204 SET_INT(result, 3, ru->ru_ixrss);
6205 SET_INT(result, 4, ru->ru_idrss);
6206 SET_INT(result, 5, ru->ru_isrss);
6207 SET_INT(result, 6, ru->ru_minflt);
6208 SET_INT(result, 7, ru->ru_majflt);
6209 SET_INT(result, 8, ru->ru_nswap);
6210 SET_INT(result, 9, ru->ru_inblock);
6211 SET_INT(result, 10, ru->ru_oublock);
6212 SET_INT(result, 11, ru->ru_msgsnd);
6213 SET_INT(result, 12, ru->ru_msgrcv);
6214 SET_INT(result, 13, ru->ru_nsignals);
6215 SET_INT(result, 14, ru->ru_nvcsw);
6216 SET_INT(result, 15, ru->ru_nivcsw);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00006217#undef SET_INT
6218
Victor Stinner8c62be82010-05-06 00:08:46 +00006219 if (PyErr_Occurred()) {
6220 Py_DECREF(result);
6221 return NULL;
6222 }
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00006223
Victor Stinner8c62be82010-05-06 00:08:46 +00006224 return Py_BuildValue("NiN", PyLong_FromPid(pid), status, result);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00006225}
6226#endif /* HAVE_WAIT3 || HAVE_WAIT4 */
6227
6228#ifdef HAVE_WAIT3
6229PyDoc_STRVAR(posix_wait3__doc__,
Victor Stinner4195b5c2012-02-08 23:03:19 +01006230"wait3(options) -> (pid, status, rusage)\n\n\
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00006231Wait for completion of a child process.");
6232
6233static PyObject *
Victor Stinner4195b5c2012-02-08 23:03:19 +01006234posix_wait3(PyObject *self, PyObject *args)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00006235{
Victor Stinner8c62be82010-05-06 00:08:46 +00006236 pid_t pid;
6237 int options;
6238 struct rusage ru;
6239 WAIT_TYPE status;
6240 WAIT_STATUS_INT(status) = 0;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00006241
Victor Stinner4195b5c2012-02-08 23:03:19 +01006242 if (!PyArg_ParseTuple(args, "i:wait3", &options))
Victor Stinner8c62be82010-05-06 00:08:46 +00006243 return NULL;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00006244
Victor Stinner8c62be82010-05-06 00:08:46 +00006245 Py_BEGIN_ALLOW_THREADS
6246 pid = wait3(&status, options, &ru);
6247 Py_END_ALLOW_THREADS
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00006248
Victor Stinner4195b5c2012-02-08 23:03:19 +01006249 return wait_helper(pid, WAIT_STATUS_INT(status), &ru);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00006250}
6251#endif /* HAVE_WAIT3 */
6252
6253#ifdef HAVE_WAIT4
6254PyDoc_STRVAR(posix_wait4__doc__,
Victor Stinner4195b5c2012-02-08 23:03:19 +01006255"wait4(pid, options) -> (pid, status, rusage)\n\n\
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00006256Wait for completion of a given child process.");
6257
6258static PyObject *
Victor Stinner4195b5c2012-02-08 23:03:19 +01006259posix_wait4(PyObject *self, PyObject *args)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00006260{
Victor Stinner8c62be82010-05-06 00:08:46 +00006261 pid_t pid;
6262 int options;
6263 struct rusage ru;
6264 WAIT_TYPE status;
6265 WAIT_STATUS_INT(status) = 0;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00006266
Victor Stinner4195b5c2012-02-08 23:03:19 +01006267 if (!PyArg_ParseTuple(args, _Py_PARSE_PID "i:wait4", &pid, &options))
Victor Stinner8c62be82010-05-06 00:08:46 +00006268 return NULL;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00006269
Victor Stinner8c62be82010-05-06 00:08:46 +00006270 Py_BEGIN_ALLOW_THREADS
6271 pid = wait4(pid, &status, options, &ru);
6272 Py_END_ALLOW_THREADS
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00006273
Victor Stinner4195b5c2012-02-08 23:03:19 +01006274 return wait_helper(pid, WAIT_STATUS_INT(status), &ru);
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00006275}
6276#endif /* HAVE_WAIT4 */
6277
Ross Lagerwall7807c352011-03-17 20:20:30 +02006278#if defined(HAVE_WAITID) && !defined(__APPLE__)
6279PyDoc_STRVAR(posix_waitid__doc__,
6280"waitid(idtype, id, options) -> waitid_result\n\n\
6281Wait for the completion of one or more child processes.\n\n\
6282idtype can be P_PID, P_PGID or P_ALL.\n\
6283id specifies the pid to wait on.\n\
6284options is constructed from the ORing of one or more of WEXITED, WSTOPPED\n\
6285or WCONTINUED and additionally may be ORed with WNOHANG or WNOWAIT.\n\
6286Returns either waitid_result or None if WNOHANG is specified and there are\n\
6287no children in a waitable state.");
6288
6289static PyObject *
6290posix_waitid(PyObject *self, PyObject *args)
6291{
6292 PyObject *result;
6293 idtype_t idtype;
6294 id_t id;
6295 int options, res;
6296 siginfo_t si;
6297 si.si_pid = 0;
6298 if (!PyArg_ParseTuple(args, "i" _Py_PARSE_PID "i:waitid", &idtype, &id, &options))
6299 return NULL;
6300 Py_BEGIN_ALLOW_THREADS
6301 res = waitid(idtype, id, &si, options);
6302 Py_END_ALLOW_THREADS
6303 if (res == -1)
6304 return posix_error();
6305
6306 if (si.si_pid == 0)
6307 Py_RETURN_NONE;
6308
6309 result = PyStructSequence_New(&WaitidResultType);
6310 if (!result)
6311 return NULL;
6312
6313 PyStructSequence_SET_ITEM(result, 0, PyLong_FromPid(si.si_pid));
6314 PyStructSequence_SET_ITEM(result, 1, PyLong_FromPid(si.si_uid));
6315 PyStructSequence_SET_ITEM(result, 2, PyLong_FromLong((long)(si.si_signo)));
6316 PyStructSequence_SET_ITEM(result, 3, PyLong_FromLong((long)(si.si_status)));
6317 PyStructSequence_SET_ITEM(result, 4, PyLong_FromLong((long)(si.si_code)));
6318 if (PyErr_Occurred()) {
6319 Py_DECREF(result);
6320 return NULL;
6321 }
6322
6323 return result;
6324}
6325#endif
6326
Guido van Rossumb6775db1994-08-01 11:34:53 +00006327#ifdef HAVE_WAITPID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006328PyDoc_STRVAR(posix_waitpid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006329"waitpid(pid, options) -> (pid, status)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006330Wait for completion of a given child process.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006331
Barry Warsaw53699e91996-12-10 23:23:01 +00006332static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006333posix_waitpid(PyObject *self, PyObject *args)
Guido van Rossum85e3b011991-06-03 12:42:10 +00006334{
Victor Stinner8c62be82010-05-06 00:08:46 +00006335 pid_t pid;
6336 int options;
6337 WAIT_TYPE status;
6338 WAIT_STATUS_INT(status) = 0;
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00006339
Victor Stinner8c62be82010-05-06 00:08:46 +00006340 if (!PyArg_ParseTuple(args, _Py_PARSE_PID "i:waitpid", &pid, &options))
6341 return NULL;
6342 Py_BEGIN_ALLOW_THREADS
6343 pid = waitpid(pid, &status, options);
6344 Py_END_ALLOW_THREADS
6345 if (pid == -1)
6346 return posix_error();
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00006347
Victor Stinner8c62be82010-05-06 00:08:46 +00006348 return Py_BuildValue("Ni", PyLong_FromPid(pid), WAIT_STATUS_INT(status));
Guido van Rossum21803b81992-08-09 12:55:27 +00006349}
6350
Tim Petersab034fa2002-02-01 11:27:43 +00006351#elif defined(HAVE_CWAIT)
6352
6353/* MS C has a variant of waitpid() that's usable for most purposes. */
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006354PyDoc_STRVAR(posix_waitpid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006355"waitpid(pid, options) -> (pid, status << 8)\n\n"
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006356"Wait for completion of a given process. options is ignored on Windows.");
Tim Petersab034fa2002-02-01 11:27:43 +00006357
6358static PyObject *
6359posix_waitpid(PyObject *self, PyObject *args)
6360{
Victor Stinner8c62be82010-05-06 00:08:46 +00006361 Py_intptr_t pid;
6362 int status, options;
Tim Petersab034fa2002-02-01 11:27:43 +00006363
Victor Stinner8c62be82010-05-06 00:08:46 +00006364 if (!PyArg_ParseTuple(args, _Py_PARSE_PID "i:waitpid", &pid, &options))
6365 return NULL;
6366 Py_BEGIN_ALLOW_THREADS
6367 pid = _cwait(&status, pid, options);
6368 Py_END_ALLOW_THREADS
6369 if (pid == -1)
6370 return posix_error();
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00006371
Victor Stinner8c62be82010-05-06 00:08:46 +00006372 /* shift the status left a byte so this is more like the POSIX waitpid */
6373 return Py_BuildValue("Ni", PyLong_FromPid(pid), status << 8);
Tim Petersab034fa2002-02-01 11:27:43 +00006374}
6375#endif /* HAVE_WAITPID || HAVE_CWAIT */
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006376
Guido van Rossumad0ee831995-03-01 10:34:45 +00006377#ifdef HAVE_WAIT
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006378PyDoc_STRVAR(posix_wait__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006379"wait() -> (pid, status)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006380Wait for completion of a child process.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006381
Barry Warsaw53699e91996-12-10 23:23:01 +00006382static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00006383posix_wait(PyObject *self, PyObject *noargs)
Guido van Rossum21803b81992-08-09 12:55:27 +00006384{
Victor Stinner8c62be82010-05-06 00:08:46 +00006385 pid_t pid;
6386 WAIT_TYPE status;
6387 WAIT_STATUS_INT(status) = 0;
Neal Norwitze241ce82003-02-17 18:17:05 +00006388
Victor Stinner8c62be82010-05-06 00:08:46 +00006389 Py_BEGIN_ALLOW_THREADS
6390 pid = wait(&status);
6391 Py_END_ALLOW_THREADS
6392 if (pid == -1)
6393 return posix_error();
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00006394
Victor Stinner8c62be82010-05-06 00:08:46 +00006395 return Py_BuildValue("Ni", PyLong_FromPid(pid), WAIT_STATUS_INT(status));
Guido van Rossum85e3b011991-06-03 12:42:10 +00006396}
Guido van Rossumad0ee831995-03-01 10:34:45 +00006397#endif
Guido van Rossum85e3b011991-06-03 12:42:10 +00006398
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006399
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006400PyDoc_STRVAR(posix_lstat__doc__,
Victor Stinner4195b5c2012-02-08 23:03:19 +01006401"lstat(path) -> stat result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006402Like stat(path), but do not follow symbolic links.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006403
Barry Warsaw53699e91996-12-10 23:23:01 +00006404static PyObject *
Victor Stinner4195b5c2012-02-08 23:03:19 +01006405posix_lstat(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00006406{
Guido van Rossumb6775db1994-08-01 11:34:53 +00006407#ifdef HAVE_LSTAT
Victor Stinner4195b5c2012-02-08 23:03:19 +01006408 return posix_do_stat(self, args, "O&:lstat", lstat, NULL, NULL);
Guido van Rossumb6775db1994-08-01 11:34:53 +00006409#else /* !HAVE_LSTAT */
Mark Hammondc2e85bd2002-10-03 05:10:39 +00006410#ifdef MS_WINDOWS
Victor Stinner4195b5c2012-02-08 23:03:19 +01006411 return posix_do_stat(self, args, "O&:lstat", win32_lstat, "U:lstat",
Brian Curtind40e6f72010-07-08 21:39:08 +00006412 win32_lstat_w);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00006413#else
Victor Stinner4195b5c2012-02-08 23:03:19 +01006414 return posix_do_stat(self, args, "O&:lstat", STAT, NULL, NULL);
Mark Hammondc2e85bd2002-10-03 05:10:39 +00006415#endif
Guido van Rossumb6775db1994-08-01 11:34:53 +00006416#endif /* !HAVE_LSTAT */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00006417}
6418
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006419
Guido van Rossumb6775db1994-08-01 11:34:53 +00006420#ifdef HAVE_READLINK
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006421PyDoc_STRVAR(posix_readlink__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006422"readlink(path) -> path\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006423Return a string representing the path to which the symbolic link points.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006424
Barry Warsaw53699e91996-12-10 23:23:01 +00006425static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006426posix_readlink(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00006427{
Victor Stinner8c62be82010-05-06 00:08:46 +00006428 PyObject* v;
6429 char buf[MAXPATHLEN];
6430 PyObject *opath;
6431 char *path;
6432 int n;
6433 int arg_is_unicode = 0;
Thomas Wouters89f507f2006-12-13 04:49:30 +00006434
Victor Stinner8c62be82010-05-06 00:08:46 +00006435 if (!PyArg_ParseTuple(args, "O&:readlink",
6436 PyUnicode_FSConverter, &opath))
6437 return NULL;
6438 path = PyBytes_AsString(opath);
6439 v = PySequence_GetItem(args, 0);
6440 if (v == NULL) {
6441 Py_DECREF(opath);
6442 return NULL;
6443 }
Thomas Wouters89f507f2006-12-13 04:49:30 +00006444
Victor Stinner8c62be82010-05-06 00:08:46 +00006445 if (PyUnicode_Check(v)) {
6446 arg_is_unicode = 1;
6447 }
6448 Py_DECREF(v);
Thomas Wouters89f507f2006-12-13 04:49:30 +00006449
Victor Stinner8c62be82010-05-06 00:08:46 +00006450 Py_BEGIN_ALLOW_THREADS
6451 n = readlink(path, buf, (int) sizeof buf);
6452 Py_END_ALLOW_THREADS
6453 if (n < 0)
6454 return posix_error_with_allocated_filename(opath);
Thomas Wouters89f507f2006-12-13 04:49:30 +00006455
Victor Stinner8c62be82010-05-06 00:08:46 +00006456 Py_DECREF(opath);
Victor Stinnera45598a2010-05-14 16:35:39 +00006457 if (arg_is_unicode)
6458 return PyUnicode_DecodeFSDefaultAndSize(buf, n);
6459 else
6460 return PyBytes_FromStringAndSize(buf, n);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00006461}
Guido van Rossumb6775db1994-08-01 11:34:53 +00006462#endif /* HAVE_READLINK */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00006463
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006464
Brian Curtin52173d42010-12-02 18:29:18 +00006465#if defined(HAVE_SYMLINK) && !defined(MS_WINDOWS)
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006466PyDoc_STRVAR(posix_symlink__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006467"symlink(src, dst)\n\n\
Brett Cannon807413d2003-06-11 00:18:09 +00006468Create a symbolic link pointing to src named dst.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006469
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006470static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006471posix_symlink(PyObject *self, PyObject *args)
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006472{
Victor Stinner8c62be82010-05-06 00:08:46 +00006473 return posix_2str(args, "O&O&:symlink", symlink);
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006474}
6475#endif /* HAVE_SYMLINK */
6476
Brian Curtind40e6f72010-07-08 21:39:08 +00006477#if !defined(HAVE_READLINK) && defined(MS_WINDOWS)
6478
6479PyDoc_STRVAR(win_readlink__doc__,
6480"readlink(path) -> path\n\n\
6481Return a string representing the path to which the symbolic link points.");
6482
Brian Curtind40e6f72010-07-08 21:39:08 +00006483/* Windows readlink implementation */
6484static PyObject *
6485win_readlink(PyObject *self, PyObject *args)
6486{
6487 wchar_t *path;
6488 DWORD n_bytes_returned;
6489 DWORD io_result;
Victor Stinnereb5657a2011-09-30 01:44:27 +02006490 PyObject *po, *result;
Brian Curtind40e6f72010-07-08 21:39:08 +00006491 HANDLE reparse_point_handle;
6492
6493 char target_buffer[MAXIMUM_REPARSE_DATA_BUFFER_SIZE];
6494 REPARSE_DATA_BUFFER *rdb = (REPARSE_DATA_BUFFER *)target_buffer;
6495 wchar_t *print_name;
6496
6497 if (!PyArg_ParseTuple(args,
Victor Stinnereb5657a2011-09-30 01:44:27 +02006498 "U:readlink",
6499 &po))
6500 return NULL;
6501 path = PyUnicode_AsUnicode(po);
6502 if (path == NULL)
Brian Curtind40e6f72010-07-08 21:39:08 +00006503 return NULL;
6504
6505 /* First get a handle to the reparse point */
6506 Py_BEGIN_ALLOW_THREADS
6507 reparse_point_handle = CreateFileW(
6508 path,
6509 0,
6510 0,
6511 0,
6512 OPEN_EXISTING,
6513 FILE_FLAG_OPEN_REPARSE_POINT|FILE_FLAG_BACKUP_SEMANTICS,
6514 0);
6515 Py_END_ALLOW_THREADS
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00006516
Brian Curtind40e6f72010-07-08 21:39:08 +00006517 if (reparse_point_handle==INVALID_HANDLE_VALUE)
Victor Stinnereb5657a2011-09-30 01:44:27 +02006518 return win32_error_object("readlink", po);
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00006519
Brian Curtind40e6f72010-07-08 21:39:08 +00006520 Py_BEGIN_ALLOW_THREADS
6521 /* New call DeviceIoControl to read the reparse point */
6522 io_result = DeviceIoControl(
6523 reparse_point_handle,
6524 FSCTL_GET_REPARSE_POINT,
6525 0, 0, /* in buffer */
6526 target_buffer, sizeof(target_buffer),
6527 &n_bytes_returned,
6528 0 /* we're not using OVERLAPPED_IO */
6529 );
6530 CloseHandle(reparse_point_handle);
6531 Py_END_ALLOW_THREADS
6532
6533 if (io_result==0)
Victor Stinnereb5657a2011-09-30 01:44:27 +02006534 return win32_error_object("readlink", po);
Brian Curtind40e6f72010-07-08 21:39:08 +00006535
6536 if (rdb->ReparseTag != IO_REPARSE_TAG_SYMLINK)
6537 {
6538 PyErr_SetString(PyExc_ValueError,
6539 "not a symbolic link");
6540 return NULL;
6541 }
Brian Curtin74e45612010-07-09 15:58:59 +00006542 print_name = rdb->SymbolicLinkReparseBuffer.PathBuffer +
6543 rdb->SymbolicLinkReparseBuffer.PrintNameOffset;
6544
6545 result = PyUnicode_FromWideChar(print_name,
6546 rdb->SymbolicLinkReparseBuffer.PrintNameLength/2);
Brian Curtind40e6f72010-07-08 21:39:08 +00006547 return result;
6548}
6549
6550#endif /* !defined(HAVE_READLINK) && defined(MS_WINDOWS) */
6551
Brian Curtin52173d42010-12-02 18:29:18 +00006552#if defined(HAVE_SYMLINK) && defined(MS_WINDOWS)
Brian Curtind40e6f72010-07-08 21:39:08 +00006553
6554/* Grab CreateSymbolicLinkW dynamically from kernel32 */
6555static int has_CreateSymbolicLinkW = 0;
6556static DWORD (CALLBACK *Py_CreateSymbolicLinkW)(LPWSTR, LPWSTR, DWORD);
6557static int
6558check_CreateSymbolicLinkW()
6559{
6560 HINSTANCE hKernel32;
6561 /* only recheck */
6562 if (has_CreateSymbolicLinkW)
6563 return has_CreateSymbolicLinkW;
Martin v. Löwis50590f12012-01-14 17:54:09 +01006564 hKernel32 = GetModuleHandleW(L"KERNEL32");
Brian Curtin74e45612010-07-09 15:58:59 +00006565 *(FARPROC*)&Py_CreateSymbolicLinkW = GetProcAddress(hKernel32,
6566 "CreateSymbolicLinkW");
Brian Curtind40e6f72010-07-08 21:39:08 +00006567 if (Py_CreateSymbolicLinkW)
6568 has_CreateSymbolicLinkW = 1;
6569 return has_CreateSymbolicLinkW;
6570}
6571
6572PyDoc_STRVAR(win_symlink__doc__,
6573"symlink(src, dst, target_is_directory=False)\n\n\
6574Create a symbolic link pointing to src named dst.\n\
6575target_is_directory is required if the target is to be interpreted as\n\
6576a directory.\n\
6577This function requires Windows 6.0 or greater, and raises a\n\
6578NotImplementedError otherwise.");
6579
6580static PyObject *
6581win_symlink(PyObject *self, PyObject *args, PyObject *kwargs)
6582{
6583 static char *kwlist[] = {"src", "dest", "target_is_directory", NULL};
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01006584 PyObject *osrc, *odest;
6585 PyObject *usrc = NULL, *udest = NULL;
Victor Stinnereb5657a2011-09-30 01:44:27 +02006586 wchar_t *wsrc, *wdest;
Brian Curtind40e6f72010-07-08 21:39:08 +00006587 int target_is_directory = 0;
6588 DWORD res;
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00006589
Brian Curtind40e6f72010-07-08 21:39:08 +00006590 if (!check_CreateSymbolicLinkW())
6591 {
6592 /* raise NotImplementedError */
6593 return PyErr_Format(PyExc_NotImplementedError,
6594 "CreateSymbolicLinkW not found");
6595 }
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01006596 if (!PyArg_ParseTupleAndKeywords(
6597 args, kwargs, "OO|i:symlink", kwlist,
6598 &osrc, &odest, &target_is_directory))
Brian Curtind40e6f72010-07-08 21:39:08 +00006599 return NULL;
Brian Curtin3b4499c2010-12-28 14:31:47 +00006600
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01006601 usrc = win32_decode_filename(osrc);
6602 if (!usrc)
6603 return NULL;
6604 udest = win32_decode_filename(odest);
6605 if (!udest)
6606 goto error;
6607
Brian Curtin3b4499c2010-12-28 14:31:47 +00006608 if (win32_can_symlink == 0)
6609 return PyErr_Format(PyExc_OSError, "symbolic link privilege not held");
6610
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01006611 wsrc = PyUnicode_AsUnicode(usrc);
Victor Stinnereb5657a2011-09-30 01:44:27 +02006612 if (wsrc == NULL)
6613 goto error;
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01006614 wdest = PyUnicode_AsUnicode(udest);
Victor Stinnereb5657a2011-09-30 01:44:27 +02006615 if (wsrc == NULL)
6616 goto error;
6617
Brian Curtind40e6f72010-07-08 21:39:08 +00006618 Py_BEGIN_ALLOW_THREADS
Victor Stinnereb5657a2011-09-30 01:44:27 +02006619 res = Py_CreateSymbolicLinkW(wdest, wsrc, target_is_directory);
Brian Curtind40e6f72010-07-08 21:39:08 +00006620 Py_END_ALLOW_THREADS
Victor Stinnereb5657a2011-09-30 01:44:27 +02006621
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01006622 Py_DECREF(usrc);
6623 Py_DECREF(udest);
Brian Curtind40e6f72010-07-08 21:39:08 +00006624 if (!res)
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01006625 return win32_error_object("symlink", osrc);
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00006626
Brian Curtind40e6f72010-07-08 21:39:08 +00006627 Py_INCREF(Py_None);
6628 return Py_None;
Victor Stinnereb5657a2011-09-30 01:44:27 +02006629
6630error:
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01006631 Py_XDECREF(usrc);
6632 Py_XDECREF(udest);
Victor Stinnereb5657a2011-09-30 01:44:27 +02006633 return NULL;
Brian Curtind40e6f72010-07-08 21:39:08 +00006634}
Brian Curtin52173d42010-12-02 18:29:18 +00006635#endif /* defined(HAVE_SYMLINK) && defined(MS_WINDOWS) */
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006636
6637#ifdef HAVE_TIMES
Guido van Rossumd48f2521997-12-05 22:19:34 +00006638#if defined(PYCC_VACPP) && defined(PYOS_OS2)
6639static long
Thomas Woutersf3f33dc2000-07-21 06:00:07 +00006640system_uptime(void)
Guido van Rossumd48f2521997-12-05 22:19:34 +00006641{
6642 ULONG value = 0;
6643
6644 Py_BEGIN_ALLOW_THREADS
6645 DosQuerySysInfo(QSV_MS_COUNT, QSV_MS_COUNT, &value, sizeof(value));
6646 Py_END_ALLOW_THREADS
6647
6648 return value;
6649}
6650
6651static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00006652posix_times(PyObject *self, PyObject *noargs)
Guido van Rossumd48f2521997-12-05 22:19:34 +00006653{
Guido van Rossumd48f2521997-12-05 22:19:34 +00006654 /* Currently Only Uptime is Provided -- Others Later */
Victor Stinner8c62be82010-05-06 00:08:46 +00006655 return Py_BuildValue("ddddd",
6656 (double)0 /* t.tms_utime / HZ */,
6657 (double)0 /* t.tms_stime / HZ */,
6658 (double)0 /* t.tms_cutime / HZ */,
6659 (double)0 /* t.tms_cstime / HZ */,
6660 (double)system_uptime() / 1000);
Guido van Rossumd48f2521997-12-05 22:19:34 +00006661}
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006662#else /* not OS2 */
Martin v. Löwis05bfe1f2008-12-29 18:21:47 +00006663#define NEED_TICKS_PER_SECOND
6664static long ticks_per_second = -1;
Barry Warsaw53699e91996-12-10 23:23:01 +00006665static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00006666posix_times(PyObject *self, PyObject *noargs)
Guido van Rossum22db57e1992-04-05 14:25:30 +00006667{
Victor Stinner8c62be82010-05-06 00:08:46 +00006668 struct tms t;
6669 clock_t c;
6670 errno = 0;
6671 c = times(&t);
6672 if (c == (clock_t) -1)
6673 return posix_error();
6674 return Py_BuildValue("ddddd",
6675 (double)t.tms_utime / ticks_per_second,
6676 (double)t.tms_stime / ticks_per_second,
6677 (double)t.tms_cutime / ticks_per_second,
6678 (double)t.tms_cstime / ticks_per_second,
6679 (double)c / ticks_per_second);
Guido van Rossum22db57e1992-04-05 14:25:30 +00006680}
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006681#endif /* not OS2 */
Guido van Rossumb6775db1994-08-01 11:34:53 +00006682#endif /* HAVE_TIMES */
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006683
6684
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006685#ifdef MS_WINDOWS
Victor Stinner8c62be82010-05-06 00:08:46 +00006686#define HAVE_TIMES /* so the method table will pick it up */
Barry Warsaw53699e91996-12-10 23:23:01 +00006687static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00006688posix_times(PyObject *self, PyObject *noargs)
Guido van Rossum14ed0b21994-09-29 09:50:09 +00006689{
Victor Stinner8c62be82010-05-06 00:08:46 +00006690 FILETIME create, exit, kernel, user;
6691 HANDLE hProc;
6692 hProc = GetCurrentProcess();
6693 GetProcessTimes(hProc, &create, &exit, &kernel, &user);
6694 /* The fields of a FILETIME structure are the hi and lo part
6695 of a 64-bit value expressed in 100 nanosecond units.
6696 1e7 is one second in such units; 1e-7 the inverse.
6697 429.4967296 is 2**32 / 1e7 or 2**32 * 1e-7.
6698 */
6699 return Py_BuildValue(
6700 "ddddd",
6701 (double)(user.dwHighDateTime*429.4967296 +
6702 user.dwLowDateTime*1e-7),
6703 (double)(kernel.dwHighDateTime*429.4967296 +
6704 kernel.dwLowDateTime*1e-7),
6705 (double)0,
6706 (double)0,
6707 (double)0);
Guido van Rossum14ed0b21994-09-29 09:50:09 +00006708}
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006709#endif /* MS_WINDOWS */
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006710
6711#ifdef HAVE_TIMES
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006712PyDoc_STRVAR(posix_times__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006713"times() -> (utime, stime, cutime, cstime, elapsed_time)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006714Return a tuple of floating point numbers indicating process times.");
Guido van Rossumbfaf3d61997-12-29 20:02:27 +00006715#endif
Guido van Rossum22db57e1992-04-05 14:25:30 +00006716
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006717
Martin v. Löwis49ee14d2003-11-10 06:35:36 +00006718#ifdef HAVE_GETSID
6719PyDoc_STRVAR(posix_getsid__doc__,
6720"getsid(pid) -> sid\n\n\
6721Call the system call getsid().");
6722
6723static PyObject *
6724posix_getsid(PyObject *self, PyObject *args)
6725{
Victor Stinner8c62be82010-05-06 00:08:46 +00006726 pid_t pid;
6727 int sid;
6728 if (!PyArg_ParseTuple(args, _Py_PARSE_PID ":getsid", &pid))
6729 return NULL;
6730 sid = getsid(pid);
6731 if (sid < 0)
6732 return posix_error();
6733 return PyLong_FromLong((long)sid);
Martin v. Löwis49ee14d2003-11-10 06:35:36 +00006734}
6735#endif /* HAVE_GETSID */
6736
6737
Guido van Rossumb6775db1994-08-01 11:34:53 +00006738#ifdef HAVE_SETSID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006739PyDoc_STRVAR(posix_setsid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006740"setsid()\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006741Call the system call setsid().");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006742
Barry Warsaw53699e91996-12-10 23:23:01 +00006743static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00006744posix_setsid(PyObject *self, PyObject *noargs)
Guido van Rossumc2670a01992-09-13 20:07:29 +00006745{
Victor Stinner8c62be82010-05-06 00:08:46 +00006746 if (setsid() < 0)
6747 return posix_error();
6748 Py_INCREF(Py_None);
6749 return Py_None;
Guido van Rossumc2670a01992-09-13 20:07:29 +00006750}
Guido van Rossumb6775db1994-08-01 11:34:53 +00006751#endif /* HAVE_SETSID */
Guido van Rossumc2670a01992-09-13 20:07:29 +00006752
Guido van Rossumb6775db1994-08-01 11:34:53 +00006753#ifdef HAVE_SETPGID
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006754PyDoc_STRVAR(posix_setpgid__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006755"setpgid(pid, pgrp)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006756Call the system call setpgid().");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006757
Barry Warsaw53699e91996-12-10 23:23:01 +00006758static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006759posix_setpgid(PyObject *self, PyObject *args)
Guido van Rossumc2670a01992-09-13 20:07:29 +00006760{
Victor Stinner8c62be82010-05-06 00:08:46 +00006761 pid_t pid;
6762 int pgrp;
6763 if (!PyArg_ParseTuple(args, _Py_PARSE_PID "i:setpgid", &pid, &pgrp))
6764 return NULL;
6765 if (setpgid(pid, pgrp) < 0)
6766 return posix_error();
6767 Py_INCREF(Py_None);
6768 return Py_None;
Guido van Rossumc2670a01992-09-13 20:07:29 +00006769}
Guido van Rossumb6775db1994-08-01 11:34:53 +00006770#endif /* HAVE_SETPGID */
Guido van Rossumc2670a01992-09-13 20:07:29 +00006771
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006772
Guido van Rossumb6775db1994-08-01 11:34:53 +00006773#ifdef HAVE_TCGETPGRP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006774PyDoc_STRVAR(posix_tcgetpgrp__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006775"tcgetpgrp(fd) -> pgid\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006776Return the process group associated with the terminal given by a fd.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006777
Barry Warsaw53699e91996-12-10 23:23:01 +00006778static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006779posix_tcgetpgrp(PyObject *self, PyObject *args)
Guido van Rossum7066dd71992-09-17 17:54:56 +00006780{
Victor Stinner8c62be82010-05-06 00:08:46 +00006781 int fd;
6782 pid_t pgid;
6783 if (!PyArg_ParseTuple(args, "i:tcgetpgrp", &fd))
6784 return NULL;
6785 pgid = tcgetpgrp(fd);
6786 if (pgid < 0)
6787 return posix_error();
6788 return PyLong_FromPid(pgid);
Guido van Rossum7066dd71992-09-17 17:54:56 +00006789}
Guido van Rossumb6775db1994-08-01 11:34:53 +00006790#endif /* HAVE_TCGETPGRP */
Guido van Rossum7066dd71992-09-17 17:54:56 +00006791
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006792
Guido van Rossumb6775db1994-08-01 11:34:53 +00006793#ifdef HAVE_TCSETPGRP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006794PyDoc_STRVAR(posix_tcsetpgrp__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006795"tcsetpgrp(fd, pgid)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006796Set the process group associated with the terminal given by a fd.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006797
Barry Warsaw53699e91996-12-10 23:23:01 +00006798static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006799posix_tcsetpgrp(PyObject *self, PyObject *args)
Guido van Rossum7066dd71992-09-17 17:54:56 +00006800{
Victor Stinner8c62be82010-05-06 00:08:46 +00006801 int fd;
6802 pid_t pgid;
6803 if (!PyArg_ParseTuple(args, "i" _Py_PARSE_PID ":tcsetpgrp", &fd, &pgid))
6804 return NULL;
6805 if (tcsetpgrp(fd, pgid) < 0)
6806 return posix_error();
6807 Py_INCREF(Py_None);
6808 return Py_None;
Guido van Rossum7066dd71992-09-17 17:54:56 +00006809}
Guido van Rossumb6775db1994-08-01 11:34:53 +00006810#endif /* HAVE_TCSETPGRP */
Guido van Rossum22db57e1992-04-05 14:25:30 +00006811
Guido van Rossum687dd131993-05-17 08:34:16 +00006812/* Functions acting on file descriptors */
6813
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006814PyDoc_STRVAR(posix_open__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006815"open(filename, flag [, mode=0777]) -> fd\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006816Open a file (for low level IO).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006817
Barry Warsaw53699e91996-12-10 23:23:01 +00006818static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006819posix_open(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006820{
Victor Stinner8c62be82010-05-06 00:08:46 +00006821 PyObject *ofile;
6822 char *file;
6823 int flag;
6824 int mode = 0777;
6825 int fd;
Mark Hammondc2e85bd2002-10-03 05:10:39 +00006826
6827#ifdef MS_WINDOWS
Victor Stinnereb5657a2011-09-30 01:44:27 +02006828 PyObject *po;
Victor Stinner26de69d2011-06-17 15:15:38 +02006829 if (PyArg_ParseTuple(args, "Ui|i:open", &po, &flag, &mode)) {
Victor Stinnereb5657a2011-09-30 01:44:27 +02006830 wchar_t *wpath = PyUnicode_AsUnicode(po);
6831 if (wpath == NULL)
6832 return NULL;
6833
Victor Stinner8c62be82010-05-06 00:08:46 +00006834 Py_BEGIN_ALLOW_THREADS
Victor Stinnereb5657a2011-09-30 01:44:27 +02006835 fd = _wopen(wpath, flag, mode);
Victor Stinner8c62be82010-05-06 00:08:46 +00006836 Py_END_ALLOW_THREADS
6837 if (fd < 0)
6838 return posix_error();
6839 return PyLong_FromLong((long)fd);
6840 }
6841 /* Drop the argument parsing error as narrow strings
6842 are also valid. */
6843 PyErr_Clear();
Mark Hammondc2e85bd2002-10-03 05:10:39 +00006844#endif
6845
Victor Stinner26de69d2011-06-17 15:15:38 +02006846 if (!PyArg_ParseTuple(args, "O&i|i:open",
Victor Stinner8c62be82010-05-06 00:08:46 +00006847 PyUnicode_FSConverter, &ofile,
6848 &flag, &mode))
6849 return NULL;
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01006850#ifdef MS_WINDOWS
6851 if (win32_warn_bytes_api()) {
6852 Py_DECREF(ofile);
6853 return NULL;
6854 }
6855#endif
Victor Stinner8c62be82010-05-06 00:08:46 +00006856 file = PyBytes_AsString(ofile);
6857 Py_BEGIN_ALLOW_THREADS
6858 fd = open(file, flag, mode);
6859 Py_END_ALLOW_THREADS
6860 if (fd < 0)
6861 return posix_error_with_allocated_filename(ofile);
6862 Py_DECREF(ofile);
6863 return PyLong_FromLong((long)fd);
Guido van Rossum687dd131993-05-17 08:34:16 +00006864}
6865
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006866
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006867PyDoc_STRVAR(posix_close__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006868"close(fd)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006869Close a file descriptor (for low level IO).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006870
Barry Warsaw53699e91996-12-10 23:23:01 +00006871static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006872posix_close(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006873{
Victor Stinner8c62be82010-05-06 00:08:46 +00006874 int fd, res;
6875 if (!PyArg_ParseTuple(args, "i:close", &fd))
6876 return NULL;
6877 if (!_PyVerify_fd(fd))
6878 return posix_error();
6879 Py_BEGIN_ALLOW_THREADS
6880 res = close(fd);
6881 Py_END_ALLOW_THREADS
6882 if (res < 0)
6883 return posix_error();
6884 Py_INCREF(Py_None);
6885 return Py_None;
Guido van Rossum687dd131993-05-17 08:34:16 +00006886}
6887
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006888
Victor Stinner8c62be82010-05-06 00:08:46 +00006889PyDoc_STRVAR(posix_closerange__doc__,
Christian Heimesfdab48e2008-01-20 09:06:41 +00006890"closerange(fd_low, fd_high)\n\n\
6891Closes all file descriptors in [fd_low, fd_high), ignoring errors.");
6892
6893static PyObject *
6894posix_closerange(PyObject *self, PyObject *args)
6895{
Victor Stinner8c62be82010-05-06 00:08:46 +00006896 int fd_from, fd_to, i;
6897 if (!PyArg_ParseTuple(args, "ii:closerange", &fd_from, &fd_to))
6898 return NULL;
6899 Py_BEGIN_ALLOW_THREADS
6900 for (i = fd_from; i < fd_to; i++)
6901 if (_PyVerify_fd(i))
6902 close(i);
6903 Py_END_ALLOW_THREADS
6904 Py_RETURN_NONE;
Christian Heimesfdab48e2008-01-20 09:06:41 +00006905}
6906
6907
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006908PyDoc_STRVAR(posix_dup__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006909"dup(fd) -> fd2\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006910Return a duplicate of a file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006911
Barry Warsaw53699e91996-12-10 23:23:01 +00006912static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006913posix_dup(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006914{
Victor Stinner8c62be82010-05-06 00:08:46 +00006915 int fd;
6916 if (!PyArg_ParseTuple(args, "i:dup", &fd))
6917 return NULL;
6918 if (!_PyVerify_fd(fd))
6919 return posix_error();
Victor Stinner8c62be82010-05-06 00:08:46 +00006920 fd = dup(fd);
Victor Stinner8c62be82010-05-06 00:08:46 +00006921 if (fd < 0)
6922 return posix_error();
6923 return PyLong_FromLong((long)fd);
Guido van Rossum687dd131993-05-17 08:34:16 +00006924}
6925
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006926
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006927PyDoc_STRVAR(posix_dup2__doc__,
Andrew M. Kuchling8135fd52004-01-16 13:18:42 +00006928"dup2(old_fd, new_fd)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006929Duplicate file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006930
Barry Warsaw53699e91996-12-10 23:23:01 +00006931static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006932posix_dup2(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006933{
Victor Stinner8c62be82010-05-06 00:08:46 +00006934 int fd, fd2, res;
6935 if (!PyArg_ParseTuple(args, "ii:dup2", &fd, &fd2))
6936 return NULL;
6937 if (!_PyVerify_fd_dup2(fd, fd2))
6938 return posix_error();
Victor Stinner8c62be82010-05-06 00:08:46 +00006939 res = dup2(fd, fd2);
Victor Stinner8c62be82010-05-06 00:08:46 +00006940 if (res < 0)
6941 return posix_error();
6942 Py_INCREF(Py_None);
6943 return Py_None;
Guido van Rossum687dd131993-05-17 08:34:16 +00006944}
6945
Ross Lagerwall7807c352011-03-17 20:20:30 +02006946#ifdef HAVE_LOCKF
6947PyDoc_STRVAR(posix_lockf__doc__,
6948"lockf(fd, cmd, len)\n\n\
6949Apply, test or remove a POSIX lock on an open file descriptor.\n\n\
6950fd is an open file descriptor.\n\
6951cmd specifies the command to use - one of F_LOCK, F_TLOCK, F_ULOCK or\n\
6952F_TEST.\n\
6953len specifies the section of the file to lock.");
6954
6955static PyObject *
6956posix_lockf(PyObject *self, PyObject *args)
6957{
6958 int fd, cmd, res;
6959 off_t len;
6960 if (!PyArg_ParseTuple(args, "iiO&:lockf",
6961 &fd, &cmd, _parse_off_t, &len))
6962 return NULL;
6963
6964 Py_BEGIN_ALLOW_THREADS
6965 res = lockf(fd, cmd, len);
6966 Py_END_ALLOW_THREADS
6967
6968 if (res < 0)
6969 return posix_error();
6970
6971 Py_RETURN_NONE;
6972}
6973#endif
6974
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006975
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00006976PyDoc_STRVAR(posix_lseek__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00006977"lseek(fd, pos, how) -> newpos\n\n\
Victor Stinnere83f8992011-12-17 23:15:09 +01006978Set the current position of a file descriptor.\n\
6979Return the new cursor position in bytes, starting from the beginning.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00006980
Barry Warsaw53699e91996-12-10 23:23:01 +00006981static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00006982posix_lseek(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00006983{
Victor Stinner8c62be82010-05-06 00:08:46 +00006984 int fd, how;
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00006985#if defined(MS_WIN64) || defined(MS_WINDOWS)
Victor Stinner8c62be82010-05-06 00:08:46 +00006986 PY_LONG_LONG pos, res;
Fred Drake699f3522000-06-29 21:12:41 +00006987#else
Victor Stinner8c62be82010-05-06 00:08:46 +00006988 off_t pos, res;
Fred Drake699f3522000-06-29 21:12:41 +00006989#endif
Ross Lagerwall8e749672011-03-17 21:54:07 +02006990 PyObject *posobj;
6991 if (!PyArg_ParseTuple(args, "iOi:lseek", &fd, &posobj, &how))
Victor Stinner8c62be82010-05-06 00:08:46 +00006992 return NULL;
Guido van Rossum687dd131993-05-17 08:34:16 +00006993#ifdef SEEK_SET
Victor Stinner8c62be82010-05-06 00:08:46 +00006994 /* Turn 0, 1, 2 into SEEK_{SET,CUR,END} */
6995 switch (how) {
6996 case 0: how = SEEK_SET; break;
6997 case 1: how = SEEK_CUR; break;
6998 case 2: how = SEEK_END; break;
6999 }
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00007000#endif /* SEEK_END */
Guido van Rossum94f6f721999-01-06 18:42:14 +00007001
Ross Lagerwall8e749672011-03-17 21:54:07 +02007002#if !defined(HAVE_LARGEFILE_SUPPORT)
7003 pos = PyLong_AsLong(posobj);
7004#else
7005 pos = PyLong_AsLongLong(posobj);
7006#endif
Victor Stinner8c62be82010-05-06 00:08:46 +00007007 if (PyErr_Occurred())
7008 return NULL;
Guido van Rossum94f6f721999-01-06 18:42:14 +00007009
Victor Stinner8c62be82010-05-06 00:08:46 +00007010 if (!_PyVerify_fd(fd))
7011 return posix_error();
7012 Py_BEGIN_ALLOW_THREADS
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00007013#if defined(MS_WIN64) || defined(MS_WINDOWS)
Victor Stinner8c62be82010-05-06 00:08:46 +00007014 res = _lseeki64(fd, pos, how);
Fred Drake699f3522000-06-29 21:12:41 +00007015#else
Victor Stinner8c62be82010-05-06 00:08:46 +00007016 res = lseek(fd, pos, how);
Fred Drake699f3522000-06-29 21:12:41 +00007017#endif
Victor Stinner8c62be82010-05-06 00:08:46 +00007018 Py_END_ALLOW_THREADS
7019 if (res < 0)
7020 return posix_error();
Guido van Rossum94f6f721999-01-06 18:42:14 +00007021
7022#if !defined(HAVE_LARGEFILE_SUPPORT)
Victor Stinner8c62be82010-05-06 00:08:46 +00007023 return PyLong_FromLong(res);
Guido van Rossum94f6f721999-01-06 18:42:14 +00007024#else
Victor Stinner8c62be82010-05-06 00:08:46 +00007025 return PyLong_FromLongLong(res);
Guido van Rossum94f6f721999-01-06 18:42:14 +00007026#endif
Guido van Rossum687dd131993-05-17 08:34:16 +00007027}
7028
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00007029
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007030PyDoc_STRVAR(posix_read__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007031"read(fd, buffersize) -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007032Read a file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00007033
Barry Warsaw53699e91996-12-10 23:23:01 +00007034static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007035posix_read(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00007036{
Victor Stinner8c62be82010-05-06 00:08:46 +00007037 int fd, size;
7038 Py_ssize_t n;
7039 PyObject *buffer;
7040 if (!PyArg_ParseTuple(args, "ii:read", &fd, &size))
7041 return NULL;
7042 if (size < 0) {
7043 errno = EINVAL;
7044 return posix_error();
7045 }
7046 buffer = PyBytes_FromStringAndSize((char *)NULL, size);
7047 if (buffer == NULL)
7048 return NULL;
Stefan Krah99439262010-11-26 12:58:05 +00007049 if (!_PyVerify_fd(fd)) {
7050 Py_DECREF(buffer);
Victor Stinner8c62be82010-05-06 00:08:46 +00007051 return posix_error();
Stefan Krah99439262010-11-26 12:58:05 +00007052 }
Victor Stinner8c62be82010-05-06 00:08:46 +00007053 Py_BEGIN_ALLOW_THREADS
7054 n = read(fd, PyBytes_AS_STRING(buffer), size);
7055 Py_END_ALLOW_THREADS
7056 if (n < 0) {
7057 Py_DECREF(buffer);
7058 return posix_error();
7059 }
7060 if (n != size)
7061 _PyBytes_Resize(&buffer, n);
7062 return buffer;
Guido van Rossum687dd131993-05-17 08:34:16 +00007063}
7064
Ross Lagerwall7807c352011-03-17 20:20:30 +02007065#if (defined(HAVE_SENDFILE) && (defined(__FreeBSD__) || defined(__DragonFly__) \
7066 || defined(__APPLE__))) || defined(HAVE_READV) || defined(HAVE_WRITEV)
Giampaolo Rodolàacdad9a2011-03-03 16:10:51 +00007067static Py_ssize_t
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00007068iov_setup(struct iovec **iov, Py_buffer **buf, PyObject *seq, int cnt, int type)
7069{
7070 int i, j;
Giampaolo Rodolàacdad9a2011-03-03 16:10:51 +00007071 Py_ssize_t blen, total = 0;
7072
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00007073 *iov = PyMem_New(struct iovec, cnt);
7074 if (*iov == NULL) {
7075 PyErr_NoMemory();
Giampaolo Rodolàacdad9a2011-03-03 16:10:51 +00007076 return total;
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00007077 }
Giampaolo Rodolàacdad9a2011-03-03 16:10:51 +00007078
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00007079 *buf = PyMem_New(Py_buffer, cnt);
7080 if (*buf == NULL) {
7081 PyMem_Del(*iov);
7082 PyErr_NoMemory();
Giampaolo Rodolàacdad9a2011-03-03 16:10:51 +00007083 return total;
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00007084 }
7085
7086 for (i = 0; i < cnt; i++) {
Ross Lagerwall9ad63e02011-03-19 09:11:14 +02007087 PyObject *item = PySequence_GetItem(seq, i);
7088 if (item == NULL)
7089 goto fail;
7090 if (PyObject_GetBuffer(item, &(*buf)[i], type) == -1) {
7091 Py_DECREF(item);
7092 goto fail;
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00007093 }
Ross Lagerwall9ad63e02011-03-19 09:11:14 +02007094 Py_DECREF(item);
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00007095 (*iov)[i].iov_base = (*buf)[i].buf;
Giampaolo Rodolàacdad9a2011-03-03 16:10:51 +00007096 blen = (*buf)[i].len;
7097 (*iov)[i].iov_len = blen;
7098 total += blen;
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00007099 }
Giampaolo Rodolàacdad9a2011-03-03 16:10:51 +00007100 return total;
Ross Lagerwall9ad63e02011-03-19 09:11:14 +02007101
7102fail:
7103 PyMem_Del(*iov);
7104 for (j = 0; j < i; j++) {
7105 PyBuffer_Release(&(*buf)[j]);
7106 }
7107 PyMem_Del(*buf);
7108 return 0;
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00007109}
7110
7111static void
7112iov_cleanup(struct iovec *iov, Py_buffer *buf, int cnt)
7113{
7114 int i;
7115 PyMem_Del(iov);
7116 for (i = 0; i < cnt; i++) {
7117 PyBuffer_Release(&buf[i]);
7118 }
7119 PyMem_Del(buf);
7120}
7121#endif
7122
Ross Lagerwall7807c352011-03-17 20:20:30 +02007123#ifdef HAVE_READV
7124PyDoc_STRVAR(posix_readv__doc__,
7125"readv(fd, buffers) -> bytesread\n\n\
7126Read from a file descriptor into a number of writable buffers. buffers\n\
7127is an arbitrary sequence of writable buffers.\n\
7128Returns the total number of bytes read.");
7129
7130static PyObject *
7131posix_readv(PyObject *self, PyObject *args)
7132{
7133 int fd, cnt;
7134 Py_ssize_t n;
7135 PyObject *seq;
7136 struct iovec *iov;
7137 Py_buffer *buf;
7138
7139 if (!PyArg_ParseTuple(args, "iO:readv", &fd, &seq))
7140 return NULL;
7141 if (!PySequence_Check(seq)) {
7142 PyErr_SetString(PyExc_TypeError,
7143 "readv() arg 2 must be a sequence");
7144 return NULL;
7145 }
7146 cnt = PySequence_Size(seq);
7147
7148 if (!iov_setup(&iov, &buf, seq, cnt, PyBUF_WRITABLE))
7149 return NULL;
7150
7151 Py_BEGIN_ALLOW_THREADS
7152 n = readv(fd, iov, cnt);
7153 Py_END_ALLOW_THREADS
7154
7155 iov_cleanup(iov, buf, cnt);
7156 return PyLong_FromSsize_t(n);
7157}
7158#endif
7159
7160#ifdef HAVE_PREAD
7161PyDoc_STRVAR(posix_pread__doc__,
7162"pread(fd, buffersize, offset) -> string\n\n\
7163Read from a file descriptor, fd, at a position of offset. It will read up\n\
7164to buffersize number of bytes. The file offset remains unchanged.");
7165
7166static PyObject *
7167posix_pread(PyObject *self, PyObject *args)
7168{
7169 int fd, size;
7170 off_t offset;
7171 Py_ssize_t n;
7172 PyObject *buffer;
7173 if (!PyArg_ParseTuple(args, "iiO&:pread", &fd, &size, _parse_off_t, &offset))
7174 return NULL;
7175
7176 if (size < 0) {
7177 errno = EINVAL;
7178 return posix_error();
7179 }
7180 buffer = PyBytes_FromStringAndSize((char *)NULL, size);
7181 if (buffer == NULL)
7182 return NULL;
7183 if (!_PyVerify_fd(fd)) {
7184 Py_DECREF(buffer);
7185 return posix_error();
7186 }
7187 Py_BEGIN_ALLOW_THREADS
7188 n = pread(fd, PyBytes_AS_STRING(buffer), size, offset);
7189 Py_END_ALLOW_THREADS
7190 if (n < 0) {
7191 Py_DECREF(buffer);
7192 return posix_error();
7193 }
7194 if (n != size)
7195 _PyBytes_Resize(&buffer, n);
7196 return buffer;
7197}
7198#endif
7199
7200PyDoc_STRVAR(posix_write__doc__,
7201"write(fd, string) -> byteswritten\n\n\
7202Write a string to a file descriptor.");
7203
7204static PyObject *
7205posix_write(PyObject *self, PyObject *args)
7206{
7207 Py_buffer pbuf;
7208 int fd;
7209 Py_ssize_t size, len;
7210
7211 if (!PyArg_ParseTuple(args, "iy*:write", &fd, &pbuf))
7212 return NULL;
7213 if (!_PyVerify_fd(fd)) {
7214 PyBuffer_Release(&pbuf);
7215 return posix_error();
7216 }
7217 len = pbuf.len;
7218 Py_BEGIN_ALLOW_THREADS
7219#if defined(MS_WIN64) || defined(MS_WINDOWS)
7220 if (len > INT_MAX)
7221 len = INT_MAX;
7222 size = write(fd, pbuf.buf, (int)len);
7223#else
7224 size = write(fd, pbuf.buf, len);
7225#endif
7226 Py_END_ALLOW_THREADS
7227 PyBuffer_Release(&pbuf);
7228 if (size < 0)
7229 return posix_error();
7230 return PyLong_FromSsize_t(size);
7231}
7232
7233#ifdef HAVE_SENDFILE
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00007234PyDoc_STRVAR(posix_sendfile__doc__,
7235"sendfile(out, in, offset, nbytes) -> byteswritten\n\
7236sendfile(out, in, offset, nbytes, headers=None, trailers=None, flags=0)\n\
7237 -> byteswritten\n\
7238Copy nbytes bytes from file descriptor in to file descriptor out.");
7239
7240static PyObject *
7241posix_sendfile(PyObject *self, PyObject *args, PyObject *kwdict)
7242{
7243 int in, out;
7244 Py_ssize_t ret;
7245 off_t offset;
7246
7247#if defined(__FreeBSD__) || defined(__DragonFly__) || defined(__APPLE__)
7248#ifndef __APPLE__
7249 Py_ssize_t len;
7250#endif
7251 PyObject *headers = NULL, *trailers = NULL;
7252 Py_buffer *hbuf, *tbuf;
7253 off_t sbytes;
7254 struct sf_hdtr sf;
7255 int flags = 0;
7256 sf.headers = NULL;
7257 sf.trailers = NULL;
Benjamin Petersond8a43b42011-02-26 21:35:16 +00007258 static char *keywords[] = {"out", "in",
7259 "offset", "count",
7260 "headers", "trailers", "flags", NULL};
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00007261
7262#ifdef __APPLE__
7263 if (!PyArg_ParseTupleAndKeywords(args, kwdict, "iiO&O&|OOi:sendfile",
Georg Brandla391b112011-02-25 15:23:18 +00007264 keywords, &out, &in, _parse_off_t, &offset, _parse_off_t, &sbytes,
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00007265#else
7266 if (!PyArg_ParseTupleAndKeywords(args, kwdict, "iiO&n|OOi:sendfile",
Georg Brandla391b112011-02-25 15:23:18 +00007267 keywords, &out, &in, _parse_off_t, &offset, &len,
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00007268#endif
7269 &headers, &trailers, &flags))
7270 return NULL;
7271 if (headers != NULL) {
7272 if (!PySequence_Check(headers)) {
7273 PyErr_SetString(PyExc_TypeError,
7274 "sendfile() headers must be a sequence or None");
7275 return NULL;
7276 } else {
Giampaolo Rodolàacdad9a2011-03-03 16:10:51 +00007277 Py_ssize_t i = 0; /* Avoid uninitialized warning */
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00007278 sf.hdr_cnt = PySequence_Size(headers);
Giampaolo Rodolàacdad9a2011-03-03 16:10:51 +00007279 if (sf.hdr_cnt > 0 &&
7280 !(i = iov_setup(&(sf.headers), &hbuf,
7281 headers, sf.hdr_cnt, PyBUF_SIMPLE)))
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00007282 return NULL;
Giampaolo Rodolàacdad9a2011-03-03 16:10:51 +00007283#ifdef __APPLE__
7284 sbytes += i;
7285#endif
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00007286 }
7287 }
7288 if (trailers != NULL) {
7289 if (!PySequence_Check(trailers)) {
7290 PyErr_SetString(PyExc_TypeError,
7291 "sendfile() trailers must be a sequence or None");
7292 return NULL;
7293 } else {
Giampaolo Rodolàacdad9a2011-03-03 16:10:51 +00007294 Py_ssize_t i = 0; /* Avoid uninitialized warning */
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00007295 sf.trl_cnt = PySequence_Size(trailers);
Giampaolo Rodolàacdad9a2011-03-03 16:10:51 +00007296 if (sf.trl_cnt > 0 &&
7297 !(i = iov_setup(&(sf.trailers), &tbuf,
7298 trailers, sf.trl_cnt, PyBUF_SIMPLE)))
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00007299 return NULL;
Giampaolo Rodolàacdad9a2011-03-03 16:10:51 +00007300#ifdef __APPLE__
7301 sbytes += i;
7302#endif
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00007303 }
7304 }
7305
7306 Py_BEGIN_ALLOW_THREADS
7307#ifdef __APPLE__
7308 ret = sendfile(in, out, offset, &sbytes, &sf, flags);
7309#else
7310 ret = sendfile(in, out, offset, len, &sf, &sbytes, flags);
7311#endif
7312 Py_END_ALLOW_THREADS
7313
7314 if (sf.headers != NULL)
7315 iov_cleanup(sf.headers, hbuf, sf.hdr_cnt);
7316 if (sf.trailers != NULL)
7317 iov_cleanup(sf.trailers, tbuf, sf.trl_cnt);
7318
7319 if (ret < 0) {
7320 if ((errno == EAGAIN) || (errno == EBUSY)) {
7321 if (sbytes != 0) {
7322 // some data has been sent
7323 goto done;
7324 }
7325 else {
7326 // no data has been sent; upper application is supposed
7327 // to retry on EAGAIN or EBUSY
7328 return posix_error();
7329 }
7330 }
7331 return posix_error();
7332 }
7333 goto done;
7334
7335done:
7336 #if !defined(HAVE_LARGEFILE_SUPPORT)
7337 return Py_BuildValue("l", sbytes);
7338 #else
7339 return Py_BuildValue("L", sbytes);
7340 #endif
7341
7342#else
7343 Py_ssize_t count;
7344 PyObject *offobj;
7345 static char *keywords[] = {"out", "in",
7346 "offset", "count", NULL};
7347 if (!PyArg_ParseTupleAndKeywords(args, kwdict, "iiOn:sendfile",
7348 keywords, &out, &in, &offobj, &count))
7349 return NULL;
7350#ifdef linux
7351 if (offobj == Py_None) {
7352 Py_BEGIN_ALLOW_THREADS
7353 ret = sendfile(out, in, NULL, count);
7354 Py_END_ALLOW_THREADS
7355 if (ret < 0)
7356 return posix_error();
Giampaolo Rodola'ff1a7352011-04-19 09:47:16 +02007357 return Py_BuildValue("n", ret);
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00007358 }
7359#endif
Antoine Pitroudcc20b82011-02-26 13:38:35 +00007360 if (!_parse_off_t(offobj, &offset))
7361 return NULL;
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00007362 Py_BEGIN_ALLOW_THREADS
7363 ret = sendfile(out, in, &offset, count);
7364 Py_END_ALLOW_THREADS
7365 if (ret < 0)
7366 return posix_error();
7367 return Py_BuildValue("n", ret);
7368#endif
7369}
7370#endif
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00007371
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007372PyDoc_STRVAR(posix_fstat__doc__,
Victor Stinner4195b5c2012-02-08 23:03:19 +01007373"fstat(fd) -> stat result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007374Like stat(), but for an open file descriptor.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00007375
Barry Warsaw53699e91996-12-10 23:23:01 +00007376static PyObject *
Victor Stinner4195b5c2012-02-08 23:03:19 +01007377posix_fstat(PyObject *self, PyObject *args)
Guido van Rossum687dd131993-05-17 08:34:16 +00007378{
Victor Stinner8c62be82010-05-06 00:08:46 +00007379 int fd;
7380 STRUCT_STAT st;
7381 int res;
Victor Stinner4195b5c2012-02-08 23:03:19 +01007382 if (!PyArg_ParseTuple(args, "i:fstat", &fd))
Victor Stinner8c62be82010-05-06 00:08:46 +00007383 return NULL;
Martin v. Löwis7a924e62003-03-05 14:15:21 +00007384#ifdef __VMS
Victor Stinner8c62be82010-05-06 00:08:46 +00007385 /* on OpenVMS we must ensure that all bytes are written to the file */
7386 fsync(fd);
Martin v. Löwis7a924e62003-03-05 14:15:21 +00007387#endif
Victor Stinner8c62be82010-05-06 00:08:46 +00007388 if (!_PyVerify_fd(fd))
7389 return posix_error();
7390 Py_BEGIN_ALLOW_THREADS
7391 res = FSTAT(fd, &st);
7392 Py_END_ALLOW_THREADS
7393 if (res != 0) {
Martin v. Löwis14694662006-02-03 12:54:16 +00007394#ifdef MS_WINDOWS
Victor Stinner8c62be82010-05-06 00:08:46 +00007395 return win32_error("fstat", NULL);
Martin v. Löwis14694662006-02-03 12:54:16 +00007396#else
Victor Stinner8c62be82010-05-06 00:08:46 +00007397 return posix_error();
Martin v. Löwis14694662006-02-03 12:54:16 +00007398#endif
Victor Stinner8c62be82010-05-06 00:08:46 +00007399 }
Tim Peters5aa91602002-01-30 05:46:57 +00007400
Victor Stinner4195b5c2012-02-08 23:03:19 +01007401 return _pystat_fromstructstat(&st);
Guido van Rossum687dd131993-05-17 08:34:16 +00007402}
7403
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007404PyDoc_STRVAR(posix_isatty__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007405"isatty(fd) -> bool\n\n\
Fred Drake106c1a02002-04-23 15:58:02 +00007406Return True if the file descriptor 'fd' is an open file descriptor\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007407connected to the slave end of a terminal.");
Skip Montanaro1517d842000-07-19 14:34:14 +00007408
7409static PyObject *
Thomas Wouters616607a2000-07-19 14:45:40 +00007410posix_isatty(PyObject *self, PyObject *args)
Skip Montanaro1517d842000-07-19 14:34:14 +00007411{
Victor Stinner8c62be82010-05-06 00:08:46 +00007412 int fd;
7413 if (!PyArg_ParseTuple(args, "i:isatty", &fd))
7414 return NULL;
7415 if (!_PyVerify_fd(fd))
7416 return PyBool_FromLong(0);
7417 return PyBool_FromLong(isatty(fd));
Skip Montanaro1517d842000-07-19 14:34:14 +00007418}
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00007419
Guido van Rossuma4916fa1996-05-23 22:58:55 +00007420#ifdef HAVE_PIPE
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007421PyDoc_STRVAR(posix_pipe__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007422"pipe() -> (read_end, write_end)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007423Create a pipe.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00007424
Barry Warsaw53699e91996-12-10 23:23:01 +00007425static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00007426posix_pipe(PyObject *self, PyObject *noargs)
Guido van Rossum687dd131993-05-17 08:34:16 +00007427{
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00007428#if defined(PYOS_OS2)
7429 HFILE read, write;
7430 APIRET rc;
7431
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00007432 rc = DosCreatePipe( &read, &write, 4096);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00007433 if (rc != NO_ERROR)
Guido van Rossumd48f2521997-12-05 22:19:34 +00007434 return os2_error(rc);
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00007435
7436 return Py_BuildValue("(ii)", read, write);
7437#else
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00007438#if !defined(MS_WINDOWS)
Victor Stinner8c62be82010-05-06 00:08:46 +00007439 int fds[2];
7440 int res;
Victor Stinner8c62be82010-05-06 00:08:46 +00007441 res = pipe(fds);
Victor Stinner8c62be82010-05-06 00:08:46 +00007442 if (res != 0)
7443 return posix_error();
7444 return Py_BuildValue("(ii)", fds[0], fds[1]);
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00007445#else /* MS_WINDOWS */
Victor Stinner8c62be82010-05-06 00:08:46 +00007446 HANDLE read, write;
7447 int read_fd, write_fd;
7448 BOOL ok;
Victor Stinner8c62be82010-05-06 00:08:46 +00007449 ok = CreatePipe(&read, &write, NULL, 0);
Victor Stinner8c62be82010-05-06 00:08:46 +00007450 if (!ok)
7451 return win32_error("CreatePipe", NULL);
7452 read_fd = _open_osfhandle((Py_intptr_t)read, 0);
7453 write_fd = _open_osfhandle((Py_intptr_t)write, 1);
7454 return Py_BuildValue("(ii)", read_fd, write_fd);
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00007455#endif /* MS_WINDOWS */
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +00007456#endif
Guido van Rossum687dd131993-05-17 08:34:16 +00007457}
Guido van Rossuma4916fa1996-05-23 22:58:55 +00007458#endif /* HAVE_PIPE */
7459
Charles-François Natalidaafdd52011-05-29 20:07:40 +02007460#ifdef HAVE_PIPE2
7461PyDoc_STRVAR(posix_pipe2__doc__,
Charles-François Natali368f34b2011-06-06 19:49:47 +02007462"pipe2(flags) -> (read_end, write_end)\n\n\
7463Create a pipe with flags set atomically.\n\
7464flags can be constructed by ORing together one or more of these values:\n\
7465O_NONBLOCK, O_CLOEXEC.\n\
Charles-François Natalidaafdd52011-05-29 20:07:40 +02007466");
7467
7468static PyObject *
Charles-François Natali368f34b2011-06-06 19:49:47 +02007469posix_pipe2(PyObject *self, PyObject *arg)
Charles-François Natalidaafdd52011-05-29 20:07:40 +02007470{
Charles-François Natali368f34b2011-06-06 19:49:47 +02007471 int flags;
Charles-François Natalidaafdd52011-05-29 20:07:40 +02007472 int fds[2];
7473 int res;
7474
Charles-François Natali368f34b2011-06-06 19:49:47 +02007475 flags = PyLong_AsLong(arg);
7476 if (flags == -1 && PyErr_Occurred())
Charles-François Natalidaafdd52011-05-29 20:07:40 +02007477 return NULL;
7478
7479 res = pipe2(fds, flags);
7480 if (res != 0)
7481 return posix_error();
7482 return Py_BuildValue("(ii)", fds[0], fds[1]);
7483}
7484#endif /* HAVE_PIPE2 */
7485
Ross Lagerwall7807c352011-03-17 20:20:30 +02007486#ifdef HAVE_WRITEV
7487PyDoc_STRVAR(posix_writev__doc__,
7488"writev(fd, buffers) -> byteswritten\n\n\
7489Write the contents of buffers to a file descriptor, where buffers is an\n\
7490arbitrary sequence of buffers.\n\
7491Returns the total bytes written.");
7492
7493static PyObject *
7494posix_writev(PyObject *self, PyObject *args)
7495{
7496 int fd, cnt;
7497 Py_ssize_t res;
7498 PyObject *seq;
7499 struct iovec *iov;
7500 Py_buffer *buf;
7501 if (!PyArg_ParseTuple(args, "iO:writev", &fd, &seq))
7502 return NULL;
7503 if (!PySequence_Check(seq)) {
7504 PyErr_SetString(PyExc_TypeError,
7505 "writev() arg 2 must be a sequence");
7506 return NULL;
7507 }
7508 cnt = PySequence_Size(seq);
7509
7510 if (!iov_setup(&iov, &buf, seq, cnt, PyBUF_SIMPLE)) {
7511 return NULL;
7512 }
7513
7514 Py_BEGIN_ALLOW_THREADS
7515 res = writev(fd, iov, cnt);
7516 Py_END_ALLOW_THREADS
7517
7518 iov_cleanup(iov, buf, cnt);
7519 return PyLong_FromSsize_t(res);
7520}
7521#endif
7522
7523#ifdef HAVE_PWRITE
7524PyDoc_STRVAR(posix_pwrite__doc__,
7525"pwrite(fd, string, offset) -> byteswritten\n\n\
7526Write string to a file descriptor, fd, from offset, leaving the file\n\
7527offset unchanged.");
7528
7529static PyObject *
7530posix_pwrite(PyObject *self, PyObject *args)
7531{
7532 Py_buffer pbuf;
7533 int fd;
7534 off_t offset;
7535 Py_ssize_t size;
7536
7537 if (!PyArg_ParseTuple(args, "iy*O&:pwrite", &fd, &pbuf, _parse_off_t, &offset))
7538 return NULL;
7539
7540 if (!_PyVerify_fd(fd)) {
7541 PyBuffer_Release(&pbuf);
7542 return posix_error();
7543 }
7544 Py_BEGIN_ALLOW_THREADS
7545 size = pwrite(fd, pbuf.buf, (size_t)pbuf.len, offset);
7546 Py_END_ALLOW_THREADS
7547 PyBuffer_Release(&pbuf);
7548 if (size < 0)
7549 return posix_error();
7550 return PyLong_FromSsize_t(size);
7551}
7552#endif
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00007553
Guido van Rossuma4916fa1996-05-23 22:58:55 +00007554#ifdef HAVE_MKFIFO
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007555PyDoc_STRVAR(posix_mkfifo__doc__,
Neal Norwitzc18b3082002-10-11 22:19:42 +00007556"mkfifo(filename [, mode=0666])\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007557Create a FIFO (a POSIX named pipe).");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00007558
Barry Warsaw53699e91996-12-10 23:23:01 +00007559static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007560posix_mkfifo(PyObject *self, PyObject *args)
Guido van Rossuma4916fa1996-05-23 22:58:55 +00007561{
Benjamin Petersond4efbf92010-08-11 19:20:42 +00007562 PyObject *opath;
Victor Stinner8c62be82010-05-06 00:08:46 +00007563 char *filename;
7564 int mode = 0666;
7565 int res;
Benjamin Petersond4efbf92010-08-11 19:20:42 +00007566 if (!PyArg_ParseTuple(args, "O&|i:mkfifo", PyUnicode_FSConverter, &opath,
7567 &mode))
Victor Stinner8c62be82010-05-06 00:08:46 +00007568 return NULL;
Benjamin Petersond4efbf92010-08-11 19:20:42 +00007569 filename = PyBytes_AS_STRING(opath);
Victor Stinner8c62be82010-05-06 00:08:46 +00007570 Py_BEGIN_ALLOW_THREADS
7571 res = mkfifo(filename, mode);
7572 Py_END_ALLOW_THREADS
Benjamin Petersond4efbf92010-08-11 19:20:42 +00007573 Py_DECREF(opath);
Victor Stinner8c62be82010-05-06 00:08:46 +00007574 if (res < 0)
7575 return posix_error();
7576 Py_INCREF(Py_None);
7577 return Py_None;
Martin v. Löwis06a83e92002-04-14 10:19:44 +00007578}
7579#endif
7580
7581
Neal Norwitz11690112002-07-30 01:08:28 +00007582#if defined(HAVE_MKNOD) && defined(HAVE_MAKEDEV)
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007583PyDoc_STRVAR(posix_mknod__doc__,
Neal Norwitzc18b3082002-10-11 22:19:42 +00007584"mknod(filename [, mode=0600, device])\n\n\
Martin v. Löwis06a83e92002-04-14 10:19:44 +00007585Create a filesystem node (file, device special file or named pipe)\n\
7586named filename. mode specifies both the permissions to use and the\n\
7587type of node to be created, being combined (bitwise OR) with one of\n\
7588S_IFREG, S_IFCHR, S_IFBLK, and S_IFIFO. For S_IFCHR and S_IFBLK,\n\
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00007589device defines the newly created device special file (probably using\n\
7590os.makedev()), otherwise it is ignored.");
Martin v. Löwis06a83e92002-04-14 10:19:44 +00007591
7592
7593static PyObject *
7594posix_mknod(PyObject *self, PyObject *args)
7595{
Benjamin Petersond4efbf92010-08-11 19:20:42 +00007596 PyObject *opath;
Victor Stinner8c62be82010-05-06 00:08:46 +00007597 char *filename;
7598 int mode = 0600;
7599 int device = 0;
7600 int res;
Benjamin Petersond4efbf92010-08-11 19:20:42 +00007601 if (!PyArg_ParseTuple(args, "O&|ii:mknod", PyUnicode_FSConverter, &opath,
7602 &mode, &device))
Victor Stinner8c62be82010-05-06 00:08:46 +00007603 return NULL;
Benjamin Petersond4efbf92010-08-11 19:20:42 +00007604 filename = PyBytes_AS_STRING(opath);
Victor Stinner8c62be82010-05-06 00:08:46 +00007605 Py_BEGIN_ALLOW_THREADS
7606 res = mknod(filename, mode, device);
7607 Py_END_ALLOW_THREADS
Benjamin Petersond4efbf92010-08-11 19:20:42 +00007608 Py_DECREF(opath);
Victor Stinner8c62be82010-05-06 00:08:46 +00007609 if (res < 0)
7610 return posix_error();
7611 Py_INCREF(Py_None);
7612 return Py_None;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00007613}
7614#endif
7615
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00007616#ifdef HAVE_DEVICE_MACROS
7617PyDoc_STRVAR(posix_major__doc__,
7618"major(device) -> major number\n\
7619Extracts a device major number from a raw device number.");
7620
7621static PyObject *
7622posix_major(PyObject *self, PyObject *args)
7623{
Victor Stinner8c62be82010-05-06 00:08:46 +00007624 int device;
7625 if (!PyArg_ParseTuple(args, "i:major", &device))
7626 return NULL;
7627 return PyLong_FromLong((long)major(device));
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00007628}
7629
7630PyDoc_STRVAR(posix_minor__doc__,
7631"minor(device) -> minor number\n\
7632Extracts a device minor number from a raw device number.");
7633
7634static PyObject *
7635posix_minor(PyObject *self, PyObject *args)
7636{
Victor Stinner8c62be82010-05-06 00:08:46 +00007637 int device;
7638 if (!PyArg_ParseTuple(args, "i:minor", &device))
7639 return NULL;
7640 return PyLong_FromLong((long)minor(device));
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00007641}
7642
7643PyDoc_STRVAR(posix_makedev__doc__,
7644"makedev(major, minor) -> device number\n\
7645Composes a raw device number from the major and minor device numbers.");
7646
7647static PyObject *
7648posix_makedev(PyObject *self, PyObject *args)
7649{
Victor Stinner8c62be82010-05-06 00:08:46 +00007650 int major, minor;
7651 if (!PyArg_ParseTuple(args, "ii:makedev", &major, &minor))
7652 return NULL;
7653 return PyLong_FromLong((long)makedev(major, minor));
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00007654}
7655#endif /* device macros */
7656
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00007657
Guido van Rossuma4916fa1996-05-23 22:58:55 +00007658#ifdef HAVE_FTRUNCATE
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007659PyDoc_STRVAR(posix_ftruncate__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007660"ftruncate(fd, length)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007661Truncate a file to a specified length.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00007662
Barry Warsaw53699e91996-12-10 23:23:01 +00007663static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007664posix_ftruncate(PyObject *self, PyObject *args)
Guido van Rossuma4916fa1996-05-23 22:58:55 +00007665{
Victor Stinner8c62be82010-05-06 00:08:46 +00007666 int fd;
7667 off_t length;
7668 int res;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00007669
Ross Lagerwall7807c352011-03-17 20:20:30 +02007670 if (!PyArg_ParseTuple(args, "iO&:ftruncate", &fd, _parse_off_t, &length))
Victor Stinner8c62be82010-05-06 00:08:46 +00007671 return NULL;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00007672
Victor Stinner8c62be82010-05-06 00:08:46 +00007673 Py_BEGIN_ALLOW_THREADS
7674 res = ftruncate(fd, length);
7675 Py_END_ALLOW_THREADS
7676 if (res < 0)
7677 return posix_error();
7678 Py_INCREF(Py_None);
7679 return Py_None;
Guido van Rossuma4916fa1996-05-23 22:58:55 +00007680}
7681#endif
Guido van Rossum22db57e1992-04-05 14:25:30 +00007682
Ross Lagerwall7807c352011-03-17 20:20:30 +02007683#ifdef HAVE_TRUNCATE
7684PyDoc_STRVAR(posix_truncate__doc__,
7685"truncate(path, length)\n\n\
7686Truncate the file given by path to length bytes.");
7687
7688static PyObject *
7689posix_truncate(PyObject *self, PyObject *args)
7690{
7691 PyObject *opath;
7692 const char *path;
7693 off_t length;
7694 int res;
7695
7696 if (!PyArg_ParseTuple(args, "O&O&:truncate",
7697 PyUnicode_FSConverter, &opath, _parse_off_t, &length))
7698 return NULL;
7699 path = PyBytes_AsString(opath);
7700
7701 Py_BEGIN_ALLOW_THREADS
7702 res = truncate(path, length);
7703 Py_END_ALLOW_THREADS
7704 Py_DECREF(opath);
7705 if (res < 0)
7706 return posix_error();
7707 Py_RETURN_NONE;
7708}
7709#endif
7710
7711#ifdef HAVE_POSIX_FALLOCATE
7712PyDoc_STRVAR(posix_posix_fallocate__doc__,
7713"posix_fallocate(fd, offset, len)\n\n\
7714Ensures that enough disk space is allocated for the file specified by fd\n\
7715starting from offset and continuing for len bytes.");
7716
7717static PyObject *
7718posix_posix_fallocate(PyObject *self, PyObject *args)
7719{
7720 off_t len, offset;
7721 int res, fd;
7722
7723 if (!PyArg_ParseTuple(args, "iO&O&:posix_fallocate",
7724 &fd, _parse_off_t, &offset, _parse_off_t, &len))
7725 return NULL;
7726
7727 Py_BEGIN_ALLOW_THREADS
7728 res = posix_fallocate(fd, offset, len);
7729 Py_END_ALLOW_THREADS
7730 if (res != 0) {
7731 errno = res;
7732 return posix_error();
7733 }
7734 Py_RETURN_NONE;
7735}
7736#endif
7737
7738#ifdef HAVE_POSIX_FADVISE
7739PyDoc_STRVAR(posix_posix_fadvise__doc__,
7740"posix_fadvise(fd, offset, len, advice)\n\n\
7741Announces an intention to access data in a specific pattern thus allowing\n\
7742the kernel to make optimizations.\n\
7743The advice applies to the region of the file specified by fd starting at\n\
7744offset and continuing for len bytes.\n\
7745advice is one of POSIX_FADV_NORMAL, POSIX_FADV_SEQUENTIAL,\n\
7746POSIX_FADV_RANDOM, POSIX_FADV_NOREUSE, POSIX_FADV_WILLNEED or\n\
7747POSIX_FADV_DONTNEED.");
7748
7749static PyObject *
7750posix_posix_fadvise(PyObject *self, PyObject *args)
7751{
7752 off_t len, offset;
7753 int res, fd, advice;
7754
7755 if (!PyArg_ParseTuple(args, "iO&O&i:posix_fadvise",
7756 &fd, _parse_off_t, &offset, _parse_off_t, &len, &advice))
7757 return NULL;
7758
7759 Py_BEGIN_ALLOW_THREADS
7760 res = posix_fadvise(fd, offset, len, advice);
7761 Py_END_ALLOW_THREADS
7762 if (res != 0) {
7763 errno = res;
7764 return posix_error();
7765 }
7766 Py_RETURN_NONE;
7767}
7768#endif
7769
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00007770#ifdef HAVE_PUTENV
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007771PyDoc_STRVAR(posix_putenv__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007772"putenv(key, value)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007773Change or add an environment variable.");
Guido van Rossumec4f4ac1997-06-02 22:20:51 +00007774
Fred Drake762e2061999-08-26 17:23:54 +00007775/* Save putenv() parameters as values here, so we can collect them when they
7776 * get re-set with another call for the same key. */
7777static PyObject *posix_putenv_garbage;
7778
Tim Peters5aa91602002-01-30 05:46:57 +00007779static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007780posix_putenv(PyObject *self, PyObject *args)
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00007781{
Victor Stinner84ae1182010-05-06 22:05:07 +00007782 PyObject *newstr = NULL;
Thomas Hellerf78f12a2007-11-08 19:33:05 +00007783#ifdef MS_WINDOWS
Victor Stinner65170952011-11-22 22:16:17 +01007784 PyObject *os1, *os2;
Guido van Rossumf1af3fe1996-07-23 19:18:10 +00007785 wchar_t *newenv;
Victor Stinner65170952011-11-22 22:16:17 +01007786
Victor Stinner8c62be82010-05-06 00:08:46 +00007787 if (!PyArg_ParseTuple(args,
Victor Stinner9d3b93b2011-11-22 02:27:30 +01007788 "UU:putenv",
Victor Stinner65170952011-11-22 22:16:17 +01007789 &os1, &os2))
Victor Stinner8c62be82010-05-06 00:08:46 +00007790 return NULL;
Guido van Rossumd48f2521997-12-05 22:19:34 +00007791
Victor Stinner65170952011-11-22 22:16:17 +01007792 newstr = PyUnicode_FromFormat("%U=%U", os1, os2);
Victor Stinner84ae1182010-05-06 22:05:07 +00007793 if (newstr == NULL) {
7794 PyErr_NoMemory();
7795 goto error;
7796 }
Victor Stinner65170952011-11-22 22:16:17 +01007797 if (_MAX_ENV < PyUnicode_GET_LENGTH(newstr)) {
7798 PyErr_Format(PyExc_ValueError,
7799 "the environment variable is longer than %u characters",
7800 _MAX_ENV);
7801 goto error;
7802 }
7803
Victor Stinner8c62be82010-05-06 00:08:46 +00007804 newenv = PyUnicode_AsUnicode(newstr);
Victor Stinnereb5657a2011-09-30 01:44:27 +02007805 if (newenv == NULL)
7806 goto error;
Victor Stinner8c62be82010-05-06 00:08:46 +00007807 if (_wputenv(newenv)) {
Victor Stinner8c62be82010-05-06 00:08:46 +00007808 posix_error();
Victor Stinner84ae1182010-05-06 22:05:07 +00007809 goto error;
Victor Stinner8c62be82010-05-06 00:08:46 +00007810 }
Thomas Hellerf78f12a2007-11-08 19:33:05 +00007811#else
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00007812 PyObject *os1, *os2;
7813 char *s1, *s2;
7814 char *newenv;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00007815
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00007816 if (!PyArg_ParseTuple(args,
7817 "O&O&:putenv",
7818 PyUnicode_FSConverter, &os1,
7819 PyUnicode_FSConverter, &os2))
7820 return NULL;
7821 s1 = PyBytes_AsString(os1);
7822 s2 = PyBytes_AsString(os2);
Guido van Rossumad0ee831995-03-01 10:34:45 +00007823
Victor Stinner65170952011-11-22 22:16:17 +01007824 newstr = PyBytes_FromFormat("%s=%s", s1, s2);
Victor Stinner9d3b93b2011-11-22 02:27:30 +01007825 if (newstr == NULL) {
7826 PyErr_NoMemory();
7827 goto error;
7828 }
7829
Victor Stinner8c62be82010-05-06 00:08:46 +00007830 newenv = PyBytes_AS_STRING(newstr);
Victor Stinner8c62be82010-05-06 00:08:46 +00007831 if (putenv(newenv)) {
Victor Stinner8c62be82010-05-06 00:08:46 +00007832 posix_error();
Victor Stinner84ae1182010-05-06 22:05:07 +00007833 goto error;
Victor Stinner8c62be82010-05-06 00:08:46 +00007834 }
Thomas Hellerf78f12a2007-11-08 19:33:05 +00007835#endif
Victor Stinner84ae1182010-05-06 22:05:07 +00007836
Victor Stinner8c62be82010-05-06 00:08:46 +00007837 /* Install the first arg and newstr in posix_putenv_garbage;
7838 * this will cause previous value to be collected. This has to
7839 * happen after the real putenv() call because the old value
7840 * was still accessible until then. */
Victor Stinner65170952011-11-22 22:16:17 +01007841 if (PyDict_SetItem(posix_putenv_garbage, os1, newstr)) {
Victor Stinner8c62be82010-05-06 00:08:46 +00007842 /* really not much we can do; just leak */
7843 PyErr_Clear();
7844 }
7845 else {
7846 Py_DECREF(newstr);
7847 }
Guido van Rossumd48f2521997-12-05 22:19:34 +00007848
Martin v. Löwis011e8422009-05-05 04:43:17 +00007849#ifndef MS_WINDOWS
Victor Stinner8c62be82010-05-06 00:08:46 +00007850 Py_DECREF(os1);
7851 Py_DECREF(os2);
Martin v. Löwis011e8422009-05-05 04:43:17 +00007852#endif
Victor Stinner84ae1182010-05-06 22:05:07 +00007853 Py_RETURN_NONE;
7854
7855error:
7856#ifndef MS_WINDOWS
7857 Py_DECREF(os1);
7858 Py_DECREF(os2);
7859#endif
7860 Py_XDECREF(newstr);
7861 return NULL;
Guido van Rossumb6775db1994-08-01 11:34:53 +00007862}
Guido van Rossumb6a47161997-09-15 22:54:34 +00007863#endif /* putenv */
7864
Guido van Rossumc524d952001-10-19 01:31:59 +00007865#ifdef HAVE_UNSETENV
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007866PyDoc_STRVAR(posix_unsetenv__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007867"unsetenv(key)\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007868Delete an environment variable.");
Guido van Rossumc524d952001-10-19 01:31:59 +00007869
7870static PyObject *
7871posix_unsetenv(PyObject *self, PyObject *args)
7872{
Victor Stinner65170952011-11-22 22:16:17 +01007873 PyObject *name;
Victor Stinner984890f2011-11-24 13:53:38 +01007874#ifndef HAVE_BROKEN_UNSETENV
Victor Stinner60b385e2011-11-22 22:01:28 +01007875 int err;
Victor Stinner984890f2011-11-24 13:53:38 +01007876#endif
Victor Stinner84ae1182010-05-06 22:05:07 +00007877
7878 if (!PyArg_ParseTuple(args, "O&:unsetenv",
Guido van Rossumc524d952001-10-19 01:31:59 +00007879
Victor Stinner65170952011-11-22 22:16:17 +01007880 PyUnicode_FSConverter, &name))
Guido van Rossumc524d952001-10-19 01:31:59 +00007881 return NULL;
Guido van Rossumc524d952001-10-19 01:31:59 +00007882
Victor Stinner984890f2011-11-24 13:53:38 +01007883#ifdef HAVE_BROKEN_UNSETENV
7884 unsetenv(PyBytes_AS_STRING(name));
7885#else
Victor Stinner65170952011-11-22 22:16:17 +01007886 err = unsetenv(PyBytes_AS_STRING(name));
Benjamin Peterson4bb867d2011-11-22 23:12:49 -06007887 if (err) {
Benjamin Petersone8eb0e82011-11-22 23:14:47 -06007888 Py_DECREF(name);
Victor Stinner60b385e2011-11-22 22:01:28 +01007889 return posix_error();
Benjamin Peterson4bb867d2011-11-22 23:12:49 -06007890 }
Victor Stinner984890f2011-11-24 13:53:38 +01007891#endif
Guido van Rossumc524d952001-10-19 01:31:59 +00007892
Victor Stinner8c62be82010-05-06 00:08:46 +00007893 /* Remove the key from posix_putenv_garbage;
7894 * this will cause it to be collected. This has to
7895 * happen after the real unsetenv() call because the
7896 * old value was still accessible until then.
7897 */
Victor Stinner65170952011-11-22 22:16:17 +01007898 if (PyDict_DelItem(posix_putenv_garbage, name)) {
Victor Stinner8c62be82010-05-06 00:08:46 +00007899 /* really not much we can do; just leak */
7900 PyErr_Clear();
7901 }
Victor Stinner65170952011-11-22 22:16:17 +01007902 Py_DECREF(name);
Victor Stinner84ae1182010-05-06 22:05:07 +00007903 Py_RETURN_NONE;
Guido van Rossumc524d952001-10-19 01:31:59 +00007904}
7905#endif /* unsetenv */
7906
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007907PyDoc_STRVAR(posix_strerror__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007908"strerror(code) -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007909Translate an error code to a message string.");
Guido van Rossumb6a47161997-09-15 22:54:34 +00007910
Guido van Rossumf68d8e52001-04-14 17:55:09 +00007911static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007912posix_strerror(PyObject *self, PyObject *args)
Guido van Rossumb6a47161997-09-15 22:54:34 +00007913{
Victor Stinner8c62be82010-05-06 00:08:46 +00007914 int code;
7915 char *message;
7916 if (!PyArg_ParseTuple(args, "i:strerror", &code))
7917 return NULL;
7918 message = strerror(code);
7919 if (message == NULL) {
7920 PyErr_SetString(PyExc_ValueError,
7921 "strerror() argument out of range");
7922 return NULL;
7923 }
Victor Stinner1b579672011-12-17 05:47:23 +01007924 return PyUnicode_DecodeLocale(message, "surrogateescape");
Guido van Rossumb6a47161997-09-15 22:54:34 +00007925}
Guido van Rossumb6a47161997-09-15 22:54:34 +00007926
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +00007927
Guido van Rossumc9641791998-08-04 15:26:23 +00007928#ifdef HAVE_SYS_WAIT_H
7929
Fred Drake106c1a02002-04-23 15:58:02 +00007930#ifdef WCOREDUMP
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007931PyDoc_STRVAR(posix_WCOREDUMP__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007932"WCOREDUMP(status) -> bool\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007933Return True if the process returning 'status' was dumped to a core file.");
Fred Drake106c1a02002-04-23 15:58:02 +00007934
7935static PyObject *
7936posix_WCOREDUMP(PyObject *self, PyObject *args)
7937{
Victor Stinner8c62be82010-05-06 00:08:46 +00007938 WAIT_TYPE status;
7939 WAIT_STATUS_INT(status) = 0;
Fred Drake106c1a02002-04-23 15:58:02 +00007940
Victor Stinner8c62be82010-05-06 00:08:46 +00007941 if (!PyArg_ParseTuple(args, "i:WCOREDUMP", &WAIT_STATUS_INT(status)))
7942 return NULL;
Fred Drake106c1a02002-04-23 15:58:02 +00007943
Victor Stinner8c62be82010-05-06 00:08:46 +00007944 return PyBool_FromLong(WCOREDUMP(status));
Fred Drake106c1a02002-04-23 15:58:02 +00007945}
7946#endif /* WCOREDUMP */
7947
7948#ifdef WIFCONTINUED
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007949PyDoc_STRVAR(posix_WIFCONTINUED__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007950"WIFCONTINUED(status) -> bool\n\n\
Fred Drake106c1a02002-04-23 15:58:02 +00007951Return True if the process returning 'status' was continued from a\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007952job control stop.");
Fred Drake106c1a02002-04-23 15:58:02 +00007953
7954static PyObject *
Martin v. Löwis2b41b0d2002-05-04 13:13:41 +00007955posix_WIFCONTINUED(PyObject *self, PyObject *args)
Fred Drake106c1a02002-04-23 15:58:02 +00007956{
Victor Stinner8c62be82010-05-06 00:08:46 +00007957 WAIT_TYPE status;
7958 WAIT_STATUS_INT(status) = 0;
Fred Drake106c1a02002-04-23 15:58:02 +00007959
Victor Stinner8c62be82010-05-06 00:08:46 +00007960 if (!PyArg_ParseTuple(args, "i:WCONTINUED", &WAIT_STATUS_INT(status)))
7961 return NULL;
Fred Drake106c1a02002-04-23 15:58:02 +00007962
Victor Stinner8c62be82010-05-06 00:08:46 +00007963 return PyBool_FromLong(WIFCONTINUED(status));
Fred Drake106c1a02002-04-23 15:58:02 +00007964}
7965#endif /* WIFCONTINUED */
7966
Guido van Rossumc9641791998-08-04 15:26:23 +00007967#ifdef WIFSTOPPED
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007968PyDoc_STRVAR(posix_WIFSTOPPED__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007969"WIFSTOPPED(status) -> bool\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007970Return True if the process returning 'status' was stopped.");
Guido van Rossumc9641791998-08-04 15:26:23 +00007971
7972static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007973posix_WIFSTOPPED(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00007974{
Victor Stinner8c62be82010-05-06 00:08:46 +00007975 WAIT_TYPE status;
7976 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00007977
Victor Stinner8c62be82010-05-06 00:08:46 +00007978 if (!PyArg_ParseTuple(args, "i:WIFSTOPPED", &WAIT_STATUS_INT(status)))
7979 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00007980
Victor Stinner8c62be82010-05-06 00:08:46 +00007981 return PyBool_FromLong(WIFSTOPPED(status));
Guido van Rossumc9641791998-08-04 15:26:23 +00007982}
7983#endif /* WIFSTOPPED */
7984
7985#ifdef WIFSIGNALED
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007986PyDoc_STRVAR(posix_WIFSIGNALED__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00007987"WIFSIGNALED(status) -> bool\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00007988Return True if the process returning 'status' was terminated by a signal.");
Guido van Rossumc9641791998-08-04 15:26:23 +00007989
7990static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00007991posix_WIFSIGNALED(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00007992{
Victor Stinner8c62be82010-05-06 00:08:46 +00007993 WAIT_TYPE status;
7994 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00007995
Victor Stinner8c62be82010-05-06 00:08:46 +00007996 if (!PyArg_ParseTuple(args, "i:WIFSIGNALED", &WAIT_STATUS_INT(status)))
7997 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00007998
Victor Stinner8c62be82010-05-06 00:08:46 +00007999 return PyBool_FromLong(WIFSIGNALED(status));
Guido van Rossumc9641791998-08-04 15:26:23 +00008000}
8001#endif /* WIFSIGNALED */
8002
8003#ifdef WIFEXITED
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008004PyDoc_STRVAR(posix_WIFEXITED__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00008005"WIFEXITED(status) -> bool\n\n\
Fred Drake7e3535c1999-02-02 16:37:11 +00008006Return true if the process returning 'status' exited using the exit()\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008007system call.");
Guido van Rossumc9641791998-08-04 15:26:23 +00008008
8009static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00008010posix_WIFEXITED(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00008011{
Victor Stinner8c62be82010-05-06 00:08:46 +00008012 WAIT_TYPE status;
8013 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00008014
Victor Stinner8c62be82010-05-06 00:08:46 +00008015 if (!PyArg_ParseTuple(args, "i:WIFEXITED", &WAIT_STATUS_INT(status)))
8016 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00008017
Victor Stinner8c62be82010-05-06 00:08:46 +00008018 return PyBool_FromLong(WIFEXITED(status));
Guido van Rossumc9641791998-08-04 15:26:23 +00008019}
8020#endif /* WIFEXITED */
8021
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00008022#ifdef WEXITSTATUS
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008023PyDoc_STRVAR(posix_WEXITSTATUS__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00008024"WEXITSTATUS(status) -> integer\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008025Return the process return code from 'status'.");
Guido van Rossumc9641791998-08-04 15:26:23 +00008026
8027static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00008028posix_WEXITSTATUS(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00008029{
Victor Stinner8c62be82010-05-06 00:08:46 +00008030 WAIT_TYPE status;
8031 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00008032
Victor Stinner8c62be82010-05-06 00:08:46 +00008033 if (!PyArg_ParseTuple(args, "i:WEXITSTATUS", &WAIT_STATUS_INT(status)))
8034 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00008035
Victor Stinner8c62be82010-05-06 00:08:46 +00008036 return Py_BuildValue("i", WEXITSTATUS(status));
Guido van Rossumc9641791998-08-04 15:26:23 +00008037}
8038#endif /* WEXITSTATUS */
8039
8040#ifdef WTERMSIG
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008041PyDoc_STRVAR(posix_WTERMSIG__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00008042"WTERMSIG(status) -> integer\n\n\
Fred Drake7e3535c1999-02-02 16:37:11 +00008043Return the signal that terminated the process that provided the 'status'\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008044value.");
Guido van Rossumc9641791998-08-04 15:26:23 +00008045
8046static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00008047posix_WTERMSIG(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00008048{
Victor Stinner8c62be82010-05-06 00:08:46 +00008049 WAIT_TYPE status;
8050 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00008051
Victor Stinner8c62be82010-05-06 00:08:46 +00008052 if (!PyArg_ParseTuple(args, "i:WTERMSIG", &WAIT_STATUS_INT(status)))
8053 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00008054
Victor Stinner8c62be82010-05-06 00:08:46 +00008055 return Py_BuildValue("i", WTERMSIG(status));
Guido van Rossumc9641791998-08-04 15:26:23 +00008056}
8057#endif /* WTERMSIG */
8058
8059#ifdef WSTOPSIG
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008060PyDoc_STRVAR(posix_WSTOPSIG__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00008061"WSTOPSIG(status) -> integer\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008062Return the signal that stopped the process that provided\n\
8063the 'status' value.");
Guido van Rossumc9641791998-08-04 15:26:23 +00008064
8065static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00008066posix_WSTOPSIG(PyObject *self, PyObject *args)
Guido van Rossumc9641791998-08-04 15:26:23 +00008067{
Victor Stinner8c62be82010-05-06 00:08:46 +00008068 WAIT_TYPE status;
8069 WAIT_STATUS_INT(status) = 0;
Tim Peters5aa91602002-01-30 05:46:57 +00008070
Victor Stinner8c62be82010-05-06 00:08:46 +00008071 if (!PyArg_ParseTuple(args, "i:WSTOPSIG", &WAIT_STATUS_INT(status)))
8072 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +00008073
Victor Stinner8c62be82010-05-06 00:08:46 +00008074 return Py_BuildValue("i", WSTOPSIG(status));
Guido van Rossumc9641791998-08-04 15:26:23 +00008075}
8076#endif /* WSTOPSIG */
8077
8078#endif /* HAVE_SYS_WAIT_H */
8079
8080
Thomas Wouters477c8d52006-05-27 19:21:47 +00008081#if defined(HAVE_FSTATVFS) && defined(HAVE_SYS_STATVFS_H)
Guido van Rossumd5753e11999-10-19 13:29:23 +00008082#ifdef _SCO_DS
8083/* SCO OpenServer 5.0 and later requires _SVID3 before it reveals the
8084 needed definitions in sys/statvfs.h */
8085#define _SVID3
8086#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +00008087#include <sys/statvfs.h>
8088
Guido van Rossum98bf58f2001-10-18 20:34:25 +00008089static PyObject*
8090_pystatvfs_fromstructstatvfs(struct statvfs st) {
Victor Stinner8c62be82010-05-06 00:08:46 +00008091 PyObject *v = PyStructSequence_New(&StatVFSResultType);
8092 if (v == NULL)
8093 return NULL;
Guido van Rossum98bf58f2001-10-18 20:34:25 +00008094
8095#if !defined(HAVE_LARGEFILE_SUPPORT)
Victor Stinner8c62be82010-05-06 00:08:46 +00008096 PyStructSequence_SET_ITEM(v, 0, PyLong_FromLong((long) st.f_bsize));
8097 PyStructSequence_SET_ITEM(v, 1, PyLong_FromLong((long) st.f_frsize));
8098 PyStructSequence_SET_ITEM(v, 2, PyLong_FromLong((long) st.f_blocks));
8099 PyStructSequence_SET_ITEM(v, 3, PyLong_FromLong((long) st.f_bfree));
8100 PyStructSequence_SET_ITEM(v, 4, PyLong_FromLong((long) st.f_bavail));
8101 PyStructSequence_SET_ITEM(v, 5, PyLong_FromLong((long) st.f_files));
8102 PyStructSequence_SET_ITEM(v, 6, PyLong_FromLong((long) st.f_ffree));
8103 PyStructSequence_SET_ITEM(v, 7, PyLong_FromLong((long) st.f_favail));
8104 PyStructSequence_SET_ITEM(v, 8, PyLong_FromLong((long) st.f_flag));
8105 PyStructSequence_SET_ITEM(v, 9, PyLong_FromLong((long) st.f_namemax));
Guido van Rossum98bf58f2001-10-18 20:34:25 +00008106#else
Victor Stinner8c62be82010-05-06 00:08:46 +00008107 PyStructSequence_SET_ITEM(v, 0, PyLong_FromLong((long) st.f_bsize));
8108 PyStructSequence_SET_ITEM(v, 1, PyLong_FromLong((long) st.f_frsize));
8109 PyStructSequence_SET_ITEM(v, 2,
8110 PyLong_FromLongLong((PY_LONG_LONG) st.f_blocks));
8111 PyStructSequence_SET_ITEM(v, 3,
8112 PyLong_FromLongLong((PY_LONG_LONG) st.f_bfree));
8113 PyStructSequence_SET_ITEM(v, 4,
8114 PyLong_FromLongLong((PY_LONG_LONG) st.f_bavail));
8115 PyStructSequence_SET_ITEM(v, 5,
8116 PyLong_FromLongLong((PY_LONG_LONG) st.f_files));
8117 PyStructSequence_SET_ITEM(v, 6,
8118 PyLong_FromLongLong((PY_LONG_LONG) st.f_ffree));
8119 PyStructSequence_SET_ITEM(v, 7,
8120 PyLong_FromLongLong((PY_LONG_LONG) st.f_favail));
8121 PyStructSequence_SET_ITEM(v, 8, PyLong_FromLong((long) st.f_flag));
8122 PyStructSequence_SET_ITEM(v, 9, PyLong_FromLong((long) st.f_namemax));
Guido van Rossum98bf58f2001-10-18 20:34:25 +00008123#endif
8124
Victor Stinner8c62be82010-05-06 00:08:46 +00008125 return v;
Guido van Rossum98bf58f2001-10-18 20:34:25 +00008126}
8127
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008128PyDoc_STRVAR(posix_fstatvfs__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00008129"fstatvfs(fd) -> statvfs result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008130Perform an fstatvfs system call on the given fd.");
Guido van Rossum94f6f721999-01-06 18:42:14 +00008131
8132static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00008133posix_fstatvfs(PyObject *self, PyObject *args)
Guido van Rossum94f6f721999-01-06 18:42:14 +00008134{
Victor Stinner8c62be82010-05-06 00:08:46 +00008135 int fd, res;
8136 struct statvfs st;
Guido van Rossum98bf58f2001-10-18 20:34:25 +00008137
Victor Stinner8c62be82010-05-06 00:08:46 +00008138 if (!PyArg_ParseTuple(args, "i:fstatvfs", &fd))
8139 return NULL;
8140 Py_BEGIN_ALLOW_THREADS
8141 res = fstatvfs(fd, &st);
8142 Py_END_ALLOW_THREADS
8143 if (res != 0)
8144 return posix_error();
Guido van Rossum98bf58f2001-10-18 20:34:25 +00008145
Victor Stinner8c62be82010-05-06 00:08:46 +00008146 return _pystatvfs_fromstructstatvfs(st);
Guido van Rossum94f6f721999-01-06 18:42:14 +00008147}
Thomas Wouters477c8d52006-05-27 19:21:47 +00008148#endif /* HAVE_FSTATVFS && HAVE_SYS_STATVFS_H */
Guido van Rossum94f6f721999-01-06 18:42:14 +00008149
8150
Thomas Wouters477c8d52006-05-27 19:21:47 +00008151#if defined(HAVE_STATVFS) && defined(HAVE_SYS_STATVFS_H)
Guido van Rossum94f6f721999-01-06 18:42:14 +00008152#include <sys/statvfs.h>
8153
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008154PyDoc_STRVAR(posix_statvfs__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00008155"statvfs(path) -> statvfs result\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008156Perform a statvfs system call on the given path.");
Guido van Rossum94f6f721999-01-06 18:42:14 +00008157
8158static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00008159posix_statvfs(PyObject *self, PyObject *args)
Guido van Rossum94f6f721999-01-06 18:42:14 +00008160{
Victor Stinner6fa67772011-09-20 04:04:33 +02008161 PyObject *path;
Victor Stinner8c62be82010-05-06 00:08:46 +00008162 int res;
8163 struct statvfs st;
Victor Stinner6fa67772011-09-20 04:04:33 +02008164 if (!PyArg_ParseTuple(args, "O&:statvfs", PyUnicode_FSConverter, &path))
Victor Stinner8c62be82010-05-06 00:08:46 +00008165 return NULL;
8166 Py_BEGIN_ALLOW_THREADS
Victor Stinner6fa67772011-09-20 04:04:33 +02008167 res = statvfs(PyBytes_AS_STRING(path), &st);
Victor Stinner8c62be82010-05-06 00:08:46 +00008168 Py_END_ALLOW_THREADS
Victor Stinner6fa67772011-09-20 04:04:33 +02008169 if (res != 0) {
8170 posix_error_with_filename(PyBytes_AS_STRING(path));
8171 Py_DECREF(path);
8172 return NULL;
8173 }
8174 Py_DECREF(path);
Guido van Rossum98bf58f2001-10-18 20:34:25 +00008175
Victor Stinner8c62be82010-05-06 00:08:46 +00008176 return _pystatvfs_fromstructstatvfs(st);
Guido van Rossum94f6f721999-01-06 18:42:14 +00008177}
8178#endif /* HAVE_STATVFS */
8179
Giampaolo Rodola'210e7ca2011-07-01 13:55:36 +02008180#ifdef MS_WINDOWS
8181PyDoc_STRVAR(win32__getdiskusage__doc__,
8182"_getdiskusage(path) -> (total, free)\n\n\
8183Return disk usage statistics about the given path as (total, free) tuple.");
8184
8185static PyObject *
8186win32__getdiskusage(PyObject *self, PyObject *args)
8187{
8188 BOOL retval;
8189 ULARGE_INTEGER _, total, free;
Victor Stinner6139c1b2011-11-09 22:14:14 +01008190 const wchar_t *path;
Giampaolo Rodola'210e7ca2011-07-01 13:55:36 +02008191
Victor Stinner6139c1b2011-11-09 22:14:14 +01008192 if (! PyArg_ParseTuple(args, "u", &path))
Giampaolo Rodola'210e7ca2011-07-01 13:55:36 +02008193 return NULL;
8194
8195 Py_BEGIN_ALLOW_THREADS
Victor Stinner6139c1b2011-11-09 22:14:14 +01008196 retval = GetDiskFreeSpaceExW(path, &_, &total, &free);
Giampaolo Rodola'210e7ca2011-07-01 13:55:36 +02008197 Py_END_ALLOW_THREADS
8198 if (retval == 0)
8199 return PyErr_SetFromWindowsErr(0);
8200
8201 return Py_BuildValue("(LL)", total.QuadPart, free.QuadPart);
8202}
8203#endif
8204
8205
Fred Drakec9680921999-12-13 16:37:25 +00008206/* This is used for fpathconf(), pathconf(), confstr() and sysconf().
8207 * It maps strings representing configuration variable names to
8208 * integer values, allowing those functions to be called with the
Thomas Wouters7e474022000-07-16 12:04:32 +00008209 * magic names instead of polluting the module's namespace with tons of
Fred Drake12c6e2d1999-12-14 21:25:03 +00008210 * rarely-used constants. There are three separate tables that use
8211 * these definitions.
Fred Drakebec628d1999-12-15 18:31:10 +00008212 *
8213 * This code is always included, even if none of the interfaces that
8214 * need it are included. The #if hackery needed to avoid it would be
8215 * sufficiently pervasive that it's not worth the loss of readability.
Fred Drakec9680921999-12-13 16:37:25 +00008216 */
8217struct constdef {
8218 char *name;
8219 long value;
8220};
8221
Fred Drake12c6e2d1999-12-14 21:25:03 +00008222static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00008223conv_confname(PyObject *arg, int *valuep, struct constdef *table,
Guido van Rossum7d5baac2007-08-27 23:24:46 +00008224 size_t tablesize)
Fred Drake12c6e2d1999-12-14 21:25:03 +00008225{
Christian Heimes217cfd12007-12-02 14:31:20 +00008226 if (PyLong_Check(arg)) {
Stefan Krah0e803b32010-11-26 16:16:47 +00008227 *valuep = PyLong_AS_LONG(arg);
8228 return 1;
Fred Drake12c6e2d1999-12-14 21:25:03 +00008229 }
Guido van Rossumbce56a62007-05-10 18:04:33 +00008230 else {
Stefan Krah0e803b32010-11-26 16:16:47 +00008231 /* look up the value in the table using a binary search */
8232 size_t lo = 0;
8233 size_t mid;
8234 size_t hi = tablesize;
8235 int cmp;
8236 const char *confname;
8237 if (!PyUnicode_Check(arg)) {
8238 PyErr_SetString(PyExc_TypeError,
8239 "configuration names must be strings or integers");
8240 return 0;
Victor Stinner8c62be82010-05-06 00:08:46 +00008241 }
Stefan Krah0e803b32010-11-26 16:16:47 +00008242 confname = _PyUnicode_AsString(arg);
8243 if (confname == NULL)
8244 return 0;
8245 while (lo < hi) {
8246 mid = (lo + hi) / 2;
8247 cmp = strcmp(confname, table[mid].name);
8248 if (cmp < 0)
8249 hi = mid;
8250 else if (cmp > 0)
8251 lo = mid + 1;
8252 else {
8253 *valuep = table[mid].value;
8254 return 1;
8255 }
8256 }
8257 PyErr_SetString(PyExc_ValueError, "unrecognized configuration name");
8258 return 0;
Victor Stinner8c62be82010-05-06 00:08:46 +00008259 }
Fred Drake12c6e2d1999-12-14 21:25:03 +00008260}
8261
8262
8263#if defined(HAVE_FPATHCONF) || defined(HAVE_PATHCONF)
8264static struct constdef posix_constants_pathconf[] = {
Fred Draked86ed291999-12-15 15:34:33 +00008265#ifdef _PC_ABI_AIO_XFER_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008266 {"PC_ABI_AIO_XFER_MAX", _PC_ABI_AIO_XFER_MAX},
Fred Draked86ed291999-12-15 15:34:33 +00008267#endif
8268#ifdef _PC_ABI_ASYNC_IO
Victor Stinner8c62be82010-05-06 00:08:46 +00008269 {"PC_ABI_ASYNC_IO", _PC_ABI_ASYNC_IO},
Fred Draked86ed291999-12-15 15:34:33 +00008270#endif
Fred Drakec9680921999-12-13 16:37:25 +00008271#ifdef _PC_ASYNC_IO
Victor Stinner8c62be82010-05-06 00:08:46 +00008272 {"PC_ASYNC_IO", _PC_ASYNC_IO},
Fred Drakec9680921999-12-13 16:37:25 +00008273#endif
8274#ifdef _PC_CHOWN_RESTRICTED
Victor Stinner8c62be82010-05-06 00:08:46 +00008275 {"PC_CHOWN_RESTRICTED", _PC_CHOWN_RESTRICTED},
Fred Drakec9680921999-12-13 16:37:25 +00008276#endif
8277#ifdef _PC_FILESIZEBITS
Victor Stinner8c62be82010-05-06 00:08:46 +00008278 {"PC_FILESIZEBITS", _PC_FILESIZEBITS},
Fred Drakec9680921999-12-13 16:37:25 +00008279#endif
8280#ifdef _PC_LAST
Victor Stinner8c62be82010-05-06 00:08:46 +00008281 {"PC_LAST", _PC_LAST},
Fred Drakec9680921999-12-13 16:37:25 +00008282#endif
8283#ifdef _PC_LINK_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008284 {"PC_LINK_MAX", _PC_LINK_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008285#endif
8286#ifdef _PC_MAX_CANON
Victor Stinner8c62be82010-05-06 00:08:46 +00008287 {"PC_MAX_CANON", _PC_MAX_CANON},
Fred Drakec9680921999-12-13 16:37:25 +00008288#endif
8289#ifdef _PC_MAX_INPUT
Victor Stinner8c62be82010-05-06 00:08:46 +00008290 {"PC_MAX_INPUT", _PC_MAX_INPUT},
Fred Drakec9680921999-12-13 16:37:25 +00008291#endif
8292#ifdef _PC_NAME_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008293 {"PC_NAME_MAX", _PC_NAME_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008294#endif
8295#ifdef _PC_NO_TRUNC
Victor Stinner8c62be82010-05-06 00:08:46 +00008296 {"PC_NO_TRUNC", _PC_NO_TRUNC},
Fred Drakec9680921999-12-13 16:37:25 +00008297#endif
8298#ifdef _PC_PATH_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008299 {"PC_PATH_MAX", _PC_PATH_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008300#endif
8301#ifdef _PC_PIPE_BUF
Victor Stinner8c62be82010-05-06 00:08:46 +00008302 {"PC_PIPE_BUF", _PC_PIPE_BUF},
Fred Drakec9680921999-12-13 16:37:25 +00008303#endif
8304#ifdef _PC_PRIO_IO
Victor Stinner8c62be82010-05-06 00:08:46 +00008305 {"PC_PRIO_IO", _PC_PRIO_IO},
Fred Drakec9680921999-12-13 16:37:25 +00008306#endif
8307#ifdef _PC_SOCK_MAXBUF
Victor Stinner8c62be82010-05-06 00:08:46 +00008308 {"PC_SOCK_MAXBUF", _PC_SOCK_MAXBUF},
Fred Drakec9680921999-12-13 16:37:25 +00008309#endif
8310#ifdef _PC_SYNC_IO
Victor Stinner8c62be82010-05-06 00:08:46 +00008311 {"PC_SYNC_IO", _PC_SYNC_IO},
Fred Drakec9680921999-12-13 16:37:25 +00008312#endif
8313#ifdef _PC_VDISABLE
Victor Stinner8c62be82010-05-06 00:08:46 +00008314 {"PC_VDISABLE", _PC_VDISABLE},
Fred Drakec9680921999-12-13 16:37:25 +00008315#endif
Jesus Cea7e9065c2010-10-25 13:02:04 +00008316#ifdef _PC_ACL_ENABLED
8317 {"PC_ACL_ENABLED", _PC_ACL_ENABLED},
8318#endif
8319#ifdef _PC_MIN_HOLE_SIZE
8320 {"PC_MIN_HOLE_SIZE", _PC_MIN_HOLE_SIZE},
8321#endif
8322#ifdef _PC_ALLOC_SIZE_MIN
8323 {"PC_ALLOC_SIZE_MIN", _PC_ALLOC_SIZE_MIN},
8324#endif
8325#ifdef _PC_REC_INCR_XFER_SIZE
8326 {"PC_REC_INCR_XFER_SIZE", _PC_REC_INCR_XFER_SIZE},
8327#endif
8328#ifdef _PC_REC_MAX_XFER_SIZE
8329 {"PC_REC_MAX_XFER_SIZE", _PC_REC_MAX_XFER_SIZE},
8330#endif
8331#ifdef _PC_REC_MIN_XFER_SIZE
8332 {"PC_REC_MIN_XFER_SIZE", _PC_REC_MIN_XFER_SIZE},
8333#endif
8334#ifdef _PC_REC_XFER_ALIGN
8335 {"PC_REC_XFER_ALIGN", _PC_REC_XFER_ALIGN},
8336#endif
8337#ifdef _PC_SYMLINK_MAX
8338 {"PC_SYMLINK_MAX", _PC_SYMLINK_MAX},
8339#endif
8340#ifdef _PC_XATTR_ENABLED
8341 {"PC_XATTR_ENABLED", _PC_XATTR_ENABLED},
8342#endif
8343#ifdef _PC_XATTR_EXISTS
8344 {"PC_XATTR_EXISTS", _PC_XATTR_EXISTS},
8345#endif
8346#ifdef _PC_TIMESTAMP_RESOLUTION
8347 {"PC_TIMESTAMP_RESOLUTION", _PC_TIMESTAMP_RESOLUTION},
8348#endif
Fred Drakec9680921999-12-13 16:37:25 +00008349};
8350
Fred Drakec9680921999-12-13 16:37:25 +00008351static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00008352conv_path_confname(PyObject *arg, int *valuep)
Fred Drakec9680921999-12-13 16:37:25 +00008353{
8354 return conv_confname(arg, valuep, posix_constants_pathconf,
8355 sizeof(posix_constants_pathconf)
8356 / sizeof(struct constdef));
8357}
8358#endif
8359
8360#ifdef HAVE_FPATHCONF
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008361PyDoc_STRVAR(posix_fpathconf__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00008362"fpathconf(fd, name) -> integer\n\n\
Fred Drakec9680921999-12-13 16:37:25 +00008363Return the configuration limit name for the file descriptor fd.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008364If there is no limit, return -1.");
Fred Drakec9680921999-12-13 16:37:25 +00008365
8366static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00008367posix_fpathconf(PyObject *self, PyObject *args)
Fred Drakec9680921999-12-13 16:37:25 +00008368{
8369 PyObject *result = NULL;
8370 int name, fd;
8371
Fred Drake12c6e2d1999-12-14 21:25:03 +00008372 if (PyArg_ParseTuple(args, "iO&:fpathconf", &fd,
8373 conv_path_confname, &name)) {
Stefan Krah0e803b32010-11-26 16:16:47 +00008374 long limit;
Fred Drakec9680921999-12-13 16:37:25 +00008375
Stefan Krah0e803b32010-11-26 16:16:47 +00008376 errno = 0;
8377 limit = fpathconf(fd, name);
8378 if (limit == -1 && errno != 0)
8379 posix_error();
8380 else
8381 result = PyLong_FromLong(limit);
Fred Drakec9680921999-12-13 16:37:25 +00008382 }
8383 return result;
8384}
8385#endif
8386
8387
8388#ifdef HAVE_PATHCONF
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008389PyDoc_STRVAR(posix_pathconf__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00008390"pathconf(path, name) -> integer\n\n\
Fred Drakec9680921999-12-13 16:37:25 +00008391Return the configuration limit name for the file or directory path.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008392If there is no limit, return -1.");
Fred Drakec9680921999-12-13 16:37:25 +00008393
8394static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00008395posix_pathconf(PyObject *self, PyObject *args)
Fred Drakec9680921999-12-13 16:37:25 +00008396{
8397 PyObject *result = NULL;
8398 int name;
8399 char *path;
8400
8401 if (PyArg_ParseTuple(args, "sO&:pathconf", &path,
8402 conv_path_confname, &name)) {
Victor Stinner8c62be82010-05-06 00:08:46 +00008403 long limit;
Fred Drakec9680921999-12-13 16:37:25 +00008404
Victor Stinner8c62be82010-05-06 00:08:46 +00008405 errno = 0;
8406 limit = pathconf(path, name);
8407 if (limit == -1 && errno != 0) {
8408 if (errno == EINVAL)
Stefan Krah99439262010-11-26 12:58:05 +00008409 /* could be a path or name problem */
8410 posix_error();
Fred Drakec9680921999-12-13 16:37:25 +00008411 else
Stefan Krah99439262010-11-26 12:58:05 +00008412 posix_error_with_filename(path);
Victor Stinner8c62be82010-05-06 00:08:46 +00008413 }
8414 else
8415 result = PyLong_FromLong(limit);
Fred Drakec9680921999-12-13 16:37:25 +00008416 }
8417 return result;
8418}
8419#endif
8420
8421#ifdef HAVE_CONFSTR
8422static struct constdef posix_constants_confstr[] = {
Fred Draked86ed291999-12-15 15:34:33 +00008423#ifdef _CS_ARCHITECTURE
Victor Stinner8c62be82010-05-06 00:08:46 +00008424 {"CS_ARCHITECTURE", _CS_ARCHITECTURE},
Fred Draked86ed291999-12-15 15:34:33 +00008425#endif
Mark Dickinson876d7c82010-04-16 12:47:52 +00008426#ifdef _CS_GNU_LIBC_VERSION
Victor Stinner8c62be82010-05-06 00:08:46 +00008427 {"CS_GNU_LIBC_VERSION", _CS_GNU_LIBC_VERSION},
Mark Dickinson876d7c82010-04-16 12:47:52 +00008428#endif
8429#ifdef _CS_GNU_LIBPTHREAD_VERSION
Victor Stinner8c62be82010-05-06 00:08:46 +00008430 {"CS_GNU_LIBPTHREAD_VERSION", _CS_GNU_LIBPTHREAD_VERSION},
Mark Dickinson876d7c82010-04-16 12:47:52 +00008431#endif
Fred Draked86ed291999-12-15 15:34:33 +00008432#ifdef _CS_HOSTNAME
Victor Stinner8c62be82010-05-06 00:08:46 +00008433 {"CS_HOSTNAME", _CS_HOSTNAME},
Fred Draked86ed291999-12-15 15:34:33 +00008434#endif
8435#ifdef _CS_HW_PROVIDER
Victor Stinner8c62be82010-05-06 00:08:46 +00008436 {"CS_HW_PROVIDER", _CS_HW_PROVIDER},
Fred Draked86ed291999-12-15 15:34:33 +00008437#endif
8438#ifdef _CS_HW_SERIAL
Victor Stinner8c62be82010-05-06 00:08:46 +00008439 {"CS_HW_SERIAL", _CS_HW_SERIAL},
Fred Draked86ed291999-12-15 15:34:33 +00008440#endif
8441#ifdef _CS_INITTAB_NAME
Victor Stinner8c62be82010-05-06 00:08:46 +00008442 {"CS_INITTAB_NAME", _CS_INITTAB_NAME},
Fred Draked86ed291999-12-15 15:34:33 +00008443#endif
Fred Drakec9680921999-12-13 16:37:25 +00008444#ifdef _CS_LFS64_CFLAGS
Victor Stinner8c62be82010-05-06 00:08:46 +00008445 {"CS_LFS64_CFLAGS", _CS_LFS64_CFLAGS},
Fred Drakec9680921999-12-13 16:37:25 +00008446#endif
8447#ifdef _CS_LFS64_LDFLAGS
Victor Stinner8c62be82010-05-06 00:08:46 +00008448 {"CS_LFS64_LDFLAGS", _CS_LFS64_LDFLAGS},
Fred Drakec9680921999-12-13 16:37:25 +00008449#endif
8450#ifdef _CS_LFS64_LIBS
Victor Stinner8c62be82010-05-06 00:08:46 +00008451 {"CS_LFS64_LIBS", _CS_LFS64_LIBS},
Fred Drakec9680921999-12-13 16:37:25 +00008452#endif
8453#ifdef _CS_LFS64_LINTFLAGS
Victor Stinner8c62be82010-05-06 00:08:46 +00008454 {"CS_LFS64_LINTFLAGS", _CS_LFS64_LINTFLAGS},
Fred Drakec9680921999-12-13 16:37:25 +00008455#endif
8456#ifdef _CS_LFS_CFLAGS
Victor Stinner8c62be82010-05-06 00:08:46 +00008457 {"CS_LFS_CFLAGS", _CS_LFS_CFLAGS},
Fred Drakec9680921999-12-13 16:37:25 +00008458#endif
8459#ifdef _CS_LFS_LDFLAGS
Victor Stinner8c62be82010-05-06 00:08:46 +00008460 {"CS_LFS_LDFLAGS", _CS_LFS_LDFLAGS},
Fred Drakec9680921999-12-13 16:37:25 +00008461#endif
8462#ifdef _CS_LFS_LIBS
Victor Stinner8c62be82010-05-06 00:08:46 +00008463 {"CS_LFS_LIBS", _CS_LFS_LIBS},
Fred Drakec9680921999-12-13 16:37:25 +00008464#endif
8465#ifdef _CS_LFS_LINTFLAGS
Victor Stinner8c62be82010-05-06 00:08:46 +00008466 {"CS_LFS_LINTFLAGS", _CS_LFS_LINTFLAGS},
Fred Drakec9680921999-12-13 16:37:25 +00008467#endif
Fred Draked86ed291999-12-15 15:34:33 +00008468#ifdef _CS_MACHINE
Victor Stinner8c62be82010-05-06 00:08:46 +00008469 {"CS_MACHINE", _CS_MACHINE},
Fred Draked86ed291999-12-15 15:34:33 +00008470#endif
Fred Drakec9680921999-12-13 16:37:25 +00008471#ifdef _CS_PATH
Victor Stinner8c62be82010-05-06 00:08:46 +00008472 {"CS_PATH", _CS_PATH},
Fred Drakec9680921999-12-13 16:37:25 +00008473#endif
Fred Draked86ed291999-12-15 15:34:33 +00008474#ifdef _CS_RELEASE
Victor Stinner8c62be82010-05-06 00:08:46 +00008475 {"CS_RELEASE", _CS_RELEASE},
Fred Draked86ed291999-12-15 15:34:33 +00008476#endif
8477#ifdef _CS_SRPC_DOMAIN
Victor Stinner8c62be82010-05-06 00:08:46 +00008478 {"CS_SRPC_DOMAIN", _CS_SRPC_DOMAIN},
Fred Draked86ed291999-12-15 15:34:33 +00008479#endif
8480#ifdef _CS_SYSNAME
Victor Stinner8c62be82010-05-06 00:08:46 +00008481 {"CS_SYSNAME", _CS_SYSNAME},
Fred Draked86ed291999-12-15 15:34:33 +00008482#endif
8483#ifdef _CS_VERSION
Victor Stinner8c62be82010-05-06 00:08:46 +00008484 {"CS_VERSION", _CS_VERSION},
Fred Draked86ed291999-12-15 15:34:33 +00008485#endif
Fred Drakec9680921999-12-13 16:37:25 +00008486#ifdef _CS_XBS5_ILP32_OFF32_CFLAGS
Victor Stinner8c62be82010-05-06 00:08:46 +00008487 {"CS_XBS5_ILP32_OFF32_CFLAGS", _CS_XBS5_ILP32_OFF32_CFLAGS},
Fred Drakec9680921999-12-13 16:37:25 +00008488#endif
8489#ifdef _CS_XBS5_ILP32_OFF32_LDFLAGS
Victor Stinner8c62be82010-05-06 00:08:46 +00008490 {"CS_XBS5_ILP32_OFF32_LDFLAGS", _CS_XBS5_ILP32_OFF32_LDFLAGS},
Fred Drakec9680921999-12-13 16:37:25 +00008491#endif
8492#ifdef _CS_XBS5_ILP32_OFF32_LIBS
Victor Stinner8c62be82010-05-06 00:08:46 +00008493 {"CS_XBS5_ILP32_OFF32_LIBS", _CS_XBS5_ILP32_OFF32_LIBS},
Fred Drakec9680921999-12-13 16:37:25 +00008494#endif
8495#ifdef _CS_XBS5_ILP32_OFF32_LINTFLAGS
Victor Stinner8c62be82010-05-06 00:08:46 +00008496 {"CS_XBS5_ILP32_OFF32_LINTFLAGS", _CS_XBS5_ILP32_OFF32_LINTFLAGS},
Fred Drakec9680921999-12-13 16:37:25 +00008497#endif
8498#ifdef _CS_XBS5_ILP32_OFFBIG_CFLAGS
Victor Stinner8c62be82010-05-06 00:08:46 +00008499 {"CS_XBS5_ILP32_OFFBIG_CFLAGS", _CS_XBS5_ILP32_OFFBIG_CFLAGS},
Fred Drakec9680921999-12-13 16:37:25 +00008500#endif
8501#ifdef _CS_XBS5_ILP32_OFFBIG_LDFLAGS
Victor Stinner8c62be82010-05-06 00:08:46 +00008502 {"CS_XBS5_ILP32_OFFBIG_LDFLAGS", _CS_XBS5_ILP32_OFFBIG_LDFLAGS},
Fred Drakec9680921999-12-13 16:37:25 +00008503#endif
8504#ifdef _CS_XBS5_ILP32_OFFBIG_LIBS
Victor Stinner8c62be82010-05-06 00:08:46 +00008505 {"CS_XBS5_ILP32_OFFBIG_LIBS", _CS_XBS5_ILP32_OFFBIG_LIBS},
Fred Drakec9680921999-12-13 16:37:25 +00008506#endif
8507#ifdef _CS_XBS5_ILP32_OFFBIG_LINTFLAGS
Victor Stinner8c62be82010-05-06 00:08:46 +00008508 {"CS_XBS5_ILP32_OFFBIG_LINTFLAGS", _CS_XBS5_ILP32_OFFBIG_LINTFLAGS},
Fred Drakec9680921999-12-13 16:37:25 +00008509#endif
8510#ifdef _CS_XBS5_LP64_OFF64_CFLAGS
Victor Stinner8c62be82010-05-06 00:08:46 +00008511 {"CS_XBS5_LP64_OFF64_CFLAGS", _CS_XBS5_LP64_OFF64_CFLAGS},
Fred Drakec9680921999-12-13 16:37:25 +00008512#endif
8513#ifdef _CS_XBS5_LP64_OFF64_LDFLAGS
Victor Stinner8c62be82010-05-06 00:08:46 +00008514 {"CS_XBS5_LP64_OFF64_LDFLAGS", _CS_XBS5_LP64_OFF64_LDFLAGS},
Fred Drakec9680921999-12-13 16:37:25 +00008515#endif
8516#ifdef _CS_XBS5_LP64_OFF64_LIBS
Victor Stinner8c62be82010-05-06 00:08:46 +00008517 {"CS_XBS5_LP64_OFF64_LIBS", _CS_XBS5_LP64_OFF64_LIBS},
Fred Drakec9680921999-12-13 16:37:25 +00008518#endif
8519#ifdef _CS_XBS5_LP64_OFF64_LINTFLAGS
Victor Stinner8c62be82010-05-06 00:08:46 +00008520 {"CS_XBS5_LP64_OFF64_LINTFLAGS", _CS_XBS5_LP64_OFF64_LINTFLAGS},
Fred Drakec9680921999-12-13 16:37:25 +00008521#endif
8522#ifdef _CS_XBS5_LPBIG_OFFBIG_CFLAGS
Victor Stinner8c62be82010-05-06 00:08:46 +00008523 {"CS_XBS5_LPBIG_OFFBIG_CFLAGS", _CS_XBS5_LPBIG_OFFBIG_CFLAGS},
Fred Drakec9680921999-12-13 16:37:25 +00008524#endif
8525#ifdef _CS_XBS5_LPBIG_OFFBIG_LDFLAGS
Victor Stinner8c62be82010-05-06 00:08:46 +00008526 {"CS_XBS5_LPBIG_OFFBIG_LDFLAGS", _CS_XBS5_LPBIG_OFFBIG_LDFLAGS},
Fred Drakec9680921999-12-13 16:37:25 +00008527#endif
8528#ifdef _CS_XBS5_LPBIG_OFFBIG_LIBS
Victor Stinner8c62be82010-05-06 00:08:46 +00008529 {"CS_XBS5_LPBIG_OFFBIG_LIBS", _CS_XBS5_LPBIG_OFFBIG_LIBS},
Fred Drakec9680921999-12-13 16:37:25 +00008530#endif
8531#ifdef _CS_XBS5_LPBIG_OFFBIG_LINTFLAGS
Victor Stinner8c62be82010-05-06 00:08:46 +00008532 {"CS_XBS5_LPBIG_OFFBIG_LINTFLAGS", _CS_XBS5_LPBIG_OFFBIG_LINTFLAGS},
Fred Drakec9680921999-12-13 16:37:25 +00008533#endif
Fred Draked86ed291999-12-15 15:34:33 +00008534#ifdef _MIPS_CS_AVAIL_PROCESSORS
Victor Stinner8c62be82010-05-06 00:08:46 +00008535 {"MIPS_CS_AVAIL_PROCESSORS", _MIPS_CS_AVAIL_PROCESSORS},
Fred Draked86ed291999-12-15 15:34:33 +00008536#endif
8537#ifdef _MIPS_CS_BASE
Victor Stinner8c62be82010-05-06 00:08:46 +00008538 {"MIPS_CS_BASE", _MIPS_CS_BASE},
Fred Draked86ed291999-12-15 15:34:33 +00008539#endif
8540#ifdef _MIPS_CS_HOSTID
Victor Stinner8c62be82010-05-06 00:08:46 +00008541 {"MIPS_CS_HOSTID", _MIPS_CS_HOSTID},
Fred Draked86ed291999-12-15 15:34:33 +00008542#endif
8543#ifdef _MIPS_CS_HW_NAME
Victor Stinner8c62be82010-05-06 00:08:46 +00008544 {"MIPS_CS_HW_NAME", _MIPS_CS_HW_NAME},
Fred Draked86ed291999-12-15 15:34:33 +00008545#endif
8546#ifdef _MIPS_CS_NUM_PROCESSORS
Victor Stinner8c62be82010-05-06 00:08:46 +00008547 {"MIPS_CS_NUM_PROCESSORS", _MIPS_CS_NUM_PROCESSORS},
Fred Draked86ed291999-12-15 15:34:33 +00008548#endif
8549#ifdef _MIPS_CS_OSREL_MAJ
Victor Stinner8c62be82010-05-06 00:08:46 +00008550 {"MIPS_CS_OSREL_MAJ", _MIPS_CS_OSREL_MAJ},
Fred Draked86ed291999-12-15 15:34:33 +00008551#endif
8552#ifdef _MIPS_CS_OSREL_MIN
Victor Stinner8c62be82010-05-06 00:08:46 +00008553 {"MIPS_CS_OSREL_MIN", _MIPS_CS_OSREL_MIN},
Fred Draked86ed291999-12-15 15:34:33 +00008554#endif
8555#ifdef _MIPS_CS_OSREL_PATCH
Victor Stinner8c62be82010-05-06 00:08:46 +00008556 {"MIPS_CS_OSREL_PATCH", _MIPS_CS_OSREL_PATCH},
Fred Draked86ed291999-12-15 15:34:33 +00008557#endif
8558#ifdef _MIPS_CS_OS_NAME
Victor Stinner8c62be82010-05-06 00:08:46 +00008559 {"MIPS_CS_OS_NAME", _MIPS_CS_OS_NAME},
Fred Draked86ed291999-12-15 15:34:33 +00008560#endif
8561#ifdef _MIPS_CS_OS_PROVIDER
Victor Stinner8c62be82010-05-06 00:08:46 +00008562 {"MIPS_CS_OS_PROVIDER", _MIPS_CS_OS_PROVIDER},
Fred Draked86ed291999-12-15 15:34:33 +00008563#endif
8564#ifdef _MIPS_CS_PROCESSORS
Victor Stinner8c62be82010-05-06 00:08:46 +00008565 {"MIPS_CS_PROCESSORS", _MIPS_CS_PROCESSORS},
Fred Draked86ed291999-12-15 15:34:33 +00008566#endif
8567#ifdef _MIPS_CS_SERIAL
Victor Stinner8c62be82010-05-06 00:08:46 +00008568 {"MIPS_CS_SERIAL", _MIPS_CS_SERIAL},
Fred Draked86ed291999-12-15 15:34:33 +00008569#endif
8570#ifdef _MIPS_CS_VENDOR
Victor Stinner8c62be82010-05-06 00:08:46 +00008571 {"MIPS_CS_VENDOR", _MIPS_CS_VENDOR},
Fred Draked86ed291999-12-15 15:34:33 +00008572#endif
Fred Drakec9680921999-12-13 16:37:25 +00008573};
8574
8575static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00008576conv_confstr_confname(PyObject *arg, int *valuep)
Fred Drakec9680921999-12-13 16:37:25 +00008577{
8578 return conv_confname(arg, valuep, posix_constants_confstr,
8579 sizeof(posix_constants_confstr)
8580 / sizeof(struct constdef));
8581}
8582
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008583PyDoc_STRVAR(posix_confstr__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00008584"confstr(name) -> string\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00008585Return a string-valued system configuration variable.");
Fred Drakec9680921999-12-13 16:37:25 +00008586
8587static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00008588posix_confstr(PyObject *self, PyObject *args)
Fred Drakec9680921999-12-13 16:37:25 +00008589{
8590 PyObject *result = NULL;
8591 int name;
Victor Stinnercb043522010-09-10 23:49:04 +00008592 char buffer[255];
Stefan Krah99439262010-11-26 12:58:05 +00008593 int len;
Fred Drakec9680921999-12-13 16:37:25 +00008594
Victor Stinnercb043522010-09-10 23:49:04 +00008595 if (!PyArg_ParseTuple(args, "O&:confstr", conv_confstr_confname, &name))
8596 return NULL;
8597
8598 errno = 0;
8599 len = confstr(name, buffer, sizeof(buffer));
8600 if (len == 0) {
8601 if (errno) {
8602 posix_error();
8603 return NULL;
Fred Drakec9680921999-12-13 16:37:25 +00008604 }
8605 else {
Victor Stinnercb043522010-09-10 23:49:04 +00008606 Py_RETURN_NONE;
Fred Drakec9680921999-12-13 16:37:25 +00008607 }
8608 }
Victor Stinnercb043522010-09-10 23:49:04 +00008609
8610 if ((unsigned int)len >= sizeof(buffer)) {
8611 char *buf = PyMem_Malloc(len);
8612 if (buf == NULL)
8613 return PyErr_NoMemory();
8614 confstr(name, buf, len);
8615 result = PyUnicode_DecodeFSDefaultAndSize(buf, len-1);
8616 PyMem_Free(buf);
8617 }
8618 else
8619 result = PyUnicode_DecodeFSDefaultAndSize(buffer, len-1);
Fred Drakec9680921999-12-13 16:37:25 +00008620 return result;
8621}
8622#endif
8623
8624
8625#ifdef HAVE_SYSCONF
8626static struct constdef posix_constants_sysconf[] = {
8627#ifdef _SC_2_CHAR_TERM
Victor Stinner8c62be82010-05-06 00:08:46 +00008628 {"SC_2_CHAR_TERM", _SC_2_CHAR_TERM},
Fred Drakec9680921999-12-13 16:37:25 +00008629#endif
8630#ifdef _SC_2_C_BIND
Victor Stinner8c62be82010-05-06 00:08:46 +00008631 {"SC_2_C_BIND", _SC_2_C_BIND},
Fred Drakec9680921999-12-13 16:37:25 +00008632#endif
8633#ifdef _SC_2_C_DEV
Victor Stinner8c62be82010-05-06 00:08:46 +00008634 {"SC_2_C_DEV", _SC_2_C_DEV},
Fred Drakec9680921999-12-13 16:37:25 +00008635#endif
8636#ifdef _SC_2_C_VERSION
Victor Stinner8c62be82010-05-06 00:08:46 +00008637 {"SC_2_C_VERSION", _SC_2_C_VERSION},
Fred Drakec9680921999-12-13 16:37:25 +00008638#endif
8639#ifdef _SC_2_FORT_DEV
Victor Stinner8c62be82010-05-06 00:08:46 +00008640 {"SC_2_FORT_DEV", _SC_2_FORT_DEV},
Fred Drakec9680921999-12-13 16:37:25 +00008641#endif
8642#ifdef _SC_2_FORT_RUN
Victor Stinner8c62be82010-05-06 00:08:46 +00008643 {"SC_2_FORT_RUN", _SC_2_FORT_RUN},
Fred Drakec9680921999-12-13 16:37:25 +00008644#endif
8645#ifdef _SC_2_LOCALEDEF
Victor Stinner8c62be82010-05-06 00:08:46 +00008646 {"SC_2_LOCALEDEF", _SC_2_LOCALEDEF},
Fred Drakec9680921999-12-13 16:37:25 +00008647#endif
8648#ifdef _SC_2_SW_DEV
Victor Stinner8c62be82010-05-06 00:08:46 +00008649 {"SC_2_SW_DEV", _SC_2_SW_DEV},
Fred Drakec9680921999-12-13 16:37:25 +00008650#endif
8651#ifdef _SC_2_UPE
Victor Stinner8c62be82010-05-06 00:08:46 +00008652 {"SC_2_UPE", _SC_2_UPE},
Fred Drakec9680921999-12-13 16:37:25 +00008653#endif
8654#ifdef _SC_2_VERSION
Victor Stinner8c62be82010-05-06 00:08:46 +00008655 {"SC_2_VERSION", _SC_2_VERSION},
Fred Drakec9680921999-12-13 16:37:25 +00008656#endif
Fred Draked86ed291999-12-15 15:34:33 +00008657#ifdef _SC_ABI_ASYNCHRONOUS_IO
Victor Stinner8c62be82010-05-06 00:08:46 +00008658 {"SC_ABI_ASYNCHRONOUS_IO", _SC_ABI_ASYNCHRONOUS_IO},
Fred Draked86ed291999-12-15 15:34:33 +00008659#endif
8660#ifdef _SC_ACL
Victor Stinner8c62be82010-05-06 00:08:46 +00008661 {"SC_ACL", _SC_ACL},
Fred Draked86ed291999-12-15 15:34:33 +00008662#endif
Fred Drakec9680921999-12-13 16:37:25 +00008663#ifdef _SC_AIO_LISTIO_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008664 {"SC_AIO_LISTIO_MAX", _SC_AIO_LISTIO_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008665#endif
Fred Drakec9680921999-12-13 16:37:25 +00008666#ifdef _SC_AIO_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008667 {"SC_AIO_MAX", _SC_AIO_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008668#endif
8669#ifdef _SC_AIO_PRIO_DELTA_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008670 {"SC_AIO_PRIO_DELTA_MAX", _SC_AIO_PRIO_DELTA_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008671#endif
8672#ifdef _SC_ARG_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008673 {"SC_ARG_MAX", _SC_ARG_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008674#endif
8675#ifdef _SC_ASYNCHRONOUS_IO
Victor Stinner8c62be82010-05-06 00:08:46 +00008676 {"SC_ASYNCHRONOUS_IO", _SC_ASYNCHRONOUS_IO},
Fred Drakec9680921999-12-13 16:37:25 +00008677#endif
8678#ifdef _SC_ATEXIT_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008679 {"SC_ATEXIT_MAX", _SC_ATEXIT_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008680#endif
Fred Draked86ed291999-12-15 15:34:33 +00008681#ifdef _SC_AUDIT
Victor Stinner8c62be82010-05-06 00:08:46 +00008682 {"SC_AUDIT", _SC_AUDIT},
Fred Draked86ed291999-12-15 15:34:33 +00008683#endif
Fred Drakec9680921999-12-13 16:37:25 +00008684#ifdef _SC_AVPHYS_PAGES
Victor Stinner8c62be82010-05-06 00:08:46 +00008685 {"SC_AVPHYS_PAGES", _SC_AVPHYS_PAGES},
Fred Drakec9680921999-12-13 16:37:25 +00008686#endif
8687#ifdef _SC_BC_BASE_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008688 {"SC_BC_BASE_MAX", _SC_BC_BASE_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008689#endif
8690#ifdef _SC_BC_DIM_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008691 {"SC_BC_DIM_MAX", _SC_BC_DIM_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008692#endif
8693#ifdef _SC_BC_SCALE_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008694 {"SC_BC_SCALE_MAX", _SC_BC_SCALE_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008695#endif
8696#ifdef _SC_BC_STRING_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008697 {"SC_BC_STRING_MAX", _SC_BC_STRING_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008698#endif
Fred Draked86ed291999-12-15 15:34:33 +00008699#ifdef _SC_CAP
Victor Stinner8c62be82010-05-06 00:08:46 +00008700 {"SC_CAP", _SC_CAP},
Fred Draked86ed291999-12-15 15:34:33 +00008701#endif
Fred Drakec9680921999-12-13 16:37:25 +00008702#ifdef _SC_CHARCLASS_NAME_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008703 {"SC_CHARCLASS_NAME_MAX", _SC_CHARCLASS_NAME_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008704#endif
8705#ifdef _SC_CHAR_BIT
Victor Stinner8c62be82010-05-06 00:08:46 +00008706 {"SC_CHAR_BIT", _SC_CHAR_BIT},
Fred Drakec9680921999-12-13 16:37:25 +00008707#endif
8708#ifdef _SC_CHAR_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008709 {"SC_CHAR_MAX", _SC_CHAR_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008710#endif
8711#ifdef _SC_CHAR_MIN
Victor Stinner8c62be82010-05-06 00:08:46 +00008712 {"SC_CHAR_MIN", _SC_CHAR_MIN},
Fred Drakec9680921999-12-13 16:37:25 +00008713#endif
8714#ifdef _SC_CHILD_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008715 {"SC_CHILD_MAX", _SC_CHILD_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008716#endif
8717#ifdef _SC_CLK_TCK
Victor Stinner8c62be82010-05-06 00:08:46 +00008718 {"SC_CLK_TCK", _SC_CLK_TCK},
Fred Drakec9680921999-12-13 16:37:25 +00008719#endif
8720#ifdef _SC_COHER_BLKSZ
Victor Stinner8c62be82010-05-06 00:08:46 +00008721 {"SC_COHER_BLKSZ", _SC_COHER_BLKSZ},
Fred Drakec9680921999-12-13 16:37:25 +00008722#endif
8723#ifdef _SC_COLL_WEIGHTS_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008724 {"SC_COLL_WEIGHTS_MAX", _SC_COLL_WEIGHTS_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008725#endif
8726#ifdef _SC_DCACHE_ASSOC
Victor Stinner8c62be82010-05-06 00:08:46 +00008727 {"SC_DCACHE_ASSOC", _SC_DCACHE_ASSOC},
Fred Drakec9680921999-12-13 16:37:25 +00008728#endif
8729#ifdef _SC_DCACHE_BLKSZ
Victor Stinner8c62be82010-05-06 00:08:46 +00008730 {"SC_DCACHE_BLKSZ", _SC_DCACHE_BLKSZ},
Fred Drakec9680921999-12-13 16:37:25 +00008731#endif
8732#ifdef _SC_DCACHE_LINESZ
Victor Stinner8c62be82010-05-06 00:08:46 +00008733 {"SC_DCACHE_LINESZ", _SC_DCACHE_LINESZ},
Fred Drakec9680921999-12-13 16:37:25 +00008734#endif
8735#ifdef _SC_DCACHE_SZ
Victor Stinner8c62be82010-05-06 00:08:46 +00008736 {"SC_DCACHE_SZ", _SC_DCACHE_SZ},
Fred Drakec9680921999-12-13 16:37:25 +00008737#endif
8738#ifdef _SC_DCACHE_TBLKSZ
Victor Stinner8c62be82010-05-06 00:08:46 +00008739 {"SC_DCACHE_TBLKSZ", _SC_DCACHE_TBLKSZ},
Fred Drakec9680921999-12-13 16:37:25 +00008740#endif
8741#ifdef _SC_DELAYTIMER_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008742 {"SC_DELAYTIMER_MAX", _SC_DELAYTIMER_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008743#endif
8744#ifdef _SC_EQUIV_CLASS_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008745 {"SC_EQUIV_CLASS_MAX", _SC_EQUIV_CLASS_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008746#endif
8747#ifdef _SC_EXPR_NEST_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008748 {"SC_EXPR_NEST_MAX", _SC_EXPR_NEST_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008749#endif
8750#ifdef _SC_FSYNC
Victor Stinner8c62be82010-05-06 00:08:46 +00008751 {"SC_FSYNC", _SC_FSYNC},
Fred Drakec9680921999-12-13 16:37:25 +00008752#endif
8753#ifdef _SC_GETGR_R_SIZE_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008754 {"SC_GETGR_R_SIZE_MAX", _SC_GETGR_R_SIZE_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008755#endif
8756#ifdef _SC_GETPW_R_SIZE_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008757 {"SC_GETPW_R_SIZE_MAX", _SC_GETPW_R_SIZE_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008758#endif
8759#ifdef _SC_ICACHE_ASSOC
Victor Stinner8c62be82010-05-06 00:08:46 +00008760 {"SC_ICACHE_ASSOC", _SC_ICACHE_ASSOC},
Fred Drakec9680921999-12-13 16:37:25 +00008761#endif
8762#ifdef _SC_ICACHE_BLKSZ
Victor Stinner8c62be82010-05-06 00:08:46 +00008763 {"SC_ICACHE_BLKSZ", _SC_ICACHE_BLKSZ},
Fred Drakec9680921999-12-13 16:37:25 +00008764#endif
8765#ifdef _SC_ICACHE_LINESZ
Victor Stinner8c62be82010-05-06 00:08:46 +00008766 {"SC_ICACHE_LINESZ", _SC_ICACHE_LINESZ},
Fred Drakec9680921999-12-13 16:37:25 +00008767#endif
8768#ifdef _SC_ICACHE_SZ
Victor Stinner8c62be82010-05-06 00:08:46 +00008769 {"SC_ICACHE_SZ", _SC_ICACHE_SZ},
Fred Drakec9680921999-12-13 16:37:25 +00008770#endif
Fred Draked86ed291999-12-15 15:34:33 +00008771#ifdef _SC_INF
Victor Stinner8c62be82010-05-06 00:08:46 +00008772 {"SC_INF", _SC_INF},
Fred Draked86ed291999-12-15 15:34:33 +00008773#endif
Fred Drakec9680921999-12-13 16:37:25 +00008774#ifdef _SC_INT_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008775 {"SC_INT_MAX", _SC_INT_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008776#endif
8777#ifdef _SC_INT_MIN
Victor Stinner8c62be82010-05-06 00:08:46 +00008778 {"SC_INT_MIN", _SC_INT_MIN},
Fred Drakec9680921999-12-13 16:37:25 +00008779#endif
8780#ifdef _SC_IOV_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008781 {"SC_IOV_MAX", _SC_IOV_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008782#endif
Fred Draked86ed291999-12-15 15:34:33 +00008783#ifdef _SC_IP_SECOPTS
Victor Stinner8c62be82010-05-06 00:08:46 +00008784 {"SC_IP_SECOPTS", _SC_IP_SECOPTS},
Fred Draked86ed291999-12-15 15:34:33 +00008785#endif
Fred Drakec9680921999-12-13 16:37:25 +00008786#ifdef _SC_JOB_CONTROL
Victor Stinner8c62be82010-05-06 00:08:46 +00008787 {"SC_JOB_CONTROL", _SC_JOB_CONTROL},
Fred Drakec9680921999-12-13 16:37:25 +00008788#endif
Fred Draked86ed291999-12-15 15:34:33 +00008789#ifdef _SC_KERN_POINTERS
Victor Stinner8c62be82010-05-06 00:08:46 +00008790 {"SC_KERN_POINTERS", _SC_KERN_POINTERS},
Fred Draked86ed291999-12-15 15:34:33 +00008791#endif
8792#ifdef _SC_KERN_SIM
Victor Stinner8c62be82010-05-06 00:08:46 +00008793 {"SC_KERN_SIM", _SC_KERN_SIM},
Fred Draked86ed291999-12-15 15:34:33 +00008794#endif
Fred Drakec9680921999-12-13 16:37:25 +00008795#ifdef _SC_LINE_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008796 {"SC_LINE_MAX", _SC_LINE_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008797#endif
8798#ifdef _SC_LOGIN_NAME_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008799 {"SC_LOGIN_NAME_MAX", _SC_LOGIN_NAME_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008800#endif
8801#ifdef _SC_LOGNAME_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008802 {"SC_LOGNAME_MAX", _SC_LOGNAME_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008803#endif
8804#ifdef _SC_LONG_BIT
Victor Stinner8c62be82010-05-06 00:08:46 +00008805 {"SC_LONG_BIT", _SC_LONG_BIT},
Fred Drakec9680921999-12-13 16:37:25 +00008806#endif
Fred Draked86ed291999-12-15 15:34:33 +00008807#ifdef _SC_MAC
Victor Stinner8c62be82010-05-06 00:08:46 +00008808 {"SC_MAC", _SC_MAC},
Fred Draked86ed291999-12-15 15:34:33 +00008809#endif
Fred Drakec9680921999-12-13 16:37:25 +00008810#ifdef _SC_MAPPED_FILES
Victor Stinner8c62be82010-05-06 00:08:46 +00008811 {"SC_MAPPED_FILES", _SC_MAPPED_FILES},
Fred Drakec9680921999-12-13 16:37:25 +00008812#endif
8813#ifdef _SC_MAXPID
Victor Stinner8c62be82010-05-06 00:08:46 +00008814 {"SC_MAXPID", _SC_MAXPID},
Fred Drakec9680921999-12-13 16:37:25 +00008815#endif
8816#ifdef _SC_MB_LEN_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008817 {"SC_MB_LEN_MAX", _SC_MB_LEN_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008818#endif
8819#ifdef _SC_MEMLOCK
Victor Stinner8c62be82010-05-06 00:08:46 +00008820 {"SC_MEMLOCK", _SC_MEMLOCK},
Fred Drakec9680921999-12-13 16:37:25 +00008821#endif
8822#ifdef _SC_MEMLOCK_RANGE
Victor Stinner8c62be82010-05-06 00:08:46 +00008823 {"SC_MEMLOCK_RANGE", _SC_MEMLOCK_RANGE},
Fred Drakec9680921999-12-13 16:37:25 +00008824#endif
8825#ifdef _SC_MEMORY_PROTECTION
Victor Stinner8c62be82010-05-06 00:08:46 +00008826 {"SC_MEMORY_PROTECTION", _SC_MEMORY_PROTECTION},
Fred Drakec9680921999-12-13 16:37:25 +00008827#endif
8828#ifdef _SC_MESSAGE_PASSING
Victor Stinner8c62be82010-05-06 00:08:46 +00008829 {"SC_MESSAGE_PASSING", _SC_MESSAGE_PASSING},
Fred Drakec9680921999-12-13 16:37:25 +00008830#endif
Fred Draked86ed291999-12-15 15:34:33 +00008831#ifdef _SC_MMAP_FIXED_ALIGNMENT
Victor Stinner8c62be82010-05-06 00:08:46 +00008832 {"SC_MMAP_FIXED_ALIGNMENT", _SC_MMAP_FIXED_ALIGNMENT},
Fred Draked86ed291999-12-15 15:34:33 +00008833#endif
Fred Drakec9680921999-12-13 16:37:25 +00008834#ifdef _SC_MQ_OPEN_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008835 {"SC_MQ_OPEN_MAX", _SC_MQ_OPEN_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008836#endif
8837#ifdef _SC_MQ_PRIO_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008838 {"SC_MQ_PRIO_MAX", _SC_MQ_PRIO_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008839#endif
Fred Draked86ed291999-12-15 15:34:33 +00008840#ifdef _SC_NACLS_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008841 {"SC_NACLS_MAX", _SC_NACLS_MAX},
Fred Draked86ed291999-12-15 15:34:33 +00008842#endif
Fred Drakec9680921999-12-13 16:37:25 +00008843#ifdef _SC_NGROUPS_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008844 {"SC_NGROUPS_MAX", _SC_NGROUPS_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008845#endif
8846#ifdef _SC_NL_ARGMAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008847 {"SC_NL_ARGMAX", _SC_NL_ARGMAX},
Fred Drakec9680921999-12-13 16:37:25 +00008848#endif
8849#ifdef _SC_NL_LANGMAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008850 {"SC_NL_LANGMAX", _SC_NL_LANGMAX},
Fred Drakec9680921999-12-13 16:37:25 +00008851#endif
8852#ifdef _SC_NL_MSGMAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008853 {"SC_NL_MSGMAX", _SC_NL_MSGMAX},
Fred Drakec9680921999-12-13 16:37:25 +00008854#endif
8855#ifdef _SC_NL_NMAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008856 {"SC_NL_NMAX", _SC_NL_NMAX},
Fred Drakec9680921999-12-13 16:37:25 +00008857#endif
8858#ifdef _SC_NL_SETMAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008859 {"SC_NL_SETMAX", _SC_NL_SETMAX},
Fred Drakec9680921999-12-13 16:37:25 +00008860#endif
8861#ifdef _SC_NL_TEXTMAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008862 {"SC_NL_TEXTMAX", _SC_NL_TEXTMAX},
Fred Drakec9680921999-12-13 16:37:25 +00008863#endif
8864#ifdef _SC_NPROCESSORS_CONF
Victor Stinner8c62be82010-05-06 00:08:46 +00008865 {"SC_NPROCESSORS_CONF", _SC_NPROCESSORS_CONF},
Fred Drakec9680921999-12-13 16:37:25 +00008866#endif
8867#ifdef _SC_NPROCESSORS_ONLN
Victor Stinner8c62be82010-05-06 00:08:46 +00008868 {"SC_NPROCESSORS_ONLN", _SC_NPROCESSORS_ONLN},
Fred Drakec9680921999-12-13 16:37:25 +00008869#endif
Fred Draked86ed291999-12-15 15:34:33 +00008870#ifdef _SC_NPROC_CONF
Victor Stinner8c62be82010-05-06 00:08:46 +00008871 {"SC_NPROC_CONF", _SC_NPROC_CONF},
Fred Draked86ed291999-12-15 15:34:33 +00008872#endif
8873#ifdef _SC_NPROC_ONLN
Victor Stinner8c62be82010-05-06 00:08:46 +00008874 {"SC_NPROC_ONLN", _SC_NPROC_ONLN},
Fred Draked86ed291999-12-15 15:34:33 +00008875#endif
Fred Drakec9680921999-12-13 16:37:25 +00008876#ifdef _SC_NZERO
Victor Stinner8c62be82010-05-06 00:08:46 +00008877 {"SC_NZERO", _SC_NZERO},
Fred Drakec9680921999-12-13 16:37:25 +00008878#endif
8879#ifdef _SC_OPEN_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008880 {"SC_OPEN_MAX", _SC_OPEN_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008881#endif
8882#ifdef _SC_PAGESIZE
Victor Stinner8c62be82010-05-06 00:08:46 +00008883 {"SC_PAGESIZE", _SC_PAGESIZE},
Fred Drakec9680921999-12-13 16:37:25 +00008884#endif
8885#ifdef _SC_PAGE_SIZE
Victor Stinner8c62be82010-05-06 00:08:46 +00008886 {"SC_PAGE_SIZE", _SC_PAGE_SIZE},
Fred Drakec9680921999-12-13 16:37:25 +00008887#endif
8888#ifdef _SC_PASS_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008889 {"SC_PASS_MAX", _SC_PASS_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008890#endif
8891#ifdef _SC_PHYS_PAGES
Victor Stinner8c62be82010-05-06 00:08:46 +00008892 {"SC_PHYS_PAGES", _SC_PHYS_PAGES},
Fred Drakec9680921999-12-13 16:37:25 +00008893#endif
8894#ifdef _SC_PII
Victor Stinner8c62be82010-05-06 00:08:46 +00008895 {"SC_PII", _SC_PII},
Fred Drakec9680921999-12-13 16:37:25 +00008896#endif
8897#ifdef _SC_PII_INTERNET
Victor Stinner8c62be82010-05-06 00:08:46 +00008898 {"SC_PII_INTERNET", _SC_PII_INTERNET},
Fred Drakec9680921999-12-13 16:37:25 +00008899#endif
8900#ifdef _SC_PII_INTERNET_DGRAM
Victor Stinner8c62be82010-05-06 00:08:46 +00008901 {"SC_PII_INTERNET_DGRAM", _SC_PII_INTERNET_DGRAM},
Fred Drakec9680921999-12-13 16:37:25 +00008902#endif
8903#ifdef _SC_PII_INTERNET_STREAM
Victor Stinner8c62be82010-05-06 00:08:46 +00008904 {"SC_PII_INTERNET_STREAM", _SC_PII_INTERNET_STREAM},
Fred Drakec9680921999-12-13 16:37:25 +00008905#endif
8906#ifdef _SC_PII_OSI
Victor Stinner8c62be82010-05-06 00:08:46 +00008907 {"SC_PII_OSI", _SC_PII_OSI},
Fred Drakec9680921999-12-13 16:37:25 +00008908#endif
8909#ifdef _SC_PII_OSI_CLTS
Victor Stinner8c62be82010-05-06 00:08:46 +00008910 {"SC_PII_OSI_CLTS", _SC_PII_OSI_CLTS},
Fred Drakec9680921999-12-13 16:37:25 +00008911#endif
8912#ifdef _SC_PII_OSI_COTS
Victor Stinner8c62be82010-05-06 00:08:46 +00008913 {"SC_PII_OSI_COTS", _SC_PII_OSI_COTS},
Fred Drakec9680921999-12-13 16:37:25 +00008914#endif
8915#ifdef _SC_PII_OSI_M
Victor Stinner8c62be82010-05-06 00:08:46 +00008916 {"SC_PII_OSI_M", _SC_PII_OSI_M},
Fred Drakec9680921999-12-13 16:37:25 +00008917#endif
8918#ifdef _SC_PII_SOCKET
Victor Stinner8c62be82010-05-06 00:08:46 +00008919 {"SC_PII_SOCKET", _SC_PII_SOCKET},
Fred Drakec9680921999-12-13 16:37:25 +00008920#endif
8921#ifdef _SC_PII_XTI
Victor Stinner8c62be82010-05-06 00:08:46 +00008922 {"SC_PII_XTI", _SC_PII_XTI},
Fred Drakec9680921999-12-13 16:37:25 +00008923#endif
8924#ifdef _SC_POLL
Victor Stinner8c62be82010-05-06 00:08:46 +00008925 {"SC_POLL", _SC_POLL},
Fred Drakec9680921999-12-13 16:37:25 +00008926#endif
8927#ifdef _SC_PRIORITIZED_IO
Victor Stinner8c62be82010-05-06 00:08:46 +00008928 {"SC_PRIORITIZED_IO", _SC_PRIORITIZED_IO},
Fred Drakec9680921999-12-13 16:37:25 +00008929#endif
8930#ifdef _SC_PRIORITY_SCHEDULING
Victor Stinner8c62be82010-05-06 00:08:46 +00008931 {"SC_PRIORITY_SCHEDULING", _SC_PRIORITY_SCHEDULING},
Fred Drakec9680921999-12-13 16:37:25 +00008932#endif
8933#ifdef _SC_REALTIME_SIGNALS
Victor Stinner8c62be82010-05-06 00:08:46 +00008934 {"SC_REALTIME_SIGNALS", _SC_REALTIME_SIGNALS},
Fred Drakec9680921999-12-13 16:37:25 +00008935#endif
8936#ifdef _SC_RE_DUP_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008937 {"SC_RE_DUP_MAX", _SC_RE_DUP_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008938#endif
8939#ifdef _SC_RTSIG_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008940 {"SC_RTSIG_MAX", _SC_RTSIG_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008941#endif
8942#ifdef _SC_SAVED_IDS
Victor Stinner8c62be82010-05-06 00:08:46 +00008943 {"SC_SAVED_IDS", _SC_SAVED_IDS},
Fred Drakec9680921999-12-13 16:37:25 +00008944#endif
8945#ifdef _SC_SCHAR_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008946 {"SC_SCHAR_MAX", _SC_SCHAR_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008947#endif
8948#ifdef _SC_SCHAR_MIN
Victor Stinner8c62be82010-05-06 00:08:46 +00008949 {"SC_SCHAR_MIN", _SC_SCHAR_MIN},
Fred Drakec9680921999-12-13 16:37:25 +00008950#endif
8951#ifdef _SC_SELECT
Victor Stinner8c62be82010-05-06 00:08:46 +00008952 {"SC_SELECT", _SC_SELECT},
Fred Drakec9680921999-12-13 16:37:25 +00008953#endif
8954#ifdef _SC_SEMAPHORES
Victor Stinner8c62be82010-05-06 00:08:46 +00008955 {"SC_SEMAPHORES", _SC_SEMAPHORES},
Fred Drakec9680921999-12-13 16:37:25 +00008956#endif
8957#ifdef _SC_SEM_NSEMS_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008958 {"SC_SEM_NSEMS_MAX", _SC_SEM_NSEMS_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008959#endif
8960#ifdef _SC_SEM_VALUE_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008961 {"SC_SEM_VALUE_MAX", _SC_SEM_VALUE_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008962#endif
8963#ifdef _SC_SHARED_MEMORY_OBJECTS
Victor Stinner8c62be82010-05-06 00:08:46 +00008964 {"SC_SHARED_MEMORY_OBJECTS", _SC_SHARED_MEMORY_OBJECTS},
Fred Drakec9680921999-12-13 16:37:25 +00008965#endif
8966#ifdef _SC_SHRT_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008967 {"SC_SHRT_MAX", _SC_SHRT_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008968#endif
8969#ifdef _SC_SHRT_MIN
Victor Stinner8c62be82010-05-06 00:08:46 +00008970 {"SC_SHRT_MIN", _SC_SHRT_MIN},
Fred Drakec9680921999-12-13 16:37:25 +00008971#endif
8972#ifdef _SC_SIGQUEUE_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008973 {"SC_SIGQUEUE_MAX", _SC_SIGQUEUE_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008974#endif
8975#ifdef _SC_SIGRT_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008976 {"SC_SIGRT_MAX", _SC_SIGRT_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008977#endif
8978#ifdef _SC_SIGRT_MIN
Victor Stinner8c62be82010-05-06 00:08:46 +00008979 {"SC_SIGRT_MIN", _SC_SIGRT_MIN},
Fred Drakec9680921999-12-13 16:37:25 +00008980#endif
Fred Draked86ed291999-12-15 15:34:33 +00008981#ifdef _SC_SOFTPOWER
Victor Stinner8c62be82010-05-06 00:08:46 +00008982 {"SC_SOFTPOWER", _SC_SOFTPOWER},
Fred Draked86ed291999-12-15 15:34:33 +00008983#endif
Fred Drakec9680921999-12-13 16:37:25 +00008984#ifdef _SC_SPLIT_CACHE
Victor Stinner8c62be82010-05-06 00:08:46 +00008985 {"SC_SPLIT_CACHE", _SC_SPLIT_CACHE},
Fred Drakec9680921999-12-13 16:37:25 +00008986#endif
8987#ifdef _SC_SSIZE_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008988 {"SC_SSIZE_MAX", _SC_SSIZE_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008989#endif
8990#ifdef _SC_STACK_PROT
Victor Stinner8c62be82010-05-06 00:08:46 +00008991 {"SC_STACK_PROT", _SC_STACK_PROT},
Fred Drakec9680921999-12-13 16:37:25 +00008992#endif
8993#ifdef _SC_STREAM_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00008994 {"SC_STREAM_MAX", _SC_STREAM_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00008995#endif
8996#ifdef _SC_SYNCHRONIZED_IO
Victor Stinner8c62be82010-05-06 00:08:46 +00008997 {"SC_SYNCHRONIZED_IO", _SC_SYNCHRONIZED_IO},
Fred Drakec9680921999-12-13 16:37:25 +00008998#endif
8999#ifdef _SC_THREADS
Victor Stinner8c62be82010-05-06 00:08:46 +00009000 {"SC_THREADS", _SC_THREADS},
Fred Drakec9680921999-12-13 16:37:25 +00009001#endif
9002#ifdef _SC_THREAD_ATTR_STACKADDR
Victor Stinner8c62be82010-05-06 00:08:46 +00009003 {"SC_THREAD_ATTR_STACKADDR", _SC_THREAD_ATTR_STACKADDR},
Fred Drakec9680921999-12-13 16:37:25 +00009004#endif
9005#ifdef _SC_THREAD_ATTR_STACKSIZE
Victor Stinner8c62be82010-05-06 00:08:46 +00009006 {"SC_THREAD_ATTR_STACKSIZE", _SC_THREAD_ATTR_STACKSIZE},
Fred Drakec9680921999-12-13 16:37:25 +00009007#endif
9008#ifdef _SC_THREAD_DESTRUCTOR_ITERATIONS
Victor Stinner8c62be82010-05-06 00:08:46 +00009009 {"SC_THREAD_DESTRUCTOR_ITERATIONS", _SC_THREAD_DESTRUCTOR_ITERATIONS},
Fred Drakec9680921999-12-13 16:37:25 +00009010#endif
9011#ifdef _SC_THREAD_KEYS_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00009012 {"SC_THREAD_KEYS_MAX", _SC_THREAD_KEYS_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00009013#endif
9014#ifdef _SC_THREAD_PRIORITY_SCHEDULING
Victor Stinner8c62be82010-05-06 00:08:46 +00009015 {"SC_THREAD_PRIORITY_SCHEDULING", _SC_THREAD_PRIORITY_SCHEDULING},
Fred Drakec9680921999-12-13 16:37:25 +00009016#endif
9017#ifdef _SC_THREAD_PRIO_INHERIT
Victor Stinner8c62be82010-05-06 00:08:46 +00009018 {"SC_THREAD_PRIO_INHERIT", _SC_THREAD_PRIO_INHERIT},
Fred Drakec9680921999-12-13 16:37:25 +00009019#endif
9020#ifdef _SC_THREAD_PRIO_PROTECT
Victor Stinner8c62be82010-05-06 00:08:46 +00009021 {"SC_THREAD_PRIO_PROTECT", _SC_THREAD_PRIO_PROTECT},
Fred Drakec9680921999-12-13 16:37:25 +00009022#endif
9023#ifdef _SC_THREAD_PROCESS_SHARED
Victor Stinner8c62be82010-05-06 00:08:46 +00009024 {"SC_THREAD_PROCESS_SHARED", _SC_THREAD_PROCESS_SHARED},
Fred Drakec9680921999-12-13 16:37:25 +00009025#endif
9026#ifdef _SC_THREAD_SAFE_FUNCTIONS
Victor Stinner8c62be82010-05-06 00:08:46 +00009027 {"SC_THREAD_SAFE_FUNCTIONS", _SC_THREAD_SAFE_FUNCTIONS},
Fred Drakec9680921999-12-13 16:37:25 +00009028#endif
9029#ifdef _SC_THREAD_STACK_MIN
Victor Stinner8c62be82010-05-06 00:08:46 +00009030 {"SC_THREAD_STACK_MIN", _SC_THREAD_STACK_MIN},
Fred Drakec9680921999-12-13 16:37:25 +00009031#endif
9032#ifdef _SC_THREAD_THREADS_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00009033 {"SC_THREAD_THREADS_MAX", _SC_THREAD_THREADS_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00009034#endif
9035#ifdef _SC_TIMERS
Victor Stinner8c62be82010-05-06 00:08:46 +00009036 {"SC_TIMERS", _SC_TIMERS},
Fred Drakec9680921999-12-13 16:37:25 +00009037#endif
9038#ifdef _SC_TIMER_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00009039 {"SC_TIMER_MAX", _SC_TIMER_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00009040#endif
9041#ifdef _SC_TTY_NAME_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00009042 {"SC_TTY_NAME_MAX", _SC_TTY_NAME_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00009043#endif
9044#ifdef _SC_TZNAME_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00009045 {"SC_TZNAME_MAX", _SC_TZNAME_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00009046#endif
9047#ifdef _SC_T_IOV_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00009048 {"SC_T_IOV_MAX", _SC_T_IOV_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00009049#endif
9050#ifdef _SC_UCHAR_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00009051 {"SC_UCHAR_MAX", _SC_UCHAR_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00009052#endif
9053#ifdef _SC_UINT_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00009054 {"SC_UINT_MAX", _SC_UINT_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00009055#endif
9056#ifdef _SC_UIO_MAXIOV
Victor Stinner8c62be82010-05-06 00:08:46 +00009057 {"SC_UIO_MAXIOV", _SC_UIO_MAXIOV},
Fred Drakec9680921999-12-13 16:37:25 +00009058#endif
9059#ifdef _SC_ULONG_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00009060 {"SC_ULONG_MAX", _SC_ULONG_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00009061#endif
9062#ifdef _SC_USHRT_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +00009063 {"SC_USHRT_MAX", _SC_USHRT_MAX},
Fred Drakec9680921999-12-13 16:37:25 +00009064#endif
9065#ifdef _SC_VERSION
Victor Stinner8c62be82010-05-06 00:08:46 +00009066 {"SC_VERSION", _SC_VERSION},
Fred Drakec9680921999-12-13 16:37:25 +00009067#endif
9068#ifdef _SC_WORD_BIT
Victor Stinner8c62be82010-05-06 00:08:46 +00009069 {"SC_WORD_BIT", _SC_WORD_BIT},
Fred Drakec9680921999-12-13 16:37:25 +00009070#endif
9071#ifdef _SC_XBS5_ILP32_OFF32
Victor Stinner8c62be82010-05-06 00:08:46 +00009072 {"SC_XBS5_ILP32_OFF32", _SC_XBS5_ILP32_OFF32},
Fred Drakec9680921999-12-13 16:37:25 +00009073#endif
9074#ifdef _SC_XBS5_ILP32_OFFBIG
Victor Stinner8c62be82010-05-06 00:08:46 +00009075 {"SC_XBS5_ILP32_OFFBIG", _SC_XBS5_ILP32_OFFBIG},
Fred Drakec9680921999-12-13 16:37:25 +00009076#endif
9077#ifdef _SC_XBS5_LP64_OFF64
Victor Stinner8c62be82010-05-06 00:08:46 +00009078 {"SC_XBS5_LP64_OFF64", _SC_XBS5_LP64_OFF64},
Fred Drakec9680921999-12-13 16:37:25 +00009079#endif
9080#ifdef _SC_XBS5_LPBIG_OFFBIG
Victor Stinner8c62be82010-05-06 00:08:46 +00009081 {"SC_XBS5_LPBIG_OFFBIG", _SC_XBS5_LPBIG_OFFBIG},
Fred Drakec9680921999-12-13 16:37:25 +00009082#endif
9083#ifdef _SC_XOPEN_CRYPT
Victor Stinner8c62be82010-05-06 00:08:46 +00009084 {"SC_XOPEN_CRYPT", _SC_XOPEN_CRYPT},
Fred Drakec9680921999-12-13 16:37:25 +00009085#endif
9086#ifdef _SC_XOPEN_ENH_I18N
Victor Stinner8c62be82010-05-06 00:08:46 +00009087 {"SC_XOPEN_ENH_I18N", _SC_XOPEN_ENH_I18N},
Fred Drakec9680921999-12-13 16:37:25 +00009088#endif
9089#ifdef _SC_XOPEN_LEGACY
Victor Stinner8c62be82010-05-06 00:08:46 +00009090 {"SC_XOPEN_LEGACY", _SC_XOPEN_LEGACY},
Fred Drakec9680921999-12-13 16:37:25 +00009091#endif
9092#ifdef _SC_XOPEN_REALTIME
Victor Stinner8c62be82010-05-06 00:08:46 +00009093 {"SC_XOPEN_REALTIME", _SC_XOPEN_REALTIME},
Fred Drakec9680921999-12-13 16:37:25 +00009094#endif
9095#ifdef _SC_XOPEN_REALTIME_THREADS
Victor Stinner8c62be82010-05-06 00:08:46 +00009096 {"SC_XOPEN_REALTIME_THREADS", _SC_XOPEN_REALTIME_THREADS},
Fred Drakec9680921999-12-13 16:37:25 +00009097#endif
9098#ifdef _SC_XOPEN_SHM
Victor Stinner8c62be82010-05-06 00:08:46 +00009099 {"SC_XOPEN_SHM", _SC_XOPEN_SHM},
Fred Drakec9680921999-12-13 16:37:25 +00009100#endif
9101#ifdef _SC_XOPEN_UNIX
Victor Stinner8c62be82010-05-06 00:08:46 +00009102 {"SC_XOPEN_UNIX", _SC_XOPEN_UNIX},
Fred Drakec9680921999-12-13 16:37:25 +00009103#endif
9104#ifdef _SC_XOPEN_VERSION
Victor Stinner8c62be82010-05-06 00:08:46 +00009105 {"SC_XOPEN_VERSION", _SC_XOPEN_VERSION},
Fred Drakec9680921999-12-13 16:37:25 +00009106#endif
9107#ifdef _SC_XOPEN_XCU_VERSION
Victor Stinner8c62be82010-05-06 00:08:46 +00009108 {"SC_XOPEN_XCU_VERSION", _SC_XOPEN_XCU_VERSION},
Fred Drakec9680921999-12-13 16:37:25 +00009109#endif
9110#ifdef _SC_XOPEN_XPG2
Victor Stinner8c62be82010-05-06 00:08:46 +00009111 {"SC_XOPEN_XPG2", _SC_XOPEN_XPG2},
Fred Drakec9680921999-12-13 16:37:25 +00009112#endif
9113#ifdef _SC_XOPEN_XPG3
Victor Stinner8c62be82010-05-06 00:08:46 +00009114 {"SC_XOPEN_XPG3", _SC_XOPEN_XPG3},
Fred Drakec9680921999-12-13 16:37:25 +00009115#endif
9116#ifdef _SC_XOPEN_XPG4
Victor Stinner8c62be82010-05-06 00:08:46 +00009117 {"SC_XOPEN_XPG4", _SC_XOPEN_XPG4},
Fred Drakec9680921999-12-13 16:37:25 +00009118#endif
9119};
9120
9121static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00009122conv_sysconf_confname(PyObject *arg, int *valuep)
Fred Drakec9680921999-12-13 16:37:25 +00009123{
9124 return conv_confname(arg, valuep, posix_constants_sysconf,
9125 sizeof(posix_constants_sysconf)
9126 / sizeof(struct constdef));
9127}
9128
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00009129PyDoc_STRVAR(posix_sysconf__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00009130"sysconf(name) -> integer\n\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00009131Return an integer-valued system configuration variable.");
Fred Drakec9680921999-12-13 16:37:25 +00009132
9133static PyObject *
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00009134posix_sysconf(PyObject *self, PyObject *args)
Fred Drakec9680921999-12-13 16:37:25 +00009135{
9136 PyObject *result = NULL;
9137 int name;
9138
9139 if (PyArg_ParseTuple(args, "O&:sysconf", conv_sysconf_confname, &name)) {
9140 int value;
9141
9142 errno = 0;
9143 value = sysconf(name);
9144 if (value == -1 && errno != 0)
9145 posix_error();
9146 else
Christian Heimes217cfd12007-12-02 14:31:20 +00009147 result = PyLong_FromLong(value);
Fred Drakec9680921999-12-13 16:37:25 +00009148 }
9149 return result;
9150}
9151#endif
9152
9153
Fred Drakebec628d1999-12-15 18:31:10 +00009154/* This code is used to ensure that the tables of configuration value names
9155 * are in sorted order as required by conv_confname(), and also to build the
9156 * the exported dictionaries that are used to publish information about the
9157 * names available on the host platform.
9158 *
9159 * Sorting the table at runtime ensures that the table is properly ordered
9160 * when used, even for platforms we're not able to test on. It also makes
9161 * it easier to add additional entries to the tables.
Fred Draked86ed291999-12-15 15:34:33 +00009162 */
Fred Drakebec628d1999-12-15 18:31:10 +00009163
9164static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00009165cmp_constdefs(const void *v1, const void *v2)
Fred Drakebec628d1999-12-15 18:31:10 +00009166{
9167 const struct constdef *c1 =
Victor Stinner8c62be82010-05-06 00:08:46 +00009168 (const struct constdef *) v1;
Fred Drakebec628d1999-12-15 18:31:10 +00009169 const struct constdef *c2 =
Victor Stinner8c62be82010-05-06 00:08:46 +00009170 (const struct constdef *) v2;
Fred Drakebec628d1999-12-15 18:31:10 +00009171
9172 return strcmp(c1->name, c2->name);
9173}
9174
9175static int
Fredrik Lundhff7df9d2000-07-08 22:48:53 +00009176setup_confname_table(struct constdef *table, size_t tablesize,
Victor Stinner8c62be82010-05-06 00:08:46 +00009177 char *tablename, PyObject *module)
Fred Draked86ed291999-12-15 15:34:33 +00009178{
Fred Drakebec628d1999-12-15 18:31:10 +00009179 PyObject *d = NULL;
Barry Warsaw3155db32000-04-13 15:20:40 +00009180 size_t i;
Fred Drakebec628d1999-12-15 18:31:10 +00009181
9182 qsort(table, tablesize, sizeof(struct constdef), cmp_constdefs);
9183 d = PyDict_New();
Barry Warsaw3155db32000-04-13 15:20:40 +00009184 if (d == NULL)
Victor Stinner8c62be82010-05-06 00:08:46 +00009185 return -1;
Fred Draked86ed291999-12-15 15:34:33 +00009186
Barry Warsaw3155db32000-04-13 15:20:40 +00009187 for (i=0; i < tablesize; ++i) {
Victor Stinner8c62be82010-05-06 00:08:46 +00009188 PyObject *o = PyLong_FromLong(table[i].value);
9189 if (o == NULL || PyDict_SetItemString(d, table[i].name, o) == -1) {
9190 Py_XDECREF(o);
9191 Py_DECREF(d);
9192 return -1;
9193 }
9194 Py_DECREF(o);
Fred Draked86ed291999-12-15 15:34:33 +00009195 }
Fred Drake4d1e64b2002-04-15 19:40:07 +00009196 return PyModule_AddObject(module, tablename, d);
Fred Draked86ed291999-12-15 15:34:33 +00009197}
9198
Fred Drakebec628d1999-12-15 18:31:10 +00009199/* Return -1 on failure, 0 on success. */
9200static int
Fred Drake4d1e64b2002-04-15 19:40:07 +00009201setup_confname_tables(PyObject *module)
Fred Draked86ed291999-12-15 15:34:33 +00009202{
9203#if defined(HAVE_FPATHCONF) || defined(HAVE_PATHCONF)
Fred Drakebec628d1999-12-15 18:31:10 +00009204 if (setup_confname_table(posix_constants_pathconf,
Fred Draked86ed291999-12-15 15:34:33 +00009205 sizeof(posix_constants_pathconf)
9206 / sizeof(struct constdef),
Fred Drake4d1e64b2002-04-15 19:40:07 +00009207 "pathconf_names", module))
Stefan Krah0e803b32010-11-26 16:16:47 +00009208 return -1;
Fred Draked86ed291999-12-15 15:34:33 +00009209#endif
9210#ifdef HAVE_CONFSTR
Fred Drakebec628d1999-12-15 18:31:10 +00009211 if (setup_confname_table(posix_constants_confstr,
Fred Draked86ed291999-12-15 15:34:33 +00009212 sizeof(posix_constants_confstr)
9213 / sizeof(struct constdef),
Fred Drake4d1e64b2002-04-15 19:40:07 +00009214 "confstr_names", module))
Stefan Krah0e803b32010-11-26 16:16:47 +00009215 return -1;
Fred Draked86ed291999-12-15 15:34:33 +00009216#endif
9217#ifdef HAVE_SYSCONF
Fred Drakebec628d1999-12-15 18:31:10 +00009218 if (setup_confname_table(posix_constants_sysconf,
Fred Draked86ed291999-12-15 15:34:33 +00009219 sizeof(posix_constants_sysconf)
9220 / sizeof(struct constdef),
Fred Drake4d1e64b2002-04-15 19:40:07 +00009221 "sysconf_names", module))
Stefan Krah0e803b32010-11-26 16:16:47 +00009222 return -1;
Fred Draked86ed291999-12-15 15:34:33 +00009223#endif
Fred Drakebec628d1999-12-15 18:31:10 +00009224 return 0;
Fred Draked86ed291999-12-15 15:34:33 +00009225}
Fred Draked86ed291999-12-15 15:34:33 +00009226
9227
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00009228PyDoc_STRVAR(posix_abort__doc__,
Fred Drakef7ce04d2002-06-20 18:31:21 +00009229"abort() -> does not return!\n\n\
Fred Drake5ab8eaf1999-12-09 21:13:07 +00009230Abort the interpreter immediately. This 'dumps core' or otherwise fails\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00009231in the hardest way possible on the hosting operating system.");
Fred Drake5ab8eaf1999-12-09 21:13:07 +00009232
9233static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00009234posix_abort(PyObject *self, PyObject *noargs)
Fred Drake5ab8eaf1999-12-09 21:13:07 +00009235{
Fred Drake5ab8eaf1999-12-09 21:13:07 +00009236 abort();
9237 /*NOTREACHED*/
9238 Py_FatalError("abort() called from Python code didn't abort!");
9239 return NULL;
9240}
Fred Drakebec628d1999-12-15 18:31:10 +00009241
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00009242#ifdef MS_WINDOWS
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00009243PyDoc_STRVAR(win32_startfile__doc__,
Georg Brandlf4f44152006-02-18 22:29:33 +00009244"startfile(filepath [, operation]) - Start a file with its associated\n\
9245application.\n\
Tim Petersf58a7aa2000-09-22 10:05:54 +00009246\n\
Georg Brandlf4f44152006-02-18 22:29:33 +00009247When \"operation\" is not specified or \"open\", this acts like\n\
9248double-clicking the file in Explorer, or giving the file name as an\n\
9249argument to the DOS \"start\" command: the file is opened with whatever\n\
9250application (if any) its extension is associated.\n\
9251When another \"operation\" is given, it specifies what should be done with\n\
9252the file. A typical operation is \"print\".\n\
Tim Petersf58a7aa2000-09-22 10:05:54 +00009253\n\
9254startfile returns as soon as the associated application is launched.\n\
9255There is no option to wait for the application to close, and no way\n\
9256to retrieve the application's exit status.\n\
9257\n\
9258The filepath is relative to the current directory. If you want to use\n\
9259an absolute path, make sure the first character is not a slash (\"/\");\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +00009260the underlying Win32 ShellExecute function doesn't work if it is.");
Tim Petersf58a7aa2000-09-22 10:05:54 +00009261
9262static PyObject *
9263win32_startfile(PyObject *self, PyObject *args)
9264{
Victor Stinner8c62be82010-05-06 00:08:46 +00009265 PyObject *ofilepath;
9266 char *filepath;
9267 char *operation = NULL;
Victor Stinnereb5657a2011-09-30 01:44:27 +02009268 wchar_t *wpath, *woperation;
Victor Stinner8c62be82010-05-06 00:08:46 +00009269 HINSTANCE rc;
Hirokazu Yamamoto8223c242009-05-17 04:21:53 +00009270
Victor Stinnereb5657a2011-09-30 01:44:27 +02009271 PyObject *unipath, *uoperation = NULL;
Victor Stinner8c62be82010-05-06 00:08:46 +00009272 if (!PyArg_ParseTuple(args, "U|s:startfile",
9273 &unipath, &operation)) {
9274 PyErr_Clear();
9275 goto normal;
9276 }
Hirokazu Yamamoto892a37a2009-06-28 11:07:03 +00009277
Victor Stinner8c62be82010-05-06 00:08:46 +00009278 if (operation) {
Victor Stinnereb5657a2011-09-30 01:44:27 +02009279 uoperation = PyUnicode_DecodeASCII(operation,
Victor Stinner8c62be82010-05-06 00:08:46 +00009280 strlen(operation), NULL);
Victor Stinnereb5657a2011-09-30 01:44:27 +02009281 if (!uoperation) {
Victor Stinner8c62be82010-05-06 00:08:46 +00009282 PyErr_Clear();
9283 operation = NULL;
9284 goto normal;
9285 }
9286 }
Hirokazu Yamamoto892a37a2009-06-28 11:07:03 +00009287
Victor Stinnereb5657a2011-09-30 01:44:27 +02009288 wpath = PyUnicode_AsUnicode(unipath);
9289 if (wpath == NULL)
9290 goto normal;
9291 if (uoperation) {
9292 woperation = PyUnicode_AsUnicode(uoperation);
9293 if (woperation == NULL)
9294 goto normal;
9295 }
9296 else
9297 woperation = NULL;
9298
Victor Stinner8c62be82010-05-06 00:08:46 +00009299 Py_BEGIN_ALLOW_THREADS
Victor Stinnereb5657a2011-09-30 01:44:27 +02009300 rc = ShellExecuteW((HWND)0, woperation, wpath,
9301 NULL, NULL, SW_SHOWNORMAL);
Victor Stinner8c62be82010-05-06 00:08:46 +00009302 Py_END_ALLOW_THREADS
9303
Victor Stinnereb5657a2011-09-30 01:44:27 +02009304 Py_XDECREF(uoperation);
Victor Stinner8c62be82010-05-06 00:08:46 +00009305 if (rc <= (HINSTANCE)32) {
Victor Stinnereb5657a2011-09-30 01:44:27 +02009306 win32_error_object("startfile", unipath);
9307 return NULL;
Victor Stinner8c62be82010-05-06 00:08:46 +00009308 }
9309 Py_INCREF(Py_None);
9310 return Py_None;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00009311
9312normal:
Victor Stinner8c62be82010-05-06 00:08:46 +00009313 if (!PyArg_ParseTuple(args, "O&|s:startfile",
9314 PyUnicode_FSConverter, &ofilepath,
9315 &operation))
9316 return NULL;
Victor Stinner1ab6c2d2011-11-15 22:27:41 +01009317 if (win32_warn_bytes_api()) {
9318 Py_DECREF(ofilepath);
9319 return NULL;
9320 }
Victor Stinner8c62be82010-05-06 00:08:46 +00009321 filepath = PyBytes_AsString(ofilepath);
9322 Py_BEGIN_ALLOW_THREADS
9323 rc = ShellExecute((HWND)0, operation, filepath,
9324 NULL, NULL, SW_SHOWNORMAL);
9325 Py_END_ALLOW_THREADS
9326 if (rc <= (HINSTANCE)32) {
9327 PyObject *errval = win32_error("startfile", filepath);
9328 Py_DECREF(ofilepath);
9329 return errval;
9330 }
9331 Py_DECREF(ofilepath);
9332 Py_INCREF(Py_None);
9333 return Py_None;
Tim Petersf58a7aa2000-09-22 10:05:54 +00009334}
9335#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +00009336
Martin v. Löwis438b5342002-12-27 10:16:42 +00009337#ifdef HAVE_GETLOADAVG
9338PyDoc_STRVAR(posix_getloadavg__doc__,
9339"getloadavg() -> (float, float, float)\n\n\
9340Return the number of processes in the system run queue averaged over\n\
9341the last 1, 5, and 15 minutes or raises OSError if the load average\n\
9342was unobtainable");
9343
9344static PyObject *
Neal Norwitze241ce82003-02-17 18:17:05 +00009345posix_getloadavg(PyObject *self, PyObject *noargs)
Martin v. Löwis438b5342002-12-27 10:16:42 +00009346{
9347 double loadavg[3];
Martin v. Löwis438b5342002-12-27 10:16:42 +00009348 if (getloadavg(loadavg, 3)!=3) {
Stefan Krah0e803b32010-11-26 16:16:47 +00009349 PyErr_SetString(PyExc_OSError, "Load averages are unobtainable");
9350 return NULL;
Martin v. Löwis438b5342002-12-27 10:16:42 +00009351 } else
Stefan Krah0e803b32010-11-26 16:16:47 +00009352 return Py_BuildValue("ddd", loadavg[0], loadavg[1], loadavg[2]);
Martin v. Löwis438b5342002-12-27 10:16:42 +00009353}
9354#endif
9355
Martin v. Löwisd1cd4d42007-08-11 14:02:14 +00009356PyDoc_STRVAR(device_encoding__doc__,
9357"device_encoding(fd) -> str\n\n\
9358Return a string describing the encoding of the device\n\
9359if the output is a terminal; else return None.");
9360
9361static PyObject *
9362device_encoding(PyObject *self, PyObject *args)
9363{
Victor Stinner8c62be82010-05-06 00:08:46 +00009364 int fd;
Brett Cannonefb00c02012-02-29 18:31:31 -05009365
Victor Stinner8c62be82010-05-06 00:08:46 +00009366 if (!PyArg_ParseTuple(args, "i:device_encoding", &fd))
9367 return NULL;
Brett Cannonefb00c02012-02-29 18:31:31 -05009368
9369 return _Py_device_encoding(fd);
Martin v. Löwisd1cd4d42007-08-11 14:02:14 +00009370}
9371
Thomas Wouters0e3f5912006-08-11 14:57:12 +00009372#ifdef __VMS
9373/* Use openssl random routine */
9374#include <openssl/rand.h>
9375PyDoc_STRVAR(vms_urandom__doc__,
9376"urandom(n) -> str\n\n\
Neal Norwitz93c56822007-08-26 07:10:06 +00009377Return n random bytes suitable for cryptographic use.");
Thomas Wouters0e3f5912006-08-11 14:57:12 +00009378
9379static PyObject*
9380vms_urandom(PyObject *self, PyObject *args)
9381{
Victor Stinner8c62be82010-05-06 00:08:46 +00009382 int howMany;
9383 PyObject* result;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00009384
Victor Stinner8c62be82010-05-06 00:08:46 +00009385 /* Read arguments */
9386 if (! PyArg_ParseTuple(args, "i:urandom", &howMany))
9387 return NULL;
9388 if (howMany < 0)
9389 return PyErr_Format(PyExc_ValueError,
9390 "negative argument not allowed");
Thomas Wouters0e3f5912006-08-11 14:57:12 +00009391
Victor Stinner8c62be82010-05-06 00:08:46 +00009392 /* Allocate bytes */
9393 result = PyBytes_FromStringAndSize(NULL, howMany);
9394 if (result != NULL) {
9395 /* Get random data */
9396 if (RAND_pseudo_bytes((unsigned char*)
9397 PyBytes_AS_STRING(result),
9398 howMany) < 0) {
9399 Py_DECREF(result);
9400 return PyErr_Format(PyExc_ValueError,
9401 "RAND_pseudo_bytes");
9402 }
9403 }
9404 return result;
Thomas Wouters0e3f5912006-08-11 14:57:12 +00009405}
9406#endif
9407
Martin v. Löwis7aed61a2009-11-27 14:09:49 +00009408#ifdef HAVE_SETRESUID
9409PyDoc_STRVAR(posix_setresuid__doc__,
9410"setresuid(ruid, euid, suid)\n\n\
9411Set the current process's real, effective, and saved user ids.");
9412
9413static PyObject*
9414posix_setresuid (PyObject *self, PyObject *args)
9415{
Victor Stinner8c62be82010-05-06 00:08:46 +00009416 /* We assume uid_t is no larger than a long. */
9417 long ruid, euid, suid;
9418 if (!PyArg_ParseTuple(args, "lll", &ruid, &euid, &suid))
9419 return NULL;
9420 if (setresuid(ruid, euid, suid) < 0)
9421 return posix_error();
9422 Py_RETURN_NONE;
Martin v. Löwis7aed61a2009-11-27 14:09:49 +00009423}
9424#endif
9425
9426#ifdef HAVE_SETRESGID
9427PyDoc_STRVAR(posix_setresgid__doc__,
9428"setresgid(rgid, egid, sgid)\n\n\
9429Set the current process's real, effective, and saved group ids.");
9430
9431static PyObject*
9432posix_setresgid (PyObject *self, PyObject *args)
9433{
Victor Stinner8c62be82010-05-06 00:08:46 +00009434 /* We assume uid_t is no larger than a long. */
9435 long rgid, egid, sgid;
9436 if (!PyArg_ParseTuple(args, "lll", &rgid, &egid, &sgid))
9437 return NULL;
9438 if (setresgid(rgid, egid, sgid) < 0)
9439 return posix_error();
9440 Py_RETURN_NONE;
Martin v. Löwis7aed61a2009-11-27 14:09:49 +00009441}
9442#endif
9443
9444#ifdef HAVE_GETRESUID
9445PyDoc_STRVAR(posix_getresuid__doc__,
9446"getresuid() -> (ruid, euid, suid)\n\n\
9447Get tuple of the current process's real, effective, and saved user ids.");
9448
9449static PyObject*
9450posix_getresuid (PyObject *self, PyObject *noargs)
9451{
Victor Stinner8c62be82010-05-06 00:08:46 +00009452 uid_t ruid, euid, suid;
9453 long l_ruid, l_euid, l_suid;
9454 if (getresuid(&ruid, &euid, &suid) < 0)
9455 return posix_error();
9456 /* Force the values into long's as we don't know the size of uid_t. */
9457 l_ruid = ruid;
9458 l_euid = euid;
9459 l_suid = suid;
9460 return Py_BuildValue("(lll)", l_ruid, l_euid, l_suid);
Martin v. Löwis7aed61a2009-11-27 14:09:49 +00009461}
9462#endif
9463
9464#ifdef HAVE_GETRESGID
9465PyDoc_STRVAR(posix_getresgid__doc__,
9466"getresgid() -> (rgid, egid, sgid)\n\n\
Georg Brandla9b51d22010-09-05 17:07:12 +00009467Get tuple of the current process's real, effective, and saved group ids.");
Martin v. Löwis7aed61a2009-11-27 14:09:49 +00009468
9469static PyObject*
9470posix_getresgid (PyObject *self, PyObject *noargs)
9471{
Victor Stinner8c62be82010-05-06 00:08:46 +00009472 uid_t rgid, egid, sgid;
9473 long l_rgid, l_egid, l_sgid;
9474 if (getresgid(&rgid, &egid, &sgid) < 0)
9475 return posix_error();
9476 /* Force the values into long's as we don't know the size of uid_t. */
9477 l_rgid = rgid;
9478 l_egid = egid;
9479 l_sgid = sgid;
9480 return Py_BuildValue("(lll)", l_rgid, l_egid, l_sgid);
Martin v. Löwis7aed61a2009-11-27 14:09:49 +00009481}
9482#endif
9483
Antoine Pitrouf65132d2011-02-25 23:25:17 +00009484/* Posix *at family of functions:
9485 faccessat, fchmodat, fchownat, fstatat, futimesat,
9486 linkat, mkdirat, mknodat, openat, readlinkat, renameat, symlinkat,
9487 unlinkat, utimensat, mkfifoat */
9488
9489#ifdef HAVE_FACCESSAT
9490PyDoc_STRVAR(posix_faccessat__doc__,
9491"faccessat(dirfd, path, mode, flags=0) -> True if granted, False otherwise\n\n\
9492Like access() but if path is relative, it is taken as relative to dirfd.\n\
9493flags is optional and can be constructed by ORing together zero or more\n\
9494of these values: AT_SYMLINK_NOFOLLOW, AT_EACCESS.\n\
9495If path is relative and dirfd is the special value AT_FDCWD, then path\n\
9496is interpreted relative to the current working directory.");
9497
9498static PyObject *
9499posix_faccessat(PyObject *self, PyObject *args)
9500{
9501 PyObject *opath;
9502 char *path;
9503 int mode;
9504 int res;
9505 int dirfd, flags = 0;
9506 if (!PyArg_ParseTuple(args, "iO&i|i:faccessat",
9507 &dirfd, PyUnicode_FSConverter, &opath, &mode, &flags))
9508 return NULL;
9509 path = PyBytes_AsString(opath);
9510 Py_BEGIN_ALLOW_THREADS
9511 res = faccessat(dirfd, path, mode, flags);
9512 Py_END_ALLOW_THREADS
9513 Py_DECREF(opath);
9514 return PyBool_FromLong(res == 0);
9515}
9516#endif
9517
9518#ifdef HAVE_FCHMODAT
9519PyDoc_STRVAR(posix_fchmodat__doc__,
9520"fchmodat(dirfd, path, mode, flags=0)\n\n\
9521Like chmod() but if path is relative, it is taken as relative to dirfd.\n\
9522flags is optional and may be 0 or AT_SYMLINK_NOFOLLOW.\n\
9523If path is relative and dirfd is the special value AT_FDCWD, then path\n\
9524is interpreted relative to the current working directory.");
9525
9526static PyObject *
9527posix_fchmodat(PyObject *self, PyObject *args)
9528{
9529 int dirfd, mode, res;
9530 int flags = 0;
9531 PyObject *opath;
9532 char *path;
9533
9534 if (!PyArg_ParseTuple(args, "iO&i|i:fchmodat",
9535 &dirfd, PyUnicode_FSConverter, &opath, &mode, &flags))
9536 return NULL;
9537
9538 path = PyBytes_AsString(opath);
9539
9540 Py_BEGIN_ALLOW_THREADS
9541 res = fchmodat(dirfd, path, mode, flags);
9542 Py_END_ALLOW_THREADS
9543 Py_DECREF(opath);
9544 if (res < 0)
9545 return posix_error();
9546 Py_RETURN_NONE;
9547}
9548#endif /* HAVE_FCHMODAT */
9549
9550#ifdef HAVE_FCHOWNAT
9551PyDoc_STRVAR(posix_fchownat__doc__,
9552"fchownat(dirfd, path, uid, gid, flags=0)\n\n\
9553Like chown() but if path is relative, it is taken as relative to dirfd.\n\
9554flags is optional and may be 0 or AT_SYMLINK_NOFOLLOW.\n\
9555If path is relative and dirfd is the special value AT_FDCWD, then path\n\
9556is interpreted relative to the current working directory.");
9557
9558static PyObject *
9559posix_fchownat(PyObject *self, PyObject *args)
9560{
9561 PyObject *opath;
9562 int dirfd, res;
9563 long uid, gid;
9564 int flags = 0;
9565 char *path;
Giampaolo Rodola'ff1a7352011-04-19 09:47:16 +02009566
Antoine Pitrouf65132d2011-02-25 23:25:17 +00009567 if (!PyArg_ParseTuple(args, "iO&ll|i:fchownat",
9568 &dirfd, PyUnicode_FSConverter, &opath, &uid, &gid, &flags))
9569 return NULL;
9570
9571 path = PyBytes_AsString(opath);
9572
9573 Py_BEGIN_ALLOW_THREADS
9574 res = fchownat(dirfd, path, (uid_t) uid, (gid_t) gid, flags);
9575 Py_END_ALLOW_THREADS
9576 Py_DECREF(opath);
9577 if (res < 0)
9578 return posix_error();
9579 Py_RETURN_NONE;
9580}
9581#endif /* HAVE_FCHOWNAT */
9582
9583#ifdef HAVE_FSTATAT
9584PyDoc_STRVAR(posix_fstatat__doc__,
Victor Stinner4195b5c2012-02-08 23:03:19 +01009585"fstatat(dirfd, path, flags=0) -> stat result\n\n\
Antoine Pitrouf65132d2011-02-25 23:25:17 +00009586Like stat() but if path is relative, it is taken as relative to dirfd.\n\
9587flags is optional and may be 0 or AT_SYMLINK_NOFOLLOW.\n\
9588If path is relative and dirfd is the special value AT_FDCWD, then path\n\
9589is interpreted relative to the current working directory.");
9590
9591static PyObject *
Victor Stinner4195b5c2012-02-08 23:03:19 +01009592posix_fstatat(PyObject *self, PyObject *args)
Antoine Pitrouf65132d2011-02-25 23:25:17 +00009593{
9594 PyObject *opath;
9595 char *path;
9596 STRUCT_STAT st;
9597 int dirfd, res, flags = 0;
9598
Victor Stinner4195b5c2012-02-08 23:03:19 +01009599 if (!PyArg_ParseTuple(args, "iO&|i:fstatat",
9600 &dirfd, PyUnicode_FSConverter, &opath, &flags))
Antoine Pitrouf65132d2011-02-25 23:25:17 +00009601 return NULL;
9602 path = PyBytes_AsString(opath);
9603
9604 Py_BEGIN_ALLOW_THREADS
9605 res = fstatat(dirfd, path, &st, flags);
9606 Py_END_ALLOW_THREADS
9607 Py_DECREF(opath);
9608 if (res != 0)
9609 return posix_error();
9610
Victor Stinner4195b5c2012-02-08 23:03:19 +01009611 return _pystat_fromstructstat(&st);
Antoine Pitrouf65132d2011-02-25 23:25:17 +00009612}
9613#endif
9614
9615#ifdef HAVE_FUTIMESAT
9616PyDoc_STRVAR(posix_futimesat__doc__,
Brian Curtin7ef53ef2011-11-07 14:38:24 -06009617"futimesat(dirfd, path[, (atime, mtime)])\n\
Antoine Pitrouf65132d2011-02-25 23:25:17 +00009618Like utime() but if path is relative, it is taken as relative to dirfd.\n\
9619If path is relative and dirfd is the special value AT_FDCWD, then path\n\
9620is interpreted relative to the current working directory.");
9621
9622static PyObject *
9623posix_futimesat(PyObject *self, PyObject *args)
9624{
9625 PyObject *opath;
9626 char *path;
9627 int res, dirfd;
Brian Curtin7ef53ef2011-11-07 14:38:24 -06009628 PyObject* arg = Py_None;
Larry Hastings9e3e70b2011-09-08 19:29:07 -07009629 time_t atime, mtime;
Victor Stinnera2f7c002012-02-08 03:36:25 +01009630 long ansec, mnsec;
Antoine Pitrouf65132d2011-02-25 23:25:17 +00009631
Brian Curtin7ef53ef2011-11-07 14:38:24 -06009632 if (!PyArg_ParseTuple(args, "iO&|O:futimesat",
Antoine Pitrouf65132d2011-02-25 23:25:17 +00009633 &dirfd, PyUnicode_FSConverter, &opath, &arg))
9634 return NULL;
9635 path = PyBytes_AsString(opath);
9636 if (arg == Py_None) {
9637 /* optional time values not given */
9638 Py_BEGIN_ALLOW_THREADS
9639 res = futimesat(dirfd, path, NULL);
9640 Py_END_ALLOW_THREADS
9641 }
9642 else if (!PyTuple_Check(arg) || PyTuple_Size(arg) != 2) {
9643 PyErr_SetString(PyExc_TypeError,
9644 "futimesat() arg 3 must be a tuple (atime, mtime)");
9645 Py_DECREF(opath);
9646 return NULL;
9647 }
9648 else {
Victor Stinner5d272cc2012-03-13 13:35:55 +01009649 if (_PyTime_ObjectToTimespec(PyTuple_GET_ITEM(arg, 0),
9650 &atime, &ansec) == -1) {
Antoine Pitrouf65132d2011-02-25 23:25:17 +00009651 Py_DECREF(opath);
9652 return NULL;
9653 }
Victor Stinner5d272cc2012-03-13 13:35:55 +01009654 if (_PyTime_ObjectToTimespec(PyTuple_GET_ITEM(arg, 1),
9655 &mtime, &mnsec) == -1) {
Antoine Pitrouf65132d2011-02-25 23:25:17 +00009656 Py_DECREF(opath);
9657 return NULL;
9658 }
Larry Hastings9e3e70b2011-09-08 19:29:07 -07009659
Antoine Pitrouf65132d2011-02-25 23:25:17 +00009660 Py_BEGIN_ALLOW_THREADS
Larry Hastings9e3e70b2011-09-08 19:29:07 -07009661 {
9662#ifdef HAVE_UTIMENSAT
9663 struct timespec buf[2];
9664 buf[0].tv_sec = atime;
Victor Stinnera2f7c002012-02-08 03:36:25 +01009665 buf[0].tv_nsec = ansec;
Larry Hastings9e3e70b2011-09-08 19:29:07 -07009666 buf[1].tv_sec = mtime;
Victor Stinnera2f7c002012-02-08 03:36:25 +01009667 buf[1].tv_nsec = mnsec;
Larry Hastings9e3e70b2011-09-08 19:29:07 -07009668 res = utimensat(dirfd, path, buf, 0);
9669#else
9670 struct timeval buf[2];
9671 buf[0].tv_sec = atime;
Victor Stinnera2f7c002012-02-08 03:36:25 +01009672 buf[0].tv_usec = ansec / 1000;
Larry Hastings9e3e70b2011-09-08 19:29:07 -07009673 buf[1].tv_sec = mtime;
Victor Stinnera2f7c002012-02-08 03:36:25 +01009674 buf[1].tv_usec = mnsec / 1000;
Antoine Pitrouf65132d2011-02-25 23:25:17 +00009675 res = futimesat(dirfd, path, buf);
Larry Hastings9e3e70b2011-09-08 19:29:07 -07009676#endif
9677 }
Antoine Pitrouf65132d2011-02-25 23:25:17 +00009678 Py_END_ALLOW_THREADS
9679 }
9680 Py_DECREF(opath);
9681 if (res < 0) {
9682 return posix_error();
9683 }
9684 Py_RETURN_NONE;
9685}
9686#endif
9687
9688#ifdef HAVE_LINKAT
9689PyDoc_STRVAR(posix_linkat__doc__,
9690"linkat(srcfd, srcpath, dstfd, dstpath, flags=0)\n\n\
9691Like link() but if srcpath is relative, it is taken as relative to srcfd\n\
9692and if dstpath is relative, it is taken as relative to dstfd.\n\
9693flags is optional and may be 0 or AT_SYMLINK_FOLLOW.\n\
9694If srcpath is relative and srcfd is the special value AT_FDCWD, then\n\
9695srcpath is interpreted relative to the current working directory. This\n\
9696also applies for dstpath.");
9697
9698static PyObject *
9699posix_linkat(PyObject *self, PyObject *args)
9700{
9701 PyObject *osrc, *odst;
9702 char *src, *dst;
9703 int res, srcfd, dstfd;
9704 int flags = 0;
9705
9706 if (!PyArg_ParseTuple(args, "iO&iO&|i:linkat",
9707 &srcfd, PyUnicode_FSConverter, &osrc, &dstfd, PyUnicode_FSConverter, &odst, &flags))
9708 return NULL;
9709 src = PyBytes_AsString(osrc);
9710 dst = PyBytes_AsString(odst);
9711 Py_BEGIN_ALLOW_THREADS
9712 res = linkat(srcfd, src, dstfd, dst, flags);
9713 Py_END_ALLOW_THREADS
9714 Py_DECREF(osrc);
9715 Py_DECREF(odst);
9716 if (res < 0)
9717 return posix_error();
9718 Py_RETURN_NONE;
9719}
9720#endif /* HAVE_LINKAT */
9721
9722#ifdef HAVE_MKDIRAT
9723PyDoc_STRVAR(posix_mkdirat__doc__,
9724"mkdirat(dirfd, path, mode=0o777)\n\n\
9725Like mkdir() but if path is relative, it is taken as relative to dirfd.\n\
9726If path is relative and dirfd is the special value AT_FDCWD, then path\n\
9727is interpreted relative to the current working directory.");
9728
9729static PyObject *
9730posix_mkdirat(PyObject *self, PyObject *args)
9731{
9732 int res, dirfd;
9733 PyObject *opath;
9734 char *path;
9735 int mode = 0777;
9736
9737 if (!PyArg_ParseTuple(args, "iO&|i:mkdirat",
9738 &dirfd, PyUnicode_FSConverter, &opath, &mode))
9739 return NULL;
9740 path = PyBytes_AsString(opath);
9741 Py_BEGIN_ALLOW_THREADS
9742 res = mkdirat(dirfd, path, mode);
9743 Py_END_ALLOW_THREADS
9744 Py_DECREF(opath);
9745 if (res < 0)
9746 return posix_error();
9747 Py_RETURN_NONE;
9748}
9749#endif
9750
9751#if defined(HAVE_MKNODAT) && defined(HAVE_MAKEDEV)
9752PyDoc_STRVAR(posix_mknodat__doc__,
9753"mknodat(dirfd, path, mode=0o600, device=0)\n\n\
9754Like mknod() but if path is relative, it is taken as relative to dirfd.\n\
9755If path is relative and dirfd is the special value AT_FDCWD, then path\n\
9756is interpreted relative to the current working directory.");
9757
9758static PyObject *
9759posix_mknodat(PyObject *self, PyObject *args)
9760{
9761 PyObject *opath;
9762 char *filename;
9763 int mode = 0600;
9764 int device = 0;
9765 int res, dirfd;
9766 if (!PyArg_ParseTuple(args, "iO&|ii:mknodat", &dirfd,
9767 PyUnicode_FSConverter, &opath, &mode, &device))
9768 return NULL;
9769 filename = PyBytes_AS_STRING(opath);
9770 Py_BEGIN_ALLOW_THREADS
9771 res = mknodat(dirfd, filename, mode, device);
9772 Py_END_ALLOW_THREADS
9773 Py_DECREF(opath);
9774 if (res < 0)
9775 return posix_error();
9776 Py_RETURN_NONE;
9777}
9778#endif
9779
9780#ifdef HAVE_OPENAT
9781PyDoc_STRVAR(posix_openat__doc__,
9782"openat(dirfd, path, flag, mode=0o777) -> fd\n\n\
9783Like open() but if path is relative, it is taken as relative to dirfd.\n\
9784If path is relative and dirfd is the special value AT_FDCWD, then path\n\
9785is interpreted relative to the current working directory.");
9786
9787static PyObject *
9788posix_openat(PyObject *self, PyObject *args)
9789{
9790 PyObject *ofile;
9791 char *file;
9792 int flag, dirfd, fd;
9793 int mode = 0777;
9794
9795 if (!PyArg_ParseTuple(args, "iO&i|i:openat",
9796 &dirfd, PyUnicode_FSConverter, &ofile,
9797 &flag, &mode))
9798 return NULL;
9799 file = PyBytes_AsString(ofile);
9800 Py_BEGIN_ALLOW_THREADS
9801 fd = openat(dirfd, file, flag, mode);
9802 Py_END_ALLOW_THREADS
9803 Py_DECREF(ofile);
9804 if (fd < 0)
9805 return posix_error();
9806 return PyLong_FromLong((long)fd);
9807}
9808#endif
9809
9810#ifdef HAVE_READLINKAT
9811PyDoc_STRVAR(posix_readlinkat__doc__,
9812"readlinkat(dirfd, path) -> path\n\n\
9813Like readlink() but if path is relative, it is taken as relative to dirfd.\n\
9814If path is relative and dirfd is the special value AT_FDCWD, then path\n\
9815is interpreted relative to the current working directory.");
9816
9817static PyObject *
9818posix_readlinkat(PyObject *self, PyObject *args)
9819{
9820 PyObject *v, *opath;
9821 char buf[MAXPATHLEN];
9822 char *path;
9823 int n, dirfd;
9824 int arg_is_unicode = 0;
9825
9826 if (!PyArg_ParseTuple(args, "iO&:readlinkat",
9827 &dirfd, PyUnicode_FSConverter, &opath))
9828 return NULL;
9829 path = PyBytes_AsString(opath);
9830 v = PySequence_GetItem(args, 1);
9831 if (v == NULL) {
9832 Py_DECREF(opath);
9833 return NULL;
9834 }
9835
9836 if (PyUnicode_Check(v)) {
9837 arg_is_unicode = 1;
9838 }
9839 Py_DECREF(v);
9840
9841 Py_BEGIN_ALLOW_THREADS
9842 n = readlinkat(dirfd, path, buf, (int) sizeof buf);
9843 Py_END_ALLOW_THREADS
9844 Py_DECREF(opath);
9845 if (n < 0)
9846 return posix_error();
9847
9848 if (arg_is_unicode)
9849 return PyUnicode_DecodeFSDefaultAndSize(buf, n);
9850 else
9851 return PyBytes_FromStringAndSize(buf, n);
9852}
9853#endif /* HAVE_READLINKAT */
9854
9855#ifdef HAVE_RENAMEAT
9856PyDoc_STRVAR(posix_renameat__doc__,
9857"renameat(olddirfd, oldpath, newdirfd, newpath)\n\n\
9858Like rename() but if oldpath is relative, it is taken as relative to\n\
9859olddirfd and if newpath is relative, it is taken as relative to newdirfd.\n\
9860If oldpath is relative and olddirfd is the special value AT_FDCWD, then\n\
9861oldpath is interpreted relative to the current working directory. This\n\
9862also applies for newpath.");
9863
9864static PyObject *
9865posix_renameat(PyObject *self, PyObject *args)
9866{
9867 int res;
9868 PyObject *opathold, *opathnew;
9869 char *opath, *npath;
9870 int oldfd, newfd;
9871
9872 if (!PyArg_ParseTuple(args, "iO&iO&:renameat",
9873 &oldfd, PyUnicode_FSConverter, &opathold, &newfd, PyUnicode_FSConverter, &opathnew))
9874 return NULL;
9875 opath = PyBytes_AsString(opathold);
9876 npath = PyBytes_AsString(opathnew);
9877 Py_BEGIN_ALLOW_THREADS
9878 res = renameat(oldfd, opath, newfd, npath);
9879 Py_END_ALLOW_THREADS
9880 Py_DECREF(opathold);
9881 Py_DECREF(opathnew);
9882 if (res < 0)
9883 return posix_error();
9884 Py_RETURN_NONE;
9885}
9886#endif
9887
9888#if HAVE_SYMLINKAT
9889PyDoc_STRVAR(posix_symlinkat__doc__,
9890"symlinkat(src, dstfd, dst)\n\n\
9891Like symlink() but if dst is relative, it is taken as relative to dstfd.\n\
9892If dst is relative and dstfd is the special value AT_FDCWD, then dst\n\
9893is interpreted relative to the current working directory.");
9894
9895static PyObject *
9896posix_symlinkat(PyObject *self, PyObject *args)
9897{
9898 int res, dstfd;
9899 PyObject *osrc, *odst;
9900 char *src, *dst;
9901
9902 if (!PyArg_ParseTuple(args, "O&iO&:symlinkat",
9903 PyUnicode_FSConverter, &osrc, &dstfd, PyUnicode_FSConverter, &odst))
9904 return NULL;
9905 src = PyBytes_AsString(osrc);
9906 dst = PyBytes_AsString(odst);
9907 Py_BEGIN_ALLOW_THREADS
9908 res = symlinkat(src, dstfd, dst);
9909 Py_END_ALLOW_THREADS
9910 Py_DECREF(osrc);
9911 Py_DECREF(odst);
9912 if (res < 0)
9913 return posix_error();
9914 Py_RETURN_NONE;
9915}
9916#endif /* HAVE_SYMLINKAT */
9917
9918#ifdef HAVE_UNLINKAT
9919PyDoc_STRVAR(posix_unlinkat__doc__,
9920"unlinkat(dirfd, path, flags=0)\n\n\
9921Like unlink() but if path is relative, it is taken as relative to dirfd.\n\
9922flags is optional and may be 0 or AT_REMOVEDIR. If AT_REMOVEDIR is\n\
9923specified, unlinkat() behaves like rmdir().\n\
9924If path is relative and dirfd is the special value AT_FDCWD, then path\n\
9925is interpreted relative to the current working directory.");
9926
9927static PyObject *
9928posix_unlinkat(PyObject *self, PyObject *args)
9929{
9930 int dirfd, res, flags = 0;
9931 PyObject *opath;
9932 char *path;
9933
9934 if (!PyArg_ParseTuple(args, "iO&|i:unlinkat",
9935 &dirfd, PyUnicode_FSConverter, &opath, &flags))
9936 return NULL;
9937 path = PyBytes_AsString(opath);
9938 Py_BEGIN_ALLOW_THREADS
9939 res = unlinkat(dirfd, path, flags);
9940 Py_END_ALLOW_THREADS
9941 Py_DECREF(opath);
9942 if (res < 0)
9943 return posix_error();
9944 Py_RETURN_NONE;
9945}
9946#endif
9947
9948#ifdef HAVE_UTIMENSAT
9949PyDoc_STRVAR(posix_utimensat__doc__,
Brian Curtin569b4942011-11-07 16:09:20 -06009950"utimensat(dirfd, path[, atime=(atime_sec, atime_nsec),\n\
9951 mtime=(mtime_sec, mtime_nsec), flags=0])\n\
Antoine Pitrouf65132d2011-02-25 23:25:17 +00009952utimensat(dirfd, path, None, None, flags)\n\n\
9953Updates the timestamps of a file with nanosecond precision. If path is\n\
9954relative, it is taken as relative to dirfd.\n\
Brian Curtin569b4942011-11-07 16:09:20 -06009955If atime and mtime are both None, which is the default, set atime and\n\
9956mtime to the current time.\n\
Antoine Pitrouf65132d2011-02-25 23:25:17 +00009957flags is optional and may be 0 or AT_SYMLINK_NOFOLLOW.\n\
9958If path is relative and dirfd is the special value AT_FDCWD, then path\n\
9959is interpreted relative to the current working directory.\n\
9960If *_nsec is specified as UTIME_NOW, the timestamp is updated to the\n\
9961current time.\n\
9962If *_nsec is specified as UTIME_OMIT, the timestamp is not updated.");
9963
9964static PyObject *
Brian Curtin569b4942011-11-07 16:09:20 -06009965posix_utimensat(PyObject *self, PyObject *args, PyObject *kwargs)
Antoine Pitrouf65132d2011-02-25 23:25:17 +00009966{
9967 PyObject *opath;
9968 char *path;
9969 int res, dirfd, flags = 0;
Brian Curtin569b4942011-11-07 16:09:20 -06009970 PyObject *atime = Py_None;
9971 PyObject *mtime = Py_None;
9972
9973 static char *kwlist[] = {"dirfd", "path", "atime", "mtime", "flags", NULL};
Antoine Pitrouf65132d2011-02-25 23:25:17 +00009974
9975 struct timespec buf[2];
9976
Brian Curtin569b4942011-11-07 16:09:20 -06009977 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "iO&|OOi:utimensat", kwlist,
Antoine Pitrouf65132d2011-02-25 23:25:17 +00009978 &dirfd, PyUnicode_FSConverter, &opath, &atime, &mtime, &flags))
9979 return NULL;
9980 path = PyBytes_AsString(opath);
9981 if (atime == Py_None && mtime == Py_None) {
9982 /* optional time values not given */
9983 Py_BEGIN_ALLOW_THREADS
9984 res = utimensat(dirfd, path, NULL, flags);
9985 Py_END_ALLOW_THREADS
9986 }
9987 else if (!PyTuple_Check(atime) || PyTuple_Size(atime) != 2) {
9988 PyErr_SetString(PyExc_TypeError,
9989 "utimensat() arg 3 must be a tuple (atime_sec, atime_nsec)");
9990 Py_DECREF(opath);
9991 return NULL;
9992 }
9993 else if (!PyTuple_Check(mtime) || PyTuple_Size(mtime) != 2) {
9994 PyErr_SetString(PyExc_TypeError,
9995 "utimensat() arg 4 must be a tuple (mtime_sec, mtime_nsec)");
9996 Py_DECREF(opath);
9997 return NULL;
9998 }
9999 else {
10000 if (!PyArg_ParseTuple(atime, "ll:utimensat",
10001 &(buf[0].tv_sec), &(buf[0].tv_nsec))) {
10002 Py_DECREF(opath);
10003 return NULL;
10004 }
10005 if (!PyArg_ParseTuple(mtime, "ll:utimensat",
10006 &(buf[1].tv_sec), &(buf[1].tv_nsec))) {
10007 Py_DECREF(opath);
10008 return NULL;
10009 }
10010 Py_BEGIN_ALLOW_THREADS
10011 res = utimensat(dirfd, path, buf, flags);
10012 Py_END_ALLOW_THREADS
10013 }
10014 Py_DECREF(opath);
10015 if (res < 0) {
10016 return posix_error();
10017 }
10018 Py_RETURN_NONE;
10019}
10020#endif
10021
10022#ifdef HAVE_MKFIFOAT
10023PyDoc_STRVAR(posix_mkfifoat__doc__,
10024"mkfifoat(dirfd, path, mode=0o666)\n\n\
10025Like mkfifo() but if path is relative, it is taken as relative to dirfd.\n\
10026If path is relative and dirfd is the special value AT_FDCWD, then path\n\
10027is interpreted relative to the current working directory.");
10028
10029static PyObject *
10030posix_mkfifoat(PyObject *self, PyObject *args)
10031{
10032 PyObject *opath;
10033 char *filename;
10034 int mode = 0666;
10035 int res, dirfd;
10036 if (!PyArg_ParseTuple(args, "iO&|i:mkfifoat",
10037 &dirfd, PyUnicode_FSConverter, &opath, &mode))
10038 return NULL;
10039 filename = PyBytes_AS_STRING(opath);
10040 Py_BEGIN_ALLOW_THREADS
10041 res = mkfifoat(dirfd, filename, mode);
10042 Py_END_ALLOW_THREADS
10043 Py_DECREF(opath);
10044 if (res < 0)
10045 return posix_error();
10046 Py_RETURN_NONE;
10047}
10048#endif
10049
Benjamin Peterson9428d532011-09-14 11:45:52 -040010050#ifdef USE_XATTRS
Benjamin Peterson799bd802011-08-31 22:15:17 -040010051
10052static int
10053try_getxattr(const char *path, const char *name,
10054 ssize_t (*get)(const char *, const char *, void *, size_t),
10055 Py_ssize_t buf_size, PyObject **res)
10056{
10057 PyObject *value;
10058 Py_ssize_t len;
10059
10060 assert(buf_size <= XATTR_SIZE_MAX);
10061 value = PyBytes_FromStringAndSize(NULL, buf_size);
10062 if (!value)
10063 return 0;
10064 Py_BEGIN_ALLOW_THREADS;
10065 len = get(path, name, PyBytes_AS_STRING(value), buf_size);
10066 Py_END_ALLOW_THREADS;
10067 if (len < 0) {
10068 Py_DECREF(value);
10069 if (errno == ERANGE) {
10070 value = NULL;
10071 }
10072 else {
10073 posix_error();
10074 return 0;
10075 }
10076 }
10077 else if (len != buf_size) {
10078 /* Can only shrink. */
10079 _PyBytes_Resize(&value, len);
10080 }
10081 *res = value;
10082 return 1;
10083}
10084
10085static PyObject *
10086getxattr_common(const char *path, PyObject *name_obj,
10087 ssize_t (*get)(const char *, const char *, void *, size_t))
10088{
10089 PyObject *value;
10090 const char *name = PyBytes_AS_STRING(name_obj);
10091
10092 /* Try a small value first. */
10093 if (!try_getxattr(path, name, get, 128, &value))
10094 return NULL;
10095 if (value)
10096 return value;
10097 /* Now the maximum possible one. */
10098 if (!try_getxattr(path, name, get, XATTR_SIZE_MAX, &value))
10099 return NULL;
10100 assert(value);
10101 return value;
10102}
10103
10104PyDoc_STRVAR(posix_getxattr__doc__,
10105"getxattr(path, attr) -> value\n\n\
10106Return the value of extended attribute *name* on *path*.");
10107
10108static PyObject *
10109posix_getxattr(PyObject *self, PyObject *args)
10110{
10111 PyObject *path, *res, *name;
10112
10113 if (!PyArg_ParseTuple(args, "O&O&:getxattr", PyUnicode_FSConverter, &path,
10114 PyUnicode_FSConverter, &name))
10115 return NULL;
10116 res = getxattr_common(PyBytes_AS_STRING(path), name, getxattr);
10117 Py_DECREF(path);
10118 Py_DECREF(name);
10119 return res;
10120}
10121
10122PyDoc_STRVAR(posix_lgetxattr__doc__,
10123"lgetxattr(path, attr) -> value\n\n\
10124Like getxattr but don't follow symlinks.");
10125
10126static PyObject *
10127posix_lgetxattr(PyObject *self, PyObject *args)
10128{
10129 PyObject *path, *res, *name;
10130
10131 if (!PyArg_ParseTuple(args, "O&O&:lgetxattr", PyUnicode_FSConverter, &path,
10132 PyUnicode_FSConverter, &name))
10133 return NULL;
10134 res = getxattr_common(PyBytes_AS_STRING(path), name, lgetxattr);
10135 Py_DECREF(path);
10136 Py_DECREF(name);
10137 return res;
10138}
10139
10140static ssize_t
10141wrap_fgetxattr(const char *path, const char *name, void *value, size_t size)
10142{
10143 /* Hack to share code. */
10144 return fgetxattr((int)(Py_uintptr_t)path, name, value, size);
10145}
10146
10147PyDoc_STRVAR(posix_fgetxattr__doc__,
10148"fgetxattr(fd, attr) -> value\n\n\
10149Like getxattr but operate on a fd instead of a path.");
10150
10151static PyObject *
10152posix_fgetxattr(PyObject *self, PyObject *args)
10153{
10154 PyObject *res, *name;
10155 int fd;
10156
10157 if (!PyArg_ParseTuple(args, "iO&:fgetxattr", &fd, PyUnicode_FSConverter, &name))
10158 return NULL;
10159 res = getxattr_common((const char *)(Py_uintptr_t)fd, name, wrap_fgetxattr);
10160 Py_DECREF(name);
10161 return res;
10162}
10163
10164PyDoc_STRVAR(posix_setxattr__doc__,
10165"setxattr(path, attr, value, flags=0)\n\n\
10166Set extended attribute *attr* on *path* to *value*.");
10167
10168static PyObject *
10169posix_setxattr(PyObject *self, PyObject *args)
10170{
10171 PyObject *path, *name;
10172 Py_buffer data;
10173 int flags = 0, err;
10174
10175 if (!PyArg_ParseTuple(args, "O&O&y*|i:setxattr", PyUnicode_FSConverter,
10176 &path, PyUnicode_FSConverter, &name, &data, &flags))
10177 return NULL;
10178 Py_BEGIN_ALLOW_THREADS;
10179 err = setxattr(PyBytes_AS_STRING(path), PyBytes_AS_STRING(name),
10180 data.buf, data.len, flags);
10181 Py_END_ALLOW_THREADS;
10182 Py_DECREF(path);
10183 Py_DECREF(name);
10184 PyBuffer_Release(&data);
10185 if (err)
10186 return posix_error();
10187 Py_RETURN_NONE;
10188}
10189
10190PyDoc_STRVAR(posix_lsetxattr__doc__,
10191"lsetxattr(path, attr, value, flags=0)\n\n\
10192Like setxattr but don't follow symlinks.");
10193
10194static PyObject *
10195posix_lsetxattr(PyObject *self, PyObject *args)
10196{
10197 PyObject *path, *name;
10198 Py_buffer data;
10199 int flags = 0, err;
10200
10201 if (!PyArg_ParseTuple(args, "O&O&y*|i:lsetxattr", PyUnicode_FSConverter,
10202 &path, PyUnicode_FSConverter, &name, &data, &flags))
10203 return NULL;
10204 Py_BEGIN_ALLOW_THREADS;
10205 err = lsetxattr(PyBytes_AS_STRING(path), PyBytes_AS_STRING(name),
10206 data.buf, data.len, flags);
10207 Py_END_ALLOW_THREADS;
10208 Py_DECREF(path);
10209 Py_DECREF(name);
10210 PyBuffer_Release(&data);
10211 if (err)
10212 return posix_error();
10213 Py_RETURN_NONE;
10214}
10215
10216PyDoc_STRVAR(posix_fsetxattr__doc__,
10217"fsetxattr(fd, attr, value, flags=0)\n\n\
10218Like setxattr but operates on *fd* instead of a path.");
10219
10220static PyObject *
10221posix_fsetxattr(PyObject *self, PyObject *args)
10222{
10223 Py_buffer data;
10224 const char *name;
10225 int fd, flags = 0, err;
10226
10227 if (!PyArg_ParseTuple(args, "iO&y*|i:fsetxattr", &fd, PyUnicode_FSConverter,
10228 &name, &data, &flags))
10229 return NULL;
10230 Py_BEGIN_ALLOW_THREADS;
10231 err = fsetxattr(fd, PyBytes_AS_STRING(name), data.buf, data.len, flags);
10232 Py_END_ALLOW_THREADS;
10233 Py_DECREF(name);
10234 PyBuffer_Release(&data);
10235 if (err)
10236 return posix_error();
10237 Py_RETURN_NONE;
10238}
10239
10240PyDoc_STRVAR(posix_removexattr__doc__,
10241"removexattr(path, attr)\n\n\
10242Remove extended attribute *attr* on *path*.");
10243
10244static PyObject *
10245posix_removexattr(PyObject *self, PyObject *args)
10246{
10247 PyObject *path, *name;
10248 int err;
10249
10250 if (!PyArg_ParseTuple(args, "O&O&:removexattr", PyUnicode_FSConverter, &path,
10251 PyUnicode_FSConverter, &name))
10252 return NULL;
10253 Py_BEGIN_ALLOW_THREADS;
10254 err = removexattr(PyBytes_AS_STRING(path), PyBytes_AS_STRING(name));
10255 Py_END_ALLOW_THREADS;
10256 Py_DECREF(path);
10257 Py_DECREF(name);
10258 if (err)
10259 return posix_error();
10260 Py_RETURN_NONE;
10261}
10262
10263PyDoc_STRVAR(posix_lremovexattr__doc__,
10264"lremovexattr(path, attr)\n\n\
10265Like removexattr but don't follow symlinks.");
10266
10267static PyObject *
10268posix_lremovexattr(PyObject *self, PyObject *args)
10269{
10270 PyObject *path, *name;
10271 int err;
10272
10273 if (!PyArg_ParseTuple(args, "O&O&:lremovexattr", PyUnicode_FSConverter, &path,
10274 PyUnicode_FSConverter, &name))
10275 return NULL;
10276 Py_BEGIN_ALLOW_THREADS;
10277 err = lremovexattr(PyBytes_AS_STRING(path), PyBytes_AS_STRING(name));
10278 Py_END_ALLOW_THREADS;
10279 Py_DECREF(path);
10280 Py_DECREF(name);
10281 if (err)
10282 return posix_error();
10283 Py_RETURN_NONE;
10284}
10285
10286PyDoc_STRVAR(posix_fremovexattr__doc__,
10287"fremovexattr(fd, attr)\n\n\
10288Like removexattr but operates on a file descriptor.");
10289
10290static PyObject *
10291posix_fremovexattr(PyObject *self, PyObject *args)
10292{
10293 PyObject *name;
10294 int fd, err;
10295
10296 if (!PyArg_ParseTuple(args, "iO&:fremovexattr", &fd,
10297 PyUnicode_FSConverter, &name))
10298 return NULL;
10299 Py_BEGIN_ALLOW_THREADS;
10300 err = fremovexattr(fd, PyBytes_AS_STRING(name));
10301 Py_END_ALLOW_THREADS;
10302 Py_DECREF(name);
10303 if (err)
10304 return posix_error();
10305 Py_RETURN_NONE;
10306}
10307
10308static Py_ssize_t
10309try_listxattr(const char *path, ssize_t (*list)(const char *, char *, size_t),
10310 Py_ssize_t buf_size, char **buf)
10311{
10312 Py_ssize_t len;
10313
10314 *buf = PyMem_MALLOC(buf_size);
10315 if (!*buf) {
10316 PyErr_NoMemory();
10317 return -1;
10318 }
10319 Py_BEGIN_ALLOW_THREADS;
10320 len = list(path, *buf, buf_size);
10321 Py_END_ALLOW_THREADS;
10322 if (len < 0) {
10323 PyMem_FREE(*buf);
10324 if (errno != ERANGE)
10325 posix_error();
10326 return -1;
10327 }
10328 return len;
10329}
10330
10331static PyObject *
10332listxattr_common(const char *path, ssize_t (*list)(const char *, char *, size_t))
10333{
10334 PyObject *res, *attr;
10335 Py_ssize_t len, err, start, i;
10336 char *buf;
10337
10338 len = try_listxattr(path, list, 256, &buf);
10339 if (len < 0) {
10340 if (PyErr_Occurred())
10341 return NULL;
10342 len = try_listxattr(path, list, XATTR_LIST_MAX, &buf);
10343 if (len < 0)
10344 return NULL;
10345 }
10346 res = PyList_New(0);
10347 if (!res) {
10348 PyMem_FREE(buf);
10349 return NULL;
10350 }
10351 for (start = i = 0; i < len; i++) {
10352 if (!buf[i]) {
10353 attr = PyUnicode_DecodeFSDefaultAndSize(&buf[start], i - start);
10354 if (!attr) {
10355 Py_DECREF(res);
10356 PyMem_FREE(buf);
10357 return NULL;
10358 }
10359 err = PyList_Append(res, attr);
10360 Py_DECREF(attr);
10361 if (err) {
10362 Py_DECREF(res);
10363 PyMem_FREE(buf);
10364 return NULL;
10365 }
10366 start = i + 1;
10367 }
10368 }
10369 PyMem_FREE(buf);
10370 return res;
10371}
10372
10373PyDoc_STRVAR(posix_listxattr__doc__,
10374"listxattr(path)\n\n\
10375Return a list of extended attributes on *path*.");
10376
10377static PyObject *
10378posix_listxattr(PyObject *self, PyObject *args)
10379{
10380 PyObject *path, *res;
10381
10382 if (!PyArg_ParseTuple(args, "O&:listxattr", PyUnicode_FSConverter, &path))
10383 return NULL;
10384 res = listxattr_common(PyBytes_AS_STRING(path), listxattr);
10385 Py_DECREF(path);
10386 return res;
10387}
10388
10389PyDoc_STRVAR(posix_llistxattr__doc__,
10390"llistxattr(path)\n\n\
10391Like listxattr but don't follow symlinks..");
10392
10393static PyObject *
10394posix_llistxattr(PyObject *self, PyObject *args)
10395{
10396 PyObject *path, *res;
10397
10398 if (!PyArg_ParseTuple(args, "O&:llistxattr", PyUnicode_FSConverter, &path))
10399 return NULL;
10400 res = listxattr_common(PyBytes_AS_STRING(path), llistxattr);
10401 Py_DECREF(path);
10402 return res;
10403}
10404
10405static ssize_t
10406wrap_flistxattr(const char *path, char *buf, size_t len)
10407{
10408 /* Hack to share code. */
10409 return flistxattr((int)(Py_uintptr_t)path, buf, len);
10410}
10411
10412PyDoc_STRVAR(posix_flistxattr__doc__,
10413"flistxattr(path)\n\n\
10414Like flistxattr but operates on a file descriptor.");
10415
10416static PyObject *
10417posix_flistxattr(PyObject *self, PyObject *args)
10418{
10419 long fd;
10420
10421 if (!PyArg_ParseTuple(args, "i:flistxattr", &fd))
10422 return NULL;
10423 return listxattr_common((const char *)(Py_uintptr_t)fd, wrap_flistxattr);
10424}
10425
Benjamin Peterson9428d532011-09-14 11:45:52 -040010426#endif /* USE_XATTRS */
Benjamin Peterson799bd802011-08-31 22:15:17 -040010427
Antoine Pitroubcf2b592012-02-08 23:28:36 +010010428
Georg Brandl2fb477c2012-02-21 00:33:36 +010010429PyDoc_STRVAR(posix_urandom__doc__,
10430"urandom(n) -> str\n\n\
10431Return n random bytes suitable for cryptographic use.");
10432
10433static PyObject *
10434posix_urandom(PyObject *self, PyObject *args)
10435{
10436 Py_ssize_t size;
10437 PyObject *result;
10438 int ret;
10439
10440 /* Read arguments */
10441 if (!PyArg_ParseTuple(args, "n:urandom", &size))
10442 return NULL;
10443 if (size < 0)
10444 return PyErr_Format(PyExc_ValueError,
10445 "negative argument not allowed");
10446 result = PyBytes_FromStringAndSize(NULL, size);
10447 if (result == NULL)
10448 return NULL;
10449
10450 ret = _PyOS_URandom(PyBytes_AS_STRING(result),
10451 PyBytes_GET_SIZE(result));
10452 if (ret == -1) {
10453 Py_DECREF(result);
10454 return NULL;
10455 }
10456 return result;
10457}
10458
Antoine Pitroubcf2b592012-02-08 23:28:36 +010010459/* Terminal size querying */
10460
10461static PyTypeObject TerminalSizeType;
10462
10463PyDoc_STRVAR(TerminalSize_docstring,
10464 "A tuple of (columns, lines) for holding terminal window size");
10465
10466static PyStructSequence_Field TerminalSize_fields[] = {
10467 {"columns", "width of the terminal window in characters"},
10468 {"lines", "height of the terminal window in characters"},
10469 {NULL, NULL}
10470};
10471
10472static PyStructSequence_Desc TerminalSize_desc = {
10473 "os.terminal_size",
10474 TerminalSize_docstring,
10475 TerminalSize_fields,
10476 2,
10477};
10478
10479#if defined(TERMSIZE_USE_CONIO) || defined(TERMSIZE_USE_IOCTL)
10480PyDoc_STRVAR(termsize__doc__,
10481 "Return the size of the terminal window as (columns, lines).\n" \
10482 "\n" \
10483 "The optional argument fd (default standard output) specifies\n" \
10484 "which file descriptor should be queried.\n" \
10485 "\n" \
10486 "If the file descriptor is not connected to a terminal, an OSError\n" \
10487 "is thrown.\n" \
10488 "\n" \
10489 "This function will only be defined if an implementation is\n" \
10490 "available for this system.\n" \
10491 "\n" \
10492 "shutil.get_terminal_size is the high-level function which should \n" \
10493 "normally be used, os.get_terminal_size is the low-level implementation.");
10494
10495static PyObject*
10496get_terminal_size(PyObject *self, PyObject *args)
10497{
10498 int columns, lines;
10499 PyObject *termsize;
10500
10501 int fd = fileno(stdout);
10502 /* Under some conditions stdout may not be connected and
10503 * fileno(stdout) may point to an invalid file descriptor. For example
10504 * GUI apps don't have valid standard streams by default.
10505 *
10506 * If this happens, and the optional fd argument is not present,
10507 * the ioctl below will fail returning EBADF. This is what we want.
10508 */
10509
10510 if (!PyArg_ParseTuple(args, "|i", &fd))
10511 return NULL;
10512
10513#ifdef TERMSIZE_USE_IOCTL
10514 {
10515 struct winsize w;
10516 if (ioctl(fd, TIOCGWINSZ, &w))
10517 return PyErr_SetFromErrno(PyExc_OSError);
10518 columns = w.ws_col;
10519 lines = w.ws_row;
10520 }
10521#endif /* TERMSIZE_USE_IOCTL */
10522
10523#ifdef TERMSIZE_USE_CONIO
10524 {
10525 DWORD nhandle;
10526 HANDLE handle;
10527 CONSOLE_SCREEN_BUFFER_INFO csbi;
10528 switch (fd) {
10529 case 0: nhandle = STD_INPUT_HANDLE;
10530 break;
10531 case 1: nhandle = STD_OUTPUT_HANDLE;
10532 break;
10533 case 2: nhandle = STD_ERROR_HANDLE;
10534 break;
10535 default:
10536 return PyErr_Format(PyExc_ValueError, "bad file descriptor");
10537 }
10538 handle = GetStdHandle(nhandle);
10539 if (handle == NULL)
10540 return PyErr_Format(PyExc_OSError, "handle cannot be retrieved");
10541 if (handle == INVALID_HANDLE_VALUE)
10542 return PyErr_SetFromWindowsErr(0);
10543
10544 if (!GetConsoleScreenBufferInfo(handle, &csbi))
10545 return PyErr_SetFromWindowsErr(0);
10546
10547 columns = csbi.srWindow.Right - csbi.srWindow.Left + 1;
10548 lines = csbi.srWindow.Bottom - csbi.srWindow.Top + 1;
10549 }
10550#endif /* TERMSIZE_USE_CONIO */
10551
10552 termsize = PyStructSequence_New(&TerminalSizeType);
10553 if (termsize == NULL)
10554 return NULL;
10555 PyStructSequence_SET_ITEM(termsize, 0, PyLong_FromLong(columns));
10556 PyStructSequence_SET_ITEM(termsize, 1, PyLong_FromLong(lines));
10557 if (PyErr_Occurred()) {
10558 Py_DECREF(termsize);
10559 return NULL;
10560 }
10561 return termsize;
10562}
10563#endif /* defined(TERMSIZE_USE_CONIO) || defined(TERMSIZE_USE_IOCTL) */
10564
10565
Fred Drake5ab8eaf1999-12-09 21:13:07 +000010566static PyMethodDef posix_methods[] = {
Victor Stinner8c62be82010-05-06 00:08:46 +000010567 {"access", posix_access, METH_VARARGS, posix_access__doc__},
Fred Drake5ab8eaf1999-12-09 21:13:07 +000010568#ifdef HAVE_TTYNAME
Victor Stinner8c62be82010-05-06 00:08:46 +000010569 {"ttyname", posix_ttyname, METH_VARARGS, posix_ttyname__doc__},
Fred Drake5ab8eaf1999-12-09 21:13:07 +000010570#endif
Victor Stinner8c62be82010-05-06 00:08:46 +000010571 {"chdir", posix_chdir, METH_VARARGS, posix_chdir__doc__},
Thomas Wouterscf297e42007-02-23 15:07:44 +000010572#ifdef HAVE_CHFLAGS
Victor Stinner8c62be82010-05-06 00:08:46 +000010573 {"chflags", posix_chflags, METH_VARARGS, posix_chflags__doc__},
Thomas Wouterscf297e42007-02-23 15:07:44 +000010574#endif /* HAVE_CHFLAGS */
Victor Stinner8c62be82010-05-06 00:08:46 +000010575 {"chmod", posix_chmod, METH_VARARGS, posix_chmod__doc__},
Christian Heimes4e30a842007-11-30 22:12:06 +000010576#ifdef HAVE_FCHMOD
Victor Stinner8c62be82010-05-06 00:08:46 +000010577 {"fchmod", posix_fchmod, METH_VARARGS, posix_fchmod__doc__},
Christian Heimes4e30a842007-11-30 22:12:06 +000010578#endif /* HAVE_FCHMOD */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000010579#ifdef HAVE_CHOWN
Victor Stinner8c62be82010-05-06 00:08:46 +000010580 {"chown", posix_chown, METH_VARARGS, posix_chown__doc__},
Guido van Rossumc39de5f1992-02-05 11:15:54 +000010581#endif /* HAVE_CHOWN */
Christian Heimes4e30a842007-11-30 22:12:06 +000010582#ifdef HAVE_LCHMOD
Victor Stinner8c62be82010-05-06 00:08:46 +000010583 {"lchmod", posix_lchmod, METH_VARARGS, posix_lchmod__doc__},
Christian Heimes4e30a842007-11-30 22:12:06 +000010584#endif /* HAVE_LCHMOD */
10585#ifdef HAVE_FCHOWN
Victor Stinner8c62be82010-05-06 00:08:46 +000010586 {"fchown", posix_fchown, METH_VARARGS, posix_fchown__doc__},
Christian Heimes4e30a842007-11-30 22:12:06 +000010587#endif /* HAVE_FCHOWN */
Thomas Wouterscf297e42007-02-23 15:07:44 +000010588#ifdef HAVE_LCHFLAGS
Victor Stinner8c62be82010-05-06 00:08:46 +000010589 {"lchflags", posix_lchflags, METH_VARARGS, posix_lchflags__doc__},
Thomas Wouterscf297e42007-02-23 15:07:44 +000010590#endif /* HAVE_LCHFLAGS */
Martin v. Löwis0cec0ff2002-07-28 16:33:45 +000010591#ifdef HAVE_LCHOWN
Victor Stinner8c62be82010-05-06 00:08:46 +000010592 {"lchown", posix_lchown, METH_VARARGS, posix_lchown__doc__},
Martin v. Löwis0cec0ff2002-07-28 16:33:45 +000010593#endif /* HAVE_LCHOWN */
Martin v. Löwis244edc82001-10-04 22:44:26 +000010594#ifdef HAVE_CHROOT
Victor Stinner8c62be82010-05-06 00:08:46 +000010595 {"chroot", posix_chroot, METH_VARARGS, posix_chroot__doc__},
Martin v. Löwis244edc82001-10-04 22:44:26 +000010596#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +000010597#ifdef HAVE_CTERMID
Victor Stinner8c62be82010-05-06 00:08:46 +000010598 {"ctermid", posix_ctermid, METH_NOARGS, posix_ctermid__doc__},
Fred Drake5ab8eaf1999-12-09 21:13:07 +000010599#endif
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000010600#ifdef HAVE_GETCWD
Victor Stinner8c62be82010-05-06 00:08:46 +000010601 {"getcwd", (PyCFunction)posix_getcwd_unicode,
10602 METH_NOARGS, posix_getcwd__doc__},
10603 {"getcwdb", (PyCFunction)posix_getcwd_bytes,
10604 METH_NOARGS, posix_getcwdb__doc__},
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000010605#endif
10606#ifdef HAVE_LINK
Victor Stinner8c62be82010-05-06 00:08:46 +000010607 {"link", posix_link, METH_VARARGS, posix_link__doc__},
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000010608#endif /* HAVE_LINK */
Victor Stinner8c62be82010-05-06 00:08:46 +000010609 {"listdir", posix_listdir, METH_VARARGS, posix_listdir__doc__},
Antoine Pitrou8250e232011-02-25 23:41:16 +000010610#ifdef HAVE_FDOPENDIR
Charles-François Natali77940902012-02-06 19:54:48 +010010611 {"flistdir", posix_flistdir, METH_VARARGS, posix_flistdir__doc__},
Antoine Pitrou8250e232011-02-25 23:41:16 +000010612#endif
Victor Stinner4195b5c2012-02-08 23:03:19 +010010613 {"lstat", posix_lstat, METH_VARARGS, posix_lstat__doc__},
Victor Stinner8c62be82010-05-06 00:08:46 +000010614 {"mkdir", posix_mkdir, METH_VARARGS, posix_mkdir__doc__},
Guido van Rossumc39de5f1992-02-05 11:15:54 +000010615#ifdef HAVE_NICE
Victor Stinner8c62be82010-05-06 00:08:46 +000010616 {"nice", posix_nice, METH_VARARGS, posix_nice__doc__},
Guido van Rossum775f4da1993-01-09 17:18:52 +000010617#endif /* HAVE_NICE */
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +000010618#ifdef HAVE_GETPRIORITY
10619 {"getpriority", posix_getpriority, METH_VARARGS, posix_getpriority__doc__},
10620#endif /* HAVE_GETPRIORITY */
10621#ifdef HAVE_SETPRIORITY
10622 {"setpriority", posix_setpriority, METH_VARARGS, posix_setpriority__doc__},
10623#endif /* HAVE_SETPRIORITY */
Guido van Rossumc39de5f1992-02-05 11:15:54 +000010624#ifdef HAVE_READLINK
Victor Stinner8c62be82010-05-06 00:08:46 +000010625 {"readlink", posix_readlink, METH_VARARGS, posix_readlink__doc__},
Guido van Rossumc39de5f1992-02-05 11:15:54 +000010626#endif /* HAVE_READLINK */
Brian Curtind40e6f72010-07-08 21:39:08 +000010627#if !defined(HAVE_READLINK) && defined(MS_WINDOWS)
Amaury Forgeot d'Arc844807e2010-08-16 22:16:51 +000010628 {"readlink", win_readlink, METH_VARARGS, win_readlink__doc__},
Brian Curtind40e6f72010-07-08 21:39:08 +000010629#endif /* !defined(HAVE_READLINK) && defined(MS_WINDOWS) */
Amaury Forgeot d'Arc844807e2010-08-16 22:16:51 +000010630 {"rename", posix_rename, METH_VARARGS, posix_rename__doc__},
Antoine Pitrouf3b2d882012-01-30 22:08:52 +010010631 {"replace", posix_replace, METH_VARARGS, posix_replace__doc__},
Amaury Forgeot d'Arc844807e2010-08-16 22:16:51 +000010632 {"rmdir", posix_rmdir, METH_VARARGS, posix_rmdir__doc__},
Victor Stinner4195b5c2012-02-08 23:03:19 +010010633 {"stat", posix_stat, METH_VARARGS, posix_stat__doc__},
Victor Stinner8c62be82010-05-06 00:08:46 +000010634 {"stat_float_times", stat_float_times, METH_VARARGS, stat_float_times__doc__},
Brian Curtin52173d42010-12-02 18:29:18 +000010635#if defined(HAVE_SYMLINK) && !defined(MS_WINDOWS)
Victor Stinner8c62be82010-05-06 00:08:46 +000010636 {"symlink", posix_symlink, METH_VARARGS, posix_symlink__doc__},
Guido van Rossumc39de5f1992-02-05 11:15:54 +000010637#endif /* HAVE_SYMLINK */
Brian Curtin52173d42010-12-02 18:29:18 +000010638#if defined(HAVE_SYMLINK) && defined(MS_WINDOWS)
Brian Curtin3b4499c2010-12-28 14:31:47 +000010639 {"symlink", (PyCFunction)win_symlink, METH_VARARGS | METH_KEYWORDS,
Brian Curtin52173d42010-12-02 18:29:18 +000010640 win_symlink__doc__},
10641#endif /* defined(HAVE_SYMLINK) && defined(MS_WINDOWS) */
Guido van Rossum85e3b011991-06-03 12:42:10 +000010642#ifdef HAVE_SYSTEM
Victor Stinner8c62be82010-05-06 00:08:46 +000010643 {"system", posix_system, METH_VARARGS, posix_system__doc__},
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000010644#endif
Victor Stinner8c62be82010-05-06 00:08:46 +000010645 {"umask", posix_umask, METH_VARARGS, posix_umask__doc__},
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000010646#ifdef HAVE_UNAME
Victor Stinner8c62be82010-05-06 00:08:46 +000010647 {"uname", posix_uname, METH_NOARGS, posix_uname__doc__},
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000010648#endif /* HAVE_UNAME */
Victor Stinner8c62be82010-05-06 00:08:46 +000010649 {"unlink", posix_unlink, METH_VARARGS, posix_unlink__doc__},
10650 {"remove", posix_unlink, METH_VARARGS, posix_remove__doc__},
Larry Hastings76ad59b2012-05-03 00:30:07 -070010651 {"utime", (PyCFunction)posix_utime,
10652 METH_VARARGS | METH_KEYWORDS, posix_utime__doc__},
Ross Lagerwall7807c352011-03-17 20:20:30 +020010653#ifdef HAVE_FUTIMES
Larry Hastings76ad59b2012-05-03 00:30:07 -070010654 {"futimes", (PyCFunction)posix_futimes,
10655 METH_VARARGS | METH_KEYWORDS, posix_futimes__doc__},
Ross Lagerwall7807c352011-03-17 20:20:30 +020010656#endif
10657#ifdef HAVE_LUTIMES
Larry Hastings76ad59b2012-05-03 00:30:07 -070010658 {"lutimes", (PyCFunction)posix_lutimes,
10659 METH_VARARGS | METH_KEYWORDS, posix_lutimes__doc__},
Ross Lagerwall7807c352011-03-17 20:20:30 +020010660#endif
Guido van Rossum0ee42cd1991-04-08 21:01:03 +000010661#ifdef HAVE_TIMES
Victor Stinner8c62be82010-05-06 00:08:46 +000010662 {"times", posix_times, METH_NOARGS, posix_times__doc__},
Guido van Rossum3b066191991-06-04 19:40:25 +000010663#endif /* HAVE_TIMES */
Victor Stinner8c62be82010-05-06 00:08:46 +000010664 {"_exit", posix__exit, METH_VARARGS, posix__exit__doc__},
Guido van Rossum3b066191991-06-04 19:40:25 +000010665#ifdef HAVE_EXECV
Victor Stinner8c62be82010-05-06 00:08:46 +000010666 {"execv", posix_execv, METH_VARARGS, posix_execv__doc__},
10667 {"execve", posix_execve, METH_VARARGS, posix_execve__doc__},
Guido van Rossum3b066191991-06-04 19:40:25 +000010668#endif /* HAVE_EXECV */
Ross Lagerwall7807c352011-03-17 20:20:30 +020010669#ifdef HAVE_FEXECVE
10670 {"fexecve", posix_fexecve, METH_VARARGS, posix_fexecve__doc__},
10671#endif
Guido van Rossuma1065681999-01-25 23:20:23 +000010672#ifdef HAVE_SPAWNV
Victor Stinner8c62be82010-05-06 00:08:46 +000010673 {"spawnv", posix_spawnv, METH_VARARGS, posix_spawnv__doc__},
10674 {"spawnve", posix_spawnve, METH_VARARGS, posix_spawnve__doc__},
Andrew MacIntyre69e18c92004-04-04 07:11:43 +000010675#if defined(PYOS_OS2)
Victor Stinner8c62be82010-05-06 00:08:46 +000010676 {"spawnvp", posix_spawnvp, METH_VARARGS, posix_spawnvp__doc__},
10677 {"spawnvpe", posix_spawnvpe, METH_VARARGS, posix_spawnvpe__doc__},
Andrew MacIntyre69e18c92004-04-04 07:11:43 +000010678#endif /* PYOS_OS2 */
Guido van Rossuma1065681999-01-25 23:20:23 +000010679#endif /* HAVE_SPAWNV */
Guido van Rossum2242f2f2001-04-11 20:58:20 +000010680#ifdef HAVE_FORK1
Victor Stinner8c62be82010-05-06 00:08:46 +000010681 {"fork1", posix_fork1, METH_NOARGS, posix_fork1__doc__},
Guido van Rossum2242f2f2001-04-11 20:58:20 +000010682#endif /* HAVE_FORK1 */
Guido van Rossumb6775db1994-08-01 11:34:53 +000010683#ifdef HAVE_FORK
Victor Stinner8c62be82010-05-06 00:08:46 +000010684 {"fork", posix_fork, METH_NOARGS, posix_fork__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +000010685#endif /* HAVE_FORK */
Benjamin Peterson94b580d2011-08-02 17:30:04 -050010686#ifdef HAVE_SCHED_H
Charles-François Nataliea0d5fc2011-09-06 19:03:35 +020010687#ifdef HAVE_SCHED_GET_PRIORITY_MAX
Benjamin Peterson94b580d2011-08-02 17:30:04 -050010688 {"sched_get_priority_max", posix_sched_get_priority_max, METH_VARARGS, posix_sched_get_priority_max__doc__},
10689 {"sched_get_priority_min", posix_sched_get_priority_min, METH_VARARGS, posix_sched_get_priority_min__doc__},
Charles-François Nataliea0d5fc2011-09-06 19:03:35 +020010690#endif
Benjamin Petersonc5fce4d2011-08-02 18:07:32 -050010691#ifdef HAVE_SCHED_SETPARAM
Benjamin Peterson94b580d2011-08-02 17:30:04 -050010692 {"sched_getparam", posix_sched_getparam, METH_VARARGS, posix_sched_getparam__doc__},
Benjamin Petersonc5fce4d2011-08-02 18:07:32 -050010693#endif
10694#ifdef HAVE_SCHED_SETSCHEDULER
Benjamin Peterson94b580d2011-08-02 17:30:04 -050010695 {"sched_getscheduler", posix_sched_getscheduler, METH_VARARGS, posix_sched_getscheduler__doc__},
Benjamin Petersonc5fce4d2011-08-02 18:07:32 -050010696#endif
10697#ifdef HAVE_SCHED_RR_GET_INTERVAL
Benjamin Peterson94b580d2011-08-02 17:30:04 -050010698 {"sched_rr_get_interval", posix_sched_rr_get_interval, METH_VARARGS, posix_sched_rr_get_interval__doc__},
Benjamin Petersonc5fce4d2011-08-02 18:07:32 -050010699#endif
10700#ifdef HAVE_SCHED_SETPARAM
Benjamin Peterson94b580d2011-08-02 17:30:04 -050010701 {"sched_setparam", posix_sched_setparam, METH_VARARGS, posix_sched_setparam__doc__},
Benjamin Petersonc5fce4d2011-08-02 18:07:32 -050010702#endif
10703#ifdef HAVE_SCHED_SETSCHEDULER
Benjamin Peterson94b580d2011-08-02 17:30:04 -050010704 {"sched_setscheduler", posix_sched_setscheduler, METH_VARARGS, posix_sched_setscheduler__doc__},
Benjamin Petersonc5fce4d2011-08-02 18:07:32 -050010705#endif
Benjamin Peterson94b580d2011-08-02 17:30:04 -050010706 {"sched_yield", posix_sched_yield, METH_NOARGS, posix_sched_yield__doc__},
Benjamin Peterson2740af82011-08-02 17:41:34 -050010707#ifdef HAVE_SCHED_SETAFFINITY
Benjamin Peterson94b580d2011-08-02 17:30:04 -050010708 {"sched_setaffinity", posix_sched_setaffinity, METH_VARARGS, posix_sched_setaffinity__doc__},
10709 {"sched_getaffinity", posix_sched_getaffinity, METH_VARARGS, posix_sched_getaffinity__doc__},
10710#endif
Charles-François Nataliea0d5fc2011-09-06 19:03:35 +020010711#endif /* HAVE_SCHED_H */
Martin v. Löwis24a880b2002-12-31 12:55:15 +000010712#if defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX)
Victor Stinner8c62be82010-05-06 00:08:46 +000010713 {"openpty", posix_openpty, METH_NOARGS, posix_openpty__doc__},
Martin v. Löwis24a880b2002-12-31 12:55:15 +000010714#endif /* HAVE_OPENPTY || HAVE__GETPTY || HAVE_DEV_PTMX */
Fred Drake8cef4cf2000-06-28 16:40:38 +000010715#ifdef HAVE_FORKPTY
Victor Stinner8c62be82010-05-06 00:08:46 +000010716 {"forkpty", posix_forkpty, METH_NOARGS, posix_forkpty__doc__},
Fred Drake8cef4cf2000-06-28 16:40:38 +000010717#endif /* HAVE_FORKPTY */
Guido van Rossum3b066191991-06-04 19:40:25 +000010718#ifdef HAVE_GETEGID
Victor Stinner8c62be82010-05-06 00:08:46 +000010719 {"getegid", posix_getegid, METH_NOARGS, posix_getegid__doc__},
Guido van Rossumc6dcc9f1993-11-05 10:15:19 +000010720#endif /* HAVE_GETEGID */
Guido van Rossumb6775db1994-08-01 11:34:53 +000010721#ifdef HAVE_GETEUID
Victor Stinner8c62be82010-05-06 00:08:46 +000010722 {"geteuid", posix_geteuid, METH_NOARGS, posix_geteuid__doc__},
Guido van Rossum46003ff1992-05-15 11:05:24 +000010723#endif /* HAVE_GETEUID */
10724#ifdef HAVE_GETGID
Victor Stinner8c62be82010-05-06 00:08:46 +000010725 {"getgid", posix_getgid, METH_NOARGS, posix_getgid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +000010726#endif /* HAVE_GETGID */
Ross Lagerwallb0ae53d2011-06-10 07:30:30 +020010727#ifdef HAVE_GETGROUPLIST
10728 {"getgrouplist", posix_getgrouplist, METH_VARARGS, posix_getgrouplist__doc__},
10729#endif
Fred Drakec9680921999-12-13 16:37:25 +000010730#ifdef HAVE_GETGROUPS
Victor Stinner8c62be82010-05-06 00:08:46 +000010731 {"getgroups", posix_getgroups, METH_NOARGS, posix_getgroups__doc__},
Fred Drakec9680921999-12-13 16:37:25 +000010732#endif
Victor Stinner8c62be82010-05-06 00:08:46 +000010733 {"getpid", posix_getpid, METH_NOARGS, posix_getpid__doc__},
Guido van Rossumb6775db1994-08-01 11:34:53 +000010734#ifdef HAVE_GETPGRP
Victor Stinner8c62be82010-05-06 00:08:46 +000010735 {"getpgrp", posix_getpgrp, METH_NOARGS, posix_getpgrp__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +000010736#endif /* HAVE_GETPGRP */
Guido van Rossumad0ee831995-03-01 10:34:45 +000010737#ifdef HAVE_GETPPID
Victor Stinner8c62be82010-05-06 00:08:46 +000010738 {"getppid", posix_getppid, METH_NOARGS, posix_getppid__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +000010739#endif /* HAVE_GETPPID */
10740#ifdef HAVE_GETUID
Victor Stinner8c62be82010-05-06 00:08:46 +000010741 {"getuid", posix_getuid, METH_NOARGS, posix_getuid__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +000010742#endif /* HAVE_GETUID */
Fred Drake12c6e2d1999-12-14 21:25:03 +000010743#ifdef HAVE_GETLOGIN
Victor Stinner8c62be82010-05-06 00:08:46 +000010744 {"getlogin", posix_getlogin, METH_NOARGS, posix_getlogin__doc__},
Fred Drake12c6e2d1999-12-14 21:25:03 +000010745#endif
Guido van Rossumad0ee831995-03-01 10:34:45 +000010746#ifdef HAVE_KILL
Victor Stinner8c62be82010-05-06 00:08:46 +000010747 {"kill", posix_kill, METH_VARARGS, posix_kill__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +000010748#endif /* HAVE_KILL */
Martin v. Löwisb2c92f42002-02-16 23:35:41 +000010749#ifdef HAVE_KILLPG
Victor Stinner8c62be82010-05-06 00:08:46 +000010750 {"killpg", posix_killpg, METH_VARARGS, posix_killpg__doc__},
Martin v. Löwisb2c92f42002-02-16 23:35:41 +000010751#endif /* HAVE_KILLPG */
Guido van Rossumc0125471996-06-28 18:55:32 +000010752#ifdef HAVE_PLOCK
Victor Stinner8c62be82010-05-06 00:08:46 +000010753 {"plock", posix_plock, METH_VARARGS, posix_plock__doc__},
Guido van Rossumc0125471996-06-28 18:55:32 +000010754#endif /* HAVE_PLOCK */
Thomas Heller8b7a9572007-08-31 06:44:36 +000010755#ifdef MS_WINDOWS
Victor Stinner8c62be82010-05-06 00:08:46 +000010756 {"startfile", win32_startfile, METH_VARARGS, win32_startfile__doc__},
10757 {"kill", win32_kill, METH_VARARGS, win32_kill__doc__},
Brian Curtin1b9df392010-11-24 20:24:31 +000010758 {"link", win32_link, METH_VARARGS, win32_link__doc__},
Thomas Heller8b7a9572007-08-31 06:44:36 +000010759#endif
Guido van Rossumb6775db1994-08-01 11:34:53 +000010760#ifdef HAVE_SETUID
Victor Stinner8c62be82010-05-06 00:08:46 +000010761 {"setuid", posix_setuid, METH_VARARGS, posix_setuid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +000010762#endif /* HAVE_SETUID */
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +000010763#ifdef HAVE_SETEUID
Victor Stinner8c62be82010-05-06 00:08:46 +000010764 {"seteuid", posix_seteuid, METH_VARARGS, posix_seteuid__doc__},
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +000010765#endif /* HAVE_SETEUID */
10766#ifdef HAVE_SETEGID
Victor Stinner8c62be82010-05-06 00:08:46 +000010767 {"setegid", posix_setegid, METH_VARARGS, posix_setegid__doc__},
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +000010768#endif /* HAVE_SETEGID */
10769#ifdef HAVE_SETREUID
Victor Stinner8c62be82010-05-06 00:08:46 +000010770 {"setreuid", posix_setreuid, METH_VARARGS, posix_setreuid__doc__},
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +000010771#endif /* HAVE_SETREUID */
10772#ifdef HAVE_SETREGID
Victor Stinner8c62be82010-05-06 00:08:46 +000010773 {"setregid", posix_setregid, METH_VARARGS, posix_setregid__doc__},
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +000010774#endif /* HAVE_SETREGID */
Guido van Rossumb6775db1994-08-01 11:34:53 +000010775#ifdef HAVE_SETGID
Victor Stinner8c62be82010-05-06 00:08:46 +000010776 {"setgid", posix_setgid, METH_VARARGS, posix_setgid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +000010777#endif /* HAVE_SETGID */
Martin v. Löwis61c5edf2001-10-18 04:06:00 +000010778#ifdef HAVE_SETGROUPS
Victor Stinner8c62be82010-05-06 00:08:46 +000010779 {"setgroups", posix_setgroups, METH_O, posix_setgroups__doc__},
Martin v. Löwis61c5edf2001-10-18 04:06:00 +000010780#endif /* HAVE_SETGROUPS */
Antoine Pitroub7572f02009-12-02 20:46:48 +000010781#ifdef HAVE_INITGROUPS
Victor Stinner8c62be82010-05-06 00:08:46 +000010782 {"initgroups", posix_initgroups, METH_VARARGS, posix_initgroups__doc__},
Antoine Pitroub7572f02009-12-02 20:46:48 +000010783#endif /* HAVE_INITGROUPS */
Martin v. Löwis606edc12002-06-13 21:09:11 +000010784#ifdef HAVE_GETPGID
Victor Stinner8c62be82010-05-06 00:08:46 +000010785 {"getpgid", posix_getpgid, METH_VARARGS, posix_getpgid__doc__},
Martin v. Löwis606edc12002-06-13 21:09:11 +000010786#endif /* HAVE_GETPGID */
Guido van Rossumb6775db1994-08-01 11:34:53 +000010787#ifdef HAVE_SETPGRP
Victor Stinner8c62be82010-05-06 00:08:46 +000010788 {"setpgrp", posix_setpgrp, METH_NOARGS, posix_setpgrp__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +000010789#endif /* HAVE_SETPGRP */
Guido van Rossumad0ee831995-03-01 10:34:45 +000010790#ifdef HAVE_WAIT
Victor Stinner8c62be82010-05-06 00:08:46 +000010791 {"wait", posix_wait, METH_NOARGS, posix_wait__doc__},
Guido van Rossumad0ee831995-03-01 10:34:45 +000010792#endif /* HAVE_WAIT */
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000010793#ifdef HAVE_WAIT3
Victor Stinner4195b5c2012-02-08 23:03:19 +010010794 {"wait3", posix_wait3, METH_VARARGS, posix_wait3__doc__},
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000010795#endif /* HAVE_WAIT3 */
10796#ifdef HAVE_WAIT4
Victor Stinner4195b5c2012-02-08 23:03:19 +010010797 {"wait4", posix_wait4, METH_VARARGS, posix_wait4__doc__},
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000010798#endif /* HAVE_WAIT4 */
Ross Lagerwall7807c352011-03-17 20:20:30 +020010799#if defined(HAVE_WAITID) && !defined(__APPLE__)
10800 {"waitid", posix_waitid, METH_VARARGS, posix_waitid__doc__},
10801#endif
Tim Petersab034fa2002-02-01 11:27:43 +000010802#if defined(HAVE_WAITPID) || defined(HAVE_CWAIT)
Victor Stinner8c62be82010-05-06 00:08:46 +000010803 {"waitpid", posix_waitpid, METH_VARARGS, posix_waitpid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +000010804#endif /* HAVE_WAITPID */
Martin v. Löwis49ee14d2003-11-10 06:35:36 +000010805#ifdef HAVE_GETSID
Victor Stinner8c62be82010-05-06 00:08:46 +000010806 {"getsid", posix_getsid, METH_VARARGS, posix_getsid__doc__},
Martin v. Löwis49ee14d2003-11-10 06:35:36 +000010807#endif /* HAVE_GETSID */
Guido van Rossumb6775db1994-08-01 11:34:53 +000010808#ifdef HAVE_SETSID
Victor Stinner8c62be82010-05-06 00:08:46 +000010809 {"setsid", posix_setsid, METH_NOARGS, posix_setsid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +000010810#endif /* HAVE_SETSID */
Guido van Rossumb6775db1994-08-01 11:34:53 +000010811#ifdef HAVE_SETPGID
Victor Stinner8c62be82010-05-06 00:08:46 +000010812 {"setpgid", posix_setpgid, METH_VARARGS, posix_setpgid__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +000010813#endif /* HAVE_SETPGID */
Guido van Rossumb6775db1994-08-01 11:34:53 +000010814#ifdef HAVE_TCGETPGRP
Victor Stinner8c62be82010-05-06 00:08:46 +000010815 {"tcgetpgrp", posix_tcgetpgrp, METH_VARARGS, posix_tcgetpgrp__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +000010816#endif /* HAVE_TCGETPGRP */
Guido van Rossumb6775db1994-08-01 11:34:53 +000010817#ifdef HAVE_TCSETPGRP
Victor Stinner8c62be82010-05-06 00:08:46 +000010818 {"tcsetpgrp", posix_tcsetpgrp, METH_VARARGS, posix_tcsetpgrp__doc__},
Guido van Rossum6a3eb5f1994-08-18 15:42:46 +000010819#endif /* HAVE_TCSETPGRP */
Victor Stinner8c62be82010-05-06 00:08:46 +000010820 {"open", posix_open, METH_VARARGS, posix_open__doc__},
10821 {"close", posix_close, METH_VARARGS, posix_close__doc__},
10822 {"closerange", posix_closerange, METH_VARARGS, posix_closerange__doc__},
10823 {"device_encoding", device_encoding, METH_VARARGS, device_encoding__doc__},
10824 {"dup", posix_dup, METH_VARARGS, posix_dup__doc__},
10825 {"dup2", posix_dup2, METH_VARARGS, posix_dup2__doc__},
Ross Lagerwall7807c352011-03-17 20:20:30 +020010826#ifdef HAVE_LOCKF
10827 {"lockf", posix_lockf, METH_VARARGS, posix_lockf__doc__},
10828#endif
Victor Stinner8c62be82010-05-06 00:08:46 +000010829 {"lseek", posix_lseek, METH_VARARGS, posix_lseek__doc__},
10830 {"read", posix_read, METH_VARARGS, posix_read__doc__},
Ross Lagerwall7807c352011-03-17 20:20:30 +020010831#ifdef HAVE_READV
10832 {"readv", posix_readv, METH_VARARGS, posix_readv__doc__},
10833#endif
10834#ifdef HAVE_PREAD
10835 {"pread", posix_pread, METH_VARARGS, posix_pread__doc__},
10836#endif
Victor Stinner8c62be82010-05-06 00:08:46 +000010837 {"write", posix_write, METH_VARARGS, posix_write__doc__},
Ross Lagerwall7807c352011-03-17 20:20:30 +020010838#ifdef HAVE_WRITEV
10839 {"writev", posix_writev, METH_VARARGS, posix_writev__doc__},
10840#endif
10841#ifdef HAVE_PWRITE
10842 {"pwrite", posix_pwrite, METH_VARARGS, posix_pwrite__doc__},
10843#endif
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +000010844#ifdef HAVE_SENDFILE
10845 {"sendfile", (PyCFunction)posix_sendfile, METH_VARARGS | METH_KEYWORDS,
10846 posix_sendfile__doc__},
10847#endif
Victor Stinner4195b5c2012-02-08 23:03:19 +010010848 {"fstat", posix_fstat, METH_VARARGS, posix_fstat__doc__},
Victor Stinner8c62be82010-05-06 00:08:46 +000010849 {"isatty", posix_isatty, METH_VARARGS, posix_isatty__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +000010850#ifdef HAVE_PIPE
Victor Stinner8c62be82010-05-06 00:08:46 +000010851 {"pipe", posix_pipe, METH_NOARGS, posix_pipe__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +000010852#endif
Charles-François Natalidaafdd52011-05-29 20:07:40 +020010853#ifdef HAVE_PIPE2
Charles-François Natali368f34b2011-06-06 19:49:47 +020010854 {"pipe2", posix_pipe2, METH_O, posix_pipe2__doc__},
Charles-François Natalidaafdd52011-05-29 20:07:40 +020010855#endif
Guido van Rossuma4916fa1996-05-23 22:58:55 +000010856#ifdef HAVE_MKFIFO
Victor Stinner8c62be82010-05-06 00:08:46 +000010857 {"mkfifo", posix_mkfifo, METH_VARARGS, posix_mkfifo__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +000010858#endif
Neal Norwitz11690112002-07-30 01:08:28 +000010859#if defined(HAVE_MKNOD) && defined(HAVE_MAKEDEV)
Victor Stinner8c62be82010-05-06 00:08:46 +000010860 {"mknod", posix_mknod, METH_VARARGS, posix_mknod__doc__},
Martin v. Löwis06a83e92002-04-14 10:19:44 +000010861#endif
Martin v. Löwisdbe3f762002-10-10 14:27:30 +000010862#ifdef HAVE_DEVICE_MACROS
Victor Stinner8c62be82010-05-06 00:08:46 +000010863 {"major", posix_major, METH_VARARGS, posix_major__doc__},
10864 {"minor", posix_minor, METH_VARARGS, posix_minor__doc__},
10865 {"makedev", posix_makedev, METH_VARARGS, posix_makedev__doc__},
Martin v. Löwisdbe3f762002-10-10 14:27:30 +000010866#endif
Guido van Rossuma4916fa1996-05-23 22:58:55 +000010867#ifdef HAVE_FTRUNCATE
Victor Stinner8c62be82010-05-06 00:08:46 +000010868 {"ftruncate", posix_ftruncate, METH_VARARGS, posix_ftruncate__doc__},
Guido van Rossuma4916fa1996-05-23 22:58:55 +000010869#endif
Ross Lagerwall7807c352011-03-17 20:20:30 +020010870#ifdef HAVE_TRUNCATE
10871 {"truncate", posix_truncate, METH_VARARGS, posix_truncate__doc__},
10872#endif
10873#ifdef HAVE_POSIX_FALLOCATE
10874 {"posix_fallocate", posix_posix_fallocate, METH_VARARGS, posix_posix_fallocate__doc__},
10875#endif
10876#ifdef HAVE_POSIX_FADVISE
10877 {"posix_fadvise", posix_posix_fadvise, METH_VARARGS, posix_posix_fadvise__doc__},
10878#endif
Guido van Rossumf1af3fe1996-07-23 19:18:10 +000010879#ifdef HAVE_PUTENV
Victor Stinner8c62be82010-05-06 00:08:46 +000010880 {"putenv", posix_putenv, METH_VARARGS, posix_putenv__doc__},
Guido van Rossumf1af3fe1996-07-23 19:18:10 +000010881#endif
Guido van Rossumc524d952001-10-19 01:31:59 +000010882#ifdef HAVE_UNSETENV
Victor Stinner8c62be82010-05-06 00:08:46 +000010883 {"unsetenv", posix_unsetenv, METH_VARARGS, posix_unsetenv__doc__},
Guido van Rossumc524d952001-10-19 01:31:59 +000010884#endif
Victor Stinner8c62be82010-05-06 00:08:46 +000010885 {"strerror", posix_strerror, METH_VARARGS, posix_strerror__doc__},
Fred Drake4d1e64b2002-04-15 19:40:07 +000010886#ifdef HAVE_FCHDIR
Victor Stinner8c62be82010-05-06 00:08:46 +000010887 {"fchdir", posix_fchdir, METH_O, posix_fchdir__doc__},
Fred Drake4d1e64b2002-04-15 19:40:07 +000010888#endif
Guido van Rossum21142a01999-01-08 21:05:37 +000010889#ifdef HAVE_FSYNC
Victor Stinner8c62be82010-05-06 00:08:46 +000010890 {"fsync", posix_fsync, METH_O, posix_fsync__doc__},
Guido van Rossum21142a01999-01-08 21:05:37 +000010891#endif
Ross Lagerwall7807c352011-03-17 20:20:30 +020010892#ifdef HAVE_SYNC
10893 {"sync", posix_sync, METH_NOARGS, posix_sync__doc__},
10894#endif
Guido van Rossum21142a01999-01-08 21:05:37 +000010895#ifdef HAVE_FDATASYNC
Victor Stinner8c62be82010-05-06 00:08:46 +000010896 {"fdatasync", posix_fdatasync, METH_O, posix_fdatasync__doc__},
Guido van Rossum21142a01999-01-08 21:05:37 +000010897#endif
Guido van Rossumc9641791998-08-04 15:26:23 +000010898#ifdef HAVE_SYS_WAIT_H
Fred Drake106c1a02002-04-23 15:58:02 +000010899#ifdef WCOREDUMP
Victor Stinner8c62be82010-05-06 00:08:46 +000010900 {"WCOREDUMP", posix_WCOREDUMP, METH_VARARGS, posix_WCOREDUMP__doc__},
Fred Drake106c1a02002-04-23 15:58:02 +000010901#endif /* WCOREDUMP */
Martin v. Löwis2b41b0d2002-05-04 13:13:41 +000010902#ifdef WIFCONTINUED
Victor Stinner8c62be82010-05-06 00:08:46 +000010903 {"WIFCONTINUED",posix_WIFCONTINUED, METH_VARARGS, posix_WIFCONTINUED__doc__},
Martin v. Löwis2b41b0d2002-05-04 13:13:41 +000010904#endif /* WIFCONTINUED */
Guido van Rossumc9641791998-08-04 15:26:23 +000010905#ifdef WIFSTOPPED
Victor Stinner8c62be82010-05-06 00:08:46 +000010906 {"WIFSTOPPED", posix_WIFSTOPPED, METH_VARARGS, posix_WIFSTOPPED__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +000010907#endif /* WIFSTOPPED */
10908#ifdef WIFSIGNALED
Victor Stinner8c62be82010-05-06 00:08:46 +000010909 {"WIFSIGNALED", posix_WIFSIGNALED, METH_VARARGS, posix_WIFSIGNALED__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +000010910#endif /* WIFSIGNALED */
10911#ifdef WIFEXITED
Victor Stinner8c62be82010-05-06 00:08:46 +000010912 {"WIFEXITED", posix_WIFEXITED, METH_VARARGS, posix_WIFEXITED__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +000010913#endif /* WIFEXITED */
10914#ifdef WEXITSTATUS
Victor Stinner8c62be82010-05-06 00:08:46 +000010915 {"WEXITSTATUS", posix_WEXITSTATUS, METH_VARARGS, posix_WEXITSTATUS__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +000010916#endif /* WEXITSTATUS */
10917#ifdef WTERMSIG
Victor Stinner8c62be82010-05-06 00:08:46 +000010918 {"WTERMSIG", posix_WTERMSIG, METH_VARARGS, posix_WTERMSIG__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +000010919#endif /* WTERMSIG */
10920#ifdef WSTOPSIG
Victor Stinner8c62be82010-05-06 00:08:46 +000010921 {"WSTOPSIG", posix_WSTOPSIG, METH_VARARGS, posix_WSTOPSIG__doc__},
Guido van Rossumc9641791998-08-04 15:26:23 +000010922#endif /* WSTOPSIG */
10923#endif /* HAVE_SYS_WAIT_H */
Thomas Wouters477c8d52006-05-27 19:21:47 +000010924#if defined(HAVE_FSTATVFS) && defined(HAVE_SYS_STATVFS_H)
Victor Stinner8c62be82010-05-06 00:08:46 +000010925 {"fstatvfs", posix_fstatvfs, METH_VARARGS, posix_fstatvfs__doc__},
Guido van Rossum94f6f721999-01-06 18:42:14 +000010926#endif
Thomas Wouters477c8d52006-05-27 19:21:47 +000010927#if defined(HAVE_STATVFS) && defined(HAVE_SYS_STATVFS_H)
Victor Stinner8c62be82010-05-06 00:08:46 +000010928 {"statvfs", posix_statvfs, METH_VARARGS, posix_statvfs__doc__},
Guido van Rossum94f6f721999-01-06 18:42:14 +000010929#endif
Fred Drakec9680921999-12-13 16:37:25 +000010930#ifdef HAVE_CONFSTR
Victor Stinner8c62be82010-05-06 00:08:46 +000010931 {"confstr", posix_confstr, METH_VARARGS, posix_confstr__doc__},
Fred Drakec9680921999-12-13 16:37:25 +000010932#endif
10933#ifdef HAVE_SYSCONF
Victor Stinner8c62be82010-05-06 00:08:46 +000010934 {"sysconf", posix_sysconf, METH_VARARGS, posix_sysconf__doc__},
Fred Drakec9680921999-12-13 16:37:25 +000010935#endif
10936#ifdef HAVE_FPATHCONF
Victor Stinner8c62be82010-05-06 00:08:46 +000010937 {"fpathconf", posix_fpathconf, METH_VARARGS, posix_fpathconf__doc__},
Fred Drakec9680921999-12-13 16:37:25 +000010938#endif
10939#ifdef HAVE_PATHCONF
Victor Stinner8c62be82010-05-06 00:08:46 +000010940 {"pathconf", posix_pathconf, METH_VARARGS, posix_pathconf__doc__},
Fred Drakec9680921999-12-13 16:37:25 +000010941#endif
Victor Stinner8c62be82010-05-06 00:08:46 +000010942 {"abort", posix_abort, METH_NOARGS, posix_abort__doc__},
Martin v. Löwis6238d2b2002-06-30 15:26:10 +000010943#ifdef MS_WINDOWS
Victor Stinner8c62be82010-05-06 00:08:46 +000010944 {"_getfullpathname", posix__getfullpathname, METH_VARARGS, NULL},
Brian Curtind40e6f72010-07-08 21:39:08 +000010945 {"_getfinalpathname", posix__getfinalpathname, METH_VARARGS, NULL},
Brian Curtin62857742010-09-06 17:07:27 +000010946 {"_getfileinformation", posix__getfileinformation, METH_VARARGS, NULL},
Brian Curtin95d028f2011-06-09 09:10:38 -050010947 {"_isdir", posix__isdir, METH_VARARGS, posix__isdir__doc__},
Giampaolo Rodola'210e7ca2011-07-01 13:55:36 +020010948 {"_getdiskusage", win32__getdiskusage, METH_VARARGS, win32__getdiskusage__doc__},
Mark Hammondef8b6542001-05-13 08:04:26 +000010949#endif
Martin v. Löwis438b5342002-12-27 10:16:42 +000010950#ifdef HAVE_GETLOADAVG
Victor Stinner8c62be82010-05-06 00:08:46 +000010951 {"getloadavg", posix_getloadavg, METH_NOARGS, posix_getloadavg__doc__},
Martin v. Löwis438b5342002-12-27 10:16:42 +000010952#endif
Georg Brandl2daf6ae2012-02-20 19:54:16 +010010953 {"urandom", posix_urandom, METH_VARARGS, posix_urandom__doc__},
Martin v. Löwis7aed61a2009-11-27 14:09:49 +000010954#ifdef HAVE_SETRESUID
Victor Stinner8c62be82010-05-06 00:08:46 +000010955 {"setresuid", posix_setresuid, METH_VARARGS, posix_setresuid__doc__},
Martin v. Löwis7aed61a2009-11-27 14:09:49 +000010956#endif
10957#ifdef HAVE_SETRESGID
Victor Stinner8c62be82010-05-06 00:08:46 +000010958 {"setresgid", posix_setresgid, METH_VARARGS, posix_setresgid__doc__},
Martin v. Löwis7aed61a2009-11-27 14:09:49 +000010959#endif
10960#ifdef HAVE_GETRESUID
Victor Stinner8c62be82010-05-06 00:08:46 +000010961 {"getresuid", posix_getresuid, METH_NOARGS, posix_getresuid__doc__},
Martin v. Löwis7aed61a2009-11-27 14:09:49 +000010962#endif
10963#ifdef HAVE_GETRESGID
Victor Stinner8c62be82010-05-06 00:08:46 +000010964 {"getresgid", posix_getresgid, METH_NOARGS, posix_getresgid__doc__},
Martin v. Löwis7aed61a2009-11-27 14:09:49 +000010965#endif
10966
Antoine Pitrouf65132d2011-02-25 23:25:17 +000010967/* posix *at family of functions */
10968#ifdef HAVE_FACCESSAT
10969 {"faccessat", posix_faccessat, METH_VARARGS, posix_faccessat__doc__},
10970#endif
10971#ifdef HAVE_FCHMODAT
10972 {"fchmodat", posix_fchmodat, METH_VARARGS, posix_fchmodat__doc__},
10973#endif /* HAVE_FCHMODAT */
10974#ifdef HAVE_FCHOWNAT
10975 {"fchownat", posix_fchownat, METH_VARARGS, posix_fchownat__doc__},
10976#endif /* HAVE_FCHOWNAT */
10977#ifdef HAVE_FSTATAT
Victor Stinner4195b5c2012-02-08 23:03:19 +010010978 {"fstatat", posix_fstatat, METH_VARARGS, posix_fstatat__doc__},
Antoine Pitrouf65132d2011-02-25 23:25:17 +000010979#endif
10980#ifdef HAVE_FUTIMESAT
10981 {"futimesat", posix_futimesat, METH_VARARGS, posix_futimesat__doc__},
10982#endif
10983#ifdef HAVE_LINKAT
10984 {"linkat", posix_linkat, METH_VARARGS, posix_linkat__doc__},
10985#endif /* HAVE_LINKAT */
10986#ifdef HAVE_MKDIRAT
10987 {"mkdirat", posix_mkdirat, METH_VARARGS, posix_mkdirat__doc__},
10988#endif
10989#if defined(HAVE_MKNODAT) && defined(HAVE_MAKEDEV)
10990 {"mknodat", posix_mknodat, METH_VARARGS, posix_mknodat__doc__},
10991#endif
10992#ifdef HAVE_OPENAT
10993 {"openat", posix_openat, METH_VARARGS, posix_openat__doc__},
10994#endif
10995#ifdef HAVE_READLINKAT
10996 {"readlinkat", posix_readlinkat, METH_VARARGS, posix_readlinkat__doc__},
10997#endif /* HAVE_READLINKAT */
10998#ifdef HAVE_RENAMEAT
10999 {"renameat", posix_renameat, METH_VARARGS, posix_renameat__doc__},
11000#endif
11001#if HAVE_SYMLINKAT
11002 {"symlinkat", posix_symlinkat, METH_VARARGS, posix_symlinkat__doc__},
11003#endif /* HAVE_SYMLINKAT */
11004#ifdef HAVE_UNLINKAT
11005 {"unlinkat", posix_unlinkat, METH_VARARGS, posix_unlinkat__doc__},
11006#endif
11007#ifdef HAVE_UTIMENSAT
Jesus Cead03a4912011-11-08 17:28:04 +010011008 {"utimensat", (PyCFunction)posix_utimensat,
11009 METH_VARARGS | METH_KEYWORDS,
Brian Curtin569b4942011-11-07 16:09:20 -060011010 posix_utimensat__doc__},
Antoine Pitrouf65132d2011-02-25 23:25:17 +000011011#endif
11012#ifdef HAVE_MKFIFOAT
11013 {"mkfifoat", posix_mkfifoat, METH_VARARGS, posix_mkfifoat__doc__},
11014#endif
Benjamin Peterson9428d532011-09-14 11:45:52 -040011015#ifdef USE_XATTRS
Benjamin Peterson799bd802011-08-31 22:15:17 -040011016 {"setxattr", posix_setxattr, METH_VARARGS, posix_setxattr__doc__},
11017 {"lsetxattr", posix_lsetxattr, METH_VARARGS, posix_lsetxattr__doc__},
11018 {"fsetxattr", posix_fsetxattr, METH_VARARGS, posix_fsetxattr__doc__},
11019 {"getxattr", posix_getxattr, METH_VARARGS, posix_getxattr__doc__},
11020 {"lgetxattr", posix_lgetxattr, METH_VARARGS, posix_lgetxattr__doc__},
11021 {"fgetxattr", posix_fgetxattr, METH_VARARGS, posix_fgetxattr__doc__},
11022 {"removexattr", posix_removexattr, METH_VARARGS, posix_removexattr__doc__},
11023 {"lremovexattr", posix_lremovexattr, METH_VARARGS, posix_lremovexattr__doc__},
11024 {"fremovexattr", posix_fremovexattr, METH_VARARGS, posix_fremovexattr__doc__},
11025 {"listxattr", posix_listxattr, METH_VARARGS, posix_listxattr__doc__},
11026 {"llistxattr", posix_llistxattr, METH_VARARGS, posix_llistxattr__doc__},
11027 {"flistxattr", posix_flistxattr, METH_VARARGS, posix_flistxattr__doc__},
11028#endif
Antoine Pitroubcf2b592012-02-08 23:28:36 +010011029#if defined(TERMSIZE_USE_CONIO) || defined(TERMSIZE_USE_IOCTL)
11030 {"get_terminal_size", get_terminal_size, METH_VARARGS, termsize__doc__},
11031#endif
Victor Stinner8c62be82010-05-06 00:08:46 +000011032 {NULL, NULL} /* Sentinel */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000011033};
11034
11035
Barry Warsaw4a342091996-12-19 23:50:02 +000011036static int
Fred Drake4d1e64b2002-04-15 19:40:07 +000011037ins(PyObject *module, char *symbol, long value)
Barry Warsaw4a342091996-12-19 23:50:02 +000011038{
Victor Stinner8c62be82010-05-06 00:08:46 +000011039 return PyModule_AddIntConstant(module, symbol, value);
Barry Warsaw4a342091996-12-19 23:50:02 +000011040}
11041
Guido van Rossumd48f2521997-12-05 22:19:34 +000011042#if defined(PYOS_OS2)
11043/* Insert Platform-Specific Constant Values (Strings & Numbers) of Common Use */
Fred Drake4d1e64b2002-04-15 19:40:07 +000011044static int insertvalues(PyObject *module)
Guido van Rossumd48f2521997-12-05 22:19:34 +000011045{
11046 APIRET rc;
11047 ULONG values[QSV_MAX+1];
11048 PyObject *v;
Marc-André Lemburgd4c0a9c2001-11-28 11:47:00 +000011049 char *ver, tmp[50];
Guido van Rossumd48f2521997-12-05 22:19:34 +000011050
11051 Py_BEGIN_ALLOW_THREADS
Andrew MacIntyre75e01452003-04-21 14:19:51 +000011052 rc = DosQuerySysInfo(1L, QSV_MAX, &values[1], sizeof(ULONG) * QSV_MAX);
Guido van Rossumd48f2521997-12-05 22:19:34 +000011053 Py_END_ALLOW_THREADS
11054
11055 if (rc != NO_ERROR) {
11056 os2_error(rc);
11057 return -1;
11058 }
11059
Fred Drake4d1e64b2002-04-15 19:40:07 +000011060 if (ins(module, "meminstalled", values[QSV_TOTPHYSMEM])) return -1;
11061 if (ins(module, "memkernel", values[QSV_TOTRESMEM])) return -1;
11062 if (ins(module, "memvirtual", values[QSV_TOTAVAILMEM])) return -1;
11063 if (ins(module, "maxpathlen", values[QSV_MAX_PATH_LENGTH])) return -1;
11064 if (ins(module, "maxnamelen", values[QSV_MAX_COMP_LENGTH])) return -1;
11065 if (ins(module, "revision", values[QSV_VERSION_REVISION])) return -1;
11066 if (ins(module, "timeslice", values[QSV_MIN_SLICE])) return -1;
Guido van Rossumd48f2521997-12-05 22:19:34 +000011067
11068 switch (values[QSV_VERSION_MINOR]) {
11069 case 0: ver = "2.00"; break;
11070 case 10: ver = "2.10"; break;
11071 case 11: ver = "2.11"; break;
11072 case 30: ver = "3.00"; break;
11073 case 40: ver = "4.00"; break;
11074 case 50: ver = "5.00"; break;
11075 default:
Tim Peters885d4572001-11-28 20:27:42 +000011076 PyOS_snprintf(tmp, sizeof(tmp),
Victor Stinner8c62be82010-05-06 00:08:46 +000011077 "%d-%d", values[QSV_VERSION_MAJOR],
Tim Peters885d4572001-11-28 20:27:42 +000011078 values[QSV_VERSION_MINOR]);
Guido van Rossumd48f2521997-12-05 22:19:34 +000011079 ver = &tmp[0];
11080 }
11081
11082 /* Add Indicator of the Version of the Operating System */
Fred Drake4d1e64b2002-04-15 19:40:07 +000011083 if (PyModule_AddStringConstant(module, "version", tmp) < 0)
Guido van Rossumd48f2521997-12-05 22:19:34 +000011084 return -1;
Guido van Rossumd48f2521997-12-05 22:19:34 +000011085
11086 /* Add Indicator of Which Drive was Used to Boot the System */
11087 tmp[0] = 'A' + values[QSV_BOOT_DRIVE] - 1;
11088 tmp[1] = ':';
11089 tmp[2] = '\0';
11090
Fred Drake4d1e64b2002-04-15 19:40:07 +000011091 return PyModule_AddStringConstant(module, "bootdrive", tmp);
Guido van Rossumd48f2521997-12-05 22:19:34 +000011092}
11093#endif
11094
Brian Curtin52173d42010-12-02 18:29:18 +000011095#if defined(HAVE_SYMLINK) && defined(MS_WINDOWS)
Brian Curtin3b4499c2010-12-28 14:31:47 +000011096static int
Brian Curtin52173d42010-12-02 18:29:18 +000011097enable_symlink()
11098{
11099 HANDLE tok;
11100 TOKEN_PRIVILEGES tok_priv;
11101 LUID luid;
11102 int meth_idx = 0;
11103
11104 if (!OpenProcessToken(GetCurrentProcess(), TOKEN_ALL_ACCESS, &tok))
Brian Curtin3b4499c2010-12-28 14:31:47 +000011105 return 0;
Brian Curtin52173d42010-12-02 18:29:18 +000011106
11107 if (!LookupPrivilegeValue(NULL, SE_CREATE_SYMBOLIC_LINK_NAME, &luid))
Brian Curtin3b4499c2010-12-28 14:31:47 +000011108 return 0;
Brian Curtin52173d42010-12-02 18:29:18 +000011109
11110 tok_priv.PrivilegeCount = 1;
11111 tok_priv.Privileges[0].Luid = luid;
11112 tok_priv.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED;
11113
11114 if (!AdjustTokenPrivileges(tok, FALSE, &tok_priv,
11115 sizeof(TOKEN_PRIVILEGES),
11116 (PTOKEN_PRIVILEGES) NULL, (PDWORD) NULL))
Brian Curtin3b4499c2010-12-28 14:31:47 +000011117 return 0;
Brian Curtin52173d42010-12-02 18:29:18 +000011118
Brian Curtin3b4499c2010-12-28 14:31:47 +000011119 /* ERROR_NOT_ALL_ASSIGNED returned when the privilege can't be assigned. */
11120 return GetLastError() == ERROR_NOT_ALL_ASSIGNED ? 0 : 1;
Brian Curtin52173d42010-12-02 18:29:18 +000011121}
11122#endif /* defined(HAVE_SYMLINK) && defined(MS_WINDOWS) */
11123
Barry Warsaw4a342091996-12-19 23:50:02 +000011124static int
Thomas Woutersf3f33dc2000-07-21 06:00:07 +000011125all_ins(PyObject *d)
Barry Warsaw4a342091996-12-19 23:50:02 +000011126{
Guido van Rossum94f6f721999-01-06 18:42:14 +000011127#ifdef F_OK
Victor Stinner8c62be82010-05-06 00:08:46 +000011128 if (ins(d, "F_OK", (long)F_OK)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +000011129#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +000011130#ifdef R_OK
Victor Stinner8c62be82010-05-06 00:08:46 +000011131 if (ins(d, "R_OK", (long)R_OK)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +000011132#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +000011133#ifdef W_OK
Victor Stinner8c62be82010-05-06 00:08:46 +000011134 if (ins(d, "W_OK", (long)W_OK)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +000011135#endif
Guido van Rossum94f6f721999-01-06 18:42:14 +000011136#ifdef X_OK
Victor Stinner8c62be82010-05-06 00:08:46 +000011137 if (ins(d, "X_OK", (long)X_OK)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +000011138#endif
Fred Drakec9680921999-12-13 16:37:25 +000011139#ifdef NGROUPS_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +000011140 if (ins(d, "NGROUPS_MAX", (long)NGROUPS_MAX)) return -1;
Fred Drakec9680921999-12-13 16:37:25 +000011141#endif
Fred Drake5ab8eaf1999-12-09 21:13:07 +000011142#ifdef TMP_MAX
Victor Stinner8c62be82010-05-06 00:08:46 +000011143 if (ins(d, "TMP_MAX", (long)TMP_MAX)) return -1;
Fred Drake5ab8eaf1999-12-09 21:13:07 +000011144#endif
Fred Drake106c1a02002-04-23 15:58:02 +000011145#ifdef WCONTINUED
Victor Stinner8c62be82010-05-06 00:08:46 +000011146 if (ins(d, "WCONTINUED", (long)WCONTINUED)) return -1;
Fred Drake106c1a02002-04-23 15:58:02 +000011147#endif
Barry Warsaw4a342091996-12-19 23:50:02 +000011148#ifdef WNOHANG
Victor Stinner8c62be82010-05-06 00:08:46 +000011149 if (ins(d, "WNOHANG", (long)WNOHANG)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +000011150#endif
Fred Drake106c1a02002-04-23 15:58:02 +000011151#ifdef WUNTRACED
Victor Stinner8c62be82010-05-06 00:08:46 +000011152 if (ins(d, "WUNTRACED", (long)WUNTRACED)) return -1;
Fred Drake106c1a02002-04-23 15:58:02 +000011153#endif
Barry Warsaw4a342091996-12-19 23:50:02 +000011154#ifdef O_RDONLY
Victor Stinner8c62be82010-05-06 00:08:46 +000011155 if (ins(d, "O_RDONLY", (long)O_RDONLY)) return -1;
Barry Warsaw4a342091996-12-19 23:50:02 +000011156#endif
11157#ifdef O_WRONLY
Victor Stinner8c62be82010-05-06 00:08:46 +000011158 if (ins(d, "O_WRONLY", (long)O_WRONLY)) return -1;
Barry Warsaw4a342091996-12-19 23:50:02 +000011159#endif
11160#ifdef O_RDWR
Victor Stinner8c62be82010-05-06 00:08:46 +000011161 if (ins(d, "O_RDWR", (long)O_RDWR)) return -1;
Barry Warsaw4a342091996-12-19 23:50:02 +000011162#endif
11163#ifdef O_NDELAY
Victor Stinner8c62be82010-05-06 00:08:46 +000011164 if (ins(d, "O_NDELAY", (long)O_NDELAY)) return -1;
Barry Warsaw4a342091996-12-19 23:50:02 +000011165#endif
11166#ifdef O_NONBLOCK
Victor Stinner8c62be82010-05-06 00:08:46 +000011167 if (ins(d, "O_NONBLOCK", (long)O_NONBLOCK)) return -1;
Barry Warsaw4a342091996-12-19 23:50:02 +000011168#endif
11169#ifdef O_APPEND
Victor Stinner8c62be82010-05-06 00:08:46 +000011170 if (ins(d, "O_APPEND", (long)O_APPEND)) return -1;
Barry Warsaw4a342091996-12-19 23:50:02 +000011171#endif
11172#ifdef O_DSYNC
Victor Stinner8c62be82010-05-06 00:08:46 +000011173 if (ins(d, "O_DSYNC", (long)O_DSYNC)) return -1;
Barry Warsaw4a342091996-12-19 23:50:02 +000011174#endif
11175#ifdef O_RSYNC
Victor Stinner8c62be82010-05-06 00:08:46 +000011176 if (ins(d, "O_RSYNC", (long)O_RSYNC)) return -1;
Barry Warsaw4a342091996-12-19 23:50:02 +000011177#endif
11178#ifdef O_SYNC
Victor Stinner8c62be82010-05-06 00:08:46 +000011179 if (ins(d, "O_SYNC", (long)O_SYNC)) return -1;
Barry Warsaw4a342091996-12-19 23:50:02 +000011180#endif
11181#ifdef O_NOCTTY
Victor Stinner8c62be82010-05-06 00:08:46 +000011182 if (ins(d, "O_NOCTTY", (long)O_NOCTTY)) return -1;
Barry Warsaw4a342091996-12-19 23:50:02 +000011183#endif
11184#ifdef O_CREAT
Victor Stinner8c62be82010-05-06 00:08:46 +000011185 if (ins(d, "O_CREAT", (long)O_CREAT)) return -1;
Barry Warsaw4a342091996-12-19 23:50:02 +000011186#endif
11187#ifdef O_EXCL
Victor Stinner8c62be82010-05-06 00:08:46 +000011188 if (ins(d, "O_EXCL", (long)O_EXCL)) return -1;
Barry Warsaw4a342091996-12-19 23:50:02 +000011189#endif
11190#ifdef O_TRUNC
Victor Stinner8c62be82010-05-06 00:08:46 +000011191 if (ins(d, "O_TRUNC", (long)O_TRUNC)) return -1;
Barry Warsaw4a342091996-12-19 23:50:02 +000011192#endif
Guido van Rossum98d9d091997-08-08 21:48:51 +000011193#ifdef O_BINARY
Victor Stinner8c62be82010-05-06 00:08:46 +000011194 if (ins(d, "O_BINARY", (long)O_BINARY)) return -1;
Guido van Rossum98d9d091997-08-08 21:48:51 +000011195#endif
11196#ifdef O_TEXT
Victor Stinner8c62be82010-05-06 00:08:46 +000011197 if (ins(d, "O_TEXT", (long)O_TEXT)) return -1;
Guido van Rossum98d9d091997-08-08 21:48:51 +000011198#endif
Jesus Cea1d642d22012-04-24 20:59:17 +020011199#ifdef O_XATTR
11200 if (ins(d, "O_XATTR", (long)O_XATTR)) return -1;
11201#endif
Martin v. Löwis4fe3c272001-10-18 22:05:36 +000011202#ifdef O_LARGEFILE
Victor Stinner8c62be82010-05-06 00:08:46 +000011203 if (ins(d, "O_LARGEFILE", (long)O_LARGEFILE)) return -1;
Martin v. Löwis4fe3c272001-10-18 22:05:36 +000011204#endif
Skip Montanaro5ff14922005-05-16 02:42:22 +000011205#ifdef O_SHLOCK
Victor Stinner8c62be82010-05-06 00:08:46 +000011206 if (ins(d, "O_SHLOCK", (long)O_SHLOCK)) return -1;
Skip Montanaro5ff14922005-05-16 02:42:22 +000011207#endif
11208#ifdef O_EXLOCK
Victor Stinner8c62be82010-05-06 00:08:46 +000011209 if (ins(d, "O_EXLOCK", (long)O_EXLOCK)) return -1;
Skip Montanaro5ff14922005-05-16 02:42:22 +000011210#endif
Jesus Ceacf381202012-04-24 20:44:40 +020011211#ifdef O_EXEC
11212 if (ins(d, "O_EXEC", (long)O_EXEC)) return -1;
11213#endif
11214#ifdef O_SEARCH
11215 if (ins(d, "O_SEARCH", (long)O_SEARCH)) return -1;
11216#endif
11217#ifdef O_TTY_INIT
11218 if (ins(d, "O_TTY_INIT", (long)O_TTY_INIT)) return -1;
11219#endif
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +000011220#ifdef PRIO_PROCESS
11221 if (ins(d, "PRIO_PROCESS", (long)PRIO_PROCESS)) return -1;
11222#endif
11223#ifdef PRIO_PGRP
11224 if (ins(d, "PRIO_PGRP", (long)PRIO_PGRP)) return -1;
11225#endif
11226#ifdef PRIO_USER
11227 if (ins(d, "PRIO_USER", (long)PRIO_USER)) return -1;
11228#endif
Charles-François Natali1e045b12011-05-22 20:42:32 +020011229#ifdef O_CLOEXEC
11230 if (ins(d, "O_CLOEXEC", (long)O_CLOEXEC)) return -1;
11231#endif
Jesus Cea1d642d22012-04-24 20:59:17 +020011232#ifdef O_ACCMODE
11233 if (ins(d, "O_ACCMODE", (long)O_ACCMODE)) return -1;
11234#endif
Antoine Pitrouf65132d2011-02-25 23:25:17 +000011235/* posix - constants for *at functions */
11236#ifdef AT_SYMLINK_NOFOLLOW
11237 if (ins(d, "AT_SYMLINK_NOFOLLOW", (long)AT_SYMLINK_NOFOLLOW)) return -1;
11238#endif
11239#ifdef AT_EACCESS
11240 if (ins(d, "AT_EACCESS", (long)AT_EACCESS)) return -1;
11241#endif
11242#ifdef AT_FDCWD
11243 if (ins(d, "AT_FDCWD", (long)AT_FDCWD)) return -1;
11244#endif
11245#ifdef AT_REMOVEDIR
11246 if (ins(d, "AT_REMOVEDIR", (long)AT_REMOVEDIR)) return -1;
11247#endif
11248#ifdef AT_SYMLINK_FOLLOW
11249 if (ins(d, "AT_SYMLINK_FOLLOW", (long)AT_SYMLINK_FOLLOW)) return -1;
11250#endif
11251#ifdef UTIME_NOW
11252 if (ins(d, "UTIME_NOW", (long)UTIME_NOW)) return -1;
11253#endif
11254#ifdef UTIME_OMIT
11255 if (ins(d, "UTIME_OMIT", (long)UTIME_OMIT)) return -1;
11256#endif
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +000011257
Martin v. Löwis4fe3c272001-10-18 22:05:36 +000011258
Tim Peters5aa91602002-01-30 05:46:57 +000011259/* MS Windows */
11260#ifdef O_NOINHERIT
Victor Stinner8c62be82010-05-06 00:08:46 +000011261 /* Don't inherit in child processes. */
11262 if (ins(d, "O_NOINHERIT", (long)O_NOINHERIT)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +000011263#endif
11264#ifdef _O_SHORT_LIVED
Victor Stinner8c62be82010-05-06 00:08:46 +000011265 /* Optimize for short life (keep in memory). */
11266 /* MS forgot to define this one with a non-underscore form too. */
11267 if (ins(d, "O_SHORT_LIVED", (long)_O_SHORT_LIVED)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +000011268#endif
11269#ifdef O_TEMPORARY
Victor Stinner8c62be82010-05-06 00:08:46 +000011270 /* Automatically delete when last handle is closed. */
11271 if (ins(d, "O_TEMPORARY", (long)O_TEMPORARY)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +000011272#endif
11273#ifdef O_RANDOM
Victor Stinner8c62be82010-05-06 00:08:46 +000011274 /* Optimize for random access. */
11275 if (ins(d, "O_RANDOM", (long)O_RANDOM)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +000011276#endif
11277#ifdef O_SEQUENTIAL
Victor Stinner8c62be82010-05-06 00:08:46 +000011278 /* Optimize for sequential access. */
11279 if (ins(d, "O_SEQUENTIAL", (long)O_SEQUENTIAL)) return -1;
Tim Peters5aa91602002-01-30 05:46:57 +000011280#endif
11281
Martin v. Löwis4fe3c272001-10-18 22:05:36 +000011282/* GNU extensions. */
Alexandre Vassalottibee32532008-05-16 18:15:12 +000011283#ifdef O_ASYNC
Victor Stinner8c62be82010-05-06 00:08:46 +000011284 /* Send a SIGIO signal whenever input or output
11285 becomes available on file descriptor */
11286 if (ins(d, "O_ASYNC", (long)O_ASYNC)) return -1;
Alexandre Vassalottibee32532008-05-16 18:15:12 +000011287#endif
Martin v. Löwis4fe3c272001-10-18 22:05:36 +000011288#ifdef O_DIRECT
Victor Stinner8c62be82010-05-06 00:08:46 +000011289 /* Direct disk access. */
11290 if (ins(d, "O_DIRECT", (long)O_DIRECT)) return -1;
Martin v. Löwis4fe3c272001-10-18 22:05:36 +000011291#endif
11292#ifdef O_DIRECTORY
Victor Stinner8c62be82010-05-06 00:08:46 +000011293 /* Must be a directory. */
11294 if (ins(d, "O_DIRECTORY", (long)O_DIRECTORY)) return -1;
Martin v. Löwis4fe3c272001-10-18 22:05:36 +000011295#endif
11296#ifdef O_NOFOLLOW
Victor Stinner8c62be82010-05-06 00:08:46 +000011297 /* Do not follow links. */
11298 if (ins(d, "O_NOFOLLOW", (long)O_NOFOLLOW)) return -1;
Martin v. Löwis4fe3c272001-10-18 22:05:36 +000011299#endif
Jesus Cea1d642d22012-04-24 20:59:17 +020011300#ifdef O_NOLINKS
11301 /* Fails if link count of the named file is greater than 1 */
11302 if (ins(d, "O_NOLINKS", (long)O_NOLINKS)) return -1;
11303#endif
Guido van Rossum0d3fb8a2007-11-26 23:23:18 +000011304#ifdef O_NOATIME
Victor Stinner8c62be82010-05-06 00:08:46 +000011305 /* Do not update the access time. */
11306 if (ins(d, "O_NOATIME", (long)O_NOATIME)) return -1;
Guido van Rossum0d3fb8a2007-11-26 23:23:18 +000011307#endif
Guido van Rossumd48f2521997-12-05 22:19:34 +000011308
Victor Stinner8c62be82010-05-06 00:08:46 +000011309 /* These come from sysexits.h */
Barry Warsaw5676bd12003-01-07 20:57:09 +000011310#ifdef EX_OK
Victor Stinner8c62be82010-05-06 00:08:46 +000011311 if (ins(d, "EX_OK", (long)EX_OK)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +000011312#endif /* EX_OK */
Barry Warsaw5676bd12003-01-07 20:57:09 +000011313#ifdef EX_USAGE
Victor Stinner8c62be82010-05-06 00:08:46 +000011314 if (ins(d, "EX_USAGE", (long)EX_USAGE)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +000011315#endif /* EX_USAGE */
Barry Warsaw5676bd12003-01-07 20:57:09 +000011316#ifdef EX_DATAERR
Victor Stinner8c62be82010-05-06 00:08:46 +000011317 if (ins(d, "EX_DATAERR", (long)EX_DATAERR)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +000011318#endif /* EX_DATAERR */
Barry Warsaw5676bd12003-01-07 20:57:09 +000011319#ifdef EX_NOINPUT
Victor Stinner8c62be82010-05-06 00:08:46 +000011320 if (ins(d, "EX_NOINPUT", (long)EX_NOINPUT)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +000011321#endif /* EX_NOINPUT */
Barry Warsaw5676bd12003-01-07 20:57:09 +000011322#ifdef EX_NOUSER
Victor Stinner8c62be82010-05-06 00:08:46 +000011323 if (ins(d, "EX_NOUSER", (long)EX_NOUSER)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +000011324#endif /* EX_NOUSER */
Barry Warsaw5676bd12003-01-07 20:57:09 +000011325#ifdef EX_NOHOST
Victor Stinner8c62be82010-05-06 00:08:46 +000011326 if (ins(d, "EX_NOHOST", (long)EX_NOHOST)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +000011327#endif /* EX_NOHOST */
Barry Warsaw5676bd12003-01-07 20:57:09 +000011328#ifdef EX_UNAVAILABLE
Victor Stinner8c62be82010-05-06 00:08:46 +000011329 if (ins(d, "EX_UNAVAILABLE", (long)EX_UNAVAILABLE)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +000011330#endif /* EX_UNAVAILABLE */
Barry Warsaw5676bd12003-01-07 20:57:09 +000011331#ifdef EX_SOFTWARE
Victor Stinner8c62be82010-05-06 00:08:46 +000011332 if (ins(d, "EX_SOFTWARE", (long)EX_SOFTWARE)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +000011333#endif /* EX_SOFTWARE */
Barry Warsaw5676bd12003-01-07 20:57:09 +000011334#ifdef EX_OSERR
Victor Stinner8c62be82010-05-06 00:08:46 +000011335 if (ins(d, "EX_OSERR", (long)EX_OSERR)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +000011336#endif /* EX_OSERR */
Barry Warsaw5676bd12003-01-07 20:57:09 +000011337#ifdef EX_OSFILE
Victor Stinner8c62be82010-05-06 00:08:46 +000011338 if (ins(d, "EX_OSFILE", (long)EX_OSFILE)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +000011339#endif /* EX_OSFILE */
Barry Warsaw5676bd12003-01-07 20:57:09 +000011340#ifdef EX_CANTCREAT
Victor Stinner8c62be82010-05-06 00:08:46 +000011341 if (ins(d, "EX_CANTCREAT", (long)EX_CANTCREAT)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +000011342#endif /* EX_CANTCREAT */
Barry Warsaw5676bd12003-01-07 20:57:09 +000011343#ifdef EX_IOERR
Victor Stinner8c62be82010-05-06 00:08:46 +000011344 if (ins(d, "EX_IOERR", (long)EX_IOERR)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +000011345#endif /* EX_IOERR */
Barry Warsaw5676bd12003-01-07 20:57:09 +000011346#ifdef EX_TEMPFAIL
Victor Stinner8c62be82010-05-06 00:08:46 +000011347 if (ins(d, "EX_TEMPFAIL", (long)EX_TEMPFAIL)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +000011348#endif /* EX_TEMPFAIL */
Barry Warsaw5676bd12003-01-07 20:57:09 +000011349#ifdef EX_PROTOCOL
Victor Stinner8c62be82010-05-06 00:08:46 +000011350 if (ins(d, "EX_PROTOCOL", (long)EX_PROTOCOL)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +000011351#endif /* EX_PROTOCOL */
Barry Warsaw5676bd12003-01-07 20:57:09 +000011352#ifdef EX_NOPERM
Victor Stinner8c62be82010-05-06 00:08:46 +000011353 if (ins(d, "EX_NOPERM", (long)EX_NOPERM)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +000011354#endif /* EX_NOPERM */
Barry Warsaw5676bd12003-01-07 20:57:09 +000011355#ifdef EX_CONFIG
Victor Stinner8c62be82010-05-06 00:08:46 +000011356 if (ins(d, "EX_CONFIG", (long)EX_CONFIG)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +000011357#endif /* EX_CONFIG */
Barry Warsaw5676bd12003-01-07 20:57:09 +000011358#ifdef EX_NOTFOUND
Victor Stinner8c62be82010-05-06 00:08:46 +000011359 if (ins(d, "EX_NOTFOUND", (long)EX_NOTFOUND)) return -1;
Neal Norwitz8e914d92003-01-10 15:29:16 +000011360#endif /* EX_NOTFOUND */
Barry Warsaw5676bd12003-01-07 20:57:09 +000011361
Amaury Forgeot d'Arc66d00ad2010-09-10 18:11:45 +000011362 /* statvfs */
Andrew M. Kuchling4ea04a32010-08-18 22:30:34 +000011363#ifdef ST_RDONLY
Amaury Forgeot d'Arc66d00ad2010-09-10 18:11:45 +000011364 if (ins(d, "ST_RDONLY", (long)ST_RDONLY)) return -1;
Andrew M. Kuchling4ea04a32010-08-18 22:30:34 +000011365#endif /* ST_RDONLY */
11366#ifdef ST_NOSUID
Amaury Forgeot d'Arc66d00ad2010-09-10 18:11:45 +000011367 if (ins(d, "ST_NOSUID", (long)ST_NOSUID)) return -1;
Andrew M. Kuchling4ea04a32010-08-18 22:30:34 +000011368#endif /* ST_NOSUID */
11369
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +000011370 /* FreeBSD sendfile() constants */
11371#ifdef SF_NODISKIO
11372 if (ins(d, "SF_NODISKIO", (long)SF_NODISKIO)) return -1;
11373#endif
11374#ifdef SF_MNOWAIT
11375 if (ins(d, "SF_MNOWAIT", (long)SF_MNOWAIT)) return -1;
11376#endif
11377#ifdef SF_SYNC
11378 if (ins(d, "SF_SYNC", (long)SF_SYNC)) return -1;
11379#endif
11380
Ross Lagerwall7807c352011-03-17 20:20:30 +020011381 /* constants for posix_fadvise */
11382#ifdef POSIX_FADV_NORMAL
11383 if (ins(d, "POSIX_FADV_NORMAL", (long)POSIX_FADV_NORMAL)) return -1;
11384#endif
11385#ifdef POSIX_FADV_SEQUENTIAL
11386 if (ins(d, "POSIX_FADV_SEQUENTIAL", (long)POSIX_FADV_SEQUENTIAL)) return -1;
11387#endif
11388#ifdef POSIX_FADV_RANDOM
11389 if (ins(d, "POSIX_FADV_RANDOM", (long)POSIX_FADV_RANDOM)) return -1;
11390#endif
11391#ifdef POSIX_FADV_NOREUSE
11392 if (ins(d, "POSIX_FADV_NOREUSE", (long)POSIX_FADV_NOREUSE)) return -1;
11393#endif
11394#ifdef POSIX_FADV_WILLNEED
11395 if (ins(d, "POSIX_FADV_WILLNEED", (long)POSIX_FADV_WILLNEED)) return -1;
11396#endif
11397#ifdef POSIX_FADV_DONTNEED
11398 if (ins(d, "POSIX_FADV_DONTNEED", (long)POSIX_FADV_DONTNEED)) return -1;
11399#endif
11400
11401 /* constants for waitid */
11402#if defined(HAVE_SYS_WAIT_H) && defined(HAVE_WAITID)
11403 if (ins(d, "P_PID", (long)P_PID)) return -1;
11404 if (ins(d, "P_PGID", (long)P_PGID)) return -1;
11405 if (ins(d, "P_ALL", (long)P_ALL)) return -1;
11406#endif
11407#ifdef WEXITED
11408 if (ins(d, "WEXITED", (long)WEXITED)) return -1;
11409#endif
11410#ifdef WNOWAIT
11411 if (ins(d, "WNOWAIT", (long)WNOWAIT)) return -1;
11412#endif
11413#ifdef WSTOPPED
11414 if (ins(d, "WSTOPPED", (long)WSTOPPED)) return -1;
11415#endif
11416#ifdef CLD_EXITED
11417 if (ins(d, "CLD_EXITED", (long)CLD_EXITED)) return -1;
11418#endif
11419#ifdef CLD_DUMPED
11420 if (ins(d, "CLD_DUMPED", (long)CLD_DUMPED)) return -1;
11421#endif
11422#ifdef CLD_TRAPPED
11423 if (ins(d, "CLD_TRAPPED", (long)CLD_TRAPPED)) return -1;
11424#endif
11425#ifdef CLD_CONTINUED
11426 if (ins(d, "CLD_CONTINUED", (long)CLD_CONTINUED)) return -1;
11427#endif
11428
11429 /* constants for lockf */
11430#ifdef F_LOCK
11431 if (ins(d, "F_LOCK", (long)F_LOCK)) return -1;
11432#endif
11433#ifdef F_TLOCK
11434 if (ins(d, "F_TLOCK", (long)F_TLOCK)) return -1;
11435#endif
11436#ifdef F_ULOCK
11437 if (ins(d, "F_ULOCK", (long)F_ULOCK)) return -1;
11438#endif
11439#ifdef F_TEST
11440 if (ins(d, "F_TEST", (long)F_TEST)) return -1;
11441#endif
11442
11443 /* constants for futimens */
11444#ifdef UTIME_NOW
11445 if (ins(d, "UTIME_NOW", (long)UTIME_NOW)) return -1;
11446#endif
11447#ifdef UTIME_OMIT
11448 if (ins(d, "UTIME_OMIT", (long)UTIME_OMIT)) return -1;
11449#endif
11450
Guido van Rossum246bc171999-02-01 23:54:31 +000011451#ifdef HAVE_SPAWNV
Andrew MacIntyre6c73af22002-03-03 03:07:07 +000011452#if defined(PYOS_OS2) && defined(PYCC_GCC)
Victor Stinner8c62be82010-05-06 00:08:46 +000011453 if (ins(d, "P_WAIT", (long)P_WAIT)) return -1;
11454 if (ins(d, "P_NOWAIT", (long)P_NOWAIT)) return -1;
11455 if (ins(d, "P_OVERLAY", (long)P_OVERLAY)) return -1;
11456 if (ins(d, "P_DEBUG", (long)P_DEBUG)) return -1;
11457 if (ins(d, "P_SESSION", (long)P_SESSION)) return -1;
11458 if (ins(d, "P_DETACH", (long)P_DETACH)) return -1;
11459 if (ins(d, "P_PM", (long)P_PM)) return -1;
11460 if (ins(d, "P_DEFAULT", (long)P_DEFAULT)) return -1;
11461 if (ins(d, "P_MINIMIZE", (long)P_MINIMIZE)) return -1;
11462 if (ins(d, "P_MAXIMIZE", (long)P_MAXIMIZE)) return -1;
11463 if (ins(d, "P_FULLSCREEN", (long)P_FULLSCREEN)) return -1;
11464 if (ins(d, "P_WINDOWED", (long)P_WINDOWED)) return -1;
11465 if (ins(d, "P_FOREGROUND", (long)P_FOREGROUND)) return -1;
11466 if (ins(d, "P_BACKGROUND", (long)P_BACKGROUND)) return -1;
11467 if (ins(d, "P_NOCLOSE", (long)P_NOCLOSE)) return -1;
11468 if (ins(d, "P_NOSESSION", (long)P_NOSESSION)) return -1;
11469 if (ins(d, "P_QUOTE", (long)P_QUOTE)) return -1;
11470 if (ins(d, "P_TILDE", (long)P_TILDE)) return -1;
11471 if (ins(d, "P_UNRELATED", (long)P_UNRELATED)) return -1;
11472 if (ins(d, "P_DEBUGDESC", (long)P_DEBUGDESC)) return -1;
Andrew MacIntyre6c73af22002-03-03 03:07:07 +000011473#else
Victor Stinner8c62be82010-05-06 00:08:46 +000011474 if (ins(d, "P_WAIT", (long)_P_WAIT)) return -1;
11475 if (ins(d, "P_NOWAIT", (long)_P_NOWAIT)) return -1;
11476 if (ins(d, "P_OVERLAY", (long)_OLD_P_OVERLAY)) return -1;
11477 if (ins(d, "P_NOWAITO", (long)_P_NOWAITO)) return -1;
11478 if (ins(d, "P_DETACH", (long)_P_DETACH)) return -1;
Guido van Rossum246bc171999-02-01 23:54:31 +000011479#endif
Andrew MacIntyre6c73af22002-03-03 03:07:07 +000011480#endif
Guido van Rossum246bc171999-02-01 23:54:31 +000011481
Benjamin Peterson94b580d2011-08-02 17:30:04 -050011482#ifdef HAVE_SCHED_H
Jesus Ceaf2cb4e82011-09-09 23:55:42 +020011483 if (ins(d, "SCHED_OTHER", (long)SCHED_OTHER)) return -1;
Benjamin Peterson94b580d2011-08-02 17:30:04 -050011484 if (ins(d, "SCHED_FIFO", (long)SCHED_FIFO)) return -1;
11485 if (ins(d, "SCHED_RR", (long)SCHED_RR)) return -1;
11486#ifdef SCHED_SPORADIC
11487 if (ins(d, "SCHED_SPORADIC", (long)SCHED_SPORADIC) return -1;
11488#endif
Benjamin Peterson94b580d2011-08-02 17:30:04 -050011489#ifdef SCHED_BATCH
11490 if (ins(d, "SCHED_BATCH", (long)SCHED_BATCH)) return -1;
11491#endif
11492#ifdef SCHED_IDLE
11493 if (ins(d, "SCHED_IDLE", (long)SCHED_IDLE)) return -1;
11494#endif
11495#ifdef SCHED_RESET_ON_FORK
11496 if (ins(d, "SCHED_RESET_ON_FORK", (long)SCHED_RESET_ON_FORK)) return -1;
11497#endif
Jesus Ceaf2cb4e82011-09-09 23:55:42 +020011498#ifdef SCHED_SYS
11499 if (ins(d, "SCHED_SYS", (long)SCHED_SYS)) return -1;
11500#endif
11501#ifdef SCHED_IA
11502 if (ins(d, "SCHED_IA", (long)SCHED_IA)) return -1;
11503#endif
11504#ifdef SCHED_FSS
11505 if (ins(d, "SCHED_FSS", (long)SCHED_FSS)) return -1;
11506#endif
11507#ifdef SCHED_FX
11508 if (ins(d, "SCHED_FX", (long)SCHED_FSS)) return -1;
11509#endif
Benjamin Peterson94b580d2011-08-02 17:30:04 -050011510#endif
11511
Benjamin Peterson9428d532011-09-14 11:45:52 -040011512#ifdef USE_XATTRS
Benjamin Peterson799bd802011-08-31 22:15:17 -040011513 if (ins(d, "XATTR_CREATE", (long)XATTR_CREATE)) return -1;
11514 if (ins(d, "XATTR_REPLACE", (long)XATTR_REPLACE)) return -1;
11515 if (ins(d, "XATTR_SIZE_MAX", (long)XATTR_SIZE_MAX)) return -1;
11516#endif
11517
Victor Stinner8b905bd2011-10-25 13:34:04 +020011518#ifdef RTLD_LAZY
11519 if (PyModule_AddIntMacro(d, RTLD_LAZY)) return -1;
11520#endif
11521#ifdef RTLD_NOW
11522 if (PyModule_AddIntMacro(d, RTLD_NOW)) return -1;
11523#endif
11524#ifdef RTLD_GLOBAL
11525 if (PyModule_AddIntMacro(d, RTLD_GLOBAL)) return -1;
11526#endif
11527#ifdef RTLD_LOCAL
11528 if (PyModule_AddIntMacro(d, RTLD_LOCAL)) return -1;
11529#endif
11530#ifdef RTLD_NODELETE
11531 if (PyModule_AddIntMacro(d, RTLD_NODELETE)) return -1;
11532#endif
11533#ifdef RTLD_NOLOAD
11534 if (PyModule_AddIntMacro(d, RTLD_NOLOAD)) return -1;
11535#endif
11536#ifdef RTLD_DEEPBIND
11537 if (PyModule_AddIntMacro(d, RTLD_DEEPBIND)) return -1;
11538#endif
11539
Guido van Rossumd48f2521997-12-05 22:19:34 +000011540#if defined(PYOS_OS2)
Victor Stinner8c62be82010-05-06 00:08:46 +000011541 if (insertvalues(d)) return -1;
Guido van Rossumd48f2521997-12-05 22:19:34 +000011542#endif
Victor Stinner8c62be82010-05-06 00:08:46 +000011543 return 0;
Barry Warsaw4a342091996-12-19 23:50:02 +000011544}
11545
11546
Tim Peters5aa91602002-01-30 05:46:57 +000011547#if (defined(_MSC_VER) || defined(__WATCOMC__) || defined(__BORLANDC__)) && !defined(__QNX__)
Martin v. Löwis1a214512008-06-11 05:26:20 +000011548#define INITFUNC PyInit_nt
Guido van Rossum0cb96de1997-10-01 04:29:29 +000011549#define MODNAME "nt"
Tim Peters58e0a8c2001-05-14 22:32:33 +000011550
11551#elif defined(PYOS_OS2)
Martin v. Löwis1a214512008-06-11 05:26:20 +000011552#define INITFUNC PyInit_os2
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +000011553#define MODNAME "os2"
Tim Peters58e0a8c2001-05-14 22:32:33 +000011554
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +000011555#else
Martin v. Löwis1a214512008-06-11 05:26:20 +000011556#define INITFUNC PyInit_posix
Guido van Rossum0cb96de1997-10-01 04:29:29 +000011557#define MODNAME "posix"
11558#endif
11559
Martin v. Löwis1a214512008-06-11 05:26:20 +000011560static struct PyModuleDef posixmodule = {
Victor Stinner8c62be82010-05-06 00:08:46 +000011561 PyModuleDef_HEAD_INIT,
11562 MODNAME,
11563 posix__doc__,
11564 -1,
11565 posix_methods,
11566 NULL,
11567 NULL,
11568 NULL,
11569 NULL
Martin v. Löwis1a214512008-06-11 05:26:20 +000011570};
11571
11572
Mark Hammondfe51c6d2002-08-02 02:27:13 +000011573PyMODINIT_FUNC
Thomas Woutersf3f33dc2000-07-21 06:00:07 +000011574INITFUNC(void)
Guido van Rossumb6775db1994-08-01 11:34:53 +000011575{
Victor Stinner8c62be82010-05-06 00:08:46 +000011576 PyObject *m, *v;
Tim Peters5aa91602002-01-30 05:46:57 +000011577
Brian Curtin52173d42010-12-02 18:29:18 +000011578#if defined(HAVE_SYMLINK) && defined(MS_WINDOWS)
Brian Curtin3b4499c2010-12-28 14:31:47 +000011579 win32_can_symlink = enable_symlink();
Brian Curtin52173d42010-12-02 18:29:18 +000011580#endif
11581
Victor Stinner8c62be82010-05-06 00:08:46 +000011582 m = PyModule_Create(&posixmodule);
11583 if (m == NULL)
11584 return NULL;
Tim Peters5aa91602002-01-30 05:46:57 +000011585
Victor Stinner8c62be82010-05-06 00:08:46 +000011586 /* Initialize environ dictionary */
11587 v = convertenviron();
11588 Py_XINCREF(v);
11589 if (v == NULL || PyModule_AddObject(m, "environ", v) != 0)
11590 return NULL;
11591 Py_DECREF(v);
Fred Drakec9680921999-12-13 16:37:25 +000011592
Victor Stinner8c62be82010-05-06 00:08:46 +000011593 if (all_ins(m))
11594 return NULL;
Barry Warsaw4a342091996-12-19 23:50:02 +000011595
Victor Stinner8c62be82010-05-06 00:08:46 +000011596 if (setup_confname_tables(m))
11597 return NULL;
Fred Drakebec628d1999-12-15 18:31:10 +000011598
Victor Stinner8c62be82010-05-06 00:08:46 +000011599 Py_INCREF(PyExc_OSError);
11600 PyModule_AddObject(m, "error", PyExc_OSError);
Fred Drake762e2061999-08-26 17:23:54 +000011601
Benjamin Peterson2740af82011-08-02 17:41:34 -050011602#ifdef HAVE_SCHED_SETAFFINITY
Benjamin Peterson94b580d2011-08-02 17:30:04 -050011603 if (PyType_Ready(&cpu_set_type) < 0)
11604 return NULL;
11605 Py_INCREF(&cpu_set_type);
11606 PyModule_AddObject(m, "cpu_set", (PyObject *)&cpu_set_type);
Benjamin Peterson2740af82011-08-02 17:41:34 -050011607#endif
Benjamin Peterson94b580d2011-08-02 17:30:04 -050011608
Guido van Rossumb3d39562000-01-31 18:41:26 +000011609#ifdef HAVE_PUTENV
Victor Stinner8c62be82010-05-06 00:08:46 +000011610 if (posix_putenv_garbage == NULL)
11611 posix_putenv_garbage = PyDict_New();
Guido van Rossumb3d39562000-01-31 18:41:26 +000011612#endif
Guido van Rossum98bf58f2001-10-18 20:34:25 +000011613
Victor Stinner8c62be82010-05-06 00:08:46 +000011614 if (!initialized) {
Ross Lagerwall7807c352011-03-17 20:20:30 +020011615#if defined(HAVE_WAITID) && !defined(__APPLE__)
11616 waitid_result_desc.name = MODNAME ".waitid_result";
11617 PyStructSequence_InitType(&WaitidResultType, &waitid_result_desc);
11618#endif
11619
Victor Stinner8c62be82010-05-06 00:08:46 +000011620 stat_result_desc.name = MODNAME ".stat_result";
11621 stat_result_desc.fields[7].name = PyStructSequence_UnnamedField;
11622 stat_result_desc.fields[8].name = PyStructSequence_UnnamedField;
11623 stat_result_desc.fields[9].name = PyStructSequence_UnnamedField;
11624 PyStructSequence_InitType(&StatResultType, &stat_result_desc);
11625 structseq_new = StatResultType.tp_new;
11626 StatResultType.tp_new = statresult_new;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000011627
Victor Stinner8c62be82010-05-06 00:08:46 +000011628 statvfs_result_desc.name = MODNAME ".statvfs_result";
11629 PyStructSequence_InitType(&StatVFSResultType, &statvfs_result_desc);
Martin v. Löwis05bfe1f2008-12-29 18:21:47 +000011630#ifdef NEED_TICKS_PER_SECOND
11631# if defined(HAVE_SYSCONF) && defined(_SC_CLK_TCK)
Victor Stinner8c62be82010-05-06 00:08:46 +000011632 ticks_per_second = sysconf(_SC_CLK_TCK);
Martin v. Löwis05bfe1f2008-12-29 18:21:47 +000011633# elif defined(HZ)
Victor Stinner8c62be82010-05-06 00:08:46 +000011634 ticks_per_second = HZ;
Martin v. Löwis05bfe1f2008-12-29 18:21:47 +000011635# else
Victor Stinner8c62be82010-05-06 00:08:46 +000011636 ticks_per_second = 60; /* magic fallback value; may be bogus */
Martin v. Löwis05bfe1f2008-12-29 18:21:47 +000011637# endif
11638#endif
Benjamin Peterson94b580d2011-08-02 17:30:04 -050011639
Benjamin Peterson0163c9a2011-08-02 18:11:38 -050011640#if defined(HAVE_SCHED_SETPARAM) || defined(HAVE_SCHED_SETSCHEDULER)
Benjamin Peterson94b580d2011-08-02 17:30:04 -050011641 sched_param_desc.name = MODNAME ".sched_param";
11642 PyStructSequence_InitType(&SchedParamType, &sched_param_desc);
11643 SchedParamType.tp_new = sched_param_new;
11644#endif
Antoine Pitroubcf2b592012-02-08 23:28:36 +010011645
11646 /* initialize TerminalSize_info */
11647 PyStructSequence_InitType(&TerminalSizeType, &TerminalSize_desc);
11648 Py_INCREF(&TerminalSizeType);
Victor Stinner8c62be82010-05-06 00:08:46 +000011649 }
Ross Lagerwall7807c352011-03-17 20:20:30 +020011650#if defined(HAVE_WAITID) && !defined(__APPLE__)
11651 Py_INCREF((PyObject*) &WaitidResultType);
11652 PyModule_AddObject(m, "waitid_result", (PyObject*) &WaitidResultType);
11653#endif
Victor Stinner8c62be82010-05-06 00:08:46 +000011654 Py_INCREF((PyObject*) &StatResultType);
11655 PyModule_AddObject(m, "stat_result", (PyObject*) &StatResultType);
11656 Py_INCREF((PyObject*) &StatVFSResultType);
11657 PyModule_AddObject(m, "statvfs_result",
11658 (PyObject*) &StatVFSResultType);
Benjamin Petersone3298dd2011-08-02 18:40:46 -050011659
11660#if defined(HAVE_SCHED_SETPARAM) || defined(HAVE_SCHED_SETSCHEDULER)
Benjamin Peterson94b580d2011-08-02 17:30:04 -050011661 Py_INCREF(&SchedParamType);
11662 PyModule_AddObject(m, "sched_param", (PyObject *)&SchedParamType);
Benjamin Petersone3298dd2011-08-02 18:40:46 -050011663#endif
Victor Stinner8c62be82010-05-06 00:08:46 +000011664 initialized = 1;
Thomas Wouters477c8d52006-05-27 19:21:47 +000011665
11666#ifdef __APPLE__
Victor Stinner8c62be82010-05-06 00:08:46 +000011667 /*
11668 * Step 2 of weak-linking support on Mac OS X.
11669 *
11670 * The code below removes functions that are not available on the
11671 * currently active platform.
11672 *
11673 * This block allow one to use a python binary that was build on
11674 * OSX 10.4 on OSX 10.3, without loosing access to new APIs on
11675 * OSX 10.4.
11676 */
Thomas Wouters477c8d52006-05-27 19:21:47 +000011677#ifdef HAVE_FSTATVFS
Victor Stinner8c62be82010-05-06 00:08:46 +000011678 if (fstatvfs == NULL) {
11679 if (PyObject_DelAttrString(m, "fstatvfs") == -1) {
11680 return NULL;
11681 }
11682 }
Thomas Wouters477c8d52006-05-27 19:21:47 +000011683#endif /* HAVE_FSTATVFS */
11684
11685#ifdef HAVE_STATVFS
Victor Stinner8c62be82010-05-06 00:08:46 +000011686 if (statvfs == NULL) {
11687 if (PyObject_DelAttrString(m, "statvfs") == -1) {
11688 return NULL;
11689 }
11690 }
Thomas Wouters477c8d52006-05-27 19:21:47 +000011691#endif /* HAVE_STATVFS */
11692
11693# ifdef HAVE_LCHOWN
Victor Stinner8c62be82010-05-06 00:08:46 +000011694 if (lchown == NULL) {
11695 if (PyObject_DelAttrString(m, "lchown") == -1) {
11696 return NULL;
11697 }
11698 }
Thomas Wouters477c8d52006-05-27 19:21:47 +000011699#endif /* HAVE_LCHOWN */
11700
11701
11702#endif /* __APPLE__ */
Antoine Pitroubcf2b592012-02-08 23:28:36 +010011703
11704 PyModule_AddObject(m, "terminal_size", (PyObject*) &TerminalSizeType);
11705
Larry Hastings6fe20b32012-04-19 15:07:49 -070011706 billion = PyLong_FromLong(1000000000);
11707 if (!billion)
11708 return NULL;
11709
Victor Stinner8c62be82010-05-06 00:08:46 +000011710 return m;
Thomas Wouters477c8d52006-05-27 19:21:47 +000011711
Guido van Rossumb6775db1994-08-01 11:34:53 +000011712}
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000011713
11714#ifdef __cplusplus
11715}
11716#endif