Guido van Rossum | f70e43a | 1991-02-19 12:39:46 +0000 | [diff] [blame] | 1 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2 | /* POSIX module implementation */ |
| 3 | |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4 | /* 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öwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 7 | assumes that for Windows NT, the macro 'MS_WINDOWS' is defined independent |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 8 | of the compiler used. Different compilers define their own feature |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 9 | 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 Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 13 | |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 14 | /* See also ../Dos/dosmodule.c */ |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 15 | |
Ronald Oussoren | d06b6f2 | 2006-04-23 11:59:25 +0000 | [diff] [blame] | 16 | #ifdef __APPLE__ |
| 17 | /* |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 18 | * Step 1 of support for weak-linking a number of symbols existing on |
Ronald Oussoren | d06b6f2 | 2006-04-23 11:59:25 +0000 | [diff] [blame] | 19 | * OSX 10.4 and later, see the comment in the #ifdef __APPLE__ block |
| 20 | * at the end of this file for more information. |
| 21 | */ |
| 22 | # pragma weak lchown |
| 23 | # pragma weak statvfs |
| 24 | # pragma weak fstatvfs |
| 25 | |
| 26 | #endif /* __APPLE__ */ |
| 27 | |
Thomas Wouters | 68bc4f9 | 2006-03-01 01:05:10 +0000 | [diff] [blame] | 28 | #define PY_SSIZE_T_CLEAN |
| 29 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 30 | #include "Python.h" |
| 31 | #include "structseq.h" |
| 32 | |
Martin v. Löwis | 79acb9e | 2002-12-06 12:48:53 +0000 | [diff] [blame] | 33 | #if defined(__VMS) |
Martin v. Löwis | 79acb9e | 2002-12-06 12:48:53 +0000 | [diff] [blame] | 34 | # include <unixio.h> |
Martin v. Löwis | 79acb9e | 2002-12-06 12:48:53 +0000 | [diff] [blame] | 35 | #endif /* defined(__VMS) */ |
| 36 | |
Anthony Baxter | ac6bd46 | 2006-04-13 02:06:09 +0000 | [diff] [blame] | 37 | #ifdef __cplusplus |
| 38 | extern "C" { |
| 39 | #endif |
| 40 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 41 | PyDoc_STRVAR(posix__doc__, |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 42 | "This module provides access to operating system functionality that is\n\ |
| 43 | standardized by the C Standard and the POSIX standard (a thinly\n\ |
| 44 | disguised Unix interface). Refer to the library manual and\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 45 | corresponding Unix manual entries for more information on calls."); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 46 | |
Martin v. Löwis | 0073f2e | 2002-11-21 23:52:35 +0000 | [diff] [blame] | 47 | #ifndef Py_USING_UNICODE |
| 48 | /* This is used in signatures of functions. */ |
| 49 | #define Py_UNICODE void |
| 50 | #endif |
| 51 | |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 52 | #if defined(PYOS_OS2) |
| 53 | #define INCL_DOS |
| 54 | #define INCL_DOSERRORS |
| 55 | #define INCL_DOSPROCESS |
| 56 | #define INCL_NOPMAPI |
| 57 | #include <os2.h> |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 58 | #if defined(PYCC_GCC) |
| 59 | #include <ctype.h> |
| 60 | #include <io.h> |
| 61 | #include <stdio.h> |
| 62 | #include <process.h> |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 63 | #endif |
Andrew MacIntyre | da4d6cb | 2004-03-29 11:53:38 +0000 | [diff] [blame] | 64 | #include "osdefs.h" |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 65 | #endif |
| 66 | |
Martin v. Löwis | 0e8bd7e | 2006-06-10 12:23:46 +0000 | [diff] [blame] | 67 | #ifdef HAVE_SYS_TYPES_H |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 68 | #include <sys/types.h> |
Martin v. Löwis | 0e8bd7e | 2006-06-10 12:23:46 +0000 | [diff] [blame] | 69 | #endif /* HAVE_SYS_TYPES_H */ |
| 70 | |
| 71 | #ifdef HAVE_SYS_STAT_H |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 72 | #include <sys/stat.h> |
Martin v. Löwis | 0e8bd7e | 2006-06-10 12:23:46 +0000 | [diff] [blame] | 73 | #endif /* HAVE_SYS_STAT_H */ |
Guido van Rossum | a6535fd | 2001-10-18 19:44:10 +0000 | [diff] [blame] | 74 | |
Guido van Rossum | 36bc680 | 1995-06-14 22:54:23 +0000 | [diff] [blame] | 75 | #ifdef HAVE_SYS_WAIT_H |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 76 | #include <sys/wait.h> /* For WNOHANG */ |
Guido van Rossum | 36bc680 | 1995-06-14 22:54:23 +0000 | [diff] [blame] | 77 | #endif |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 78 | |
Martin v. Löwis | 0e8bd7e | 2006-06-10 12:23:46 +0000 | [diff] [blame] | 79 | #ifdef HAVE_SIGNAL_H |
Guido van Rossum | a376cc5 | 1996-12-05 23:43:35 +0000 | [diff] [blame] | 80 | #include <signal.h> |
Martin v. Löwis | 0e8bd7e | 2006-06-10 12:23:46 +0000 | [diff] [blame] | 81 | #endif |
Guido van Rossum | a376cc5 | 1996-12-05 23:43:35 +0000 | [diff] [blame] | 82 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 83 | #ifdef HAVE_FCNTL_H |
| 84 | #include <fcntl.h> |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 85 | #endif /* HAVE_FCNTL_H */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 86 | |
Guido van Rossum | a6535fd | 2001-10-18 19:44:10 +0000 | [diff] [blame] | 87 | #ifdef HAVE_GRP_H |
| 88 | #include <grp.h> |
| 89 | #endif |
| 90 | |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 91 | #ifdef HAVE_SYSEXITS_H |
| 92 | #include <sysexits.h> |
| 93 | #endif /* HAVE_SYSEXITS_H */ |
| 94 | |
Anthony Baxter | 8a560de | 2004-10-13 15:30:56 +0000 | [diff] [blame] | 95 | #ifdef HAVE_SYS_LOADAVG_H |
| 96 | #include <sys/loadavg.h> |
| 97 | #endif |
| 98 | |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 99 | /* Various compilers have only certain posix functions */ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 100 | /* XXX Gosh I wish these were all moved into pyconfig.h */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 101 | #if defined(PYCC_VACPP) && defined(PYOS_OS2) |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 102 | #include <process.h> |
| 103 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 104 | #if defined(__WATCOMC__) && !defined(__QNX__) /* Watcom compiler */ |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 105 | #define HAVE_GETCWD 1 |
| 106 | #define HAVE_OPENDIR 1 |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 107 | #define HAVE_SYSTEM 1 |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 108 | #if defined(__OS2__) |
| 109 | #define HAVE_EXECV 1 |
| 110 | #define HAVE_WAIT 1 |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 111 | #endif |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 112 | #include <process.h> |
| 113 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 114 | #ifdef __BORLANDC__ /* Borland compiler */ |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 115 | #define HAVE_EXECV 1 |
| 116 | #define HAVE_GETCWD 1 |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 117 | #define HAVE_OPENDIR 1 |
| 118 | #define HAVE_PIPE 1 |
| 119 | #define HAVE_POPEN 1 |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 120 | #define HAVE_SYSTEM 1 |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 121 | #define HAVE_WAIT 1 |
| 122 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 123 | #ifdef _MSC_VER /* Microsoft compiler */ |
Guido van Rossum | 8d665e6 | 1996-06-26 18:22:49 +0000 | [diff] [blame] | 124 | #define HAVE_GETCWD 1 |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 125 | #define HAVE_SPAWNV 1 |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 126 | #define HAVE_EXECV 1 |
| 127 | #define HAVE_PIPE 1 |
| 128 | #define HAVE_POPEN 1 |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 129 | #define HAVE_SYSTEM 1 |
| 130 | #define HAVE_CWAIT 1 |
| 131 | #define HAVE_FSYNC 1 |
Tim Peters | 11b2306 | 2003-04-23 02:39:17 +0000 | [diff] [blame] | 132 | #define fsync _commit |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 133 | #else |
Martin v. Löwis | 79acb9e | 2002-12-06 12:48:53 +0000 | [diff] [blame] | 134 | #if defined(PYOS_OS2) && defined(PYCC_GCC) || defined(__VMS) |
| 135 | /* Everything needed is defined in PC/os2emx/pyconfig.h or vms/pyconfig.h */ |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 136 | #else /* all other compilers */ |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 137 | /* Unix functions that the configure script doesn't check for */ |
| 138 | #define HAVE_EXECV 1 |
| 139 | #define HAVE_FORK 1 |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 140 | #if defined(__USLC__) && defined(__SCO_VERSION__) /* SCO UDK Compiler */ |
Guido van Rossum | 2242f2f | 2001-04-11 20:58:20 +0000 | [diff] [blame] | 141 | #define HAVE_FORK1 1 |
| 142 | #endif |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 143 | #define HAVE_GETCWD 1 |
| 144 | #define HAVE_GETEGID 1 |
| 145 | #define HAVE_GETEUID 1 |
| 146 | #define HAVE_GETGID 1 |
| 147 | #define HAVE_GETPPID 1 |
| 148 | #define HAVE_GETUID 1 |
| 149 | #define HAVE_KILL 1 |
| 150 | #define HAVE_OPENDIR 1 |
| 151 | #define HAVE_PIPE 1 |
Martin v. Löwis | 212ede6 | 2003-09-20 11:20:30 +0000 | [diff] [blame] | 152 | #ifndef __rtems__ |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 153 | #define HAVE_POPEN 1 |
Martin v. Löwis | 212ede6 | 2003-09-20 11:20:30 +0000 | [diff] [blame] | 154 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 155 | #define HAVE_SYSTEM 1 |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 156 | #define HAVE_WAIT 1 |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 157 | #define HAVE_TTYNAME 1 |
Martin v. Löwis | 7a924e6 | 2003-03-05 14:15:21 +0000 | [diff] [blame] | 158 | #endif /* PYOS_OS2 && PYCC_GCC && __VMS */ |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 159 | #endif /* _MSC_VER */ |
| 160 | #endif /* __BORLANDC__ */ |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 161 | #endif /* ! __WATCOMC__ || __QNX__ */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 162 | #endif /* ! __IBMC__ */ |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 163 | |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 164 | #ifndef _MSC_VER |
Guido van Rossum | 36bc680 | 1995-06-14 22:54:23 +0000 | [diff] [blame] | 165 | |
Martin v. Löwis | 8eb92a0 | 2002-09-19 08:03:21 +0000 | [diff] [blame] | 166 | #if defined(__sgi)&&_COMPILER_VERSION>=700 |
| 167 | /* declare ctermid_r if compiling with MIPSPro 7.x in ANSI C mode |
| 168 | (default) */ |
| 169 | extern char *ctermid_r(char *); |
| 170 | #endif |
| 171 | |
Thomas Wouters | 1e0c2f4 | 2000-07-24 16:06:23 +0000 | [diff] [blame] | 172 | #ifndef HAVE_UNISTD_H |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 173 | #if defined(PYCC_VACPP) |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 174 | extern int mkdir(char *); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 175 | #else |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 176 | #if ( defined(__WATCOMC__) || defined(_MSC_VER) ) && !defined(__QNX__) |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 177 | extern int mkdir(const char *); |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 178 | #else |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 179 | extern int mkdir(const char *, mode_t); |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 180 | #endif |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 181 | #endif |
| 182 | #if defined(__IBMC__) || defined(__IBMCPP__) |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 183 | extern int chdir(char *); |
| 184 | extern int rmdir(char *); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 185 | #else |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 186 | extern int chdir(const char *); |
| 187 | extern int rmdir(const char *); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 188 | #endif |
Tim Peters | 58e0a8c | 2001-05-14 22:32:33 +0000 | [diff] [blame] | 189 | #ifdef __BORLANDC__ |
| 190 | extern int chmod(const char *, int); |
| 191 | #else |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 192 | extern int chmod(const char *, mode_t); |
Tim Peters | 58e0a8c | 2001-05-14 22:32:33 +0000 | [diff] [blame] | 193 | #endif |
Christian Heimes | 3628187 | 2007-11-30 21:11:28 +0000 | [diff] [blame] | 194 | /*#ifdef HAVE_FCHMOD |
| 195 | extern int fchmod(int, mode_t); |
| 196 | #endif*/ |
| 197 | /*#ifdef HAVE_LCHMOD |
| 198 | extern int lchmod(const char *, mode_t); |
| 199 | #endif*/ |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 200 | extern int chown(const char *, uid_t, gid_t); |
| 201 | extern char *getcwd(char *, int); |
| 202 | extern char *strerror(int); |
| 203 | extern int link(const char *, const char *); |
| 204 | extern int rename(const char *, const char *); |
| 205 | extern int stat(const char *, struct stat *); |
| 206 | extern int unlink(const char *); |
| 207 | extern int pclose(FILE *); |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 208 | #ifdef HAVE_SYMLINK |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 209 | extern int symlink(const char *, const char *); |
Guido van Rossum | a38a503 | 1995-02-17 15:11:36 +0000 | [diff] [blame] | 210 | #endif /* HAVE_SYMLINK */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 211 | #ifdef HAVE_LSTAT |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 212 | extern int lstat(const char *, struct stat *); |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 213 | #endif /* HAVE_LSTAT */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 214 | #endif /* !HAVE_UNISTD_H */ |
Guido van Rossum | 36bc680 | 1995-06-14 22:54:23 +0000 | [diff] [blame] | 215 | |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 216 | #endif /* !_MSC_VER */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 217 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 218 | #ifdef HAVE_UTIME_H |
| 219 | #include <utime.h> |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 220 | #endif /* HAVE_UTIME_H */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 221 | |
Guido van Rossum | 14ed0b2 | 1994-09-29 09:50:09 +0000 | [diff] [blame] | 222 | #ifdef HAVE_SYS_UTIME_H |
| 223 | #include <sys/utime.h> |
| 224 | #define HAVE_UTIME_H /* pretend we do for the rest of this file */ |
| 225 | #endif /* HAVE_SYS_UTIME_H */ |
| 226 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 227 | #ifdef HAVE_SYS_TIMES_H |
| 228 | #include <sys/times.h> |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 229 | #endif /* HAVE_SYS_TIMES_H */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 230 | |
| 231 | #ifdef HAVE_SYS_PARAM_H |
| 232 | #include <sys/param.h> |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 233 | #endif /* HAVE_SYS_PARAM_H */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 234 | |
| 235 | #ifdef HAVE_SYS_UTSNAME_H |
| 236 | #include <sys/utsname.h> |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 237 | #endif /* HAVE_SYS_UTSNAME_H */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 238 | |
Guido van Rossum | 3bbc62e | 1995-01-02 19:30:30 +0000 | [diff] [blame] | 239 | #ifdef HAVE_DIRENT_H |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 240 | #include <dirent.h> |
Guido van Rossum | 3bbc62e | 1995-01-02 19:30:30 +0000 | [diff] [blame] | 241 | #define NAMLEN(dirent) strlen((dirent)->d_name) |
| 242 | #else |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 243 | #if defined(__WATCOMC__) && !defined(__QNX__) |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 244 | #include <direct.h> |
| 245 | #define NAMLEN(dirent) strlen((dirent)->d_name) |
| 246 | #else |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 247 | #define dirent direct |
Guido van Rossum | 3bbc62e | 1995-01-02 19:30:30 +0000 | [diff] [blame] | 248 | #define NAMLEN(dirent) (dirent)->d_namlen |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 249 | #endif |
Guido van Rossum | 3bbc62e | 1995-01-02 19:30:30 +0000 | [diff] [blame] | 250 | #ifdef HAVE_SYS_NDIR_H |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 251 | #include <sys/ndir.h> |
Guido van Rossum | 3bbc62e | 1995-01-02 19:30:30 +0000 | [diff] [blame] | 252 | #endif |
| 253 | #ifdef HAVE_SYS_DIR_H |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 254 | #include <sys/dir.h> |
Guido van Rossum | 3bbc62e | 1995-01-02 19:30:30 +0000 | [diff] [blame] | 255 | #endif |
| 256 | #ifdef HAVE_NDIR_H |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 257 | #include <ndir.h> |
Guido van Rossum | 3bbc62e | 1995-01-02 19:30:30 +0000 | [diff] [blame] | 258 | #endif |
| 259 | #endif |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 260 | |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 261 | #ifdef _MSC_VER |
Martin v. Löwis | 0e8bd7e | 2006-06-10 12:23:46 +0000 | [diff] [blame] | 262 | #ifdef HAVE_DIRECT_H |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 263 | #include <direct.h> |
Martin v. Löwis | 0e8bd7e | 2006-06-10 12:23:46 +0000 | [diff] [blame] | 264 | #endif |
| 265 | #ifdef HAVE_IO_H |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 266 | #include <io.h> |
Martin v. Löwis | 0e8bd7e | 2006-06-10 12:23:46 +0000 | [diff] [blame] | 267 | #endif |
| 268 | #ifdef HAVE_PROCESS_H |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 269 | #include <process.h> |
Martin v. Löwis | 0e8bd7e | 2006-06-10 12:23:46 +0000 | [diff] [blame] | 270 | #endif |
Tim Peters | bc2e10e | 2002-03-03 23:17:02 +0000 | [diff] [blame] | 271 | #include "osdefs.h" |
Kristján Valur Jónsson | feab334 | 2009-04-01 16:08:34 +0000 | [diff] [blame] | 272 | #include <malloc.h> |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 273 | #include <windows.h> |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 274 | #include <shellapi.h> /* for ShellExecute() */ |
| 275 | #define popen _popen |
| 276 | #define pclose _pclose |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 277 | #endif /* _MSC_VER */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 278 | |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 279 | #if defined(PYCC_VACPP) && defined(PYOS_OS2) |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 280 | #include <io.h> |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 281 | #endif /* OS2 */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 282 | |
Tim Peters | bc2e10e | 2002-03-03 23:17:02 +0000 | [diff] [blame] | 283 | #ifndef MAXPATHLEN |
Thomas Wouters | 1ddba60 | 2006-04-25 15:29:46 +0000 | [diff] [blame] | 284 | #if defined(PATH_MAX) && PATH_MAX > 1024 |
| 285 | #define MAXPATHLEN PATH_MAX |
| 286 | #else |
Tim Peters | bc2e10e | 2002-03-03 23:17:02 +0000 | [diff] [blame] | 287 | #define MAXPATHLEN 1024 |
Thomas Wouters | 1ddba60 | 2006-04-25 15:29:46 +0000 | [diff] [blame] | 288 | #endif |
Tim Peters | bc2e10e | 2002-03-03 23:17:02 +0000 | [diff] [blame] | 289 | #endif /* MAXPATHLEN */ |
| 290 | |
Guido van Rossum | 54ecc3d | 1999-01-27 17:53:11 +0000 | [diff] [blame] | 291 | #ifdef UNION_WAIT |
| 292 | /* Emulate some macros on systems that have a union instead of macros */ |
| 293 | |
| 294 | #ifndef WIFEXITED |
| 295 | #define WIFEXITED(u_wait) (!(u_wait).w_termsig && !(u_wait).w_coredump) |
| 296 | #endif |
| 297 | |
| 298 | #ifndef WEXITSTATUS |
| 299 | #define WEXITSTATUS(u_wait) (WIFEXITED(u_wait)?((u_wait).w_retcode):-1) |
| 300 | #endif |
| 301 | |
| 302 | #ifndef WTERMSIG |
| 303 | #define WTERMSIG(u_wait) ((u_wait).w_termsig) |
| 304 | #endif |
| 305 | |
Neal Norwitz | d5a3754 | 2006-03-20 06:48:34 +0000 | [diff] [blame] | 306 | #define WAIT_TYPE union wait |
| 307 | #define WAIT_STATUS_INT(s) (s.w_status) |
| 308 | |
| 309 | #else /* !UNION_WAIT */ |
| 310 | #define WAIT_TYPE int |
| 311 | #define WAIT_STATUS_INT(s) (s) |
Guido van Rossum | 54ecc3d | 1999-01-27 17:53:11 +0000 | [diff] [blame] | 312 | #endif /* UNION_WAIT */ |
| 313 | |
Antoine Pitrou | 5e858fe | 2009-05-23 15:37:45 +0000 | [diff] [blame] | 314 | /* Issue #1983: pid_t can be longer than a C long on some systems */ |
Antoine Pitrou | 4fe3858 | 2009-05-24 12:15:04 +0000 | [diff] [blame] | 315 | #if !defined(SIZEOF_PID_T) || SIZEOF_PID_T == SIZEOF_INT |
Antoine Pitrou | 5e858fe | 2009-05-23 15:37:45 +0000 | [diff] [blame] | 316 | #define PARSE_PID "i" |
| 317 | #define PyLong_FromPid PyInt_FromLong |
| 318 | #define PyLong_AsPid PyInt_AsLong |
| 319 | #elif SIZEOF_PID_T == SIZEOF_LONG |
| 320 | #define PARSE_PID "l" |
| 321 | #define PyLong_FromPid PyInt_FromLong |
| 322 | #define PyLong_AsPid PyInt_AsLong |
| 323 | #elif defined(SIZEOF_LONG_LONG) && SIZEOF_PID_T == SIZEOF_LONG_LONG |
| 324 | #define PARSE_PID "L" |
| 325 | #define PyLong_FromPid PyLong_FromLongLong |
| 326 | #define PyLong_AsPid PyInt_AsLongLong |
| 327 | #else |
| 328 | #error "sizeof(pid_t) is neither sizeof(int), sizeof(long) or sizeof(long long)" |
Antoine Pitrou | 5e858fe | 2009-05-23 15:37:45 +0000 | [diff] [blame] | 329 | #endif /* SIZEOF_PID_T */ |
| 330 | |
Greg Ward | b48bc17 | 2000-03-01 21:51:56 +0000 | [diff] [blame] | 331 | /* Don't use the "_r" form if we don't need it (also, won't have a |
| 332 | prototype for it, at least on Solaris -- maybe others as well?). */ |
| 333 | #if defined(HAVE_CTERMID_R) && defined(WITH_THREAD) |
| 334 | #define USE_CTERMID_R |
| 335 | #endif |
| 336 | |
| 337 | #if defined(HAVE_TMPNAM_R) && defined(WITH_THREAD) |
| 338 | #define USE_TMPNAM_R |
| 339 | #endif |
| 340 | |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 341 | /* choose the appropriate stat and fstat functions and return structs */ |
Guido van Rossum | 64529cd | 2000-06-30 22:45:12 +0000 | [diff] [blame] | 342 | #undef STAT |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 343 | #if defined(MS_WIN64) || defined(MS_WINDOWS) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 344 | # define STAT win32_stat |
| 345 | # define FSTAT win32_fstat |
| 346 | # define STRUCT_STAT struct win32_stat |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 347 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 348 | # define STAT stat |
| 349 | # define FSTAT fstat |
| 350 | # define STRUCT_STAT struct stat |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 351 | #endif |
| 352 | |
Tim Peters | 11b2306 | 2003-04-23 02:39:17 +0000 | [diff] [blame] | 353 | #if defined(MAJOR_IN_MKDEV) |
Martin v. Löwis | dbe3f76 | 2002-10-10 14:27:30 +0000 | [diff] [blame] | 354 | #include <sys/mkdev.h> |
| 355 | #else |
| 356 | #if defined(MAJOR_IN_SYSMACROS) |
| 357 | #include <sys/sysmacros.h> |
| 358 | #endif |
Neal Norwitz | 3d94942 | 2002-04-20 13:46:43 +0000 | [diff] [blame] | 359 | #if defined(HAVE_MKNOD) && defined(HAVE_SYS_MKDEV_H) |
| 360 | #include <sys/mkdev.h> |
| 361 | #endif |
Martin v. Löwis | dbe3f76 | 2002-10-10 14:27:30 +0000 | [diff] [blame] | 362 | #endif |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 363 | |
Kristján Valur Jónsson | 6a743d3 | 2009-02-10 13:32:24 +0000 | [diff] [blame] | 364 | #if defined _MSC_VER && _MSC_VER >= 1400 |
| 365 | /* Microsoft CRT in VS2005 and higher will verify that a filehandle is |
| 366 | * valid and throw an assertion if it isn't. |
| 367 | * Normally, an invalid fd is likely to be a C program error and therefore |
| 368 | * an assertion can be useful, but it does contradict the POSIX standard |
| 369 | * which for write(2) states: |
| 370 | * "Otherwise, -1 shall be returned and errno set to indicate the error." |
| 371 | * "[EBADF] The fildes argument is not a valid file descriptor open for |
| 372 | * writing." |
| 373 | * Furthermore, python allows the user to enter any old integer |
| 374 | * as a fd and should merely raise a python exception on error. |
| 375 | * The Microsoft CRT doesn't provide an official way to check for the |
| 376 | * validity of a file descriptor, but we can emulate its internal behaviour |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 377 | * by using the exported __pinfo data member and knowledge of the |
Kristján Valur Jónsson | 6a743d3 | 2009-02-10 13:32:24 +0000 | [diff] [blame] | 378 | * internal structures involved. |
| 379 | * The structures below must be updated for each version of visual studio |
| 380 | * according to the file internal.h in the CRT source, until MS comes |
| 381 | * up with a less hacky way to do this. |
| 382 | * (all of this is to avoid globally modifying the CRT behaviour using |
| 383 | * _set_invalid_parameter_handler() and _CrtSetReportMode()) |
| 384 | */ |
Kristján Valur Jónsson | feab334 | 2009-04-01 16:08:34 +0000 | [diff] [blame] | 385 | /* The actual size of the structure is determined at runtime. |
| 386 | * Only the first items must be present. |
| 387 | */ |
Kristján Valur Jónsson | 6a743d3 | 2009-02-10 13:32:24 +0000 | [diff] [blame] | 388 | typedef struct { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 389 | intptr_t osfhnd; |
| 390 | char osfile; |
Kristján Valur Jónsson | feab334 | 2009-04-01 16:08:34 +0000 | [diff] [blame] | 391 | } my_ioinfo; |
Kristján Valur Jónsson | 6a743d3 | 2009-02-10 13:32:24 +0000 | [diff] [blame] | 392 | |
Kristján Valur Jónsson | feab334 | 2009-04-01 16:08:34 +0000 | [diff] [blame] | 393 | extern __declspec(dllimport) char * __pioinfo[]; |
Kristján Valur Jónsson | 6a743d3 | 2009-02-10 13:32:24 +0000 | [diff] [blame] | 394 | #define IOINFO_L2E 5 |
| 395 | #define IOINFO_ARRAY_ELTS (1 << IOINFO_L2E) |
| 396 | #define IOINFO_ARRAYS 64 |
| 397 | #define _NHANDLE_ (IOINFO_ARRAYS * IOINFO_ARRAY_ELTS) |
| 398 | #define FOPEN 0x01 |
| 399 | #define _NO_CONSOLE_FILENO (intptr_t)-2 |
| 400 | |
| 401 | /* This function emulates what the windows CRT does to validate file handles */ |
| 402 | int |
| 403 | _PyVerify_fd(int fd) |
| 404 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 405 | const int i1 = fd >> IOINFO_L2E; |
| 406 | const int i2 = fd & ((1 << IOINFO_L2E) - 1); |
Kristján Valur Jónsson | feab334 | 2009-04-01 16:08:34 +0000 | [diff] [blame] | 407 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 408 | static int sizeof_ioinfo = 0; |
Kristján Valur Jónsson | 6a743d3 | 2009-02-10 13:32:24 +0000 | [diff] [blame] | 409 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 410 | /* Determine the actual size of the ioinfo structure, |
| 411 | * as used by the CRT loaded in memory |
| 412 | */ |
| 413 | if (sizeof_ioinfo == 0 && __pioinfo[0] != NULL) { |
| 414 | sizeof_ioinfo = _msize(__pioinfo[0]) / IOINFO_ARRAY_ELTS; |
| 415 | } |
| 416 | if (sizeof_ioinfo == 0) { |
| 417 | /* This should not happen... */ |
| 418 | goto fail; |
| 419 | } |
| 420 | |
| 421 | /* See that it isn't a special CLEAR fileno */ |
| 422 | if (fd != _NO_CONSOLE_FILENO) { |
| 423 | /* Microsoft CRT would check that 0<=fd<_nhandle but we can't do that. Instead |
| 424 | * we check pointer validity and other info |
| 425 | */ |
| 426 | if (0 <= i1 && i1 < IOINFO_ARRAYS && __pioinfo[i1] != NULL) { |
| 427 | /* finally, check that the file is open */ |
| 428 | my_ioinfo* info = (my_ioinfo*)(__pioinfo[i1] + i2 * sizeof_ioinfo); |
| 429 | if (info->osfile & FOPEN) { |
| 430 | return 1; |
| 431 | } |
| 432 | } |
| 433 | } |
Kristján Valur Jónsson | feab334 | 2009-04-01 16:08:34 +0000 | [diff] [blame] | 434 | fail: |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 435 | errno = EBADF; |
| 436 | return 0; |
Kristján Valur Jónsson | 6a743d3 | 2009-02-10 13:32:24 +0000 | [diff] [blame] | 437 | } |
| 438 | |
| 439 | /* the special case of checking dup2. The target fd must be in a sensible range */ |
| 440 | static int |
| 441 | _PyVerify_fd_dup2(int fd1, int fd2) |
| 442 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 443 | if (!_PyVerify_fd(fd1)) |
| 444 | return 0; |
| 445 | if (fd2 == _NO_CONSOLE_FILENO) |
| 446 | return 0; |
| 447 | if ((unsigned)fd2 < _NHANDLE_) |
| 448 | return 1; |
| 449 | else |
| 450 | return 0; |
Kristján Valur Jónsson | 6a743d3 | 2009-02-10 13:32:24 +0000 | [diff] [blame] | 451 | } |
| 452 | #else |
| 453 | /* dummy version. _PyVerify_fd() is already defined in fileobject.h */ |
| 454 | #define _PyVerify_fd_dup2(A, B) (1) |
| 455 | #endif |
| 456 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 457 | /* Return a dictionary corresponding to the POSIX environment table */ |
Jack Jansen | ea0c382 | 2002-08-01 21:57:49 +0000 | [diff] [blame] | 458 | #ifdef WITH_NEXT_FRAMEWORK |
| 459 | /* On Darwin/MacOSX a shared library or framework has no access to |
| 460 | ** environ directly, we must obtain it with _NSGetEnviron(). |
| 461 | */ |
| 462 | #include <crt_externs.h> |
| 463 | static char **environ; |
| 464 | #elif !defined(_MSC_VER) && ( !defined(__WATCOMC__) || defined(__QNX__) ) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 465 | extern char **environ; |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 466 | #endif /* !_MSC_VER */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 467 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 468 | static PyObject * |
Thomas Wouters | f3f33dc | 2000-07-21 06:00:07 +0000 | [diff] [blame] | 469 | convertenviron(void) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 470 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 471 | PyObject *d; |
| 472 | char **e; |
Martin v. Löwis | c16f3bd | 2003-05-03 09:14:54 +0000 | [diff] [blame] | 473 | #if defined(PYOS_OS2) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 474 | APIRET rc; |
| 475 | char buffer[1024]; /* OS/2 Provides a Documented Max of 1024 Chars */ |
| 476 | #endif |
| 477 | d = PyDict_New(); |
| 478 | if (d == NULL) |
| 479 | return NULL; |
| 480 | #ifdef WITH_NEXT_FRAMEWORK |
| 481 | if (environ == NULL) |
| 482 | environ = *_NSGetEnviron(); |
| 483 | #endif |
| 484 | if (environ == NULL) |
| 485 | return d; |
| 486 | /* This part ignores errors */ |
| 487 | for (e = environ; *e != NULL; e++) { |
| 488 | PyObject *k; |
| 489 | PyObject *v; |
| 490 | char *p = strchr(*e, '='); |
| 491 | if (p == NULL) |
| 492 | continue; |
| 493 | k = PyString_FromStringAndSize(*e, (int)(p-*e)); |
| 494 | if (k == NULL) { |
| 495 | PyErr_Clear(); |
| 496 | continue; |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 497 | } |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 498 | v = PyString_FromString(p+1); |
| 499 | if (v == NULL) { |
| 500 | PyErr_Clear(); |
| 501 | Py_DECREF(k); |
| 502 | continue; |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 503 | } |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 504 | if (PyDict_GetItem(d, k) == NULL) { |
| 505 | if (PyDict_SetItem(d, k, v) != 0) |
| 506 | PyErr_Clear(); |
| 507 | } |
| 508 | Py_DECREF(k); |
| 509 | Py_DECREF(v); |
| 510 | } |
| 511 | #if defined(PYOS_OS2) |
| 512 | rc = DosQueryExtLIBPATH(buffer, BEGIN_LIBPATH); |
| 513 | if (rc == NO_ERROR) { /* (not a type, envname is NOT 'BEGIN_LIBPATH') */ |
| 514 | PyObject *v = PyString_FromString(buffer); |
| 515 | PyDict_SetItemString(d, "BEGINLIBPATH", v); |
| 516 | Py_DECREF(v); |
| 517 | } |
| 518 | rc = DosQueryExtLIBPATH(buffer, END_LIBPATH); |
| 519 | if (rc == NO_ERROR) { /* (not a typo, envname is NOT 'END_LIBPATH') */ |
| 520 | PyObject *v = PyString_FromString(buffer); |
| 521 | PyDict_SetItemString(d, "ENDLIBPATH", v); |
| 522 | Py_DECREF(v); |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 523 | } |
| 524 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 525 | return d; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 526 | } |
| 527 | |
| 528 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 529 | /* Set a POSIX-specific error from errno, and return NULL */ |
| 530 | |
Barry Warsaw | d58d764 | 1998-07-23 16:14:40 +0000 | [diff] [blame] | 531 | static PyObject * |
Thomas Wouters | f3f33dc | 2000-07-21 06:00:07 +0000 | [diff] [blame] | 532 | posix_error(void) |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 533 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 534 | return PyErr_SetFromErrno(PyExc_OSError); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 535 | } |
Barry Warsaw | d58d764 | 1998-07-23 16:14:40 +0000 | [diff] [blame] | 536 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 537 | posix_error_with_filename(char* name) |
Barry Warsaw | d58d764 | 1998-07-23 16:14:40 +0000 | [diff] [blame] | 538 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 539 | return PyErr_SetFromErrnoWithFilename(PyExc_OSError, name); |
Barry Warsaw | d58d764 | 1998-07-23 16:14:40 +0000 | [diff] [blame] | 540 | } |
| 541 | |
Hirokazu Yamamoto | b24bb27 | 2009-05-17 02:52:09 +0000 | [diff] [blame] | 542 | #ifdef MS_WINDOWS |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 543 | static PyObject * |
| 544 | posix_error_with_unicode_filename(Py_UNICODE* name) |
| 545 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 546 | return PyErr_SetFromErrnoWithUnicodeFilename(PyExc_OSError, name); |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 547 | } |
Hirokazu Yamamoto | b24bb27 | 2009-05-17 02:52:09 +0000 | [diff] [blame] | 548 | #endif /* MS_WINDOWS */ |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 549 | |
| 550 | |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 551 | static PyObject * |
| 552 | posix_error_with_allocated_filename(char* name) |
| 553 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 554 | PyObject *rc = PyErr_SetFromErrnoWithFilename(PyExc_OSError, name); |
| 555 | PyMem_Free(name); |
| 556 | return rc; |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 557 | } |
| 558 | |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 559 | #ifdef MS_WINDOWS |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 560 | static PyObject * |
| 561 | win32_error(char* function, char* filename) |
| 562 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 563 | /* XXX We should pass the function name along in the future. |
| 564 | (_winreg.c also wants to pass the function name.) |
| 565 | This would however require an additional param to the |
| 566 | Windows error object, which is non-trivial. |
| 567 | */ |
| 568 | errno = GetLastError(); |
| 569 | if (filename) |
| 570 | return PyErr_SetFromWindowsErrWithFilename(errno, filename); |
| 571 | else |
| 572 | return PyErr_SetFromWindowsErr(errno); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 573 | } |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 574 | |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 575 | static PyObject * |
| 576 | win32_error_unicode(char* function, Py_UNICODE* filename) |
| 577 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 578 | /* XXX - see win32_error for comments on 'function' */ |
| 579 | errno = GetLastError(); |
| 580 | if (filename) |
| 581 | return PyErr_SetFromWindowsErrWithUnicodeFilename(errno, filename); |
| 582 | else |
| 583 | return PyErr_SetFromWindowsErr(errno); |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 584 | } |
| 585 | |
Martin v. Löwis | 8e0d494 | 2006-05-04 10:08:42 +0000 | [diff] [blame] | 586 | static int |
Hirokazu Yamamoto | a0fdd72 | 2008-08-17 09:19:52 +0000 | [diff] [blame] | 587 | convert_to_unicode(PyObject **param) |
Martin v. Löwis | 8e0d494 | 2006-05-04 10:08:42 +0000 | [diff] [blame] | 588 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 589 | if (PyUnicode_CheckExact(*param)) |
| 590 | Py_INCREF(*param); |
| 591 | else if (PyUnicode_Check(*param)) |
| 592 | /* For a Unicode subtype that's not a Unicode object, |
| 593 | return a true Unicode object with the same data. */ |
| 594 | *param = PyUnicode_FromUnicode(PyUnicode_AS_UNICODE(*param), |
| 595 | PyUnicode_GET_SIZE(*param)); |
| 596 | else |
| 597 | *param = PyUnicode_FromEncodedObject(*param, |
| 598 | Py_FileSystemDefaultEncoding, |
| 599 | "strict"); |
| 600 | return (*param) != NULL; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 601 | } |
| 602 | |
Hirokazu Yamamoto | b24bb27 | 2009-05-17 02:52:09 +0000 | [diff] [blame] | 603 | #endif /* MS_WINDOWS */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 604 | |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 605 | #if defined(PYOS_OS2) |
| 606 | /********************************************************************** |
| 607 | * Helper Function to Trim and Format OS/2 Messages |
| 608 | **********************************************************************/ |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 609 | static void |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 610 | os2_formatmsg(char *msgbuf, int msglen, char *reason) |
| 611 | { |
| 612 | msgbuf[msglen] = '\0'; /* OS/2 Doesn't Guarantee a Terminator */ |
| 613 | |
| 614 | if (strlen(msgbuf) > 0) { /* If Non-Empty Msg, Trim CRLF */ |
Victor Stinner | 862490a | 2010-05-06 00:03:44 +0000 | [diff] [blame] | 615 | char *lastc = &msgbuf[ strlen(msgbuf)-1 ]; |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 616 | |
Victor Stinner | 862490a | 2010-05-06 00:03:44 +0000 | [diff] [blame] | 617 | while (lastc > msgbuf && isspace(Py_CHARMASK(*lastc))) |
| 618 | *lastc-- = '\0'; /* Trim Trailing Whitespace (CRLF) */ |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 619 | } |
| 620 | |
| 621 | /* Add Optional Reason Text */ |
| 622 | if (reason) { |
| 623 | strcat(msgbuf, " : "); |
| 624 | strcat(msgbuf, reason); |
| 625 | } |
| 626 | } |
| 627 | |
| 628 | /********************************************************************** |
| 629 | * Decode an OS/2 Operating System Error Code |
| 630 | * |
| 631 | * A convenience function to lookup an OS/2 error code and return a |
| 632 | * text message we can use to raise a Python exception. |
| 633 | * |
| 634 | * Notes: |
| 635 | * The messages for errors returned from the OS/2 kernel reside in |
| 636 | * the file OSO001.MSG in the \OS2 directory hierarchy. |
| 637 | * |
| 638 | **********************************************************************/ |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 639 | static char * |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 640 | os2_strerror(char *msgbuf, int msgbuflen, int errorcode, char *reason) |
| 641 | { |
| 642 | APIRET rc; |
| 643 | ULONG msglen; |
| 644 | |
| 645 | /* Retrieve Kernel-Related Error Message from OSO001.MSG File */ |
| 646 | Py_BEGIN_ALLOW_THREADS |
| 647 | rc = DosGetMessage(NULL, 0, msgbuf, msgbuflen, |
| 648 | errorcode, "oso001.msg", &msglen); |
| 649 | Py_END_ALLOW_THREADS |
| 650 | |
| 651 | if (rc == NO_ERROR) |
| 652 | os2_formatmsg(msgbuf, msglen, reason); |
| 653 | else |
Tim Peters | 1ceb5fb | 2001-11-28 20:32:57 +0000 | [diff] [blame] | 654 | PyOS_snprintf(msgbuf, msgbuflen, |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 655 | "unknown OS error #%d", errorcode); |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 656 | |
| 657 | return msgbuf; |
| 658 | } |
| 659 | |
| 660 | /* Set an OS/2-specific error and return NULL. OS/2 kernel |
| 661 | errors are not in a global variable e.g. 'errno' nor are |
| 662 | they congruent with posix error numbers. */ |
| 663 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 664 | static PyObject * |
| 665 | os2_error(int code) |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 666 | { |
| 667 | char text[1024]; |
| 668 | PyObject *v; |
| 669 | |
| 670 | os2_strerror(text, sizeof(text), code, ""); |
| 671 | |
| 672 | v = Py_BuildValue("(is)", code, text); |
| 673 | if (v != NULL) { |
Barry Warsaw | ca74da4 | 1999-02-09 19:31:45 +0000 | [diff] [blame] | 674 | PyErr_SetObject(PyExc_OSError, v); |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 675 | Py_DECREF(v); |
| 676 | } |
| 677 | return NULL; /* Signal to Python that an Exception is Pending */ |
| 678 | } |
| 679 | |
| 680 | #endif /* OS2 */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 681 | |
| 682 | /* POSIX generic methods */ |
| 683 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 684 | static PyObject * |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 685 | posix_fildes(PyObject *fdobj, int (*func)(int)) |
| 686 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 687 | int fd; |
| 688 | int res; |
| 689 | fd = PyObject_AsFileDescriptor(fdobj); |
| 690 | if (fd < 0) |
| 691 | return NULL; |
| 692 | if (!_PyVerify_fd(fd)) |
| 693 | return posix_error(); |
| 694 | Py_BEGIN_ALLOW_THREADS |
| 695 | res = (*func)(fd); |
| 696 | Py_END_ALLOW_THREADS |
| 697 | if (res < 0) |
| 698 | return posix_error(); |
| 699 | Py_INCREF(Py_None); |
| 700 | return Py_None; |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 701 | } |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 702 | |
| 703 | static PyObject * |
Martin v. Löwis | 8e0d494 | 2006-05-04 10:08:42 +0000 | [diff] [blame] | 704 | posix_1str(PyObject *args, char *format, int (*func)(const char*)) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 705 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 706 | char *path1 = NULL; |
| 707 | int res; |
| 708 | if (!PyArg_ParseTuple(args, format, |
| 709 | Py_FileSystemDefaultEncoding, &path1)) |
| 710 | return NULL; |
| 711 | Py_BEGIN_ALLOW_THREADS |
| 712 | res = (*func)(path1); |
| 713 | Py_END_ALLOW_THREADS |
| 714 | if (res < 0) |
| 715 | return posix_error_with_allocated_filename(path1); |
| 716 | PyMem_Free(path1); |
| 717 | Py_INCREF(Py_None); |
| 718 | return Py_None; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 719 | } |
| 720 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 721 | static PyObject * |
Tim Peters | 11b2306 | 2003-04-23 02:39:17 +0000 | [diff] [blame] | 722 | posix_2str(PyObject *args, |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 723 | char *format, |
| 724 | int (*func)(const char *, const char *)) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 725 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 726 | char *path1 = NULL, *path2 = NULL; |
| 727 | int res; |
| 728 | if (!PyArg_ParseTuple(args, format, |
| 729 | Py_FileSystemDefaultEncoding, &path1, |
| 730 | Py_FileSystemDefaultEncoding, &path2)) |
| 731 | return NULL; |
| 732 | Py_BEGIN_ALLOW_THREADS |
| 733 | res = (*func)(path1, path2); |
| 734 | Py_END_ALLOW_THREADS |
| 735 | PyMem_Free(path1); |
| 736 | PyMem_Free(path2); |
| 737 | if (res != 0) |
| 738 | /* XXX how to report both path1 and path2??? */ |
| 739 | return posix_error(); |
| 740 | Py_INCREF(Py_None); |
| 741 | return Py_None; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 742 | } |
| 743 | |
Hirokazu Yamamoto | b24bb27 | 2009-05-17 02:52:09 +0000 | [diff] [blame] | 744 | #ifdef MS_WINDOWS |
Martin v. Löwis | 8e0d494 | 2006-05-04 10:08:42 +0000 | [diff] [blame] | 745 | static PyObject* |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 746 | win32_1str(PyObject* args, char* func, |
| 747 | char* format, BOOL (__stdcall *funcA)(LPCSTR), |
| 748 | char* wformat, BOOL (__stdcall *funcW)(LPWSTR)) |
Martin v. Löwis | 8e0d494 | 2006-05-04 10:08:42 +0000 | [diff] [blame] | 749 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 750 | PyObject *uni; |
| 751 | char *ansi; |
| 752 | BOOL result; |
Hirokazu Yamamoto | a3c5609 | 2009-06-28 10:23:00 +0000 | [diff] [blame] | 753 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 754 | if (!PyArg_ParseTuple(args, wformat, &uni)) |
| 755 | PyErr_Clear(); |
| 756 | else { |
| 757 | Py_BEGIN_ALLOW_THREADS |
| 758 | result = funcW(PyUnicode_AsUnicode(uni)); |
| 759 | Py_END_ALLOW_THREADS |
| 760 | if (!result) |
| 761 | return win32_error_unicode(func, PyUnicode_AsUnicode(uni)); |
| 762 | Py_INCREF(Py_None); |
| 763 | return Py_None; |
| 764 | } |
| 765 | if (!PyArg_ParseTuple(args, format, &ansi)) |
| 766 | return NULL; |
| 767 | Py_BEGIN_ALLOW_THREADS |
| 768 | result = funcA(ansi); |
| 769 | Py_END_ALLOW_THREADS |
| 770 | if (!result) |
| 771 | return win32_error(func, ansi); |
| 772 | Py_INCREF(Py_None); |
| 773 | return Py_None; |
Martin v. Löwis | 8e0d494 | 2006-05-04 10:08:42 +0000 | [diff] [blame] | 774 | |
| 775 | } |
| 776 | |
| 777 | /* This is a reimplementation of the C library's chdir function, |
| 778 | but one that produces Win32 errors instead of DOS error codes. |
| 779 | chdir is essentially a wrapper around SetCurrentDirectory; however, |
| 780 | it also needs to set "magic" environment variables indicating |
| 781 | the per-drive current directory, which are of the form =<drive>: */ |
Hirokazu Yamamoto | 6137640 | 2008-10-16 06:25:25 +0000 | [diff] [blame] | 782 | static BOOL __stdcall |
Martin v. Löwis | 8e0d494 | 2006-05-04 10:08:42 +0000 | [diff] [blame] | 783 | win32_chdir(LPCSTR path) |
| 784 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 785 | char new_path[MAX_PATH+1]; |
| 786 | int result; |
| 787 | char env[4] = "=x:"; |
Martin v. Löwis | 8e0d494 | 2006-05-04 10:08:42 +0000 | [diff] [blame] | 788 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 789 | if(!SetCurrentDirectoryA(path)) |
| 790 | return FALSE; |
| 791 | result = GetCurrentDirectoryA(MAX_PATH+1, new_path); |
| 792 | if (!result) |
| 793 | return FALSE; |
| 794 | /* In the ANSI API, there should not be any paths longer |
| 795 | than MAX_PATH. */ |
| 796 | assert(result <= MAX_PATH+1); |
| 797 | if (strncmp(new_path, "\\\\", 2) == 0 || |
| 798 | strncmp(new_path, "//", 2) == 0) |
| 799 | /* UNC path, nothing to do. */ |
| 800 | return TRUE; |
| 801 | env[1] = new_path[0]; |
| 802 | return SetEnvironmentVariableA(env, new_path); |
Martin v. Löwis | 8e0d494 | 2006-05-04 10:08:42 +0000 | [diff] [blame] | 803 | } |
| 804 | |
| 805 | /* The Unicode version differs from the ANSI version |
| 806 | since the current directory might exceed MAX_PATH characters */ |
Hirokazu Yamamoto | 6137640 | 2008-10-16 06:25:25 +0000 | [diff] [blame] | 807 | static BOOL __stdcall |
Martin v. Löwis | 8e0d494 | 2006-05-04 10:08:42 +0000 | [diff] [blame] | 808 | win32_wchdir(LPCWSTR path) |
| 809 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 810 | wchar_t _new_path[MAX_PATH+1], *new_path = _new_path; |
| 811 | int result; |
| 812 | wchar_t env[4] = L"=x:"; |
Martin v. Löwis | 8e0d494 | 2006-05-04 10:08:42 +0000 | [diff] [blame] | 813 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 814 | if(!SetCurrentDirectoryW(path)) |
| 815 | return FALSE; |
| 816 | result = GetCurrentDirectoryW(MAX_PATH+1, new_path); |
| 817 | if (!result) |
| 818 | return FALSE; |
| 819 | if (result > MAX_PATH+1) { |
| 820 | new_path = malloc(result * sizeof(wchar_t)); |
| 821 | if (!new_path) { |
| 822 | SetLastError(ERROR_OUTOFMEMORY); |
| 823 | return FALSE; |
| 824 | } |
| 825 | result = GetCurrentDirectoryW(result, new_path); |
| 826 | if (!result) { |
| 827 | free(new_path); |
| 828 | return FALSE; |
| 829 | } |
| 830 | } |
| 831 | if (wcsncmp(new_path, L"\\\\", 2) == 0 || |
| 832 | wcsncmp(new_path, L"//", 2) == 0) |
| 833 | /* UNC path, nothing to do. */ |
| 834 | return TRUE; |
| 835 | env[1] = new_path[0]; |
| 836 | result = SetEnvironmentVariableW(env, new_path); |
| 837 | if (new_path != _new_path) |
| 838 | free(new_path); |
| 839 | return result; |
Martin v. Löwis | 8e0d494 | 2006-05-04 10:08:42 +0000 | [diff] [blame] | 840 | } |
| 841 | #endif |
| 842 | |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 843 | #ifdef MS_WINDOWS |
| 844 | /* The CRT of Windows has a number of flaws wrt. its stat() implementation: |
| 845 | - time stamps are restricted to second resolution |
| 846 | - file modification times suffer from forth-and-back conversions between |
| 847 | UTC and local time |
| 848 | Therefore, we implement our own stat, based on the Win32 API directly. |
| 849 | */ |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 850 | #define HAVE_STAT_NSEC 1 |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 851 | |
| 852 | struct win32_stat{ |
| 853 | int st_dev; |
| 854 | __int64 st_ino; |
| 855 | unsigned short st_mode; |
| 856 | int st_nlink; |
| 857 | int st_uid; |
| 858 | int st_gid; |
| 859 | int st_rdev; |
| 860 | __int64 st_size; |
| 861 | int st_atime; |
| 862 | int st_atime_nsec; |
| 863 | int st_mtime; |
| 864 | int st_mtime_nsec; |
| 865 | int st_ctime; |
| 866 | int st_ctime_nsec; |
| 867 | }; |
| 868 | |
| 869 | static __int64 secs_between_epochs = 11644473600; /* Seconds between 1.1.1601 and 1.1.1970 */ |
| 870 | |
| 871 | static void |
| 872 | FILE_TIME_to_time_t_nsec(FILETIME *in_ptr, int *time_out, int* nsec_out) |
| 873 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 874 | /* XXX endianness. Shouldn't matter, as all Windows implementations are little-endian */ |
| 875 | /* Cannot simply cast and dereference in_ptr, |
| 876 | since it might not be aligned properly */ |
| 877 | __int64 in; |
| 878 | memcpy(&in, in_ptr, sizeof(in)); |
| 879 | *nsec_out = (int)(in % 10000000) * 100; /* FILETIME is in units of 100 nsec. */ |
| 880 | /* XXX Win32 supports time stamps past 2038; we currently don't */ |
| 881 | *time_out = Py_SAFE_DOWNCAST((in / 10000000) - secs_between_epochs, __int64, int); |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 882 | } |
| 883 | |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 884 | static void |
| 885 | time_t_to_FILE_TIME(int time_in, int nsec_in, FILETIME *out_ptr) |
| 886 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 887 | /* XXX endianness */ |
| 888 | __int64 out; |
| 889 | out = time_in + secs_between_epochs; |
| 890 | out = out * 10000000 + nsec_in / 100; |
| 891 | memcpy(out_ptr, &out, sizeof(out)); |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 892 | } |
| 893 | |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 894 | /* Below, we *know* that ugo+r is 0444 */ |
| 895 | #if _S_IREAD != 0400 |
| 896 | #error Unsupported C library |
| 897 | #endif |
| 898 | static int |
| 899 | attributes_to_mode(DWORD attr) |
| 900 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 901 | int m = 0; |
| 902 | if (attr & FILE_ATTRIBUTE_DIRECTORY) |
| 903 | m |= _S_IFDIR | 0111; /* IFEXEC for user,group,other */ |
| 904 | else |
| 905 | m |= _S_IFREG; |
| 906 | if (attr & FILE_ATTRIBUTE_READONLY) |
| 907 | m |= 0444; |
| 908 | else |
| 909 | m |= 0666; |
| 910 | return m; |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 911 | } |
| 912 | |
| 913 | static int |
| 914 | attribute_data_to_stat(WIN32_FILE_ATTRIBUTE_DATA *info, struct win32_stat *result) |
| 915 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 916 | memset(result, 0, sizeof(*result)); |
| 917 | result->st_mode = attributes_to_mode(info->dwFileAttributes); |
| 918 | result->st_size = (((__int64)info->nFileSizeHigh)<<32) + info->nFileSizeLow; |
| 919 | FILE_TIME_to_time_t_nsec(&info->ftCreationTime, &result->st_ctime, &result->st_ctime_nsec); |
| 920 | FILE_TIME_to_time_t_nsec(&info->ftLastWriteTime, &result->st_mtime, &result->st_mtime_nsec); |
| 921 | FILE_TIME_to_time_t_nsec(&info->ftLastAccessTime, &result->st_atime, &result->st_atime_nsec); |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 922 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 923 | return 0; |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 924 | } |
| 925 | |
Martin v. Löwis | 3bf573f | 2007-04-04 18:30:36 +0000 | [diff] [blame] | 926 | static BOOL |
| 927 | attributes_from_dir(LPCSTR pszFile, LPWIN32_FILE_ATTRIBUTE_DATA pfad) |
| 928 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 929 | HANDLE hFindFile; |
| 930 | WIN32_FIND_DATAA FileData; |
| 931 | hFindFile = FindFirstFileA(pszFile, &FileData); |
| 932 | if (hFindFile == INVALID_HANDLE_VALUE) |
| 933 | return FALSE; |
| 934 | FindClose(hFindFile); |
| 935 | pfad->dwFileAttributes = FileData.dwFileAttributes; |
| 936 | pfad->ftCreationTime = FileData.ftCreationTime; |
| 937 | pfad->ftLastAccessTime = FileData.ftLastAccessTime; |
| 938 | pfad->ftLastWriteTime = FileData.ftLastWriteTime; |
| 939 | pfad->nFileSizeHigh = FileData.nFileSizeHigh; |
| 940 | pfad->nFileSizeLow = FileData.nFileSizeLow; |
| 941 | return TRUE; |
Martin v. Löwis | 3bf573f | 2007-04-04 18:30:36 +0000 | [diff] [blame] | 942 | } |
| 943 | |
| 944 | static BOOL |
| 945 | attributes_from_dir_w(LPCWSTR pszFile, LPWIN32_FILE_ATTRIBUTE_DATA pfad) |
| 946 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 947 | HANDLE hFindFile; |
| 948 | WIN32_FIND_DATAW FileData; |
| 949 | hFindFile = FindFirstFileW(pszFile, &FileData); |
| 950 | if (hFindFile == INVALID_HANDLE_VALUE) |
| 951 | return FALSE; |
| 952 | FindClose(hFindFile); |
| 953 | pfad->dwFileAttributes = FileData.dwFileAttributes; |
| 954 | pfad->ftCreationTime = FileData.ftCreationTime; |
| 955 | pfad->ftLastAccessTime = FileData.ftLastAccessTime; |
| 956 | pfad->ftLastWriteTime = FileData.ftLastWriteTime; |
| 957 | pfad->nFileSizeHigh = FileData.nFileSizeHigh; |
| 958 | pfad->nFileSizeLow = FileData.nFileSizeLow; |
| 959 | return TRUE; |
Martin v. Löwis | 3bf573f | 2007-04-04 18:30:36 +0000 | [diff] [blame] | 960 | } |
| 961 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 962 | static int |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 963 | win32_stat(const char* path, struct win32_stat *result) |
| 964 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 965 | WIN32_FILE_ATTRIBUTE_DATA info; |
| 966 | int code; |
| 967 | char *dot; |
| 968 | if (!GetFileAttributesExA(path, GetFileExInfoStandard, &info)) { |
| 969 | if (GetLastError() != ERROR_SHARING_VIOLATION) { |
| 970 | /* Protocol violation: we explicitly clear errno, instead of |
| 971 | setting it to a POSIX error. Callers should use GetLastError. */ |
| 972 | errno = 0; |
| 973 | return -1; |
| 974 | } else { |
| 975 | /* Could not get attributes on open file. Fall back to |
| 976 | reading the directory. */ |
| 977 | if (!attributes_from_dir(path, &info)) { |
| 978 | /* Very strange. This should not fail now */ |
| 979 | errno = 0; |
| 980 | return -1; |
| 981 | } |
| 982 | } |
| 983 | } |
| 984 | code = attribute_data_to_stat(&info, result); |
| 985 | if (code != 0) |
| 986 | return code; |
| 987 | /* Set S_IFEXEC if it is an .exe, .bat, ... */ |
| 988 | dot = strrchr(path, '.'); |
| 989 | if (dot) { |
| 990 | if (stricmp(dot, ".bat") == 0 || |
| 991 | stricmp(dot, ".cmd") == 0 || |
| 992 | stricmp(dot, ".exe") == 0 || |
| 993 | stricmp(dot, ".com") == 0) |
| 994 | result->st_mode |= 0111; |
| 995 | } |
| 996 | return code; |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 997 | } |
| 998 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 999 | static int |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1000 | win32_wstat(const wchar_t* path, struct win32_stat *result) |
| 1001 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1002 | int code; |
| 1003 | const wchar_t *dot; |
| 1004 | WIN32_FILE_ATTRIBUTE_DATA info; |
| 1005 | if (!GetFileAttributesExW(path, GetFileExInfoStandard, &info)) { |
| 1006 | if (GetLastError() != ERROR_SHARING_VIOLATION) { |
| 1007 | /* Protocol violation: we explicitly clear errno, instead of |
| 1008 | setting it to a POSIX error. Callers should use GetLastError. */ |
| 1009 | errno = 0; |
| 1010 | return -1; |
| 1011 | } else { |
| 1012 | /* Could not get attributes on open file. Fall back to |
| 1013 | reading the directory. */ |
| 1014 | if (!attributes_from_dir_w(path, &info)) { |
| 1015 | /* Very strange. This should not fail now */ |
| 1016 | errno = 0; |
| 1017 | return -1; |
| 1018 | } |
| 1019 | } |
| 1020 | } |
| 1021 | code = attribute_data_to_stat(&info, result); |
| 1022 | if (code < 0) |
| 1023 | return code; |
| 1024 | /* Set IFEXEC if it is an .exe, .bat, ... */ |
| 1025 | dot = wcsrchr(path, '.'); |
| 1026 | if (dot) { |
| 1027 | if (_wcsicmp(dot, L".bat") == 0 || |
| 1028 | _wcsicmp(dot, L".cmd") == 0 || |
| 1029 | _wcsicmp(dot, L".exe") == 0 || |
| 1030 | _wcsicmp(dot, L".com") == 0) |
| 1031 | result->st_mode |= 0111; |
| 1032 | } |
| 1033 | return code; |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1034 | } |
| 1035 | |
| 1036 | static int |
| 1037 | win32_fstat(int file_number, struct win32_stat *result) |
| 1038 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1039 | BY_HANDLE_FILE_INFORMATION info; |
| 1040 | HANDLE h; |
| 1041 | int type; |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1042 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1043 | h = (HANDLE)_get_osfhandle(file_number); |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1044 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1045 | /* Protocol violation: we explicitly clear errno, instead of |
| 1046 | setting it to a POSIX error. Callers should use GetLastError. */ |
| 1047 | errno = 0; |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1048 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1049 | if (h == INVALID_HANDLE_VALUE) { |
| 1050 | /* This is really a C library error (invalid file handle). |
| 1051 | We set the Win32 error to the closes one matching. */ |
| 1052 | SetLastError(ERROR_INVALID_HANDLE); |
| 1053 | return -1; |
| 1054 | } |
| 1055 | memset(result, 0, sizeof(*result)); |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1056 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1057 | type = GetFileType(h); |
| 1058 | if (type == FILE_TYPE_UNKNOWN) { |
| 1059 | DWORD error = GetLastError(); |
| 1060 | if (error != 0) { |
| 1061 | return -1; |
| 1062 | } |
| 1063 | /* else: valid but unknown file */ |
| 1064 | } |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1065 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1066 | if (type != FILE_TYPE_DISK) { |
| 1067 | if (type == FILE_TYPE_CHAR) |
| 1068 | result->st_mode = _S_IFCHR; |
| 1069 | else if (type == FILE_TYPE_PIPE) |
| 1070 | result->st_mode = _S_IFIFO; |
| 1071 | return 0; |
| 1072 | } |
| 1073 | |
| 1074 | if (!GetFileInformationByHandle(h, &info)) { |
| 1075 | return -1; |
| 1076 | } |
| 1077 | |
| 1078 | /* similar to stat() */ |
| 1079 | result->st_mode = attributes_to_mode(info.dwFileAttributes); |
| 1080 | result->st_size = (((__int64)info.nFileSizeHigh)<<32) + info.nFileSizeLow; |
| 1081 | FILE_TIME_to_time_t_nsec(&info.ftCreationTime, &result->st_ctime, &result->st_ctime_nsec); |
| 1082 | FILE_TIME_to_time_t_nsec(&info.ftLastWriteTime, &result->st_mtime, &result->st_mtime_nsec); |
| 1083 | FILE_TIME_to_time_t_nsec(&info.ftLastAccessTime, &result->st_atime, &result->st_atime_nsec); |
| 1084 | /* specific to fstat() */ |
| 1085 | result->st_nlink = info.nNumberOfLinks; |
| 1086 | result->st_ino = (((__int64)info.nFileIndexHigh)<<32) + info.nFileIndexLow; |
| 1087 | return 0; |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1088 | } |
| 1089 | |
| 1090 | #endif /* MS_WINDOWS */ |
| 1091 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1092 | PyDoc_STRVAR(stat_result__doc__, |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1093 | "stat_result: Result from stat or lstat.\n\n\ |
| 1094 | This object may be accessed either as a tuple of\n\ |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 1095 | (mode, ino, dev, nlink, uid, gid, size, atime, mtime, ctime)\n\ |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1096 | or via the attributes st_mode, st_ino, st_dev, st_nlink, st_uid, and so on.\n\ |
| 1097 | \n\ |
Hye-Shik Chang | 5f937a7 | 2005-06-02 13:09:30 +0000 | [diff] [blame] | 1098 | Posix/windows: If your platform supports st_blksize, st_blocks, st_rdev,\n\ |
| 1099 | or st_flags, they are available as attributes only.\n\ |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1100 | \n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1101 | See os.stat for more information."); |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1102 | |
| 1103 | static PyStructSequence_Field stat_result_fields[] = { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1104 | {"st_mode", "protection bits"}, |
| 1105 | {"st_ino", "inode"}, |
| 1106 | {"st_dev", "device"}, |
| 1107 | {"st_nlink", "number of hard links"}, |
| 1108 | {"st_uid", "user ID of owner"}, |
| 1109 | {"st_gid", "group ID of owner"}, |
| 1110 | {"st_size", "total size, in bytes"}, |
| 1111 | /* The NULL is replaced with PyStructSequence_UnnamedField later. */ |
| 1112 | {NULL, "integer time of last access"}, |
| 1113 | {NULL, "integer time of last modification"}, |
| 1114 | {NULL, "integer time of last change"}, |
| 1115 | {"st_atime", "time of last access"}, |
| 1116 | {"st_mtime", "time of last modification"}, |
| 1117 | {"st_ctime", "time of last change"}, |
Martin v. Löwis | 60a5d72 | 2002-10-16 20:28:25 +0000 | [diff] [blame] | 1118 | #ifdef HAVE_STRUCT_STAT_ST_BLKSIZE |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1119 | {"st_blksize", "blocksize for filesystem I/O"}, |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1120 | #endif |
Martin v. Löwis | 60a5d72 | 2002-10-16 20:28:25 +0000 | [diff] [blame] | 1121 | #ifdef HAVE_STRUCT_STAT_ST_BLOCKS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1122 | {"st_blocks", "number of blocks allocated"}, |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1123 | #endif |
Martin v. Löwis | 60a5d72 | 2002-10-16 20:28:25 +0000 | [diff] [blame] | 1124 | #ifdef HAVE_STRUCT_STAT_ST_RDEV |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1125 | {"st_rdev", "device type (if inode device)"}, |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1126 | #endif |
Hye-Shik Chang | 5f937a7 | 2005-06-02 13:09:30 +0000 | [diff] [blame] | 1127 | #ifdef HAVE_STRUCT_STAT_ST_FLAGS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1128 | {"st_flags", "user defined flags for file"}, |
Hye-Shik Chang | 5f937a7 | 2005-06-02 13:09:30 +0000 | [diff] [blame] | 1129 | #endif |
Martin v. Löwis | ebd9d5b | 2005-08-09 15:00:59 +0000 | [diff] [blame] | 1130 | #ifdef HAVE_STRUCT_STAT_ST_GEN |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1131 | {"st_gen", "generation number"}, |
Martin v. Löwis | ebd9d5b | 2005-08-09 15:00:59 +0000 | [diff] [blame] | 1132 | #endif |
| 1133 | #ifdef HAVE_STRUCT_STAT_ST_BIRTHTIME |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1134 | {"st_birthtime", "time of creation"}, |
Martin v. Löwis | ebd9d5b | 2005-08-09 15:00:59 +0000 | [diff] [blame] | 1135 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1136 | {0} |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1137 | }; |
| 1138 | |
Martin v. Löwis | 60a5d72 | 2002-10-16 20:28:25 +0000 | [diff] [blame] | 1139 | #ifdef HAVE_STRUCT_STAT_ST_BLKSIZE |
Martin v. Löwis | f607bda | 2002-10-16 18:27:39 +0000 | [diff] [blame] | 1140 | #define ST_BLKSIZE_IDX 13 |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1141 | #else |
Martin v. Löwis | f607bda | 2002-10-16 18:27:39 +0000 | [diff] [blame] | 1142 | #define ST_BLKSIZE_IDX 12 |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1143 | #endif |
| 1144 | |
Martin v. Löwis | 60a5d72 | 2002-10-16 20:28:25 +0000 | [diff] [blame] | 1145 | #ifdef HAVE_STRUCT_STAT_ST_BLOCKS |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1146 | #define ST_BLOCKS_IDX (ST_BLKSIZE_IDX+1) |
| 1147 | #else |
| 1148 | #define ST_BLOCKS_IDX ST_BLKSIZE_IDX |
| 1149 | #endif |
| 1150 | |
Martin v. Löwis | 60a5d72 | 2002-10-16 20:28:25 +0000 | [diff] [blame] | 1151 | #ifdef HAVE_STRUCT_STAT_ST_RDEV |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1152 | #define ST_RDEV_IDX (ST_BLOCKS_IDX+1) |
| 1153 | #else |
| 1154 | #define ST_RDEV_IDX ST_BLOCKS_IDX |
| 1155 | #endif |
| 1156 | |
Hye-Shik Chang | 5f937a7 | 2005-06-02 13:09:30 +0000 | [diff] [blame] | 1157 | #ifdef HAVE_STRUCT_STAT_ST_FLAGS |
| 1158 | #define ST_FLAGS_IDX (ST_RDEV_IDX+1) |
| 1159 | #else |
| 1160 | #define ST_FLAGS_IDX ST_RDEV_IDX |
| 1161 | #endif |
| 1162 | |
Martin v. Löwis | ebd9d5b | 2005-08-09 15:00:59 +0000 | [diff] [blame] | 1163 | #ifdef HAVE_STRUCT_STAT_ST_GEN |
Martin v. Löwis | f09582e | 2005-08-14 21:42:34 +0000 | [diff] [blame] | 1164 | #define ST_GEN_IDX (ST_FLAGS_IDX+1) |
Martin v. Löwis | ebd9d5b | 2005-08-09 15:00:59 +0000 | [diff] [blame] | 1165 | #else |
Martin v. Löwis | f09582e | 2005-08-14 21:42:34 +0000 | [diff] [blame] | 1166 | #define ST_GEN_IDX ST_FLAGS_IDX |
Martin v. Löwis | ebd9d5b | 2005-08-09 15:00:59 +0000 | [diff] [blame] | 1167 | #endif |
| 1168 | |
| 1169 | #ifdef HAVE_STRUCT_STAT_ST_BIRTHTIME |
| 1170 | #define ST_BIRTHTIME_IDX (ST_GEN_IDX+1) |
| 1171 | #else |
| 1172 | #define ST_BIRTHTIME_IDX ST_GEN_IDX |
| 1173 | #endif |
| 1174 | |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1175 | static PyStructSequence_Desc stat_result_desc = { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1176 | "stat_result", /* name */ |
| 1177 | stat_result__doc__, /* doc */ |
| 1178 | stat_result_fields, |
| 1179 | 10 |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1180 | }; |
| 1181 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1182 | PyDoc_STRVAR(statvfs_result__doc__, |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1183 | "statvfs_result: Result from statvfs or fstatvfs.\n\n\ |
| 1184 | This object may be accessed either as a tuple of\n\ |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 1185 | (bsize, frsize, blocks, bfree, bavail, files, ffree, favail, flag, namemax),\n\ |
Guido van Rossum | a4dc73e | 2001-10-18 20:53:15 +0000 | [diff] [blame] | 1186 | or via the attributes f_bsize, f_frsize, f_blocks, f_bfree, and so on.\n\ |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1187 | \n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1188 | See os.statvfs for more information."); |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1189 | |
| 1190 | static PyStructSequence_Field statvfs_result_fields[] = { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1191 | {"f_bsize", }, |
| 1192 | {"f_frsize", }, |
| 1193 | {"f_blocks", }, |
| 1194 | {"f_bfree", }, |
| 1195 | {"f_bavail", }, |
| 1196 | {"f_files", }, |
| 1197 | {"f_ffree", }, |
| 1198 | {"f_favail", }, |
| 1199 | {"f_flag", }, |
| 1200 | {"f_namemax",}, |
| 1201 | {0} |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1202 | }; |
| 1203 | |
| 1204 | static PyStructSequence_Desc statvfs_result_desc = { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1205 | "statvfs_result", /* name */ |
| 1206 | statvfs_result__doc__, /* doc */ |
| 1207 | statvfs_result_fields, |
| 1208 | 10 |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1209 | }; |
| 1210 | |
Martin v. Löwis | 19ab6c9 | 2006-04-16 18:55:50 +0000 | [diff] [blame] | 1211 | static int initialized; |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1212 | static PyTypeObject StatResultType; |
| 1213 | static PyTypeObject StatVFSResultType; |
Martin v. Löwis | f607bda | 2002-10-16 18:27:39 +0000 | [diff] [blame] | 1214 | static newfunc structseq_new; |
| 1215 | |
| 1216 | static PyObject * |
| 1217 | statresult_new(PyTypeObject *type, PyObject *args, PyObject *kwds) |
| 1218 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1219 | PyStructSequence *result; |
| 1220 | int i; |
Martin v. Löwis | f607bda | 2002-10-16 18:27:39 +0000 | [diff] [blame] | 1221 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1222 | result = (PyStructSequence*)structseq_new(type, args, kwds); |
| 1223 | if (!result) |
| 1224 | return NULL; |
| 1225 | /* If we have been initialized from a tuple, |
| 1226 | st_?time might be set to None. Initialize it |
| 1227 | from the int slots. */ |
| 1228 | for (i = 7; i <= 9; i++) { |
| 1229 | if (result->ob_item[i+3] == Py_None) { |
| 1230 | Py_DECREF(Py_None); |
| 1231 | Py_INCREF(result->ob_item[i]); |
| 1232 | result->ob_item[i+3] = result->ob_item[i]; |
| 1233 | } |
| 1234 | } |
| 1235 | return (PyObject*)result; |
Martin v. Löwis | f607bda | 2002-10-16 18:27:39 +0000 | [diff] [blame] | 1236 | } |
| 1237 | |
| 1238 | |
| 1239 | |
| 1240 | /* If true, st_?time is float. */ |
Martin v. Löwis | fe33d0b | 2005-01-16 08:57:39 +0000 | [diff] [blame] | 1241 | static int _stat_float_times = 1; |
Martin v. Löwis | f607bda | 2002-10-16 18:27:39 +0000 | [diff] [blame] | 1242 | |
| 1243 | PyDoc_STRVAR(stat_float_times__doc__, |
| 1244 | "stat_float_times([newval]) -> oldval\n\n\ |
| 1245 | Determine whether os.[lf]stat represents time stamps as float objects.\n\ |
| 1246 | If newval is True, future calls to stat() return floats, if it is False,\n\ |
| 1247 | future calls return ints. \n\ |
| 1248 | If newval is omitted, return the current setting.\n"); |
| 1249 | |
| 1250 | static PyObject* |
| 1251 | stat_float_times(PyObject* self, PyObject *args) |
| 1252 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1253 | int newval = -1; |
| 1254 | if (!PyArg_ParseTuple(args, "|i:stat_float_times", &newval)) |
| 1255 | return NULL; |
| 1256 | if (newval == -1) |
| 1257 | /* Return old value */ |
| 1258 | return PyBool_FromLong(_stat_float_times); |
| 1259 | _stat_float_times = newval; |
| 1260 | Py_INCREF(Py_None); |
| 1261 | return Py_None; |
Martin v. Löwis | f607bda | 2002-10-16 18:27:39 +0000 | [diff] [blame] | 1262 | } |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1263 | |
Martin v. Löwis | 94717ed | 2002-09-09 14:24:16 +0000 | [diff] [blame] | 1264 | static void |
| 1265 | fill_time(PyObject *v, int index, time_t sec, unsigned long nsec) |
| 1266 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1267 | PyObject *fval,*ival; |
Martin v. Löwis | f607bda | 2002-10-16 18:27:39 +0000 | [diff] [blame] | 1268 | #if SIZEOF_TIME_T > SIZEOF_LONG |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1269 | ival = PyLong_FromLongLong((PY_LONG_LONG)sec); |
Martin v. Löwis | f607bda | 2002-10-16 18:27:39 +0000 | [diff] [blame] | 1270 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1271 | ival = PyInt_FromLong((long)sec); |
Martin v. Löwis | f607bda | 2002-10-16 18:27:39 +0000 | [diff] [blame] | 1272 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1273 | if (!ival) |
| 1274 | return; |
| 1275 | if (_stat_float_times) { |
| 1276 | fval = PyFloat_FromDouble(sec + 1e-9*nsec); |
| 1277 | } else { |
| 1278 | fval = ival; |
| 1279 | Py_INCREF(fval); |
| 1280 | } |
| 1281 | PyStructSequence_SET_ITEM(v, index, ival); |
| 1282 | PyStructSequence_SET_ITEM(v, index+3, fval); |
Martin v. Löwis | 94717ed | 2002-09-09 14:24:16 +0000 | [diff] [blame] | 1283 | } |
| 1284 | |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 1285 | /* pack a system stat C structure into the Python stat tuple |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 1286 | (used by posix_stat() and posix_fstat()) */ |
| 1287 | static PyObject* |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1288 | _pystat_fromstructstat(STRUCT_STAT *st) |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 1289 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1290 | unsigned long ansec, mnsec, cnsec; |
| 1291 | PyObject *v = PyStructSequence_New(&StatResultType); |
| 1292 | if (v == NULL) |
| 1293 | return NULL; |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 1294 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1295 | PyStructSequence_SET_ITEM(v, 0, PyInt_FromLong((long)st->st_mode)); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 1296 | #ifdef HAVE_LARGEFILE_SUPPORT |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1297 | PyStructSequence_SET_ITEM(v, 1, |
| 1298 | PyLong_FromLongLong((PY_LONG_LONG)st->st_ino)); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 1299 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1300 | PyStructSequence_SET_ITEM(v, 1, PyInt_FromLong((long)st->st_ino)); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 1301 | #endif |
| 1302 | #if defined(HAVE_LONG_LONG) && !defined(MS_WINDOWS) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1303 | PyStructSequence_SET_ITEM(v, 2, |
| 1304 | PyLong_FromLongLong((PY_LONG_LONG)st->st_dev)); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 1305 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1306 | PyStructSequence_SET_ITEM(v, 2, PyInt_FromLong((long)st->st_dev)); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 1307 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1308 | PyStructSequence_SET_ITEM(v, 3, PyInt_FromLong((long)st->st_nlink)); |
| 1309 | PyStructSequence_SET_ITEM(v, 4, PyInt_FromLong((long)st->st_uid)); |
| 1310 | PyStructSequence_SET_ITEM(v, 5, PyInt_FromLong((long)st->st_gid)); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 1311 | #ifdef HAVE_LARGEFILE_SUPPORT |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1312 | PyStructSequence_SET_ITEM(v, 6, |
| 1313 | PyLong_FromLongLong((PY_LONG_LONG)st->st_size)); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 1314 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1315 | PyStructSequence_SET_ITEM(v, 6, PyInt_FromLong(st->st_size)); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 1316 | #endif |
Martin v. Löwis | 94717ed | 2002-09-09 14:24:16 +0000 | [diff] [blame] | 1317 | |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1318 | #if defined(HAVE_STAT_TV_NSEC) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1319 | ansec = st->st_atim.tv_nsec; |
| 1320 | mnsec = st->st_mtim.tv_nsec; |
| 1321 | cnsec = st->st_ctim.tv_nsec; |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1322 | #elif defined(HAVE_STAT_TV_NSEC2) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1323 | ansec = st->st_atimespec.tv_nsec; |
| 1324 | mnsec = st->st_mtimespec.tv_nsec; |
| 1325 | cnsec = st->st_ctimespec.tv_nsec; |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1326 | #elif defined(HAVE_STAT_NSEC) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1327 | ansec = st->st_atime_nsec; |
| 1328 | mnsec = st->st_mtime_nsec; |
| 1329 | cnsec = st->st_ctime_nsec; |
Martin v. Löwis | ebd9d5b | 2005-08-09 15:00:59 +0000 | [diff] [blame] | 1330 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1331 | ansec = mnsec = cnsec = 0; |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1332 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1333 | fill_time(v, 7, st->st_atime, ansec); |
| 1334 | fill_time(v, 8, st->st_mtime, mnsec); |
| 1335 | fill_time(v, 9, st->st_ctime, cnsec); |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1336 | |
Martin v. Löwis | 60a5d72 | 2002-10-16 20:28:25 +0000 | [diff] [blame] | 1337 | #ifdef HAVE_STRUCT_STAT_ST_BLKSIZE |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1338 | PyStructSequence_SET_ITEM(v, ST_BLKSIZE_IDX, |
| 1339 | PyInt_FromLong((long)st->st_blksize)); |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1340 | #endif |
Martin v. Löwis | 60a5d72 | 2002-10-16 20:28:25 +0000 | [diff] [blame] | 1341 | #ifdef HAVE_STRUCT_STAT_ST_BLOCKS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1342 | PyStructSequence_SET_ITEM(v, ST_BLOCKS_IDX, |
| 1343 | PyInt_FromLong((long)st->st_blocks)); |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1344 | #endif |
Martin v. Löwis | 60a5d72 | 2002-10-16 20:28:25 +0000 | [diff] [blame] | 1345 | #ifdef HAVE_STRUCT_STAT_ST_RDEV |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1346 | PyStructSequence_SET_ITEM(v, ST_RDEV_IDX, |
| 1347 | PyInt_FromLong((long)st->st_rdev)); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 1348 | #endif |
Martin v. Löwis | ebd9d5b | 2005-08-09 15:00:59 +0000 | [diff] [blame] | 1349 | #ifdef HAVE_STRUCT_STAT_ST_GEN |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1350 | PyStructSequence_SET_ITEM(v, ST_GEN_IDX, |
| 1351 | PyInt_FromLong((long)st->st_gen)); |
Martin v. Löwis | ebd9d5b | 2005-08-09 15:00:59 +0000 | [diff] [blame] | 1352 | #endif |
| 1353 | #ifdef HAVE_STRUCT_STAT_ST_BIRTHTIME |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1354 | { |
| 1355 | PyObject *val; |
| 1356 | unsigned long bsec,bnsec; |
| 1357 | bsec = (long)st->st_birthtime; |
Martin v. Löwis | ebd9d5b | 2005-08-09 15:00:59 +0000 | [diff] [blame] | 1358 | #ifdef HAVE_STAT_TV_NSEC2 |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1359 | bnsec = st->st_birthtimespec.tv_nsec; |
Martin v. Löwis | ebd9d5b | 2005-08-09 15:00:59 +0000 | [diff] [blame] | 1360 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1361 | bnsec = 0; |
Martin v. Löwis | ebd9d5b | 2005-08-09 15:00:59 +0000 | [diff] [blame] | 1362 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1363 | if (_stat_float_times) { |
| 1364 | val = PyFloat_FromDouble(bsec + 1e-9*bnsec); |
| 1365 | } else { |
| 1366 | val = PyInt_FromLong((long)bsec); |
| 1367 | } |
| 1368 | PyStructSequence_SET_ITEM(v, ST_BIRTHTIME_IDX, |
| 1369 | val); |
| 1370 | } |
Martin v. Löwis | ebd9d5b | 2005-08-09 15:00:59 +0000 | [diff] [blame] | 1371 | #endif |
Hye-Shik Chang | 5f937a7 | 2005-06-02 13:09:30 +0000 | [diff] [blame] | 1372 | #ifdef HAVE_STRUCT_STAT_ST_FLAGS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1373 | PyStructSequence_SET_ITEM(v, ST_FLAGS_IDX, |
| 1374 | PyInt_FromLong((long)st->st_flags)); |
Hye-Shik Chang | 5f937a7 | 2005-06-02 13:09:30 +0000 | [diff] [blame] | 1375 | #endif |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 1376 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1377 | if (PyErr_Occurred()) { |
| 1378 | Py_DECREF(v); |
| 1379 | return NULL; |
| 1380 | } |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 1381 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1382 | return v; |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 1383 | } |
| 1384 | |
Martin v. Löwis | d894872 | 2004-06-02 09:57:56 +0000 | [diff] [blame] | 1385 | #ifdef MS_WINDOWS |
| 1386 | |
| 1387 | /* IsUNCRoot -- test whether the supplied path is of the form \\SERVER\SHARE\, |
| 1388 | where / can be used in place of \ and the trailing slash is optional. |
| 1389 | Both SERVER and SHARE must have at least one character. |
| 1390 | */ |
| 1391 | |
| 1392 | #define ISSLASHA(c) ((c) == '\\' || (c) == '/') |
| 1393 | #define ISSLASHW(c) ((c) == L'\\' || (c) == L'/') |
Kristján Valur Jónsson | dbeaa69 | 2006-06-09 16:28:01 +0000 | [diff] [blame] | 1394 | #ifndef ARRAYSIZE |
Martin v. Löwis | d894872 | 2004-06-02 09:57:56 +0000 | [diff] [blame] | 1395 | #define ARRAYSIZE(a) (sizeof(a) / sizeof(a[0])) |
Kristján Valur Jónsson | dbeaa69 | 2006-06-09 16:28:01 +0000 | [diff] [blame] | 1396 | #endif |
Martin v. Löwis | d894872 | 2004-06-02 09:57:56 +0000 | [diff] [blame] | 1397 | |
Tim Peters | 4ad8217 | 2004-08-30 17:02:04 +0000 | [diff] [blame] | 1398 | static BOOL |
Martin v. Löwis | d894872 | 2004-06-02 09:57:56 +0000 | [diff] [blame] | 1399 | IsUNCRootA(char *path, int pathlen) |
| 1400 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1401 | #define ISSLASH ISSLASHA |
Martin v. Löwis | d894872 | 2004-06-02 09:57:56 +0000 | [diff] [blame] | 1402 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1403 | int i, share; |
Martin v. Löwis | d894872 | 2004-06-02 09:57:56 +0000 | [diff] [blame] | 1404 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1405 | if (pathlen < 5 || !ISSLASH(path[0]) || !ISSLASH(path[1])) |
| 1406 | /* minimum UNCRoot is \\x\y */ |
| 1407 | return FALSE; |
| 1408 | for (i = 2; i < pathlen ; i++) |
| 1409 | if (ISSLASH(path[i])) break; |
| 1410 | if (i == 2 || i == pathlen) |
| 1411 | /* do not allow \\\SHARE or \\SERVER */ |
| 1412 | return FALSE; |
| 1413 | share = i+1; |
| 1414 | for (i = share; i < pathlen; i++) |
| 1415 | if (ISSLASH(path[i])) break; |
| 1416 | return (i != share && (i == pathlen || i == pathlen-1)); |
Martin v. Löwis | d894872 | 2004-06-02 09:57:56 +0000 | [diff] [blame] | 1417 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1418 | #undef ISSLASH |
Martin v. Löwis | d894872 | 2004-06-02 09:57:56 +0000 | [diff] [blame] | 1419 | } |
| 1420 | |
Tim Peters | 4ad8217 | 2004-08-30 17:02:04 +0000 | [diff] [blame] | 1421 | static BOOL |
Martin v. Löwis | d894872 | 2004-06-02 09:57:56 +0000 | [diff] [blame] | 1422 | IsUNCRootW(Py_UNICODE *path, int pathlen) |
| 1423 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1424 | #define ISSLASH ISSLASHW |
Martin v. Löwis | d894872 | 2004-06-02 09:57:56 +0000 | [diff] [blame] | 1425 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1426 | int i, share; |
Martin v. Löwis | d894872 | 2004-06-02 09:57:56 +0000 | [diff] [blame] | 1427 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1428 | if (pathlen < 5 || !ISSLASH(path[0]) || !ISSLASH(path[1])) |
| 1429 | /* minimum UNCRoot is \\x\y */ |
| 1430 | return FALSE; |
| 1431 | for (i = 2; i < pathlen ; i++) |
| 1432 | if (ISSLASH(path[i])) break; |
| 1433 | if (i == 2 || i == pathlen) |
| 1434 | /* do not allow \\\SHARE or \\SERVER */ |
| 1435 | return FALSE; |
| 1436 | share = i+1; |
| 1437 | for (i = share; i < pathlen; i++) |
| 1438 | if (ISSLASH(path[i])) break; |
| 1439 | return (i != share && (i == pathlen || i == pathlen-1)); |
Martin v. Löwis | d894872 | 2004-06-02 09:57:56 +0000 | [diff] [blame] | 1440 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1441 | #undef ISSLASH |
Martin v. Löwis | d894872 | 2004-06-02 09:57:56 +0000 | [diff] [blame] | 1442 | } |
Martin v. Löwis | d894872 | 2004-06-02 09:57:56 +0000 | [diff] [blame] | 1443 | #endif /* MS_WINDOWS */ |
| 1444 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1445 | static PyObject * |
Tim Peters | 11b2306 | 2003-04-23 02:39:17 +0000 | [diff] [blame] | 1446 | posix_do_stat(PyObject *self, PyObject *args, |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1447 | char *format, |
Martin v. Löwis | 79acb9e | 2002-12-06 12:48:53 +0000 | [diff] [blame] | 1448 | #ifdef __VMS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1449 | int (*statfunc)(const char *, STRUCT_STAT *, ...), |
Martin v. Löwis | 79acb9e | 2002-12-06 12:48:53 +0000 | [diff] [blame] | 1450 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1451 | int (*statfunc)(const char *, STRUCT_STAT *), |
Martin v. Löwis | 79acb9e | 2002-12-06 12:48:53 +0000 | [diff] [blame] | 1452 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1453 | char *wformat, |
| 1454 | int (*wstatfunc)(const Py_UNICODE *, STRUCT_STAT *)) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1455 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1456 | STRUCT_STAT st; |
| 1457 | char *path = NULL; /* pass this to stat; do not free() it */ |
| 1458 | char *pathfree = NULL; /* this memory must be free'd */ |
| 1459 | int res; |
| 1460 | PyObject *result; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 1461 | |
Hirokazu Yamamoto | b24bb27 | 2009-05-17 02:52:09 +0000 | [diff] [blame] | 1462 | #ifdef MS_WINDOWS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1463 | PyUnicodeObject *po; |
| 1464 | if (PyArg_ParseTuple(args, wformat, &po)) { |
| 1465 | Py_UNICODE *wpath = PyUnicode_AS_UNICODE(po); |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1466 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1467 | Py_BEGIN_ALLOW_THREADS |
| 1468 | /* PyUnicode_AS_UNICODE result OK without |
| 1469 | thread lock as it is a simple dereference. */ |
| 1470 | res = wstatfunc(wpath, &st); |
| 1471 | Py_END_ALLOW_THREADS |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1472 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1473 | if (res != 0) |
| 1474 | return win32_error_unicode("stat", wpath); |
| 1475 | return _pystat_fromstructstat(&st); |
| 1476 | } |
| 1477 | /* Drop the argument parsing error as narrow strings |
| 1478 | are also valid. */ |
| 1479 | PyErr_Clear(); |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 1480 | #endif |
| 1481 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1482 | if (!PyArg_ParseTuple(args, format, |
| 1483 | Py_FileSystemDefaultEncoding, &path)) |
| 1484 | return NULL; |
| 1485 | pathfree = path; |
Guido van Rossum | ace88ae | 2000-04-21 18:54:45 +0000 | [diff] [blame] | 1486 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1487 | Py_BEGIN_ALLOW_THREADS |
| 1488 | res = (*statfunc)(path, &st); |
| 1489 | Py_END_ALLOW_THREADS |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1490 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1491 | if (res != 0) { |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1492 | #ifdef MS_WINDOWS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1493 | result = win32_error("stat", pathfree); |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1494 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1495 | result = posix_error_with_filename(pathfree); |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1496 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1497 | } |
| 1498 | else |
| 1499 | result = _pystat_fromstructstat(&st); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 1500 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1501 | PyMem_Free(pathfree); |
| 1502 | return result; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1503 | } |
| 1504 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1505 | /* POSIX methods */ |
| 1506 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1507 | PyDoc_STRVAR(posix_access__doc__, |
Georg Brandl | 7a28447 | 2007-01-27 19:38:50 +0000 | [diff] [blame] | 1508 | "access(path, mode) -> True if granted, False otherwise\n\n\ |
Guido van Rossum | a0b9075 | 2002-06-18 16:22:43 +0000 | [diff] [blame] | 1509 | Use the real uid/gid to test for access to a path. Note that most\n\ |
| 1510 | operations will use the effective uid/gid, therefore this routine can\n\ |
| 1511 | be used in a suid/sgid environment to test if the invoking user has the\n\ |
| 1512 | specified access to the path. The mode argument can be F_OK to test\n\ |
| 1513 | existence, or the inclusive-OR of R_OK, W_OK, and X_OK."); |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 1514 | |
| 1515 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 1516 | posix_access(PyObject *self, PyObject *args) |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 1517 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1518 | char *path; |
| 1519 | int mode; |
| 1520 | |
Hirokazu Yamamoto | b24bb27 | 2009-05-17 02:52:09 +0000 | [diff] [blame] | 1521 | #ifdef MS_WINDOWS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1522 | DWORD attr; |
| 1523 | PyUnicodeObject *po; |
| 1524 | if (PyArg_ParseTuple(args, "Ui:access", &po, &mode)) { |
| 1525 | Py_BEGIN_ALLOW_THREADS |
| 1526 | /* PyUnicode_AS_UNICODE OK without thread lock as |
| 1527 | it is a simple dereference. */ |
| 1528 | attr = GetFileAttributesW(PyUnicode_AS_UNICODE(po)); |
| 1529 | Py_END_ALLOW_THREADS |
| 1530 | goto finish; |
| 1531 | } |
| 1532 | /* Drop the argument parsing error as narrow strings |
| 1533 | are also valid. */ |
| 1534 | PyErr_Clear(); |
| 1535 | if (!PyArg_ParseTuple(args, "eti:access", |
| 1536 | Py_FileSystemDefaultEncoding, &path, &mode)) |
| 1537 | return NULL; |
| 1538 | Py_BEGIN_ALLOW_THREADS |
| 1539 | attr = GetFileAttributesA(path); |
| 1540 | Py_END_ALLOW_THREADS |
| 1541 | PyMem_Free(path); |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 1542 | finish: |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1543 | if (attr == 0xFFFFFFFF) |
| 1544 | /* File does not exist, or cannot read attributes */ |
| 1545 | return PyBool_FromLong(0); |
| 1546 | /* Access is possible if either write access wasn't requested, or |
| 1547 | the file isn't read-only, or if it's a directory, as there are |
| 1548 | no read-only directories on Windows. */ |
| 1549 | return PyBool_FromLong(!(mode & 2) |
| 1550 | || !(attr & FILE_ATTRIBUTE_READONLY) |
| 1551 | || (attr & FILE_ATTRIBUTE_DIRECTORY)); |
Hirokazu Yamamoto | b24bb27 | 2009-05-17 02:52:09 +0000 | [diff] [blame] | 1552 | #else /* MS_WINDOWS */ |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1553 | int res; |
| 1554 | if (!PyArg_ParseTuple(args, "eti:access", |
| 1555 | Py_FileSystemDefaultEncoding, &path, &mode)) |
| 1556 | return NULL; |
| 1557 | Py_BEGIN_ALLOW_THREADS |
| 1558 | res = access(path, mode); |
| 1559 | Py_END_ALLOW_THREADS |
| 1560 | PyMem_Free(path); |
| 1561 | return PyBool_FromLong(res == 0); |
Hirokazu Yamamoto | b24bb27 | 2009-05-17 02:52:09 +0000 | [diff] [blame] | 1562 | #endif /* MS_WINDOWS */ |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 1563 | } |
| 1564 | |
Guido van Rossum | d371ff1 | 1999-01-25 16:12:23 +0000 | [diff] [blame] | 1565 | #ifndef F_OK |
| 1566 | #define F_OK 0 |
| 1567 | #endif |
| 1568 | #ifndef R_OK |
| 1569 | #define R_OK 4 |
| 1570 | #endif |
| 1571 | #ifndef W_OK |
| 1572 | #define W_OK 2 |
| 1573 | #endif |
| 1574 | #ifndef X_OK |
| 1575 | #define X_OK 1 |
| 1576 | #endif |
| 1577 | |
| 1578 | #ifdef HAVE_TTYNAME |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1579 | PyDoc_STRVAR(posix_ttyname__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 1580 | "ttyname(fd) -> string\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1581 | Return the name of the terminal device connected to 'fd'."); |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 1582 | |
| 1583 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 1584 | posix_ttyname(PyObject *self, PyObject *args) |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 1585 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1586 | int id; |
| 1587 | char *ret; |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 1588 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1589 | if (!PyArg_ParseTuple(args, "i:ttyname", &id)) |
| 1590 | return NULL; |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 1591 | |
Martin v. Löwis | 79acb9e | 2002-12-06 12:48:53 +0000 | [diff] [blame] | 1592 | #if defined(__VMS) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1593 | /* file descriptor 0 only, the default input device (stdin) */ |
| 1594 | if (id == 0) { |
| 1595 | ret = ttyname(); |
| 1596 | } |
| 1597 | else { |
| 1598 | ret = NULL; |
| 1599 | } |
Martin v. Löwis | 79acb9e | 2002-12-06 12:48:53 +0000 | [diff] [blame] | 1600 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1601 | ret = ttyname(id); |
Martin v. Löwis | 79acb9e | 2002-12-06 12:48:53 +0000 | [diff] [blame] | 1602 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1603 | if (ret == NULL) |
| 1604 | return posix_error(); |
| 1605 | return PyString_FromString(ret); |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 1606 | } |
Guido van Rossum | d371ff1 | 1999-01-25 16:12:23 +0000 | [diff] [blame] | 1607 | #endif |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 1608 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 1609 | #ifdef HAVE_CTERMID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1610 | PyDoc_STRVAR(posix_ctermid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 1611 | "ctermid() -> string\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1612 | Return the name of the controlling terminal for this process."); |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 1613 | |
| 1614 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 1615 | posix_ctermid(PyObject *self, PyObject *noargs) |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 1616 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1617 | char *ret; |
| 1618 | char buffer[L_ctermid]; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 1619 | |
Greg Ward | b48bc17 | 2000-03-01 21:51:56 +0000 | [diff] [blame] | 1620 | #ifdef USE_CTERMID_R |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1621 | ret = ctermid_r(buffer); |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 1622 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1623 | ret = ctermid(buffer); |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 1624 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1625 | if (ret == NULL) |
| 1626 | return posix_error(); |
| 1627 | return PyString_FromString(buffer); |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 1628 | } |
| 1629 | #endif |
| 1630 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1631 | PyDoc_STRVAR(posix_chdir__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 1632 | "chdir(path)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1633 | Change the current working directory to the specified path."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1634 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1635 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 1636 | posix_chdir(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1637 | { |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 1638 | #ifdef MS_WINDOWS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1639 | return win32_1str(args, "chdir", "s:chdir", win32_chdir, "U:chdir", win32_wchdir); |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 1640 | #elif defined(PYOS_OS2) && defined(PYCC_GCC) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1641 | return posix_1str(args, "et:chdir", _chdir2); |
Martin v. Löwis | 7a924e6 | 2003-03-05 14:15:21 +0000 | [diff] [blame] | 1642 | #elif defined(__VMS) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1643 | return posix_1str(args, "et:chdir", (int (*)(const char *))chdir); |
Martin v. Löwis | 79acb9e | 2002-12-06 12:48:53 +0000 | [diff] [blame] | 1644 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1645 | return posix_1str(args, "et:chdir", chdir); |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 1646 | #endif |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1647 | } |
| 1648 | |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 1649 | #ifdef HAVE_FCHDIR |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1650 | PyDoc_STRVAR(posix_fchdir__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 1651 | "fchdir(fildes)\n\n\ |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 1652 | Change to the directory of the given file descriptor. fildes must be\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1653 | opened on a directory, not a file."); |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 1654 | |
| 1655 | static PyObject * |
| 1656 | posix_fchdir(PyObject *self, PyObject *fdobj) |
| 1657 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1658 | return posix_fildes(fdobj, fchdir); |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 1659 | } |
| 1660 | #endif /* HAVE_FCHDIR */ |
| 1661 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1662 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1663 | PyDoc_STRVAR(posix_chmod__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 1664 | "chmod(path, mode)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1665 | Change the access permissions of a file."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1666 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1667 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 1668 | posix_chmod(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1669 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1670 | char *path = NULL; |
| 1671 | int i; |
| 1672 | int res; |
Hirokazu Yamamoto | b24bb27 | 2009-05-17 02:52:09 +0000 | [diff] [blame] | 1673 | #ifdef MS_WINDOWS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1674 | DWORD attr; |
| 1675 | PyUnicodeObject *po; |
| 1676 | if (PyArg_ParseTuple(args, "Ui|:chmod", &po, &i)) { |
| 1677 | Py_BEGIN_ALLOW_THREADS |
| 1678 | attr = GetFileAttributesW(PyUnicode_AS_UNICODE(po)); |
| 1679 | if (attr != 0xFFFFFFFF) { |
| 1680 | if (i & _S_IWRITE) |
| 1681 | attr &= ~FILE_ATTRIBUTE_READONLY; |
| 1682 | else |
| 1683 | attr |= FILE_ATTRIBUTE_READONLY; |
| 1684 | res = SetFileAttributesW(PyUnicode_AS_UNICODE(po), attr); |
| 1685 | } |
| 1686 | else |
| 1687 | res = 0; |
| 1688 | Py_END_ALLOW_THREADS |
| 1689 | if (!res) |
| 1690 | return win32_error_unicode("chmod", |
| 1691 | PyUnicode_AS_UNICODE(po)); |
| 1692 | Py_INCREF(Py_None); |
| 1693 | return Py_None; |
| 1694 | } |
| 1695 | /* Drop the argument parsing error as narrow strings |
| 1696 | are also valid. */ |
| 1697 | PyErr_Clear(); |
Hirokazu Yamamoto | a3c5609 | 2009-06-28 10:23:00 +0000 | [diff] [blame] | 1698 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1699 | if (!PyArg_ParseTuple(args, "eti:chmod", Py_FileSystemDefaultEncoding, |
| 1700 | &path, &i)) |
| 1701 | return NULL; |
| 1702 | Py_BEGIN_ALLOW_THREADS |
| 1703 | attr = GetFileAttributesA(path); |
| 1704 | if (attr != 0xFFFFFFFF) { |
| 1705 | if (i & _S_IWRITE) |
| 1706 | attr &= ~FILE_ATTRIBUTE_READONLY; |
| 1707 | else |
| 1708 | attr |= FILE_ATTRIBUTE_READONLY; |
| 1709 | res = SetFileAttributesA(path, attr); |
| 1710 | } |
| 1711 | else |
| 1712 | res = 0; |
| 1713 | Py_END_ALLOW_THREADS |
| 1714 | if (!res) { |
| 1715 | win32_error("chmod", path); |
| 1716 | PyMem_Free(path); |
| 1717 | return NULL; |
| 1718 | } |
| 1719 | PyMem_Free(path); |
| 1720 | Py_INCREF(Py_None); |
| 1721 | return Py_None; |
Hirokazu Yamamoto | b24bb27 | 2009-05-17 02:52:09 +0000 | [diff] [blame] | 1722 | #else /* MS_WINDOWS */ |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1723 | if (!PyArg_ParseTuple(args, "eti:chmod", Py_FileSystemDefaultEncoding, |
| 1724 | &path, &i)) |
| 1725 | return NULL; |
| 1726 | Py_BEGIN_ALLOW_THREADS |
| 1727 | res = chmod(path, i); |
| 1728 | Py_END_ALLOW_THREADS |
| 1729 | if (res < 0) |
| 1730 | return posix_error_with_allocated_filename(path); |
| 1731 | PyMem_Free(path); |
| 1732 | Py_INCREF(Py_None); |
| 1733 | return Py_None; |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 1734 | #endif |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1735 | } |
| 1736 | |
Christian Heimes | 3628187 | 2007-11-30 21:11:28 +0000 | [diff] [blame] | 1737 | #ifdef HAVE_FCHMOD |
| 1738 | PyDoc_STRVAR(posix_fchmod__doc__, |
| 1739 | "fchmod(fd, mode)\n\n\ |
| 1740 | Change the access permissions of the file given by file\n\ |
| 1741 | descriptor fd."); |
| 1742 | |
| 1743 | static PyObject * |
| 1744 | posix_fchmod(PyObject *self, PyObject *args) |
| 1745 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1746 | int fd, mode, res; |
| 1747 | if (!PyArg_ParseTuple(args, "ii:fchmod", &fd, &mode)) |
| 1748 | return NULL; |
| 1749 | Py_BEGIN_ALLOW_THREADS |
| 1750 | res = fchmod(fd, mode); |
| 1751 | Py_END_ALLOW_THREADS |
| 1752 | if (res < 0) |
| 1753 | return posix_error(); |
| 1754 | Py_RETURN_NONE; |
Christian Heimes | 3628187 | 2007-11-30 21:11:28 +0000 | [diff] [blame] | 1755 | } |
| 1756 | #endif /* HAVE_FCHMOD */ |
| 1757 | |
| 1758 | #ifdef HAVE_LCHMOD |
| 1759 | PyDoc_STRVAR(posix_lchmod__doc__, |
| 1760 | "lchmod(path, mode)\n\n\ |
| 1761 | Change the access permissions of a file. If path is a symlink, this\n\ |
| 1762 | affects the link itself rather than the target."); |
| 1763 | |
| 1764 | static PyObject * |
| 1765 | posix_lchmod(PyObject *self, PyObject *args) |
| 1766 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1767 | char *path = NULL; |
| 1768 | int i; |
| 1769 | int res; |
| 1770 | if (!PyArg_ParseTuple(args, "eti:lchmod", Py_FileSystemDefaultEncoding, |
| 1771 | &path, &i)) |
| 1772 | return NULL; |
| 1773 | Py_BEGIN_ALLOW_THREADS |
| 1774 | res = lchmod(path, i); |
| 1775 | Py_END_ALLOW_THREADS |
| 1776 | if (res < 0) |
| 1777 | return posix_error_with_allocated_filename(path); |
| 1778 | PyMem_Free(path); |
| 1779 | Py_RETURN_NONE; |
Christian Heimes | 3628187 | 2007-11-30 21:11:28 +0000 | [diff] [blame] | 1780 | } |
| 1781 | #endif /* HAVE_LCHMOD */ |
| 1782 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1783 | |
Martin v. Löwis | 382abef | 2007-02-19 10:55:19 +0000 | [diff] [blame] | 1784 | #ifdef HAVE_CHFLAGS |
| 1785 | PyDoc_STRVAR(posix_chflags__doc__, |
| 1786 | "chflags(path, flags)\n\n\ |
| 1787 | Set file flags."); |
| 1788 | |
| 1789 | static PyObject * |
| 1790 | posix_chflags(PyObject *self, PyObject *args) |
| 1791 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1792 | char *path; |
| 1793 | unsigned long flags; |
| 1794 | int res; |
| 1795 | if (!PyArg_ParseTuple(args, "etk:chflags", |
| 1796 | Py_FileSystemDefaultEncoding, &path, &flags)) |
| 1797 | return NULL; |
| 1798 | Py_BEGIN_ALLOW_THREADS |
| 1799 | res = chflags(path, flags); |
| 1800 | Py_END_ALLOW_THREADS |
| 1801 | if (res < 0) |
| 1802 | return posix_error_with_allocated_filename(path); |
| 1803 | PyMem_Free(path); |
| 1804 | Py_INCREF(Py_None); |
| 1805 | return Py_None; |
Martin v. Löwis | 382abef | 2007-02-19 10:55:19 +0000 | [diff] [blame] | 1806 | } |
| 1807 | #endif /* HAVE_CHFLAGS */ |
| 1808 | |
| 1809 | #ifdef HAVE_LCHFLAGS |
| 1810 | PyDoc_STRVAR(posix_lchflags__doc__, |
| 1811 | "lchflags(path, flags)\n\n\ |
| 1812 | Set file flags.\n\ |
| 1813 | This function will not follow symbolic links."); |
| 1814 | |
| 1815 | static PyObject * |
| 1816 | posix_lchflags(PyObject *self, PyObject *args) |
| 1817 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1818 | char *path; |
| 1819 | unsigned long flags; |
| 1820 | int res; |
| 1821 | if (!PyArg_ParseTuple(args, "etk:lchflags", |
| 1822 | Py_FileSystemDefaultEncoding, &path, &flags)) |
| 1823 | return NULL; |
| 1824 | Py_BEGIN_ALLOW_THREADS |
| 1825 | res = lchflags(path, flags); |
| 1826 | Py_END_ALLOW_THREADS |
| 1827 | if (res < 0) |
| 1828 | return posix_error_with_allocated_filename(path); |
| 1829 | PyMem_Free(path); |
| 1830 | Py_INCREF(Py_None); |
| 1831 | return Py_None; |
Martin v. Löwis | 382abef | 2007-02-19 10:55:19 +0000 | [diff] [blame] | 1832 | } |
| 1833 | #endif /* HAVE_LCHFLAGS */ |
| 1834 | |
Martin v. Löwis | 244edc8 | 2001-10-04 22:44:26 +0000 | [diff] [blame] | 1835 | #ifdef HAVE_CHROOT |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1836 | PyDoc_STRVAR(posix_chroot__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 1837 | "chroot(path)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1838 | Change root directory to path."); |
Martin v. Löwis | 244edc8 | 2001-10-04 22:44:26 +0000 | [diff] [blame] | 1839 | |
| 1840 | static PyObject * |
| 1841 | posix_chroot(PyObject *self, PyObject *args) |
| 1842 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1843 | return posix_1str(args, "et:chroot", chroot); |
Martin v. Löwis | 244edc8 | 2001-10-04 22:44:26 +0000 | [diff] [blame] | 1844 | } |
| 1845 | #endif |
| 1846 | |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 1847 | #ifdef HAVE_FSYNC |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1848 | PyDoc_STRVAR(posix_fsync__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 1849 | "fsync(fildes)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1850 | force write of file with filedescriptor to disk."); |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 1851 | |
| 1852 | static PyObject * |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 1853 | posix_fsync(PyObject *self, PyObject *fdobj) |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 1854 | { |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 1855 | return posix_fildes(fdobj, fsync); |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 1856 | } |
| 1857 | #endif /* HAVE_FSYNC */ |
| 1858 | |
| 1859 | #ifdef HAVE_FDATASYNC |
Guido van Rossum | ecc23b0 | 2000-09-22 16:01:05 +0000 | [diff] [blame] | 1860 | |
Guido van Rossum | 7f58e2e | 2000-09-22 17:26:14 +0000 | [diff] [blame] | 1861 | #ifdef __hpux |
Guido van Rossum | ecc23b0 | 2000-09-22 16:01:05 +0000 | [diff] [blame] | 1862 | extern int fdatasync(int); /* On HP-UX, in libc but not in unistd.h */ |
| 1863 | #endif |
| 1864 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1865 | PyDoc_STRVAR(posix_fdatasync__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 1866 | "fdatasync(fildes)\n\n\ |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 1867 | force write of file with filedescriptor to disk.\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1868 | does not force update of metadata."); |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 1869 | |
| 1870 | static PyObject * |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 1871 | posix_fdatasync(PyObject *self, PyObject *fdobj) |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 1872 | { |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 1873 | return posix_fildes(fdobj, fdatasync); |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 1874 | } |
| 1875 | #endif /* HAVE_FDATASYNC */ |
| 1876 | |
| 1877 | |
Fredrik Lundh | 1072334 | 2000-07-10 16:38:09 +0000 | [diff] [blame] | 1878 | #ifdef HAVE_CHOWN |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1879 | PyDoc_STRVAR(posix_chown__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 1880 | "chown(path, uid, gid)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1881 | Change the owner and group id of path to the numeric uid and gid."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1882 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1883 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 1884 | posix_chown(PyObject *self, PyObject *args) |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 1885 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1886 | char *path = NULL; |
| 1887 | long uid, gid; |
| 1888 | int res; |
| 1889 | if (!PyArg_ParseTuple(args, "etll:chown", |
| 1890 | Py_FileSystemDefaultEncoding, &path, |
| 1891 | &uid, &gid)) |
| 1892 | return NULL; |
| 1893 | Py_BEGIN_ALLOW_THREADS |
| 1894 | res = chown(path, (uid_t) uid, (gid_t) gid); |
| 1895 | Py_END_ALLOW_THREADS |
| 1896 | if (res < 0) |
| 1897 | return posix_error_with_allocated_filename(path); |
| 1898 | PyMem_Free(path); |
| 1899 | Py_INCREF(Py_None); |
| 1900 | return Py_None; |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 1901 | } |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 1902 | #endif /* HAVE_CHOWN */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 1903 | |
Christian Heimes | 3628187 | 2007-11-30 21:11:28 +0000 | [diff] [blame] | 1904 | #ifdef HAVE_FCHOWN |
| 1905 | PyDoc_STRVAR(posix_fchown__doc__, |
| 1906 | "fchown(fd, uid, gid)\n\n\ |
| 1907 | Change the owner and group id of the file given by file descriptor\n\ |
| 1908 | fd to the numeric uid and gid."); |
| 1909 | |
| 1910 | static PyObject * |
| 1911 | posix_fchown(PyObject *self, PyObject *args) |
| 1912 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1913 | int fd; |
| 1914 | long uid, gid; |
| 1915 | int res; |
| 1916 | if (!PyArg_ParseTuple(args, "ill:chown", &fd, &uid, &gid)) |
| 1917 | return NULL; |
| 1918 | Py_BEGIN_ALLOW_THREADS |
| 1919 | res = fchown(fd, (uid_t) uid, (gid_t) gid); |
| 1920 | Py_END_ALLOW_THREADS |
| 1921 | if (res < 0) |
| 1922 | return posix_error(); |
| 1923 | Py_RETURN_NONE; |
Christian Heimes | 3628187 | 2007-11-30 21:11:28 +0000 | [diff] [blame] | 1924 | } |
| 1925 | #endif /* HAVE_FCHOWN */ |
| 1926 | |
Martin v. Löwis | 0cec0ff | 2002-07-28 16:33:45 +0000 | [diff] [blame] | 1927 | #ifdef HAVE_LCHOWN |
| 1928 | PyDoc_STRVAR(posix_lchown__doc__, |
| 1929 | "lchown(path, uid, gid)\n\n\ |
| 1930 | Change the owner and group id of path to the numeric uid and gid.\n\ |
| 1931 | This function will not follow symbolic links."); |
| 1932 | |
| 1933 | static PyObject * |
| 1934 | posix_lchown(PyObject *self, PyObject *args) |
| 1935 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1936 | char *path = NULL; |
| 1937 | long uid, gid; |
| 1938 | int res; |
| 1939 | if (!PyArg_ParseTuple(args, "etll:lchown", |
| 1940 | Py_FileSystemDefaultEncoding, &path, |
| 1941 | &uid, &gid)) |
| 1942 | return NULL; |
| 1943 | Py_BEGIN_ALLOW_THREADS |
| 1944 | res = lchown(path, (uid_t) uid, (gid_t) gid); |
| 1945 | Py_END_ALLOW_THREADS |
| 1946 | if (res < 0) |
| 1947 | return posix_error_with_allocated_filename(path); |
| 1948 | PyMem_Free(path); |
| 1949 | Py_INCREF(Py_None); |
| 1950 | return Py_None; |
Martin v. Löwis | 0cec0ff | 2002-07-28 16:33:45 +0000 | [diff] [blame] | 1951 | } |
| 1952 | #endif /* HAVE_LCHOWN */ |
| 1953 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1954 | |
Guido van Rossum | 36bc680 | 1995-06-14 22:54:23 +0000 | [diff] [blame] | 1955 | #ifdef HAVE_GETCWD |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1956 | PyDoc_STRVAR(posix_getcwd__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 1957 | "getcwd() -> path\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1958 | Return a string representing the current working directory."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1959 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1960 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 1961 | posix_getcwd(PyObject *self, PyObject *noargs) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1962 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1963 | int bufsize_incr = 1024; |
| 1964 | int bufsize = 0; |
| 1965 | char *tmpbuf = NULL; |
| 1966 | char *res = NULL; |
| 1967 | PyObject *dynamic_return; |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 1968 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1969 | Py_BEGIN_ALLOW_THREADS |
| 1970 | do { |
| 1971 | bufsize = bufsize + bufsize_incr; |
| 1972 | tmpbuf = malloc(bufsize); |
| 1973 | if (tmpbuf == NULL) { |
| 1974 | break; |
| 1975 | } |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 1976 | #if defined(PYOS_OS2) && defined(PYCC_GCC) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1977 | res = _getcwd2(tmpbuf, bufsize); |
Martin v. Löwis | 79acb9e | 2002-12-06 12:48:53 +0000 | [diff] [blame] | 1978 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1979 | res = getcwd(tmpbuf, bufsize); |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 1980 | #endif |
Facundo Batista | 5596b0c | 2008-06-22 13:36:20 +0000 | [diff] [blame] | 1981 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1982 | if (res == NULL) { |
| 1983 | free(tmpbuf); |
| 1984 | } |
| 1985 | } while ((res == NULL) && (errno == ERANGE)); |
| 1986 | Py_END_ALLOW_THREADS |
Facundo Batista | 5596b0c | 2008-06-22 13:36:20 +0000 | [diff] [blame] | 1987 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1988 | if (res == NULL) |
| 1989 | return posix_error(); |
Facundo Batista | 5596b0c | 2008-06-22 13:36:20 +0000 | [diff] [blame] | 1990 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1991 | dynamic_return = PyString_FromString(tmpbuf); |
| 1992 | free(tmpbuf); |
Facundo Batista | 5596b0c | 2008-06-22 13:36:20 +0000 | [diff] [blame] | 1993 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 1994 | return dynamic_return; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1995 | } |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 1996 | |
Walter Dörwald | 3b918c3 | 2002-11-21 20:18:46 +0000 | [diff] [blame] | 1997 | #ifdef Py_USING_UNICODE |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 1998 | PyDoc_STRVAR(posix_getcwdu__doc__, |
| 1999 | "getcwdu() -> path\n\n\ |
| 2000 | Return a unicode string representing the current working directory."); |
| 2001 | |
| 2002 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 2003 | posix_getcwdu(PyObject *self, PyObject *noargs) |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2004 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2005 | char buf[1026]; |
| 2006 | char *res; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2007 | |
Hirokazu Yamamoto | b24bb27 | 2009-05-17 02:52:09 +0000 | [diff] [blame] | 2008 | #ifdef MS_WINDOWS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2009 | DWORD len; |
| 2010 | wchar_t wbuf[1026]; |
| 2011 | wchar_t *wbuf2 = wbuf; |
| 2012 | PyObject *resobj; |
| 2013 | Py_BEGIN_ALLOW_THREADS |
| 2014 | len = GetCurrentDirectoryW(sizeof wbuf/ sizeof wbuf[0], wbuf); |
| 2015 | /* If the buffer is large enough, len does not include the |
| 2016 | terminating \0. If the buffer is too small, len includes |
| 2017 | the space needed for the terminator. */ |
| 2018 | if (len >= sizeof wbuf/ sizeof wbuf[0]) { |
| 2019 | wbuf2 = malloc(len * sizeof(wchar_t)); |
| 2020 | if (wbuf2) |
| 2021 | len = GetCurrentDirectoryW(len, wbuf2); |
| 2022 | } |
| 2023 | Py_END_ALLOW_THREADS |
| 2024 | if (!wbuf2) { |
| 2025 | PyErr_NoMemory(); |
| 2026 | return NULL; |
| 2027 | } |
| 2028 | if (!len) { |
| 2029 | if (wbuf2 != wbuf) free(wbuf2); |
| 2030 | return win32_error("getcwdu", NULL); |
| 2031 | } |
| 2032 | resobj = PyUnicode_FromWideChar(wbuf2, len); |
| 2033 | if (wbuf2 != wbuf) free(wbuf2); |
| 2034 | return resobj; |
Hirokazu Yamamoto | b24bb27 | 2009-05-17 02:52:09 +0000 | [diff] [blame] | 2035 | #endif /* MS_WINDOWS */ |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2036 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2037 | Py_BEGIN_ALLOW_THREADS |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2038 | #if defined(PYOS_OS2) && defined(PYCC_GCC) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2039 | res = _getcwd2(buf, sizeof buf); |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2040 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2041 | res = getcwd(buf, sizeof buf); |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2042 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2043 | Py_END_ALLOW_THREADS |
| 2044 | if (res == NULL) |
| 2045 | return posix_error(); |
| 2046 | return PyUnicode_Decode(buf, strlen(buf), Py_FileSystemDefaultEncoding,"strict"); |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2047 | } |
Hirokazu Yamamoto | b24bb27 | 2009-05-17 02:52:09 +0000 | [diff] [blame] | 2048 | #endif /* Py_USING_UNICODE */ |
| 2049 | #endif /* HAVE_GETCWD */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2050 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2051 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 2052 | #ifdef HAVE_LINK |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2053 | PyDoc_STRVAR(posix_link__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 2054 | "link(src, dst)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2055 | Create a hard link to a file."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2056 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2057 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 2058 | posix_link(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2059 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2060 | return posix_2str(args, "etet:link", link); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2061 | } |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 2062 | #endif /* HAVE_LINK */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2063 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2064 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2065 | PyDoc_STRVAR(posix_listdir__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 2066 | "listdir(path) -> list_of_strings\n\n\ |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2067 | Return a list containing the names of the entries in the directory.\n\ |
| 2068 | \n\ |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2069 | path: path of directory to list\n\ |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2070 | \n\ |
| 2071 | The list is in arbitrary order. It does not include the special\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2072 | entries '.' and '..' even if they are present in the directory."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2073 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2074 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 2075 | posix_listdir(PyObject *self, PyObject *args) |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 2076 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2077 | /* XXX Should redo this putting the (now four) versions of opendir |
| 2078 | in separate files instead of having them all here... */ |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 2079 | #if defined(MS_WINDOWS) && !defined(HAVE_OPENDIR) |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 2080 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2081 | PyObject *d, *v; |
| 2082 | HANDLE hFindFile; |
| 2083 | BOOL result; |
| 2084 | WIN32_FIND_DATA FileData; |
| 2085 | char namebuf[MAX_PATH+5]; /* Overallocate for \\*.*\0 */ |
| 2086 | char *bufptr = namebuf; |
| 2087 | Py_ssize_t len = sizeof(namebuf)-5; /* only claim to have space for MAX_PATH */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 2088 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2089 | PyObject *po; |
| 2090 | if (PyArg_ParseTuple(args, "U:listdir", &po)) { |
| 2091 | WIN32_FIND_DATAW wFileData; |
| 2092 | Py_UNICODE *wnamebuf; |
| 2093 | /* Overallocate for \\*.*\0 */ |
| 2094 | len = PyUnicode_GET_SIZE(po); |
| 2095 | wnamebuf = malloc((len + 5) * sizeof(wchar_t)); |
| 2096 | if (!wnamebuf) { |
| 2097 | PyErr_NoMemory(); |
| 2098 | return NULL; |
| 2099 | } |
| 2100 | wcscpy(wnamebuf, PyUnicode_AS_UNICODE(po)); |
| 2101 | if (len > 0) { |
| 2102 | Py_UNICODE wch = wnamebuf[len-1]; |
| 2103 | if (wch != L'/' && wch != L'\\' && wch != L':') |
| 2104 | wnamebuf[len++] = L'\\'; |
| 2105 | wcscpy(wnamebuf + len, L"*.*"); |
| 2106 | } |
| 2107 | if ((d = PyList_New(0)) == NULL) { |
| 2108 | free(wnamebuf); |
| 2109 | return NULL; |
| 2110 | } |
| 2111 | hFindFile = FindFirstFileW(wnamebuf, &wFileData); |
| 2112 | if (hFindFile == INVALID_HANDLE_VALUE) { |
| 2113 | int error = GetLastError(); |
| 2114 | if (error == ERROR_FILE_NOT_FOUND) { |
| 2115 | free(wnamebuf); |
| 2116 | return d; |
| 2117 | } |
| 2118 | Py_DECREF(d); |
| 2119 | win32_error_unicode("FindFirstFileW", wnamebuf); |
| 2120 | free(wnamebuf); |
| 2121 | return NULL; |
| 2122 | } |
| 2123 | do { |
| 2124 | /* Skip over . and .. */ |
| 2125 | if (wcscmp(wFileData.cFileName, L".") != 0 && |
| 2126 | wcscmp(wFileData.cFileName, L"..") != 0) { |
| 2127 | v = PyUnicode_FromUnicode(wFileData.cFileName, wcslen(wFileData.cFileName)); |
| 2128 | if (v == NULL) { |
| 2129 | Py_DECREF(d); |
| 2130 | d = NULL; |
| 2131 | break; |
| 2132 | } |
| 2133 | if (PyList_Append(d, v) != 0) { |
| 2134 | Py_DECREF(v); |
| 2135 | Py_DECREF(d); |
| 2136 | d = NULL; |
| 2137 | break; |
| 2138 | } |
| 2139 | Py_DECREF(v); |
| 2140 | } |
| 2141 | Py_BEGIN_ALLOW_THREADS |
| 2142 | result = FindNextFileW(hFindFile, &wFileData); |
| 2143 | Py_END_ALLOW_THREADS |
| 2144 | /* FindNextFile sets error to ERROR_NO_MORE_FILES if |
| 2145 | it got to the end of the directory. */ |
| 2146 | if (!result && GetLastError() != ERROR_NO_MORE_FILES) { |
| 2147 | Py_DECREF(d); |
| 2148 | win32_error_unicode("FindNextFileW", wnamebuf); |
| 2149 | FindClose(hFindFile); |
| 2150 | free(wnamebuf); |
| 2151 | return NULL; |
| 2152 | } |
| 2153 | } while (result == TRUE); |
Hirokazu Yamamoto | a3c5609 | 2009-06-28 10:23:00 +0000 | [diff] [blame] | 2154 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2155 | if (FindClose(hFindFile) == FALSE) { |
| 2156 | Py_DECREF(d); |
| 2157 | win32_error_unicode("FindClose", wnamebuf); |
| 2158 | free(wnamebuf); |
| 2159 | return NULL; |
| 2160 | } |
| 2161 | free(wnamebuf); |
| 2162 | return d; |
| 2163 | } |
| 2164 | /* Drop the argument parsing error as narrow strings |
| 2165 | are also valid. */ |
| 2166 | PyErr_Clear(); |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2167 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2168 | if (!PyArg_ParseTuple(args, "et#:listdir", |
| 2169 | Py_FileSystemDefaultEncoding, &bufptr, &len)) |
| 2170 | return NULL; |
| 2171 | if (len > 0) { |
| 2172 | char ch = namebuf[len-1]; |
| 2173 | if (ch != SEP && ch != ALTSEP && ch != ':') |
| 2174 | namebuf[len++] = '/'; |
| 2175 | strcpy(namebuf + len, "*.*"); |
| 2176 | } |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 2177 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2178 | if ((d = PyList_New(0)) == NULL) |
| 2179 | return NULL; |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 2180 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2181 | hFindFile = FindFirstFile(namebuf, &FileData); |
| 2182 | if (hFindFile == INVALID_HANDLE_VALUE) { |
| 2183 | int error = GetLastError(); |
| 2184 | if (error == ERROR_FILE_NOT_FOUND) |
| 2185 | return d; |
| 2186 | Py_DECREF(d); |
| 2187 | return win32_error("FindFirstFile", namebuf); |
| 2188 | } |
| 2189 | do { |
| 2190 | /* Skip over . and .. */ |
| 2191 | if (strcmp(FileData.cFileName, ".") != 0 && |
| 2192 | strcmp(FileData.cFileName, "..") != 0) { |
| 2193 | v = PyString_FromString(FileData.cFileName); |
| 2194 | if (v == NULL) { |
| 2195 | Py_DECREF(d); |
| 2196 | d = NULL; |
| 2197 | break; |
| 2198 | } |
| 2199 | if (PyList_Append(d, v) != 0) { |
| 2200 | Py_DECREF(v); |
| 2201 | Py_DECREF(d); |
| 2202 | d = NULL; |
| 2203 | break; |
| 2204 | } |
| 2205 | Py_DECREF(v); |
| 2206 | } |
| 2207 | Py_BEGIN_ALLOW_THREADS |
| 2208 | result = FindNextFile(hFindFile, &FileData); |
| 2209 | Py_END_ALLOW_THREADS |
| 2210 | /* FindNextFile sets error to ERROR_NO_MORE_FILES if |
| 2211 | it got to the end of the directory. */ |
| 2212 | if (!result && GetLastError() != ERROR_NO_MORE_FILES) { |
| 2213 | Py_DECREF(d); |
| 2214 | win32_error("FindNextFile", namebuf); |
| 2215 | FindClose(hFindFile); |
| 2216 | return NULL; |
| 2217 | } |
| 2218 | } while (result == TRUE); |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 2219 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2220 | if (FindClose(hFindFile) == FALSE) { |
| 2221 | Py_DECREF(d); |
| 2222 | return win32_error("FindClose", namebuf); |
| 2223 | } |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 2224 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2225 | return d; |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 2226 | |
Tim Peters | 0bb44a4 | 2000-09-15 07:44:49 +0000 | [diff] [blame] | 2227 | #elif defined(PYOS_OS2) |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2228 | |
| 2229 | #ifndef MAX_PATH |
| 2230 | #define MAX_PATH CCHMAXPATH |
| 2231 | #endif |
| 2232 | char *name, *pt; |
Thomas Wouters | 68bc4f9 | 2006-03-01 01:05:10 +0000 | [diff] [blame] | 2233 | Py_ssize_t len; |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2234 | PyObject *d, *v; |
| 2235 | char namebuf[MAX_PATH+5]; |
| 2236 | HDIR hdir = 1; |
| 2237 | ULONG srchcnt = 1; |
| 2238 | FILEFINDBUF3 ep; |
| 2239 | APIRET rc; |
| 2240 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 2241 | if (!PyArg_ParseTuple(args, "t#:listdir", &name, &len)) |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2242 | return NULL; |
| 2243 | if (len >= MAX_PATH) { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2244 | PyErr_SetString(PyExc_ValueError, "path too long"); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2245 | return NULL; |
| 2246 | } |
| 2247 | strcpy(namebuf, name); |
| 2248 | for (pt = namebuf; *pt; pt++) |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 2249 | if (*pt == ALTSEP) |
| 2250 | *pt = SEP; |
| 2251 | if (namebuf[len-1] != SEP) |
| 2252 | namebuf[len++] = SEP; |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2253 | strcpy(namebuf + len, "*.*"); |
| 2254 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2255 | if ((d = PyList_New(0)) == NULL) |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2256 | return NULL; |
| 2257 | |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 2258 | rc = DosFindFirst(namebuf, /* Wildcard Pattern to Match */ |
| 2259 | &hdir, /* Handle to Use While Search Directory */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2260 | FILE_READONLY | FILE_HIDDEN | FILE_SYSTEM | FILE_DIRECTORY, |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 2261 | &ep, sizeof(ep), /* Structure to Receive Directory Entry */ |
| 2262 | &srchcnt, /* Max and Actual Count of Entries Per Iteration */ |
| 2263 | FIL_STANDARD); /* Format of Entry (EAs or Not) */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2264 | |
| 2265 | if (rc != NO_ERROR) { |
| 2266 | errno = ENOENT; |
Barry Warsaw | f63b8cc | 1999-05-27 23:13:21 +0000 | [diff] [blame] | 2267 | return posix_error_with_filename(name); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2268 | } |
| 2269 | |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 2270 | if (srchcnt > 0) { /* If Directory is NOT Totally Empty, */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2271 | do { |
| 2272 | if (ep.achName[0] == '.' |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 2273 | && (ep.achName[1] == '\0' || (ep.achName[1] == '.' && ep.achName[2] == '\0'))) |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 2274 | continue; /* Skip Over "." and ".." Names */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2275 | |
| 2276 | strcpy(namebuf, ep.achName); |
| 2277 | |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 2278 | /* Leave Case of Name Alone -- In Native Form */ |
| 2279 | /* (Removed Forced Lowercasing Code) */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2280 | |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 2281 | v = PyString_FromString(namebuf); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2282 | if (v == NULL) { |
| 2283 | Py_DECREF(d); |
| 2284 | d = NULL; |
| 2285 | break; |
| 2286 | } |
| 2287 | if (PyList_Append(d, v) != 0) { |
| 2288 | Py_DECREF(v); |
| 2289 | Py_DECREF(d); |
| 2290 | d = NULL; |
| 2291 | break; |
| 2292 | } |
| 2293 | Py_DECREF(v); |
| 2294 | } while (DosFindNext(hdir, &ep, sizeof(ep), &srchcnt) == NO_ERROR && srchcnt > 0); |
| 2295 | } |
| 2296 | |
| 2297 | return d; |
| 2298 | #else |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 2299 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2300 | char *name = NULL; |
| 2301 | PyObject *d, *v; |
| 2302 | DIR *dirp; |
| 2303 | struct dirent *ep; |
| 2304 | int arg_is_unicode = 1; |
Just van Rossum | 96b1c90 | 2003-03-03 17:32:15 +0000 | [diff] [blame] | 2305 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2306 | errno = 0; |
| 2307 | if (!PyArg_ParseTuple(args, "U:listdir", &v)) { |
| 2308 | arg_is_unicode = 0; |
| 2309 | PyErr_Clear(); |
| 2310 | } |
| 2311 | if (!PyArg_ParseTuple(args, "et:listdir", Py_FileSystemDefaultEncoding, &name)) |
| 2312 | return NULL; |
| 2313 | if ((dirp = opendir(name)) == NULL) { |
| 2314 | return posix_error_with_allocated_filename(name); |
| 2315 | } |
| 2316 | if ((d = PyList_New(0)) == NULL) { |
| 2317 | closedir(dirp); |
| 2318 | PyMem_Free(name); |
| 2319 | return NULL; |
| 2320 | } |
| 2321 | for (;;) { |
| 2322 | errno = 0; |
| 2323 | Py_BEGIN_ALLOW_THREADS |
| 2324 | ep = readdir(dirp); |
| 2325 | Py_END_ALLOW_THREADS |
| 2326 | if (ep == NULL) { |
| 2327 | if (errno == 0) { |
| 2328 | break; |
| 2329 | } else { |
| 2330 | closedir(dirp); |
| 2331 | Py_DECREF(d); |
| 2332 | return posix_error_with_allocated_filename(name); |
| 2333 | } |
| 2334 | } |
| 2335 | if (ep->d_name[0] == '.' && |
| 2336 | (NAMLEN(ep) == 1 || |
| 2337 | (ep->d_name[1] == '.' && NAMLEN(ep) == 2))) |
| 2338 | continue; |
| 2339 | v = PyString_FromStringAndSize(ep->d_name, NAMLEN(ep)); |
| 2340 | if (v == NULL) { |
| 2341 | Py_DECREF(d); |
| 2342 | d = NULL; |
| 2343 | break; |
| 2344 | } |
Just van Rossum | 46c9784 | 2003-02-25 21:42:15 +0000 | [diff] [blame] | 2345 | #ifdef Py_USING_UNICODE |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2346 | if (arg_is_unicode) { |
| 2347 | PyObject *w; |
Just van Rossum | 46c9784 | 2003-02-25 21:42:15 +0000 | [diff] [blame] | 2348 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2349 | w = PyUnicode_FromEncodedObject(v, |
| 2350 | Py_FileSystemDefaultEncoding, |
| 2351 | "strict"); |
| 2352 | if (w != NULL) { |
| 2353 | Py_DECREF(v); |
| 2354 | v = w; |
| 2355 | } |
| 2356 | else { |
| 2357 | /* fall back to the original byte string, as |
| 2358 | discussed in patch #683592 */ |
| 2359 | PyErr_Clear(); |
| 2360 | } |
| 2361 | } |
Just van Rossum | 46c9784 | 2003-02-25 21:42:15 +0000 | [diff] [blame] | 2362 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2363 | if (PyList_Append(d, v) != 0) { |
| 2364 | Py_DECREF(v); |
| 2365 | Py_DECREF(d); |
| 2366 | d = NULL; |
| 2367 | break; |
| 2368 | } |
| 2369 | Py_DECREF(v); |
| 2370 | } |
| 2371 | closedir(dirp); |
| 2372 | PyMem_Free(name); |
Guido van Rossum | 0ee42cd | 1991-04-08 21:01:03 +0000 | [diff] [blame] | 2373 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2374 | return d; |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 2375 | |
Tim Peters | 0bb44a4 | 2000-09-15 07:44:49 +0000 | [diff] [blame] | 2376 | #endif /* which OS */ |
| 2377 | } /* end of posix_listdir */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2378 | |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 2379 | #ifdef MS_WINDOWS |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 2380 | /* A helper function for abspath on win32 */ |
| 2381 | static PyObject * |
| 2382 | posix__getfullpathname(PyObject *self, PyObject *args) |
| 2383 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2384 | /* assume encoded strings won't more than double no of chars */ |
| 2385 | char inbuf[MAX_PATH*2]; |
| 2386 | char *inbufp = inbuf; |
| 2387 | Py_ssize_t insize = sizeof(inbuf); |
| 2388 | char outbuf[MAX_PATH*2]; |
| 2389 | char *temp; |
Hirokazu Yamamoto | b24bb27 | 2009-05-17 02:52:09 +0000 | [diff] [blame] | 2390 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2391 | PyUnicodeObject *po; |
| 2392 | if (PyArg_ParseTuple(args, "U|:_getfullpathname", &po)) { |
| 2393 | Py_UNICODE *wpath = PyUnicode_AS_UNICODE(po); |
| 2394 | Py_UNICODE woutbuf[MAX_PATH*2], *woutbufp = woutbuf; |
| 2395 | Py_UNICODE *wtemp; |
| 2396 | DWORD result; |
| 2397 | PyObject *v; |
| 2398 | result = GetFullPathNameW(wpath, |
| 2399 | sizeof(woutbuf)/sizeof(woutbuf[0]), |
| 2400 | woutbuf, &wtemp); |
| 2401 | if (result > sizeof(woutbuf)/sizeof(woutbuf[0])) { |
| 2402 | woutbufp = malloc(result * sizeof(Py_UNICODE)); |
| 2403 | if (!woutbufp) |
| 2404 | return PyErr_NoMemory(); |
| 2405 | result = GetFullPathNameW(wpath, result, woutbufp, &wtemp); |
| 2406 | } |
| 2407 | if (result) |
| 2408 | v = PyUnicode_FromUnicode(woutbufp, wcslen(woutbufp)); |
| 2409 | else |
| 2410 | v = win32_error_unicode("GetFullPathNameW", wpath); |
| 2411 | if (woutbufp != woutbuf) |
| 2412 | free(woutbufp); |
| 2413 | return v; |
| 2414 | } |
| 2415 | /* Drop the argument parsing error as narrow strings |
| 2416 | are also valid. */ |
| 2417 | PyErr_Clear(); |
Hirokazu Yamamoto | b24bb27 | 2009-05-17 02:52:09 +0000 | [diff] [blame] | 2418 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2419 | if (!PyArg_ParseTuple (args, "et#:_getfullpathname", |
| 2420 | Py_FileSystemDefaultEncoding, &inbufp, |
| 2421 | &insize)) |
| 2422 | return NULL; |
| 2423 | if (!GetFullPathName(inbuf, sizeof(outbuf)/sizeof(outbuf[0]), |
| 2424 | outbuf, &temp)) |
| 2425 | return win32_error("GetFullPathName", inbuf); |
| 2426 | if (PyUnicode_Check(PyTuple_GetItem(args, 0))) { |
| 2427 | return PyUnicode_Decode(outbuf, strlen(outbuf), |
| 2428 | Py_FileSystemDefaultEncoding, NULL); |
| 2429 | } |
| 2430 | return PyString_FromString(outbuf); |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 2431 | } /* end of posix__getfullpathname */ |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 2432 | #endif /* MS_WINDOWS */ |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 2433 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2434 | PyDoc_STRVAR(posix_mkdir__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 2435 | "mkdir(path [, mode=0777])\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2436 | Create a directory."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2437 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2438 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 2439 | posix_mkdir(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2440 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2441 | int res; |
| 2442 | char *path = NULL; |
| 2443 | int mode = 0777; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2444 | |
Hirokazu Yamamoto | b24bb27 | 2009-05-17 02:52:09 +0000 | [diff] [blame] | 2445 | #ifdef MS_WINDOWS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2446 | PyUnicodeObject *po; |
| 2447 | if (PyArg_ParseTuple(args, "U|i:mkdir", &po, &mode)) { |
| 2448 | Py_BEGIN_ALLOW_THREADS |
| 2449 | /* PyUnicode_AS_UNICODE OK without thread lock as |
| 2450 | it is a simple dereference. */ |
| 2451 | res = CreateDirectoryW(PyUnicode_AS_UNICODE(po), NULL); |
| 2452 | Py_END_ALLOW_THREADS |
| 2453 | if (!res) |
| 2454 | return win32_error_unicode("mkdir", PyUnicode_AS_UNICODE(po)); |
| 2455 | Py_INCREF(Py_None); |
| 2456 | return Py_None; |
| 2457 | } |
| 2458 | /* Drop the argument parsing error as narrow strings |
| 2459 | are also valid. */ |
| 2460 | PyErr_Clear(); |
| 2461 | if (!PyArg_ParseTuple(args, "et|i:mkdir", |
| 2462 | Py_FileSystemDefaultEncoding, &path, &mode)) |
| 2463 | return NULL; |
| 2464 | Py_BEGIN_ALLOW_THREADS |
| 2465 | /* PyUnicode_AS_UNICODE OK without thread lock as |
| 2466 | it is a simple dereference. */ |
| 2467 | res = CreateDirectoryA(path, NULL); |
| 2468 | Py_END_ALLOW_THREADS |
| 2469 | if (!res) { |
| 2470 | win32_error("mkdir", path); |
| 2471 | PyMem_Free(path); |
| 2472 | return NULL; |
| 2473 | } |
| 2474 | PyMem_Free(path); |
| 2475 | Py_INCREF(Py_None); |
| 2476 | return Py_None; |
Hirokazu Yamamoto | b24bb27 | 2009-05-17 02:52:09 +0000 | [diff] [blame] | 2477 | #else /* MS_WINDOWS */ |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2478 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2479 | if (!PyArg_ParseTuple(args, "et|i:mkdir", |
| 2480 | Py_FileSystemDefaultEncoding, &path, &mode)) |
| 2481 | return NULL; |
| 2482 | Py_BEGIN_ALLOW_THREADS |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 2483 | #if ( defined(__WATCOMC__) || defined(PYCC_VACPP) ) && !defined(__QNX__) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2484 | res = mkdir(path); |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 2485 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2486 | res = mkdir(path, mode); |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 2487 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2488 | Py_END_ALLOW_THREADS |
| 2489 | if (res < 0) |
| 2490 | return posix_error_with_allocated_filename(path); |
| 2491 | PyMem_Free(path); |
| 2492 | Py_INCREF(Py_None); |
| 2493 | return Py_None; |
Hirokazu Yamamoto | b24bb27 | 2009-05-17 02:52:09 +0000 | [diff] [blame] | 2494 | #endif /* MS_WINDOWS */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2495 | } |
| 2496 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2497 | |
Neal Norwitz | 1818ed7 | 2006-03-26 00:29:48 +0000 | [diff] [blame] | 2498 | /* sys/resource.h is needed for at least: wait3(), wait4(), broken nice. */ |
| 2499 | #if defined(HAVE_SYS_RESOURCE_H) |
Thomas Wouters | e38b2f1 | 2001-07-11 22:35:31 +0000 | [diff] [blame] | 2500 | #include <sys/resource.h> |
| 2501 | #endif |
Thomas Wouters | e38b2f1 | 2001-07-11 22:35:31 +0000 | [diff] [blame] | 2502 | |
Neal Norwitz | 1818ed7 | 2006-03-26 00:29:48 +0000 | [diff] [blame] | 2503 | |
| 2504 | #ifdef HAVE_NICE |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2505 | PyDoc_STRVAR(posix_nice__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 2506 | "nice(inc) -> new_priority\n\n\ |
| 2507 | Decrease the priority of process by inc and return the new priority."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2508 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2509 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 2510 | posix_nice(PyObject *self, PyObject *args) |
Guido van Rossum | 775f4da | 1993-01-09 17:18:52 +0000 | [diff] [blame] | 2511 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2512 | int increment, value; |
Guido van Rossum | 775f4da | 1993-01-09 17:18:52 +0000 | [diff] [blame] | 2513 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2514 | if (!PyArg_ParseTuple(args, "i:nice", &increment)) |
| 2515 | return NULL; |
Thomas Wouters | c2c12dc | 2001-07-11 14:45:34 +0000 | [diff] [blame] | 2516 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2517 | /* There are two flavours of 'nice': one that returns the new |
| 2518 | priority (as required by almost all standards out there) and the |
| 2519 | Linux/FreeBSD/BSDI one, which returns '0' on success and advices |
| 2520 | the use of getpriority() to get the new priority. |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 2521 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2522 | If we are of the nice family that returns the new priority, we |
| 2523 | need to clear errno before the call, and check if errno is filled |
| 2524 | before calling posix_error() on a returnvalue of -1, because the |
| 2525 | -1 may be the actual new priority! */ |
Thomas Wouters | c2c12dc | 2001-07-11 14:45:34 +0000 | [diff] [blame] | 2526 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2527 | errno = 0; |
| 2528 | value = nice(increment); |
Thomas Wouters | e38b2f1 | 2001-07-11 22:35:31 +0000 | [diff] [blame] | 2529 | #if defined(HAVE_BROKEN_NICE) && defined(HAVE_GETPRIORITY) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2530 | if (value == 0) |
| 2531 | value = getpriority(PRIO_PROCESS, 0); |
Thomas Wouters | c2c12dc | 2001-07-11 14:45:34 +0000 | [diff] [blame] | 2532 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2533 | if (value == -1 && errno != 0) |
| 2534 | /* either nice() or getpriority() returned an error */ |
| 2535 | return posix_error(); |
| 2536 | return PyInt_FromLong((long) value); |
Guido van Rossum | 775f4da | 1993-01-09 17:18:52 +0000 | [diff] [blame] | 2537 | } |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 2538 | #endif /* HAVE_NICE */ |
Guido van Rossum | 1ff6cb4 | 1991-04-08 20:59:13 +0000 | [diff] [blame] | 2539 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2540 | PyDoc_STRVAR(posix_rename__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 2541 | "rename(old, new)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2542 | Rename a file or directory."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2543 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2544 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 2545 | posix_rename(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2546 | { |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2547 | #ifdef MS_WINDOWS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2548 | PyObject *o1, *o2; |
| 2549 | char *p1, *p2; |
| 2550 | BOOL result; |
| 2551 | if (!PyArg_ParseTuple(args, "OO:rename", &o1, &o2)) |
| 2552 | goto error; |
| 2553 | if (!convert_to_unicode(&o1)) |
| 2554 | goto error; |
| 2555 | if (!convert_to_unicode(&o2)) { |
| 2556 | Py_DECREF(o1); |
| 2557 | goto error; |
| 2558 | } |
| 2559 | Py_BEGIN_ALLOW_THREADS |
| 2560 | result = MoveFileW(PyUnicode_AsUnicode(o1), |
| 2561 | PyUnicode_AsUnicode(o2)); |
| 2562 | Py_END_ALLOW_THREADS |
| 2563 | Py_DECREF(o1); |
| 2564 | Py_DECREF(o2); |
| 2565 | if (!result) |
| 2566 | return win32_error("rename", NULL); |
| 2567 | Py_INCREF(Py_None); |
| 2568 | return Py_None; |
Hirokazu Yamamoto | a3c5609 | 2009-06-28 10:23:00 +0000 | [diff] [blame] | 2569 | error: |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2570 | PyErr_Clear(); |
| 2571 | if (!PyArg_ParseTuple(args, "ss:rename", &p1, &p2)) |
| 2572 | return NULL; |
| 2573 | Py_BEGIN_ALLOW_THREADS |
| 2574 | result = MoveFileA(p1, p2); |
| 2575 | Py_END_ALLOW_THREADS |
| 2576 | if (!result) |
| 2577 | return win32_error("rename", NULL); |
| 2578 | Py_INCREF(Py_None); |
| 2579 | return Py_None; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2580 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2581 | return posix_2str(args, "etet:rename", rename); |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2582 | #endif |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2583 | } |
| 2584 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2585 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2586 | PyDoc_STRVAR(posix_rmdir__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 2587 | "rmdir(path)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2588 | Remove a directory."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2589 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2590 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 2591 | posix_rmdir(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2592 | { |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2593 | #ifdef MS_WINDOWS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2594 | return win32_1str(args, "rmdir", "s:rmdir", RemoveDirectoryA, "U:rmdir", RemoveDirectoryW); |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2595 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2596 | return posix_1str(args, "et:rmdir", rmdir); |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2597 | #endif |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2598 | } |
| 2599 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2600 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2601 | PyDoc_STRVAR(posix_stat__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 2602 | "stat(path) -> stat result\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2603 | Perform a stat system call on the given path."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2604 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2605 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 2606 | posix_stat(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2607 | { |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2608 | #ifdef MS_WINDOWS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2609 | return posix_do_stat(self, args, "et:stat", STAT, "U:stat", win32_wstat); |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2610 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2611 | return posix_do_stat(self, args, "et:stat", STAT, NULL, NULL); |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2612 | #endif |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2613 | } |
| 2614 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2615 | |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 2616 | #ifdef HAVE_SYSTEM |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2617 | PyDoc_STRVAR(posix_system__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 2618 | "system(command) -> exit_status\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2619 | Execute the command (a string) in a subshell."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2620 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2621 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 2622 | posix_system(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2623 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2624 | char *command; |
| 2625 | long sts; |
| 2626 | if (!PyArg_ParseTuple(args, "s:system", &command)) |
| 2627 | return NULL; |
| 2628 | Py_BEGIN_ALLOW_THREADS |
| 2629 | sts = system(command); |
| 2630 | Py_END_ALLOW_THREADS |
| 2631 | return PyInt_FromLong(sts); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2632 | } |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 2633 | #endif |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2634 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2635 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2636 | PyDoc_STRVAR(posix_umask__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 2637 | "umask(new_mask) -> old_mask\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2638 | Set the current numeric umask and return the previous umask."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2639 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2640 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 2641 | posix_umask(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2642 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2643 | int i; |
| 2644 | if (!PyArg_ParseTuple(args, "i:umask", &i)) |
| 2645 | return NULL; |
| 2646 | i = (int)umask(i); |
| 2647 | if (i < 0) |
| 2648 | return posix_error(); |
| 2649 | return PyInt_FromLong((long)i); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2650 | } |
| 2651 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2652 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2653 | PyDoc_STRVAR(posix_unlink__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 2654 | "unlink(path)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2655 | Remove a file (same as remove(path))."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2656 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2657 | PyDoc_STRVAR(posix_remove__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 2658 | "remove(path)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2659 | Remove a file (same as unlink(path))."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2660 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2661 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 2662 | posix_unlink(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2663 | { |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2664 | #ifdef MS_WINDOWS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2665 | return win32_1str(args, "remove", "s:remove", DeleteFileA, "U:remove", DeleteFileW); |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2666 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2667 | return posix_1str(args, "et:remove", unlink); |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2668 | #endif |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2669 | } |
| 2670 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2671 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 2672 | #ifdef HAVE_UNAME |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2673 | PyDoc_STRVAR(posix_uname__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 2674 | "uname() -> (sysname, nodename, release, version, machine)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2675 | Return a tuple identifying the current operating system."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2676 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2677 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 2678 | posix_uname(PyObject *self, PyObject *noargs) |
Guido van Rossum | c39de5f | 1992-02-05 11:15:54 +0000 | [diff] [blame] | 2679 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2680 | struct utsname u; |
| 2681 | int res; |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 2682 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2683 | Py_BEGIN_ALLOW_THREADS |
| 2684 | res = uname(&u); |
| 2685 | Py_END_ALLOW_THREADS |
| 2686 | if (res < 0) |
| 2687 | return posix_error(); |
| 2688 | return Py_BuildValue("(sssss)", |
| 2689 | u.sysname, |
| 2690 | u.nodename, |
| 2691 | u.release, |
| 2692 | u.version, |
| 2693 | u.machine); |
Guido van Rossum | c39de5f | 1992-02-05 11:15:54 +0000 | [diff] [blame] | 2694 | } |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 2695 | #endif /* HAVE_UNAME */ |
Guido van Rossum | 1ff6cb4 | 1991-04-08 20:59:13 +0000 | [diff] [blame] | 2696 | |
Martin v. Löwis | 6aa9fdb | 2002-09-10 09:16:13 +0000 | [diff] [blame] | 2697 | static int |
| 2698 | extract_time(PyObject *t, long* sec, long* usec) |
| 2699 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2700 | long intval; |
| 2701 | if (PyFloat_Check(t)) { |
| 2702 | double tval = PyFloat_AsDouble(t); |
| 2703 | PyObject *intobj = Py_TYPE(t)->tp_as_number->nb_int(t); |
| 2704 | if (!intobj) |
| 2705 | return -1; |
| 2706 | intval = PyInt_AsLong(intobj); |
| 2707 | Py_DECREF(intobj); |
| 2708 | if (intval == -1 && PyErr_Occurred()) |
| 2709 | return -1; |
| 2710 | *sec = intval; |
| 2711 | *usec = (long)((tval - intval) * 1e6); /* can't exceed 1000000 */ |
| 2712 | if (*usec < 0) |
| 2713 | /* If rounding gave us a negative number, |
| 2714 | truncate. */ |
| 2715 | *usec = 0; |
Martin v. Löwis | 076b209 | 2002-09-10 15:04:41 +0000 | [diff] [blame] | 2716 | return 0; |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2717 | } |
| 2718 | intval = PyInt_AsLong(t); |
| 2719 | if (intval == -1 && PyErr_Occurred()) |
| 2720 | return -1; |
| 2721 | *sec = intval; |
| 2722 | *usec = 0; |
| 2723 | return 0; |
Martin v. Löwis | 6aa9fdb | 2002-09-10 09:16:13 +0000 | [diff] [blame] | 2724 | } |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2725 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2726 | PyDoc_STRVAR(posix_utime__doc__, |
Georg Brandl | 9e5b5e4 | 2006-05-17 14:18:20 +0000 | [diff] [blame] | 2727 | "utime(path, (atime, mtime))\n\ |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 2728 | utime(path, None)\n\n\ |
Barry Warsaw | 3cef856 | 2000-05-01 16:17:24 +0000 | [diff] [blame] | 2729 | Set the access and modified time of the file to the given values. If the\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2730 | second form is used, set the access and modified times to the current time."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2731 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2732 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 2733 | posix_utime(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2734 | { |
Hirokazu Yamamoto | b24bb27 | 2009-05-17 02:52:09 +0000 | [diff] [blame] | 2735 | #ifdef MS_WINDOWS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2736 | PyObject *arg; |
| 2737 | PyUnicodeObject *obwpath; |
| 2738 | wchar_t *wpath = NULL; |
| 2739 | char *apath = NULL; |
| 2740 | HANDLE hFile; |
| 2741 | long atimesec, mtimesec, ausec, musec; |
| 2742 | FILETIME atime, mtime; |
| 2743 | PyObject *result = NULL; |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 2744 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2745 | if (PyArg_ParseTuple(args, "UO|:utime", &obwpath, &arg)) { |
| 2746 | wpath = PyUnicode_AS_UNICODE(obwpath); |
| 2747 | Py_BEGIN_ALLOW_THREADS |
| 2748 | hFile = CreateFileW(wpath, FILE_WRITE_ATTRIBUTES, 0, |
| 2749 | NULL, OPEN_EXISTING, |
| 2750 | FILE_FLAG_BACKUP_SEMANTICS, NULL); |
| 2751 | Py_END_ALLOW_THREADS |
| 2752 | if (hFile == INVALID_HANDLE_VALUE) |
| 2753 | return win32_error_unicode("utime", wpath); |
| 2754 | } else |
| 2755 | /* Drop the argument parsing error as narrow strings |
| 2756 | are also valid. */ |
| 2757 | PyErr_Clear(); |
Hirokazu Yamamoto | a3c5609 | 2009-06-28 10:23:00 +0000 | [diff] [blame] | 2758 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2759 | if (!wpath) { |
| 2760 | if (!PyArg_ParseTuple(args, "etO:utime", |
| 2761 | Py_FileSystemDefaultEncoding, &apath, &arg)) |
| 2762 | return NULL; |
| 2763 | Py_BEGIN_ALLOW_THREADS |
| 2764 | hFile = CreateFileA(apath, FILE_WRITE_ATTRIBUTES, 0, |
| 2765 | NULL, OPEN_EXISTING, |
| 2766 | FILE_FLAG_BACKUP_SEMANTICS, NULL); |
| 2767 | Py_END_ALLOW_THREADS |
| 2768 | if (hFile == INVALID_HANDLE_VALUE) { |
| 2769 | win32_error("utime", apath); |
| 2770 | PyMem_Free(apath); |
| 2771 | return NULL; |
| 2772 | } |
| 2773 | PyMem_Free(apath); |
| 2774 | } |
| 2775 | |
| 2776 | if (arg == Py_None) { |
| 2777 | SYSTEMTIME now; |
| 2778 | GetSystemTime(&now); |
| 2779 | if (!SystemTimeToFileTime(&now, &mtime) || |
| 2780 | !SystemTimeToFileTime(&now, &atime)) { |
| 2781 | win32_error("utime", NULL); |
| 2782 | goto done; |
| 2783 | } |
| 2784 | } |
| 2785 | else if (!PyTuple_Check(arg) || PyTuple_Size(arg) != 2) { |
| 2786 | PyErr_SetString(PyExc_TypeError, |
| 2787 | "utime() arg 2 must be a tuple (atime, mtime)"); |
| 2788 | goto done; |
| 2789 | } |
| 2790 | else { |
| 2791 | if (extract_time(PyTuple_GET_ITEM(arg, 0), |
| 2792 | &atimesec, &ausec) == -1) |
| 2793 | goto done; |
| 2794 | time_t_to_FILE_TIME(atimesec, 1000*ausec, &atime); |
| 2795 | if (extract_time(PyTuple_GET_ITEM(arg, 1), |
| 2796 | &mtimesec, &musec) == -1) |
| 2797 | goto done; |
| 2798 | time_t_to_FILE_TIME(mtimesec, 1000*musec, &mtime); |
| 2799 | } |
| 2800 | if (!SetFileTime(hFile, NULL, &atime, &mtime)) { |
| 2801 | /* Avoid putting the file name into the error here, |
| 2802 | as that may confuse the user into believing that |
| 2803 | something is wrong with the file, when it also |
| 2804 | could be the time stamp that gives a problem. */ |
| 2805 | win32_error("utime", NULL); |
| 2806 | } |
| 2807 | Py_INCREF(Py_None); |
| 2808 | result = Py_None; |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 2809 | done: |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2810 | CloseHandle(hFile); |
| 2811 | return result; |
Hirokazu Yamamoto | b24bb27 | 2009-05-17 02:52:09 +0000 | [diff] [blame] | 2812 | #else /* MS_WINDOWS */ |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 2813 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2814 | char *path = NULL; |
| 2815 | long atime, mtime, ausec, musec; |
| 2816 | int res; |
| 2817 | PyObject* arg; |
Guido van Rossum | 1ff6cb4 | 1991-04-08 20:59:13 +0000 | [diff] [blame] | 2818 | |
Martin v. Löwis | 6aa9fdb | 2002-09-10 09:16:13 +0000 | [diff] [blame] | 2819 | #if defined(HAVE_UTIMES) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2820 | struct timeval buf[2]; |
Martin v. Löwis | 6aa9fdb | 2002-09-10 09:16:13 +0000 | [diff] [blame] | 2821 | #define ATIME buf[0].tv_sec |
| 2822 | #define MTIME buf[1].tv_sec |
| 2823 | #elif defined(HAVE_UTIME_H) |
Guido van Rossum | 6d8841c | 1997-08-14 19:57:39 +0000 | [diff] [blame] | 2824 | /* XXX should define struct utimbuf instead, above */ |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2825 | struct utimbuf buf; |
Guido van Rossum | 1ff6cb4 | 1991-04-08 20:59:13 +0000 | [diff] [blame] | 2826 | #define ATIME buf.actime |
| 2827 | #define MTIME buf.modtime |
| 2828 | #define UTIME_ARG &buf |
Martin v. Löwis | 6aa9fdb | 2002-09-10 09:16:13 +0000 | [diff] [blame] | 2829 | #else /* HAVE_UTIMES */ |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2830 | time_t buf[2]; |
Guido van Rossum | 1ff6cb4 | 1991-04-08 20:59:13 +0000 | [diff] [blame] | 2831 | #define ATIME buf[0] |
| 2832 | #define MTIME buf[1] |
| 2833 | #define UTIME_ARG buf |
Martin v. Löwis | 6aa9fdb | 2002-09-10 09:16:13 +0000 | [diff] [blame] | 2834 | #endif /* HAVE_UTIMES */ |
Guido van Rossum | 1ff6cb4 | 1991-04-08 20:59:13 +0000 | [diff] [blame] | 2835 | |
Mark Hammond | 817c929 | 2003-12-03 01:22:38 +0000 | [diff] [blame] | 2836 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2837 | if (!PyArg_ParseTuple(args, "etO:utime", |
| 2838 | Py_FileSystemDefaultEncoding, &path, &arg)) |
| 2839 | return NULL; |
| 2840 | if (arg == Py_None) { |
| 2841 | /* optional time values not given */ |
| 2842 | Py_BEGIN_ALLOW_THREADS |
| 2843 | res = utime(path, NULL); |
| 2844 | Py_END_ALLOW_THREADS |
| 2845 | } |
| 2846 | else if (!PyTuple_Check(arg) || PyTuple_Size(arg) != 2) { |
| 2847 | PyErr_SetString(PyExc_TypeError, |
| 2848 | "utime() arg 2 must be a tuple (atime, mtime)"); |
| 2849 | PyMem_Free(path); |
| 2850 | return NULL; |
| 2851 | } |
| 2852 | else { |
| 2853 | if (extract_time(PyTuple_GET_ITEM(arg, 0), |
| 2854 | &atime, &ausec) == -1) { |
| 2855 | PyMem_Free(path); |
| 2856 | return NULL; |
| 2857 | } |
| 2858 | if (extract_time(PyTuple_GET_ITEM(arg, 1), |
| 2859 | &mtime, &musec) == -1) { |
| 2860 | PyMem_Free(path); |
| 2861 | return NULL; |
| 2862 | } |
| 2863 | ATIME = atime; |
| 2864 | MTIME = mtime; |
Martin v. Löwis | 6aa9fdb | 2002-09-10 09:16:13 +0000 | [diff] [blame] | 2865 | #ifdef HAVE_UTIMES |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2866 | buf[0].tv_usec = ausec; |
| 2867 | buf[1].tv_usec = musec; |
| 2868 | Py_BEGIN_ALLOW_THREADS |
| 2869 | res = utimes(path, buf); |
| 2870 | Py_END_ALLOW_THREADS |
Martin v. Löwis | 6aa9fdb | 2002-09-10 09:16:13 +0000 | [diff] [blame] | 2871 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2872 | Py_BEGIN_ALLOW_THREADS |
| 2873 | res = utime(path, UTIME_ARG); |
| 2874 | Py_END_ALLOW_THREADS |
Mark Hammond | 817c929 | 2003-12-03 01:22:38 +0000 | [diff] [blame] | 2875 | #endif /* HAVE_UTIMES */ |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2876 | } |
| 2877 | if (res < 0) { |
| 2878 | return posix_error_with_allocated_filename(path); |
| 2879 | } |
| 2880 | PyMem_Free(path); |
| 2881 | Py_INCREF(Py_None); |
| 2882 | return Py_None; |
Guido van Rossum | 1ff6cb4 | 1991-04-08 20:59:13 +0000 | [diff] [blame] | 2883 | #undef UTIME_ARG |
| 2884 | #undef ATIME |
| 2885 | #undef MTIME |
Hirokazu Yamamoto | b24bb27 | 2009-05-17 02:52:09 +0000 | [diff] [blame] | 2886 | #endif /* MS_WINDOWS */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2887 | } |
| 2888 | |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 2889 | |
Guido van Rossum | 3b06619 | 1991-06-04 19:40:25 +0000 | [diff] [blame] | 2890 | /* Process operations */ |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 2891 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2892 | PyDoc_STRVAR(posix__exit__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 2893 | "_exit(status)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2894 | Exit to the system with specified status, without normal exit processing."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2895 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2896 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 2897 | posix__exit(PyObject *self, PyObject *args) |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 2898 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2899 | int sts; |
| 2900 | if (!PyArg_ParseTuple(args, "i:_exit", &sts)) |
| 2901 | return NULL; |
| 2902 | _exit(sts); |
| 2903 | return NULL; /* Make gcc -Wall happy */ |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 2904 | } |
| 2905 | |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 2906 | #if defined(HAVE_EXECV) || defined(HAVE_SPAWNV) |
| 2907 | static void |
Martin v. Löwis | 725507b | 2006-03-07 12:08:51 +0000 | [diff] [blame] | 2908 | free_string_array(char **array, Py_ssize_t count) |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 2909 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2910 | Py_ssize_t i; |
| 2911 | for (i = 0; i < count; i++) |
| 2912 | PyMem_Free(array[i]); |
| 2913 | PyMem_DEL(array); |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 2914 | } |
| 2915 | #endif |
| 2916 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2917 | |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 2918 | #ifdef HAVE_EXECV |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2919 | PyDoc_STRVAR(posix_execv__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 2920 | "execv(path, args)\n\n\ |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2921 | Execute an executable path with arguments, replacing current process.\n\ |
| 2922 | \n\ |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2923 | path: path of executable file\n\ |
| 2924 | args: tuple or list of strings"); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2925 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2926 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 2927 | posix_execv(PyObject *self, PyObject *args) |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 2928 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2929 | char *path; |
| 2930 | PyObject *argv; |
| 2931 | char **argvlist; |
| 2932 | Py_ssize_t i, argc; |
| 2933 | PyObject *(*getitem)(PyObject *, Py_ssize_t); |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 2934 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2935 | /* execv has two arguments: (path, argv), where |
| 2936 | argv is a list or tuple of strings. */ |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 2937 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2938 | if (!PyArg_ParseTuple(args, "etO:execv", |
| 2939 | Py_FileSystemDefaultEncoding, |
| 2940 | &path, &argv)) |
| 2941 | return NULL; |
| 2942 | if (PyList_Check(argv)) { |
| 2943 | argc = PyList_Size(argv); |
| 2944 | getitem = PyList_GetItem; |
| 2945 | } |
| 2946 | else if (PyTuple_Check(argv)) { |
| 2947 | argc = PyTuple_Size(argv); |
| 2948 | getitem = PyTuple_GetItem; |
| 2949 | } |
| 2950 | else { |
| 2951 | PyErr_SetString(PyExc_TypeError, "execv() arg 2 must be a tuple or list"); |
| 2952 | PyMem_Free(path); |
| 2953 | return NULL; |
| 2954 | } |
| 2955 | if (argc < 1) { |
| 2956 | PyErr_SetString(PyExc_ValueError, "execv() arg 2 must not be empty"); |
| 2957 | PyMem_Free(path); |
| 2958 | return NULL; |
| 2959 | } |
Guido van Rossum | 50422b4 | 2000-04-26 20:34:28 +0000 | [diff] [blame] | 2960 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2961 | argvlist = PyMem_NEW(char *, argc+1); |
| 2962 | if (argvlist == NULL) { |
| 2963 | PyMem_Free(path); |
| 2964 | return PyErr_NoMemory(); |
| 2965 | } |
| 2966 | for (i = 0; i < argc; i++) { |
| 2967 | if (!PyArg_Parse((*getitem)(argv, i), "et", |
| 2968 | Py_FileSystemDefaultEncoding, |
| 2969 | &argvlist[i])) { |
| 2970 | free_string_array(argvlist, i); |
| 2971 | PyErr_SetString(PyExc_TypeError, |
| 2972 | "execv() arg 2 must contain only strings"); |
| 2973 | PyMem_Free(path); |
| 2974 | return NULL; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 2975 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2976 | } |
| 2977 | } |
| 2978 | argvlist[argc] = NULL; |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 2979 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2980 | execv(path, argvlist); |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 2981 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2982 | /* If we get here it's definitely an error */ |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 2983 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2984 | free_string_array(argvlist, argc); |
| 2985 | PyMem_Free(path); |
| 2986 | return posix_error(); |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 2987 | } |
| 2988 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2989 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2990 | PyDoc_STRVAR(posix_execve__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 2991 | "execve(path, args, env)\n\n\ |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2992 | Execute a path with arguments and environment, replacing current process.\n\ |
| 2993 | \n\ |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 2994 | path: path of executable file\n\ |
| 2995 | args: tuple or list of arguments\n\ |
| 2996 | env: dictionary of strings mapping to strings"); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2997 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2998 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 2999 | posix_execve(PyObject *self, PyObject *args) |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 3000 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3001 | char *path; |
| 3002 | PyObject *argv, *env; |
| 3003 | char **argvlist; |
| 3004 | char **envlist; |
| 3005 | PyObject *key, *val, *keys=NULL, *vals=NULL; |
| 3006 | Py_ssize_t i, pos, argc, envc; |
| 3007 | PyObject *(*getitem)(PyObject *, Py_ssize_t); |
| 3008 | Py_ssize_t lastarg = 0; |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 3009 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3010 | /* execve has three arguments: (path, argv, env), where |
| 3011 | argv is a list or tuple of strings and env is a dictionary |
| 3012 | like posix.environ. */ |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 3013 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3014 | if (!PyArg_ParseTuple(args, "etOO:execve", |
| 3015 | Py_FileSystemDefaultEncoding, |
| 3016 | &path, &argv, &env)) |
| 3017 | return NULL; |
| 3018 | if (PyList_Check(argv)) { |
| 3019 | argc = PyList_Size(argv); |
| 3020 | getitem = PyList_GetItem; |
| 3021 | } |
| 3022 | else if (PyTuple_Check(argv)) { |
| 3023 | argc = PyTuple_Size(argv); |
| 3024 | getitem = PyTuple_GetItem; |
| 3025 | } |
| 3026 | else { |
| 3027 | PyErr_SetString(PyExc_TypeError, |
| 3028 | "execve() arg 2 must be a tuple or list"); |
| 3029 | goto fail_0; |
| 3030 | } |
| 3031 | if (!PyMapping_Check(env)) { |
| 3032 | PyErr_SetString(PyExc_TypeError, |
| 3033 | "execve() arg 3 must be a mapping object"); |
| 3034 | goto fail_0; |
| 3035 | } |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 3036 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3037 | argvlist = PyMem_NEW(char *, argc+1); |
| 3038 | if (argvlist == NULL) { |
| 3039 | PyErr_NoMemory(); |
| 3040 | goto fail_0; |
| 3041 | } |
| 3042 | for (i = 0; i < argc; i++) { |
| 3043 | if (!PyArg_Parse((*getitem)(argv, i), |
| 3044 | "et;execve() arg 2 must contain only strings", |
| 3045 | Py_FileSystemDefaultEncoding, |
| 3046 | &argvlist[i])) |
| 3047 | { |
| 3048 | lastarg = i; |
| 3049 | goto fail_1; |
| 3050 | } |
| 3051 | } |
| 3052 | lastarg = argc; |
| 3053 | argvlist[argc] = NULL; |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 3054 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3055 | i = PyMapping_Size(env); |
| 3056 | if (i < 0) |
| 3057 | goto fail_1; |
| 3058 | envlist = PyMem_NEW(char *, i + 1); |
| 3059 | if (envlist == NULL) { |
| 3060 | PyErr_NoMemory(); |
| 3061 | goto fail_1; |
| 3062 | } |
| 3063 | envc = 0; |
| 3064 | keys = PyMapping_Keys(env); |
| 3065 | vals = PyMapping_Values(env); |
| 3066 | if (!keys || !vals) |
| 3067 | goto fail_2; |
| 3068 | if (!PyList_Check(keys) || !PyList_Check(vals)) { |
| 3069 | PyErr_SetString(PyExc_TypeError, |
| 3070 | "execve(): env.keys() or env.values() is not a list"); |
| 3071 | goto fail_2; |
| 3072 | } |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 3073 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3074 | for (pos = 0; pos < i; pos++) { |
| 3075 | char *p, *k, *v; |
| 3076 | size_t len; |
Barry Warsaw | 5ed19dc | 1997-01-29 15:08:24 +0000 | [diff] [blame] | 3077 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3078 | key = PyList_GetItem(keys, pos); |
| 3079 | val = PyList_GetItem(vals, pos); |
| 3080 | if (!key || !val) |
| 3081 | goto fail_2; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 3082 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3083 | if (!PyArg_Parse( |
| 3084 | key, |
| 3085 | "s;execve() arg 3 contains a non-string key", |
| 3086 | &k) || |
| 3087 | !PyArg_Parse( |
| 3088 | val, |
| 3089 | "s;execve() arg 3 contains a non-string value", |
| 3090 | &v)) |
| 3091 | { |
| 3092 | goto fail_2; |
| 3093 | } |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 3094 | |
| 3095 | #if defined(PYOS_OS2) |
| 3096 | /* Omit Pseudo-Env Vars that Would Confuse Programs if Passed On */ |
| 3097 | if (stricmp(k, "BEGINLIBPATH") != 0 && stricmp(k, "ENDLIBPATH") != 0) { |
| 3098 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3099 | len = PyString_Size(key) + PyString_Size(val) + 2; |
| 3100 | p = PyMem_NEW(char, len); |
| 3101 | if (p == NULL) { |
| 3102 | PyErr_NoMemory(); |
| 3103 | goto fail_2; |
| 3104 | } |
| 3105 | PyOS_snprintf(p, len, "%s=%s", k, v); |
| 3106 | envlist[envc++] = p; |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 3107 | #if defined(PYOS_OS2) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3108 | } |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 3109 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3110 | } |
| 3111 | envlist[envc] = 0; |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 3112 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3113 | execve(path, argvlist, envlist); |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 3114 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3115 | /* If we get here it's definitely an error */ |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 3116 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3117 | (void) posix_error(); |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 3118 | |
Guido van Rossum | 0847c5c | 2002-12-13 18:36:22 +0000 | [diff] [blame] | 3119 | fail_2: |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3120 | while (--envc >= 0) |
| 3121 | PyMem_DEL(envlist[envc]); |
| 3122 | PyMem_DEL(envlist); |
Guido van Rossum | 0847c5c | 2002-12-13 18:36:22 +0000 | [diff] [blame] | 3123 | fail_1: |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3124 | free_string_array(argvlist, lastarg); |
| 3125 | Py_XDECREF(vals); |
| 3126 | Py_XDECREF(keys); |
Guido van Rossum | 0847c5c | 2002-12-13 18:36:22 +0000 | [diff] [blame] | 3127 | fail_0: |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3128 | PyMem_Free(path); |
| 3129 | return NULL; |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 3130 | } |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 3131 | #endif /* HAVE_EXECV */ |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 3132 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3133 | |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3134 | #ifdef HAVE_SPAWNV |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3135 | PyDoc_STRVAR(posix_spawnv__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 3136 | "spawnv(mode, path, args)\n\n\ |
Tim Peters | 25059d3 | 2001-12-07 20:35:43 +0000 | [diff] [blame] | 3137 | Execute the program 'path' in a new process.\n\ |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3138 | \n\ |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3139 | mode: mode of process creation\n\ |
| 3140 | path: path of executable file\n\ |
| 3141 | args: tuple or list of strings"); |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3142 | |
| 3143 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 3144 | posix_spawnv(PyObject *self, PyObject *args) |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3145 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3146 | char *path; |
| 3147 | PyObject *argv; |
| 3148 | char **argvlist; |
| 3149 | int mode, i; |
| 3150 | Py_ssize_t argc; |
| 3151 | Py_intptr_t spawnval; |
| 3152 | PyObject *(*getitem)(PyObject *, Py_ssize_t); |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3153 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3154 | /* spawnv has three arguments: (mode, path, argv), where |
| 3155 | argv is a list or tuple of strings. */ |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3156 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3157 | if (!PyArg_ParseTuple(args, "ietO:spawnv", &mode, |
| 3158 | Py_FileSystemDefaultEncoding, |
| 3159 | &path, &argv)) |
| 3160 | return NULL; |
| 3161 | if (PyList_Check(argv)) { |
| 3162 | argc = PyList_Size(argv); |
| 3163 | getitem = PyList_GetItem; |
| 3164 | } |
| 3165 | else if (PyTuple_Check(argv)) { |
| 3166 | argc = PyTuple_Size(argv); |
| 3167 | getitem = PyTuple_GetItem; |
| 3168 | } |
| 3169 | else { |
| 3170 | PyErr_SetString(PyExc_TypeError, |
| 3171 | "spawnv() arg 2 must be a tuple or list"); |
| 3172 | PyMem_Free(path); |
| 3173 | return NULL; |
| 3174 | } |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3175 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3176 | argvlist = PyMem_NEW(char *, argc+1); |
| 3177 | if (argvlist == NULL) { |
| 3178 | PyMem_Free(path); |
| 3179 | return PyErr_NoMemory(); |
| 3180 | } |
| 3181 | for (i = 0; i < argc; i++) { |
| 3182 | if (!PyArg_Parse((*getitem)(argv, i), "et", |
| 3183 | Py_FileSystemDefaultEncoding, |
| 3184 | &argvlist[i])) { |
| 3185 | free_string_array(argvlist, i); |
| 3186 | PyErr_SetString( |
| 3187 | PyExc_TypeError, |
| 3188 | "spawnv() arg 2 must contain only strings"); |
| 3189 | PyMem_Free(path); |
| 3190 | return NULL; |
| 3191 | } |
| 3192 | } |
| 3193 | argvlist[argc] = NULL; |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3194 | |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 3195 | #if defined(PYOS_OS2) && defined(PYCC_GCC) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3196 | Py_BEGIN_ALLOW_THREADS |
| 3197 | spawnval = spawnv(mode, path, argvlist); |
| 3198 | Py_END_ALLOW_THREADS |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 3199 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3200 | if (mode == _OLD_P_OVERLAY) |
| 3201 | mode = _P_OVERLAY; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 3202 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3203 | Py_BEGIN_ALLOW_THREADS |
| 3204 | spawnval = _spawnv(mode, path, argvlist); |
| 3205 | Py_END_ALLOW_THREADS |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 3206 | #endif |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 3207 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3208 | free_string_array(argvlist, argc); |
| 3209 | PyMem_Free(path); |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3210 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3211 | if (spawnval == -1) |
| 3212 | return posix_error(); |
| 3213 | else |
Fredrik Lundh | e25cfd8 | 2000-07-09 13:10:40 +0000 | [diff] [blame] | 3214 | #if SIZEOF_LONG == SIZEOF_VOID_P |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3215 | return Py_BuildValue("l", (long) spawnval); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 3216 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3217 | return Py_BuildValue("L", (PY_LONG_LONG) spawnval); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 3218 | #endif |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3219 | } |
| 3220 | |
| 3221 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3222 | PyDoc_STRVAR(posix_spawnve__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 3223 | "spawnve(mode, path, args, env)\n\n\ |
Tim Peters | 25059d3 | 2001-12-07 20:35:43 +0000 | [diff] [blame] | 3224 | Execute the program 'path' in a new process.\n\ |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3225 | \n\ |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3226 | mode: mode of process creation\n\ |
| 3227 | path: path of executable file\n\ |
| 3228 | args: tuple or list of arguments\n\ |
| 3229 | env: dictionary of strings mapping to strings"); |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3230 | |
| 3231 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 3232 | posix_spawnve(PyObject *self, PyObject *args) |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3233 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3234 | char *path; |
| 3235 | PyObject *argv, *env; |
| 3236 | char **argvlist; |
| 3237 | char **envlist; |
| 3238 | PyObject *key, *val, *keys=NULL, *vals=NULL, *res=NULL; |
| 3239 | int mode, pos, envc; |
| 3240 | Py_ssize_t argc, i; |
| 3241 | Py_intptr_t spawnval; |
| 3242 | PyObject *(*getitem)(PyObject *, Py_ssize_t); |
| 3243 | Py_ssize_t lastarg = 0; |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3244 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3245 | /* spawnve has four arguments: (mode, path, argv, env), where |
| 3246 | argv is a list or tuple of strings and env is a dictionary |
| 3247 | like posix.environ. */ |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3248 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3249 | if (!PyArg_ParseTuple(args, "ietOO:spawnve", &mode, |
| 3250 | Py_FileSystemDefaultEncoding, |
| 3251 | &path, &argv, &env)) |
| 3252 | return NULL; |
| 3253 | if (PyList_Check(argv)) { |
| 3254 | argc = PyList_Size(argv); |
| 3255 | getitem = PyList_GetItem; |
| 3256 | } |
| 3257 | else if (PyTuple_Check(argv)) { |
| 3258 | argc = PyTuple_Size(argv); |
| 3259 | getitem = PyTuple_GetItem; |
| 3260 | } |
| 3261 | else { |
| 3262 | PyErr_SetString(PyExc_TypeError, |
| 3263 | "spawnve() arg 2 must be a tuple or list"); |
| 3264 | goto fail_0; |
| 3265 | } |
| 3266 | if (!PyMapping_Check(env)) { |
| 3267 | PyErr_SetString(PyExc_TypeError, |
| 3268 | "spawnve() arg 3 must be a mapping object"); |
| 3269 | goto fail_0; |
| 3270 | } |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3271 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3272 | argvlist = PyMem_NEW(char *, argc+1); |
| 3273 | if (argvlist == NULL) { |
| 3274 | PyErr_NoMemory(); |
| 3275 | goto fail_0; |
| 3276 | } |
| 3277 | for (i = 0; i < argc; i++) { |
| 3278 | if (!PyArg_Parse((*getitem)(argv, i), |
| 3279 | "et;spawnve() arg 2 must contain only strings", |
| 3280 | Py_FileSystemDefaultEncoding, |
| 3281 | &argvlist[i])) |
| 3282 | { |
| 3283 | lastarg = i; |
| 3284 | goto fail_1; |
| 3285 | } |
| 3286 | } |
| 3287 | lastarg = argc; |
| 3288 | argvlist[argc] = NULL; |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3289 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3290 | i = PyMapping_Size(env); |
| 3291 | if (i < 0) |
| 3292 | goto fail_1; |
| 3293 | envlist = PyMem_NEW(char *, i + 1); |
| 3294 | if (envlist == NULL) { |
| 3295 | PyErr_NoMemory(); |
| 3296 | goto fail_1; |
| 3297 | } |
| 3298 | envc = 0; |
| 3299 | keys = PyMapping_Keys(env); |
| 3300 | vals = PyMapping_Values(env); |
| 3301 | if (!keys || !vals) |
| 3302 | goto fail_2; |
| 3303 | if (!PyList_Check(keys) || !PyList_Check(vals)) { |
| 3304 | PyErr_SetString(PyExc_TypeError, |
| 3305 | "spawnve(): env.keys() or env.values() is not a list"); |
| 3306 | goto fail_2; |
| 3307 | } |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 3308 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3309 | for (pos = 0; pos < i; pos++) { |
| 3310 | char *p, *k, *v; |
| 3311 | size_t len; |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3312 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3313 | key = PyList_GetItem(keys, pos); |
| 3314 | val = PyList_GetItem(vals, pos); |
| 3315 | if (!key || !val) |
| 3316 | goto fail_2; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 3317 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3318 | if (!PyArg_Parse( |
| 3319 | key, |
| 3320 | "s;spawnve() arg 3 contains a non-string key", |
| 3321 | &k) || |
| 3322 | !PyArg_Parse( |
| 3323 | val, |
| 3324 | "s;spawnve() arg 3 contains a non-string value", |
| 3325 | &v)) |
| 3326 | { |
| 3327 | goto fail_2; |
| 3328 | } |
| 3329 | len = PyString_Size(key) + PyString_Size(val) + 2; |
| 3330 | p = PyMem_NEW(char, len); |
| 3331 | if (p == NULL) { |
| 3332 | PyErr_NoMemory(); |
| 3333 | goto fail_2; |
| 3334 | } |
| 3335 | PyOS_snprintf(p, len, "%s=%s", k, v); |
| 3336 | envlist[envc++] = p; |
| 3337 | } |
| 3338 | envlist[envc] = 0; |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3339 | |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 3340 | #if defined(PYOS_OS2) && defined(PYCC_GCC) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3341 | Py_BEGIN_ALLOW_THREADS |
| 3342 | spawnval = spawnve(mode, path, argvlist, envlist); |
| 3343 | Py_END_ALLOW_THREADS |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 3344 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3345 | if (mode == _OLD_P_OVERLAY) |
| 3346 | mode = _P_OVERLAY; |
Tim Peters | 25059d3 | 2001-12-07 20:35:43 +0000 | [diff] [blame] | 3347 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3348 | Py_BEGIN_ALLOW_THREADS |
| 3349 | spawnval = _spawnve(mode, path, argvlist, envlist); |
| 3350 | Py_END_ALLOW_THREADS |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 3351 | #endif |
Tim Peters | 25059d3 | 2001-12-07 20:35:43 +0000 | [diff] [blame] | 3352 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3353 | if (spawnval == -1) |
| 3354 | (void) posix_error(); |
| 3355 | else |
Fredrik Lundh | e25cfd8 | 2000-07-09 13:10:40 +0000 | [diff] [blame] | 3356 | #if SIZEOF_LONG == SIZEOF_VOID_P |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3357 | res = Py_BuildValue("l", (long) spawnval); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 3358 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3359 | res = Py_BuildValue("L", (PY_LONG_LONG) spawnval); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 3360 | #endif |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3361 | |
Guido van Rossum | 0847c5c | 2002-12-13 18:36:22 +0000 | [diff] [blame] | 3362 | fail_2: |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3363 | while (--envc >= 0) |
| 3364 | PyMem_DEL(envlist[envc]); |
| 3365 | PyMem_DEL(envlist); |
Guido van Rossum | 0847c5c | 2002-12-13 18:36:22 +0000 | [diff] [blame] | 3366 | fail_1: |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3367 | free_string_array(argvlist, lastarg); |
| 3368 | Py_XDECREF(vals); |
| 3369 | Py_XDECREF(keys); |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 3370 | fail_0: |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3371 | PyMem_Free(path); |
| 3372 | return res; |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3373 | } |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 3374 | |
| 3375 | /* OS/2 supports spawnvp & spawnvpe natively */ |
| 3376 | #if defined(PYOS_OS2) |
| 3377 | PyDoc_STRVAR(posix_spawnvp__doc__, |
| 3378 | "spawnvp(mode, file, args)\n\n\ |
| 3379 | Execute the program 'file' in a new process, using the environment\n\ |
| 3380 | search path to find the file.\n\ |
| 3381 | \n\ |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3382 | mode: mode of process creation\n\ |
| 3383 | file: executable file name\n\ |
| 3384 | args: tuple or list of strings"); |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 3385 | |
| 3386 | static PyObject * |
| 3387 | posix_spawnvp(PyObject *self, PyObject *args) |
| 3388 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3389 | char *path; |
| 3390 | PyObject *argv; |
| 3391 | char **argvlist; |
| 3392 | int mode, i, argc; |
| 3393 | Py_intptr_t spawnval; |
| 3394 | PyObject *(*getitem)(PyObject *, Py_ssize_t); |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 3395 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3396 | /* spawnvp has three arguments: (mode, path, argv), where |
| 3397 | argv is a list or tuple of strings. */ |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 3398 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3399 | if (!PyArg_ParseTuple(args, "ietO:spawnvp", &mode, |
| 3400 | Py_FileSystemDefaultEncoding, |
| 3401 | &path, &argv)) |
| 3402 | return NULL; |
| 3403 | if (PyList_Check(argv)) { |
| 3404 | argc = PyList_Size(argv); |
| 3405 | getitem = PyList_GetItem; |
| 3406 | } |
| 3407 | else if (PyTuple_Check(argv)) { |
| 3408 | argc = PyTuple_Size(argv); |
| 3409 | getitem = PyTuple_GetItem; |
| 3410 | } |
| 3411 | else { |
| 3412 | PyErr_SetString(PyExc_TypeError, |
| 3413 | "spawnvp() arg 2 must be a tuple or list"); |
| 3414 | PyMem_Free(path); |
| 3415 | return NULL; |
| 3416 | } |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 3417 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3418 | argvlist = PyMem_NEW(char *, argc+1); |
| 3419 | if (argvlist == NULL) { |
| 3420 | PyMem_Free(path); |
| 3421 | return PyErr_NoMemory(); |
| 3422 | } |
| 3423 | for (i = 0; i < argc; i++) { |
| 3424 | if (!PyArg_Parse((*getitem)(argv, i), "et", |
| 3425 | Py_FileSystemDefaultEncoding, |
| 3426 | &argvlist[i])) { |
| 3427 | free_string_array(argvlist, i); |
| 3428 | PyErr_SetString( |
| 3429 | PyExc_TypeError, |
| 3430 | "spawnvp() arg 2 must contain only strings"); |
| 3431 | PyMem_Free(path); |
| 3432 | return NULL; |
| 3433 | } |
| 3434 | } |
| 3435 | argvlist[argc] = NULL; |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 3436 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3437 | Py_BEGIN_ALLOW_THREADS |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 3438 | #if defined(PYCC_GCC) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3439 | spawnval = spawnvp(mode, path, argvlist); |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 3440 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3441 | spawnval = _spawnvp(mode, path, argvlist); |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 3442 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3443 | Py_END_ALLOW_THREADS |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 3444 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3445 | free_string_array(argvlist, argc); |
| 3446 | PyMem_Free(path); |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 3447 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3448 | if (spawnval == -1) |
| 3449 | return posix_error(); |
| 3450 | else |
| 3451 | return Py_BuildValue("l", (long) spawnval); |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 3452 | } |
| 3453 | |
| 3454 | |
| 3455 | PyDoc_STRVAR(posix_spawnvpe__doc__, |
| 3456 | "spawnvpe(mode, file, args, env)\n\n\ |
| 3457 | Execute the program 'file' in a new process, using the environment\n\ |
| 3458 | search path to find the file.\n\ |
| 3459 | \n\ |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3460 | mode: mode of process creation\n\ |
| 3461 | file: executable file name\n\ |
| 3462 | args: tuple or list of arguments\n\ |
| 3463 | env: dictionary of strings mapping to strings"); |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 3464 | |
| 3465 | static PyObject * |
| 3466 | posix_spawnvpe(PyObject *self, PyObject *args) |
| 3467 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3468 | char *path; |
| 3469 | PyObject *argv, *env; |
| 3470 | char **argvlist; |
| 3471 | char **envlist; |
| 3472 | PyObject *key, *val, *keys=NULL, *vals=NULL, *res=NULL; |
| 3473 | int mode, i, pos, argc, envc; |
| 3474 | Py_intptr_t spawnval; |
| 3475 | PyObject *(*getitem)(PyObject *, Py_ssize_t); |
| 3476 | int lastarg = 0; |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 3477 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3478 | /* spawnvpe has four arguments: (mode, path, argv, env), where |
| 3479 | argv is a list or tuple of strings and env is a dictionary |
| 3480 | like posix.environ. */ |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 3481 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3482 | if (!PyArg_ParseTuple(args, "ietOO:spawnvpe", &mode, |
| 3483 | Py_FileSystemDefaultEncoding, |
| 3484 | &path, &argv, &env)) |
| 3485 | return NULL; |
| 3486 | if (PyList_Check(argv)) { |
| 3487 | argc = PyList_Size(argv); |
| 3488 | getitem = PyList_GetItem; |
| 3489 | } |
| 3490 | else if (PyTuple_Check(argv)) { |
| 3491 | argc = PyTuple_Size(argv); |
| 3492 | getitem = PyTuple_GetItem; |
| 3493 | } |
| 3494 | else { |
| 3495 | PyErr_SetString(PyExc_TypeError, |
| 3496 | "spawnvpe() arg 2 must be a tuple or list"); |
| 3497 | goto fail_0; |
| 3498 | } |
| 3499 | if (!PyMapping_Check(env)) { |
| 3500 | PyErr_SetString(PyExc_TypeError, |
| 3501 | "spawnvpe() arg 3 must be a mapping object"); |
| 3502 | goto fail_0; |
| 3503 | } |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 3504 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3505 | argvlist = PyMem_NEW(char *, argc+1); |
| 3506 | if (argvlist == NULL) { |
| 3507 | PyErr_NoMemory(); |
| 3508 | goto fail_0; |
| 3509 | } |
| 3510 | for (i = 0; i < argc; i++) { |
| 3511 | if (!PyArg_Parse((*getitem)(argv, i), |
| 3512 | "et;spawnvpe() arg 2 must contain only strings", |
| 3513 | Py_FileSystemDefaultEncoding, |
| 3514 | &argvlist[i])) |
| 3515 | { |
| 3516 | lastarg = i; |
| 3517 | goto fail_1; |
| 3518 | } |
| 3519 | } |
| 3520 | lastarg = argc; |
| 3521 | argvlist[argc] = NULL; |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 3522 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3523 | i = PyMapping_Size(env); |
| 3524 | if (i < 0) |
| 3525 | goto fail_1; |
| 3526 | envlist = PyMem_NEW(char *, i + 1); |
| 3527 | if (envlist == NULL) { |
| 3528 | PyErr_NoMemory(); |
| 3529 | goto fail_1; |
| 3530 | } |
| 3531 | envc = 0; |
| 3532 | keys = PyMapping_Keys(env); |
| 3533 | vals = PyMapping_Values(env); |
| 3534 | if (!keys || !vals) |
| 3535 | goto fail_2; |
| 3536 | if (!PyList_Check(keys) || !PyList_Check(vals)) { |
| 3537 | PyErr_SetString(PyExc_TypeError, |
| 3538 | "spawnvpe(): env.keys() or env.values() is not a list"); |
| 3539 | goto fail_2; |
| 3540 | } |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 3541 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3542 | for (pos = 0; pos < i; pos++) { |
| 3543 | char *p, *k, *v; |
| 3544 | size_t len; |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 3545 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3546 | key = PyList_GetItem(keys, pos); |
| 3547 | val = PyList_GetItem(vals, pos); |
| 3548 | if (!key || !val) |
| 3549 | goto fail_2; |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 3550 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3551 | if (!PyArg_Parse( |
| 3552 | key, |
| 3553 | "s;spawnvpe() arg 3 contains a non-string key", |
| 3554 | &k) || |
| 3555 | !PyArg_Parse( |
| 3556 | val, |
| 3557 | "s;spawnvpe() arg 3 contains a non-string value", |
| 3558 | &v)) |
| 3559 | { |
| 3560 | goto fail_2; |
| 3561 | } |
| 3562 | len = PyString_Size(key) + PyString_Size(val) + 2; |
| 3563 | p = PyMem_NEW(char, len); |
| 3564 | if (p == NULL) { |
| 3565 | PyErr_NoMemory(); |
| 3566 | goto fail_2; |
| 3567 | } |
| 3568 | PyOS_snprintf(p, len, "%s=%s", k, v); |
| 3569 | envlist[envc++] = p; |
| 3570 | } |
| 3571 | envlist[envc] = 0; |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 3572 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3573 | Py_BEGIN_ALLOW_THREADS |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 3574 | #if defined(PYCC_GCC) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3575 | spawnval = spawnvpe(mode, path, argvlist, envlist); |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 3576 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3577 | spawnval = _spawnvpe(mode, path, argvlist, envlist); |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 3578 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3579 | Py_END_ALLOW_THREADS |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 3580 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3581 | if (spawnval == -1) |
| 3582 | (void) posix_error(); |
| 3583 | else |
| 3584 | res = Py_BuildValue("l", (long) spawnval); |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 3585 | |
| 3586 | fail_2: |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3587 | while (--envc >= 0) |
| 3588 | PyMem_DEL(envlist[envc]); |
| 3589 | PyMem_DEL(envlist); |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 3590 | fail_1: |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3591 | free_string_array(argvlist, lastarg); |
| 3592 | Py_XDECREF(vals); |
| 3593 | Py_XDECREF(keys); |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 3594 | fail_0: |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3595 | PyMem_Free(path); |
| 3596 | return res; |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 3597 | } |
| 3598 | #endif /* PYOS_OS2 */ |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3599 | #endif /* HAVE_SPAWNV */ |
| 3600 | |
| 3601 | |
Guido van Rossum | 2242f2f | 2001-04-11 20:58:20 +0000 | [diff] [blame] | 3602 | #ifdef HAVE_FORK1 |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3603 | PyDoc_STRVAR(posix_fork1__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 3604 | "fork1() -> pid\n\n\ |
Guido van Rossum | 2242f2f | 2001-04-11 20:58:20 +0000 | [diff] [blame] | 3605 | Fork a child process with a single multiplexed (i.e., not bound) thread.\n\ |
| 3606 | \n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3607 | Return 0 to child process and PID of child to parent process."); |
Guido van Rossum | 2242f2f | 2001-04-11 20:58:20 +0000 | [diff] [blame] | 3608 | |
| 3609 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 3610 | posix_fork1(PyObject *self, PyObject *noargs) |
Guido van Rossum | 2242f2f | 2001-04-11 20:58:20 +0000 | [diff] [blame] | 3611 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3612 | pid_t pid; |
| 3613 | int result = 0; |
| 3614 | _PyImport_AcquireLock(); |
| 3615 | pid = fork1(); |
| 3616 | if (pid == 0) { |
| 3617 | /* child: this clobbers and resets the import lock. */ |
| 3618 | PyOS_AfterFork(); |
| 3619 | } else { |
| 3620 | /* parent: release the import lock. */ |
| 3621 | result = _PyImport_ReleaseLock(); |
| 3622 | } |
| 3623 | if (pid == -1) |
| 3624 | return posix_error(); |
| 3625 | if (result < 0) { |
| 3626 | /* Don't clobber the OSError if the fork failed. */ |
| 3627 | PyErr_SetString(PyExc_RuntimeError, |
| 3628 | "not holding the import lock"); |
| 3629 | return NULL; |
| 3630 | } |
| 3631 | return PyLong_FromPid(pid); |
Guido van Rossum | 2242f2f | 2001-04-11 20:58:20 +0000 | [diff] [blame] | 3632 | } |
| 3633 | #endif |
| 3634 | |
| 3635 | |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 3636 | #ifdef HAVE_FORK |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3637 | PyDoc_STRVAR(posix_fork__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 3638 | "fork() -> pid\n\n\ |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3639 | Fork a child process.\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3640 | Return 0 to child process and PID of child to parent process."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3641 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3642 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 3643 | posix_fork(PyObject *self, PyObject *noargs) |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 3644 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3645 | pid_t pid; |
| 3646 | int result = 0; |
| 3647 | _PyImport_AcquireLock(); |
| 3648 | pid = fork(); |
| 3649 | if (pid == 0) { |
| 3650 | /* child: this clobbers and resets the import lock. */ |
| 3651 | PyOS_AfterFork(); |
| 3652 | } else { |
| 3653 | /* parent: release the import lock. */ |
| 3654 | result = _PyImport_ReleaseLock(); |
| 3655 | } |
| 3656 | if (pid == -1) |
| 3657 | return posix_error(); |
| 3658 | if (result < 0) { |
| 3659 | /* Don't clobber the OSError if the fork failed. */ |
| 3660 | PyErr_SetString(PyExc_RuntimeError, |
| 3661 | "not holding the import lock"); |
| 3662 | return NULL; |
| 3663 | } |
| 3664 | return PyLong_FromPid(pid); |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 3665 | } |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 3666 | #endif |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 3667 | |
Neal Norwitz | b59798b | 2003-03-21 01:43:31 +0000 | [diff] [blame] | 3668 | /* AIX uses /dev/ptc but is otherwise the same as /dev/ptmx */ |
Neal Norwitz | 2deaddb | 2003-03-21 03:08:31 +0000 | [diff] [blame] | 3669 | /* IRIX has both /dev/ptc and /dev/ptmx, use ptmx */ |
| 3670 | #if defined(HAVE_DEV_PTC) && !defined(HAVE_DEV_PTMX) |
Neal Norwitz | b59798b | 2003-03-21 01:43:31 +0000 | [diff] [blame] | 3671 | #define DEV_PTY_FILE "/dev/ptc" |
| 3672 | #define HAVE_DEV_PTMX |
| 3673 | #else |
| 3674 | #define DEV_PTY_FILE "/dev/ptmx" |
| 3675 | #endif |
| 3676 | |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 3677 | #if defined(HAVE_OPENPTY) || defined(HAVE_FORKPTY) || defined(HAVE_DEV_PTMX) |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 3678 | #ifdef HAVE_PTY_H |
| 3679 | #include <pty.h> |
| 3680 | #else |
| 3681 | #ifdef HAVE_LIBUTIL_H |
| 3682 | #include <libutil.h> |
Ronald Oussoren | a55af9a | 2010-01-17 16:25:57 +0000 | [diff] [blame] | 3683 | #else |
| 3684 | #ifdef HAVE_UTIL_H |
| 3685 | #include <util.h> |
| 3686 | #endif /* HAVE_UTIL_H */ |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 3687 | #endif /* HAVE_LIBUTIL_H */ |
| 3688 | #endif /* HAVE_PTY_H */ |
Martin v. Löwis | 14e73b1 | 2003-01-01 09:51:12 +0000 | [diff] [blame] | 3689 | #ifdef HAVE_STROPTS_H |
| 3690 | #include <stropts.h> |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 3691 | #endif |
| 3692 | #endif /* defined(HAVE_OPENPTY) || defined(HAVE_FORKPTY) || defined(HAVE_DEV_PTMX */ |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 3693 | |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 3694 | #if defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX) |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3695 | PyDoc_STRVAR(posix_openpty__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 3696 | "openpty() -> (master_fd, slave_fd)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3697 | Open a pseudo-terminal, returning open fd's for both master and slave end.\n"); |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 3698 | |
| 3699 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 3700 | posix_openpty(PyObject *self, PyObject *noargs) |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 3701 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3702 | int master_fd, slave_fd; |
Thomas Wouters | 70c21a1 | 2000-07-14 14:28:33 +0000 | [diff] [blame] | 3703 | #ifndef HAVE_OPENPTY |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3704 | char * slave_name; |
Thomas Wouters | 70c21a1 | 2000-07-14 14:28:33 +0000 | [diff] [blame] | 3705 | #endif |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 3706 | #if defined(HAVE_DEV_PTMX) && !defined(HAVE_OPENPTY) && !defined(HAVE__GETPTY) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3707 | PyOS_sighandler_t sig_saved; |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 3708 | #ifdef sun |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3709 | extern char *ptsname(int fildes); |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 3710 | #endif |
| 3711 | #endif |
Thomas Wouters | 70c21a1 | 2000-07-14 14:28:33 +0000 | [diff] [blame] | 3712 | |
Thomas Wouters | 70c21a1 | 2000-07-14 14:28:33 +0000 | [diff] [blame] | 3713 | #ifdef HAVE_OPENPTY |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3714 | if (openpty(&master_fd, &slave_fd, NULL, NULL, NULL) != 0) |
| 3715 | return posix_error(); |
Neal Norwitz | b59798b | 2003-03-21 01:43:31 +0000 | [diff] [blame] | 3716 | #elif defined(HAVE__GETPTY) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3717 | slave_name = _getpty(&master_fd, O_RDWR, 0666, 0); |
| 3718 | if (slave_name == NULL) |
| 3719 | return posix_error(); |
Thomas Wouters | 70c21a1 | 2000-07-14 14:28:33 +0000 | [diff] [blame] | 3720 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3721 | slave_fd = open(slave_name, O_RDWR); |
| 3722 | if (slave_fd < 0) |
| 3723 | return posix_error(); |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 3724 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3725 | master_fd = open(DEV_PTY_FILE, O_RDWR | O_NOCTTY); /* open master */ |
| 3726 | if (master_fd < 0) |
| 3727 | return posix_error(); |
| 3728 | sig_saved = PyOS_setsig(SIGCHLD, SIG_DFL); |
| 3729 | /* change permission of slave */ |
| 3730 | if (grantpt(master_fd) < 0) { |
| 3731 | PyOS_setsig(SIGCHLD, sig_saved); |
| 3732 | return posix_error(); |
| 3733 | } |
| 3734 | /* unlock slave */ |
| 3735 | if (unlockpt(master_fd) < 0) { |
| 3736 | PyOS_setsig(SIGCHLD, sig_saved); |
| 3737 | return posix_error(); |
| 3738 | } |
| 3739 | PyOS_setsig(SIGCHLD, sig_saved); |
| 3740 | slave_name = ptsname(master_fd); /* get name of slave */ |
| 3741 | if (slave_name == NULL) |
| 3742 | return posix_error(); |
| 3743 | slave_fd = open(slave_name, O_RDWR | O_NOCTTY); /* open slave */ |
| 3744 | if (slave_fd < 0) |
| 3745 | return posix_error(); |
Neal Norwitz | b59798b | 2003-03-21 01:43:31 +0000 | [diff] [blame] | 3746 | #if !defined(__CYGWIN__) && !defined(HAVE_DEV_PTC) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3747 | ioctl(slave_fd, I_PUSH, "ptem"); /* push ptem */ |
| 3748 | ioctl(slave_fd, I_PUSH, "ldterm"); /* push ldterm */ |
Neal Norwitz | 6700e47 | 2002-12-31 16:16:07 +0000 | [diff] [blame] | 3749 | #ifndef __hpux |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3750 | ioctl(slave_fd, I_PUSH, "ttcompat"); /* push ttcompat */ |
Neal Norwitz | 6700e47 | 2002-12-31 16:16:07 +0000 | [diff] [blame] | 3751 | #endif /* __hpux */ |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 3752 | #endif /* HAVE_CYGWIN */ |
Thomas Wouters | 1e0c2f4 | 2000-07-24 16:06:23 +0000 | [diff] [blame] | 3753 | #endif /* HAVE_OPENPTY */ |
Thomas Wouters | 70c21a1 | 2000-07-14 14:28:33 +0000 | [diff] [blame] | 3754 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3755 | return Py_BuildValue("(ii)", master_fd, slave_fd); |
Thomas Wouters | 70c21a1 | 2000-07-14 14:28:33 +0000 | [diff] [blame] | 3756 | |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 3757 | } |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 3758 | #endif /* defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX) */ |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 3759 | |
| 3760 | #ifdef HAVE_FORKPTY |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3761 | PyDoc_STRVAR(posix_forkpty__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 3762 | "forkpty() -> (pid, master_fd)\n\n\ |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 3763 | Fork a new process with a new pseudo-terminal as controlling tty.\n\n\ |
| 3764 | Like fork(), return 0 as pid to child process, and PID of child to parent.\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3765 | To both, return fd of newly opened pseudo-terminal.\n"); |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 3766 | |
| 3767 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 3768 | posix_forkpty(PyObject *self, PyObject *noargs) |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 3769 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3770 | int master_fd = -1, result = 0; |
| 3771 | pid_t pid; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 3772 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3773 | _PyImport_AcquireLock(); |
| 3774 | pid = forkpty(&master_fd, NULL, NULL, NULL); |
| 3775 | if (pid == 0) { |
| 3776 | /* child: this clobbers and resets the import lock. */ |
| 3777 | PyOS_AfterFork(); |
| 3778 | } else { |
| 3779 | /* parent: release the import lock. */ |
| 3780 | result = _PyImport_ReleaseLock(); |
| 3781 | } |
| 3782 | if (pid == -1) |
| 3783 | return posix_error(); |
| 3784 | if (result < 0) { |
| 3785 | /* Don't clobber the OSError if the fork failed. */ |
| 3786 | PyErr_SetString(PyExc_RuntimeError, |
| 3787 | "not holding the import lock"); |
| 3788 | return NULL; |
| 3789 | } |
| 3790 | return Py_BuildValue("(Ni)", PyLong_FromPid(pid), master_fd); |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 3791 | } |
| 3792 | #endif |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3793 | |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 3794 | #ifdef HAVE_GETEGID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3795 | PyDoc_STRVAR(posix_getegid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 3796 | "getegid() -> egid\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3797 | Return the current process's effective group id."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3798 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3799 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 3800 | posix_getegid(PyObject *self, PyObject *noargs) |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 3801 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3802 | return PyInt_FromLong((long)getegid()); |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 3803 | } |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 3804 | #endif |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 3805 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3806 | |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 3807 | #ifdef HAVE_GETEUID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3808 | PyDoc_STRVAR(posix_geteuid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 3809 | "geteuid() -> euid\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3810 | Return the current process's effective user id."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3811 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3812 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 3813 | posix_geteuid(PyObject *self, PyObject *noargs) |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 3814 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3815 | return PyInt_FromLong((long)geteuid()); |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 3816 | } |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 3817 | #endif |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 3818 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3819 | |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 3820 | #ifdef HAVE_GETGID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3821 | PyDoc_STRVAR(posix_getgid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 3822 | "getgid() -> gid\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3823 | Return the current process's group id."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3824 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3825 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 3826 | posix_getgid(PyObject *self, PyObject *noargs) |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 3827 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3828 | return PyInt_FromLong((long)getgid()); |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 3829 | } |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 3830 | #endif |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 3831 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3832 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3833 | PyDoc_STRVAR(posix_getpid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 3834 | "getpid() -> pid\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3835 | Return the current process id"); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3836 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3837 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 3838 | posix_getpid(PyObject *self, PyObject *noargs) |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 3839 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3840 | return PyLong_FromPid(getpid()); |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 3841 | } |
| 3842 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3843 | |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 3844 | #ifdef HAVE_GETGROUPS |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3845 | PyDoc_STRVAR(posix_getgroups__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 3846 | "getgroups() -> list of group IDs\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3847 | Return list of supplemental group IDs for the process."); |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 3848 | |
| 3849 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 3850 | posix_getgroups(PyObject *self, PyObject *noargs) |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 3851 | { |
| 3852 | PyObject *result = NULL; |
| 3853 | |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 3854 | #ifdef NGROUPS_MAX |
| 3855 | #define MAX_GROUPS NGROUPS_MAX |
| 3856 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3857 | /* defined to be 16 on Solaris7, so this should be a small number */ |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 3858 | #define MAX_GROUPS 64 |
| 3859 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3860 | gid_t grouplist[MAX_GROUPS]; |
| 3861 | int n; |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 3862 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3863 | n = getgroups(MAX_GROUPS, grouplist); |
| 3864 | if (n < 0) |
| 3865 | posix_error(); |
| 3866 | else { |
| 3867 | result = PyList_New(n); |
| 3868 | if (result != NULL) { |
| 3869 | int i; |
| 3870 | for (i = 0; i < n; ++i) { |
| 3871 | PyObject *o = PyInt_FromLong((long)grouplist[i]); |
| 3872 | if (o == NULL) { |
| 3873 | Py_DECREF(result); |
| 3874 | result = NULL; |
| 3875 | break; |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 3876 | } |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3877 | PyList_SET_ITEM(result, i, o); |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 3878 | } |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3879 | } |
| 3880 | } |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 3881 | |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 3882 | return result; |
| 3883 | } |
| 3884 | #endif |
| 3885 | |
Antoine Pitrou | 30b3b35 | 2009-12-02 20:37:54 +0000 | [diff] [blame] | 3886 | #ifdef HAVE_INITGROUPS |
| 3887 | PyDoc_STRVAR(posix_initgroups__doc__, |
| 3888 | "initgroups(username, gid) -> None\n\n\ |
| 3889 | Call the system initgroups() to initialize the group access list with all of\n\ |
| 3890 | the groups of which the specified username is a member, plus the specified\n\ |
| 3891 | group id."); |
| 3892 | |
| 3893 | static PyObject * |
| 3894 | posix_initgroups(PyObject *self, PyObject *args) |
| 3895 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3896 | char *username; |
| 3897 | long gid; |
Antoine Pitrou | 30b3b35 | 2009-12-02 20:37:54 +0000 | [diff] [blame] | 3898 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3899 | if (!PyArg_ParseTuple(args, "sl:initgroups", &username, &gid)) |
| 3900 | return NULL; |
Antoine Pitrou | 30b3b35 | 2009-12-02 20:37:54 +0000 | [diff] [blame] | 3901 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3902 | if (initgroups(username, (gid_t) gid) == -1) |
| 3903 | return PyErr_SetFromErrno(PyExc_OSError); |
Antoine Pitrou | 30b3b35 | 2009-12-02 20:37:54 +0000 | [diff] [blame] | 3904 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3905 | Py_INCREF(Py_None); |
| 3906 | return Py_None; |
Antoine Pitrou | 30b3b35 | 2009-12-02 20:37:54 +0000 | [diff] [blame] | 3907 | } |
| 3908 | #endif |
| 3909 | |
Martin v. Löwis | 606edc1 | 2002-06-13 21:09:11 +0000 | [diff] [blame] | 3910 | #ifdef HAVE_GETPGID |
Neal Norwitz | 0c2c17c | 2002-06-13 21:22:11 +0000 | [diff] [blame] | 3911 | PyDoc_STRVAR(posix_getpgid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 3912 | "getpgid(pid) -> pgid\n\n\ |
Neal Norwitz | 0c2c17c | 2002-06-13 21:22:11 +0000 | [diff] [blame] | 3913 | Call the system call getpgid()."); |
Martin v. Löwis | 606edc1 | 2002-06-13 21:09:11 +0000 | [diff] [blame] | 3914 | |
| 3915 | static PyObject * |
| 3916 | posix_getpgid(PyObject *self, PyObject *args) |
| 3917 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3918 | pid_t pid, pgid; |
| 3919 | if (!PyArg_ParseTuple(args, PARSE_PID ":getpgid", &pid)) |
| 3920 | return NULL; |
| 3921 | pgid = getpgid(pid); |
| 3922 | if (pgid < 0) |
| 3923 | return posix_error(); |
| 3924 | return PyLong_FromPid(pgid); |
Martin v. Löwis | 606edc1 | 2002-06-13 21:09:11 +0000 | [diff] [blame] | 3925 | } |
| 3926 | #endif /* HAVE_GETPGID */ |
| 3927 | |
| 3928 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3929 | #ifdef HAVE_GETPGRP |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3930 | PyDoc_STRVAR(posix_getpgrp__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 3931 | "getpgrp() -> pgrp\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3932 | Return the current process group id."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3933 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3934 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 3935 | posix_getpgrp(PyObject *self, PyObject *noargs) |
Guido van Rossum | 0481447 | 1991-06-04 20:23:49 +0000 | [diff] [blame] | 3936 | { |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3937 | #ifdef GETPGRP_HAVE_ARG |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3938 | return PyLong_FromPid(getpgrp(0)); |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 3939 | #else /* GETPGRP_HAVE_ARG */ |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3940 | return PyLong_FromPid(getpgrp()); |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 3941 | #endif /* GETPGRP_HAVE_ARG */ |
Guido van Rossum | 0481447 | 1991-06-04 20:23:49 +0000 | [diff] [blame] | 3942 | } |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3943 | #endif /* HAVE_GETPGRP */ |
Guido van Rossum | 0481447 | 1991-06-04 20:23:49 +0000 | [diff] [blame] | 3944 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3945 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3946 | #ifdef HAVE_SETPGRP |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3947 | PyDoc_STRVAR(posix_setpgrp__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 3948 | "setpgrp()\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3949 | Make this process a session leader."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3950 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3951 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 3952 | posix_setpgrp(PyObject *self, PyObject *noargs) |
Guido van Rossum | c2670a0 | 1992-09-13 20:07:29 +0000 | [diff] [blame] | 3953 | { |
Guido van Rossum | 6493389 | 1994-10-20 21:56:42 +0000 | [diff] [blame] | 3954 | #ifdef SETPGRP_HAVE_ARG |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3955 | if (setpgrp(0, 0) < 0) |
Guido van Rossum | 6493389 | 1994-10-20 21:56:42 +0000 | [diff] [blame] | 3956 | #else /* SETPGRP_HAVE_ARG */ |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3957 | if (setpgrp() < 0) |
Guido van Rossum | 6493389 | 1994-10-20 21:56:42 +0000 | [diff] [blame] | 3958 | #endif /* SETPGRP_HAVE_ARG */ |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3959 | return posix_error(); |
| 3960 | Py_INCREF(Py_None); |
| 3961 | return Py_None; |
Guido van Rossum | c2670a0 | 1992-09-13 20:07:29 +0000 | [diff] [blame] | 3962 | } |
| 3963 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3964 | #endif /* HAVE_SETPGRP */ |
| 3965 | |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 3966 | #ifdef HAVE_GETPPID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3967 | PyDoc_STRVAR(posix_getppid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 3968 | "getppid() -> ppid\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3969 | Return the parent's process id."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3970 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3971 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 3972 | posix_getppid(PyObject *self, PyObject *noargs) |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 3973 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3974 | return PyLong_FromPid(getppid()); |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 3975 | } |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 3976 | #endif |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 3977 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3978 | |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 3979 | #ifdef HAVE_GETLOGIN |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3980 | PyDoc_STRVAR(posix_getlogin__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 3981 | "getlogin() -> string\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3982 | Return the actual login name."); |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 3983 | |
| 3984 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 3985 | posix_getlogin(PyObject *self, PyObject *noargs) |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 3986 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3987 | PyObject *result = NULL; |
| 3988 | char *name; |
| 3989 | int old_errno = errno; |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 3990 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3991 | errno = 0; |
| 3992 | name = getlogin(); |
| 3993 | if (name == NULL) { |
| 3994 | if (errno) |
| 3995 | posix_error(); |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 3996 | else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 3997 | PyErr_SetString(PyExc_OSError, |
| 3998 | "unable to determine login name"); |
| 3999 | } |
| 4000 | else |
| 4001 | result = PyString_FromString(name); |
| 4002 | errno = old_errno; |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 4003 | |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 4004 | return result; |
| 4005 | } |
| 4006 | #endif |
| 4007 | |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 4008 | #ifdef HAVE_GETUID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 4009 | PyDoc_STRVAR(posix_getuid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 4010 | "getuid() -> uid\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 4011 | Return the current process's user id."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 4012 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 4013 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 4014 | posix_getuid(PyObject *self, PyObject *noargs) |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 4015 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4016 | return PyInt_FromLong((long)getuid()); |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 4017 | } |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 4018 | #endif |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 4019 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 4020 | |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 4021 | #ifdef HAVE_KILL |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 4022 | PyDoc_STRVAR(posix_kill__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 4023 | "kill(pid, sig)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 4024 | Kill a process with a signal."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 4025 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 4026 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 4027 | posix_kill(PyObject *self, PyObject *args) |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 4028 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4029 | pid_t pid; |
| 4030 | int sig; |
| 4031 | if (!PyArg_ParseTuple(args, PARSE_PID "i:kill", &pid, &sig)) |
| 4032 | return NULL; |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4033 | #if defined(PYOS_OS2) && !defined(PYCC_GCC) |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4034 | if (sig == XCPT_SIGNAL_INTR || sig == XCPT_SIGNAL_BREAK) { |
| 4035 | APIRET rc; |
| 4036 | if ((rc = DosSendSignalException(pid, sig)) != NO_ERROR) |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 4037 | return os2_error(rc); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4038 | |
| 4039 | } else if (sig == XCPT_SIGNAL_KILLPROC) { |
| 4040 | APIRET rc; |
| 4041 | if ((rc = DosKillProcess(DKP_PROCESS, pid)) != NO_ERROR) |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 4042 | return os2_error(rc); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4043 | |
| 4044 | } else |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 4045 | return NULL; /* Unrecognized Signal Requested */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4046 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4047 | if (kill(pid, sig) == -1) |
| 4048 | return posix_error(); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4049 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4050 | Py_INCREF(Py_None); |
| 4051 | return Py_None; |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 4052 | } |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 4053 | #endif |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 4054 | |
Martin v. Löwis | b2c92f4 | 2002-02-16 23:35:41 +0000 | [diff] [blame] | 4055 | #ifdef HAVE_KILLPG |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 4056 | PyDoc_STRVAR(posix_killpg__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 4057 | "killpg(pgid, sig)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 4058 | Kill a process group with a signal."); |
Martin v. Löwis | b2c92f4 | 2002-02-16 23:35:41 +0000 | [diff] [blame] | 4059 | |
| 4060 | static PyObject * |
| 4061 | posix_killpg(PyObject *self, PyObject *args) |
| 4062 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4063 | int sig; |
| 4064 | pid_t pgid; |
| 4065 | /* XXX some man pages make the `pgid` parameter an int, others |
| 4066 | a pid_t. Since getpgrp() returns a pid_t, we assume killpg should |
| 4067 | take the same type. Moreover, pid_t is always at least as wide as |
| 4068 | int (else compilation of this module fails), which is safe. */ |
| 4069 | if (!PyArg_ParseTuple(args, PARSE_PID "i:killpg", &pgid, &sig)) |
| 4070 | return NULL; |
| 4071 | if (killpg(pgid, sig) == -1) |
| 4072 | return posix_error(); |
| 4073 | Py_INCREF(Py_None); |
| 4074 | return Py_None; |
Martin v. Löwis | b2c92f4 | 2002-02-16 23:35:41 +0000 | [diff] [blame] | 4075 | } |
| 4076 | #endif |
| 4077 | |
Brian Curtin | e5aa886 | 2010-04-02 23:26:06 +0000 | [diff] [blame] | 4078 | #ifdef MS_WINDOWS |
| 4079 | PyDoc_STRVAR(win32_kill__doc__, |
| 4080 | "kill(pid, sig)\n\n\ |
| 4081 | Kill a process with a signal."); |
| 4082 | |
| 4083 | static PyObject * |
| 4084 | win32_kill(PyObject *self, PyObject *args) |
| 4085 | { |
Amaury Forgeot d'Arc | 03acec2 | 2010-05-15 21:45:30 +0000 | [diff] [blame] | 4086 | PyObject *result; |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4087 | DWORD pid, sig, err; |
| 4088 | HANDLE handle; |
Brian Curtin | e5aa886 | 2010-04-02 23:26:06 +0000 | [diff] [blame] | 4089 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4090 | if (!PyArg_ParseTuple(args, "kk:kill", &pid, &sig)) |
| 4091 | return NULL; |
Brian Curtin | e5aa886 | 2010-04-02 23:26:06 +0000 | [diff] [blame] | 4092 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4093 | /* Console processes which share a common console can be sent CTRL+C or |
| 4094 | CTRL+BREAK events, provided they handle said events. */ |
| 4095 | if (sig == CTRL_C_EVENT || sig == CTRL_BREAK_EVENT) { |
| 4096 | if (GenerateConsoleCtrlEvent(sig, pid) == 0) { |
| 4097 | err = GetLastError(); |
| 4098 | return PyErr_SetFromWindowsErr(err); |
| 4099 | } |
| 4100 | else |
| 4101 | Py_RETURN_NONE; |
| 4102 | } |
Brian Curtin | e5aa886 | 2010-04-02 23:26:06 +0000 | [diff] [blame] | 4103 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4104 | /* If the signal is outside of what GenerateConsoleCtrlEvent can use, |
| 4105 | attempt to open and terminate the process. */ |
| 4106 | handle = OpenProcess(PROCESS_ALL_ACCESS, FALSE, pid); |
| 4107 | if (handle == NULL) { |
| 4108 | err = GetLastError(); |
| 4109 | return PyErr_SetFromWindowsErr(err); |
| 4110 | } |
Brian Curtin | e5aa886 | 2010-04-02 23:26:06 +0000 | [diff] [blame] | 4111 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4112 | if (TerminateProcess(handle, sig) == 0) { |
| 4113 | err = GetLastError(); |
| 4114 | result = PyErr_SetFromWindowsErr(err); |
| 4115 | } else { |
| 4116 | Py_INCREF(Py_None); |
| 4117 | result = Py_None; |
| 4118 | } |
Brian Curtin | e5aa886 | 2010-04-02 23:26:06 +0000 | [diff] [blame] | 4119 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4120 | CloseHandle(handle); |
| 4121 | return result; |
Brian Curtin | e5aa886 | 2010-04-02 23:26:06 +0000 | [diff] [blame] | 4122 | } |
| 4123 | #endif /* MS_WINDOWS */ |
| 4124 | |
Guido van Rossum | c012547 | 1996-06-28 18:55:32 +0000 | [diff] [blame] | 4125 | #ifdef HAVE_PLOCK |
| 4126 | |
| 4127 | #ifdef HAVE_SYS_LOCK_H |
| 4128 | #include <sys/lock.h> |
| 4129 | #endif |
| 4130 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 4131 | PyDoc_STRVAR(posix_plock__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 4132 | "plock(op)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 4133 | Lock program segments into memory."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 4134 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 4135 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 4136 | posix_plock(PyObject *self, PyObject *args) |
Guido van Rossum | c012547 | 1996-06-28 18:55:32 +0000 | [diff] [blame] | 4137 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4138 | int op; |
| 4139 | if (!PyArg_ParseTuple(args, "i:plock", &op)) |
| 4140 | return NULL; |
| 4141 | if (plock(op) == -1) |
| 4142 | return posix_error(); |
| 4143 | Py_INCREF(Py_None); |
| 4144 | return Py_None; |
Guido van Rossum | c012547 | 1996-06-28 18:55:32 +0000 | [diff] [blame] | 4145 | } |
| 4146 | #endif |
| 4147 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 4148 | |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 4149 | #ifdef HAVE_POPEN |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 4150 | PyDoc_STRVAR(posix_popen__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 4151 | "popen(command [, mode='r' [, bufsize]]) -> pipe\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 4152 | Open a pipe to/from a command returning a file object."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 4153 | |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4154 | #if defined(PYOS_OS2) |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4155 | #if defined(PYCC_VACPP) |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 4156 | static int |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4157 | async_system(const char *command) |
| 4158 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4159 | char errormsg[256], args[1024]; |
| 4160 | RESULTCODES rcodes; |
| 4161 | APIRET rc; |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4162 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4163 | char *shell = getenv("COMSPEC"); |
| 4164 | if (!shell) |
| 4165 | shell = "cmd"; |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4166 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4167 | /* avoid overflowing the argument buffer */ |
| 4168 | if (strlen(shell) + 3 + strlen(command) >= 1024) |
| 4169 | return ERROR_NOT_ENOUGH_MEMORY |
Andrew MacIntyre | a4a8afb | 2004-12-12 08:30:51 +0000 | [diff] [blame] | 4170 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4171 | args[0] = '\0'; |
| 4172 | strcat(args, shell); |
| 4173 | strcat(args, "/c "); |
| 4174 | strcat(args, command); |
Andrew MacIntyre | a4a8afb | 2004-12-12 08:30:51 +0000 | [diff] [blame] | 4175 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4176 | /* execute asynchronously, inheriting the environment */ |
| 4177 | rc = DosExecPgm(errormsg, |
| 4178 | sizeof(errormsg), |
| 4179 | EXEC_ASYNC, |
| 4180 | args, |
| 4181 | NULL, |
| 4182 | &rcodes, |
| 4183 | shell); |
| 4184 | return rc; |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4185 | } |
| 4186 | |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 4187 | static FILE * |
| 4188 | popen(const char *command, const char *mode, int pipesize, int *err) |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4189 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4190 | int oldfd, tgtfd; |
| 4191 | HFILE pipeh[2]; |
| 4192 | APIRET rc; |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4193 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4194 | /* mode determines which of stdin or stdout is reconnected to |
| 4195 | * the pipe to the child |
| 4196 | */ |
| 4197 | if (strchr(mode, 'r') != NULL) { |
| 4198 | tgt_fd = 1; /* stdout */ |
| 4199 | } else if (strchr(mode, 'w')) { |
| 4200 | tgt_fd = 0; /* stdin */ |
| 4201 | } else { |
| 4202 | *err = ERROR_INVALID_ACCESS; |
| 4203 | return NULL; |
| 4204 | } |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4205 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4206 | /* setup the pipe */ |
| 4207 | if ((rc = DosCreatePipe(&pipeh[0], &pipeh[1], pipesize)) != NO_ERROR) { |
| 4208 | *err = rc; |
| 4209 | return NULL; |
| 4210 | } |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4211 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4212 | /* prevent other threads accessing stdio */ |
| 4213 | DosEnterCritSec(); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4214 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4215 | /* reconnect stdio and execute child */ |
| 4216 | oldfd = dup(tgtfd); |
| 4217 | close(tgtfd); |
| 4218 | if (dup2(pipeh[tgtfd], tgtfd) == 0) { |
| 4219 | DosClose(pipeh[tgtfd]); |
| 4220 | rc = async_system(command); |
| 4221 | } |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4222 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4223 | /* restore stdio */ |
| 4224 | dup2(oldfd, tgtfd); |
| 4225 | close(oldfd); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4226 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4227 | /* allow other threads access to stdio */ |
| 4228 | DosExitCritSec(); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4229 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4230 | /* if execution of child was successful return file stream */ |
| 4231 | if (rc == NO_ERROR) |
| 4232 | return fdopen(pipeh[1 - tgtfd], mode); |
| 4233 | else { |
| 4234 | DosClose(pipeh[1 - tgtfd]); |
| 4235 | *err = rc; |
| 4236 | return NULL; |
| 4237 | } |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4238 | } |
| 4239 | |
| 4240 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 4241 | posix_popen(PyObject *self, PyObject *args) |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4242 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4243 | char *name; |
| 4244 | char *mode = "r"; |
| 4245 | int err, bufsize = -1; |
| 4246 | FILE *fp; |
| 4247 | PyObject *f; |
| 4248 | if (!PyArg_ParseTuple(args, "s|si:popen", &name, &mode, &bufsize)) |
| 4249 | return NULL; |
| 4250 | Py_BEGIN_ALLOW_THREADS |
| 4251 | fp = popen(name, mode, (bufsize > 0) ? bufsize : 4096, &err); |
| 4252 | Py_END_ALLOW_THREADS |
| 4253 | if (fp == NULL) |
| 4254 | return os2_error(err); |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 4255 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4256 | f = PyFile_FromFile(fp, name, mode, fclose); |
| 4257 | if (f != NULL) |
| 4258 | PyFile_SetBufSize(f, bufsize); |
| 4259 | return f; |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4260 | } |
| 4261 | |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4262 | #elif defined(PYCC_GCC) |
| 4263 | |
| 4264 | /* standard posix version of popen() support */ |
| 4265 | static PyObject * |
| 4266 | posix_popen(PyObject *self, PyObject *args) |
| 4267 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4268 | char *name; |
| 4269 | char *mode = "r"; |
| 4270 | int bufsize = -1; |
| 4271 | FILE *fp; |
| 4272 | PyObject *f; |
| 4273 | if (!PyArg_ParseTuple(args, "s|si:popen", &name, &mode, &bufsize)) |
| 4274 | return NULL; |
| 4275 | Py_BEGIN_ALLOW_THREADS |
| 4276 | fp = popen(name, mode); |
| 4277 | Py_END_ALLOW_THREADS |
| 4278 | if (fp == NULL) |
| 4279 | return posix_error(); |
| 4280 | f = PyFile_FromFile(fp, name, mode, pclose); |
| 4281 | if (f != NULL) |
| 4282 | PyFile_SetBufSize(f, bufsize); |
| 4283 | return f; |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4284 | } |
| 4285 | |
| 4286 | /* fork() under OS/2 has lots'o'warts |
| 4287 | * EMX supports pipe() and spawn*() so we can synthesize popen[234]() |
| 4288 | * most of this code is a ripoff of the win32 code, but using the |
| 4289 | * capabilities of EMX's C library routines |
| 4290 | */ |
| 4291 | |
| 4292 | /* These tell _PyPopen() whether to return 1, 2, or 3 file objects. */ |
| 4293 | #define POPEN_1 1 |
| 4294 | #define POPEN_2 2 |
| 4295 | #define POPEN_3 3 |
| 4296 | #define POPEN_4 4 |
| 4297 | |
| 4298 | static PyObject *_PyPopen(char *, int, int, int); |
| 4299 | static int _PyPclose(FILE *file); |
| 4300 | |
| 4301 | /* |
| 4302 | * Internal dictionary mapping popen* file pointers to process handles, |
| 4303 | * for use when retrieving the process exit code. See _PyPclose() below |
| 4304 | * for more information on this dictionary's use. |
| 4305 | */ |
| 4306 | static PyObject *_PyPopenProcs = NULL; |
| 4307 | |
| 4308 | /* os2emx version of popen2() |
| 4309 | * |
| 4310 | * The result of this function is a pipe (file) connected to the |
| 4311 | * process's stdin, and a pipe connected to the process's stdout. |
| 4312 | */ |
| 4313 | |
| 4314 | static PyObject * |
| 4315 | os2emx_popen2(PyObject *self, PyObject *args) |
| 4316 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4317 | PyObject *f; |
| 4318 | int tm=0; |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4319 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4320 | char *cmdstring; |
| 4321 | char *mode = "t"; |
| 4322 | int bufsize = -1; |
| 4323 | if (!PyArg_ParseTuple(args, "s|si:popen2", &cmdstring, &mode, &bufsize)) |
| 4324 | return NULL; |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4325 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4326 | if (*mode == 't') |
| 4327 | tm = O_TEXT; |
| 4328 | else if (*mode != 'b') { |
| 4329 | PyErr_SetString(PyExc_ValueError, "mode must be 't' or 'b'"); |
| 4330 | return NULL; |
| 4331 | } else |
| 4332 | tm = O_BINARY; |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4333 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4334 | f = _PyPopen(cmdstring, tm, POPEN_2, bufsize); |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4335 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4336 | return f; |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4337 | } |
| 4338 | |
| 4339 | /* |
| 4340 | * Variation on os2emx.popen2 |
| 4341 | * |
| 4342 | * The result of this function is 3 pipes - the process's stdin, |
| 4343 | * stdout and stderr |
| 4344 | */ |
| 4345 | |
| 4346 | static PyObject * |
| 4347 | os2emx_popen3(PyObject *self, PyObject *args) |
| 4348 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4349 | PyObject *f; |
| 4350 | int tm = 0; |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4351 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4352 | char *cmdstring; |
| 4353 | char *mode = "t"; |
| 4354 | int bufsize = -1; |
| 4355 | if (!PyArg_ParseTuple(args, "s|si:popen3", &cmdstring, &mode, &bufsize)) |
| 4356 | return NULL; |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4357 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4358 | if (*mode == 't') |
| 4359 | tm = O_TEXT; |
| 4360 | else if (*mode != 'b') { |
| 4361 | PyErr_SetString(PyExc_ValueError, "mode must be 't' or 'b'"); |
| 4362 | return NULL; |
| 4363 | } else |
| 4364 | tm = O_BINARY; |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4365 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4366 | f = _PyPopen(cmdstring, tm, POPEN_3, bufsize); |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4367 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4368 | return f; |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4369 | } |
| 4370 | |
| 4371 | /* |
| 4372 | * Variation on os2emx.popen2 |
| 4373 | * |
Tim Peters | 11b2306 | 2003-04-23 02:39:17 +0000 | [diff] [blame] | 4374 | * The result of this function is 2 pipes - the processes stdin, |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4375 | * and stdout+stderr combined as a single pipe. |
| 4376 | */ |
| 4377 | |
| 4378 | static PyObject * |
| 4379 | os2emx_popen4(PyObject *self, PyObject *args) |
| 4380 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4381 | PyObject *f; |
| 4382 | int tm = 0; |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4383 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4384 | char *cmdstring; |
| 4385 | char *mode = "t"; |
| 4386 | int bufsize = -1; |
| 4387 | if (!PyArg_ParseTuple(args, "s|si:popen4", &cmdstring, &mode, &bufsize)) |
| 4388 | return NULL; |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4389 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4390 | if (*mode == 't') |
| 4391 | tm = O_TEXT; |
| 4392 | else if (*mode != 'b') { |
| 4393 | PyErr_SetString(PyExc_ValueError, "mode must be 't' or 'b'"); |
| 4394 | return NULL; |
| 4395 | } else |
| 4396 | tm = O_BINARY; |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4397 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4398 | f = _PyPopen(cmdstring, tm, POPEN_4, bufsize); |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4399 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4400 | return f; |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4401 | } |
| 4402 | |
| 4403 | /* a couple of structures for convenient handling of multiple |
| 4404 | * file handles and pipes |
| 4405 | */ |
| 4406 | struct file_ref |
| 4407 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4408 | int handle; |
| 4409 | int flags; |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4410 | }; |
| 4411 | |
| 4412 | struct pipe_ref |
| 4413 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4414 | int rd; |
| 4415 | int wr; |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4416 | }; |
| 4417 | |
| 4418 | /* The following code is derived from the win32 code */ |
| 4419 | |
| 4420 | static PyObject * |
| 4421 | _PyPopen(char *cmdstring, int mode, int n, int bufsize) |
| 4422 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4423 | struct file_ref stdio[3]; |
| 4424 | struct pipe_ref p_fd[3]; |
| 4425 | FILE *p_s[3]; |
| 4426 | int file_count, i, pipe_err; |
| 4427 | pid_t pipe_pid; |
| 4428 | char *shell, *sh_name, *opt, *rd_mode, *wr_mode; |
| 4429 | PyObject *f, *p_f[3]; |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4430 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4431 | /* file modes for subsequent fdopen's on pipe handles */ |
| 4432 | if (mode == O_TEXT) |
| 4433 | { |
| 4434 | rd_mode = "rt"; |
| 4435 | wr_mode = "wt"; |
| 4436 | } |
| 4437 | else |
| 4438 | { |
| 4439 | rd_mode = "rb"; |
| 4440 | wr_mode = "wb"; |
| 4441 | } |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4442 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4443 | /* prepare shell references */ |
| 4444 | if ((shell = getenv("EMXSHELL")) == NULL) |
| 4445 | if ((shell = getenv("COMSPEC")) == NULL) |
| 4446 | { |
| 4447 | errno = ENOENT; |
| 4448 | return posix_error(); |
| 4449 | } |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4450 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4451 | sh_name = _getname(shell); |
| 4452 | if (stricmp(sh_name, "cmd.exe") == 0 || stricmp(sh_name, "4os2.exe") == 0) |
| 4453 | opt = "/c"; |
| 4454 | else |
| 4455 | opt = "-c"; |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4456 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4457 | /* save current stdio fds + their flags, and set not inheritable */ |
| 4458 | i = pipe_err = 0; |
| 4459 | while (pipe_err >= 0 && i < 3) |
| 4460 | { |
| 4461 | pipe_err = stdio[i].handle = dup(i); |
| 4462 | stdio[i].flags = fcntl(i, F_GETFD, 0); |
| 4463 | fcntl(stdio[i].handle, F_SETFD, stdio[i].flags | FD_CLOEXEC); |
| 4464 | i++; |
| 4465 | } |
| 4466 | if (pipe_err < 0) |
| 4467 | { |
| 4468 | /* didn't get them all saved - clean up and bail out */ |
| 4469 | int saved_err = errno; |
| 4470 | while (i-- > 0) |
| 4471 | { |
| 4472 | close(stdio[i].handle); |
| 4473 | } |
| 4474 | errno = saved_err; |
| 4475 | return posix_error(); |
| 4476 | } |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4477 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4478 | /* create pipe ends */ |
| 4479 | file_count = 2; |
| 4480 | if (n == POPEN_3) |
| 4481 | file_count = 3; |
| 4482 | i = pipe_err = 0; |
| 4483 | while ((pipe_err == 0) && (i < file_count)) |
| 4484 | pipe_err = pipe((int *)&p_fd[i++]); |
| 4485 | if (pipe_err < 0) |
| 4486 | { |
| 4487 | /* didn't get them all made - clean up and bail out */ |
| 4488 | while (i-- > 0) |
| 4489 | { |
| 4490 | close(p_fd[i].wr); |
| 4491 | close(p_fd[i].rd); |
| 4492 | } |
| 4493 | errno = EPIPE; |
| 4494 | return posix_error(); |
| 4495 | } |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4496 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4497 | /* change the actual standard IO streams over temporarily, |
| 4498 | * making the retained pipe ends non-inheritable |
| 4499 | */ |
| 4500 | pipe_err = 0; |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4501 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4502 | /* - stdin */ |
| 4503 | if (dup2(p_fd[0].rd, 0) == 0) |
| 4504 | { |
| 4505 | close(p_fd[0].rd); |
| 4506 | i = fcntl(p_fd[0].wr, F_GETFD, 0); |
| 4507 | fcntl(p_fd[0].wr, F_SETFD, i | FD_CLOEXEC); |
| 4508 | if ((p_s[0] = fdopen(p_fd[0].wr, wr_mode)) == NULL) |
| 4509 | { |
| 4510 | close(p_fd[0].wr); |
| 4511 | pipe_err = -1; |
| 4512 | } |
| 4513 | } |
| 4514 | else |
| 4515 | { |
| 4516 | pipe_err = -1; |
| 4517 | } |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4518 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4519 | /* - stdout */ |
| 4520 | if (pipe_err == 0) |
| 4521 | { |
| 4522 | if (dup2(p_fd[1].wr, 1) == 1) |
| 4523 | { |
| 4524 | close(p_fd[1].wr); |
| 4525 | i = fcntl(p_fd[1].rd, F_GETFD, 0); |
| 4526 | fcntl(p_fd[1].rd, F_SETFD, i | FD_CLOEXEC); |
| 4527 | if ((p_s[1] = fdopen(p_fd[1].rd, rd_mode)) == NULL) |
| 4528 | { |
| 4529 | close(p_fd[1].rd); |
| 4530 | pipe_err = -1; |
| 4531 | } |
| 4532 | } |
| 4533 | else |
| 4534 | { |
| 4535 | pipe_err = -1; |
| 4536 | } |
| 4537 | } |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4538 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4539 | /* - stderr, as required */ |
| 4540 | if (pipe_err == 0) |
| 4541 | switch (n) |
| 4542 | { |
| 4543 | case POPEN_3: |
| 4544 | { |
| 4545 | if (dup2(p_fd[2].wr, 2) == 2) |
| 4546 | { |
| 4547 | close(p_fd[2].wr); |
| 4548 | i = fcntl(p_fd[2].rd, F_GETFD, 0); |
| 4549 | fcntl(p_fd[2].rd, F_SETFD, i | FD_CLOEXEC); |
| 4550 | if ((p_s[2] = fdopen(p_fd[2].rd, rd_mode)) == NULL) |
| 4551 | { |
| 4552 | close(p_fd[2].rd); |
| 4553 | pipe_err = -1; |
| 4554 | } |
| 4555 | } |
| 4556 | else |
| 4557 | { |
| 4558 | pipe_err = -1; |
| 4559 | } |
| 4560 | break; |
| 4561 | } |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4562 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4563 | case POPEN_4: |
| 4564 | { |
| 4565 | if (dup2(1, 2) != 2) |
| 4566 | { |
| 4567 | pipe_err = -1; |
| 4568 | } |
| 4569 | break; |
| 4570 | } |
| 4571 | } |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4572 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4573 | /* spawn the child process */ |
| 4574 | if (pipe_err == 0) |
| 4575 | { |
| 4576 | pipe_pid = spawnlp(P_NOWAIT, shell, shell, opt, cmdstring, (char *)0); |
| 4577 | if (pipe_pid == -1) |
| 4578 | { |
| 4579 | pipe_err = -1; |
| 4580 | } |
| 4581 | else |
| 4582 | { |
| 4583 | /* save the PID into the FILE structure |
| 4584 | * NOTE: this implementation doesn't actually |
| 4585 | * take advantage of this, but do it for |
| 4586 | * completeness - AIM Apr01 |
| 4587 | */ |
| 4588 | for (i = 0; i < file_count; i++) |
| 4589 | p_s[i]->_pid = pipe_pid; |
| 4590 | } |
| 4591 | } |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4592 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4593 | /* reset standard IO to normal */ |
| 4594 | for (i = 0; i < 3; i++) |
| 4595 | { |
| 4596 | dup2(stdio[i].handle, i); |
| 4597 | fcntl(i, F_SETFD, stdio[i].flags); |
| 4598 | close(stdio[i].handle); |
| 4599 | } |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4600 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4601 | /* if any remnant problems, clean up and bail out */ |
| 4602 | if (pipe_err < 0) |
| 4603 | { |
| 4604 | for (i = 0; i < 3; i++) |
| 4605 | { |
| 4606 | close(p_fd[i].rd); |
| 4607 | close(p_fd[i].wr); |
| 4608 | } |
| 4609 | errno = EPIPE; |
| 4610 | return posix_error_with_filename(cmdstring); |
| 4611 | } |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4612 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4613 | /* build tuple of file objects to return */ |
| 4614 | if ((p_f[0] = PyFile_FromFile(p_s[0], cmdstring, wr_mode, _PyPclose)) != NULL) |
| 4615 | PyFile_SetBufSize(p_f[0], bufsize); |
| 4616 | if ((p_f[1] = PyFile_FromFile(p_s[1], cmdstring, rd_mode, _PyPclose)) != NULL) |
| 4617 | PyFile_SetBufSize(p_f[1], bufsize); |
| 4618 | if (n == POPEN_3) |
| 4619 | { |
| 4620 | if ((p_f[2] = PyFile_FromFile(p_s[2], cmdstring, rd_mode, _PyPclose)) != NULL) |
| 4621 | PyFile_SetBufSize(p_f[0], bufsize); |
| 4622 | f = PyTuple_Pack(3, p_f[0], p_f[1], p_f[2]); |
| 4623 | } |
| 4624 | else |
| 4625 | f = PyTuple_Pack(2, p_f[0], p_f[1]); |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4626 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4627 | /* |
| 4628 | * Insert the files we've created into the process dictionary |
| 4629 | * all referencing the list with the process handle and the |
| 4630 | * initial number of files (see description below in _PyPclose). |
| 4631 | * Since if _PyPclose later tried to wait on a process when all |
| 4632 | * handles weren't closed, it could create a deadlock with the |
| 4633 | * child, we spend some energy here to try to ensure that we |
| 4634 | * either insert all file handles into the dictionary or none |
| 4635 | * at all. It's a little clumsy with the various popen modes |
| 4636 | * and variable number of files involved. |
| 4637 | */ |
| 4638 | if (!_PyPopenProcs) |
| 4639 | { |
| 4640 | _PyPopenProcs = PyDict_New(); |
| 4641 | } |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4642 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4643 | if (_PyPopenProcs) |
| 4644 | { |
| 4645 | PyObject *procObj, *pidObj, *intObj, *fileObj[3]; |
| 4646 | int ins_rc[3]; |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4647 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4648 | fileObj[0] = fileObj[1] = fileObj[2] = NULL; |
| 4649 | ins_rc[0] = ins_rc[1] = ins_rc[2] = 0; |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4650 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4651 | procObj = PyList_New(2); |
| 4652 | pidObj = PyLong_FromPid(pipe_pid); |
| 4653 | intObj = PyInt_FromLong((long) file_count); |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4654 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4655 | if (procObj && pidObj && intObj) |
| 4656 | { |
| 4657 | PyList_SetItem(procObj, 0, pidObj); |
| 4658 | PyList_SetItem(procObj, 1, intObj); |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4659 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4660 | fileObj[0] = PyLong_FromVoidPtr(p_s[0]); |
| 4661 | if (fileObj[0]) |
| 4662 | { |
| 4663 | ins_rc[0] = PyDict_SetItem(_PyPopenProcs, |
| 4664 | fileObj[0], |
| 4665 | procObj); |
| 4666 | } |
| 4667 | fileObj[1] = PyLong_FromVoidPtr(p_s[1]); |
| 4668 | if (fileObj[1]) |
| 4669 | { |
| 4670 | ins_rc[1] = PyDict_SetItem(_PyPopenProcs, |
| 4671 | fileObj[1], |
| 4672 | procObj); |
| 4673 | } |
| 4674 | if (file_count >= 3) |
| 4675 | { |
| 4676 | fileObj[2] = PyLong_FromVoidPtr(p_s[2]); |
| 4677 | if (fileObj[2]) |
| 4678 | { |
| 4679 | ins_rc[2] = PyDict_SetItem(_PyPopenProcs, |
| 4680 | fileObj[2], |
| 4681 | procObj); |
| 4682 | } |
| 4683 | } |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4684 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4685 | if (ins_rc[0] < 0 || !fileObj[0] || |
| 4686 | ins_rc[1] < 0 || (file_count > 1 && !fileObj[1]) || |
| 4687 | ins_rc[2] < 0 || (file_count > 2 && !fileObj[2])) |
| 4688 | { |
| 4689 | /* Something failed - remove any dictionary |
| 4690 | * entries that did make it. |
| 4691 | */ |
| 4692 | if (!ins_rc[0] && fileObj[0]) |
| 4693 | { |
| 4694 | PyDict_DelItem(_PyPopenProcs, |
| 4695 | fileObj[0]); |
| 4696 | } |
| 4697 | if (!ins_rc[1] && fileObj[1]) |
| 4698 | { |
| 4699 | PyDict_DelItem(_PyPopenProcs, |
| 4700 | fileObj[1]); |
| 4701 | } |
| 4702 | if (!ins_rc[2] && fileObj[2]) |
| 4703 | { |
| 4704 | PyDict_DelItem(_PyPopenProcs, |
| 4705 | fileObj[2]); |
| 4706 | } |
| 4707 | } |
| 4708 | } |
Tim Peters | 11b2306 | 2003-04-23 02:39:17 +0000 | [diff] [blame] | 4709 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4710 | /* |
| 4711 | * Clean up our localized references for the dictionary keys |
| 4712 | * and value since PyDict_SetItem will Py_INCREF any copies |
| 4713 | * that got placed in the dictionary. |
| 4714 | */ |
| 4715 | Py_XDECREF(procObj); |
| 4716 | Py_XDECREF(fileObj[0]); |
| 4717 | Py_XDECREF(fileObj[1]); |
| 4718 | Py_XDECREF(fileObj[2]); |
| 4719 | } |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4720 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4721 | /* Child is launched. */ |
| 4722 | return f; |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4723 | } |
| 4724 | |
| 4725 | /* |
| 4726 | * Wrapper for fclose() to use for popen* files, so we can retrieve the |
| 4727 | * exit code for the child process and return as a result of the close. |
| 4728 | * |
| 4729 | * This function uses the _PyPopenProcs dictionary in order to map the |
| 4730 | * input file pointer to information about the process that was |
| 4731 | * originally created by the popen* call that created the file pointer. |
| 4732 | * The dictionary uses the file pointer as a key (with one entry |
| 4733 | * inserted for each file returned by the original popen* call) and a |
| 4734 | * single list object as the value for all files from a single call. |
| 4735 | * The list object contains the Win32 process handle at [0], and a file |
| 4736 | * count at [1], which is initialized to the total number of file |
| 4737 | * handles using that list. |
| 4738 | * |
| 4739 | * This function closes whichever handle it is passed, and decrements |
| 4740 | * the file count in the dictionary for the process handle pointed to |
| 4741 | * by this file. On the last close (when the file count reaches zero), |
| 4742 | * this function will wait for the child process and then return its |
| 4743 | * exit code as the result of the close() operation. This permits the |
| 4744 | * files to be closed in any order - it is always the close() of the |
| 4745 | * final handle that will return the exit code. |
Andrew MacIntyre | baf25b0 | 2003-04-21 14:22:36 +0000 | [diff] [blame] | 4746 | * |
| 4747 | * NOTE: This function is currently called with the GIL released. |
| 4748 | * hence we use the GILState API to manage our state. |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4749 | */ |
| 4750 | |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4751 | static int _PyPclose(FILE *file) |
| 4752 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4753 | int result; |
| 4754 | int exit_code; |
| 4755 | pid_t pipe_pid; |
| 4756 | PyObject *procObj, *pidObj, *intObj, *fileObj; |
| 4757 | int file_count; |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4758 | #ifdef WITH_THREAD |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4759 | PyGILState_STATE state; |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4760 | #endif |
| 4761 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4762 | /* Close the file handle first, to ensure it can't block the |
| 4763 | * child from exiting if it's the last handle. |
| 4764 | */ |
| 4765 | result = fclose(file); |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4766 | |
| 4767 | #ifdef WITH_THREAD |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4768 | state = PyGILState_Ensure(); |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4769 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4770 | if (_PyPopenProcs) |
| 4771 | { |
| 4772 | if ((fileObj = PyLong_FromVoidPtr(file)) != NULL && |
| 4773 | (procObj = PyDict_GetItem(_PyPopenProcs, |
| 4774 | fileObj)) != NULL && |
| 4775 | (pidObj = PyList_GetItem(procObj,0)) != NULL && |
| 4776 | (intObj = PyList_GetItem(procObj,1)) != NULL) |
| 4777 | { |
| 4778 | pipe_pid = (pid_t) PyLong_AsPid(pidObj); |
| 4779 | file_count = (int) PyInt_AsLong(intObj); |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4780 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4781 | if (file_count > 1) |
| 4782 | { |
| 4783 | /* Still other files referencing process */ |
| 4784 | file_count--; |
| 4785 | PyList_SetItem(procObj,1, |
| 4786 | PyInt_FromLong((long) file_count)); |
| 4787 | } |
| 4788 | else |
| 4789 | { |
| 4790 | /* Last file for this process */ |
| 4791 | if (result != EOF && |
| 4792 | waitpid(pipe_pid, &exit_code, 0) == pipe_pid) |
| 4793 | { |
| 4794 | /* extract exit status */ |
| 4795 | if (WIFEXITED(exit_code)) |
| 4796 | { |
| 4797 | result = WEXITSTATUS(exit_code); |
| 4798 | } |
| 4799 | else |
| 4800 | { |
| 4801 | errno = EPIPE; |
| 4802 | result = -1; |
| 4803 | } |
| 4804 | } |
| 4805 | else |
| 4806 | { |
| 4807 | /* Indicate failure - this will cause the file object |
| 4808 | * to raise an I/O error and translate the last |
| 4809 | * error code from errno. We do have a problem with |
| 4810 | * last errors that overlap the normal errno table, |
| 4811 | * but that's a consistent problem with the file object. |
| 4812 | */ |
| 4813 | result = -1; |
| 4814 | } |
| 4815 | } |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4816 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4817 | /* Remove this file pointer from dictionary */ |
| 4818 | PyDict_DelItem(_PyPopenProcs, fileObj); |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4819 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4820 | if (PyDict_Size(_PyPopenProcs) == 0) |
| 4821 | { |
| 4822 | Py_DECREF(_PyPopenProcs); |
| 4823 | _PyPopenProcs = NULL; |
| 4824 | } |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4825 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4826 | } /* if object retrieval ok */ |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4827 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4828 | Py_XDECREF(fileObj); |
| 4829 | } /* if _PyPopenProcs */ |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4830 | |
| 4831 | #ifdef WITH_THREAD |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4832 | PyGILState_Release(state); |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4833 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4834 | return result; |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4835 | } |
| 4836 | |
| 4837 | #endif /* PYCC_??? */ |
| 4838 | |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 4839 | #elif defined(MS_WINDOWS) |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4840 | |
| 4841 | /* |
| 4842 | * Portable 'popen' replacement for Win32. |
| 4843 | * |
| 4844 | * Written by Bill Tutt <billtut@microsoft.com>. Minor tweaks |
| 4845 | * and 2.0 integration by Fredrik Lundh <fredrik@pythonware.com> |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 4846 | * Return code handling by David Bolen <db3l@fitlinxx.com>. |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4847 | */ |
| 4848 | |
| 4849 | #include <malloc.h> |
| 4850 | #include <io.h> |
| 4851 | #include <fcntl.h> |
| 4852 | |
| 4853 | /* These tell _PyPopen() wether to return 1, 2, or 3 file objects. */ |
| 4854 | #define POPEN_1 1 |
| 4855 | #define POPEN_2 2 |
| 4856 | #define POPEN_3 3 |
| 4857 | #define POPEN_4 4 |
| 4858 | |
| 4859 | static PyObject *_PyPopen(char *, int, int); |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 4860 | static int _PyPclose(FILE *file); |
| 4861 | |
| 4862 | /* |
| 4863 | * Internal dictionary mapping popen* file pointers to process handles, |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 4864 | * for use when retrieving the process exit code. See _PyPclose() below |
| 4865 | * for more information on this dictionary's use. |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 4866 | */ |
| 4867 | static PyObject *_PyPopenProcs = NULL; |
| 4868 | |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4869 | |
| 4870 | /* popen that works from a GUI. |
| 4871 | * |
| 4872 | * The result of this function is a pipe (file) connected to the |
| 4873 | * processes stdin or stdout, depending on the requested mode. |
| 4874 | */ |
| 4875 | |
| 4876 | static PyObject * |
| 4877 | posix_popen(PyObject *self, PyObject *args) |
| 4878 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4879 | PyObject *f; |
| 4880 | int tm = 0; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 4881 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4882 | char *cmdstring; |
| 4883 | char *mode = "r"; |
| 4884 | int bufsize = -1; |
| 4885 | if (!PyArg_ParseTuple(args, "s|si:popen", &cmdstring, &mode, &bufsize)) |
| 4886 | return NULL; |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4887 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4888 | if (*mode == 'r') |
| 4889 | tm = _O_RDONLY; |
| 4890 | else if (*mode != 'w') { |
| 4891 | PyErr_SetString(PyExc_ValueError, "popen() arg 2 must be 'r' or 'w'"); |
| 4892 | return NULL; |
| 4893 | } else |
| 4894 | tm = _O_WRONLY; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 4895 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4896 | if (bufsize != -1) { |
| 4897 | PyErr_SetString(PyExc_ValueError, "popen() arg 3 must be -1"); |
| 4898 | return NULL; |
| 4899 | } |
Fredrik Lundh | 766ccdc | 2000-07-09 17:41:01 +0000 | [diff] [blame] | 4900 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4901 | if (*(mode+1) == 't') |
| 4902 | f = _PyPopen(cmdstring, tm | _O_TEXT, POPEN_1); |
| 4903 | else if (*(mode+1) == 'b') |
| 4904 | f = _PyPopen(cmdstring, tm | _O_BINARY, POPEN_1); |
| 4905 | else |
| 4906 | f = _PyPopen(cmdstring, tm | _O_TEXT, POPEN_1); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4907 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4908 | return f; |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4909 | } |
| 4910 | |
| 4911 | /* Variation on win32pipe.popen |
| 4912 | * |
| 4913 | * The result of this function is a pipe (file) connected to the |
| 4914 | * process's stdin, and a pipe connected to the process's stdout. |
| 4915 | */ |
| 4916 | |
| 4917 | static PyObject * |
| 4918 | win32_popen2(PyObject *self, PyObject *args) |
| 4919 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4920 | PyObject *f; |
| 4921 | int tm=0; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 4922 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4923 | char *cmdstring; |
| 4924 | char *mode = "t"; |
| 4925 | int bufsize = -1; |
| 4926 | if (!PyArg_ParseTuple(args, "s|si:popen2", &cmdstring, &mode, &bufsize)) |
| 4927 | return NULL; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 4928 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4929 | if (*mode == 't') |
| 4930 | tm = _O_TEXT; |
| 4931 | else if (*mode != 'b') { |
| 4932 | PyErr_SetString(PyExc_ValueError, "popen2() arg 2 must be 't' or 'b'"); |
| 4933 | return NULL; |
| 4934 | } else |
| 4935 | tm = _O_BINARY; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 4936 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4937 | if (bufsize != -1) { |
| 4938 | PyErr_SetString(PyExc_ValueError, "popen2() arg 3 must be -1"); |
| 4939 | return NULL; |
| 4940 | } |
Fredrik Lundh | 766ccdc | 2000-07-09 17:41:01 +0000 | [diff] [blame] | 4941 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4942 | f = _PyPopen(cmdstring, tm, POPEN_2); |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 4943 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4944 | return f; |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4945 | } |
| 4946 | |
| 4947 | /* |
| 4948 | * Variation on <om win32pipe.popen> |
Fredrik Lundh | bb7eeff | 2000-07-09 17:59:32 +0000 | [diff] [blame] | 4949 | * |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4950 | * The result of this function is 3 pipes - the process's stdin, |
| 4951 | * stdout and stderr |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4952 | */ |
| 4953 | |
| 4954 | static PyObject * |
| 4955 | win32_popen3(PyObject *self, PyObject *args) |
| 4956 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4957 | PyObject *f; |
| 4958 | int tm = 0; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 4959 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4960 | char *cmdstring; |
| 4961 | char *mode = "t"; |
| 4962 | int bufsize = -1; |
| 4963 | if (!PyArg_ParseTuple(args, "s|si:popen3", &cmdstring, &mode, &bufsize)) |
| 4964 | return NULL; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 4965 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4966 | if (*mode == 't') |
| 4967 | tm = _O_TEXT; |
| 4968 | else if (*mode != 'b') { |
| 4969 | PyErr_SetString(PyExc_ValueError, "popen3() arg 2 must be 't' or 'b'"); |
| 4970 | return NULL; |
| 4971 | } else |
| 4972 | tm = _O_BINARY; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 4973 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4974 | if (bufsize != -1) { |
| 4975 | PyErr_SetString(PyExc_ValueError, "popen3() arg 3 must be -1"); |
| 4976 | return NULL; |
| 4977 | } |
Fredrik Lundh | 766ccdc | 2000-07-09 17:41:01 +0000 | [diff] [blame] | 4978 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4979 | f = _PyPopen(cmdstring, tm, POPEN_3); |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 4980 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4981 | return f; |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4982 | } |
| 4983 | |
| 4984 | /* |
| 4985 | * Variation on win32pipe.popen |
| 4986 | * |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 4987 | * The result of this function is 2 pipes - the processes stdin, |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4988 | * and stdout+stderr combined as a single pipe. |
| 4989 | */ |
| 4990 | |
| 4991 | static PyObject * |
| 4992 | win32_popen4(PyObject *self, PyObject *args) |
| 4993 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4994 | PyObject *f; |
| 4995 | int tm = 0; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 4996 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 4997 | char *cmdstring; |
| 4998 | char *mode = "t"; |
| 4999 | int bufsize = -1; |
| 5000 | if (!PyArg_ParseTuple(args, "s|si:popen4", &cmdstring, &mode, &bufsize)) |
| 5001 | return NULL; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 5002 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5003 | if (*mode == 't') |
| 5004 | tm = _O_TEXT; |
| 5005 | else if (*mode != 'b') { |
| 5006 | PyErr_SetString(PyExc_ValueError, "popen4() arg 2 must be 't' or 'b'"); |
| 5007 | return NULL; |
| 5008 | } else |
| 5009 | tm = _O_BINARY; |
Fredrik Lundh | 766ccdc | 2000-07-09 17:41:01 +0000 | [diff] [blame] | 5010 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5011 | if (bufsize != -1) { |
| 5012 | PyErr_SetString(PyExc_ValueError, "popen4() arg 3 must be -1"); |
| 5013 | return NULL; |
| 5014 | } |
Fredrik Lundh | 766ccdc | 2000-07-09 17:41:01 +0000 | [diff] [blame] | 5015 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5016 | f = _PyPopen(cmdstring, tm, POPEN_4); |
Fredrik Lundh | 766ccdc | 2000-07-09 17:41:01 +0000 | [diff] [blame] | 5017 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5018 | return f; |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5019 | } |
| 5020 | |
Mark Hammond | 0850137 | 2001-01-31 07:30:29 +0000 | [diff] [blame] | 5021 | static BOOL |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 5022 | _PyPopenCreateProcess(char *cmdstring, |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5023 | HANDLE hStdin, |
| 5024 | HANDLE hStdout, |
| 5025 | HANDLE hStderr, |
| 5026 | HANDLE *hProcess) |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5027 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5028 | PROCESS_INFORMATION piProcInfo; |
| 5029 | STARTUPINFO siStartInfo; |
| 5030 | DWORD dwProcessFlags = 0; /* no NEW_CONSOLE by default for Ctrl+C handling */ |
| 5031 | char *s1,*s2, *s3 = " /c "; |
| 5032 | const char *szConsoleSpawn = "w9xpopen.exe"; |
| 5033 | int i; |
| 5034 | Py_ssize_t x; |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5035 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5036 | if (i = GetEnvironmentVariable("COMSPEC",NULL,0)) { |
| 5037 | char *comshell; |
Tim Peters | 402d598 | 2001-08-27 06:37:48 +0000 | [diff] [blame] | 5038 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5039 | s1 = (char *)alloca(i); |
| 5040 | if (!(x = GetEnvironmentVariable("COMSPEC", s1, i))) |
| 5041 | /* x < i, so x fits into an integer */ |
| 5042 | return (int)x; |
Tim Peters | 402d598 | 2001-08-27 06:37:48 +0000 | [diff] [blame] | 5043 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5044 | /* Explicitly check if we are using COMMAND.COM. If we are |
| 5045 | * then use the w9xpopen hack. |
| 5046 | */ |
| 5047 | comshell = s1 + x; |
| 5048 | while (comshell >= s1 && *comshell != '\\') |
| 5049 | --comshell; |
| 5050 | ++comshell; |
Tim Peters | 402d598 | 2001-08-27 06:37:48 +0000 | [diff] [blame] | 5051 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5052 | if (GetVersion() < 0x80000000 && |
| 5053 | _stricmp(comshell, "command.com") != 0) { |
| 5054 | /* NT/2000 and not using command.com. */ |
| 5055 | x = i + strlen(s3) + strlen(cmdstring) + 1; |
| 5056 | s2 = (char *)alloca(x); |
| 5057 | ZeroMemory(s2, x); |
| 5058 | PyOS_snprintf(s2, x, "%s%s%s", s1, s3, cmdstring); |
| 5059 | } |
| 5060 | else { |
| 5061 | /* |
| 5062 | * Oh gag, we're on Win9x or using COMMAND.COM. Use |
| 5063 | * the workaround listed in KB: Q150956 |
| 5064 | */ |
| 5065 | char modulepath[_MAX_PATH]; |
| 5066 | struct stat statinfo; |
| 5067 | GetModuleFileName(NULL, modulepath, sizeof(modulepath)); |
| 5068 | for (x = i = 0; modulepath[i]; i++) |
| 5069 | if (modulepath[i] == SEP) |
| 5070 | x = i+1; |
| 5071 | modulepath[x] = '\0'; |
| 5072 | /* Create the full-name to w9xpopen, so we can test it exists */ |
| 5073 | strncat(modulepath, |
| 5074 | szConsoleSpawn, |
| 5075 | (sizeof(modulepath)/sizeof(modulepath[0])) |
| 5076 | -strlen(modulepath)); |
| 5077 | if (stat(modulepath, &statinfo) != 0) { |
| 5078 | size_t mplen = sizeof(modulepath)/sizeof(modulepath[0]); |
| 5079 | /* Eeek - file-not-found - possibly an embedding |
| 5080 | situation - see if we can locate it in sys.prefix |
| 5081 | */ |
| 5082 | strncpy(modulepath, |
| 5083 | Py_GetExecPrefix(), |
| 5084 | mplen); |
| 5085 | modulepath[mplen-1] = '\0'; |
| 5086 | if (modulepath[strlen(modulepath)-1] != '\\') |
| 5087 | strcat(modulepath, "\\"); |
| 5088 | strncat(modulepath, |
| 5089 | szConsoleSpawn, |
| 5090 | mplen-strlen(modulepath)); |
| 5091 | /* No where else to look - raise an easily identifiable |
| 5092 | error, rather than leaving Windows to report |
| 5093 | "file not found" - as the user is probably blissfully |
| 5094 | unaware this shim EXE is used, and it will confuse them. |
| 5095 | (well, it confused me for a while ;-) |
| 5096 | */ |
| 5097 | if (stat(modulepath, &statinfo) != 0) { |
| 5098 | PyErr_Format(PyExc_RuntimeError, |
| 5099 | "Can not locate '%s' which is needed " |
| 5100 | "for popen to work with your shell " |
| 5101 | "or platform.", |
| 5102 | szConsoleSpawn); |
| 5103 | return FALSE; |
| 5104 | } |
| 5105 | } |
| 5106 | x = i + strlen(s3) + strlen(cmdstring) + 1 + |
| 5107 | strlen(modulepath) + |
| 5108 | strlen(szConsoleSpawn) + 1; |
Mark Hammond | 0850137 | 2001-01-31 07:30:29 +0000 | [diff] [blame] | 5109 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5110 | s2 = (char *)alloca(x); |
| 5111 | ZeroMemory(s2, x); |
| 5112 | /* To maintain correct argument passing semantics, |
| 5113 | we pass the command-line as it stands, and allow |
| 5114 | quoting to be applied. w9xpopen.exe will then |
| 5115 | use its argv vector, and re-quote the necessary |
| 5116 | args for the ultimate child process. |
| 5117 | */ |
| 5118 | PyOS_snprintf( |
| 5119 | s2, x, |
| 5120 | "\"%s\" %s%s%s", |
| 5121 | modulepath, |
| 5122 | s1, |
| 5123 | s3, |
| 5124 | cmdstring); |
| 5125 | /* Not passing CREATE_NEW_CONSOLE has been known to |
| 5126 | cause random failures on win9x. Specifically a |
| 5127 | dialog: |
| 5128 | "Your program accessed mem currently in use at xxx" |
| 5129 | and a hopeful warning about the stability of your |
| 5130 | system. |
| 5131 | Cost is Ctrl+C won't kill children, but anyone |
| 5132 | who cares can have a go! |
| 5133 | */ |
| 5134 | dwProcessFlags |= CREATE_NEW_CONSOLE; |
| 5135 | } |
| 5136 | } |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5137 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5138 | /* Could be an else here to try cmd.exe / command.com in the path |
| 5139 | Now we'll just error out.. */ |
| 5140 | else { |
| 5141 | PyErr_SetString(PyExc_RuntimeError, |
| 5142 | "Cannot locate a COMSPEC environment variable to " |
| 5143 | "use as the shell"); |
| 5144 | return FALSE; |
| 5145 | } |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 5146 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5147 | ZeroMemory(&siStartInfo, sizeof(STARTUPINFO)); |
| 5148 | siStartInfo.cb = sizeof(STARTUPINFO); |
| 5149 | siStartInfo.dwFlags = STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW; |
| 5150 | siStartInfo.hStdInput = hStdin; |
| 5151 | siStartInfo.hStdOutput = hStdout; |
| 5152 | siStartInfo.hStdError = hStderr; |
| 5153 | siStartInfo.wShowWindow = SW_HIDE; |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5154 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5155 | if (CreateProcess(NULL, |
| 5156 | s2, |
| 5157 | NULL, |
| 5158 | NULL, |
| 5159 | TRUE, |
| 5160 | dwProcessFlags, |
| 5161 | NULL, |
| 5162 | NULL, |
| 5163 | &siStartInfo, |
| 5164 | &piProcInfo) ) { |
| 5165 | /* Close the handles now so anyone waiting is woken. */ |
| 5166 | CloseHandle(piProcInfo.hThread); |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 5167 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5168 | /* Return process handle */ |
| 5169 | *hProcess = piProcInfo.hProcess; |
| 5170 | return TRUE; |
| 5171 | } |
| 5172 | win32_error("CreateProcess", s2); |
| 5173 | return FALSE; |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5174 | } |
| 5175 | |
| 5176 | /* The following code is based off of KB: Q190351 */ |
| 5177 | |
| 5178 | static PyObject * |
| 5179 | _PyPopen(char *cmdstring, int mode, int n) |
| 5180 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5181 | HANDLE hChildStdinRd, hChildStdinWr, hChildStdoutRd, hChildStdoutWr, |
| 5182 | hChildStderrRd, hChildStderrWr, hChildStdinWrDup, hChildStdoutRdDup, |
| 5183 | hChildStderrRdDup, hProcess; /* hChildStdoutWrDup; */ |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 5184 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5185 | SECURITY_ATTRIBUTES saAttr; |
| 5186 | BOOL fSuccess; |
| 5187 | int fd1, fd2, fd3; |
| 5188 | FILE *f1, *f2, *f3; |
| 5189 | long file_count; |
| 5190 | PyObject *f; |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5191 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5192 | saAttr.nLength = sizeof(SECURITY_ATTRIBUTES); |
| 5193 | saAttr.bInheritHandle = TRUE; |
| 5194 | saAttr.lpSecurityDescriptor = NULL; |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5195 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5196 | if (!CreatePipe(&hChildStdinRd, &hChildStdinWr, &saAttr, 0)) |
| 5197 | return win32_error("CreatePipe", NULL); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5198 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5199 | /* Create new output read handle and the input write handle. Set |
| 5200 | * the inheritance properties to FALSE. Otherwise, the child inherits |
| 5201 | * these handles; resulting in non-closeable handles to the pipes |
| 5202 | * being created. */ |
| 5203 | fSuccess = DuplicateHandle(GetCurrentProcess(), hChildStdinWr, |
| 5204 | GetCurrentProcess(), &hChildStdinWrDup, 0, |
| 5205 | FALSE, |
| 5206 | DUPLICATE_SAME_ACCESS); |
| 5207 | if (!fSuccess) |
| 5208 | return win32_error("DuplicateHandle", NULL); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5209 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5210 | /* Close the inheritable version of ChildStdin |
| 5211 | that we're using. */ |
| 5212 | CloseHandle(hChildStdinWr); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5213 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5214 | if (!CreatePipe(&hChildStdoutRd, &hChildStdoutWr, &saAttr, 0)) |
| 5215 | return win32_error("CreatePipe", NULL); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5216 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5217 | fSuccess = DuplicateHandle(GetCurrentProcess(), hChildStdoutRd, |
| 5218 | GetCurrentProcess(), &hChildStdoutRdDup, 0, |
| 5219 | FALSE, DUPLICATE_SAME_ACCESS); |
| 5220 | if (!fSuccess) |
| 5221 | return win32_error("DuplicateHandle", NULL); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5222 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5223 | /* Close the inheritable version of ChildStdout |
| 5224 | that we're using. */ |
| 5225 | CloseHandle(hChildStdoutRd); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5226 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5227 | if (n != POPEN_4) { |
| 5228 | if (!CreatePipe(&hChildStderrRd, &hChildStderrWr, &saAttr, 0)) |
| 5229 | return win32_error("CreatePipe", NULL); |
| 5230 | fSuccess = DuplicateHandle(GetCurrentProcess(), |
| 5231 | hChildStderrRd, |
| 5232 | GetCurrentProcess(), |
| 5233 | &hChildStderrRdDup, 0, |
| 5234 | FALSE, DUPLICATE_SAME_ACCESS); |
| 5235 | if (!fSuccess) |
| 5236 | return win32_error("DuplicateHandle", NULL); |
| 5237 | /* Close the inheritable version of ChildStdErr that we're using. */ |
| 5238 | CloseHandle(hChildStderrRd); |
| 5239 | } |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 5240 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5241 | switch (n) { |
| 5242 | case POPEN_1: |
| 5243 | switch (mode & (_O_RDONLY | _O_TEXT | _O_BINARY | _O_WRONLY)) { |
| 5244 | case _O_WRONLY | _O_TEXT: |
| 5245 | /* Case for writing to child Stdin in text mode. */ |
| 5246 | fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode); |
| 5247 | f1 = _fdopen(fd1, "w"); |
| 5248 | f = PyFile_FromFile(f1, cmdstring, "w", _PyPclose); |
| 5249 | PyFile_SetBufSize(f, 0); |
| 5250 | /* We don't care about these pipes anymore, so close them. */ |
| 5251 | CloseHandle(hChildStdoutRdDup); |
| 5252 | CloseHandle(hChildStderrRdDup); |
| 5253 | break; |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5254 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5255 | case _O_RDONLY | _O_TEXT: |
| 5256 | /* Case for reading from child Stdout in text mode. */ |
| 5257 | fd1 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode); |
| 5258 | f1 = _fdopen(fd1, "r"); |
| 5259 | f = PyFile_FromFile(f1, cmdstring, "r", _PyPclose); |
| 5260 | PyFile_SetBufSize(f, 0); |
| 5261 | /* We don't care about these pipes anymore, so close them. */ |
| 5262 | CloseHandle(hChildStdinWrDup); |
| 5263 | CloseHandle(hChildStderrRdDup); |
| 5264 | break; |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5265 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5266 | case _O_RDONLY | _O_BINARY: |
| 5267 | /* Case for readinig from child Stdout in binary mode. */ |
| 5268 | fd1 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode); |
| 5269 | f1 = _fdopen(fd1, "rb"); |
| 5270 | f = PyFile_FromFile(f1, cmdstring, "rb", _PyPclose); |
| 5271 | PyFile_SetBufSize(f, 0); |
| 5272 | /* We don't care about these pipes anymore, so close them. */ |
| 5273 | CloseHandle(hChildStdinWrDup); |
| 5274 | CloseHandle(hChildStderrRdDup); |
| 5275 | break; |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5276 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5277 | case _O_WRONLY | _O_BINARY: |
| 5278 | /* Case for writing to child Stdin in binary mode. */ |
| 5279 | fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode); |
| 5280 | f1 = _fdopen(fd1, "wb"); |
| 5281 | f = PyFile_FromFile(f1, cmdstring, "wb", _PyPclose); |
| 5282 | PyFile_SetBufSize(f, 0); |
| 5283 | /* We don't care about these pipes anymore, so close them. */ |
| 5284 | CloseHandle(hChildStdoutRdDup); |
| 5285 | CloseHandle(hChildStderrRdDup); |
| 5286 | break; |
| 5287 | } |
| 5288 | file_count = 1; |
| 5289 | break; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 5290 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5291 | case POPEN_2: |
| 5292 | case POPEN_4: |
| 5293 | { |
| 5294 | char *m1, *m2; |
| 5295 | PyObject *p1, *p2; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 5296 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5297 | if (mode & _O_TEXT) { |
| 5298 | m1 = "r"; |
| 5299 | m2 = "w"; |
| 5300 | } else { |
| 5301 | m1 = "rb"; |
| 5302 | m2 = "wb"; |
| 5303 | } |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5304 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5305 | fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode); |
| 5306 | f1 = _fdopen(fd1, m2); |
| 5307 | fd2 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode); |
| 5308 | f2 = _fdopen(fd2, m1); |
| 5309 | p1 = PyFile_FromFile(f1, cmdstring, m2, _PyPclose); |
| 5310 | PyFile_SetBufSize(p1, 0); |
| 5311 | p2 = PyFile_FromFile(f2, cmdstring, m1, _PyPclose); |
| 5312 | PyFile_SetBufSize(p2, 0); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5313 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5314 | if (n != 4) |
| 5315 | CloseHandle(hChildStderrRdDup); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5316 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5317 | f = PyTuple_Pack(2,p1,p2); |
| 5318 | Py_XDECREF(p1); |
| 5319 | Py_XDECREF(p2); |
| 5320 | file_count = 2; |
| 5321 | break; |
| 5322 | } |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 5323 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5324 | case POPEN_3: |
| 5325 | { |
| 5326 | char *m1, *m2; |
| 5327 | PyObject *p1, *p2, *p3; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 5328 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5329 | if (mode & _O_TEXT) { |
| 5330 | m1 = "r"; |
| 5331 | m2 = "w"; |
| 5332 | } else { |
| 5333 | m1 = "rb"; |
| 5334 | m2 = "wb"; |
| 5335 | } |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5336 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5337 | fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode); |
| 5338 | f1 = _fdopen(fd1, m2); |
| 5339 | fd2 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode); |
| 5340 | f2 = _fdopen(fd2, m1); |
| 5341 | fd3 = _open_osfhandle((Py_intptr_t)hChildStderrRdDup, mode); |
| 5342 | f3 = _fdopen(fd3, m1); |
| 5343 | p1 = PyFile_FromFile(f1, cmdstring, m2, _PyPclose); |
| 5344 | p2 = PyFile_FromFile(f2, cmdstring, m1, _PyPclose); |
| 5345 | p3 = PyFile_FromFile(f3, cmdstring, m1, _PyPclose); |
| 5346 | PyFile_SetBufSize(p1, 0); |
| 5347 | PyFile_SetBufSize(p2, 0); |
| 5348 | PyFile_SetBufSize(p3, 0); |
| 5349 | f = PyTuple_Pack(3,p1,p2,p3); |
| 5350 | Py_XDECREF(p1); |
| 5351 | Py_XDECREF(p2); |
| 5352 | Py_XDECREF(p3); |
| 5353 | file_count = 3; |
| 5354 | break; |
| 5355 | } |
| 5356 | } |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5357 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5358 | if (n == POPEN_4) { |
| 5359 | if (!_PyPopenCreateProcess(cmdstring, |
| 5360 | hChildStdinRd, |
| 5361 | hChildStdoutWr, |
| 5362 | hChildStdoutWr, |
| 5363 | &hProcess)) |
| 5364 | return NULL; |
| 5365 | } |
| 5366 | else { |
| 5367 | if (!_PyPopenCreateProcess(cmdstring, |
| 5368 | hChildStdinRd, |
| 5369 | hChildStdoutWr, |
| 5370 | hChildStderrWr, |
| 5371 | &hProcess)) |
| 5372 | return NULL; |
| 5373 | } |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5374 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5375 | /* |
| 5376 | * Insert the files we've created into the process dictionary |
| 5377 | * all referencing the list with the process handle and the |
| 5378 | * initial number of files (see description below in _PyPclose). |
| 5379 | * Since if _PyPclose later tried to wait on a process when all |
| 5380 | * handles weren't closed, it could create a deadlock with the |
| 5381 | * child, we spend some energy here to try to ensure that we |
| 5382 | * either insert all file handles into the dictionary or none |
| 5383 | * at all. It's a little clumsy with the various popen modes |
| 5384 | * and variable number of files involved. |
| 5385 | */ |
| 5386 | if (!_PyPopenProcs) { |
| 5387 | _PyPopenProcs = PyDict_New(); |
| 5388 | } |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 5389 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5390 | if (_PyPopenProcs) { |
| 5391 | PyObject *procObj, *hProcessObj, *intObj, *fileObj[3]; |
| 5392 | int ins_rc[3]; |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 5393 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5394 | fileObj[0] = fileObj[1] = fileObj[2] = NULL; |
| 5395 | ins_rc[0] = ins_rc[1] = ins_rc[2] = 0; |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 5396 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5397 | procObj = PyList_New(2); |
| 5398 | hProcessObj = PyLong_FromVoidPtr(hProcess); |
| 5399 | intObj = PyInt_FromLong(file_count); |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 5400 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5401 | if (procObj && hProcessObj && intObj) { |
| 5402 | PyList_SetItem(procObj,0,hProcessObj); |
| 5403 | PyList_SetItem(procObj,1,intObj); |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 5404 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5405 | fileObj[0] = PyLong_FromVoidPtr(f1); |
| 5406 | if (fileObj[0]) { |
| 5407 | ins_rc[0] = PyDict_SetItem(_PyPopenProcs, |
| 5408 | fileObj[0], |
| 5409 | procObj); |
| 5410 | } |
| 5411 | if (file_count >= 2) { |
| 5412 | fileObj[1] = PyLong_FromVoidPtr(f2); |
| 5413 | if (fileObj[1]) { |
| 5414 | ins_rc[1] = PyDict_SetItem(_PyPopenProcs, |
| 5415 | fileObj[1], |
| 5416 | procObj); |
| 5417 | } |
| 5418 | } |
| 5419 | if (file_count >= 3) { |
| 5420 | fileObj[2] = PyLong_FromVoidPtr(f3); |
| 5421 | if (fileObj[2]) { |
| 5422 | ins_rc[2] = PyDict_SetItem(_PyPopenProcs, |
| 5423 | fileObj[2], |
| 5424 | procObj); |
| 5425 | } |
| 5426 | } |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 5427 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5428 | if (ins_rc[0] < 0 || !fileObj[0] || |
| 5429 | ins_rc[1] < 0 || (file_count > 1 && !fileObj[1]) || |
| 5430 | ins_rc[2] < 0 || (file_count > 2 && !fileObj[2])) { |
| 5431 | /* Something failed - remove any dictionary |
| 5432 | * entries that did make it. |
| 5433 | */ |
| 5434 | if (!ins_rc[0] && fileObj[0]) { |
| 5435 | PyDict_DelItem(_PyPopenProcs, |
| 5436 | fileObj[0]); |
| 5437 | } |
| 5438 | if (!ins_rc[1] && fileObj[1]) { |
| 5439 | PyDict_DelItem(_PyPopenProcs, |
| 5440 | fileObj[1]); |
| 5441 | } |
| 5442 | if (!ins_rc[2] && fileObj[2]) { |
| 5443 | PyDict_DelItem(_PyPopenProcs, |
| 5444 | fileObj[2]); |
| 5445 | } |
| 5446 | } |
| 5447 | } |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 5448 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5449 | /* |
| 5450 | * Clean up our localized references for the dictionary keys |
| 5451 | * and value since PyDict_SetItem will Py_INCREF any copies |
| 5452 | * that got placed in the dictionary. |
| 5453 | */ |
| 5454 | Py_XDECREF(procObj); |
| 5455 | Py_XDECREF(fileObj[0]); |
| 5456 | Py_XDECREF(fileObj[1]); |
| 5457 | Py_XDECREF(fileObj[2]); |
| 5458 | } |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 5459 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5460 | /* Child is launched. Close the parents copy of those pipe |
| 5461 | * handles that only the child should have open. You need to |
| 5462 | * make sure that no handles to the write end of the output pipe |
| 5463 | * are maintained in this process or else the pipe will not close |
| 5464 | * when the child process exits and the ReadFile will hang. */ |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5465 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5466 | if (!CloseHandle(hChildStdinRd)) |
| 5467 | return win32_error("CloseHandle", NULL); |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 5468 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5469 | if (!CloseHandle(hChildStdoutWr)) |
| 5470 | return win32_error("CloseHandle", NULL); |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 5471 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5472 | if ((n != 4) && (!CloseHandle(hChildStderrWr))) |
| 5473 | return win32_error("CloseHandle", NULL); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5474 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5475 | return f; |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5476 | } |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 5477 | |
| 5478 | /* |
| 5479 | * Wrapper for fclose() to use for popen* files, so we can retrieve the |
| 5480 | * exit code for the child process and return as a result of the close. |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 5481 | * |
| 5482 | * This function uses the _PyPopenProcs dictionary in order to map the |
| 5483 | * input file pointer to information about the process that was |
| 5484 | * originally created by the popen* call that created the file pointer. |
| 5485 | * The dictionary uses the file pointer as a key (with one entry |
| 5486 | * inserted for each file returned by the original popen* call) and a |
| 5487 | * single list object as the value for all files from a single call. |
| 5488 | * The list object contains the Win32 process handle at [0], and a file |
| 5489 | * count at [1], which is initialized to the total number of file |
| 5490 | * handles using that list. |
| 5491 | * |
| 5492 | * This function closes whichever handle it is passed, and decrements |
| 5493 | * the file count in the dictionary for the process handle pointed to |
| 5494 | * by this file. On the last close (when the file count reaches zero), |
| 5495 | * this function will wait for the child process and then return its |
| 5496 | * exit code as the result of the close() operation. This permits the |
| 5497 | * files to be closed in any order - it is always the close() of the |
| 5498 | * final handle that will return the exit code. |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 5499 | * |
| 5500 | * NOTE: This function is currently called with the GIL released. |
| 5501 | * hence we use the GILState API to manage our state. |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 5502 | */ |
Tim Peters | 736aa32 | 2000-09-01 06:51:24 +0000 | [diff] [blame] | 5503 | |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 5504 | static int _PyPclose(FILE *file) |
| 5505 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5506 | int result; |
| 5507 | DWORD exit_code; |
| 5508 | HANDLE hProcess; |
| 5509 | PyObject *procObj, *hProcessObj, *intObj, *fileObj; |
| 5510 | long file_count; |
Tim Peters | 736aa32 | 2000-09-01 06:51:24 +0000 | [diff] [blame] | 5511 | #ifdef WITH_THREAD |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5512 | PyGILState_STATE state; |
Tim Peters | 736aa32 | 2000-09-01 06:51:24 +0000 | [diff] [blame] | 5513 | #endif |
| 5514 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5515 | /* Close the file handle first, to ensure it can't block the |
| 5516 | * child from exiting if it's the last handle. |
| 5517 | */ |
| 5518 | result = fclose(file); |
Tim Peters | 736aa32 | 2000-09-01 06:51:24 +0000 | [diff] [blame] | 5519 | #ifdef WITH_THREAD |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5520 | state = PyGILState_Ensure(); |
Tim Peters | 736aa32 | 2000-09-01 06:51:24 +0000 | [diff] [blame] | 5521 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5522 | if (_PyPopenProcs) { |
| 5523 | if ((fileObj = PyLong_FromVoidPtr(file)) != NULL && |
| 5524 | (procObj = PyDict_GetItem(_PyPopenProcs, |
| 5525 | fileObj)) != NULL && |
| 5526 | (hProcessObj = PyList_GetItem(procObj,0)) != NULL && |
| 5527 | (intObj = PyList_GetItem(procObj,1)) != NULL) { |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 5528 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5529 | hProcess = PyLong_AsVoidPtr(hProcessObj); |
| 5530 | file_count = PyInt_AsLong(intObj); |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 5531 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5532 | if (file_count > 1) { |
| 5533 | /* Still other files referencing process */ |
| 5534 | file_count--; |
| 5535 | PyList_SetItem(procObj,1, |
| 5536 | PyInt_FromLong(file_count)); |
| 5537 | } else { |
| 5538 | /* Last file for this process */ |
| 5539 | if (result != EOF && |
| 5540 | WaitForSingleObject(hProcess, INFINITE) != WAIT_FAILED && |
| 5541 | GetExitCodeProcess(hProcess, &exit_code)) { |
| 5542 | /* Possible truncation here in 16-bit environments, but |
| 5543 | * real exit codes are just the lower byte in any event. |
| 5544 | */ |
| 5545 | result = exit_code; |
| 5546 | } else { |
| 5547 | /* Indicate failure - this will cause the file object |
| 5548 | * to raise an I/O error and translate the last Win32 |
| 5549 | * error code from errno. We do have a problem with |
| 5550 | * last errors that overlap the normal errno table, |
| 5551 | * but that's a consistent problem with the file object. |
| 5552 | */ |
| 5553 | if (result != EOF) { |
| 5554 | /* If the error wasn't from the fclose(), then |
| 5555 | * set errno for the file object error handling. |
| 5556 | */ |
| 5557 | errno = GetLastError(); |
| 5558 | } |
| 5559 | result = -1; |
| 5560 | } |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 5561 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5562 | /* Free up the native handle at this point */ |
| 5563 | CloseHandle(hProcess); |
| 5564 | } |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 5565 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5566 | /* Remove this file pointer from dictionary */ |
| 5567 | PyDict_DelItem(_PyPopenProcs, fileObj); |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 5568 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5569 | if (PyDict_Size(_PyPopenProcs) == 0) { |
| 5570 | Py_DECREF(_PyPopenProcs); |
| 5571 | _PyPopenProcs = NULL; |
| 5572 | } |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 5573 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5574 | } /* if object retrieval ok */ |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 5575 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5576 | Py_XDECREF(fileObj); |
| 5577 | } /* if _PyPopenProcs */ |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 5578 | |
Tim Peters | 736aa32 | 2000-09-01 06:51:24 +0000 | [diff] [blame] | 5579 | #ifdef WITH_THREAD |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5580 | PyGILState_Release(state); |
Tim Peters | 736aa32 | 2000-09-01 06:51:24 +0000 | [diff] [blame] | 5581 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5582 | return result; |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 5583 | } |
Tim Peters | 9acdd3a | 2000-09-01 19:26:36 +0000 | [diff] [blame] | 5584 | |
| 5585 | #else /* which OS? */ |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 5586 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 5587 | posix_popen(PyObject *self, PyObject *args) |
Guido van Rossum | 3b06619 | 1991-06-04 19:40:25 +0000 | [diff] [blame] | 5588 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5589 | char *name; |
| 5590 | char *mode = "r"; |
| 5591 | int bufsize = -1; |
| 5592 | FILE *fp; |
| 5593 | PyObject *f; |
| 5594 | if (!PyArg_ParseTuple(args, "s|si:popen", &name, &mode, &bufsize)) |
| 5595 | return NULL; |
| 5596 | /* Strip mode of binary or text modifiers */ |
| 5597 | if (strcmp(mode, "rb") == 0 || strcmp(mode, "rt") == 0) |
| 5598 | mode = "r"; |
| 5599 | else if (strcmp(mode, "wb") == 0 || strcmp(mode, "wt") == 0) |
| 5600 | mode = "w"; |
| 5601 | Py_BEGIN_ALLOW_THREADS |
| 5602 | fp = popen(name, mode); |
| 5603 | Py_END_ALLOW_THREADS |
| 5604 | if (fp == NULL) |
| 5605 | return posix_error(); |
| 5606 | f = PyFile_FromFile(fp, name, mode, pclose); |
| 5607 | if (f != NULL) |
| 5608 | PyFile_SetBufSize(f, bufsize); |
| 5609 | return f; |
Guido van Rossum | 3b06619 | 1991-06-04 19:40:25 +0000 | [diff] [blame] | 5610 | } |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 5611 | |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 5612 | #endif /* PYOS_??? */ |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 5613 | #endif /* HAVE_POPEN */ |
Guido van Rossum | 3b06619 | 1991-06-04 19:40:25 +0000 | [diff] [blame] | 5614 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 5615 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 5616 | #ifdef HAVE_SETUID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5617 | PyDoc_STRVAR(posix_setuid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 5618 | "setuid(uid)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5619 | Set the current process's user id."); |
| 5620 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 5621 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 5622 | posix_setuid(PyObject *self, PyObject *args) |
Guido van Rossum | a3d78fb | 1993-11-10 09:23:53 +0000 | [diff] [blame] | 5623 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5624 | long uid_arg; |
| 5625 | uid_t uid; |
| 5626 | if (!PyArg_ParseTuple(args, "l:setuid", &uid_arg)) |
| 5627 | return NULL; |
| 5628 | uid = uid_arg; |
| 5629 | if (uid != uid_arg) { |
| 5630 | PyErr_SetString(PyExc_OverflowError, "user id too big"); |
| 5631 | return NULL; |
| 5632 | } |
| 5633 | if (setuid(uid) < 0) |
| 5634 | return posix_error(); |
| 5635 | Py_INCREF(Py_None); |
| 5636 | return Py_None; |
Guido van Rossum | a3d78fb | 1993-11-10 09:23:53 +0000 | [diff] [blame] | 5637 | } |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 5638 | #endif /* HAVE_SETUID */ |
Guido van Rossum | a3d78fb | 1993-11-10 09:23:53 +0000 | [diff] [blame] | 5639 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 5640 | |
Andrew M. Kuchling | 8d2f2b2 | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 5641 | #ifdef HAVE_SETEUID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5642 | PyDoc_STRVAR(posix_seteuid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 5643 | "seteuid(uid)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5644 | Set the current process's effective user id."); |
| 5645 | |
Andrew M. Kuchling | 8d2f2b2 | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 5646 | static PyObject * |
| 5647 | posix_seteuid (PyObject *self, PyObject *args) |
| 5648 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5649 | long euid_arg; |
| 5650 | uid_t euid; |
| 5651 | if (!PyArg_ParseTuple(args, "l", &euid_arg)) |
| 5652 | return NULL; |
| 5653 | euid = euid_arg; |
| 5654 | if (euid != euid_arg) { |
| 5655 | PyErr_SetString(PyExc_OverflowError, "user id too big"); |
| 5656 | return NULL; |
| 5657 | } |
| 5658 | if (seteuid(euid) < 0) { |
| 5659 | return posix_error(); |
| 5660 | } else { |
| 5661 | Py_INCREF(Py_None); |
| 5662 | return Py_None; |
| 5663 | } |
Andrew M. Kuchling | 8d2f2b2 | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 5664 | } |
| 5665 | #endif /* HAVE_SETEUID */ |
| 5666 | |
| 5667 | #ifdef HAVE_SETEGID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5668 | PyDoc_STRVAR(posix_setegid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 5669 | "setegid(gid)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5670 | Set the current process's effective group id."); |
| 5671 | |
Andrew M. Kuchling | 8d2f2b2 | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 5672 | static PyObject * |
| 5673 | posix_setegid (PyObject *self, PyObject *args) |
| 5674 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5675 | long egid_arg; |
| 5676 | gid_t egid; |
| 5677 | if (!PyArg_ParseTuple(args, "l", &egid_arg)) |
| 5678 | return NULL; |
| 5679 | egid = egid_arg; |
| 5680 | if (egid != egid_arg) { |
| 5681 | PyErr_SetString(PyExc_OverflowError, "group id too big"); |
| 5682 | return NULL; |
| 5683 | } |
| 5684 | if (setegid(egid) < 0) { |
| 5685 | return posix_error(); |
| 5686 | } else { |
| 5687 | Py_INCREF(Py_None); |
| 5688 | return Py_None; |
| 5689 | } |
Andrew M. Kuchling | 8d2f2b2 | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 5690 | } |
| 5691 | #endif /* HAVE_SETEGID */ |
| 5692 | |
| 5693 | #ifdef HAVE_SETREUID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5694 | PyDoc_STRVAR(posix_setreuid__doc__, |
Neal Norwitz | 94f1d71 | 2004-02-16 01:26:34 +0000 | [diff] [blame] | 5695 | "setreuid(ruid, euid)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5696 | Set the current process's real and effective user ids."); |
| 5697 | |
Andrew M. Kuchling | 8d2f2b2 | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 5698 | static PyObject * |
| 5699 | posix_setreuid (PyObject *self, PyObject *args) |
| 5700 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5701 | long ruid_arg, euid_arg; |
| 5702 | uid_t ruid, euid; |
| 5703 | if (!PyArg_ParseTuple(args, "ll", &ruid_arg, &euid_arg)) |
| 5704 | return NULL; |
| 5705 | if (ruid_arg == -1) |
| 5706 | ruid = (uid_t)-1; /* let the compiler choose how -1 fits */ |
| 5707 | else |
| 5708 | ruid = ruid_arg; /* otherwise, assign from our long */ |
| 5709 | if (euid_arg == -1) |
| 5710 | euid = (uid_t)-1; |
| 5711 | else |
| 5712 | euid = euid_arg; |
| 5713 | if ((euid_arg != -1 && euid != euid_arg) || |
| 5714 | (ruid_arg != -1 && ruid != ruid_arg)) { |
| 5715 | PyErr_SetString(PyExc_OverflowError, "user id too big"); |
| 5716 | return NULL; |
| 5717 | } |
| 5718 | if (setreuid(ruid, euid) < 0) { |
| 5719 | return posix_error(); |
| 5720 | } else { |
| 5721 | Py_INCREF(Py_None); |
| 5722 | return Py_None; |
| 5723 | } |
Andrew M. Kuchling | 8d2f2b2 | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 5724 | } |
| 5725 | #endif /* HAVE_SETREUID */ |
| 5726 | |
| 5727 | #ifdef HAVE_SETREGID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5728 | PyDoc_STRVAR(posix_setregid__doc__, |
Neal Norwitz | 94f1d71 | 2004-02-16 01:26:34 +0000 | [diff] [blame] | 5729 | "setregid(rgid, egid)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5730 | Set the current process's real and effective group ids."); |
| 5731 | |
Andrew M. Kuchling | 8d2f2b2 | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 5732 | static PyObject * |
| 5733 | posix_setregid (PyObject *self, PyObject *args) |
| 5734 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5735 | long rgid_arg, egid_arg; |
| 5736 | gid_t rgid, egid; |
| 5737 | if (!PyArg_ParseTuple(args, "ll", &rgid_arg, &egid_arg)) |
| 5738 | return NULL; |
| 5739 | if (rgid_arg == -1) |
| 5740 | rgid = (gid_t)-1; /* let the compiler choose how -1 fits */ |
| 5741 | else |
| 5742 | rgid = rgid_arg; /* otherwise, assign from our long */ |
| 5743 | if (egid_arg == -1) |
| 5744 | egid = (gid_t)-1; |
| 5745 | else |
| 5746 | egid = egid_arg; |
| 5747 | if ((egid_arg != -1 && egid != egid_arg) || |
| 5748 | (rgid_arg != -1 && rgid != rgid_arg)) { |
| 5749 | PyErr_SetString(PyExc_OverflowError, "group id too big"); |
| 5750 | return NULL; |
| 5751 | } |
| 5752 | if (setregid(rgid, egid) < 0) { |
| 5753 | return posix_error(); |
| 5754 | } else { |
| 5755 | Py_INCREF(Py_None); |
| 5756 | return Py_None; |
| 5757 | } |
Andrew M. Kuchling | 8d2f2b2 | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 5758 | } |
| 5759 | #endif /* HAVE_SETREGID */ |
| 5760 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 5761 | #ifdef HAVE_SETGID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5762 | PyDoc_STRVAR(posix_setgid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 5763 | "setgid(gid)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5764 | Set the current process's group id."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 5765 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 5766 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 5767 | posix_setgid(PyObject *self, PyObject *args) |
Guido van Rossum | a3d78fb | 1993-11-10 09:23:53 +0000 | [diff] [blame] | 5768 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5769 | long gid_arg; |
| 5770 | gid_t gid; |
| 5771 | if (!PyArg_ParseTuple(args, "l:setgid", &gid_arg)) |
| 5772 | return NULL; |
| 5773 | gid = gid_arg; |
| 5774 | if (gid != gid_arg) { |
| 5775 | PyErr_SetString(PyExc_OverflowError, "group id too big"); |
| 5776 | return NULL; |
| 5777 | } |
| 5778 | if (setgid(gid) < 0) |
| 5779 | return posix_error(); |
| 5780 | Py_INCREF(Py_None); |
| 5781 | return Py_None; |
Guido van Rossum | a3d78fb | 1993-11-10 09:23:53 +0000 | [diff] [blame] | 5782 | } |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 5783 | #endif /* HAVE_SETGID */ |
Guido van Rossum | a3d78fb | 1993-11-10 09:23:53 +0000 | [diff] [blame] | 5784 | |
Martin v. Löwis | 61c5edf | 2001-10-18 04:06:00 +0000 | [diff] [blame] | 5785 | #ifdef HAVE_SETGROUPS |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5786 | PyDoc_STRVAR(posix_setgroups__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 5787 | "setgroups(list)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5788 | Set the groups of the current process to list."); |
Martin v. Löwis | 61c5edf | 2001-10-18 04:06:00 +0000 | [diff] [blame] | 5789 | |
| 5790 | static PyObject * |
Georg Brandl | 96a8c39 | 2006-05-29 21:04:52 +0000 | [diff] [blame] | 5791 | posix_setgroups(PyObject *self, PyObject *groups) |
Martin v. Löwis | 61c5edf | 2001-10-18 04:06:00 +0000 | [diff] [blame] | 5792 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5793 | int i, len; |
| 5794 | gid_t grouplist[MAX_GROUPS]; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 5795 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5796 | if (!PySequence_Check(groups)) { |
| 5797 | PyErr_SetString(PyExc_TypeError, "setgroups argument must be a sequence"); |
| 5798 | return NULL; |
| 5799 | } |
| 5800 | len = PySequence_Size(groups); |
| 5801 | if (len > MAX_GROUPS) { |
| 5802 | PyErr_SetString(PyExc_ValueError, "too many groups"); |
| 5803 | return NULL; |
| 5804 | } |
| 5805 | for(i = 0; i < len; i++) { |
| 5806 | PyObject *elem; |
| 5807 | elem = PySequence_GetItem(groups, i); |
| 5808 | if (!elem) |
| 5809 | return NULL; |
| 5810 | if (!PyInt_Check(elem)) { |
| 5811 | if (!PyLong_Check(elem)) { |
| 5812 | PyErr_SetString(PyExc_TypeError, |
| 5813 | "groups must be integers"); |
| 5814 | Py_DECREF(elem); |
| 5815 | return NULL; |
| 5816 | } else { |
| 5817 | unsigned long x = PyLong_AsUnsignedLong(elem); |
| 5818 | if (PyErr_Occurred()) { |
| 5819 | PyErr_SetString(PyExc_TypeError, |
| 5820 | "group id too big"); |
| 5821 | Py_DECREF(elem); |
| 5822 | return NULL; |
| 5823 | } |
| 5824 | grouplist[i] = x; |
| 5825 | /* read back to see if it fits in gid_t */ |
| 5826 | if (grouplist[i] != x) { |
| 5827 | PyErr_SetString(PyExc_TypeError, |
| 5828 | "group id too big"); |
| 5829 | Py_DECREF(elem); |
| 5830 | return NULL; |
| 5831 | } |
| 5832 | } |
| 5833 | } else { |
| 5834 | long x = PyInt_AsLong(elem); |
| 5835 | grouplist[i] = x; |
| 5836 | if (grouplist[i] != x) { |
| 5837 | PyErr_SetString(PyExc_TypeError, |
| 5838 | "group id too big"); |
| 5839 | Py_DECREF(elem); |
| 5840 | return NULL; |
| 5841 | } |
| 5842 | } |
| 5843 | Py_DECREF(elem); |
| 5844 | } |
Martin v. Löwis | 61c5edf | 2001-10-18 04:06:00 +0000 | [diff] [blame] | 5845 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5846 | if (setgroups(len, grouplist) < 0) |
| 5847 | return posix_error(); |
| 5848 | Py_INCREF(Py_None); |
| 5849 | return Py_None; |
Martin v. Löwis | 61c5edf | 2001-10-18 04:06:00 +0000 | [diff] [blame] | 5850 | } |
| 5851 | #endif /* HAVE_SETGROUPS */ |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 5852 | |
Neal Norwitz | 6c2f913 | 2006-03-20 07:25:26 +0000 | [diff] [blame] | 5853 | #if defined(HAVE_WAIT3) || defined(HAVE_WAIT4) |
Neal Norwitz | 05a4559 | 2006-03-20 06:30:08 +0000 | [diff] [blame] | 5854 | static PyObject * |
Christian Heimes | d491d71 | 2008-02-01 18:49:26 +0000 | [diff] [blame] | 5855 | wait_helper(pid_t pid, int status, struct rusage *ru) |
Neal Norwitz | 05a4559 | 2006-03-20 06:30:08 +0000 | [diff] [blame] | 5856 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5857 | PyObject *result; |
| 5858 | static PyObject *struct_rusage; |
Neal Norwitz | 05a4559 | 2006-03-20 06:30:08 +0000 | [diff] [blame] | 5859 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5860 | if (pid == -1) |
| 5861 | return posix_error(); |
Neal Norwitz | 05a4559 | 2006-03-20 06:30:08 +0000 | [diff] [blame] | 5862 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5863 | if (struct_rusage == NULL) { |
| 5864 | PyObject *m = PyImport_ImportModuleNoBlock("resource"); |
| 5865 | if (m == NULL) |
| 5866 | return NULL; |
| 5867 | struct_rusage = PyObject_GetAttrString(m, "struct_rusage"); |
| 5868 | Py_DECREF(m); |
| 5869 | if (struct_rusage == NULL) |
| 5870 | return NULL; |
| 5871 | } |
Neal Norwitz | 05a4559 | 2006-03-20 06:30:08 +0000 | [diff] [blame] | 5872 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5873 | /* XXX(nnorwitz): Copied (w/mods) from resource.c, there should be only one. */ |
| 5874 | result = PyStructSequence_New((PyTypeObject*) struct_rusage); |
| 5875 | if (!result) |
| 5876 | return NULL; |
Neal Norwitz | 05a4559 | 2006-03-20 06:30:08 +0000 | [diff] [blame] | 5877 | |
| 5878 | #ifndef doubletime |
| 5879 | #define doubletime(TV) ((double)(TV).tv_sec + (TV).tv_usec * 0.000001) |
| 5880 | #endif |
| 5881 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5882 | PyStructSequence_SET_ITEM(result, 0, |
| 5883 | PyFloat_FromDouble(doubletime(ru->ru_utime))); |
| 5884 | PyStructSequence_SET_ITEM(result, 1, |
| 5885 | PyFloat_FromDouble(doubletime(ru->ru_stime))); |
Neal Norwitz | 05a4559 | 2006-03-20 06:30:08 +0000 | [diff] [blame] | 5886 | #define SET_INT(result, index, value)\ |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5887 | PyStructSequence_SET_ITEM(result, index, PyInt_FromLong(value)) |
| 5888 | SET_INT(result, 2, ru->ru_maxrss); |
| 5889 | SET_INT(result, 3, ru->ru_ixrss); |
| 5890 | SET_INT(result, 4, ru->ru_idrss); |
| 5891 | SET_INT(result, 5, ru->ru_isrss); |
| 5892 | SET_INT(result, 6, ru->ru_minflt); |
| 5893 | SET_INT(result, 7, ru->ru_majflt); |
| 5894 | SET_INT(result, 8, ru->ru_nswap); |
| 5895 | SET_INT(result, 9, ru->ru_inblock); |
| 5896 | SET_INT(result, 10, ru->ru_oublock); |
| 5897 | SET_INT(result, 11, ru->ru_msgsnd); |
| 5898 | SET_INT(result, 12, ru->ru_msgrcv); |
| 5899 | SET_INT(result, 13, ru->ru_nsignals); |
| 5900 | SET_INT(result, 14, ru->ru_nvcsw); |
| 5901 | SET_INT(result, 15, ru->ru_nivcsw); |
Neal Norwitz | 05a4559 | 2006-03-20 06:30:08 +0000 | [diff] [blame] | 5902 | #undef SET_INT |
| 5903 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5904 | if (PyErr_Occurred()) { |
| 5905 | Py_DECREF(result); |
| 5906 | return NULL; |
| 5907 | } |
Neal Norwitz | 05a4559 | 2006-03-20 06:30:08 +0000 | [diff] [blame] | 5908 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5909 | return Py_BuildValue("NiN", PyLong_FromPid(pid), status, result); |
Neal Norwitz | 05a4559 | 2006-03-20 06:30:08 +0000 | [diff] [blame] | 5910 | } |
Neal Norwitz | 6c2f913 | 2006-03-20 07:25:26 +0000 | [diff] [blame] | 5911 | #endif /* HAVE_WAIT3 || HAVE_WAIT4 */ |
Neal Norwitz | 05a4559 | 2006-03-20 06:30:08 +0000 | [diff] [blame] | 5912 | |
| 5913 | #ifdef HAVE_WAIT3 |
| 5914 | PyDoc_STRVAR(posix_wait3__doc__, |
| 5915 | "wait3(options) -> (pid, status, rusage)\n\n\ |
| 5916 | Wait for completion of a child process."); |
| 5917 | |
| 5918 | static PyObject * |
| 5919 | posix_wait3(PyObject *self, PyObject *args) |
| 5920 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5921 | pid_t pid; |
| 5922 | int options; |
| 5923 | struct rusage ru; |
| 5924 | WAIT_TYPE status; |
| 5925 | WAIT_STATUS_INT(status) = 0; |
Neal Norwitz | 05a4559 | 2006-03-20 06:30:08 +0000 | [diff] [blame] | 5926 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5927 | if (!PyArg_ParseTuple(args, "i:wait3", &options)) |
| 5928 | return NULL; |
Neal Norwitz | 05a4559 | 2006-03-20 06:30:08 +0000 | [diff] [blame] | 5929 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5930 | Py_BEGIN_ALLOW_THREADS |
| 5931 | pid = wait3(&status, options, &ru); |
| 5932 | Py_END_ALLOW_THREADS |
Neal Norwitz | 05a4559 | 2006-03-20 06:30:08 +0000 | [diff] [blame] | 5933 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5934 | return wait_helper(pid, WAIT_STATUS_INT(status), &ru); |
Neal Norwitz | 05a4559 | 2006-03-20 06:30:08 +0000 | [diff] [blame] | 5935 | } |
| 5936 | #endif /* HAVE_WAIT3 */ |
| 5937 | |
| 5938 | #ifdef HAVE_WAIT4 |
| 5939 | PyDoc_STRVAR(posix_wait4__doc__, |
| 5940 | "wait4(pid, options) -> (pid, status, rusage)\n\n\ |
| 5941 | Wait for completion of a given child process."); |
| 5942 | |
| 5943 | static PyObject * |
| 5944 | posix_wait4(PyObject *self, PyObject *args) |
| 5945 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5946 | pid_t pid; |
| 5947 | int options; |
| 5948 | struct rusage ru; |
| 5949 | WAIT_TYPE status; |
| 5950 | WAIT_STATUS_INT(status) = 0; |
Neal Norwitz | 05a4559 | 2006-03-20 06:30:08 +0000 | [diff] [blame] | 5951 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5952 | if (!PyArg_ParseTuple(args, PARSE_PID "i:wait4", &pid, &options)) |
| 5953 | return NULL; |
Neal Norwitz | 05a4559 | 2006-03-20 06:30:08 +0000 | [diff] [blame] | 5954 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5955 | Py_BEGIN_ALLOW_THREADS |
| 5956 | pid = wait4(pid, &status, options, &ru); |
| 5957 | Py_END_ALLOW_THREADS |
Neal Norwitz | 05a4559 | 2006-03-20 06:30:08 +0000 | [diff] [blame] | 5958 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5959 | return wait_helper(pid, WAIT_STATUS_INT(status), &ru); |
Neal Norwitz | 05a4559 | 2006-03-20 06:30:08 +0000 | [diff] [blame] | 5960 | } |
| 5961 | #endif /* HAVE_WAIT4 */ |
| 5962 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 5963 | #ifdef HAVE_WAITPID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5964 | PyDoc_STRVAR(posix_waitpid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 5965 | "waitpid(pid, options) -> (pid, status)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5966 | Wait for completion of a given child process."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 5967 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 5968 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 5969 | posix_waitpid(PyObject *self, PyObject *args) |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 5970 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5971 | pid_t pid; |
| 5972 | int options; |
| 5973 | WAIT_TYPE status; |
| 5974 | WAIT_STATUS_INT(status) = 0; |
Guido van Rossum | 54ecc3d | 1999-01-27 17:53:11 +0000 | [diff] [blame] | 5975 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5976 | if (!PyArg_ParseTuple(args, PARSE_PID "i:waitpid", &pid, &options)) |
| 5977 | return NULL; |
| 5978 | Py_BEGIN_ALLOW_THREADS |
| 5979 | pid = waitpid(pid, &status, options); |
| 5980 | Py_END_ALLOW_THREADS |
| 5981 | if (pid == -1) |
| 5982 | return posix_error(); |
Neal Norwitz | d5a3754 | 2006-03-20 06:48:34 +0000 | [diff] [blame] | 5983 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5984 | return Py_BuildValue("Ni", PyLong_FromPid(pid), WAIT_STATUS_INT(status)); |
Guido van Rossum | 21803b8 | 1992-08-09 12:55:27 +0000 | [diff] [blame] | 5985 | } |
| 5986 | |
Tim Peters | ab034fa | 2002-02-01 11:27:43 +0000 | [diff] [blame] | 5987 | #elif defined(HAVE_CWAIT) |
| 5988 | |
| 5989 | /* MS C has a variant of waitpid() that's usable for most purposes. */ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5990 | PyDoc_STRVAR(posix_waitpid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 5991 | "waitpid(pid, options) -> (pid, status << 8)\n\n" |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5992 | "Wait for completion of a given process. options is ignored on Windows."); |
Tim Peters | ab034fa | 2002-02-01 11:27:43 +0000 | [diff] [blame] | 5993 | |
| 5994 | static PyObject * |
| 5995 | posix_waitpid(PyObject *self, PyObject *args) |
| 5996 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 5997 | Py_intptr_t pid; |
| 5998 | int status, options; |
Tim Peters | ab034fa | 2002-02-01 11:27:43 +0000 | [diff] [blame] | 5999 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6000 | if (!PyArg_ParseTuple(args, PARSE_PID "i:waitpid", &pid, &options)) |
| 6001 | return NULL; |
| 6002 | Py_BEGIN_ALLOW_THREADS |
| 6003 | pid = _cwait(&status, pid, options); |
| 6004 | Py_END_ALLOW_THREADS |
| 6005 | if (pid == -1) |
| 6006 | return posix_error(); |
Neal Norwitz | d5a3754 | 2006-03-20 06:48:34 +0000 | [diff] [blame] | 6007 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6008 | /* shift the status left a byte so this is more like the POSIX waitpid */ |
| 6009 | return Py_BuildValue("Ni", PyLong_FromPid(pid), status << 8); |
Tim Peters | ab034fa | 2002-02-01 11:27:43 +0000 | [diff] [blame] | 6010 | } |
| 6011 | #endif /* HAVE_WAITPID || HAVE_CWAIT */ |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6012 | |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 6013 | #ifdef HAVE_WAIT |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6014 | PyDoc_STRVAR(posix_wait__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6015 | "wait() -> (pid, status)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6016 | Wait for completion of a child process."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6017 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6018 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 6019 | posix_wait(PyObject *self, PyObject *noargs) |
Guido van Rossum | 21803b8 | 1992-08-09 12:55:27 +0000 | [diff] [blame] | 6020 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6021 | pid_t pid; |
| 6022 | WAIT_TYPE status; |
| 6023 | WAIT_STATUS_INT(status) = 0; |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 6024 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6025 | Py_BEGIN_ALLOW_THREADS |
| 6026 | pid = wait(&status); |
| 6027 | Py_END_ALLOW_THREADS |
| 6028 | if (pid == -1) |
| 6029 | return posix_error(); |
Neal Norwitz | d5a3754 | 2006-03-20 06:48:34 +0000 | [diff] [blame] | 6030 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6031 | return Py_BuildValue("Ni", PyLong_FromPid(pid), WAIT_STATUS_INT(status)); |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 6032 | } |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 6033 | #endif |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 6034 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6035 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6036 | PyDoc_STRVAR(posix_lstat__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6037 | "lstat(path) -> stat result\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6038 | Like stat(path), but do not follow symbolic links."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6039 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6040 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6041 | posix_lstat(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 6042 | { |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 6043 | #ifdef HAVE_LSTAT |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6044 | return posix_do_stat(self, args, "et:lstat", lstat, NULL, NULL); |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 6045 | #else /* !HAVE_LSTAT */ |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 6046 | #ifdef MS_WINDOWS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6047 | return posix_do_stat(self, args, "et:lstat", STAT, "U:lstat", win32_wstat); |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 6048 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6049 | return posix_do_stat(self, args, "et:lstat", STAT, NULL, NULL); |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 6050 | #endif |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 6051 | #endif /* !HAVE_LSTAT */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 6052 | } |
| 6053 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6054 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 6055 | #ifdef HAVE_READLINK |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6056 | PyDoc_STRVAR(posix_readlink__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6057 | "readlink(path) -> path\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6058 | Return a string representing the path to which the symbolic link points."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6059 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6060 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6061 | posix_readlink(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 6062 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6063 | PyObject* v; |
| 6064 | char buf[MAXPATHLEN]; |
| 6065 | char *path; |
| 6066 | int n; |
Ronald Oussoren | 10168f2 | 2006-10-22 10:45:18 +0000 | [diff] [blame] | 6067 | #ifdef Py_USING_UNICODE |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6068 | int arg_is_unicode = 0; |
Ronald Oussoren | 10168f2 | 2006-10-22 10:45:18 +0000 | [diff] [blame] | 6069 | #endif |
| 6070 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6071 | if (!PyArg_ParseTuple(args, "et:readlink", |
| 6072 | Py_FileSystemDefaultEncoding, &path)) |
| 6073 | return NULL; |
Ronald Oussoren | 10168f2 | 2006-10-22 10:45:18 +0000 | [diff] [blame] | 6074 | #ifdef Py_USING_UNICODE |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6075 | v = PySequence_GetItem(args, 0); |
| 6076 | if (v == NULL) { |
| 6077 | PyMem_Free(path); |
| 6078 | return NULL; |
| 6079 | } |
Ronald Oussoren | 10168f2 | 2006-10-22 10:45:18 +0000 | [diff] [blame] | 6080 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6081 | if (PyUnicode_Check(v)) { |
| 6082 | arg_is_unicode = 1; |
| 6083 | } |
| 6084 | Py_DECREF(v); |
Ronald Oussoren | 10168f2 | 2006-10-22 10:45:18 +0000 | [diff] [blame] | 6085 | #endif |
| 6086 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6087 | Py_BEGIN_ALLOW_THREADS |
| 6088 | n = readlink(path, buf, (int) sizeof buf); |
| 6089 | Py_END_ALLOW_THREADS |
| 6090 | if (n < 0) |
| 6091 | return posix_error_with_allocated_filename(path); |
Ronald Oussoren | 10168f2 | 2006-10-22 10:45:18 +0000 | [diff] [blame] | 6092 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6093 | PyMem_Free(path); |
| 6094 | v = PyString_FromStringAndSize(buf, n); |
Ronald Oussoren | 10168f2 | 2006-10-22 10:45:18 +0000 | [diff] [blame] | 6095 | #ifdef Py_USING_UNICODE |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6096 | if (arg_is_unicode) { |
| 6097 | PyObject *w; |
Ronald Oussoren | 10168f2 | 2006-10-22 10:45:18 +0000 | [diff] [blame] | 6098 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6099 | w = PyUnicode_FromEncodedObject(v, |
| 6100 | Py_FileSystemDefaultEncoding, |
| 6101 | "strict"); |
| 6102 | if (w != NULL) { |
| 6103 | Py_DECREF(v); |
| 6104 | v = w; |
| 6105 | } |
| 6106 | else { |
| 6107 | /* fall back to the original byte string, as |
| 6108 | discussed in patch #683592 */ |
| 6109 | PyErr_Clear(); |
| 6110 | } |
| 6111 | } |
Ronald Oussoren | 10168f2 | 2006-10-22 10:45:18 +0000 | [diff] [blame] | 6112 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6113 | return v; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 6114 | } |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 6115 | #endif /* HAVE_READLINK */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 6116 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6117 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 6118 | #ifdef HAVE_SYMLINK |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6119 | PyDoc_STRVAR(posix_symlink__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6120 | "symlink(src, dst)\n\n\ |
Brett Cannon | 807413d | 2003-06-11 00:18:09 +0000 | [diff] [blame] | 6121 | Create a symbolic link pointing to src named dst."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6122 | |
Guido van Rossum | bfaf3d6 | 1997-12-29 20:02:27 +0000 | [diff] [blame] | 6123 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6124 | posix_symlink(PyObject *self, PyObject *args) |
Guido van Rossum | bfaf3d6 | 1997-12-29 20:02:27 +0000 | [diff] [blame] | 6125 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6126 | return posix_2str(args, "etet:symlink", symlink); |
Guido van Rossum | bfaf3d6 | 1997-12-29 20:02:27 +0000 | [diff] [blame] | 6127 | } |
| 6128 | #endif /* HAVE_SYMLINK */ |
| 6129 | |
| 6130 | |
| 6131 | #ifdef HAVE_TIMES |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 6132 | #if defined(PYCC_VACPP) && defined(PYOS_OS2) |
| 6133 | static long |
Thomas Wouters | f3f33dc | 2000-07-21 06:00:07 +0000 | [diff] [blame] | 6134 | system_uptime(void) |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 6135 | { |
| 6136 | ULONG value = 0; |
| 6137 | |
| 6138 | Py_BEGIN_ALLOW_THREADS |
| 6139 | DosQuerySysInfo(QSV_MS_COUNT, QSV_MS_COUNT, &value, sizeof(value)); |
| 6140 | Py_END_ALLOW_THREADS |
| 6141 | |
| 6142 | return value; |
| 6143 | } |
| 6144 | |
| 6145 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 6146 | posix_times(PyObject *self, PyObject *noargs) |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 6147 | { |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 6148 | /* Currently Only Uptime is Provided -- Others Later */ |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6149 | return Py_BuildValue("ddddd", |
| 6150 | (double)0 /* t.tms_utime / HZ */, |
| 6151 | (double)0 /* t.tms_stime / HZ */, |
| 6152 | (double)0 /* t.tms_cutime / HZ */, |
| 6153 | (double)0 /* t.tms_cstime / HZ */, |
| 6154 | (double)system_uptime() / 1000); |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 6155 | } |
Guido van Rossum | bfaf3d6 | 1997-12-29 20:02:27 +0000 | [diff] [blame] | 6156 | #else /* not OS2 */ |
Martin v. Löwis | 03824e4 | 2008-12-29 18:17:34 +0000 | [diff] [blame] | 6157 | #define NEED_TICKS_PER_SECOND |
| 6158 | static long ticks_per_second = -1; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6159 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 6160 | posix_times(PyObject *self, PyObject *noargs) |
Guido van Rossum | 22db57e | 1992-04-05 14:25:30 +0000 | [diff] [blame] | 6161 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6162 | struct tms t; |
| 6163 | clock_t c; |
| 6164 | errno = 0; |
| 6165 | c = times(&t); |
| 6166 | if (c == (clock_t) -1) |
| 6167 | return posix_error(); |
| 6168 | return Py_BuildValue("ddddd", |
| 6169 | (double)t.tms_utime / ticks_per_second, |
| 6170 | (double)t.tms_stime / ticks_per_second, |
| 6171 | (double)t.tms_cutime / ticks_per_second, |
| 6172 | (double)t.tms_cstime / ticks_per_second, |
| 6173 | (double)c / ticks_per_second); |
Guido van Rossum | 22db57e | 1992-04-05 14:25:30 +0000 | [diff] [blame] | 6174 | } |
Guido van Rossum | bfaf3d6 | 1997-12-29 20:02:27 +0000 | [diff] [blame] | 6175 | #endif /* not OS2 */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 6176 | #endif /* HAVE_TIMES */ |
Guido van Rossum | bfaf3d6 | 1997-12-29 20:02:27 +0000 | [diff] [blame] | 6177 | |
| 6178 | |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 6179 | #ifdef MS_WINDOWS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6180 | #define HAVE_TIMES /* so the method table will pick it up */ |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6181 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 6182 | posix_times(PyObject *self, PyObject *noargs) |
Guido van Rossum | 14ed0b2 | 1994-09-29 09:50:09 +0000 | [diff] [blame] | 6183 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6184 | FILETIME create, exit, kernel, user; |
| 6185 | HANDLE hProc; |
| 6186 | hProc = GetCurrentProcess(); |
| 6187 | GetProcessTimes(hProc, &create, &exit, &kernel, &user); |
| 6188 | /* The fields of a FILETIME structure are the hi and lo part |
| 6189 | of a 64-bit value expressed in 100 nanosecond units. |
| 6190 | 1e7 is one second in such units; 1e-7 the inverse. |
| 6191 | 429.4967296 is 2**32 / 1e7 or 2**32 * 1e-7. |
| 6192 | */ |
| 6193 | return Py_BuildValue( |
| 6194 | "ddddd", |
| 6195 | (double)(user.dwHighDateTime*429.4967296 + |
| 6196 | user.dwLowDateTime*1e-7), |
| 6197 | (double)(kernel.dwHighDateTime*429.4967296 + |
| 6198 | kernel.dwLowDateTime*1e-7), |
| 6199 | (double)0, |
| 6200 | (double)0, |
| 6201 | (double)0); |
Guido van Rossum | 14ed0b2 | 1994-09-29 09:50:09 +0000 | [diff] [blame] | 6202 | } |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 6203 | #endif /* MS_WINDOWS */ |
Guido van Rossum | bfaf3d6 | 1997-12-29 20:02:27 +0000 | [diff] [blame] | 6204 | |
| 6205 | #ifdef HAVE_TIMES |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6206 | PyDoc_STRVAR(posix_times__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6207 | "times() -> (utime, stime, cutime, cstime, elapsed_time)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6208 | Return a tuple of floating point numbers indicating process times."); |
Guido van Rossum | bfaf3d6 | 1997-12-29 20:02:27 +0000 | [diff] [blame] | 6209 | #endif |
Guido van Rossum | 22db57e | 1992-04-05 14:25:30 +0000 | [diff] [blame] | 6210 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6211 | |
Martin v. Löwis | 49ee14d | 2003-11-10 06:35:36 +0000 | [diff] [blame] | 6212 | #ifdef HAVE_GETSID |
| 6213 | PyDoc_STRVAR(posix_getsid__doc__, |
| 6214 | "getsid(pid) -> sid\n\n\ |
| 6215 | Call the system call getsid()."); |
| 6216 | |
| 6217 | static PyObject * |
| 6218 | posix_getsid(PyObject *self, PyObject *args) |
| 6219 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6220 | pid_t pid; |
| 6221 | int sid; |
| 6222 | if (!PyArg_ParseTuple(args, PARSE_PID ":getsid", &pid)) |
| 6223 | return NULL; |
| 6224 | sid = getsid(pid); |
| 6225 | if (sid < 0) |
| 6226 | return posix_error(); |
| 6227 | return PyInt_FromLong((long)sid); |
Martin v. Löwis | 49ee14d | 2003-11-10 06:35:36 +0000 | [diff] [blame] | 6228 | } |
| 6229 | #endif /* HAVE_GETSID */ |
| 6230 | |
| 6231 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 6232 | #ifdef HAVE_SETSID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6233 | PyDoc_STRVAR(posix_setsid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6234 | "setsid()\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6235 | Call the system call setsid()."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6236 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6237 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 6238 | posix_setsid(PyObject *self, PyObject *noargs) |
Guido van Rossum | c2670a0 | 1992-09-13 20:07:29 +0000 | [diff] [blame] | 6239 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6240 | if (setsid() < 0) |
| 6241 | return posix_error(); |
| 6242 | Py_INCREF(Py_None); |
| 6243 | return Py_None; |
Guido van Rossum | c2670a0 | 1992-09-13 20:07:29 +0000 | [diff] [blame] | 6244 | } |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 6245 | #endif /* HAVE_SETSID */ |
Guido van Rossum | c2670a0 | 1992-09-13 20:07:29 +0000 | [diff] [blame] | 6246 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 6247 | #ifdef HAVE_SETPGID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6248 | PyDoc_STRVAR(posix_setpgid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6249 | "setpgid(pid, pgrp)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6250 | Call the system call setpgid()."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6251 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6252 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6253 | posix_setpgid(PyObject *self, PyObject *args) |
Guido van Rossum | c2670a0 | 1992-09-13 20:07:29 +0000 | [diff] [blame] | 6254 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6255 | pid_t pid; |
| 6256 | int pgrp; |
| 6257 | if (!PyArg_ParseTuple(args, PARSE_PID "i:setpgid", &pid, &pgrp)) |
| 6258 | return NULL; |
| 6259 | if (setpgid(pid, pgrp) < 0) |
| 6260 | return posix_error(); |
| 6261 | Py_INCREF(Py_None); |
| 6262 | return Py_None; |
Guido van Rossum | c2670a0 | 1992-09-13 20:07:29 +0000 | [diff] [blame] | 6263 | } |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 6264 | #endif /* HAVE_SETPGID */ |
Guido van Rossum | c2670a0 | 1992-09-13 20:07:29 +0000 | [diff] [blame] | 6265 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6266 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 6267 | #ifdef HAVE_TCGETPGRP |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6268 | PyDoc_STRVAR(posix_tcgetpgrp__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6269 | "tcgetpgrp(fd) -> pgid\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6270 | Return the process group associated with the terminal given by a fd."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6271 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6272 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6273 | posix_tcgetpgrp(PyObject *self, PyObject *args) |
Guido van Rossum | 7066dd7 | 1992-09-17 17:54:56 +0000 | [diff] [blame] | 6274 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6275 | int fd; |
| 6276 | pid_t pgid; |
| 6277 | if (!PyArg_ParseTuple(args, "i:tcgetpgrp", &fd)) |
| 6278 | return NULL; |
| 6279 | pgid = tcgetpgrp(fd); |
| 6280 | if (pgid < 0) |
| 6281 | return posix_error(); |
| 6282 | return PyLong_FromPid(pgid); |
Guido van Rossum | 7066dd7 | 1992-09-17 17:54:56 +0000 | [diff] [blame] | 6283 | } |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 6284 | #endif /* HAVE_TCGETPGRP */ |
Guido van Rossum | 7066dd7 | 1992-09-17 17:54:56 +0000 | [diff] [blame] | 6285 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6286 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 6287 | #ifdef HAVE_TCSETPGRP |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6288 | PyDoc_STRVAR(posix_tcsetpgrp__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6289 | "tcsetpgrp(fd, pgid)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6290 | Set the process group associated with the terminal given by a fd."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6291 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6292 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6293 | posix_tcsetpgrp(PyObject *self, PyObject *args) |
Guido van Rossum | 7066dd7 | 1992-09-17 17:54:56 +0000 | [diff] [blame] | 6294 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6295 | int fd; |
| 6296 | pid_t pgid; |
| 6297 | if (!PyArg_ParseTuple(args, "i" PARSE_PID ":tcsetpgrp", &fd, &pgid)) |
| 6298 | return NULL; |
| 6299 | if (tcsetpgrp(fd, pgid) < 0) |
| 6300 | return posix_error(); |
| 6301 | Py_INCREF(Py_None); |
| 6302 | return Py_None; |
Guido van Rossum | 7066dd7 | 1992-09-17 17:54:56 +0000 | [diff] [blame] | 6303 | } |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 6304 | #endif /* HAVE_TCSETPGRP */ |
Guido van Rossum | 22db57e | 1992-04-05 14:25:30 +0000 | [diff] [blame] | 6305 | |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6306 | /* Functions acting on file descriptors */ |
| 6307 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6308 | PyDoc_STRVAR(posix_open__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6309 | "open(filename, flag [, mode=0777]) -> fd\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6310 | Open a file (for low level IO)."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6311 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6312 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6313 | posix_open(PyObject *self, PyObject *args) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6314 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6315 | char *file = NULL; |
| 6316 | int flag; |
| 6317 | int mode = 0777; |
| 6318 | int fd; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 6319 | |
| 6320 | #ifdef MS_WINDOWS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6321 | PyUnicodeObject *po; |
| 6322 | if (PyArg_ParseTuple(args, "Ui|i:mkdir", &po, &flag, &mode)) { |
| 6323 | Py_BEGIN_ALLOW_THREADS |
| 6324 | /* PyUnicode_AS_UNICODE OK without thread |
| 6325 | lock as it is a simple dereference. */ |
| 6326 | fd = _wopen(PyUnicode_AS_UNICODE(po), flag, mode); |
| 6327 | Py_END_ALLOW_THREADS |
| 6328 | if (fd < 0) |
| 6329 | return posix_error(); |
| 6330 | return PyInt_FromLong((long)fd); |
| 6331 | } |
| 6332 | /* Drop the argument parsing error as narrow strings |
| 6333 | are also valid. */ |
| 6334 | PyErr_Clear(); |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 6335 | #endif |
| 6336 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6337 | if (!PyArg_ParseTuple(args, "eti|i", |
| 6338 | Py_FileSystemDefaultEncoding, &file, |
| 6339 | &flag, &mode)) |
| 6340 | return NULL; |
Barry Warsaw | 43d68b8 | 1996-12-19 22:10:44 +0000 | [diff] [blame] | 6341 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6342 | Py_BEGIN_ALLOW_THREADS |
| 6343 | fd = open(file, flag, mode); |
| 6344 | Py_END_ALLOW_THREADS |
| 6345 | if (fd < 0) |
| 6346 | return posix_error_with_allocated_filename(file); |
| 6347 | PyMem_Free(file); |
| 6348 | return PyInt_FromLong((long)fd); |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6349 | } |
| 6350 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6351 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6352 | PyDoc_STRVAR(posix_close__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6353 | "close(fd)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6354 | Close a file descriptor (for low level IO)."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6355 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6356 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6357 | posix_close(PyObject *self, PyObject *args) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6358 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6359 | int fd, res; |
| 6360 | if (!PyArg_ParseTuple(args, "i:close", &fd)) |
| 6361 | return NULL; |
| 6362 | if (!_PyVerify_fd(fd)) |
| 6363 | return posix_error(); |
| 6364 | Py_BEGIN_ALLOW_THREADS |
| 6365 | res = close(fd); |
| 6366 | Py_END_ALLOW_THREADS |
| 6367 | if (res < 0) |
| 6368 | return posix_error(); |
| 6369 | Py_INCREF(Py_None); |
| 6370 | return Py_None; |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6371 | } |
| 6372 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6373 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6374 | PyDoc_STRVAR(posix_closerange__doc__, |
Georg Brandl | 309501a | 2008-01-19 20:22:13 +0000 | [diff] [blame] | 6375 | "closerange(fd_low, fd_high)\n\n\ |
| 6376 | Closes all file descriptors in [fd_low, fd_high), ignoring errors."); |
| 6377 | |
| 6378 | static PyObject * |
| 6379 | posix_closerange(PyObject *self, PyObject *args) |
| 6380 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6381 | int fd_from, fd_to, i; |
| 6382 | if (!PyArg_ParseTuple(args, "ii:closerange", &fd_from, &fd_to)) |
| 6383 | return NULL; |
| 6384 | Py_BEGIN_ALLOW_THREADS |
| 6385 | for (i = fd_from; i < fd_to; i++) |
| 6386 | if (_PyVerify_fd(i)) |
| 6387 | close(i); |
| 6388 | Py_END_ALLOW_THREADS |
| 6389 | Py_RETURN_NONE; |
Georg Brandl | 309501a | 2008-01-19 20:22:13 +0000 | [diff] [blame] | 6390 | } |
| 6391 | |
| 6392 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6393 | PyDoc_STRVAR(posix_dup__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6394 | "dup(fd) -> fd2\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6395 | Return a duplicate of a file descriptor."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6396 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6397 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6398 | posix_dup(PyObject *self, PyObject *args) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6399 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6400 | int fd; |
| 6401 | if (!PyArg_ParseTuple(args, "i:dup", &fd)) |
| 6402 | return NULL; |
| 6403 | if (!_PyVerify_fd(fd)) |
| 6404 | return posix_error(); |
| 6405 | Py_BEGIN_ALLOW_THREADS |
| 6406 | fd = dup(fd); |
| 6407 | Py_END_ALLOW_THREADS |
| 6408 | if (fd < 0) |
| 6409 | return posix_error(); |
| 6410 | return PyInt_FromLong((long)fd); |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6411 | } |
| 6412 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6413 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6414 | PyDoc_STRVAR(posix_dup2__doc__, |
Andrew M. Kuchling | 8135fd5 | 2004-01-16 13:18:42 +0000 | [diff] [blame] | 6415 | "dup2(old_fd, new_fd)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6416 | Duplicate file descriptor."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6417 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6418 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6419 | posix_dup2(PyObject *self, PyObject *args) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6420 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6421 | int fd, fd2, res; |
| 6422 | if (!PyArg_ParseTuple(args, "ii:dup2", &fd, &fd2)) |
| 6423 | return NULL; |
| 6424 | if (!_PyVerify_fd_dup2(fd, fd2)) |
| 6425 | return posix_error(); |
| 6426 | Py_BEGIN_ALLOW_THREADS |
| 6427 | res = dup2(fd, fd2); |
| 6428 | Py_END_ALLOW_THREADS |
| 6429 | if (res < 0) |
| 6430 | return posix_error(); |
| 6431 | Py_INCREF(Py_None); |
| 6432 | return Py_None; |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6433 | } |
| 6434 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6435 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6436 | PyDoc_STRVAR(posix_lseek__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6437 | "lseek(fd, pos, how) -> newpos\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6438 | Set the current position of a file descriptor."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6439 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6440 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6441 | posix_lseek(PyObject *self, PyObject *args) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6442 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6443 | int fd, how; |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 6444 | #if defined(MS_WIN64) || defined(MS_WINDOWS) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6445 | PY_LONG_LONG pos, res; |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 6446 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6447 | off_t pos, res; |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 6448 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6449 | PyObject *posobj; |
| 6450 | if (!PyArg_ParseTuple(args, "iOi:lseek", &fd, &posobj, &how)) |
| 6451 | return NULL; |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6452 | #ifdef SEEK_SET |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6453 | /* Turn 0, 1, 2 into SEEK_{SET,CUR,END} */ |
| 6454 | switch (how) { |
| 6455 | case 0: how = SEEK_SET; break; |
| 6456 | case 1: how = SEEK_CUR; break; |
| 6457 | case 2: how = SEEK_END; break; |
| 6458 | } |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 6459 | #endif /* SEEK_END */ |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 6460 | |
| 6461 | #if !defined(HAVE_LARGEFILE_SUPPORT) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6462 | pos = PyInt_AsLong(posobj); |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 6463 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6464 | pos = PyLong_Check(posobj) ? |
| 6465 | PyLong_AsLongLong(posobj) : PyInt_AsLong(posobj); |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 6466 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6467 | if (PyErr_Occurred()) |
| 6468 | return NULL; |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 6469 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6470 | if (!_PyVerify_fd(fd)) |
| 6471 | return posix_error(); |
| 6472 | Py_BEGIN_ALLOW_THREADS |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 6473 | #if defined(MS_WIN64) || defined(MS_WINDOWS) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6474 | res = _lseeki64(fd, pos, how); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 6475 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6476 | res = lseek(fd, pos, how); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 6477 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6478 | Py_END_ALLOW_THREADS |
| 6479 | if (res < 0) |
| 6480 | return posix_error(); |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 6481 | |
| 6482 | #if !defined(HAVE_LARGEFILE_SUPPORT) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6483 | return PyInt_FromLong(res); |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 6484 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6485 | return PyLong_FromLongLong(res); |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 6486 | #endif |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6487 | } |
| 6488 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6489 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6490 | PyDoc_STRVAR(posix_read__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6491 | "read(fd, buffersize) -> string\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6492 | Read a file descriptor."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6493 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6494 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6495 | posix_read(PyObject *self, PyObject *args) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6496 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6497 | int fd, size, n; |
| 6498 | PyObject *buffer; |
| 6499 | if (!PyArg_ParseTuple(args, "ii:read", &fd, &size)) |
| 6500 | return NULL; |
| 6501 | if (size < 0) { |
| 6502 | errno = EINVAL; |
| 6503 | return posix_error(); |
| 6504 | } |
| 6505 | buffer = PyString_FromStringAndSize((char *)NULL, size); |
| 6506 | if (buffer == NULL) |
| 6507 | return NULL; |
| 6508 | if (!_PyVerify_fd(fd)) |
| 6509 | return posix_error(); |
| 6510 | Py_BEGIN_ALLOW_THREADS |
| 6511 | n = read(fd, PyString_AsString(buffer), size); |
| 6512 | Py_END_ALLOW_THREADS |
| 6513 | if (n < 0) { |
| 6514 | Py_DECREF(buffer); |
| 6515 | return posix_error(); |
| 6516 | } |
| 6517 | if (n != size) |
| 6518 | _PyString_Resize(&buffer, n); |
| 6519 | return buffer; |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6520 | } |
| 6521 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6522 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6523 | PyDoc_STRVAR(posix_write__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6524 | "write(fd, string) -> byteswritten\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6525 | Write a string to a file descriptor."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6526 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6527 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6528 | posix_write(PyObject *self, PyObject *args) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6529 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6530 | Py_buffer pbuf; |
| 6531 | int fd; |
| 6532 | Py_ssize_t size; |
Thomas Wouters | 68bc4f9 | 2006-03-01 01:05:10 +0000 | [diff] [blame] | 6533 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6534 | if (!PyArg_ParseTuple(args, "is*:write", &fd, &pbuf)) |
| 6535 | return NULL; |
| 6536 | if (!_PyVerify_fd(fd)) |
| 6537 | return posix_error(); |
| 6538 | Py_BEGIN_ALLOW_THREADS |
| 6539 | size = write(fd, pbuf.buf, (size_t)pbuf.len); |
| 6540 | Py_END_ALLOW_THREADS |
| 6541 | PyBuffer_Release(&pbuf); |
| 6542 | if (size < 0) |
| 6543 | return posix_error(); |
| 6544 | return PyInt_FromSsize_t(size); |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6545 | } |
| 6546 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6547 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6548 | PyDoc_STRVAR(posix_fstat__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6549 | "fstat(fd) -> stat result\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6550 | Like stat(), but for an open file descriptor."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6551 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6552 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6553 | posix_fstat(PyObject *self, PyObject *args) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6554 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6555 | int fd; |
| 6556 | STRUCT_STAT st; |
| 6557 | int res; |
| 6558 | if (!PyArg_ParseTuple(args, "i:fstat", &fd)) |
| 6559 | return NULL; |
Martin v. Löwis | 7a924e6 | 2003-03-05 14:15:21 +0000 | [diff] [blame] | 6560 | #ifdef __VMS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6561 | /* on OpenVMS we must ensure that all bytes are written to the file */ |
| 6562 | fsync(fd); |
Martin v. Löwis | 7a924e6 | 2003-03-05 14:15:21 +0000 | [diff] [blame] | 6563 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6564 | if (!_PyVerify_fd(fd)) |
| 6565 | return posix_error(); |
| 6566 | Py_BEGIN_ALLOW_THREADS |
| 6567 | res = FSTAT(fd, &st); |
| 6568 | Py_END_ALLOW_THREADS |
| 6569 | if (res != 0) { |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 6570 | #ifdef MS_WINDOWS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6571 | return win32_error("fstat", NULL); |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 6572 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6573 | return posix_error(); |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 6574 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6575 | } |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 6576 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6577 | return _pystat_fromstructstat(&st); |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6578 | } |
| 6579 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6580 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6581 | PyDoc_STRVAR(posix_fdopen__doc__, |
Neal Norwitz | c18b308 | 2002-10-11 22:19:42 +0000 | [diff] [blame] | 6582 | "fdopen(fd [, mode='r' [, bufsize]]) -> file_object\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6583 | Return an open file object connected to a file descriptor."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6584 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6585 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6586 | posix_fdopen(PyObject *self, PyObject *args) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6587 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6588 | int fd; |
| 6589 | char *orgmode = "r"; |
| 6590 | int bufsize = -1; |
| 6591 | FILE *fp; |
| 6592 | PyObject *f; |
| 6593 | char *mode; |
| 6594 | if (!PyArg_ParseTuple(args, "i|si", &fd, &orgmode, &bufsize)) |
| 6595 | return NULL; |
Barry Warsaw | 43d68b8 | 1996-12-19 22:10:44 +0000 | [diff] [blame] | 6596 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6597 | /* Sanitize mode. See fileobject.c */ |
| 6598 | mode = PyMem_MALLOC(strlen(orgmode)+3); |
| 6599 | if (!mode) { |
| 6600 | PyErr_NoMemory(); |
| 6601 | return NULL; |
| 6602 | } |
| 6603 | strcpy(mode, orgmode); |
| 6604 | if (_PyFile_SanitizeMode(mode)) { |
| 6605 | PyMem_FREE(mode); |
| 6606 | return NULL; |
| 6607 | } |
| 6608 | if (!_PyVerify_fd(fd)) |
| 6609 | return posix_error(); |
| 6610 | Py_BEGIN_ALLOW_THREADS |
Georg Brandl | 644b1e7 | 2006-03-31 20:27:22 +0000 | [diff] [blame] | 6611 | #if !defined(MS_WINDOWS) && defined(HAVE_FCNTL_H) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6612 | if (mode[0] == 'a') { |
| 6613 | /* try to make sure the O_APPEND flag is set */ |
| 6614 | int flags; |
| 6615 | flags = fcntl(fd, F_GETFL); |
| 6616 | if (flags != -1) |
| 6617 | fcntl(fd, F_SETFL, flags | O_APPEND); |
| 6618 | fp = fdopen(fd, mode); |
| 6619 | if (fp == NULL && flags != -1) |
| 6620 | /* restore old mode if fdopen failed */ |
| 6621 | fcntl(fd, F_SETFL, flags); |
| 6622 | } else { |
| 6623 | fp = fdopen(fd, mode); |
| 6624 | } |
Georg Brandl | 644b1e7 | 2006-03-31 20:27:22 +0000 | [diff] [blame] | 6625 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6626 | fp = fdopen(fd, mode); |
Georg Brandl | 644b1e7 | 2006-03-31 20:27:22 +0000 | [diff] [blame] | 6627 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6628 | Py_END_ALLOW_THREADS |
| 6629 | PyMem_FREE(mode); |
| 6630 | if (fp == NULL) |
| 6631 | return posix_error(); |
| 6632 | f = PyFile_FromFile(fp, "<fdopen>", orgmode, fclose); |
| 6633 | if (f != NULL) |
| 6634 | PyFile_SetBufSize(f, bufsize); |
| 6635 | return f; |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6636 | } |
| 6637 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6638 | PyDoc_STRVAR(posix_isatty__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6639 | "isatty(fd) -> bool\n\n\ |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 6640 | Return True if the file descriptor 'fd' is an open file descriptor\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6641 | connected to the slave end of a terminal."); |
Skip Montanaro | 1517d84 | 2000-07-19 14:34:14 +0000 | [diff] [blame] | 6642 | |
| 6643 | static PyObject * |
Thomas Wouters | 616607a | 2000-07-19 14:45:40 +0000 | [diff] [blame] | 6644 | posix_isatty(PyObject *self, PyObject *args) |
Skip Montanaro | 1517d84 | 2000-07-19 14:34:14 +0000 | [diff] [blame] | 6645 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6646 | int fd; |
| 6647 | if (!PyArg_ParseTuple(args, "i:isatty", &fd)) |
| 6648 | return NULL; |
| 6649 | if (!_PyVerify_fd(fd)) |
| 6650 | return PyBool_FromLong(0); |
| 6651 | return PyBool_FromLong(isatty(fd)); |
Skip Montanaro | 1517d84 | 2000-07-19 14:34:14 +0000 | [diff] [blame] | 6652 | } |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6653 | |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 6654 | #ifdef HAVE_PIPE |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6655 | PyDoc_STRVAR(posix_pipe__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6656 | "pipe() -> (read_end, write_end)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6657 | Create a pipe."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6658 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6659 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 6660 | posix_pipe(PyObject *self, PyObject *noargs) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6661 | { |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 6662 | #if defined(PYOS_OS2) |
| 6663 | HFILE read, write; |
| 6664 | APIRET rc; |
| 6665 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6666 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 6667 | rc = DosCreatePipe( &read, &write, 4096); |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6668 | Py_END_ALLOW_THREADS |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 6669 | if (rc != NO_ERROR) |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 6670 | return os2_error(rc); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 6671 | |
| 6672 | return Py_BuildValue("(ii)", read, write); |
| 6673 | #else |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 6674 | #if !defined(MS_WINDOWS) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6675 | int fds[2]; |
| 6676 | int res; |
| 6677 | Py_BEGIN_ALLOW_THREADS |
| 6678 | res = pipe(fds); |
| 6679 | Py_END_ALLOW_THREADS |
| 6680 | if (res != 0) |
| 6681 | return posix_error(); |
| 6682 | return Py_BuildValue("(ii)", fds[0], fds[1]); |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 6683 | #else /* MS_WINDOWS */ |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6684 | HANDLE read, write; |
| 6685 | int read_fd, write_fd; |
| 6686 | BOOL ok; |
| 6687 | Py_BEGIN_ALLOW_THREADS |
| 6688 | ok = CreatePipe(&read, &write, NULL, 0); |
| 6689 | Py_END_ALLOW_THREADS |
| 6690 | if (!ok) |
| 6691 | return win32_error("CreatePipe", NULL); |
| 6692 | read_fd = _open_osfhandle((Py_intptr_t)read, 0); |
| 6693 | write_fd = _open_osfhandle((Py_intptr_t)write, 1); |
| 6694 | return Py_BuildValue("(ii)", read_fd, write_fd); |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 6695 | #endif /* MS_WINDOWS */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 6696 | #endif |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6697 | } |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 6698 | #endif /* HAVE_PIPE */ |
| 6699 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6700 | |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 6701 | #ifdef HAVE_MKFIFO |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6702 | PyDoc_STRVAR(posix_mkfifo__doc__, |
Neal Norwitz | c18b308 | 2002-10-11 22:19:42 +0000 | [diff] [blame] | 6703 | "mkfifo(filename [, mode=0666])\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6704 | Create a FIFO (a POSIX named pipe)."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6705 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6706 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6707 | posix_mkfifo(PyObject *self, PyObject *args) |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 6708 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6709 | char *filename; |
| 6710 | int mode = 0666; |
| 6711 | int res; |
| 6712 | if (!PyArg_ParseTuple(args, "s|i:mkfifo", &filename, &mode)) |
| 6713 | return NULL; |
| 6714 | Py_BEGIN_ALLOW_THREADS |
| 6715 | res = mkfifo(filename, mode); |
| 6716 | Py_END_ALLOW_THREADS |
| 6717 | if (res < 0) |
| 6718 | return posix_error(); |
| 6719 | Py_INCREF(Py_None); |
| 6720 | return Py_None; |
Martin v. Löwis | 06a83e9 | 2002-04-14 10:19:44 +0000 | [diff] [blame] | 6721 | } |
| 6722 | #endif |
| 6723 | |
| 6724 | |
Neal Norwitz | 1169011 | 2002-07-30 01:08:28 +0000 | [diff] [blame] | 6725 | #if defined(HAVE_MKNOD) && defined(HAVE_MAKEDEV) |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6726 | PyDoc_STRVAR(posix_mknod__doc__, |
Neal Norwitz | c18b308 | 2002-10-11 22:19:42 +0000 | [diff] [blame] | 6727 | "mknod(filename [, mode=0600, device])\n\n\ |
Martin v. Löwis | 06a83e9 | 2002-04-14 10:19:44 +0000 | [diff] [blame] | 6728 | Create a filesystem node (file, device special file or named pipe)\n\ |
| 6729 | named filename. mode specifies both the permissions to use and the\n\ |
| 6730 | type of node to be created, being combined (bitwise OR) with one of\n\ |
| 6731 | S_IFREG, S_IFCHR, S_IFBLK, and S_IFIFO. For S_IFCHR and S_IFBLK,\n\ |
Martin v. Löwis | dbe3f76 | 2002-10-10 14:27:30 +0000 | [diff] [blame] | 6732 | device defines the newly created device special file (probably using\n\ |
| 6733 | os.makedev()), otherwise it is ignored."); |
Martin v. Löwis | 06a83e9 | 2002-04-14 10:19:44 +0000 | [diff] [blame] | 6734 | |
| 6735 | |
| 6736 | static PyObject * |
| 6737 | posix_mknod(PyObject *self, PyObject *args) |
| 6738 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6739 | char *filename; |
| 6740 | int mode = 0600; |
| 6741 | int device = 0; |
| 6742 | int res; |
| 6743 | if (!PyArg_ParseTuple(args, "s|ii:mknod", &filename, &mode, &device)) |
| 6744 | return NULL; |
| 6745 | Py_BEGIN_ALLOW_THREADS |
| 6746 | res = mknod(filename, mode, device); |
| 6747 | Py_END_ALLOW_THREADS |
| 6748 | if (res < 0) |
| 6749 | return posix_error(); |
| 6750 | Py_INCREF(Py_None); |
| 6751 | return Py_None; |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 6752 | } |
| 6753 | #endif |
| 6754 | |
Martin v. Löwis | dbe3f76 | 2002-10-10 14:27:30 +0000 | [diff] [blame] | 6755 | #ifdef HAVE_DEVICE_MACROS |
| 6756 | PyDoc_STRVAR(posix_major__doc__, |
| 6757 | "major(device) -> major number\n\ |
| 6758 | Extracts a device major number from a raw device number."); |
| 6759 | |
| 6760 | static PyObject * |
| 6761 | posix_major(PyObject *self, PyObject *args) |
| 6762 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6763 | int device; |
| 6764 | if (!PyArg_ParseTuple(args, "i:major", &device)) |
| 6765 | return NULL; |
| 6766 | return PyInt_FromLong((long)major(device)); |
Martin v. Löwis | dbe3f76 | 2002-10-10 14:27:30 +0000 | [diff] [blame] | 6767 | } |
| 6768 | |
| 6769 | PyDoc_STRVAR(posix_minor__doc__, |
| 6770 | "minor(device) -> minor number\n\ |
| 6771 | Extracts a device minor number from a raw device number."); |
| 6772 | |
| 6773 | static PyObject * |
| 6774 | posix_minor(PyObject *self, PyObject *args) |
| 6775 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6776 | int device; |
| 6777 | if (!PyArg_ParseTuple(args, "i:minor", &device)) |
| 6778 | return NULL; |
| 6779 | return PyInt_FromLong((long)minor(device)); |
Martin v. Löwis | dbe3f76 | 2002-10-10 14:27:30 +0000 | [diff] [blame] | 6780 | } |
| 6781 | |
| 6782 | PyDoc_STRVAR(posix_makedev__doc__, |
| 6783 | "makedev(major, minor) -> device number\n\ |
| 6784 | Composes a raw device number from the major and minor device numbers."); |
| 6785 | |
| 6786 | static PyObject * |
| 6787 | posix_makedev(PyObject *self, PyObject *args) |
| 6788 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6789 | int major, minor; |
| 6790 | if (!PyArg_ParseTuple(args, "ii:makedev", &major, &minor)) |
| 6791 | return NULL; |
| 6792 | return PyInt_FromLong((long)makedev(major, minor)); |
Martin v. Löwis | dbe3f76 | 2002-10-10 14:27:30 +0000 | [diff] [blame] | 6793 | } |
| 6794 | #endif /* device macros */ |
| 6795 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6796 | |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 6797 | #ifdef HAVE_FTRUNCATE |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6798 | PyDoc_STRVAR(posix_ftruncate__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6799 | "ftruncate(fd, length)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6800 | Truncate a file to a specified length."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6801 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6802 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6803 | posix_ftruncate(PyObject *self, PyObject *args) |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 6804 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6805 | int fd; |
| 6806 | off_t length; |
| 6807 | int res; |
| 6808 | PyObject *lenobj; |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 6809 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6810 | if (!PyArg_ParseTuple(args, "iO:ftruncate", &fd, &lenobj)) |
| 6811 | return NULL; |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 6812 | |
| 6813 | #if !defined(HAVE_LARGEFILE_SUPPORT) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6814 | length = PyInt_AsLong(lenobj); |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 6815 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6816 | length = PyLong_Check(lenobj) ? |
| 6817 | PyLong_AsLongLong(lenobj) : PyInt_AsLong(lenobj); |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 6818 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6819 | if (PyErr_Occurred()) |
| 6820 | return NULL; |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 6821 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6822 | Py_BEGIN_ALLOW_THREADS |
| 6823 | res = ftruncate(fd, length); |
| 6824 | Py_END_ALLOW_THREADS |
| 6825 | if (res < 0) |
| 6826 | return posix_error(); |
| 6827 | Py_INCREF(Py_None); |
| 6828 | return Py_None; |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 6829 | } |
| 6830 | #endif |
Guido van Rossum | 22db57e | 1992-04-05 14:25:30 +0000 | [diff] [blame] | 6831 | |
Guido van Rossum | f1af3fe | 1996-07-23 19:18:10 +0000 | [diff] [blame] | 6832 | #ifdef HAVE_PUTENV |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6833 | PyDoc_STRVAR(posix_putenv__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6834 | "putenv(key, value)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6835 | Change or add an environment variable."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6836 | |
Fred Drake | 762e206 | 1999-08-26 17:23:54 +0000 | [diff] [blame] | 6837 | /* Save putenv() parameters as values here, so we can collect them when they |
| 6838 | * get re-set with another call for the same key. */ |
| 6839 | static PyObject *posix_putenv_garbage; |
| 6840 | |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 6841 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6842 | posix_putenv(PyObject *self, PyObject *args) |
Guido van Rossum | f1af3fe | 1996-07-23 19:18:10 +0000 | [diff] [blame] | 6843 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6844 | char *s1, *s2; |
| 6845 | char *newenv; |
| 6846 | PyObject *newstr; |
| 6847 | size_t len; |
Guido van Rossum | f1af3fe | 1996-07-23 19:18:10 +0000 | [diff] [blame] | 6848 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6849 | if (!PyArg_ParseTuple(args, "ss:putenv", &s1, &s2)) |
| 6850 | return NULL; |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 6851 | |
| 6852 | #if defined(PYOS_OS2) |
| 6853 | if (stricmp(s1, "BEGINLIBPATH") == 0) { |
| 6854 | APIRET rc; |
| 6855 | |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 6856 | rc = DosSetExtLIBPATH(s2, BEGIN_LIBPATH); |
| 6857 | if (rc != NO_ERROR) |
| 6858 | return os2_error(rc); |
| 6859 | |
| 6860 | } else if (stricmp(s1, "ENDLIBPATH") == 0) { |
| 6861 | APIRET rc; |
| 6862 | |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 6863 | rc = DosSetExtLIBPATH(s2, END_LIBPATH); |
| 6864 | if (rc != NO_ERROR) |
| 6865 | return os2_error(rc); |
| 6866 | } else { |
| 6867 | #endif |
| 6868 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6869 | /* XXX This can leak memory -- not easy to fix :-( */ |
| 6870 | len = strlen(s1) + strlen(s2) + 2; |
| 6871 | /* len includes space for a trailing \0; the size arg to |
| 6872 | PyString_FromStringAndSize does not count that */ |
| 6873 | newstr = PyString_FromStringAndSize(NULL, (int)len - 1); |
| 6874 | if (newstr == NULL) |
| 6875 | return PyErr_NoMemory(); |
| 6876 | newenv = PyString_AS_STRING(newstr); |
| 6877 | PyOS_snprintf(newenv, len, "%s=%s", s1, s2); |
| 6878 | if (putenv(newenv)) { |
| 6879 | Py_DECREF(newstr); |
| 6880 | posix_error(); |
| 6881 | return NULL; |
| 6882 | } |
| 6883 | /* Install the first arg and newstr in posix_putenv_garbage; |
| 6884 | * this will cause previous value to be collected. This has to |
| 6885 | * happen after the real putenv() call because the old value |
| 6886 | * was still accessible until then. */ |
| 6887 | if (PyDict_SetItem(posix_putenv_garbage, |
| 6888 | PyTuple_GET_ITEM(args, 0), newstr)) { |
| 6889 | /* really not much we can do; just leak */ |
| 6890 | PyErr_Clear(); |
| 6891 | } |
| 6892 | else { |
| 6893 | Py_DECREF(newstr); |
| 6894 | } |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 6895 | |
| 6896 | #if defined(PYOS_OS2) |
| 6897 | } |
| 6898 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6899 | Py_INCREF(Py_None); |
| 6900 | return Py_None; |
Guido van Rossum | f1af3fe | 1996-07-23 19:18:10 +0000 | [diff] [blame] | 6901 | } |
Guido van Rossum | b6a4716 | 1997-09-15 22:54:34 +0000 | [diff] [blame] | 6902 | #endif /* putenv */ |
| 6903 | |
Guido van Rossum | c524d95 | 2001-10-19 01:31:59 +0000 | [diff] [blame] | 6904 | #ifdef HAVE_UNSETENV |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6905 | PyDoc_STRVAR(posix_unsetenv__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6906 | "unsetenv(key)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6907 | Delete an environment variable."); |
Guido van Rossum | c524d95 | 2001-10-19 01:31:59 +0000 | [diff] [blame] | 6908 | |
| 6909 | static PyObject * |
| 6910 | posix_unsetenv(PyObject *self, PyObject *args) |
| 6911 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6912 | char *s1; |
Guido van Rossum | c524d95 | 2001-10-19 01:31:59 +0000 | [diff] [blame] | 6913 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6914 | if (!PyArg_ParseTuple(args, "s:unsetenv", &s1)) |
| 6915 | return NULL; |
Guido van Rossum | c524d95 | 2001-10-19 01:31:59 +0000 | [diff] [blame] | 6916 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6917 | unsetenv(s1); |
Guido van Rossum | c524d95 | 2001-10-19 01:31:59 +0000 | [diff] [blame] | 6918 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6919 | /* Remove the key from posix_putenv_garbage; |
| 6920 | * this will cause it to be collected. This has to |
| 6921 | * happen after the real unsetenv() call because the |
| 6922 | * old value was still accessible until then. |
| 6923 | */ |
| 6924 | if (PyDict_DelItem(posix_putenv_garbage, |
| 6925 | PyTuple_GET_ITEM(args, 0))) { |
| 6926 | /* really not much we can do; just leak */ |
| 6927 | PyErr_Clear(); |
| 6928 | } |
Guido van Rossum | c524d95 | 2001-10-19 01:31:59 +0000 | [diff] [blame] | 6929 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6930 | Py_INCREF(Py_None); |
| 6931 | return Py_None; |
Guido van Rossum | c524d95 | 2001-10-19 01:31:59 +0000 | [diff] [blame] | 6932 | } |
| 6933 | #endif /* unsetenv */ |
| 6934 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6935 | PyDoc_STRVAR(posix_strerror__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6936 | "strerror(code) -> string\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6937 | Translate an error code to a message string."); |
Guido van Rossum | b6a4716 | 1997-09-15 22:54:34 +0000 | [diff] [blame] | 6938 | |
Guido van Rossum | f68d8e5 | 2001-04-14 17:55:09 +0000 | [diff] [blame] | 6939 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6940 | posix_strerror(PyObject *self, PyObject *args) |
Guido van Rossum | b6a4716 | 1997-09-15 22:54:34 +0000 | [diff] [blame] | 6941 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6942 | int code; |
| 6943 | char *message; |
| 6944 | if (!PyArg_ParseTuple(args, "i:strerror", &code)) |
| 6945 | return NULL; |
| 6946 | message = strerror(code); |
| 6947 | if (message == NULL) { |
| 6948 | PyErr_SetString(PyExc_ValueError, |
| 6949 | "strerror() argument out of range"); |
| 6950 | return NULL; |
| 6951 | } |
| 6952 | return PyString_FromString(message); |
Guido van Rossum | b6a4716 | 1997-09-15 22:54:34 +0000 | [diff] [blame] | 6953 | } |
Guido van Rossum | b6a4716 | 1997-09-15 22:54:34 +0000 | [diff] [blame] | 6954 | |
Guido van Rossum | f1af3fe | 1996-07-23 19:18:10 +0000 | [diff] [blame] | 6955 | |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 6956 | #ifdef HAVE_SYS_WAIT_H |
| 6957 | |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 6958 | #ifdef WCOREDUMP |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6959 | PyDoc_STRVAR(posix_WCOREDUMP__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6960 | "WCOREDUMP(status) -> bool\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6961 | Return True if the process returning 'status' was dumped to a core file."); |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 6962 | |
| 6963 | static PyObject * |
| 6964 | posix_WCOREDUMP(PyObject *self, PyObject *args) |
| 6965 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6966 | WAIT_TYPE status; |
| 6967 | WAIT_STATUS_INT(status) = 0; |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 6968 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6969 | if (!PyArg_ParseTuple(args, "i:WCOREDUMP", &WAIT_STATUS_INT(status))) |
| 6970 | return NULL; |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 6971 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6972 | return PyBool_FromLong(WCOREDUMP(status)); |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 6973 | } |
| 6974 | #endif /* WCOREDUMP */ |
| 6975 | |
| 6976 | #ifdef WIFCONTINUED |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6977 | PyDoc_STRVAR(posix_WIFCONTINUED__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6978 | "WIFCONTINUED(status) -> bool\n\n\ |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 6979 | Return True if the process returning 'status' was continued from a\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6980 | job control stop."); |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 6981 | |
| 6982 | static PyObject * |
Martin v. Löwis | 2b41b0d | 2002-05-04 13:13:41 +0000 | [diff] [blame] | 6983 | posix_WIFCONTINUED(PyObject *self, PyObject *args) |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 6984 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6985 | WAIT_TYPE status; |
| 6986 | WAIT_STATUS_INT(status) = 0; |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 6987 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6988 | if (!PyArg_ParseTuple(args, "i:WCONTINUED", &WAIT_STATUS_INT(status))) |
| 6989 | return NULL; |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 6990 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 6991 | return PyBool_FromLong(WIFCONTINUED(status)); |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 6992 | } |
| 6993 | #endif /* WIFCONTINUED */ |
| 6994 | |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 6995 | #ifdef WIFSTOPPED |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6996 | PyDoc_STRVAR(posix_WIFSTOPPED__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6997 | "WIFSTOPPED(status) -> bool\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6998 | Return True if the process returning 'status' was stopped."); |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 6999 | |
| 7000 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 7001 | posix_WIFSTOPPED(PyObject *self, PyObject *args) |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 7002 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7003 | WAIT_TYPE status; |
| 7004 | WAIT_STATUS_INT(status) = 0; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 7005 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7006 | if (!PyArg_ParseTuple(args, "i:WIFSTOPPED", &WAIT_STATUS_INT(status))) |
| 7007 | return NULL; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 7008 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7009 | return PyBool_FromLong(WIFSTOPPED(status)); |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 7010 | } |
| 7011 | #endif /* WIFSTOPPED */ |
| 7012 | |
| 7013 | #ifdef WIFSIGNALED |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7014 | PyDoc_STRVAR(posix_WIFSIGNALED__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 7015 | "WIFSIGNALED(status) -> bool\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7016 | Return True if the process returning 'status' was terminated by a signal."); |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 7017 | |
| 7018 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 7019 | posix_WIFSIGNALED(PyObject *self, PyObject *args) |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 7020 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7021 | WAIT_TYPE status; |
| 7022 | WAIT_STATUS_INT(status) = 0; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 7023 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7024 | if (!PyArg_ParseTuple(args, "i:WIFSIGNALED", &WAIT_STATUS_INT(status))) |
| 7025 | return NULL; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 7026 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7027 | return PyBool_FromLong(WIFSIGNALED(status)); |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 7028 | } |
| 7029 | #endif /* WIFSIGNALED */ |
| 7030 | |
| 7031 | #ifdef WIFEXITED |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7032 | PyDoc_STRVAR(posix_WIFEXITED__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 7033 | "WIFEXITED(status) -> bool\n\n\ |
Fred Drake | 7e3535c | 1999-02-02 16:37:11 +0000 | [diff] [blame] | 7034 | Return true if the process returning 'status' exited using the exit()\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7035 | system call."); |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 7036 | |
| 7037 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 7038 | posix_WIFEXITED(PyObject *self, PyObject *args) |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 7039 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7040 | WAIT_TYPE status; |
| 7041 | WAIT_STATUS_INT(status) = 0; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 7042 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7043 | if (!PyArg_ParseTuple(args, "i:WIFEXITED", &WAIT_STATUS_INT(status))) |
| 7044 | return NULL; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 7045 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7046 | return PyBool_FromLong(WIFEXITED(status)); |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 7047 | } |
| 7048 | #endif /* WIFEXITED */ |
| 7049 | |
Guido van Rossum | 54ecc3d | 1999-01-27 17:53:11 +0000 | [diff] [blame] | 7050 | #ifdef WEXITSTATUS |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7051 | PyDoc_STRVAR(posix_WEXITSTATUS__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 7052 | "WEXITSTATUS(status) -> integer\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7053 | Return the process return code from 'status'."); |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 7054 | |
| 7055 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 7056 | posix_WEXITSTATUS(PyObject *self, PyObject *args) |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 7057 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7058 | WAIT_TYPE status; |
| 7059 | WAIT_STATUS_INT(status) = 0; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 7060 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7061 | if (!PyArg_ParseTuple(args, "i:WEXITSTATUS", &WAIT_STATUS_INT(status))) |
| 7062 | return NULL; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 7063 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7064 | return Py_BuildValue("i", WEXITSTATUS(status)); |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 7065 | } |
| 7066 | #endif /* WEXITSTATUS */ |
| 7067 | |
| 7068 | #ifdef WTERMSIG |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7069 | PyDoc_STRVAR(posix_WTERMSIG__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 7070 | "WTERMSIG(status) -> integer\n\n\ |
Fred Drake | 7e3535c | 1999-02-02 16:37:11 +0000 | [diff] [blame] | 7071 | Return the signal that terminated the process that provided the 'status'\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7072 | value."); |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 7073 | |
| 7074 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 7075 | posix_WTERMSIG(PyObject *self, PyObject *args) |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 7076 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7077 | WAIT_TYPE status; |
| 7078 | WAIT_STATUS_INT(status) = 0; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 7079 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7080 | if (!PyArg_ParseTuple(args, "i:WTERMSIG", &WAIT_STATUS_INT(status))) |
| 7081 | return NULL; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 7082 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7083 | return Py_BuildValue("i", WTERMSIG(status)); |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 7084 | } |
| 7085 | #endif /* WTERMSIG */ |
| 7086 | |
| 7087 | #ifdef WSTOPSIG |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7088 | PyDoc_STRVAR(posix_WSTOPSIG__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 7089 | "WSTOPSIG(status) -> integer\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7090 | Return the signal that stopped the process that provided\n\ |
| 7091 | the 'status' value."); |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 7092 | |
| 7093 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 7094 | posix_WSTOPSIG(PyObject *self, PyObject *args) |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 7095 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7096 | WAIT_TYPE status; |
| 7097 | WAIT_STATUS_INT(status) = 0; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 7098 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7099 | if (!PyArg_ParseTuple(args, "i:WSTOPSIG", &WAIT_STATUS_INT(status))) |
| 7100 | return NULL; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 7101 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7102 | return Py_BuildValue("i", WSTOPSIG(status)); |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 7103 | } |
| 7104 | #endif /* WSTOPSIG */ |
| 7105 | |
| 7106 | #endif /* HAVE_SYS_WAIT_H */ |
| 7107 | |
| 7108 | |
Martin v. Löwis | 5f5d99c | 2006-05-16 07:05:37 +0000 | [diff] [blame] | 7109 | #if defined(HAVE_FSTATVFS) && defined(HAVE_SYS_STATVFS_H) |
Guido van Rossum | d5753e1 | 1999-10-19 13:29:23 +0000 | [diff] [blame] | 7110 | #ifdef _SCO_DS |
| 7111 | /* SCO OpenServer 5.0 and later requires _SVID3 before it reveals the |
| 7112 | needed definitions in sys/statvfs.h */ |
| 7113 | #define _SVID3 |
| 7114 | #endif |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 7115 | #include <sys/statvfs.h> |
| 7116 | |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 7117 | static PyObject* |
| 7118 | _pystatvfs_fromstructstatvfs(struct statvfs st) { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7119 | PyObject *v = PyStructSequence_New(&StatVFSResultType); |
| 7120 | if (v == NULL) |
| 7121 | return NULL; |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 7122 | |
| 7123 | #if !defined(HAVE_LARGEFILE_SUPPORT) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7124 | PyStructSequence_SET_ITEM(v, 0, PyInt_FromLong((long) st.f_bsize)); |
| 7125 | PyStructSequence_SET_ITEM(v, 1, PyInt_FromLong((long) st.f_frsize)); |
| 7126 | PyStructSequence_SET_ITEM(v, 2, PyInt_FromLong((long) st.f_blocks)); |
| 7127 | PyStructSequence_SET_ITEM(v, 3, PyInt_FromLong((long) st.f_bfree)); |
| 7128 | PyStructSequence_SET_ITEM(v, 4, PyInt_FromLong((long) st.f_bavail)); |
| 7129 | PyStructSequence_SET_ITEM(v, 5, PyInt_FromLong((long) st.f_files)); |
| 7130 | PyStructSequence_SET_ITEM(v, 6, PyInt_FromLong((long) st.f_ffree)); |
| 7131 | PyStructSequence_SET_ITEM(v, 7, PyInt_FromLong((long) st.f_favail)); |
| 7132 | PyStructSequence_SET_ITEM(v, 8, PyInt_FromLong((long) st.f_flag)); |
| 7133 | PyStructSequence_SET_ITEM(v, 9, PyInt_FromLong((long) st.f_namemax)); |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 7134 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7135 | PyStructSequence_SET_ITEM(v, 0, PyInt_FromLong((long) st.f_bsize)); |
| 7136 | PyStructSequence_SET_ITEM(v, 1, PyInt_FromLong((long) st.f_frsize)); |
| 7137 | PyStructSequence_SET_ITEM(v, 2, |
| 7138 | PyLong_FromLongLong((PY_LONG_LONG) st.f_blocks)); |
| 7139 | PyStructSequence_SET_ITEM(v, 3, |
| 7140 | PyLong_FromLongLong((PY_LONG_LONG) st.f_bfree)); |
| 7141 | PyStructSequence_SET_ITEM(v, 4, |
| 7142 | PyLong_FromLongLong((PY_LONG_LONG) st.f_bavail)); |
| 7143 | PyStructSequence_SET_ITEM(v, 5, |
| 7144 | PyLong_FromLongLong((PY_LONG_LONG) st.f_files)); |
| 7145 | PyStructSequence_SET_ITEM(v, 6, |
| 7146 | PyLong_FromLongLong((PY_LONG_LONG) st.f_ffree)); |
| 7147 | PyStructSequence_SET_ITEM(v, 7, |
| 7148 | PyLong_FromLongLong((PY_LONG_LONG) st.f_favail)); |
| 7149 | PyStructSequence_SET_ITEM(v, 8, PyInt_FromLong((long) st.f_flag)); |
| 7150 | PyStructSequence_SET_ITEM(v, 9, PyInt_FromLong((long) st.f_namemax)); |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 7151 | #endif |
| 7152 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7153 | return v; |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 7154 | } |
| 7155 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7156 | PyDoc_STRVAR(posix_fstatvfs__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 7157 | "fstatvfs(fd) -> statvfs result\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7158 | Perform an fstatvfs system call on the given fd."); |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 7159 | |
| 7160 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 7161 | posix_fstatvfs(PyObject *self, PyObject *args) |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 7162 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7163 | int fd, res; |
| 7164 | struct statvfs st; |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 7165 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7166 | if (!PyArg_ParseTuple(args, "i:fstatvfs", &fd)) |
| 7167 | return NULL; |
| 7168 | Py_BEGIN_ALLOW_THREADS |
| 7169 | res = fstatvfs(fd, &st); |
| 7170 | Py_END_ALLOW_THREADS |
| 7171 | if (res != 0) |
| 7172 | return posix_error(); |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 7173 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7174 | return _pystatvfs_fromstructstatvfs(st); |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 7175 | } |
Martin v. Löwis | 5f5d99c | 2006-05-16 07:05:37 +0000 | [diff] [blame] | 7176 | #endif /* HAVE_FSTATVFS && HAVE_SYS_STATVFS_H */ |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 7177 | |
| 7178 | |
Martin v. Löwis | 5f5d99c | 2006-05-16 07:05:37 +0000 | [diff] [blame] | 7179 | #if defined(HAVE_STATVFS) && defined(HAVE_SYS_STATVFS_H) |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 7180 | #include <sys/statvfs.h> |
| 7181 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7182 | PyDoc_STRVAR(posix_statvfs__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 7183 | "statvfs(path) -> statvfs result\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7184 | Perform a statvfs system call on the given path."); |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 7185 | |
| 7186 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 7187 | posix_statvfs(PyObject *self, PyObject *args) |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 7188 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7189 | char *path; |
| 7190 | int res; |
| 7191 | struct statvfs st; |
| 7192 | if (!PyArg_ParseTuple(args, "s:statvfs", &path)) |
| 7193 | return NULL; |
| 7194 | Py_BEGIN_ALLOW_THREADS |
| 7195 | res = statvfs(path, &st); |
| 7196 | Py_END_ALLOW_THREADS |
| 7197 | if (res != 0) |
| 7198 | return posix_error_with_filename(path); |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 7199 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7200 | return _pystatvfs_fromstructstatvfs(st); |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 7201 | } |
| 7202 | #endif /* HAVE_STATVFS */ |
| 7203 | |
| 7204 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7205 | #ifdef HAVE_TEMPNAM |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7206 | PyDoc_STRVAR(posix_tempnam__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 7207 | "tempnam([dir[, prefix]]) -> string\n\n\ |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7208 | Return a unique name for a temporary file.\n\ |
Neal Norwitz | 50d5d4f | 2002-07-30 01:17:43 +0000 | [diff] [blame] | 7209 | The directory and a prefix may be specified as strings; they may be omitted\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7210 | or None if not needed."); |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7211 | |
| 7212 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 7213 | posix_tempnam(PyObject *self, PyObject *args) |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7214 | { |
| 7215 | PyObject *result = NULL; |
| 7216 | char *dir = NULL; |
| 7217 | char *pfx = NULL; |
| 7218 | char *name; |
| 7219 | |
| 7220 | if (!PyArg_ParseTuple(args, "|zz:tempnam", &dir, &pfx)) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7221 | return NULL; |
Skip Montanaro | 95618b5 | 2001-08-18 18:52:10 +0000 | [diff] [blame] | 7222 | |
| 7223 | if (PyErr_Warn(PyExc_RuntimeWarning, |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7224 | "tempnam is a potential security risk to your program") < 0) |
| 7225 | return NULL; |
Skip Montanaro | 95618b5 | 2001-08-18 18:52:10 +0000 | [diff] [blame] | 7226 | |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 7227 | #ifdef MS_WINDOWS |
Fred Drake | 78b71c2 | 2001-07-17 20:37:36 +0000 | [diff] [blame] | 7228 | name = _tempnam(dir, pfx); |
| 7229 | #else |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7230 | name = tempnam(dir, pfx); |
Fred Drake | 78b71c2 | 2001-07-17 20:37:36 +0000 | [diff] [blame] | 7231 | #endif |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7232 | if (name == NULL) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7233 | return PyErr_NoMemory(); |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 7234 | result = PyString_FromString(name); |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7235 | free(name); |
| 7236 | return result; |
| 7237 | } |
Guido van Rossum | d371ff1 | 1999-01-25 16:12:23 +0000 | [diff] [blame] | 7238 | #endif |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7239 | |
| 7240 | |
| 7241 | #ifdef HAVE_TMPFILE |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7242 | PyDoc_STRVAR(posix_tmpfile__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 7243 | "tmpfile() -> file object\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7244 | Create a temporary file with no directory entries."); |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7245 | |
| 7246 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 7247 | posix_tmpfile(PyObject *self, PyObject *noargs) |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7248 | { |
| 7249 | FILE *fp; |
| 7250 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7251 | fp = tmpfile(); |
| 7252 | if (fp == NULL) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7253 | return posix_error(); |
Guido van Rossum | db9198a | 2002-06-10 19:23:22 +0000 | [diff] [blame] | 7254 | return PyFile_FromFile(fp, "<tmpfile>", "w+b", fclose); |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7255 | } |
| 7256 | #endif |
| 7257 | |
| 7258 | |
| 7259 | #ifdef HAVE_TMPNAM |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7260 | PyDoc_STRVAR(posix_tmpnam__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 7261 | "tmpnam() -> string\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7262 | Return a unique name for a temporary file."); |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7263 | |
| 7264 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 7265 | posix_tmpnam(PyObject *self, PyObject *noargs) |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7266 | { |
| 7267 | char buffer[L_tmpnam]; |
| 7268 | char *name; |
| 7269 | |
Skip Montanaro | 95618b5 | 2001-08-18 18:52:10 +0000 | [diff] [blame] | 7270 | if (PyErr_Warn(PyExc_RuntimeWarning, |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7271 | "tmpnam is a potential security risk to your program") < 0) |
| 7272 | return NULL; |
Skip Montanaro | 95618b5 | 2001-08-18 18:52:10 +0000 | [diff] [blame] | 7273 | |
Greg Ward | b48bc17 | 2000-03-01 21:51:56 +0000 | [diff] [blame] | 7274 | #ifdef USE_TMPNAM_R |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7275 | name = tmpnam_r(buffer); |
| 7276 | #else |
| 7277 | name = tmpnam(buffer); |
| 7278 | #endif |
| 7279 | if (name == NULL) { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7280 | PyObject *err = Py_BuildValue("is", 0, |
Greg Ward | b48bc17 | 2000-03-01 21:51:56 +0000 | [diff] [blame] | 7281 | #ifdef USE_TMPNAM_R |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7282 | "unexpected NULL from tmpnam_r" |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7283 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7284 | "unexpected NULL from tmpnam" |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7285 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7286 | ); |
| 7287 | PyErr_SetObject(PyExc_OSError, err); |
| 7288 | Py_XDECREF(err); |
| 7289 | return NULL; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7290 | } |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 7291 | return PyString_FromString(buffer); |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7292 | } |
| 7293 | #endif |
| 7294 | |
| 7295 | |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7296 | /* This is used for fpathconf(), pathconf(), confstr() and sysconf(). |
| 7297 | * It maps strings representing configuration variable names to |
| 7298 | * integer values, allowing those functions to be called with the |
Thomas Wouters | 7e47402 | 2000-07-16 12:04:32 +0000 | [diff] [blame] | 7299 | * magic names instead of polluting the module's namespace with tons of |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 7300 | * rarely-used constants. There are three separate tables that use |
| 7301 | * these definitions. |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 7302 | * |
| 7303 | * This code is always included, even if none of the interfaces that |
| 7304 | * need it are included. The #if hackery needed to avoid it would be |
| 7305 | * sufficiently pervasive that it's not worth the loss of readability. |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7306 | */ |
| 7307 | struct constdef { |
| 7308 | char *name; |
| 7309 | long value; |
| 7310 | }; |
| 7311 | |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 7312 | static int |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 7313 | conv_confname(PyObject *arg, int *valuep, struct constdef *table, |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7314 | size_t tablesize) |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 7315 | { |
| 7316 | if (PyInt_Check(arg)) { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7317 | *valuep = PyInt_AS_LONG(arg); |
| 7318 | return 1; |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 7319 | } |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 7320 | if (PyString_Check(arg)) { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7321 | /* look up the value in the table using a binary search */ |
| 7322 | size_t lo = 0; |
| 7323 | size_t mid; |
| 7324 | size_t hi = tablesize; |
| 7325 | int cmp; |
| 7326 | char *confname = PyString_AS_STRING(arg); |
| 7327 | while (lo < hi) { |
| 7328 | mid = (lo + hi) / 2; |
| 7329 | cmp = strcmp(confname, table[mid].name); |
| 7330 | if (cmp < 0) |
| 7331 | hi = mid; |
| 7332 | else if (cmp > 0) |
| 7333 | lo = mid + 1; |
| 7334 | else { |
| 7335 | *valuep = table[mid].value; |
| 7336 | return 1; |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 7337 | } |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7338 | } |
| 7339 | PyErr_SetString(PyExc_ValueError, "unrecognized configuration name"); |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 7340 | } |
| 7341 | else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7342 | PyErr_SetString(PyExc_TypeError, |
| 7343 | "configuration names must be strings or integers"); |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 7344 | return 0; |
| 7345 | } |
| 7346 | |
| 7347 | |
| 7348 | #if defined(HAVE_FPATHCONF) || defined(HAVE_PATHCONF) |
| 7349 | static struct constdef posix_constants_pathconf[] = { |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7350 | #ifdef _PC_ABI_AIO_XFER_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7351 | {"PC_ABI_AIO_XFER_MAX", _PC_ABI_AIO_XFER_MAX}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7352 | #endif |
| 7353 | #ifdef _PC_ABI_ASYNC_IO |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7354 | {"PC_ABI_ASYNC_IO", _PC_ABI_ASYNC_IO}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7355 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7356 | #ifdef _PC_ASYNC_IO |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7357 | {"PC_ASYNC_IO", _PC_ASYNC_IO}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7358 | #endif |
| 7359 | #ifdef _PC_CHOWN_RESTRICTED |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7360 | {"PC_CHOWN_RESTRICTED", _PC_CHOWN_RESTRICTED}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7361 | #endif |
| 7362 | #ifdef _PC_FILESIZEBITS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7363 | {"PC_FILESIZEBITS", _PC_FILESIZEBITS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7364 | #endif |
| 7365 | #ifdef _PC_LAST |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7366 | {"PC_LAST", _PC_LAST}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7367 | #endif |
| 7368 | #ifdef _PC_LINK_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7369 | {"PC_LINK_MAX", _PC_LINK_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7370 | #endif |
| 7371 | #ifdef _PC_MAX_CANON |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7372 | {"PC_MAX_CANON", _PC_MAX_CANON}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7373 | #endif |
| 7374 | #ifdef _PC_MAX_INPUT |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7375 | {"PC_MAX_INPUT", _PC_MAX_INPUT}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7376 | #endif |
| 7377 | #ifdef _PC_NAME_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7378 | {"PC_NAME_MAX", _PC_NAME_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7379 | #endif |
| 7380 | #ifdef _PC_NO_TRUNC |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7381 | {"PC_NO_TRUNC", _PC_NO_TRUNC}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7382 | #endif |
| 7383 | #ifdef _PC_PATH_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7384 | {"PC_PATH_MAX", _PC_PATH_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7385 | #endif |
| 7386 | #ifdef _PC_PIPE_BUF |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7387 | {"PC_PIPE_BUF", _PC_PIPE_BUF}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7388 | #endif |
| 7389 | #ifdef _PC_PRIO_IO |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7390 | {"PC_PRIO_IO", _PC_PRIO_IO}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7391 | #endif |
| 7392 | #ifdef _PC_SOCK_MAXBUF |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7393 | {"PC_SOCK_MAXBUF", _PC_SOCK_MAXBUF}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7394 | #endif |
| 7395 | #ifdef _PC_SYNC_IO |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7396 | {"PC_SYNC_IO", _PC_SYNC_IO}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7397 | #endif |
| 7398 | #ifdef _PC_VDISABLE |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7399 | {"PC_VDISABLE", _PC_VDISABLE}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7400 | #endif |
| 7401 | }; |
| 7402 | |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7403 | static int |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 7404 | conv_path_confname(PyObject *arg, int *valuep) |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7405 | { |
| 7406 | return conv_confname(arg, valuep, posix_constants_pathconf, |
| 7407 | sizeof(posix_constants_pathconf) |
| 7408 | / sizeof(struct constdef)); |
| 7409 | } |
| 7410 | #endif |
| 7411 | |
| 7412 | #ifdef HAVE_FPATHCONF |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7413 | PyDoc_STRVAR(posix_fpathconf__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 7414 | "fpathconf(fd, name) -> integer\n\n\ |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7415 | Return the configuration limit name for the file descriptor fd.\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7416 | If there is no limit, return -1."); |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7417 | |
| 7418 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 7419 | posix_fpathconf(PyObject *self, PyObject *args) |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7420 | { |
| 7421 | PyObject *result = NULL; |
| 7422 | int name, fd; |
| 7423 | |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 7424 | if (PyArg_ParseTuple(args, "iO&:fpathconf", &fd, |
| 7425 | conv_path_confname, &name)) { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7426 | long limit; |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7427 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7428 | errno = 0; |
| 7429 | limit = fpathconf(fd, name); |
| 7430 | if (limit == -1 && errno != 0) |
| 7431 | posix_error(); |
| 7432 | else |
| 7433 | result = PyInt_FromLong(limit); |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7434 | } |
| 7435 | return result; |
| 7436 | } |
| 7437 | #endif |
| 7438 | |
| 7439 | |
| 7440 | #ifdef HAVE_PATHCONF |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7441 | PyDoc_STRVAR(posix_pathconf__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 7442 | "pathconf(path, name) -> integer\n\n\ |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7443 | Return the configuration limit name for the file or directory path.\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7444 | If there is no limit, return -1."); |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7445 | |
| 7446 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 7447 | posix_pathconf(PyObject *self, PyObject *args) |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7448 | { |
| 7449 | PyObject *result = NULL; |
| 7450 | int name; |
| 7451 | char *path; |
| 7452 | |
| 7453 | if (PyArg_ParseTuple(args, "sO&:pathconf", &path, |
| 7454 | conv_path_confname, &name)) { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7455 | long limit; |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7456 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7457 | errno = 0; |
| 7458 | limit = pathconf(path, name); |
| 7459 | if (limit == -1 && errno != 0) { |
| 7460 | if (errno == EINVAL) |
| 7461 | /* could be a path or name problem */ |
| 7462 | posix_error(); |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7463 | else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7464 | posix_error_with_filename(path); |
| 7465 | } |
| 7466 | else |
| 7467 | result = PyInt_FromLong(limit); |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7468 | } |
| 7469 | return result; |
| 7470 | } |
| 7471 | #endif |
| 7472 | |
| 7473 | #ifdef HAVE_CONFSTR |
| 7474 | static struct constdef posix_constants_confstr[] = { |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7475 | #ifdef _CS_ARCHITECTURE |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7476 | {"CS_ARCHITECTURE", _CS_ARCHITECTURE}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7477 | #endif |
| 7478 | #ifdef _CS_HOSTNAME |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7479 | {"CS_HOSTNAME", _CS_HOSTNAME}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7480 | #endif |
| 7481 | #ifdef _CS_HW_PROVIDER |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7482 | {"CS_HW_PROVIDER", _CS_HW_PROVIDER}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7483 | #endif |
| 7484 | #ifdef _CS_HW_SERIAL |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7485 | {"CS_HW_SERIAL", _CS_HW_SERIAL}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7486 | #endif |
| 7487 | #ifdef _CS_INITTAB_NAME |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7488 | {"CS_INITTAB_NAME", _CS_INITTAB_NAME}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7489 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7490 | #ifdef _CS_LFS64_CFLAGS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7491 | {"CS_LFS64_CFLAGS", _CS_LFS64_CFLAGS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7492 | #endif |
| 7493 | #ifdef _CS_LFS64_LDFLAGS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7494 | {"CS_LFS64_LDFLAGS", _CS_LFS64_LDFLAGS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7495 | #endif |
| 7496 | #ifdef _CS_LFS64_LIBS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7497 | {"CS_LFS64_LIBS", _CS_LFS64_LIBS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7498 | #endif |
| 7499 | #ifdef _CS_LFS64_LINTFLAGS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7500 | {"CS_LFS64_LINTFLAGS", _CS_LFS64_LINTFLAGS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7501 | #endif |
| 7502 | #ifdef _CS_LFS_CFLAGS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7503 | {"CS_LFS_CFLAGS", _CS_LFS_CFLAGS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7504 | #endif |
| 7505 | #ifdef _CS_LFS_LDFLAGS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7506 | {"CS_LFS_LDFLAGS", _CS_LFS_LDFLAGS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7507 | #endif |
| 7508 | #ifdef _CS_LFS_LIBS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7509 | {"CS_LFS_LIBS", _CS_LFS_LIBS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7510 | #endif |
| 7511 | #ifdef _CS_LFS_LINTFLAGS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7512 | {"CS_LFS_LINTFLAGS", _CS_LFS_LINTFLAGS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7513 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7514 | #ifdef _CS_MACHINE |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7515 | {"CS_MACHINE", _CS_MACHINE}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7516 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7517 | #ifdef _CS_PATH |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7518 | {"CS_PATH", _CS_PATH}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7519 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7520 | #ifdef _CS_RELEASE |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7521 | {"CS_RELEASE", _CS_RELEASE}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7522 | #endif |
| 7523 | #ifdef _CS_SRPC_DOMAIN |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7524 | {"CS_SRPC_DOMAIN", _CS_SRPC_DOMAIN}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7525 | #endif |
| 7526 | #ifdef _CS_SYSNAME |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7527 | {"CS_SYSNAME", _CS_SYSNAME}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7528 | #endif |
| 7529 | #ifdef _CS_VERSION |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7530 | {"CS_VERSION", _CS_VERSION}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7531 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7532 | #ifdef _CS_XBS5_ILP32_OFF32_CFLAGS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7533 | {"CS_XBS5_ILP32_OFF32_CFLAGS", _CS_XBS5_ILP32_OFF32_CFLAGS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7534 | #endif |
| 7535 | #ifdef _CS_XBS5_ILP32_OFF32_LDFLAGS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7536 | {"CS_XBS5_ILP32_OFF32_LDFLAGS", _CS_XBS5_ILP32_OFF32_LDFLAGS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7537 | #endif |
| 7538 | #ifdef _CS_XBS5_ILP32_OFF32_LIBS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7539 | {"CS_XBS5_ILP32_OFF32_LIBS", _CS_XBS5_ILP32_OFF32_LIBS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7540 | #endif |
| 7541 | #ifdef _CS_XBS5_ILP32_OFF32_LINTFLAGS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7542 | {"CS_XBS5_ILP32_OFF32_LINTFLAGS", _CS_XBS5_ILP32_OFF32_LINTFLAGS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7543 | #endif |
| 7544 | #ifdef _CS_XBS5_ILP32_OFFBIG_CFLAGS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7545 | {"CS_XBS5_ILP32_OFFBIG_CFLAGS", _CS_XBS5_ILP32_OFFBIG_CFLAGS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7546 | #endif |
| 7547 | #ifdef _CS_XBS5_ILP32_OFFBIG_LDFLAGS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7548 | {"CS_XBS5_ILP32_OFFBIG_LDFLAGS", _CS_XBS5_ILP32_OFFBIG_LDFLAGS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7549 | #endif |
| 7550 | #ifdef _CS_XBS5_ILP32_OFFBIG_LIBS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7551 | {"CS_XBS5_ILP32_OFFBIG_LIBS", _CS_XBS5_ILP32_OFFBIG_LIBS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7552 | #endif |
| 7553 | #ifdef _CS_XBS5_ILP32_OFFBIG_LINTFLAGS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7554 | {"CS_XBS5_ILP32_OFFBIG_LINTFLAGS", _CS_XBS5_ILP32_OFFBIG_LINTFLAGS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7555 | #endif |
| 7556 | #ifdef _CS_XBS5_LP64_OFF64_CFLAGS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7557 | {"CS_XBS5_LP64_OFF64_CFLAGS", _CS_XBS5_LP64_OFF64_CFLAGS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7558 | #endif |
| 7559 | #ifdef _CS_XBS5_LP64_OFF64_LDFLAGS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7560 | {"CS_XBS5_LP64_OFF64_LDFLAGS", _CS_XBS5_LP64_OFF64_LDFLAGS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7561 | #endif |
| 7562 | #ifdef _CS_XBS5_LP64_OFF64_LIBS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7563 | {"CS_XBS5_LP64_OFF64_LIBS", _CS_XBS5_LP64_OFF64_LIBS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7564 | #endif |
| 7565 | #ifdef _CS_XBS5_LP64_OFF64_LINTFLAGS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7566 | {"CS_XBS5_LP64_OFF64_LINTFLAGS", _CS_XBS5_LP64_OFF64_LINTFLAGS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7567 | #endif |
| 7568 | #ifdef _CS_XBS5_LPBIG_OFFBIG_CFLAGS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7569 | {"CS_XBS5_LPBIG_OFFBIG_CFLAGS", _CS_XBS5_LPBIG_OFFBIG_CFLAGS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7570 | #endif |
| 7571 | #ifdef _CS_XBS5_LPBIG_OFFBIG_LDFLAGS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7572 | {"CS_XBS5_LPBIG_OFFBIG_LDFLAGS", _CS_XBS5_LPBIG_OFFBIG_LDFLAGS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7573 | #endif |
| 7574 | #ifdef _CS_XBS5_LPBIG_OFFBIG_LIBS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7575 | {"CS_XBS5_LPBIG_OFFBIG_LIBS", _CS_XBS5_LPBIG_OFFBIG_LIBS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7576 | #endif |
| 7577 | #ifdef _CS_XBS5_LPBIG_OFFBIG_LINTFLAGS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7578 | {"CS_XBS5_LPBIG_OFFBIG_LINTFLAGS", _CS_XBS5_LPBIG_OFFBIG_LINTFLAGS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7579 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7580 | #ifdef _MIPS_CS_AVAIL_PROCESSORS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7581 | {"MIPS_CS_AVAIL_PROCESSORS", _MIPS_CS_AVAIL_PROCESSORS}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7582 | #endif |
| 7583 | #ifdef _MIPS_CS_BASE |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7584 | {"MIPS_CS_BASE", _MIPS_CS_BASE}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7585 | #endif |
| 7586 | #ifdef _MIPS_CS_HOSTID |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7587 | {"MIPS_CS_HOSTID", _MIPS_CS_HOSTID}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7588 | #endif |
| 7589 | #ifdef _MIPS_CS_HW_NAME |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7590 | {"MIPS_CS_HW_NAME", _MIPS_CS_HW_NAME}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7591 | #endif |
| 7592 | #ifdef _MIPS_CS_NUM_PROCESSORS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7593 | {"MIPS_CS_NUM_PROCESSORS", _MIPS_CS_NUM_PROCESSORS}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7594 | #endif |
| 7595 | #ifdef _MIPS_CS_OSREL_MAJ |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7596 | {"MIPS_CS_OSREL_MAJ", _MIPS_CS_OSREL_MAJ}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7597 | #endif |
| 7598 | #ifdef _MIPS_CS_OSREL_MIN |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7599 | {"MIPS_CS_OSREL_MIN", _MIPS_CS_OSREL_MIN}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7600 | #endif |
| 7601 | #ifdef _MIPS_CS_OSREL_PATCH |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7602 | {"MIPS_CS_OSREL_PATCH", _MIPS_CS_OSREL_PATCH}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7603 | #endif |
| 7604 | #ifdef _MIPS_CS_OS_NAME |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7605 | {"MIPS_CS_OS_NAME", _MIPS_CS_OS_NAME}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7606 | #endif |
| 7607 | #ifdef _MIPS_CS_OS_PROVIDER |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7608 | {"MIPS_CS_OS_PROVIDER", _MIPS_CS_OS_PROVIDER}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7609 | #endif |
| 7610 | #ifdef _MIPS_CS_PROCESSORS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7611 | {"MIPS_CS_PROCESSORS", _MIPS_CS_PROCESSORS}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7612 | #endif |
| 7613 | #ifdef _MIPS_CS_SERIAL |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7614 | {"MIPS_CS_SERIAL", _MIPS_CS_SERIAL}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7615 | #endif |
| 7616 | #ifdef _MIPS_CS_VENDOR |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7617 | {"MIPS_CS_VENDOR", _MIPS_CS_VENDOR}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7618 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7619 | }; |
| 7620 | |
| 7621 | static int |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 7622 | conv_confstr_confname(PyObject *arg, int *valuep) |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7623 | { |
| 7624 | return conv_confname(arg, valuep, posix_constants_confstr, |
| 7625 | sizeof(posix_constants_confstr) |
| 7626 | / sizeof(struct constdef)); |
| 7627 | } |
| 7628 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7629 | PyDoc_STRVAR(posix_confstr__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 7630 | "confstr(name) -> string\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7631 | Return a string-valued system configuration variable."); |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7632 | |
| 7633 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 7634 | posix_confstr(PyObject *self, PyObject *args) |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7635 | { |
| 7636 | PyObject *result = NULL; |
| 7637 | int name; |
Neal Norwitz | 449b24e | 2006-04-20 06:56:05 +0000 | [diff] [blame] | 7638 | char buffer[256]; |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7639 | |
| 7640 | if (PyArg_ParseTuple(args, "O&:confstr", conv_confstr_confname, &name)) { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7641 | int len; |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7642 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7643 | errno = 0; |
| 7644 | len = confstr(name, buffer, sizeof(buffer)); |
| 7645 | if (len == 0) { |
| 7646 | if (errno) { |
| 7647 | posix_error(); |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7648 | } |
| 7649 | else { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7650 | result = Py_None; |
| 7651 | Py_INCREF(Py_None); |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7652 | } |
| 7653 | } |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7654 | else { |
| 7655 | if ((unsigned int)len >= sizeof(buffer)) { |
| 7656 | result = PyString_FromStringAndSize(NULL, len-1); |
| 7657 | if (result != NULL) |
| 7658 | confstr(name, PyString_AS_STRING(result), len); |
| 7659 | } |
| 7660 | else |
| 7661 | result = PyString_FromStringAndSize(buffer, len-1); |
| 7662 | } |
| 7663 | } |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7664 | return result; |
| 7665 | } |
| 7666 | #endif |
| 7667 | |
| 7668 | |
| 7669 | #ifdef HAVE_SYSCONF |
| 7670 | static struct constdef posix_constants_sysconf[] = { |
| 7671 | #ifdef _SC_2_CHAR_TERM |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7672 | {"SC_2_CHAR_TERM", _SC_2_CHAR_TERM}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7673 | #endif |
| 7674 | #ifdef _SC_2_C_BIND |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7675 | {"SC_2_C_BIND", _SC_2_C_BIND}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7676 | #endif |
| 7677 | #ifdef _SC_2_C_DEV |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7678 | {"SC_2_C_DEV", _SC_2_C_DEV}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7679 | #endif |
| 7680 | #ifdef _SC_2_C_VERSION |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7681 | {"SC_2_C_VERSION", _SC_2_C_VERSION}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7682 | #endif |
| 7683 | #ifdef _SC_2_FORT_DEV |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7684 | {"SC_2_FORT_DEV", _SC_2_FORT_DEV}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7685 | #endif |
| 7686 | #ifdef _SC_2_FORT_RUN |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7687 | {"SC_2_FORT_RUN", _SC_2_FORT_RUN}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7688 | #endif |
| 7689 | #ifdef _SC_2_LOCALEDEF |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7690 | {"SC_2_LOCALEDEF", _SC_2_LOCALEDEF}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7691 | #endif |
| 7692 | #ifdef _SC_2_SW_DEV |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7693 | {"SC_2_SW_DEV", _SC_2_SW_DEV}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7694 | #endif |
| 7695 | #ifdef _SC_2_UPE |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7696 | {"SC_2_UPE", _SC_2_UPE}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7697 | #endif |
| 7698 | #ifdef _SC_2_VERSION |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7699 | {"SC_2_VERSION", _SC_2_VERSION}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7700 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7701 | #ifdef _SC_ABI_ASYNCHRONOUS_IO |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7702 | {"SC_ABI_ASYNCHRONOUS_IO", _SC_ABI_ASYNCHRONOUS_IO}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7703 | #endif |
| 7704 | #ifdef _SC_ACL |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7705 | {"SC_ACL", _SC_ACL}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7706 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7707 | #ifdef _SC_AIO_LISTIO_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7708 | {"SC_AIO_LISTIO_MAX", _SC_AIO_LISTIO_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7709 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7710 | #ifdef _SC_AIO_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7711 | {"SC_AIO_MAX", _SC_AIO_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7712 | #endif |
| 7713 | #ifdef _SC_AIO_PRIO_DELTA_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7714 | {"SC_AIO_PRIO_DELTA_MAX", _SC_AIO_PRIO_DELTA_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7715 | #endif |
| 7716 | #ifdef _SC_ARG_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7717 | {"SC_ARG_MAX", _SC_ARG_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7718 | #endif |
| 7719 | #ifdef _SC_ASYNCHRONOUS_IO |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7720 | {"SC_ASYNCHRONOUS_IO", _SC_ASYNCHRONOUS_IO}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7721 | #endif |
| 7722 | #ifdef _SC_ATEXIT_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7723 | {"SC_ATEXIT_MAX", _SC_ATEXIT_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7724 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7725 | #ifdef _SC_AUDIT |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7726 | {"SC_AUDIT", _SC_AUDIT}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7727 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7728 | #ifdef _SC_AVPHYS_PAGES |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7729 | {"SC_AVPHYS_PAGES", _SC_AVPHYS_PAGES}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7730 | #endif |
| 7731 | #ifdef _SC_BC_BASE_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7732 | {"SC_BC_BASE_MAX", _SC_BC_BASE_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7733 | #endif |
| 7734 | #ifdef _SC_BC_DIM_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7735 | {"SC_BC_DIM_MAX", _SC_BC_DIM_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7736 | #endif |
| 7737 | #ifdef _SC_BC_SCALE_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7738 | {"SC_BC_SCALE_MAX", _SC_BC_SCALE_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7739 | #endif |
| 7740 | #ifdef _SC_BC_STRING_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7741 | {"SC_BC_STRING_MAX", _SC_BC_STRING_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7742 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7743 | #ifdef _SC_CAP |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7744 | {"SC_CAP", _SC_CAP}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7745 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7746 | #ifdef _SC_CHARCLASS_NAME_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7747 | {"SC_CHARCLASS_NAME_MAX", _SC_CHARCLASS_NAME_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7748 | #endif |
| 7749 | #ifdef _SC_CHAR_BIT |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7750 | {"SC_CHAR_BIT", _SC_CHAR_BIT}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7751 | #endif |
| 7752 | #ifdef _SC_CHAR_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7753 | {"SC_CHAR_MAX", _SC_CHAR_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7754 | #endif |
| 7755 | #ifdef _SC_CHAR_MIN |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7756 | {"SC_CHAR_MIN", _SC_CHAR_MIN}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7757 | #endif |
| 7758 | #ifdef _SC_CHILD_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7759 | {"SC_CHILD_MAX", _SC_CHILD_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7760 | #endif |
| 7761 | #ifdef _SC_CLK_TCK |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7762 | {"SC_CLK_TCK", _SC_CLK_TCK}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7763 | #endif |
| 7764 | #ifdef _SC_COHER_BLKSZ |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7765 | {"SC_COHER_BLKSZ", _SC_COHER_BLKSZ}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7766 | #endif |
| 7767 | #ifdef _SC_COLL_WEIGHTS_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7768 | {"SC_COLL_WEIGHTS_MAX", _SC_COLL_WEIGHTS_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7769 | #endif |
| 7770 | #ifdef _SC_DCACHE_ASSOC |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7771 | {"SC_DCACHE_ASSOC", _SC_DCACHE_ASSOC}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7772 | #endif |
| 7773 | #ifdef _SC_DCACHE_BLKSZ |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7774 | {"SC_DCACHE_BLKSZ", _SC_DCACHE_BLKSZ}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7775 | #endif |
| 7776 | #ifdef _SC_DCACHE_LINESZ |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7777 | {"SC_DCACHE_LINESZ", _SC_DCACHE_LINESZ}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7778 | #endif |
| 7779 | #ifdef _SC_DCACHE_SZ |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7780 | {"SC_DCACHE_SZ", _SC_DCACHE_SZ}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7781 | #endif |
| 7782 | #ifdef _SC_DCACHE_TBLKSZ |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7783 | {"SC_DCACHE_TBLKSZ", _SC_DCACHE_TBLKSZ}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7784 | #endif |
| 7785 | #ifdef _SC_DELAYTIMER_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7786 | {"SC_DELAYTIMER_MAX", _SC_DELAYTIMER_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7787 | #endif |
| 7788 | #ifdef _SC_EQUIV_CLASS_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7789 | {"SC_EQUIV_CLASS_MAX", _SC_EQUIV_CLASS_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7790 | #endif |
| 7791 | #ifdef _SC_EXPR_NEST_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7792 | {"SC_EXPR_NEST_MAX", _SC_EXPR_NEST_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7793 | #endif |
| 7794 | #ifdef _SC_FSYNC |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7795 | {"SC_FSYNC", _SC_FSYNC}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7796 | #endif |
| 7797 | #ifdef _SC_GETGR_R_SIZE_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7798 | {"SC_GETGR_R_SIZE_MAX", _SC_GETGR_R_SIZE_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7799 | #endif |
| 7800 | #ifdef _SC_GETPW_R_SIZE_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7801 | {"SC_GETPW_R_SIZE_MAX", _SC_GETPW_R_SIZE_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7802 | #endif |
| 7803 | #ifdef _SC_ICACHE_ASSOC |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7804 | {"SC_ICACHE_ASSOC", _SC_ICACHE_ASSOC}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7805 | #endif |
| 7806 | #ifdef _SC_ICACHE_BLKSZ |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7807 | {"SC_ICACHE_BLKSZ", _SC_ICACHE_BLKSZ}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7808 | #endif |
| 7809 | #ifdef _SC_ICACHE_LINESZ |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7810 | {"SC_ICACHE_LINESZ", _SC_ICACHE_LINESZ}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7811 | #endif |
| 7812 | #ifdef _SC_ICACHE_SZ |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7813 | {"SC_ICACHE_SZ", _SC_ICACHE_SZ}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7814 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7815 | #ifdef _SC_INF |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7816 | {"SC_INF", _SC_INF}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7817 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7818 | #ifdef _SC_INT_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7819 | {"SC_INT_MAX", _SC_INT_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7820 | #endif |
| 7821 | #ifdef _SC_INT_MIN |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7822 | {"SC_INT_MIN", _SC_INT_MIN}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7823 | #endif |
| 7824 | #ifdef _SC_IOV_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7825 | {"SC_IOV_MAX", _SC_IOV_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7826 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7827 | #ifdef _SC_IP_SECOPTS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7828 | {"SC_IP_SECOPTS", _SC_IP_SECOPTS}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7829 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7830 | #ifdef _SC_JOB_CONTROL |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7831 | {"SC_JOB_CONTROL", _SC_JOB_CONTROL}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7832 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7833 | #ifdef _SC_KERN_POINTERS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7834 | {"SC_KERN_POINTERS", _SC_KERN_POINTERS}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7835 | #endif |
| 7836 | #ifdef _SC_KERN_SIM |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7837 | {"SC_KERN_SIM", _SC_KERN_SIM}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7838 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7839 | #ifdef _SC_LINE_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7840 | {"SC_LINE_MAX", _SC_LINE_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7841 | #endif |
| 7842 | #ifdef _SC_LOGIN_NAME_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7843 | {"SC_LOGIN_NAME_MAX", _SC_LOGIN_NAME_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7844 | #endif |
| 7845 | #ifdef _SC_LOGNAME_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7846 | {"SC_LOGNAME_MAX", _SC_LOGNAME_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7847 | #endif |
| 7848 | #ifdef _SC_LONG_BIT |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7849 | {"SC_LONG_BIT", _SC_LONG_BIT}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7850 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7851 | #ifdef _SC_MAC |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7852 | {"SC_MAC", _SC_MAC}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7853 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7854 | #ifdef _SC_MAPPED_FILES |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7855 | {"SC_MAPPED_FILES", _SC_MAPPED_FILES}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7856 | #endif |
| 7857 | #ifdef _SC_MAXPID |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7858 | {"SC_MAXPID", _SC_MAXPID}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7859 | #endif |
| 7860 | #ifdef _SC_MB_LEN_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7861 | {"SC_MB_LEN_MAX", _SC_MB_LEN_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7862 | #endif |
| 7863 | #ifdef _SC_MEMLOCK |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7864 | {"SC_MEMLOCK", _SC_MEMLOCK}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7865 | #endif |
| 7866 | #ifdef _SC_MEMLOCK_RANGE |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7867 | {"SC_MEMLOCK_RANGE", _SC_MEMLOCK_RANGE}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7868 | #endif |
| 7869 | #ifdef _SC_MEMORY_PROTECTION |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7870 | {"SC_MEMORY_PROTECTION", _SC_MEMORY_PROTECTION}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7871 | #endif |
| 7872 | #ifdef _SC_MESSAGE_PASSING |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7873 | {"SC_MESSAGE_PASSING", _SC_MESSAGE_PASSING}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7874 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7875 | #ifdef _SC_MMAP_FIXED_ALIGNMENT |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7876 | {"SC_MMAP_FIXED_ALIGNMENT", _SC_MMAP_FIXED_ALIGNMENT}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7877 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7878 | #ifdef _SC_MQ_OPEN_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7879 | {"SC_MQ_OPEN_MAX", _SC_MQ_OPEN_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7880 | #endif |
| 7881 | #ifdef _SC_MQ_PRIO_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7882 | {"SC_MQ_PRIO_MAX", _SC_MQ_PRIO_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7883 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7884 | #ifdef _SC_NACLS_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7885 | {"SC_NACLS_MAX", _SC_NACLS_MAX}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7886 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7887 | #ifdef _SC_NGROUPS_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7888 | {"SC_NGROUPS_MAX", _SC_NGROUPS_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7889 | #endif |
| 7890 | #ifdef _SC_NL_ARGMAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7891 | {"SC_NL_ARGMAX", _SC_NL_ARGMAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7892 | #endif |
| 7893 | #ifdef _SC_NL_LANGMAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7894 | {"SC_NL_LANGMAX", _SC_NL_LANGMAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7895 | #endif |
| 7896 | #ifdef _SC_NL_MSGMAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7897 | {"SC_NL_MSGMAX", _SC_NL_MSGMAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7898 | #endif |
| 7899 | #ifdef _SC_NL_NMAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7900 | {"SC_NL_NMAX", _SC_NL_NMAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7901 | #endif |
| 7902 | #ifdef _SC_NL_SETMAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7903 | {"SC_NL_SETMAX", _SC_NL_SETMAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7904 | #endif |
| 7905 | #ifdef _SC_NL_TEXTMAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7906 | {"SC_NL_TEXTMAX", _SC_NL_TEXTMAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7907 | #endif |
| 7908 | #ifdef _SC_NPROCESSORS_CONF |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7909 | {"SC_NPROCESSORS_CONF", _SC_NPROCESSORS_CONF}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7910 | #endif |
| 7911 | #ifdef _SC_NPROCESSORS_ONLN |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7912 | {"SC_NPROCESSORS_ONLN", _SC_NPROCESSORS_ONLN}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7913 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7914 | #ifdef _SC_NPROC_CONF |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7915 | {"SC_NPROC_CONF", _SC_NPROC_CONF}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7916 | #endif |
| 7917 | #ifdef _SC_NPROC_ONLN |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7918 | {"SC_NPROC_ONLN", _SC_NPROC_ONLN}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7919 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7920 | #ifdef _SC_NZERO |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7921 | {"SC_NZERO", _SC_NZERO}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7922 | #endif |
| 7923 | #ifdef _SC_OPEN_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7924 | {"SC_OPEN_MAX", _SC_OPEN_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7925 | #endif |
| 7926 | #ifdef _SC_PAGESIZE |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7927 | {"SC_PAGESIZE", _SC_PAGESIZE}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7928 | #endif |
| 7929 | #ifdef _SC_PAGE_SIZE |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7930 | {"SC_PAGE_SIZE", _SC_PAGE_SIZE}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7931 | #endif |
| 7932 | #ifdef _SC_PASS_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7933 | {"SC_PASS_MAX", _SC_PASS_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7934 | #endif |
| 7935 | #ifdef _SC_PHYS_PAGES |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7936 | {"SC_PHYS_PAGES", _SC_PHYS_PAGES}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7937 | #endif |
| 7938 | #ifdef _SC_PII |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7939 | {"SC_PII", _SC_PII}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7940 | #endif |
| 7941 | #ifdef _SC_PII_INTERNET |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7942 | {"SC_PII_INTERNET", _SC_PII_INTERNET}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7943 | #endif |
| 7944 | #ifdef _SC_PII_INTERNET_DGRAM |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7945 | {"SC_PII_INTERNET_DGRAM", _SC_PII_INTERNET_DGRAM}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7946 | #endif |
| 7947 | #ifdef _SC_PII_INTERNET_STREAM |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7948 | {"SC_PII_INTERNET_STREAM", _SC_PII_INTERNET_STREAM}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7949 | #endif |
| 7950 | #ifdef _SC_PII_OSI |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7951 | {"SC_PII_OSI", _SC_PII_OSI}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7952 | #endif |
| 7953 | #ifdef _SC_PII_OSI_CLTS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7954 | {"SC_PII_OSI_CLTS", _SC_PII_OSI_CLTS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7955 | #endif |
| 7956 | #ifdef _SC_PII_OSI_COTS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7957 | {"SC_PII_OSI_COTS", _SC_PII_OSI_COTS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7958 | #endif |
| 7959 | #ifdef _SC_PII_OSI_M |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7960 | {"SC_PII_OSI_M", _SC_PII_OSI_M}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7961 | #endif |
| 7962 | #ifdef _SC_PII_SOCKET |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7963 | {"SC_PII_SOCKET", _SC_PII_SOCKET}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7964 | #endif |
| 7965 | #ifdef _SC_PII_XTI |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7966 | {"SC_PII_XTI", _SC_PII_XTI}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7967 | #endif |
| 7968 | #ifdef _SC_POLL |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7969 | {"SC_POLL", _SC_POLL}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7970 | #endif |
| 7971 | #ifdef _SC_PRIORITIZED_IO |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7972 | {"SC_PRIORITIZED_IO", _SC_PRIORITIZED_IO}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7973 | #endif |
| 7974 | #ifdef _SC_PRIORITY_SCHEDULING |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7975 | {"SC_PRIORITY_SCHEDULING", _SC_PRIORITY_SCHEDULING}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7976 | #endif |
| 7977 | #ifdef _SC_REALTIME_SIGNALS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7978 | {"SC_REALTIME_SIGNALS", _SC_REALTIME_SIGNALS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7979 | #endif |
| 7980 | #ifdef _SC_RE_DUP_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7981 | {"SC_RE_DUP_MAX", _SC_RE_DUP_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7982 | #endif |
| 7983 | #ifdef _SC_RTSIG_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7984 | {"SC_RTSIG_MAX", _SC_RTSIG_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7985 | #endif |
| 7986 | #ifdef _SC_SAVED_IDS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7987 | {"SC_SAVED_IDS", _SC_SAVED_IDS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7988 | #endif |
| 7989 | #ifdef _SC_SCHAR_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7990 | {"SC_SCHAR_MAX", _SC_SCHAR_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7991 | #endif |
| 7992 | #ifdef _SC_SCHAR_MIN |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7993 | {"SC_SCHAR_MIN", _SC_SCHAR_MIN}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7994 | #endif |
| 7995 | #ifdef _SC_SELECT |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7996 | {"SC_SELECT", _SC_SELECT}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7997 | #endif |
| 7998 | #ifdef _SC_SEMAPHORES |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 7999 | {"SC_SEMAPHORES", _SC_SEMAPHORES}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8000 | #endif |
| 8001 | #ifdef _SC_SEM_NSEMS_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8002 | {"SC_SEM_NSEMS_MAX", _SC_SEM_NSEMS_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8003 | #endif |
| 8004 | #ifdef _SC_SEM_VALUE_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8005 | {"SC_SEM_VALUE_MAX", _SC_SEM_VALUE_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8006 | #endif |
| 8007 | #ifdef _SC_SHARED_MEMORY_OBJECTS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8008 | {"SC_SHARED_MEMORY_OBJECTS", _SC_SHARED_MEMORY_OBJECTS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8009 | #endif |
| 8010 | #ifdef _SC_SHRT_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8011 | {"SC_SHRT_MAX", _SC_SHRT_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8012 | #endif |
| 8013 | #ifdef _SC_SHRT_MIN |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8014 | {"SC_SHRT_MIN", _SC_SHRT_MIN}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8015 | #endif |
| 8016 | #ifdef _SC_SIGQUEUE_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8017 | {"SC_SIGQUEUE_MAX", _SC_SIGQUEUE_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8018 | #endif |
| 8019 | #ifdef _SC_SIGRT_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8020 | {"SC_SIGRT_MAX", _SC_SIGRT_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8021 | #endif |
| 8022 | #ifdef _SC_SIGRT_MIN |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8023 | {"SC_SIGRT_MIN", _SC_SIGRT_MIN}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8024 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 8025 | #ifdef _SC_SOFTPOWER |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8026 | {"SC_SOFTPOWER", _SC_SOFTPOWER}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 8027 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8028 | #ifdef _SC_SPLIT_CACHE |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8029 | {"SC_SPLIT_CACHE", _SC_SPLIT_CACHE}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8030 | #endif |
| 8031 | #ifdef _SC_SSIZE_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8032 | {"SC_SSIZE_MAX", _SC_SSIZE_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8033 | #endif |
| 8034 | #ifdef _SC_STACK_PROT |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8035 | {"SC_STACK_PROT", _SC_STACK_PROT}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8036 | #endif |
| 8037 | #ifdef _SC_STREAM_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8038 | {"SC_STREAM_MAX", _SC_STREAM_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8039 | #endif |
| 8040 | #ifdef _SC_SYNCHRONIZED_IO |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8041 | {"SC_SYNCHRONIZED_IO", _SC_SYNCHRONIZED_IO}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8042 | #endif |
| 8043 | #ifdef _SC_THREADS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8044 | {"SC_THREADS", _SC_THREADS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8045 | #endif |
| 8046 | #ifdef _SC_THREAD_ATTR_STACKADDR |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8047 | {"SC_THREAD_ATTR_STACKADDR", _SC_THREAD_ATTR_STACKADDR}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8048 | #endif |
| 8049 | #ifdef _SC_THREAD_ATTR_STACKSIZE |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8050 | {"SC_THREAD_ATTR_STACKSIZE", _SC_THREAD_ATTR_STACKSIZE}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8051 | #endif |
| 8052 | #ifdef _SC_THREAD_DESTRUCTOR_ITERATIONS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8053 | {"SC_THREAD_DESTRUCTOR_ITERATIONS", _SC_THREAD_DESTRUCTOR_ITERATIONS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8054 | #endif |
| 8055 | #ifdef _SC_THREAD_KEYS_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8056 | {"SC_THREAD_KEYS_MAX", _SC_THREAD_KEYS_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8057 | #endif |
| 8058 | #ifdef _SC_THREAD_PRIORITY_SCHEDULING |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8059 | {"SC_THREAD_PRIORITY_SCHEDULING", _SC_THREAD_PRIORITY_SCHEDULING}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8060 | #endif |
| 8061 | #ifdef _SC_THREAD_PRIO_INHERIT |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8062 | {"SC_THREAD_PRIO_INHERIT", _SC_THREAD_PRIO_INHERIT}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8063 | #endif |
| 8064 | #ifdef _SC_THREAD_PRIO_PROTECT |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8065 | {"SC_THREAD_PRIO_PROTECT", _SC_THREAD_PRIO_PROTECT}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8066 | #endif |
| 8067 | #ifdef _SC_THREAD_PROCESS_SHARED |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8068 | {"SC_THREAD_PROCESS_SHARED", _SC_THREAD_PROCESS_SHARED}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8069 | #endif |
| 8070 | #ifdef _SC_THREAD_SAFE_FUNCTIONS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8071 | {"SC_THREAD_SAFE_FUNCTIONS", _SC_THREAD_SAFE_FUNCTIONS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8072 | #endif |
| 8073 | #ifdef _SC_THREAD_STACK_MIN |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8074 | {"SC_THREAD_STACK_MIN", _SC_THREAD_STACK_MIN}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8075 | #endif |
| 8076 | #ifdef _SC_THREAD_THREADS_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8077 | {"SC_THREAD_THREADS_MAX", _SC_THREAD_THREADS_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8078 | #endif |
| 8079 | #ifdef _SC_TIMERS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8080 | {"SC_TIMERS", _SC_TIMERS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8081 | #endif |
| 8082 | #ifdef _SC_TIMER_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8083 | {"SC_TIMER_MAX", _SC_TIMER_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8084 | #endif |
| 8085 | #ifdef _SC_TTY_NAME_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8086 | {"SC_TTY_NAME_MAX", _SC_TTY_NAME_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8087 | #endif |
| 8088 | #ifdef _SC_TZNAME_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8089 | {"SC_TZNAME_MAX", _SC_TZNAME_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8090 | #endif |
| 8091 | #ifdef _SC_T_IOV_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8092 | {"SC_T_IOV_MAX", _SC_T_IOV_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8093 | #endif |
| 8094 | #ifdef _SC_UCHAR_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8095 | {"SC_UCHAR_MAX", _SC_UCHAR_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8096 | #endif |
| 8097 | #ifdef _SC_UINT_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8098 | {"SC_UINT_MAX", _SC_UINT_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8099 | #endif |
| 8100 | #ifdef _SC_UIO_MAXIOV |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8101 | {"SC_UIO_MAXIOV", _SC_UIO_MAXIOV}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8102 | #endif |
| 8103 | #ifdef _SC_ULONG_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8104 | {"SC_ULONG_MAX", _SC_ULONG_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8105 | #endif |
| 8106 | #ifdef _SC_USHRT_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8107 | {"SC_USHRT_MAX", _SC_USHRT_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8108 | #endif |
| 8109 | #ifdef _SC_VERSION |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8110 | {"SC_VERSION", _SC_VERSION}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8111 | #endif |
| 8112 | #ifdef _SC_WORD_BIT |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8113 | {"SC_WORD_BIT", _SC_WORD_BIT}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8114 | #endif |
| 8115 | #ifdef _SC_XBS5_ILP32_OFF32 |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8116 | {"SC_XBS5_ILP32_OFF32", _SC_XBS5_ILP32_OFF32}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8117 | #endif |
| 8118 | #ifdef _SC_XBS5_ILP32_OFFBIG |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8119 | {"SC_XBS5_ILP32_OFFBIG", _SC_XBS5_ILP32_OFFBIG}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8120 | #endif |
| 8121 | #ifdef _SC_XBS5_LP64_OFF64 |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8122 | {"SC_XBS5_LP64_OFF64", _SC_XBS5_LP64_OFF64}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8123 | #endif |
| 8124 | #ifdef _SC_XBS5_LPBIG_OFFBIG |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8125 | {"SC_XBS5_LPBIG_OFFBIG", _SC_XBS5_LPBIG_OFFBIG}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8126 | #endif |
| 8127 | #ifdef _SC_XOPEN_CRYPT |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8128 | {"SC_XOPEN_CRYPT", _SC_XOPEN_CRYPT}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8129 | #endif |
| 8130 | #ifdef _SC_XOPEN_ENH_I18N |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8131 | {"SC_XOPEN_ENH_I18N", _SC_XOPEN_ENH_I18N}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8132 | #endif |
| 8133 | #ifdef _SC_XOPEN_LEGACY |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8134 | {"SC_XOPEN_LEGACY", _SC_XOPEN_LEGACY}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8135 | #endif |
| 8136 | #ifdef _SC_XOPEN_REALTIME |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8137 | {"SC_XOPEN_REALTIME", _SC_XOPEN_REALTIME}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8138 | #endif |
| 8139 | #ifdef _SC_XOPEN_REALTIME_THREADS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8140 | {"SC_XOPEN_REALTIME_THREADS", _SC_XOPEN_REALTIME_THREADS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8141 | #endif |
| 8142 | #ifdef _SC_XOPEN_SHM |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8143 | {"SC_XOPEN_SHM", _SC_XOPEN_SHM}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8144 | #endif |
| 8145 | #ifdef _SC_XOPEN_UNIX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8146 | {"SC_XOPEN_UNIX", _SC_XOPEN_UNIX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8147 | #endif |
| 8148 | #ifdef _SC_XOPEN_VERSION |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8149 | {"SC_XOPEN_VERSION", _SC_XOPEN_VERSION}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8150 | #endif |
| 8151 | #ifdef _SC_XOPEN_XCU_VERSION |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8152 | {"SC_XOPEN_XCU_VERSION", _SC_XOPEN_XCU_VERSION}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8153 | #endif |
| 8154 | #ifdef _SC_XOPEN_XPG2 |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8155 | {"SC_XOPEN_XPG2", _SC_XOPEN_XPG2}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8156 | #endif |
| 8157 | #ifdef _SC_XOPEN_XPG3 |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8158 | {"SC_XOPEN_XPG3", _SC_XOPEN_XPG3}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8159 | #endif |
| 8160 | #ifdef _SC_XOPEN_XPG4 |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8161 | {"SC_XOPEN_XPG4", _SC_XOPEN_XPG4}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8162 | #endif |
| 8163 | }; |
| 8164 | |
| 8165 | static int |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 8166 | conv_sysconf_confname(PyObject *arg, int *valuep) |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8167 | { |
| 8168 | return conv_confname(arg, valuep, posix_constants_sysconf, |
| 8169 | sizeof(posix_constants_sysconf) |
| 8170 | / sizeof(struct constdef)); |
| 8171 | } |
| 8172 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 8173 | PyDoc_STRVAR(posix_sysconf__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 8174 | "sysconf(name) -> integer\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 8175 | Return an integer-valued system configuration variable."); |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8176 | |
| 8177 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 8178 | posix_sysconf(PyObject *self, PyObject *args) |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8179 | { |
| 8180 | PyObject *result = NULL; |
| 8181 | int name; |
| 8182 | |
| 8183 | if (PyArg_ParseTuple(args, "O&:sysconf", conv_sysconf_confname, &name)) { |
Victor Stinner | 862490a | 2010-05-06 00:03:44 +0000 | [diff] [blame] | 8184 | int value; |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8185 | |
Victor Stinner | 862490a | 2010-05-06 00:03:44 +0000 | [diff] [blame] | 8186 | errno = 0; |
| 8187 | value = sysconf(name); |
| 8188 | if (value == -1 && errno != 0) |
| 8189 | posix_error(); |
| 8190 | else |
| 8191 | result = PyInt_FromLong(value); |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8192 | } |
| 8193 | return result; |
| 8194 | } |
| 8195 | #endif |
| 8196 | |
| 8197 | |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 8198 | /* This code is used to ensure that the tables of configuration value names |
| 8199 | * are in sorted order as required by conv_confname(), and also to build the |
| 8200 | * the exported dictionaries that are used to publish information about the |
| 8201 | * names available on the host platform. |
| 8202 | * |
| 8203 | * Sorting the table at runtime ensures that the table is properly ordered |
| 8204 | * when used, even for platforms we're not able to test on. It also makes |
| 8205 | * it easier to add additional entries to the tables. |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 8206 | */ |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 8207 | |
| 8208 | static int |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 8209 | cmp_constdefs(const void *v1, const void *v2) |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 8210 | { |
| 8211 | const struct constdef *c1 = |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8212 | (const struct constdef *) v1; |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 8213 | const struct constdef *c2 = |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8214 | (const struct constdef *) v2; |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 8215 | |
| 8216 | return strcmp(c1->name, c2->name); |
| 8217 | } |
| 8218 | |
| 8219 | static int |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 8220 | setup_confname_table(struct constdef *table, size_t tablesize, |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8221 | char *tablename, PyObject *module) |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 8222 | { |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 8223 | PyObject *d = NULL; |
Barry Warsaw | 3155db3 | 2000-04-13 15:20:40 +0000 | [diff] [blame] | 8224 | size_t i; |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 8225 | |
| 8226 | qsort(table, tablesize, sizeof(struct constdef), cmp_constdefs); |
| 8227 | d = PyDict_New(); |
Barry Warsaw | 3155db3 | 2000-04-13 15:20:40 +0000 | [diff] [blame] | 8228 | if (d == NULL) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8229 | return -1; |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 8230 | |
Barry Warsaw | 3155db3 | 2000-04-13 15:20:40 +0000 | [diff] [blame] | 8231 | for (i=0; i < tablesize; ++i) { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8232 | PyObject *o = PyInt_FromLong(table[i].value); |
| 8233 | if (o == NULL || PyDict_SetItemString(d, table[i].name, o) == -1) { |
| 8234 | Py_XDECREF(o); |
| 8235 | Py_DECREF(d); |
| 8236 | return -1; |
| 8237 | } |
| 8238 | Py_DECREF(o); |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 8239 | } |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 8240 | return PyModule_AddObject(module, tablename, d); |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 8241 | } |
| 8242 | |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 8243 | /* Return -1 on failure, 0 on success. */ |
| 8244 | static int |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 8245 | setup_confname_tables(PyObject *module) |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 8246 | { |
| 8247 | #if defined(HAVE_FPATHCONF) || defined(HAVE_PATHCONF) |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 8248 | if (setup_confname_table(posix_constants_pathconf, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 8249 | sizeof(posix_constants_pathconf) |
| 8250 | / sizeof(struct constdef), |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 8251 | "pathconf_names", module)) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8252 | return -1; |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 8253 | #endif |
| 8254 | #ifdef HAVE_CONFSTR |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 8255 | if (setup_confname_table(posix_constants_confstr, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 8256 | sizeof(posix_constants_confstr) |
| 8257 | / sizeof(struct constdef), |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 8258 | "confstr_names", module)) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8259 | return -1; |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 8260 | #endif |
| 8261 | #ifdef HAVE_SYSCONF |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 8262 | if (setup_confname_table(posix_constants_sysconf, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 8263 | sizeof(posix_constants_sysconf) |
| 8264 | / sizeof(struct constdef), |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 8265 | "sysconf_names", module)) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8266 | return -1; |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 8267 | #endif |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 8268 | return 0; |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 8269 | } |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 8270 | |
| 8271 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 8272 | PyDoc_STRVAR(posix_abort__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 8273 | "abort() -> does not return!\n\n\ |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8274 | Abort the interpreter immediately. This 'dumps core' or otherwise fails\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 8275 | in the hardest way possible on the hosting operating system."); |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8276 | |
| 8277 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 8278 | posix_abort(PyObject *self, PyObject *noargs) |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8279 | { |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8280 | abort(); |
| 8281 | /*NOTREACHED*/ |
| 8282 | Py_FatalError("abort() called from Python code didn't abort!"); |
| 8283 | return NULL; |
| 8284 | } |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 8285 | |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 8286 | #ifdef MS_WINDOWS |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 8287 | PyDoc_STRVAR(win32_startfile__doc__, |
Georg Brandl | f4f4415 | 2006-02-18 22:29:33 +0000 | [diff] [blame] | 8288 | "startfile(filepath [, operation]) - Start a file with its associated\n\ |
| 8289 | application.\n\ |
Tim Peters | f58a7aa | 2000-09-22 10:05:54 +0000 | [diff] [blame] | 8290 | \n\ |
Georg Brandl | f4f4415 | 2006-02-18 22:29:33 +0000 | [diff] [blame] | 8291 | When \"operation\" is not specified or \"open\", this acts like\n\ |
| 8292 | double-clicking the file in Explorer, or giving the file name as an\n\ |
| 8293 | argument to the DOS \"start\" command: the file is opened with whatever\n\ |
| 8294 | application (if any) its extension is associated.\n\ |
| 8295 | When another \"operation\" is given, it specifies what should be done with\n\ |
| 8296 | the file. A typical operation is \"print\".\n\ |
Tim Peters | f58a7aa | 2000-09-22 10:05:54 +0000 | [diff] [blame] | 8297 | \n\ |
| 8298 | startfile returns as soon as the associated application is launched.\n\ |
| 8299 | There is no option to wait for the application to close, and no way\n\ |
| 8300 | to retrieve the application's exit status.\n\ |
| 8301 | \n\ |
| 8302 | The filepath is relative to the current directory. If you want to use\n\ |
| 8303 | an absolute path, make sure the first character is not a slash (\"/\");\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 8304 | the underlying Win32 ShellExecute function doesn't work if it is."); |
Tim Peters | f58a7aa | 2000-09-22 10:05:54 +0000 | [diff] [blame] | 8305 | |
| 8306 | static PyObject * |
| 8307 | win32_startfile(PyObject *self, PyObject *args) |
| 8308 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8309 | char *filepath; |
| 8310 | char *operation = NULL; |
| 8311 | HINSTANCE rc; |
Hirokazu Yamamoto | b24bb27 | 2009-05-17 02:52:09 +0000 | [diff] [blame] | 8312 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8313 | PyObject *unipath, *woperation = NULL; |
| 8314 | if (!PyArg_ParseTuple(args, "U|s:startfile", |
| 8315 | &unipath, &operation)) { |
| 8316 | PyErr_Clear(); |
| 8317 | goto normal; |
| 8318 | } |
Hirokazu Yamamoto | a3c5609 | 2009-06-28 10:23:00 +0000 | [diff] [blame] | 8319 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8320 | if (operation) { |
| 8321 | woperation = PyUnicode_DecodeASCII(operation, |
| 8322 | strlen(operation), NULL); |
| 8323 | if (!woperation) { |
| 8324 | PyErr_Clear(); |
| 8325 | operation = NULL; |
| 8326 | goto normal; |
| 8327 | } |
| 8328 | } |
Hirokazu Yamamoto | a3c5609 | 2009-06-28 10:23:00 +0000 | [diff] [blame] | 8329 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8330 | Py_BEGIN_ALLOW_THREADS |
| 8331 | rc = ShellExecuteW((HWND)0, woperation ? PyUnicode_AS_UNICODE(woperation) : 0, |
| 8332 | PyUnicode_AS_UNICODE(unipath), |
| 8333 | NULL, NULL, SW_SHOWNORMAL); |
| 8334 | Py_END_ALLOW_THREADS |
| 8335 | |
| 8336 | Py_XDECREF(woperation); |
| 8337 | if (rc <= (HINSTANCE)32) { |
| 8338 | PyObject *errval = win32_error_unicode("startfile", |
| 8339 | PyUnicode_AS_UNICODE(unipath)); |
| 8340 | return errval; |
| 8341 | } |
| 8342 | Py_INCREF(Py_None); |
| 8343 | return Py_None; |
Georg Brandl | ad89dc8 | 2006-04-03 12:26:26 +0000 | [diff] [blame] | 8344 | |
| 8345 | normal: |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8346 | if (!PyArg_ParseTuple(args, "et|s:startfile", |
| 8347 | Py_FileSystemDefaultEncoding, &filepath, |
| 8348 | &operation)) |
| 8349 | return NULL; |
| 8350 | Py_BEGIN_ALLOW_THREADS |
| 8351 | rc = ShellExecute((HWND)0, operation, filepath, |
| 8352 | NULL, NULL, SW_SHOWNORMAL); |
| 8353 | Py_END_ALLOW_THREADS |
| 8354 | if (rc <= (HINSTANCE)32) { |
| 8355 | PyObject *errval = win32_error("startfile", filepath); |
| 8356 | PyMem_Free(filepath); |
| 8357 | return errval; |
| 8358 | } |
| 8359 | PyMem_Free(filepath); |
| 8360 | Py_INCREF(Py_None); |
| 8361 | return Py_None; |
Tim Peters | f58a7aa | 2000-09-22 10:05:54 +0000 | [diff] [blame] | 8362 | } |
Hirokazu Yamamoto | b24bb27 | 2009-05-17 02:52:09 +0000 | [diff] [blame] | 8363 | #endif /* MS_WINDOWS */ |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8364 | |
Martin v. Löwis | 438b534 | 2002-12-27 10:16:42 +0000 | [diff] [blame] | 8365 | #ifdef HAVE_GETLOADAVG |
| 8366 | PyDoc_STRVAR(posix_getloadavg__doc__, |
| 8367 | "getloadavg() -> (float, float, float)\n\n\ |
| 8368 | Return the number of processes in the system run queue averaged over\n\ |
| 8369 | the last 1, 5, and 15 minutes or raises OSError if the load average\n\ |
| 8370 | was unobtainable"); |
| 8371 | |
| 8372 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 8373 | posix_getloadavg(PyObject *self, PyObject *noargs) |
Martin v. Löwis | 438b534 | 2002-12-27 10:16:42 +0000 | [diff] [blame] | 8374 | { |
| 8375 | double loadavg[3]; |
Martin v. Löwis | 438b534 | 2002-12-27 10:16:42 +0000 | [diff] [blame] | 8376 | if (getloadavg(loadavg, 3)!=3) { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8377 | PyErr_SetString(PyExc_OSError, "Load averages are unobtainable"); |
| 8378 | return NULL; |
Martin v. Löwis | 438b534 | 2002-12-27 10:16:42 +0000 | [diff] [blame] | 8379 | } else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8380 | return Py_BuildValue("ddd", loadavg[0], loadavg[1], loadavg[2]); |
Martin v. Löwis | 438b534 | 2002-12-27 10:16:42 +0000 | [diff] [blame] | 8381 | } |
| 8382 | #endif |
| 8383 | |
Martin v. Löwis | dc3883f | 2004-08-29 15:46:35 +0000 | [diff] [blame] | 8384 | #ifdef MS_WINDOWS |
| 8385 | |
| 8386 | PyDoc_STRVAR(win32_urandom__doc__, |
| 8387 | "urandom(n) -> str\n\n\ |
| 8388 | Return a string of n random bytes suitable for cryptographic use."); |
| 8389 | |
| 8390 | typedef BOOL (WINAPI *CRYPTACQUIRECONTEXTA)(HCRYPTPROV *phProv,\ |
| 8391 | LPCSTR pszContainer, LPCSTR pszProvider, DWORD dwProvType,\ |
| 8392 | DWORD dwFlags ); |
| 8393 | typedef BOOL (WINAPI *CRYPTGENRANDOM)(HCRYPTPROV hProv, DWORD dwLen,\ |
| 8394 | BYTE *pbBuffer ); |
| 8395 | |
| 8396 | static CRYPTGENRANDOM pCryptGenRandom = NULL; |
Martin v. Löwis | af699dd | 2007-09-04 09:51:57 +0000 | [diff] [blame] | 8397 | /* This handle is never explicitly released. Instead, the operating |
| 8398 | system will release it when the process terminates. */ |
Martin v. Löwis | dc3883f | 2004-08-29 15:46:35 +0000 | [diff] [blame] | 8399 | static HCRYPTPROV hCryptProv = 0; |
| 8400 | |
Tim Peters | 4ad8217 | 2004-08-30 17:02:04 +0000 | [diff] [blame] | 8401 | static PyObject* |
| 8402 | win32_urandom(PyObject *self, PyObject *args) |
Martin v. Löwis | dc3883f | 2004-08-29 15:46:35 +0000 | [diff] [blame] | 8403 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8404 | int howMany; |
| 8405 | PyObject* result; |
Martin v. Löwis | dc3883f | 2004-08-29 15:46:35 +0000 | [diff] [blame] | 8406 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8407 | /* Read arguments */ |
| 8408 | if (! PyArg_ParseTuple(args, "i:urandom", &howMany)) |
| 8409 | return NULL; |
| 8410 | if (howMany < 0) |
| 8411 | return PyErr_Format(PyExc_ValueError, |
| 8412 | "negative argument not allowed"); |
Martin v. Löwis | dc3883f | 2004-08-29 15:46:35 +0000 | [diff] [blame] | 8413 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8414 | if (hCryptProv == 0) { |
| 8415 | HINSTANCE hAdvAPI32 = NULL; |
| 8416 | CRYPTACQUIRECONTEXTA pCryptAcquireContext = NULL; |
Martin v. Löwis | dc3883f | 2004-08-29 15:46:35 +0000 | [diff] [blame] | 8417 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8418 | /* Obtain handle to the DLL containing CryptoAPI |
| 8419 | This should not fail */ |
| 8420 | hAdvAPI32 = GetModuleHandle("advapi32.dll"); |
| 8421 | if(hAdvAPI32 == NULL) |
| 8422 | return win32_error("GetModuleHandle", NULL); |
Martin v. Löwis | dc3883f | 2004-08-29 15:46:35 +0000 | [diff] [blame] | 8423 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8424 | /* Obtain pointers to the CryptoAPI functions |
| 8425 | This will fail on some early versions of Win95 */ |
| 8426 | pCryptAcquireContext = (CRYPTACQUIRECONTEXTA)GetProcAddress( |
| 8427 | hAdvAPI32, |
| 8428 | "CryptAcquireContextA"); |
| 8429 | if (pCryptAcquireContext == NULL) |
| 8430 | return PyErr_Format(PyExc_NotImplementedError, |
| 8431 | "CryptAcquireContextA not found"); |
Martin v. Löwis | dc3883f | 2004-08-29 15:46:35 +0000 | [diff] [blame] | 8432 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8433 | pCryptGenRandom = (CRYPTGENRANDOM)GetProcAddress( |
| 8434 | hAdvAPI32, "CryptGenRandom"); |
| 8435 | if (pCryptGenRandom == NULL) |
| 8436 | return PyErr_Format(PyExc_NotImplementedError, |
| 8437 | "CryptGenRandom not found"); |
Martin v. Löwis | dc3883f | 2004-08-29 15:46:35 +0000 | [diff] [blame] | 8438 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8439 | /* Acquire context */ |
| 8440 | if (! pCryptAcquireContext(&hCryptProv, NULL, NULL, |
| 8441 | PROV_RSA_FULL, CRYPT_VERIFYCONTEXT)) |
| 8442 | return win32_error("CryptAcquireContext", NULL); |
| 8443 | } |
Martin v. Löwis | dc3883f | 2004-08-29 15:46:35 +0000 | [diff] [blame] | 8444 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8445 | /* Allocate bytes */ |
| 8446 | result = PyString_FromStringAndSize(NULL, howMany); |
| 8447 | if (result != NULL) { |
| 8448 | /* Get random data */ |
| 8449 | memset(PyString_AS_STRING(result), 0, howMany); /* zero seed */ |
| 8450 | if (! pCryptGenRandom(hCryptProv, howMany, (unsigned char*) |
| 8451 | PyString_AS_STRING(result))) { |
| 8452 | Py_DECREF(result); |
| 8453 | return win32_error("CryptGenRandom", NULL); |
| 8454 | } |
| 8455 | } |
| 8456 | return result; |
Martin v. Löwis | dc3883f | 2004-08-29 15:46:35 +0000 | [diff] [blame] | 8457 | } |
| 8458 | #endif |
Martin v. Löwis | 438b534 | 2002-12-27 10:16:42 +0000 | [diff] [blame] | 8459 | |
Neal Norwitz | 2a30cd0 | 2006-07-10 01:18:57 +0000 | [diff] [blame] | 8460 | #ifdef __VMS |
| 8461 | /* Use openssl random routine */ |
| 8462 | #include <openssl/rand.h> |
| 8463 | PyDoc_STRVAR(vms_urandom__doc__, |
| 8464 | "urandom(n) -> str\n\n\ |
| 8465 | Return a string of n random bytes suitable for cryptographic use."); |
| 8466 | |
| 8467 | static PyObject* |
| 8468 | vms_urandom(PyObject *self, PyObject *args) |
| 8469 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8470 | int howMany; |
| 8471 | PyObject* result; |
Neal Norwitz | 2a30cd0 | 2006-07-10 01:18:57 +0000 | [diff] [blame] | 8472 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8473 | /* Read arguments */ |
| 8474 | if (! PyArg_ParseTuple(args, "i:urandom", &howMany)) |
| 8475 | return NULL; |
| 8476 | if (howMany < 0) |
| 8477 | return PyErr_Format(PyExc_ValueError, |
| 8478 | "negative argument not allowed"); |
Neal Norwitz | 2a30cd0 | 2006-07-10 01:18:57 +0000 | [diff] [blame] | 8479 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8480 | /* Allocate bytes */ |
| 8481 | result = PyString_FromStringAndSize(NULL, howMany); |
| 8482 | if (result != NULL) { |
| 8483 | /* Get random data */ |
| 8484 | if (RAND_pseudo_bytes((unsigned char*) |
| 8485 | PyString_AS_STRING(result), |
| 8486 | howMany) < 0) { |
| 8487 | Py_DECREF(result); |
| 8488 | return PyErr_Format(PyExc_ValueError, |
| 8489 | "RAND_pseudo_bytes"); |
| 8490 | } |
| 8491 | } |
| 8492 | return result; |
Neal Norwitz | 2a30cd0 | 2006-07-10 01:18:57 +0000 | [diff] [blame] | 8493 | } |
| 8494 | #endif |
| 8495 | |
Martin v. Löwis | 50ea456 | 2009-11-27 13:56:01 +0000 | [diff] [blame] | 8496 | #ifdef HAVE_SETRESUID |
| 8497 | PyDoc_STRVAR(posix_setresuid__doc__, |
| 8498 | "setresuid(ruid, euid, suid)\n\n\ |
| 8499 | Set the current process's real, effective, and saved user ids."); |
| 8500 | |
| 8501 | static PyObject* |
| 8502 | posix_setresuid (PyObject *self, PyObject *args) |
| 8503 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8504 | /* We assume uid_t is no larger than a long. */ |
| 8505 | long ruid, euid, suid; |
| 8506 | if (!PyArg_ParseTuple(args, "lll", &ruid, &euid, &suid)) |
| 8507 | return NULL; |
| 8508 | if (setresuid(ruid, euid, suid) < 0) |
| 8509 | return posix_error(); |
| 8510 | Py_RETURN_NONE; |
Martin v. Löwis | 50ea456 | 2009-11-27 13:56:01 +0000 | [diff] [blame] | 8511 | } |
| 8512 | #endif |
| 8513 | |
| 8514 | #ifdef HAVE_SETRESGID |
| 8515 | PyDoc_STRVAR(posix_setresgid__doc__, |
| 8516 | "setresgid(rgid, egid, sgid)\n\n\ |
| 8517 | Set the current process's real, effective, and saved group ids."); |
| 8518 | |
| 8519 | static PyObject* |
| 8520 | posix_setresgid (PyObject *self, PyObject *args) |
| 8521 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8522 | /* We assume uid_t is no larger than a long. */ |
| 8523 | long rgid, egid, sgid; |
| 8524 | if (!PyArg_ParseTuple(args, "lll", &rgid, &egid, &sgid)) |
| 8525 | return NULL; |
| 8526 | if (setresgid(rgid, egid, sgid) < 0) |
| 8527 | return posix_error(); |
| 8528 | Py_RETURN_NONE; |
Martin v. Löwis | 50ea456 | 2009-11-27 13:56:01 +0000 | [diff] [blame] | 8529 | } |
| 8530 | #endif |
| 8531 | |
| 8532 | #ifdef HAVE_GETRESUID |
| 8533 | PyDoc_STRVAR(posix_getresuid__doc__, |
| 8534 | "getresuid() -> (ruid, euid, suid)\n\n\ |
| 8535 | Get tuple of the current process's real, effective, and saved user ids."); |
| 8536 | |
| 8537 | static PyObject* |
| 8538 | posix_getresuid (PyObject *self, PyObject *noargs) |
| 8539 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8540 | uid_t ruid, euid, suid; |
| 8541 | long l_ruid, l_euid, l_suid; |
| 8542 | if (getresuid(&ruid, &euid, &suid) < 0) |
| 8543 | return posix_error(); |
| 8544 | /* Force the values into long's as we don't know the size of uid_t. */ |
| 8545 | l_ruid = ruid; |
| 8546 | l_euid = euid; |
| 8547 | l_suid = suid; |
| 8548 | return Py_BuildValue("(lll)", l_ruid, l_euid, l_suid); |
Martin v. Löwis | 50ea456 | 2009-11-27 13:56:01 +0000 | [diff] [blame] | 8549 | } |
| 8550 | #endif |
| 8551 | |
| 8552 | #ifdef HAVE_GETRESGID |
| 8553 | PyDoc_STRVAR(posix_getresgid__doc__, |
| 8554 | "getresgid() -> (rgid, egid, sgid)\n\n\ |
| 8555 | Get tuple of the current process's real, effective, and saved user ids."); |
| 8556 | |
| 8557 | static PyObject* |
| 8558 | posix_getresgid (PyObject *self, PyObject *noargs) |
| 8559 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8560 | uid_t rgid, egid, sgid; |
| 8561 | long l_rgid, l_egid, l_sgid; |
| 8562 | if (getresgid(&rgid, &egid, &sgid) < 0) |
| 8563 | return posix_error(); |
| 8564 | /* Force the values into long's as we don't know the size of uid_t. */ |
| 8565 | l_rgid = rgid; |
| 8566 | l_egid = egid; |
| 8567 | l_sgid = sgid; |
| 8568 | return Py_BuildValue("(lll)", l_rgid, l_egid, l_sgid); |
Martin v. Löwis | 50ea456 | 2009-11-27 13:56:01 +0000 | [diff] [blame] | 8569 | } |
| 8570 | #endif |
| 8571 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8572 | static PyMethodDef posix_methods[] = { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8573 | {"access", posix_access, METH_VARARGS, posix_access__doc__}, |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8574 | #ifdef HAVE_TTYNAME |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8575 | {"ttyname", posix_ttyname, METH_VARARGS, posix_ttyname__doc__}, |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8576 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8577 | {"chdir", posix_chdir, METH_VARARGS, posix_chdir__doc__}, |
Martin v. Löwis | 382abef | 2007-02-19 10:55:19 +0000 | [diff] [blame] | 8578 | #ifdef HAVE_CHFLAGS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8579 | {"chflags", posix_chflags, METH_VARARGS, posix_chflags__doc__}, |
Martin v. Löwis | 382abef | 2007-02-19 10:55:19 +0000 | [diff] [blame] | 8580 | #endif /* HAVE_CHFLAGS */ |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8581 | {"chmod", posix_chmod, METH_VARARGS, posix_chmod__doc__}, |
Christian Heimes | 3628187 | 2007-11-30 21:11:28 +0000 | [diff] [blame] | 8582 | #ifdef HAVE_FCHMOD |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8583 | {"fchmod", posix_fchmod, METH_VARARGS, posix_fchmod__doc__}, |
Christian Heimes | 3628187 | 2007-11-30 21:11:28 +0000 | [diff] [blame] | 8584 | #endif /* HAVE_FCHMOD */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 8585 | #ifdef HAVE_CHOWN |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8586 | {"chown", posix_chown, METH_VARARGS, posix_chown__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 8587 | #endif /* HAVE_CHOWN */ |
Christian Heimes | 3628187 | 2007-11-30 21:11:28 +0000 | [diff] [blame] | 8588 | #ifdef HAVE_LCHMOD |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8589 | {"lchmod", posix_lchmod, METH_VARARGS, posix_lchmod__doc__}, |
Christian Heimes | 3628187 | 2007-11-30 21:11:28 +0000 | [diff] [blame] | 8590 | #endif /* HAVE_LCHMOD */ |
| 8591 | #ifdef HAVE_FCHOWN |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8592 | {"fchown", posix_fchown, METH_VARARGS, posix_fchown__doc__}, |
Christian Heimes | 3628187 | 2007-11-30 21:11:28 +0000 | [diff] [blame] | 8593 | #endif /* HAVE_FCHOWN */ |
Martin v. Löwis | 382abef | 2007-02-19 10:55:19 +0000 | [diff] [blame] | 8594 | #ifdef HAVE_LCHFLAGS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8595 | {"lchflags", posix_lchflags, METH_VARARGS, posix_lchflags__doc__}, |
Martin v. Löwis | 382abef | 2007-02-19 10:55:19 +0000 | [diff] [blame] | 8596 | #endif /* HAVE_LCHFLAGS */ |
Martin v. Löwis | 0cec0ff | 2002-07-28 16:33:45 +0000 | [diff] [blame] | 8597 | #ifdef HAVE_LCHOWN |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8598 | {"lchown", posix_lchown, METH_VARARGS, posix_lchown__doc__}, |
Martin v. Löwis | 0cec0ff | 2002-07-28 16:33:45 +0000 | [diff] [blame] | 8599 | #endif /* HAVE_LCHOWN */ |
Martin v. Löwis | 244edc8 | 2001-10-04 22:44:26 +0000 | [diff] [blame] | 8600 | #ifdef HAVE_CHROOT |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8601 | {"chroot", posix_chroot, METH_VARARGS, posix_chroot__doc__}, |
Martin v. Löwis | 244edc8 | 2001-10-04 22:44:26 +0000 | [diff] [blame] | 8602 | #endif |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8603 | #ifdef HAVE_CTERMID |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8604 | {"ctermid", posix_ctermid, METH_NOARGS, posix_ctermid__doc__}, |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8605 | #endif |
Guido van Rossum | 36bc680 | 1995-06-14 22:54:23 +0000 | [diff] [blame] | 8606 | #ifdef HAVE_GETCWD |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8607 | {"getcwd", posix_getcwd, METH_NOARGS, posix_getcwd__doc__}, |
Walter Dörwald | 3b918c3 | 2002-11-21 20:18:46 +0000 | [diff] [blame] | 8608 | #ifdef Py_USING_UNICODE |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8609 | {"getcwdu", posix_getcwdu, METH_NOARGS, posix_getcwdu__doc__}, |
Guido van Rossum | 36bc680 | 1995-06-14 22:54:23 +0000 | [diff] [blame] | 8610 | #endif |
Walter Dörwald | 3b918c3 | 2002-11-21 20:18:46 +0000 | [diff] [blame] | 8611 | #endif |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 8612 | #ifdef HAVE_LINK |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8613 | {"link", posix_link, METH_VARARGS, posix_link__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 8614 | #endif /* HAVE_LINK */ |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8615 | {"listdir", posix_listdir, METH_VARARGS, posix_listdir__doc__}, |
| 8616 | {"lstat", posix_lstat, METH_VARARGS, posix_lstat__doc__}, |
| 8617 | {"mkdir", posix_mkdir, METH_VARARGS, posix_mkdir__doc__}, |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 8618 | #ifdef HAVE_NICE |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8619 | {"nice", posix_nice, METH_VARARGS, posix_nice__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 8620 | #endif /* HAVE_NICE */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 8621 | #ifdef HAVE_READLINK |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8622 | {"readlink", posix_readlink, METH_VARARGS, posix_readlink__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 8623 | #endif /* HAVE_READLINK */ |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8624 | {"rename", posix_rename, METH_VARARGS, posix_rename__doc__}, |
| 8625 | {"rmdir", posix_rmdir, METH_VARARGS, posix_rmdir__doc__}, |
| 8626 | {"stat", posix_stat, METH_VARARGS, posix_stat__doc__}, |
| 8627 | {"stat_float_times", stat_float_times, METH_VARARGS, stat_float_times__doc__}, |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 8628 | #ifdef HAVE_SYMLINK |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8629 | {"symlink", posix_symlink, METH_VARARGS, posix_symlink__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 8630 | #endif /* HAVE_SYMLINK */ |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 8631 | #ifdef HAVE_SYSTEM |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8632 | {"system", posix_system, METH_VARARGS, posix_system__doc__}, |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 8633 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8634 | {"umask", posix_umask, METH_VARARGS, posix_umask__doc__}, |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 8635 | #ifdef HAVE_UNAME |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8636 | {"uname", posix_uname, METH_NOARGS, posix_uname__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 8637 | #endif /* HAVE_UNAME */ |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8638 | {"unlink", posix_unlink, METH_VARARGS, posix_unlink__doc__}, |
| 8639 | {"remove", posix_unlink, METH_VARARGS, posix_remove__doc__}, |
| 8640 | {"utime", posix_utime, METH_VARARGS, posix_utime__doc__}, |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 8641 | #ifdef HAVE_TIMES |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8642 | {"times", posix_times, METH_NOARGS, posix_times__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 8643 | #endif /* HAVE_TIMES */ |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8644 | {"_exit", posix__exit, METH_VARARGS, posix__exit__doc__}, |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 8645 | #ifdef HAVE_EXECV |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8646 | {"execv", posix_execv, METH_VARARGS, posix_execv__doc__}, |
| 8647 | {"execve", posix_execve, METH_VARARGS, posix_execve__doc__}, |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 8648 | #endif /* HAVE_EXECV */ |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 8649 | #ifdef HAVE_SPAWNV |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8650 | {"spawnv", posix_spawnv, METH_VARARGS, posix_spawnv__doc__}, |
| 8651 | {"spawnve", posix_spawnve, METH_VARARGS, posix_spawnve__doc__}, |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 8652 | #if defined(PYOS_OS2) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8653 | {"spawnvp", posix_spawnvp, METH_VARARGS, posix_spawnvp__doc__}, |
| 8654 | {"spawnvpe", posix_spawnvpe, METH_VARARGS, posix_spawnvpe__doc__}, |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 8655 | #endif /* PYOS_OS2 */ |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 8656 | #endif /* HAVE_SPAWNV */ |
Guido van Rossum | 2242f2f | 2001-04-11 20:58:20 +0000 | [diff] [blame] | 8657 | #ifdef HAVE_FORK1 |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8658 | {"fork1", posix_fork1, METH_NOARGS, posix_fork1__doc__}, |
Guido van Rossum | 2242f2f | 2001-04-11 20:58:20 +0000 | [diff] [blame] | 8659 | #endif /* HAVE_FORK1 */ |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 8660 | #ifdef HAVE_FORK |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8661 | {"fork", posix_fork, METH_NOARGS, posix_fork__doc__}, |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 8662 | #endif /* HAVE_FORK */ |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 8663 | #if defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8664 | {"openpty", posix_openpty, METH_NOARGS, posix_openpty__doc__}, |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 8665 | #endif /* HAVE_OPENPTY || HAVE__GETPTY || HAVE_DEV_PTMX */ |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 8666 | #ifdef HAVE_FORKPTY |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8667 | {"forkpty", posix_forkpty, METH_NOARGS, posix_forkpty__doc__}, |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 8668 | #endif /* HAVE_FORKPTY */ |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 8669 | #ifdef HAVE_GETEGID |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8670 | {"getegid", posix_getegid, METH_NOARGS, posix_getegid__doc__}, |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 8671 | #endif /* HAVE_GETEGID */ |
| 8672 | #ifdef HAVE_GETEUID |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8673 | {"geteuid", posix_geteuid, METH_NOARGS, posix_geteuid__doc__}, |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 8674 | #endif /* HAVE_GETEUID */ |
| 8675 | #ifdef HAVE_GETGID |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8676 | {"getgid", posix_getgid, METH_NOARGS, posix_getgid__doc__}, |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 8677 | #endif /* HAVE_GETGID */ |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8678 | #ifdef HAVE_GETGROUPS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8679 | {"getgroups", posix_getgroups, METH_NOARGS, posix_getgroups__doc__}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8680 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8681 | {"getpid", posix_getpid, METH_NOARGS, posix_getpid__doc__}, |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 8682 | #ifdef HAVE_GETPGRP |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8683 | {"getpgrp", posix_getpgrp, METH_NOARGS, posix_getpgrp__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 8684 | #endif /* HAVE_GETPGRP */ |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 8685 | #ifdef HAVE_GETPPID |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8686 | {"getppid", posix_getppid, METH_NOARGS, posix_getppid__doc__}, |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 8687 | #endif /* HAVE_GETPPID */ |
| 8688 | #ifdef HAVE_GETUID |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8689 | {"getuid", posix_getuid, METH_NOARGS, posix_getuid__doc__}, |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 8690 | #endif /* HAVE_GETUID */ |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 8691 | #ifdef HAVE_GETLOGIN |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8692 | {"getlogin", posix_getlogin, METH_NOARGS, posix_getlogin__doc__}, |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 8693 | #endif |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 8694 | #ifdef HAVE_KILL |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8695 | {"kill", posix_kill, METH_VARARGS, posix_kill__doc__}, |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 8696 | #endif /* HAVE_KILL */ |
Martin v. Löwis | b2c92f4 | 2002-02-16 23:35:41 +0000 | [diff] [blame] | 8697 | #ifdef HAVE_KILLPG |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8698 | {"killpg", posix_killpg, METH_VARARGS, posix_killpg__doc__}, |
Martin v. Löwis | b2c92f4 | 2002-02-16 23:35:41 +0000 | [diff] [blame] | 8699 | #endif /* HAVE_KILLPG */ |
Guido van Rossum | c012547 | 1996-06-28 18:55:32 +0000 | [diff] [blame] | 8700 | #ifdef HAVE_PLOCK |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8701 | {"plock", posix_plock, METH_VARARGS, posix_plock__doc__}, |
Guido van Rossum | c012547 | 1996-06-28 18:55:32 +0000 | [diff] [blame] | 8702 | #endif /* HAVE_PLOCK */ |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 8703 | #ifdef HAVE_POPEN |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8704 | {"popen", posix_popen, METH_VARARGS, posix_popen__doc__}, |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 8705 | #ifdef MS_WINDOWS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8706 | {"popen2", win32_popen2, METH_VARARGS}, |
| 8707 | {"popen3", win32_popen3, METH_VARARGS}, |
| 8708 | {"popen4", win32_popen4, METH_VARARGS}, |
| 8709 | {"startfile", win32_startfile, METH_VARARGS, win32_startfile__doc__}, |
| 8710 | {"kill", win32_kill, METH_VARARGS, win32_kill__doc__}, |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 8711 | #else |
| 8712 | #if defined(PYOS_OS2) && defined(PYCC_GCC) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8713 | {"popen2", os2emx_popen2, METH_VARARGS}, |
| 8714 | {"popen3", os2emx_popen3, METH_VARARGS}, |
| 8715 | {"popen4", os2emx_popen4, METH_VARARGS}, |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 8716 | #endif |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 8717 | #endif |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 8718 | #endif /* HAVE_POPEN */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 8719 | #ifdef HAVE_SETUID |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8720 | {"setuid", posix_setuid, METH_VARARGS, posix_setuid__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 8721 | #endif /* HAVE_SETUID */ |
Andrew M. Kuchling | 8d2f2b2 | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 8722 | #ifdef HAVE_SETEUID |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8723 | {"seteuid", posix_seteuid, METH_VARARGS, posix_seteuid__doc__}, |
Andrew M. Kuchling | 8d2f2b2 | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 8724 | #endif /* HAVE_SETEUID */ |
| 8725 | #ifdef HAVE_SETEGID |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8726 | {"setegid", posix_setegid, METH_VARARGS, posix_setegid__doc__}, |
Andrew M. Kuchling | 8d2f2b2 | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 8727 | #endif /* HAVE_SETEGID */ |
| 8728 | #ifdef HAVE_SETREUID |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8729 | {"setreuid", posix_setreuid, METH_VARARGS, posix_setreuid__doc__}, |
Andrew M. Kuchling | 8d2f2b2 | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 8730 | #endif /* HAVE_SETREUID */ |
| 8731 | #ifdef HAVE_SETREGID |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8732 | {"setregid", posix_setregid, METH_VARARGS, posix_setregid__doc__}, |
Andrew M. Kuchling | 8d2f2b2 | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 8733 | #endif /* HAVE_SETREGID */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 8734 | #ifdef HAVE_SETGID |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8735 | {"setgid", posix_setgid, METH_VARARGS, posix_setgid__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 8736 | #endif /* HAVE_SETGID */ |
Martin v. Löwis | 61c5edf | 2001-10-18 04:06:00 +0000 | [diff] [blame] | 8737 | #ifdef HAVE_SETGROUPS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8738 | {"setgroups", posix_setgroups, METH_O, posix_setgroups__doc__}, |
Martin v. Löwis | 61c5edf | 2001-10-18 04:06:00 +0000 | [diff] [blame] | 8739 | #endif /* HAVE_SETGROUPS */ |
Antoine Pitrou | 30b3b35 | 2009-12-02 20:37:54 +0000 | [diff] [blame] | 8740 | #ifdef HAVE_INITGROUPS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8741 | {"initgroups", posix_initgroups, METH_VARARGS, posix_initgroups__doc__}, |
Antoine Pitrou | 30b3b35 | 2009-12-02 20:37:54 +0000 | [diff] [blame] | 8742 | #endif /* HAVE_INITGROUPS */ |
Martin v. Löwis | 606edc1 | 2002-06-13 21:09:11 +0000 | [diff] [blame] | 8743 | #ifdef HAVE_GETPGID |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8744 | {"getpgid", posix_getpgid, METH_VARARGS, posix_getpgid__doc__}, |
Martin v. Löwis | 606edc1 | 2002-06-13 21:09:11 +0000 | [diff] [blame] | 8745 | #endif /* HAVE_GETPGID */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 8746 | #ifdef HAVE_SETPGRP |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8747 | {"setpgrp", posix_setpgrp, METH_NOARGS, posix_setpgrp__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 8748 | #endif /* HAVE_SETPGRP */ |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 8749 | #ifdef HAVE_WAIT |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8750 | {"wait", posix_wait, METH_NOARGS, posix_wait__doc__}, |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 8751 | #endif /* HAVE_WAIT */ |
Neal Norwitz | 05a4559 | 2006-03-20 06:30:08 +0000 | [diff] [blame] | 8752 | #ifdef HAVE_WAIT3 |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8753 | {"wait3", posix_wait3, METH_VARARGS, posix_wait3__doc__}, |
Neal Norwitz | 05a4559 | 2006-03-20 06:30:08 +0000 | [diff] [blame] | 8754 | #endif /* HAVE_WAIT3 */ |
| 8755 | #ifdef HAVE_WAIT4 |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8756 | {"wait4", posix_wait4, METH_VARARGS, posix_wait4__doc__}, |
Neal Norwitz | 05a4559 | 2006-03-20 06:30:08 +0000 | [diff] [blame] | 8757 | #endif /* HAVE_WAIT4 */ |
Tim Peters | ab034fa | 2002-02-01 11:27:43 +0000 | [diff] [blame] | 8758 | #if defined(HAVE_WAITPID) || defined(HAVE_CWAIT) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8759 | {"waitpid", posix_waitpid, METH_VARARGS, posix_waitpid__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 8760 | #endif /* HAVE_WAITPID */ |
Martin v. Löwis | 49ee14d | 2003-11-10 06:35:36 +0000 | [diff] [blame] | 8761 | #ifdef HAVE_GETSID |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8762 | {"getsid", posix_getsid, METH_VARARGS, posix_getsid__doc__}, |
Martin v. Löwis | 49ee14d | 2003-11-10 06:35:36 +0000 | [diff] [blame] | 8763 | #endif /* HAVE_GETSID */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 8764 | #ifdef HAVE_SETSID |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8765 | {"setsid", posix_setsid, METH_NOARGS, posix_setsid__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 8766 | #endif /* HAVE_SETSID */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 8767 | #ifdef HAVE_SETPGID |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8768 | {"setpgid", posix_setpgid, METH_VARARGS, posix_setpgid__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 8769 | #endif /* HAVE_SETPGID */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 8770 | #ifdef HAVE_TCGETPGRP |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8771 | {"tcgetpgrp", posix_tcgetpgrp, METH_VARARGS, posix_tcgetpgrp__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 8772 | #endif /* HAVE_TCGETPGRP */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 8773 | #ifdef HAVE_TCSETPGRP |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8774 | {"tcsetpgrp", posix_tcsetpgrp, METH_VARARGS, posix_tcsetpgrp__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 8775 | #endif /* HAVE_TCSETPGRP */ |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8776 | {"open", posix_open, METH_VARARGS, posix_open__doc__}, |
| 8777 | {"close", posix_close, METH_VARARGS, posix_close__doc__}, |
| 8778 | {"closerange", posix_closerange, METH_VARARGS, posix_closerange__doc__}, |
| 8779 | {"dup", posix_dup, METH_VARARGS, posix_dup__doc__}, |
| 8780 | {"dup2", posix_dup2, METH_VARARGS, posix_dup2__doc__}, |
| 8781 | {"lseek", posix_lseek, METH_VARARGS, posix_lseek__doc__}, |
| 8782 | {"read", posix_read, METH_VARARGS, posix_read__doc__}, |
| 8783 | {"write", posix_write, METH_VARARGS, posix_write__doc__}, |
| 8784 | {"fstat", posix_fstat, METH_VARARGS, posix_fstat__doc__}, |
| 8785 | {"fdopen", posix_fdopen, METH_VARARGS, posix_fdopen__doc__}, |
| 8786 | {"isatty", posix_isatty, METH_VARARGS, posix_isatty__doc__}, |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 8787 | #ifdef HAVE_PIPE |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8788 | {"pipe", posix_pipe, METH_NOARGS, posix_pipe__doc__}, |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 8789 | #endif |
| 8790 | #ifdef HAVE_MKFIFO |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8791 | {"mkfifo", posix_mkfifo, METH_VARARGS, posix_mkfifo__doc__}, |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 8792 | #endif |
Neal Norwitz | 1169011 | 2002-07-30 01:08:28 +0000 | [diff] [blame] | 8793 | #if defined(HAVE_MKNOD) && defined(HAVE_MAKEDEV) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8794 | {"mknod", posix_mknod, METH_VARARGS, posix_mknod__doc__}, |
Martin v. Löwis | 06a83e9 | 2002-04-14 10:19:44 +0000 | [diff] [blame] | 8795 | #endif |
Martin v. Löwis | dbe3f76 | 2002-10-10 14:27:30 +0000 | [diff] [blame] | 8796 | #ifdef HAVE_DEVICE_MACROS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8797 | {"major", posix_major, METH_VARARGS, posix_major__doc__}, |
| 8798 | {"minor", posix_minor, METH_VARARGS, posix_minor__doc__}, |
| 8799 | {"makedev", posix_makedev, METH_VARARGS, posix_makedev__doc__}, |
Martin v. Löwis | dbe3f76 | 2002-10-10 14:27:30 +0000 | [diff] [blame] | 8800 | #endif |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 8801 | #ifdef HAVE_FTRUNCATE |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8802 | {"ftruncate", posix_ftruncate, METH_VARARGS, posix_ftruncate__doc__}, |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 8803 | #endif |
Guido van Rossum | f1af3fe | 1996-07-23 19:18:10 +0000 | [diff] [blame] | 8804 | #ifdef HAVE_PUTENV |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8805 | {"putenv", posix_putenv, METH_VARARGS, posix_putenv__doc__}, |
Guido van Rossum | f1af3fe | 1996-07-23 19:18:10 +0000 | [diff] [blame] | 8806 | #endif |
Guido van Rossum | c524d95 | 2001-10-19 01:31:59 +0000 | [diff] [blame] | 8807 | #ifdef HAVE_UNSETENV |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8808 | {"unsetenv", posix_unsetenv, METH_VARARGS, posix_unsetenv__doc__}, |
Guido van Rossum | c524d95 | 2001-10-19 01:31:59 +0000 | [diff] [blame] | 8809 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8810 | {"strerror", posix_strerror, METH_VARARGS, posix_strerror__doc__}, |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 8811 | #ifdef HAVE_FCHDIR |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8812 | {"fchdir", posix_fchdir, METH_O, posix_fchdir__doc__}, |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 8813 | #endif |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 8814 | #ifdef HAVE_FSYNC |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8815 | {"fsync", posix_fsync, METH_O, posix_fsync__doc__}, |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 8816 | #endif |
| 8817 | #ifdef HAVE_FDATASYNC |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8818 | {"fdatasync", posix_fdatasync, METH_O, posix_fdatasync__doc__}, |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 8819 | #endif |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 8820 | #ifdef HAVE_SYS_WAIT_H |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 8821 | #ifdef WCOREDUMP |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8822 | {"WCOREDUMP", posix_WCOREDUMP, METH_VARARGS, posix_WCOREDUMP__doc__}, |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 8823 | #endif /* WCOREDUMP */ |
Martin v. Löwis | 2b41b0d | 2002-05-04 13:13:41 +0000 | [diff] [blame] | 8824 | #ifdef WIFCONTINUED |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8825 | {"WIFCONTINUED",posix_WIFCONTINUED, METH_VARARGS, posix_WIFCONTINUED__doc__}, |
Martin v. Löwis | 2b41b0d | 2002-05-04 13:13:41 +0000 | [diff] [blame] | 8826 | #endif /* WIFCONTINUED */ |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 8827 | #ifdef WIFSTOPPED |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8828 | {"WIFSTOPPED", posix_WIFSTOPPED, METH_VARARGS, posix_WIFSTOPPED__doc__}, |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 8829 | #endif /* WIFSTOPPED */ |
| 8830 | #ifdef WIFSIGNALED |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8831 | {"WIFSIGNALED", posix_WIFSIGNALED, METH_VARARGS, posix_WIFSIGNALED__doc__}, |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 8832 | #endif /* WIFSIGNALED */ |
| 8833 | #ifdef WIFEXITED |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8834 | {"WIFEXITED", posix_WIFEXITED, METH_VARARGS, posix_WIFEXITED__doc__}, |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 8835 | #endif /* WIFEXITED */ |
| 8836 | #ifdef WEXITSTATUS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8837 | {"WEXITSTATUS", posix_WEXITSTATUS, METH_VARARGS, posix_WEXITSTATUS__doc__}, |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 8838 | #endif /* WEXITSTATUS */ |
| 8839 | #ifdef WTERMSIG |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8840 | {"WTERMSIG", posix_WTERMSIG, METH_VARARGS, posix_WTERMSIG__doc__}, |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 8841 | #endif /* WTERMSIG */ |
| 8842 | #ifdef WSTOPSIG |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8843 | {"WSTOPSIG", posix_WSTOPSIG, METH_VARARGS, posix_WSTOPSIG__doc__}, |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 8844 | #endif /* WSTOPSIG */ |
| 8845 | #endif /* HAVE_SYS_WAIT_H */ |
Martin v. Löwis | 5f5d99c | 2006-05-16 07:05:37 +0000 | [diff] [blame] | 8846 | #if defined(HAVE_FSTATVFS) && defined(HAVE_SYS_STATVFS_H) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8847 | {"fstatvfs", posix_fstatvfs, METH_VARARGS, posix_fstatvfs__doc__}, |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 8848 | #endif |
Martin v. Löwis | 5f5d99c | 2006-05-16 07:05:37 +0000 | [diff] [blame] | 8849 | #if defined(HAVE_STATVFS) && defined(HAVE_SYS_STATVFS_H) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8850 | {"statvfs", posix_statvfs, METH_VARARGS, posix_statvfs__doc__}, |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 8851 | #endif |
Guido van Rossum | e2ad633 | 2001-01-08 17:51:55 +0000 | [diff] [blame] | 8852 | #ifdef HAVE_TMPFILE |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8853 | {"tmpfile", posix_tmpfile, METH_NOARGS, posix_tmpfile__doc__}, |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8854 | #endif |
| 8855 | #ifdef HAVE_TEMPNAM |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8856 | {"tempnam", posix_tempnam, METH_VARARGS, posix_tempnam__doc__}, |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8857 | #endif |
| 8858 | #ifdef HAVE_TMPNAM |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8859 | {"tmpnam", posix_tmpnam, METH_NOARGS, posix_tmpnam__doc__}, |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8860 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8861 | #ifdef HAVE_CONFSTR |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8862 | {"confstr", posix_confstr, METH_VARARGS, posix_confstr__doc__}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8863 | #endif |
| 8864 | #ifdef HAVE_SYSCONF |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8865 | {"sysconf", posix_sysconf, METH_VARARGS, posix_sysconf__doc__}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8866 | #endif |
| 8867 | #ifdef HAVE_FPATHCONF |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8868 | {"fpathconf", posix_fpathconf, METH_VARARGS, posix_fpathconf__doc__}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8869 | #endif |
| 8870 | #ifdef HAVE_PATHCONF |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8871 | {"pathconf", posix_pathconf, METH_VARARGS, posix_pathconf__doc__}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8872 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8873 | {"abort", posix_abort, METH_NOARGS, posix_abort__doc__}, |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 8874 | #ifdef MS_WINDOWS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8875 | {"_getfullpathname", posix__getfullpathname, METH_VARARGS, NULL}, |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 8876 | #endif |
Martin v. Löwis | 438b534 | 2002-12-27 10:16:42 +0000 | [diff] [blame] | 8877 | #ifdef HAVE_GETLOADAVG |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8878 | {"getloadavg", posix_getloadavg, METH_NOARGS, posix_getloadavg__doc__}, |
Martin v. Löwis | 438b534 | 2002-12-27 10:16:42 +0000 | [diff] [blame] | 8879 | #endif |
Martin v. Löwis | dc3883f | 2004-08-29 15:46:35 +0000 | [diff] [blame] | 8880 | #ifdef MS_WINDOWS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8881 | {"urandom", win32_urandom, METH_VARARGS, win32_urandom__doc__}, |
Martin v. Löwis | dc3883f | 2004-08-29 15:46:35 +0000 | [diff] [blame] | 8882 | #endif |
Neal Norwitz | 2a30cd0 | 2006-07-10 01:18:57 +0000 | [diff] [blame] | 8883 | #ifdef __VMS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8884 | {"urandom", vms_urandom, METH_VARARGS, vms_urandom__doc__}, |
Neal Norwitz | 2a30cd0 | 2006-07-10 01:18:57 +0000 | [diff] [blame] | 8885 | #endif |
Martin v. Löwis | 50ea456 | 2009-11-27 13:56:01 +0000 | [diff] [blame] | 8886 | #ifdef HAVE_SETRESUID |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8887 | {"setresuid", posix_setresuid, METH_VARARGS, posix_setresuid__doc__}, |
Martin v. Löwis | 50ea456 | 2009-11-27 13:56:01 +0000 | [diff] [blame] | 8888 | #endif |
| 8889 | #ifdef HAVE_SETRESGID |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8890 | {"setresgid", posix_setresgid, METH_VARARGS, posix_setresgid__doc__}, |
Martin v. Löwis | 50ea456 | 2009-11-27 13:56:01 +0000 | [diff] [blame] | 8891 | #endif |
| 8892 | #ifdef HAVE_GETRESUID |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8893 | {"getresuid", posix_getresuid, METH_NOARGS, posix_getresuid__doc__}, |
Martin v. Löwis | 50ea456 | 2009-11-27 13:56:01 +0000 | [diff] [blame] | 8894 | #endif |
| 8895 | #ifdef HAVE_GETRESGID |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8896 | {"getresgid", posix_getresgid, METH_NOARGS, posix_getresgid__doc__}, |
Martin v. Löwis | 50ea456 | 2009-11-27 13:56:01 +0000 | [diff] [blame] | 8897 | #endif |
| 8898 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8899 | {NULL, NULL} /* Sentinel */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 8900 | }; |
| 8901 | |
| 8902 | |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 8903 | static int |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 8904 | ins(PyObject *module, char *symbol, long value) |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 8905 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8906 | return PyModule_AddIntConstant(module, symbol, value); |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 8907 | } |
| 8908 | |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 8909 | #if defined(PYOS_OS2) |
| 8910 | /* Insert Platform-Specific Constant Values (Strings & Numbers) of Common Use */ |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 8911 | static int insertvalues(PyObject *module) |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 8912 | { |
| 8913 | APIRET rc; |
| 8914 | ULONG values[QSV_MAX+1]; |
| 8915 | PyObject *v; |
Marc-André Lemburg | d4c0a9c | 2001-11-28 11:47:00 +0000 | [diff] [blame] | 8916 | char *ver, tmp[50]; |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 8917 | |
| 8918 | Py_BEGIN_ALLOW_THREADS |
Andrew MacIntyre | 75e0145 | 2003-04-21 14:19:51 +0000 | [diff] [blame] | 8919 | rc = DosQuerySysInfo(1L, QSV_MAX, &values[1], sizeof(ULONG) * QSV_MAX); |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 8920 | Py_END_ALLOW_THREADS |
| 8921 | |
| 8922 | if (rc != NO_ERROR) { |
| 8923 | os2_error(rc); |
| 8924 | return -1; |
| 8925 | } |
| 8926 | |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 8927 | if (ins(module, "meminstalled", values[QSV_TOTPHYSMEM])) return -1; |
| 8928 | if (ins(module, "memkernel", values[QSV_TOTRESMEM])) return -1; |
| 8929 | if (ins(module, "memvirtual", values[QSV_TOTAVAILMEM])) return -1; |
| 8930 | if (ins(module, "maxpathlen", values[QSV_MAX_PATH_LENGTH])) return -1; |
| 8931 | if (ins(module, "maxnamelen", values[QSV_MAX_COMP_LENGTH])) return -1; |
| 8932 | if (ins(module, "revision", values[QSV_VERSION_REVISION])) return -1; |
| 8933 | if (ins(module, "timeslice", values[QSV_MIN_SLICE])) return -1; |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 8934 | |
| 8935 | switch (values[QSV_VERSION_MINOR]) { |
| 8936 | case 0: ver = "2.00"; break; |
| 8937 | case 10: ver = "2.10"; break; |
| 8938 | case 11: ver = "2.11"; break; |
| 8939 | case 30: ver = "3.00"; break; |
| 8940 | case 40: ver = "4.00"; break; |
| 8941 | case 50: ver = "5.00"; break; |
| 8942 | default: |
Tim Peters | 885d457 | 2001-11-28 20:27:42 +0000 | [diff] [blame] | 8943 | PyOS_snprintf(tmp, sizeof(tmp), |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8944 | "%d-%d", values[QSV_VERSION_MAJOR], |
Tim Peters | 885d457 | 2001-11-28 20:27:42 +0000 | [diff] [blame] | 8945 | values[QSV_VERSION_MINOR]); |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 8946 | ver = &tmp[0]; |
| 8947 | } |
| 8948 | |
| 8949 | /* Add Indicator of the Version of the Operating System */ |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 8950 | if (PyModule_AddStringConstant(module, "version", tmp) < 0) |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 8951 | return -1; |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 8952 | |
| 8953 | /* Add Indicator of Which Drive was Used to Boot the System */ |
| 8954 | tmp[0] = 'A' + values[QSV_BOOT_DRIVE] - 1; |
| 8955 | tmp[1] = ':'; |
| 8956 | tmp[2] = '\0'; |
| 8957 | |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 8958 | return PyModule_AddStringConstant(module, "bootdrive", tmp); |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 8959 | } |
| 8960 | #endif |
| 8961 | |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 8962 | static int |
Thomas Wouters | f3f33dc | 2000-07-21 06:00:07 +0000 | [diff] [blame] | 8963 | all_ins(PyObject *d) |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 8964 | { |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 8965 | #ifdef F_OK |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8966 | if (ins(d, "F_OK", (long)F_OK)) return -1; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 8967 | #endif |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 8968 | #ifdef R_OK |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8969 | if (ins(d, "R_OK", (long)R_OK)) return -1; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 8970 | #endif |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 8971 | #ifdef W_OK |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8972 | if (ins(d, "W_OK", (long)W_OK)) return -1; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 8973 | #endif |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 8974 | #ifdef X_OK |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8975 | if (ins(d, "X_OK", (long)X_OK)) return -1; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 8976 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8977 | #ifdef NGROUPS_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8978 | if (ins(d, "NGROUPS_MAX", (long)NGROUPS_MAX)) return -1; |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8979 | #endif |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8980 | #ifdef TMP_MAX |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8981 | if (ins(d, "TMP_MAX", (long)TMP_MAX)) return -1; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8982 | #endif |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 8983 | #ifdef WCONTINUED |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8984 | if (ins(d, "WCONTINUED", (long)WCONTINUED)) return -1; |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 8985 | #endif |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 8986 | #ifdef WNOHANG |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8987 | if (ins(d, "WNOHANG", (long)WNOHANG)) return -1; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 8988 | #endif |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 8989 | #ifdef WUNTRACED |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8990 | if (ins(d, "WUNTRACED", (long)WUNTRACED)) return -1; |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 8991 | #endif |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 8992 | #ifdef O_RDONLY |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8993 | if (ins(d, "O_RDONLY", (long)O_RDONLY)) return -1; |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 8994 | #endif |
| 8995 | #ifdef O_WRONLY |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8996 | if (ins(d, "O_WRONLY", (long)O_WRONLY)) return -1; |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 8997 | #endif |
| 8998 | #ifdef O_RDWR |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 8999 | if (ins(d, "O_RDWR", (long)O_RDWR)) return -1; |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 9000 | #endif |
| 9001 | #ifdef O_NDELAY |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9002 | if (ins(d, "O_NDELAY", (long)O_NDELAY)) return -1; |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 9003 | #endif |
| 9004 | #ifdef O_NONBLOCK |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9005 | if (ins(d, "O_NONBLOCK", (long)O_NONBLOCK)) return -1; |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 9006 | #endif |
| 9007 | #ifdef O_APPEND |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9008 | if (ins(d, "O_APPEND", (long)O_APPEND)) return -1; |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 9009 | #endif |
| 9010 | #ifdef O_DSYNC |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9011 | if (ins(d, "O_DSYNC", (long)O_DSYNC)) return -1; |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 9012 | #endif |
| 9013 | #ifdef O_RSYNC |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9014 | if (ins(d, "O_RSYNC", (long)O_RSYNC)) return -1; |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 9015 | #endif |
| 9016 | #ifdef O_SYNC |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9017 | if (ins(d, "O_SYNC", (long)O_SYNC)) return -1; |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 9018 | #endif |
| 9019 | #ifdef O_NOCTTY |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9020 | if (ins(d, "O_NOCTTY", (long)O_NOCTTY)) return -1; |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 9021 | #endif |
| 9022 | #ifdef O_CREAT |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9023 | if (ins(d, "O_CREAT", (long)O_CREAT)) return -1; |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 9024 | #endif |
| 9025 | #ifdef O_EXCL |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9026 | if (ins(d, "O_EXCL", (long)O_EXCL)) return -1; |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 9027 | #endif |
| 9028 | #ifdef O_TRUNC |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9029 | if (ins(d, "O_TRUNC", (long)O_TRUNC)) return -1; |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 9030 | #endif |
Guido van Rossum | 98d9d09 | 1997-08-08 21:48:51 +0000 | [diff] [blame] | 9031 | #ifdef O_BINARY |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9032 | if (ins(d, "O_BINARY", (long)O_BINARY)) return -1; |
Guido van Rossum | 98d9d09 | 1997-08-08 21:48:51 +0000 | [diff] [blame] | 9033 | #endif |
| 9034 | #ifdef O_TEXT |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9035 | if (ins(d, "O_TEXT", (long)O_TEXT)) return -1; |
Guido van Rossum | 98d9d09 | 1997-08-08 21:48:51 +0000 | [diff] [blame] | 9036 | #endif |
Martin v. Löwis | 4fe3c27 | 2001-10-18 22:05:36 +0000 | [diff] [blame] | 9037 | #ifdef O_LARGEFILE |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9038 | if (ins(d, "O_LARGEFILE", (long)O_LARGEFILE)) return -1; |
Martin v. Löwis | 4fe3c27 | 2001-10-18 22:05:36 +0000 | [diff] [blame] | 9039 | #endif |
Skip Montanaro | 5ff1492 | 2005-05-16 02:42:22 +0000 | [diff] [blame] | 9040 | #ifdef O_SHLOCK |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9041 | if (ins(d, "O_SHLOCK", (long)O_SHLOCK)) return -1; |
Skip Montanaro | 5ff1492 | 2005-05-16 02:42:22 +0000 | [diff] [blame] | 9042 | #endif |
| 9043 | #ifdef O_EXLOCK |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9044 | if (ins(d, "O_EXLOCK", (long)O_EXLOCK)) return -1; |
Skip Montanaro | 5ff1492 | 2005-05-16 02:42:22 +0000 | [diff] [blame] | 9045 | #endif |
Martin v. Löwis | 4fe3c27 | 2001-10-18 22:05:36 +0000 | [diff] [blame] | 9046 | |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 9047 | /* MS Windows */ |
| 9048 | #ifdef O_NOINHERIT |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9049 | /* Don't inherit in child processes. */ |
| 9050 | if (ins(d, "O_NOINHERIT", (long)O_NOINHERIT)) return -1; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 9051 | #endif |
| 9052 | #ifdef _O_SHORT_LIVED |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9053 | /* Optimize for short life (keep in memory). */ |
| 9054 | /* MS forgot to define this one with a non-underscore form too. */ |
| 9055 | if (ins(d, "O_SHORT_LIVED", (long)_O_SHORT_LIVED)) return -1; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 9056 | #endif |
| 9057 | #ifdef O_TEMPORARY |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9058 | /* Automatically delete when last handle is closed. */ |
| 9059 | if (ins(d, "O_TEMPORARY", (long)O_TEMPORARY)) return -1; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 9060 | #endif |
| 9061 | #ifdef O_RANDOM |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9062 | /* Optimize for random access. */ |
| 9063 | if (ins(d, "O_RANDOM", (long)O_RANDOM)) return -1; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 9064 | #endif |
| 9065 | #ifdef O_SEQUENTIAL |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9066 | /* Optimize for sequential access. */ |
| 9067 | if (ins(d, "O_SEQUENTIAL", (long)O_SEQUENTIAL)) return -1; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 9068 | #endif |
| 9069 | |
Martin v. Löwis | 4fe3c27 | 2001-10-18 22:05:36 +0000 | [diff] [blame] | 9070 | /* GNU extensions. */ |
Georg Brandl | 5049a85 | 2008-05-16 13:10:15 +0000 | [diff] [blame] | 9071 | #ifdef O_ASYNC |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9072 | /* Send a SIGIO signal whenever input or output |
| 9073 | becomes available on file descriptor */ |
| 9074 | if (ins(d, "O_ASYNC", (long)O_ASYNC)) return -1; |
Georg Brandl | 5049a85 | 2008-05-16 13:10:15 +0000 | [diff] [blame] | 9075 | #endif |
Martin v. Löwis | 4fe3c27 | 2001-10-18 22:05:36 +0000 | [diff] [blame] | 9076 | #ifdef O_DIRECT |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9077 | /* Direct disk access. */ |
| 9078 | if (ins(d, "O_DIRECT", (long)O_DIRECT)) return -1; |
Martin v. Löwis | 4fe3c27 | 2001-10-18 22:05:36 +0000 | [diff] [blame] | 9079 | #endif |
| 9080 | #ifdef O_DIRECTORY |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9081 | /* Must be a directory. */ |
| 9082 | if (ins(d, "O_DIRECTORY", (long)O_DIRECTORY)) return -1; |
Martin v. Löwis | 4fe3c27 | 2001-10-18 22:05:36 +0000 | [diff] [blame] | 9083 | #endif |
| 9084 | #ifdef O_NOFOLLOW |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9085 | /* Do not follow links. */ |
| 9086 | if (ins(d, "O_NOFOLLOW", (long)O_NOFOLLOW)) return -1; |
Martin v. Löwis | 4fe3c27 | 2001-10-18 22:05:36 +0000 | [diff] [blame] | 9087 | #endif |
Georg Brandl | b67da6e | 2007-11-24 13:56:09 +0000 | [diff] [blame] | 9088 | #ifdef O_NOATIME |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9089 | /* Do not update the access time. */ |
| 9090 | if (ins(d, "O_NOATIME", (long)O_NOATIME)) return -1; |
Georg Brandl | b67da6e | 2007-11-24 13:56:09 +0000 | [diff] [blame] | 9091 | #endif |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 9092 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9093 | /* These come from sysexits.h */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 9094 | #ifdef EX_OK |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9095 | if (ins(d, "EX_OK", (long)EX_OK)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 9096 | #endif /* EX_OK */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 9097 | #ifdef EX_USAGE |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9098 | if (ins(d, "EX_USAGE", (long)EX_USAGE)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 9099 | #endif /* EX_USAGE */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 9100 | #ifdef EX_DATAERR |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9101 | if (ins(d, "EX_DATAERR", (long)EX_DATAERR)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 9102 | #endif /* EX_DATAERR */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 9103 | #ifdef EX_NOINPUT |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9104 | if (ins(d, "EX_NOINPUT", (long)EX_NOINPUT)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 9105 | #endif /* EX_NOINPUT */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 9106 | #ifdef EX_NOUSER |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9107 | if (ins(d, "EX_NOUSER", (long)EX_NOUSER)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 9108 | #endif /* EX_NOUSER */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 9109 | #ifdef EX_NOHOST |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9110 | if (ins(d, "EX_NOHOST", (long)EX_NOHOST)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 9111 | #endif /* EX_NOHOST */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 9112 | #ifdef EX_UNAVAILABLE |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9113 | if (ins(d, "EX_UNAVAILABLE", (long)EX_UNAVAILABLE)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 9114 | #endif /* EX_UNAVAILABLE */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 9115 | #ifdef EX_SOFTWARE |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9116 | if (ins(d, "EX_SOFTWARE", (long)EX_SOFTWARE)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 9117 | #endif /* EX_SOFTWARE */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 9118 | #ifdef EX_OSERR |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9119 | if (ins(d, "EX_OSERR", (long)EX_OSERR)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 9120 | #endif /* EX_OSERR */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 9121 | #ifdef EX_OSFILE |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9122 | if (ins(d, "EX_OSFILE", (long)EX_OSFILE)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 9123 | #endif /* EX_OSFILE */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 9124 | #ifdef EX_CANTCREAT |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9125 | if (ins(d, "EX_CANTCREAT", (long)EX_CANTCREAT)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 9126 | #endif /* EX_CANTCREAT */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 9127 | #ifdef EX_IOERR |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9128 | if (ins(d, "EX_IOERR", (long)EX_IOERR)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 9129 | #endif /* EX_IOERR */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 9130 | #ifdef EX_TEMPFAIL |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9131 | if (ins(d, "EX_TEMPFAIL", (long)EX_TEMPFAIL)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 9132 | #endif /* EX_TEMPFAIL */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 9133 | #ifdef EX_PROTOCOL |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9134 | if (ins(d, "EX_PROTOCOL", (long)EX_PROTOCOL)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 9135 | #endif /* EX_PROTOCOL */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 9136 | #ifdef EX_NOPERM |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9137 | if (ins(d, "EX_NOPERM", (long)EX_NOPERM)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 9138 | #endif /* EX_NOPERM */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 9139 | #ifdef EX_CONFIG |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9140 | if (ins(d, "EX_CONFIG", (long)EX_CONFIG)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 9141 | #endif /* EX_CONFIG */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 9142 | #ifdef EX_NOTFOUND |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9143 | if (ins(d, "EX_NOTFOUND", (long)EX_NOTFOUND)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 9144 | #endif /* EX_NOTFOUND */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 9145 | |
Guido van Rossum | 246bc17 | 1999-02-01 23:54:31 +0000 | [diff] [blame] | 9146 | #ifdef HAVE_SPAWNV |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 9147 | #if defined(PYOS_OS2) && defined(PYCC_GCC) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9148 | if (ins(d, "P_WAIT", (long)P_WAIT)) return -1; |
| 9149 | if (ins(d, "P_NOWAIT", (long)P_NOWAIT)) return -1; |
| 9150 | if (ins(d, "P_OVERLAY", (long)P_OVERLAY)) return -1; |
| 9151 | if (ins(d, "P_DEBUG", (long)P_DEBUG)) return -1; |
| 9152 | if (ins(d, "P_SESSION", (long)P_SESSION)) return -1; |
| 9153 | if (ins(d, "P_DETACH", (long)P_DETACH)) return -1; |
| 9154 | if (ins(d, "P_PM", (long)P_PM)) return -1; |
| 9155 | if (ins(d, "P_DEFAULT", (long)P_DEFAULT)) return -1; |
| 9156 | if (ins(d, "P_MINIMIZE", (long)P_MINIMIZE)) return -1; |
| 9157 | if (ins(d, "P_MAXIMIZE", (long)P_MAXIMIZE)) return -1; |
| 9158 | if (ins(d, "P_FULLSCREEN", (long)P_FULLSCREEN)) return -1; |
| 9159 | if (ins(d, "P_WINDOWED", (long)P_WINDOWED)) return -1; |
| 9160 | if (ins(d, "P_FOREGROUND", (long)P_FOREGROUND)) return -1; |
| 9161 | if (ins(d, "P_BACKGROUND", (long)P_BACKGROUND)) return -1; |
| 9162 | if (ins(d, "P_NOCLOSE", (long)P_NOCLOSE)) return -1; |
| 9163 | if (ins(d, "P_NOSESSION", (long)P_NOSESSION)) return -1; |
| 9164 | if (ins(d, "P_QUOTE", (long)P_QUOTE)) return -1; |
| 9165 | if (ins(d, "P_TILDE", (long)P_TILDE)) return -1; |
| 9166 | if (ins(d, "P_UNRELATED", (long)P_UNRELATED)) return -1; |
| 9167 | if (ins(d, "P_DEBUGDESC", (long)P_DEBUGDESC)) return -1; |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 9168 | #else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9169 | if (ins(d, "P_WAIT", (long)_P_WAIT)) return -1; |
| 9170 | if (ins(d, "P_NOWAIT", (long)_P_NOWAIT)) return -1; |
| 9171 | if (ins(d, "P_OVERLAY", (long)_OLD_P_OVERLAY)) return -1; |
| 9172 | if (ins(d, "P_NOWAITO", (long)_P_NOWAITO)) return -1; |
| 9173 | if (ins(d, "P_DETACH", (long)_P_DETACH)) return -1; |
Guido van Rossum | 246bc17 | 1999-02-01 23:54:31 +0000 | [diff] [blame] | 9174 | #endif |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 9175 | #endif |
Guido van Rossum | 246bc17 | 1999-02-01 23:54:31 +0000 | [diff] [blame] | 9176 | |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 9177 | #if defined(PYOS_OS2) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9178 | if (insertvalues(d)) return -1; |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 9179 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9180 | return 0; |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 9181 | } |
| 9182 | |
| 9183 | |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 9184 | #if (defined(_MSC_VER) || defined(__WATCOMC__) || defined(__BORLANDC__)) && !defined(__QNX__) |
Guido van Rossum | 0cb96de | 1997-10-01 04:29:29 +0000 | [diff] [blame] | 9185 | #define INITFUNC initnt |
| 9186 | #define MODNAME "nt" |
Tim Peters | 58e0a8c | 2001-05-14 22:32:33 +0000 | [diff] [blame] | 9187 | |
| 9188 | #elif defined(PYOS_OS2) |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 9189 | #define INITFUNC initos2 |
| 9190 | #define MODNAME "os2" |
Tim Peters | 58e0a8c | 2001-05-14 22:32:33 +0000 | [diff] [blame] | 9191 | |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 9192 | #else |
Guido van Rossum | 0cb96de | 1997-10-01 04:29:29 +0000 | [diff] [blame] | 9193 | #define INITFUNC initposix |
| 9194 | #define MODNAME "posix" |
| 9195 | #endif |
| 9196 | |
Mark Hammond | fe51c6d | 2002-08-02 02:27:13 +0000 | [diff] [blame] | 9197 | PyMODINIT_FUNC |
Thomas Wouters | f3f33dc | 2000-07-21 06:00:07 +0000 | [diff] [blame] | 9198 | INITFUNC(void) |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 9199 | { |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9200 | PyObject *m, *v; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 9201 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9202 | m = Py_InitModule3(MODNAME, |
| 9203 | posix_methods, |
| 9204 | posix__doc__); |
| 9205 | if (m == NULL) |
| 9206 | return; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 9207 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9208 | /* Initialize environ dictionary */ |
| 9209 | v = convertenviron(); |
| 9210 | Py_XINCREF(v); |
| 9211 | if (v == NULL || PyModule_AddObject(m, "environ", v) != 0) |
| 9212 | return; |
| 9213 | Py_DECREF(v); |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9214 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9215 | if (all_ins(m)) |
| 9216 | return; |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 9217 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9218 | if (setup_confname_tables(m)) |
| 9219 | return; |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 9220 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9221 | Py_INCREF(PyExc_OSError); |
| 9222 | PyModule_AddObject(m, "error", PyExc_OSError); |
Fred Drake | 762e206 | 1999-08-26 17:23:54 +0000 | [diff] [blame] | 9223 | |
Guido van Rossum | b3d3956 | 2000-01-31 18:41:26 +0000 | [diff] [blame] | 9224 | #ifdef HAVE_PUTENV |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9225 | if (posix_putenv_garbage == NULL) |
| 9226 | posix_putenv_garbage = PyDict_New(); |
Guido van Rossum | b3d3956 | 2000-01-31 18:41:26 +0000 | [diff] [blame] | 9227 | #endif |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 9228 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9229 | if (!initialized) { |
| 9230 | stat_result_desc.name = MODNAME ".stat_result"; |
| 9231 | stat_result_desc.fields[7].name = PyStructSequence_UnnamedField; |
| 9232 | stat_result_desc.fields[8].name = PyStructSequence_UnnamedField; |
| 9233 | stat_result_desc.fields[9].name = PyStructSequence_UnnamedField; |
| 9234 | PyStructSequence_InitType(&StatResultType, &stat_result_desc); |
| 9235 | structseq_new = StatResultType.tp_new; |
| 9236 | StatResultType.tp_new = statresult_new; |
Martin v. Löwis | 19ab6c9 | 2006-04-16 18:55:50 +0000 | [diff] [blame] | 9237 | |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9238 | statvfs_result_desc.name = MODNAME ".statvfs_result"; |
| 9239 | PyStructSequence_InitType(&StatVFSResultType, &statvfs_result_desc); |
Martin v. Löwis | 03824e4 | 2008-12-29 18:17:34 +0000 | [diff] [blame] | 9240 | #ifdef NEED_TICKS_PER_SECOND |
| 9241 | # if defined(HAVE_SYSCONF) && defined(_SC_CLK_TCK) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9242 | ticks_per_second = sysconf(_SC_CLK_TCK); |
Martin v. Löwis | 03824e4 | 2008-12-29 18:17:34 +0000 | [diff] [blame] | 9243 | # elif defined(HZ) |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9244 | ticks_per_second = HZ; |
Martin v. Löwis | 03824e4 | 2008-12-29 18:17:34 +0000 | [diff] [blame] | 9245 | # else |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9246 | ticks_per_second = 60; /* magic fallback value; may be bogus */ |
Martin v. Löwis | 03824e4 | 2008-12-29 18:17:34 +0000 | [diff] [blame] | 9247 | # endif |
| 9248 | #endif |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9249 | } |
| 9250 | Py_INCREF((PyObject*) &StatResultType); |
| 9251 | PyModule_AddObject(m, "stat_result", (PyObject*) &StatResultType); |
| 9252 | Py_INCREF((PyObject*) &StatVFSResultType); |
| 9253 | PyModule_AddObject(m, "statvfs_result", |
| 9254 | (PyObject*) &StatVFSResultType); |
| 9255 | initialized = 1; |
Ronald Oussoren | d06b6f2 | 2006-04-23 11:59:25 +0000 | [diff] [blame] | 9256 | |
| 9257 | #ifdef __APPLE__ |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9258 | /* |
| 9259 | * Step 2 of weak-linking support on Mac OS X. |
| 9260 | * |
| 9261 | * The code below removes functions that are not available on the |
| 9262 | * currently active platform. |
| 9263 | * |
| 9264 | * This block allow one to use a python binary that was build on |
| 9265 | * OSX 10.4 on OSX 10.3, without loosing access to new APIs on |
| 9266 | * OSX 10.4. |
| 9267 | */ |
Ronald Oussoren | d06b6f2 | 2006-04-23 11:59:25 +0000 | [diff] [blame] | 9268 | #ifdef HAVE_FSTATVFS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9269 | if (fstatvfs == NULL) { |
| 9270 | if (PyObject_DelAttrString(m, "fstatvfs") == -1) { |
| 9271 | return; |
| 9272 | } |
| 9273 | } |
Ronald Oussoren | d06b6f2 | 2006-04-23 11:59:25 +0000 | [diff] [blame] | 9274 | #endif /* HAVE_FSTATVFS */ |
| 9275 | |
| 9276 | #ifdef HAVE_STATVFS |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9277 | if (statvfs == NULL) { |
| 9278 | if (PyObject_DelAttrString(m, "statvfs") == -1) { |
| 9279 | return; |
| 9280 | } |
| 9281 | } |
Ronald Oussoren | d06b6f2 | 2006-04-23 11:59:25 +0000 | [diff] [blame] | 9282 | #endif /* HAVE_STATVFS */ |
| 9283 | |
| 9284 | # ifdef HAVE_LCHOWN |
Victor Stinner | d6f8542 | 2010-05-05 23:33:33 +0000 | [diff] [blame] | 9285 | if (lchown == NULL) { |
| 9286 | if (PyObject_DelAttrString(m, "lchown") == -1) { |
| 9287 | return; |
| 9288 | } |
| 9289 | } |
Ronald Oussoren | d06b6f2 | 2006-04-23 11:59:25 +0000 | [diff] [blame] | 9290 | #endif /* HAVE_LCHOWN */ |
| 9291 | |
| 9292 | |
| 9293 | #endif /* __APPLE__ */ |
| 9294 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 9295 | } |
Anthony Baxter | ac6bd46 | 2006-04-13 02:06:09 +0000 | [diff] [blame] | 9296 | |
| 9297 | #ifdef __cplusplus |
| 9298 | } |
| 9299 | #endif |
| 9300 | |
Martin v. Löwis | 18aaa56 | 2006-10-15 08:43:33 +0000 | [diff] [blame] | 9301 | |