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 | /* |
| 18 | * Step 1 of support for weak-linking a number of symbols existing on |
| 19 | * OSX 10.4 and later, see the comment in the #ifdef __APPLE__ block |
| 20 | * at the end of this file for more information. |
| 21 | */ |
| 22 | # pragma weak lchown |
| 23 | # pragma weak statvfs |
| 24 | # pragma weak fstatvfs |
| 25 | |
| 26 | #endif /* __APPLE__ */ |
| 27 | |
Thomas 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 |
| 76 | #include <sys/wait.h> /* For WNOHANG */ |
| 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 |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +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 |
| 107 | #define HAVE_SYSTEM 1 |
| 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 |
| 114 | #ifdef __BORLANDC__ /* Borland compiler */ |
| 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 |
| 120 | #define HAVE_SYSTEM 1 |
| 121 | #define HAVE_WAIT 1 |
| 122 | #else |
| 123 | #ifdef _MSC_VER /* Microsoft compiler */ |
Guido van Rossum | 8d665e6 | 1996-06-26 18:22:49 +0000 | [diff] [blame] | 124 | #define HAVE_GETCWD 1 |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +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 |
| 129 | #define HAVE_SYSTEM 1 |
Tim Peters | ab034fa | 2002-02-01 11:27:43 +0000 | [diff] [blame] | 130 | #define HAVE_CWAIT 1 |
Tim Peters | 11b2306 | 2003-04-23 02:39:17 +0000 | [diff] [blame] | 131 | #define HAVE_FSYNC 1 |
| 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 */ |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 136 | #else /* all other compilers */ |
| 137 | /* Unix functions that the configure script doesn't check for */ |
| 138 | #define HAVE_EXECV 1 |
| 139 | #define HAVE_FORK 1 |
Guido van Rossum | 2242f2f | 2001-04-11 20:58:20 +0000 | [diff] [blame] | 140 | #if defined(__USLC__) && defined(__SCO_VERSION__) /* SCO UDK Compiler */ |
| 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 |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 155 | #define HAVE_SYSTEM 1 |
| 156 | #define HAVE_WAIT 1 |
Guido van Rossum | d371ff1 | 1999-01-25 16:12:23 +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" |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 272 | #include <windows.h> |
Tim Peters | ee66d0c | 2002-07-15 16:10:55 +0000 | [diff] [blame] | 273 | #include <shellapi.h> /* for ShellExecute() */ |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 274 | #define popen _popen |
Guido van Rossum | 794d813 | 1994-08-23 13:48:48 +0000 | [diff] [blame] | 275 | #define pclose _pclose |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 276 | #endif /* _MSC_VER */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 277 | |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 278 | #if defined(PYCC_VACPP) && defined(PYOS_OS2) |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 279 | #include <io.h> |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 280 | #endif /* OS2 */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 281 | |
Tim Peters | bc2e10e | 2002-03-03 23:17:02 +0000 | [diff] [blame] | 282 | #ifndef MAXPATHLEN |
Thomas Wouters | 1ddba60 | 2006-04-25 15:29:46 +0000 | [diff] [blame] | 283 | #if defined(PATH_MAX) && PATH_MAX > 1024 |
| 284 | #define MAXPATHLEN PATH_MAX |
| 285 | #else |
Tim Peters | bc2e10e | 2002-03-03 23:17:02 +0000 | [diff] [blame] | 286 | #define MAXPATHLEN 1024 |
Thomas Wouters | 1ddba60 | 2006-04-25 15:29:46 +0000 | [diff] [blame] | 287 | #endif |
Tim Peters | bc2e10e | 2002-03-03 23:17:02 +0000 | [diff] [blame] | 288 | #endif /* MAXPATHLEN */ |
| 289 | |
Guido van Rossum | 54ecc3d | 1999-01-27 17:53:11 +0000 | [diff] [blame] | 290 | #ifdef UNION_WAIT |
| 291 | /* Emulate some macros on systems that have a union instead of macros */ |
| 292 | |
| 293 | #ifndef WIFEXITED |
| 294 | #define WIFEXITED(u_wait) (!(u_wait).w_termsig && !(u_wait).w_coredump) |
| 295 | #endif |
| 296 | |
| 297 | #ifndef WEXITSTATUS |
| 298 | #define WEXITSTATUS(u_wait) (WIFEXITED(u_wait)?((u_wait).w_retcode):-1) |
| 299 | #endif |
| 300 | |
| 301 | #ifndef WTERMSIG |
| 302 | #define WTERMSIG(u_wait) ((u_wait).w_termsig) |
| 303 | #endif |
| 304 | |
Neal Norwitz | d5a3754 | 2006-03-20 06:48:34 +0000 | [diff] [blame] | 305 | #define WAIT_TYPE union wait |
| 306 | #define WAIT_STATUS_INT(s) (s.w_status) |
| 307 | |
| 308 | #else /* !UNION_WAIT */ |
| 309 | #define WAIT_TYPE int |
| 310 | #define WAIT_STATUS_INT(s) (s) |
Guido van Rossum | 54ecc3d | 1999-01-27 17:53:11 +0000 | [diff] [blame] | 311 | #endif /* UNION_WAIT */ |
| 312 | |
Antoine Pitrou | 794b3fc | 2009-05-23 15:47:13 +0000 | [diff] [blame] | 313 | /* Issue #1983: pid_t can be longer than a C long on some systems */ |
| 314 | #ifdef SIZEOF_PID_T |
| 315 | #if SIZEOF_PID_T == SIZEOF_INT |
| 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)" |
| 329 | #endif |
| 330 | #endif /* SIZEOF_PID_T */ |
| 331 | |
Greg Ward | b48bc17 | 2000-03-01 21:51:56 +0000 | [diff] [blame] | 332 | /* Don't use the "_r" form if we don't need it (also, won't have a |
| 333 | prototype for it, at least on Solaris -- maybe others as well?). */ |
| 334 | #if defined(HAVE_CTERMID_R) && defined(WITH_THREAD) |
| 335 | #define USE_CTERMID_R |
| 336 | #endif |
| 337 | |
| 338 | #if defined(HAVE_TMPNAM_R) && defined(WITH_THREAD) |
| 339 | #define USE_TMPNAM_R |
| 340 | #endif |
| 341 | |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 342 | /* choose the appropriate stat and fstat functions and return structs */ |
Guido van Rossum | 64529cd | 2000-06-30 22:45:12 +0000 | [diff] [blame] | 343 | #undef STAT |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 344 | #if defined(MS_WIN64) || defined(MS_WINDOWS) |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 345 | # define STAT win32_stat |
| 346 | # define FSTAT win32_fstat |
| 347 | # define STRUCT_STAT struct win32_stat |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 348 | #else |
| 349 | # define STAT stat |
| 350 | # define FSTAT fstat |
| 351 | # define STRUCT_STAT struct stat |
| 352 | #endif |
| 353 | |
Tim Peters | 11b2306 | 2003-04-23 02:39:17 +0000 | [diff] [blame] | 354 | #if defined(MAJOR_IN_MKDEV) |
Martin v. Löwis | dbe3f76 | 2002-10-10 14:27:30 +0000 | [diff] [blame] | 355 | #include <sys/mkdev.h> |
| 356 | #else |
| 357 | #if defined(MAJOR_IN_SYSMACROS) |
| 358 | #include <sys/sysmacros.h> |
| 359 | #endif |
Neal Norwitz | 3d94942 | 2002-04-20 13:46:43 +0000 | [diff] [blame] | 360 | #if defined(HAVE_MKNOD) && defined(HAVE_SYS_MKDEV_H) |
| 361 | #include <sys/mkdev.h> |
| 362 | #endif |
Martin v. Löwis | dbe3f76 | 2002-10-10 14:27:30 +0000 | [diff] [blame] | 363 | #endif |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 364 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 365 | /* Return a dictionary corresponding to the POSIX environment table */ |
Jack Jansen | ea0c382 | 2002-08-01 21:57:49 +0000 | [diff] [blame] | 366 | #ifdef WITH_NEXT_FRAMEWORK |
| 367 | /* On Darwin/MacOSX a shared library or framework has no access to |
| 368 | ** environ directly, we must obtain it with _NSGetEnviron(). |
| 369 | */ |
| 370 | #include <crt_externs.h> |
| 371 | static char **environ; |
| 372 | #elif !defined(_MSC_VER) && ( !defined(__WATCOMC__) || defined(__QNX__) ) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 373 | extern char **environ; |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 374 | #endif /* !_MSC_VER */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 375 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 376 | static PyObject * |
Thomas Wouters | f3f33dc | 2000-07-21 06:00:07 +0000 | [diff] [blame] | 377 | convertenviron(void) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 378 | { |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 379 | PyObject *d; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 380 | char **e; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 381 | d = PyDict_New(); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 382 | if (d == NULL) |
| 383 | return NULL; |
Jack Jansen | ea0c382 | 2002-08-01 21:57:49 +0000 | [diff] [blame] | 384 | #ifdef WITH_NEXT_FRAMEWORK |
| 385 | if (environ == NULL) |
| 386 | environ = *_NSGetEnviron(); |
| 387 | #endif |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 388 | if (environ == NULL) |
| 389 | return d; |
Guido van Rossum | 6a619f4 | 1999-08-03 19:41:10 +0000 | [diff] [blame] | 390 | /* This part ignores errors */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 391 | for (e = environ; *e != NULL; e++) { |
Guido van Rossum | 6a619f4 | 1999-08-03 19:41:10 +0000 | [diff] [blame] | 392 | PyObject *k; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 393 | PyObject *v; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 394 | char *p = strchr(*e, '='); |
| 395 | if (p == NULL) |
| 396 | continue; |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 397 | k = PyString_FromStringAndSize(*e, (int)(p-*e)); |
Guido van Rossum | 6a619f4 | 1999-08-03 19:41:10 +0000 | [diff] [blame] | 398 | if (k == NULL) { |
| 399 | PyErr_Clear(); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 400 | continue; |
Guido van Rossum | 6a619f4 | 1999-08-03 19:41:10 +0000 | [diff] [blame] | 401 | } |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 402 | v = PyString_FromString(p+1); |
Guido van Rossum | 6a619f4 | 1999-08-03 19:41:10 +0000 | [diff] [blame] | 403 | if (v == NULL) { |
| 404 | PyErr_Clear(); |
| 405 | Py_DECREF(k); |
| 406 | continue; |
| 407 | } |
| 408 | if (PyDict_GetItem(d, k) == NULL) { |
| 409 | if (PyDict_SetItem(d, k, v) != 0) |
| 410 | PyErr_Clear(); |
| 411 | } |
| 412 | Py_DECREF(k); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 413 | Py_DECREF(v); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 414 | } |
Martin v. Löwis | c16f3bd | 2003-05-03 09:14:54 +0000 | [diff] [blame] | 415 | #if defined(PYOS_OS2) |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 416 | { |
| 417 | APIRET rc; |
| 418 | char buffer[1024]; /* OS/2 Provides a Documented Max of 1024 Chars */ |
| 419 | |
| 420 | rc = DosQueryExtLIBPATH(buffer, BEGIN_LIBPATH); |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 421 | if (rc == NO_ERROR) { /* (not a type, envname is NOT 'BEGIN_LIBPATH') */ |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 422 | PyObject *v = PyString_FromString(buffer); |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 423 | PyDict_SetItemString(d, "BEGINLIBPATH", v); |
| 424 | Py_DECREF(v); |
| 425 | } |
| 426 | rc = DosQueryExtLIBPATH(buffer, END_LIBPATH); |
| 427 | if (rc == NO_ERROR) { /* (not a typo, envname is NOT 'END_LIBPATH') */ |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 428 | PyObject *v = PyString_FromString(buffer); |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 429 | PyDict_SetItemString(d, "ENDLIBPATH", v); |
| 430 | Py_DECREF(v); |
| 431 | } |
| 432 | } |
| 433 | #endif |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 434 | return d; |
| 435 | } |
| 436 | |
| 437 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 438 | /* Set a POSIX-specific error from errno, and return NULL */ |
| 439 | |
Barry Warsaw | d58d764 | 1998-07-23 16:14:40 +0000 | [diff] [blame] | 440 | static PyObject * |
Thomas Wouters | f3f33dc | 2000-07-21 06:00:07 +0000 | [diff] [blame] | 441 | posix_error(void) |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 442 | { |
Barry Warsaw | ca74da4 | 1999-02-09 19:31:45 +0000 | [diff] [blame] | 443 | return PyErr_SetFromErrno(PyExc_OSError); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 444 | } |
Barry Warsaw | d58d764 | 1998-07-23 16:14:40 +0000 | [diff] [blame] | 445 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 446 | posix_error_with_filename(char* name) |
Barry Warsaw | d58d764 | 1998-07-23 16:14:40 +0000 | [diff] [blame] | 447 | { |
Barry Warsaw | ca74da4 | 1999-02-09 19:31:45 +0000 | [diff] [blame] | 448 | return PyErr_SetFromErrnoWithFilename(PyExc_OSError, name); |
Barry Warsaw | d58d764 | 1998-07-23 16:14:40 +0000 | [diff] [blame] | 449 | } |
| 450 | |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 451 | #ifdef Py_WIN_WIDE_FILENAMES |
| 452 | static PyObject * |
| 453 | posix_error_with_unicode_filename(Py_UNICODE* name) |
| 454 | { |
| 455 | return PyErr_SetFromErrnoWithUnicodeFilename(PyExc_OSError, name); |
| 456 | } |
| 457 | #endif /* Py_WIN_WIDE_FILENAMES */ |
| 458 | |
| 459 | |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 460 | static PyObject * |
| 461 | posix_error_with_allocated_filename(char* name) |
| 462 | { |
| 463 | PyObject *rc = PyErr_SetFromErrnoWithFilename(PyExc_OSError, name); |
| 464 | PyMem_Free(name); |
| 465 | return rc; |
| 466 | } |
| 467 | |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 468 | #ifdef MS_WINDOWS |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 469 | static PyObject * |
| 470 | win32_error(char* function, char* filename) |
| 471 | { |
Mark Hammond | 33a6da9 | 2000-08-15 00:46:38 +0000 | [diff] [blame] | 472 | /* XXX We should pass the function name along in the future. |
| 473 | (_winreg.c also wants to pass the function name.) |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 474 | This would however require an additional param to the |
Mark Hammond | 33a6da9 | 2000-08-15 00:46:38 +0000 | [diff] [blame] | 475 | Windows error object, which is non-trivial. |
| 476 | */ |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 477 | errno = GetLastError(); |
| 478 | if (filename) |
Mark Hammond | 33a6da9 | 2000-08-15 00:46:38 +0000 | [diff] [blame] | 479 | return PyErr_SetFromWindowsErrWithFilename(errno, filename); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 480 | else |
Mark Hammond | 33a6da9 | 2000-08-15 00:46:38 +0000 | [diff] [blame] | 481 | return PyErr_SetFromWindowsErr(errno); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 482 | } |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 483 | |
| 484 | #ifdef Py_WIN_WIDE_FILENAMES |
| 485 | static PyObject * |
| 486 | win32_error_unicode(char* function, Py_UNICODE* filename) |
| 487 | { |
| 488 | /* XXX - see win32_error for comments on 'function' */ |
| 489 | errno = GetLastError(); |
| 490 | if (filename) |
| 491 | return PyErr_SetFromWindowsErrWithUnicodeFilename(errno, filename); |
| 492 | else |
| 493 | return PyErr_SetFromWindowsErr(errno); |
| 494 | } |
| 495 | |
| 496 | static PyObject *_PyUnicode_FromFileSystemEncodedObject(register PyObject *obj) |
| 497 | { |
Martin v. Löwis | 8e0d494 | 2006-05-04 10:08:42 +0000 | [diff] [blame] | 498 | } |
| 499 | |
Martin v. Löwis | 8e0d494 | 2006-05-04 10:08:42 +0000 | [diff] [blame] | 500 | static int |
Hirokazu Yamamoto | a0fdd72 | 2008-08-17 09:19:52 +0000 | [diff] [blame] | 501 | convert_to_unicode(PyObject **param) |
Martin v. Löwis | 8e0d494 | 2006-05-04 10:08:42 +0000 | [diff] [blame] | 502 | { |
Hirokazu Yamamoto | a0fdd72 | 2008-08-17 09:19:52 +0000 | [diff] [blame] | 503 | if (PyUnicode_CheckExact(*param)) |
| 504 | Py_INCREF(*param); |
| 505 | else if (PyUnicode_Check(*param)) |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 506 | /* For a Unicode subtype that's not a Unicode object, |
| 507 | return a true Unicode object with the same data. */ |
Hirokazu Yamamoto | a0fdd72 | 2008-08-17 09:19:52 +0000 | [diff] [blame] | 508 | *param = PyUnicode_FromUnicode(PyUnicode_AS_UNICODE(*param), |
| 509 | PyUnicode_GET_SIZE(*param)); |
Martin v. Löwis | 8e0d494 | 2006-05-04 10:08:42 +0000 | [diff] [blame] | 510 | else |
Hirokazu Yamamoto | a0fdd72 | 2008-08-17 09:19:52 +0000 | [diff] [blame] | 511 | *param = PyUnicode_FromEncodedObject(*param, |
Martin v. Löwis | 8e0d494 | 2006-05-04 10:08:42 +0000 | [diff] [blame] | 512 | Py_FileSystemDefaultEncoding, |
| 513 | "strict"); |
| 514 | return (*param) != NULL; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 515 | } |
| 516 | |
| 517 | #endif /* Py_WIN_WIDE_FILENAMES */ |
| 518 | |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 519 | #endif |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 520 | |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 521 | #if defined(PYOS_OS2) |
| 522 | /********************************************************************** |
| 523 | * Helper Function to Trim and Format OS/2 Messages |
| 524 | **********************************************************************/ |
| 525 | static void |
| 526 | os2_formatmsg(char *msgbuf, int msglen, char *reason) |
| 527 | { |
| 528 | msgbuf[msglen] = '\0'; /* OS/2 Doesn't Guarantee a Terminator */ |
| 529 | |
| 530 | if (strlen(msgbuf) > 0) { /* If Non-Empty Msg, Trim CRLF */ |
| 531 | char *lastc = &msgbuf[ strlen(msgbuf)-1 ]; |
| 532 | |
Neal Norwitz | 30b5c5d | 2005-12-19 06:05:18 +0000 | [diff] [blame] | 533 | while (lastc > msgbuf && isspace(Py_CHARMASK(*lastc))) |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 534 | *lastc-- = '\0'; /* Trim Trailing Whitespace (CRLF) */ |
| 535 | } |
| 536 | |
| 537 | /* Add Optional Reason Text */ |
| 538 | if (reason) { |
| 539 | strcat(msgbuf, " : "); |
| 540 | strcat(msgbuf, reason); |
| 541 | } |
| 542 | } |
| 543 | |
| 544 | /********************************************************************** |
| 545 | * Decode an OS/2 Operating System Error Code |
| 546 | * |
| 547 | * A convenience function to lookup an OS/2 error code and return a |
| 548 | * text message we can use to raise a Python exception. |
| 549 | * |
| 550 | * Notes: |
| 551 | * The messages for errors returned from the OS/2 kernel reside in |
| 552 | * the file OSO001.MSG in the \OS2 directory hierarchy. |
| 553 | * |
| 554 | **********************************************************************/ |
| 555 | static char * |
| 556 | os2_strerror(char *msgbuf, int msgbuflen, int errorcode, char *reason) |
| 557 | { |
| 558 | APIRET rc; |
| 559 | ULONG msglen; |
| 560 | |
| 561 | /* Retrieve Kernel-Related Error Message from OSO001.MSG File */ |
| 562 | Py_BEGIN_ALLOW_THREADS |
| 563 | rc = DosGetMessage(NULL, 0, msgbuf, msgbuflen, |
| 564 | errorcode, "oso001.msg", &msglen); |
| 565 | Py_END_ALLOW_THREADS |
| 566 | |
| 567 | if (rc == NO_ERROR) |
| 568 | os2_formatmsg(msgbuf, msglen, reason); |
| 569 | else |
Tim Peters | 1ceb5fb | 2001-11-28 20:32:57 +0000 | [diff] [blame] | 570 | PyOS_snprintf(msgbuf, msgbuflen, |
Tim Peters | 885d457 | 2001-11-28 20:27:42 +0000 | [diff] [blame] | 571 | "unknown OS error #%d", errorcode); |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 572 | |
| 573 | return msgbuf; |
| 574 | } |
| 575 | |
| 576 | /* Set an OS/2-specific error and return NULL. OS/2 kernel |
| 577 | errors are not in a global variable e.g. 'errno' nor are |
| 578 | they congruent with posix error numbers. */ |
| 579 | |
| 580 | static PyObject * os2_error(int code) |
| 581 | { |
| 582 | char text[1024]; |
| 583 | PyObject *v; |
| 584 | |
| 585 | os2_strerror(text, sizeof(text), code, ""); |
| 586 | |
| 587 | v = Py_BuildValue("(is)", code, text); |
| 588 | if (v != NULL) { |
Barry Warsaw | ca74da4 | 1999-02-09 19:31:45 +0000 | [diff] [blame] | 589 | PyErr_SetObject(PyExc_OSError, v); |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 590 | Py_DECREF(v); |
| 591 | } |
| 592 | return NULL; /* Signal to Python that an Exception is Pending */ |
| 593 | } |
| 594 | |
| 595 | #endif /* OS2 */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 596 | |
| 597 | /* POSIX generic methods */ |
| 598 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 599 | static PyObject * |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 600 | posix_fildes(PyObject *fdobj, int (*func)(int)) |
| 601 | { |
| 602 | int fd; |
| 603 | int res; |
| 604 | fd = PyObject_AsFileDescriptor(fdobj); |
| 605 | if (fd < 0) |
| 606 | return NULL; |
| 607 | Py_BEGIN_ALLOW_THREADS |
| 608 | res = (*func)(fd); |
| 609 | Py_END_ALLOW_THREADS |
| 610 | if (res < 0) |
| 611 | return posix_error(); |
| 612 | Py_INCREF(Py_None); |
| 613 | return Py_None; |
| 614 | } |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 615 | |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 616 | #ifdef Py_WIN_WIDE_FILENAMES |
Tim Peters | 11b2306 | 2003-04-23 02:39:17 +0000 | [diff] [blame] | 617 | static int |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 618 | unicode_file_names(void) |
| 619 | { |
| 620 | static int canusewide = -1; |
| 621 | if (canusewide == -1) { |
Tim Peters | 11b2306 | 2003-04-23 02:39:17 +0000 | [diff] [blame] | 622 | /* As per doc for ::GetVersion(), this is the correct test for |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 623 | the Windows NT family. */ |
| 624 | canusewide = (GetVersion() < 0x80000000) ? 1 : 0; |
| 625 | } |
| 626 | return canusewide; |
| 627 | } |
| 628 | #endif |
Tim Peters | 11b2306 | 2003-04-23 02:39:17 +0000 | [diff] [blame] | 629 | |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 630 | static PyObject * |
Martin v. Löwis | 8e0d494 | 2006-05-04 10:08:42 +0000 | [diff] [blame] | 631 | posix_1str(PyObject *args, char *format, int (*func)(const char*)) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 632 | { |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 633 | char *path1 = NULL; |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 634 | int res; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 635 | if (!PyArg_ParseTuple(args, format, |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 636 | Py_FileSystemDefaultEncoding, &path1)) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 637 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 638 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 639 | res = (*func)(path1); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 640 | Py_END_ALLOW_THREADS |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 641 | if (res < 0) |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 642 | return posix_error_with_allocated_filename(path1); |
| 643 | PyMem_Free(path1); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 644 | Py_INCREF(Py_None); |
| 645 | return Py_None; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 646 | } |
| 647 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 648 | static PyObject * |
Tim Peters | 11b2306 | 2003-04-23 02:39:17 +0000 | [diff] [blame] | 649 | posix_2str(PyObject *args, |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 650 | char *format, |
Martin v. Löwis | 8e0d494 | 2006-05-04 10:08:42 +0000 | [diff] [blame] | 651 | int (*func)(const char *, const char *)) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 652 | { |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 653 | char *path1 = NULL, *path2 = NULL; |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 654 | int res; |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 655 | if (!PyArg_ParseTuple(args, format, |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 656 | Py_FileSystemDefaultEncoding, &path1, |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 657 | Py_FileSystemDefaultEncoding, &path2)) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 658 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 659 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 660 | res = (*func)(path1, path2); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 661 | Py_END_ALLOW_THREADS |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 662 | PyMem_Free(path1); |
| 663 | PyMem_Free(path2); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 664 | if (res != 0) |
Barry Warsaw | d58d764 | 1998-07-23 16:14:40 +0000 | [diff] [blame] | 665 | /* XXX how to report both path1 and path2??? */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 666 | return posix_error(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 667 | Py_INCREF(Py_None); |
| 668 | return Py_None; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 669 | } |
| 670 | |
Martin v. Löwis | 8e0d494 | 2006-05-04 10:08:42 +0000 | [diff] [blame] | 671 | #ifdef Py_WIN_WIDE_FILENAMES |
| 672 | static PyObject* |
| 673 | win32_1str(PyObject* args, char* func, |
| 674 | char* format, BOOL (__stdcall *funcA)(LPCSTR), |
| 675 | char* wformat, BOOL (__stdcall *funcW)(LPWSTR)) |
| 676 | { |
| 677 | PyObject *uni; |
| 678 | char *ansi; |
| 679 | BOOL result; |
| 680 | if (unicode_file_names()) { |
| 681 | if (!PyArg_ParseTuple(args, wformat, &uni)) |
| 682 | PyErr_Clear(); |
| 683 | else { |
| 684 | Py_BEGIN_ALLOW_THREADS |
| 685 | result = funcW(PyUnicode_AsUnicode(uni)); |
| 686 | Py_END_ALLOW_THREADS |
| 687 | if (!result) |
| 688 | return win32_error_unicode(func, PyUnicode_AsUnicode(uni)); |
| 689 | Py_INCREF(Py_None); |
| 690 | return Py_None; |
| 691 | } |
| 692 | } |
| 693 | if (!PyArg_ParseTuple(args, format, &ansi)) |
| 694 | return NULL; |
| 695 | Py_BEGIN_ALLOW_THREADS |
| 696 | result = funcA(ansi); |
| 697 | Py_END_ALLOW_THREADS |
| 698 | if (!result) |
| 699 | return win32_error(func, ansi); |
| 700 | Py_INCREF(Py_None); |
| 701 | return Py_None; |
| 702 | |
| 703 | } |
| 704 | |
| 705 | /* This is a reimplementation of the C library's chdir function, |
| 706 | but one that produces Win32 errors instead of DOS error codes. |
| 707 | chdir is essentially a wrapper around SetCurrentDirectory; however, |
| 708 | it also needs to set "magic" environment variables indicating |
| 709 | the per-drive current directory, which are of the form =<drive>: */ |
| 710 | BOOL __stdcall |
| 711 | win32_chdir(LPCSTR path) |
| 712 | { |
| 713 | char new_path[MAX_PATH+1]; |
| 714 | int result; |
| 715 | char env[4] = "=x:"; |
| 716 | |
| 717 | if(!SetCurrentDirectoryA(path)) |
| 718 | return FALSE; |
| 719 | result = GetCurrentDirectoryA(MAX_PATH+1, new_path); |
| 720 | if (!result) |
| 721 | return FALSE; |
| 722 | /* In the ANSI API, there should not be any paths longer |
| 723 | than MAX_PATH. */ |
| 724 | assert(result <= MAX_PATH+1); |
| 725 | if (strncmp(new_path, "\\\\", 2) == 0 || |
| 726 | strncmp(new_path, "//", 2) == 0) |
| 727 | /* UNC path, nothing to do. */ |
| 728 | return TRUE; |
| 729 | env[1] = new_path[0]; |
| 730 | return SetEnvironmentVariableA(env, new_path); |
| 731 | } |
| 732 | |
| 733 | /* The Unicode version differs from the ANSI version |
| 734 | since the current directory might exceed MAX_PATH characters */ |
| 735 | BOOL __stdcall |
| 736 | win32_wchdir(LPCWSTR path) |
| 737 | { |
| 738 | wchar_t _new_path[MAX_PATH+1], *new_path = _new_path; |
| 739 | int result; |
| 740 | wchar_t env[4] = L"=x:"; |
| 741 | |
| 742 | if(!SetCurrentDirectoryW(path)) |
| 743 | return FALSE; |
| 744 | result = GetCurrentDirectoryW(MAX_PATH+1, new_path); |
| 745 | if (!result) |
| 746 | return FALSE; |
| 747 | if (result > MAX_PATH+1) { |
Hirokazu Yamamoto | 2c66b7c | 2008-10-09 18:06:58 +0000 | [diff] [blame] | 748 | new_path = malloc(result * sizeof(wchar_t)); |
Martin v. Löwis | 8e0d494 | 2006-05-04 10:08:42 +0000 | [diff] [blame] | 749 | if (!new_path) { |
| 750 | SetLastError(ERROR_OUTOFMEMORY); |
| 751 | return FALSE; |
| 752 | } |
Hirokazu Yamamoto | 2c66b7c | 2008-10-09 18:06:58 +0000 | [diff] [blame] | 753 | result = GetCurrentDirectoryW(result, new_path); |
| 754 | if (!result) { |
| 755 | free(new_path); |
| 756 | return FALSE; |
| 757 | } |
Martin v. Löwis | 8e0d494 | 2006-05-04 10:08:42 +0000 | [diff] [blame] | 758 | } |
| 759 | if (wcsncmp(new_path, L"\\\\", 2) == 0 || |
| 760 | wcsncmp(new_path, L"//", 2) == 0) |
| 761 | /* UNC path, nothing to do. */ |
| 762 | return TRUE; |
| 763 | env[1] = new_path[0]; |
| 764 | result = SetEnvironmentVariableW(env, new_path); |
| 765 | if (new_path != _new_path) |
| 766 | free(new_path); |
| 767 | return result; |
| 768 | } |
| 769 | #endif |
| 770 | |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 771 | #ifdef MS_WINDOWS |
| 772 | /* The CRT of Windows has a number of flaws wrt. its stat() implementation: |
| 773 | - time stamps are restricted to second resolution |
| 774 | - file modification times suffer from forth-and-back conversions between |
| 775 | UTC and local time |
| 776 | Therefore, we implement our own stat, based on the Win32 API directly. |
| 777 | */ |
| 778 | #define HAVE_STAT_NSEC 1 |
| 779 | |
| 780 | struct win32_stat{ |
| 781 | int st_dev; |
| 782 | __int64 st_ino; |
| 783 | unsigned short st_mode; |
| 784 | int st_nlink; |
| 785 | int st_uid; |
| 786 | int st_gid; |
| 787 | int st_rdev; |
| 788 | __int64 st_size; |
| 789 | int st_atime; |
| 790 | int st_atime_nsec; |
| 791 | int st_mtime; |
| 792 | int st_mtime_nsec; |
| 793 | int st_ctime; |
| 794 | int st_ctime_nsec; |
| 795 | }; |
| 796 | |
| 797 | static __int64 secs_between_epochs = 11644473600; /* Seconds between 1.1.1601 and 1.1.1970 */ |
| 798 | |
| 799 | static void |
| 800 | FILE_TIME_to_time_t_nsec(FILETIME *in_ptr, int *time_out, int* nsec_out) |
| 801 | { |
Martin v. Löwis | 77c176d | 2006-05-12 17:22:04 +0000 | [diff] [blame] | 802 | /* XXX endianness. Shouldn't matter, as all Windows implementations are little-endian */ |
| 803 | /* Cannot simply cast and dereference in_ptr, |
| 804 | since it might not be aligned properly */ |
| 805 | __int64 in; |
| 806 | memcpy(&in, in_ptr, sizeof(in)); |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 807 | *nsec_out = (int)(in % 10000000) * 100; /* FILETIME is in units of 100 nsec. */ |
| 808 | /* XXX Win32 supports time stamps past 2038; we currently don't */ |
| 809 | *time_out = Py_SAFE_DOWNCAST((in / 10000000) - secs_between_epochs, __int64, int); |
| 810 | } |
| 811 | |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 812 | static void |
| 813 | time_t_to_FILE_TIME(int time_in, int nsec_in, FILETIME *out_ptr) |
| 814 | { |
| 815 | /* XXX endianness */ |
| 816 | __int64 out; |
| 817 | out = time_in + secs_between_epochs; |
Martin v. Löwis | f43893a | 2006-10-09 20:44:25 +0000 | [diff] [blame] | 818 | out = out * 10000000 + nsec_in / 100; |
Martin v. Löwis | 77c176d | 2006-05-12 17:22:04 +0000 | [diff] [blame] | 819 | memcpy(out_ptr, &out, sizeof(out)); |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 820 | } |
| 821 | |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 822 | /* Below, we *know* that ugo+r is 0444 */ |
| 823 | #if _S_IREAD != 0400 |
| 824 | #error Unsupported C library |
| 825 | #endif |
| 826 | static int |
| 827 | attributes_to_mode(DWORD attr) |
| 828 | { |
| 829 | int m = 0; |
| 830 | if (attr & FILE_ATTRIBUTE_DIRECTORY) |
| 831 | m |= _S_IFDIR | 0111; /* IFEXEC for user,group,other */ |
| 832 | else |
| 833 | m |= _S_IFREG; |
| 834 | if (attr & FILE_ATTRIBUTE_READONLY) |
| 835 | m |= 0444; |
| 836 | else |
| 837 | m |= 0666; |
| 838 | return m; |
| 839 | } |
| 840 | |
| 841 | static int |
| 842 | attribute_data_to_stat(WIN32_FILE_ATTRIBUTE_DATA *info, struct win32_stat *result) |
| 843 | { |
| 844 | memset(result, 0, sizeof(*result)); |
| 845 | result->st_mode = attributes_to_mode(info->dwFileAttributes); |
| 846 | result->st_size = (((__int64)info->nFileSizeHigh)<<32) + info->nFileSizeLow; |
| 847 | FILE_TIME_to_time_t_nsec(&info->ftCreationTime, &result->st_ctime, &result->st_ctime_nsec); |
| 848 | FILE_TIME_to_time_t_nsec(&info->ftLastWriteTime, &result->st_mtime, &result->st_mtime_nsec); |
| 849 | FILE_TIME_to_time_t_nsec(&info->ftLastAccessTime, &result->st_atime, &result->st_atime_nsec); |
| 850 | |
| 851 | return 0; |
| 852 | } |
| 853 | |
Martin v. Löwis | 012bc72 | 2006-10-15 09:43:39 +0000 | [diff] [blame] | 854 | /* Emulate GetFileAttributesEx[AW] on Windows 95 */ |
| 855 | static int checked = 0; |
| 856 | static BOOL (CALLBACK *gfaxa)(LPCSTR, GET_FILEEX_INFO_LEVELS, LPVOID); |
| 857 | static BOOL (CALLBACK *gfaxw)(LPCWSTR, GET_FILEEX_INFO_LEVELS, LPVOID); |
| 858 | static void |
| 859 | check_gfax() |
| 860 | { |
| 861 | HINSTANCE hKernel32; |
| 862 | if (checked) |
| 863 | return; |
| 864 | checked = 1; |
| 865 | hKernel32 = GetModuleHandle("KERNEL32"); |
| 866 | *(FARPROC*)&gfaxa = GetProcAddress(hKernel32, "GetFileAttributesExA"); |
| 867 | *(FARPROC*)&gfaxw = GetProcAddress(hKernel32, "GetFileAttributesExW"); |
| 868 | } |
| 869 | |
Martin v. Löwis | 3bf573f | 2007-04-04 18:30:36 +0000 | [diff] [blame] | 870 | static BOOL |
| 871 | attributes_from_dir(LPCSTR pszFile, LPWIN32_FILE_ATTRIBUTE_DATA pfad) |
| 872 | { |
| 873 | HANDLE hFindFile; |
| 874 | WIN32_FIND_DATAA FileData; |
| 875 | hFindFile = FindFirstFileA(pszFile, &FileData); |
| 876 | if (hFindFile == INVALID_HANDLE_VALUE) |
| 877 | return FALSE; |
| 878 | FindClose(hFindFile); |
| 879 | pfad->dwFileAttributes = FileData.dwFileAttributes; |
| 880 | pfad->ftCreationTime = FileData.ftCreationTime; |
| 881 | pfad->ftLastAccessTime = FileData.ftLastAccessTime; |
| 882 | pfad->ftLastWriteTime = FileData.ftLastWriteTime; |
| 883 | pfad->nFileSizeHigh = FileData.nFileSizeHigh; |
| 884 | pfad->nFileSizeLow = FileData.nFileSizeLow; |
| 885 | return TRUE; |
| 886 | } |
| 887 | |
| 888 | static BOOL |
| 889 | attributes_from_dir_w(LPCWSTR pszFile, LPWIN32_FILE_ATTRIBUTE_DATA pfad) |
| 890 | { |
| 891 | HANDLE hFindFile; |
| 892 | WIN32_FIND_DATAW FileData; |
| 893 | hFindFile = FindFirstFileW(pszFile, &FileData); |
| 894 | if (hFindFile == INVALID_HANDLE_VALUE) |
| 895 | return FALSE; |
| 896 | FindClose(hFindFile); |
| 897 | pfad->dwFileAttributes = FileData.dwFileAttributes; |
| 898 | pfad->ftCreationTime = FileData.ftCreationTime; |
| 899 | pfad->ftLastAccessTime = FileData.ftLastAccessTime; |
| 900 | pfad->ftLastWriteTime = FileData.ftLastWriteTime; |
| 901 | pfad->nFileSizeHigh = FileData.nFileSizeHigh; |
| 902 | pfad->nFileSizeLow = FileData.nFileSizeLow; |
| 903 | return TRUE; |
| 904 | } |
| 905 | |
Martin v. Löwis | 012bc72 | 2006-10-15 09:43:39 +0000 | [diff] [blame] | 906 | static BOOL WINAPI |
| 907 | Py_GetFileAttributesExA(LPCSTR pszFile, |
| 908 | GET_FILEEX_INFO_LEVELS level, |
| 909 | LPVOID pv) |
| 910 | { |
| 911 | BOOL result; |
Martin v. Löwis | 012bc72 | 2006-10-15 09:43:39 +0000 | [diff] [blame] | 912 | LPWIN32_FILE_ATTRIBUTE_DATA pfad = pv; |
| 913 | /* First try to use the system's implementation, if that is |
| 914 | available and either succeeds to gives an error other than |
| 915 | that it isn't implemented. */ |
| 916 | check_gfax(); |
| 917 | if (gfaxa) { |
| 918 | result = gfaxa(pszFile, level, pv); |
| 919 | if (result || GetLastError() != ERROR_CALL_NOT_IMPLEMENTED) |
| 920 | return result; |
| 921 | } |
| 922 | /* It's either not present, or not implemented. |
| 923 | Emulate using FindFirstFile. */ |
| 924 | if (level != GetFileExInfoStandard) { |
| 925 | SetLastError(ERROR_INVALID_PARAMETER); |
| 926 | return FALSE; |
| 927 | } |
| 928 | /* Use GetFileAttributes to validate that the file name |
| 929 | does not contain wildcards (which FindFirstFile would |
| 930 | accept). */ |
| 931 | if (GetFileAttributesA(pszFile) == 0xFFFFFFFF) |
| 932 | return FALSE; |
Martin v. Löwis | 3bf573f | 2007-04-04 18:30:36 +0000 | [diff] [blame] | 933 | return attributes_from_dir(pszFile, pfad); |
Martin v. Löwis | 012bc72 | 2006-10-15 09:43:39 +0000 | [diff] [blame] | 934 | } |
| 935 | |
| 936 | static BOOL WINAPI |
| 937 | Py_GetFileAttributesExW(LPCWSTR pszFile, |
| 938 | GET_FILEEX_INFO_LEVELS level, |
| 939 | LPVOID pv) |
| 940 | { |
| 941 | BOOL result; |
Martin v. Löwis | 012bc72 | 2006-10-15 09:43:39 +0000 | [diff] [blame] | 942 | LPWIN32_FILE_ATTRIBUTE_DATA pfad = pv; |
| 943 | /* First try to use the system's implementation, if that is |
| 944 | available and either succeeds to gives an error other than |
| 945 | that it isn't implemented. */ |
| 946 | check_gfax(); |
| 947 | if (gfaxa) { |
| 948 | result = gfaxw(pszFile, level, pv); |
| 949 | if (result || GetLastError() != ERROR_CALL_NOT_IMPLEMENTED) |
| 950 | return result; |
| 951 | } |
| 952 | /* It's either not present, or not implemented. |
| 953 | Emulate using FindFirstFile. */ |
| 954 | if (level != GetFileExInfoStandard) { |
| 955 | SetLastError(ERROR_INVALID_PARAMETER); |
| 956 | return FALSE; |
| 957 | } |
| 958 | /* Use GetFileAttributes to validate that the file name |
| 959 | does not contain wildcards (which FindFirstFile would |
| 960 | accept). */ |
| 961 | if (GetFileAttributesW(pszFile) == 0xFFFFFFFF) |
| 962 | return FALSE; |
Martin v. Löwis | 3bf573f | 2007-04-04 18:30:36 +0000 | [diff] [blame] | 963 | return attributes_from_dir_w(pszFile, pfad); |
Martin v. Löwis | 012bc72 | 2006-10-15 09:43:39 +0000 | [diff] [blame] | 964 | } |
| 965 | |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 966 | static int |
| 967 | win32_stat(const char* path, struct win32_stat *result) |
| 968 | { |
| 969 | WIN32_FILE_ATTRIBUTE_DATA info; |
| 970 | int code; |
| 971 | char *dot; |
| 972 | /* XXX not supported on Win95 and NT 3.x */ |
Martin v. Löwis | 012bc72 | 2006-10-15 09:43:39 +0000 | [diff] [blame] | 973 | if (!Py_GetFileAttributesExA(path, GetFileExInfoStandard, &info)) { |
Martin v. Löwis | 3bf573f | 2007-04-04 18:30:36 +0000 | [diff] [blame] | 974 | if (GetLastError() != ERROR_SHARING_VIOLATION) { |
| 975 | /* Protocol violation: we explicitly clear errno, instead of |
| 976 | setting it to a POSIX error. Callers should use GetLastError. */ |
| 977 | errno = 0; |
| 978 | return -1; |
| 979 | } else { |
| 980 | /* Could not get attributes on open file. Fall back to |
| 981 | reading the directory. */ |
| 982 | if (!attributes_from_dir(path, &info)) { |
| 983 | /* Very strange. This should not fail now */ |
| 984 | errno = 0; |
| 985 | return -1; |
| 986 | } |
| 987 | } |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 988 | } |
| 989 | code = attribute_data_to_stat(&info, result); |
| 990 | if (code != 0) |
| 991 | return code; |
| 992 | /* Set S_IFEXEC if it is an .exe, .bat, ... */ |
| 993 | dot = strrchr(path, '.'); |
| 994 | if (dot) { |
| 995 | if (stricmp(dot, ".bat") == 0 || |
| 996 | stricmp(dot, ".cmd") == 0 || |
| 997 | stricmp(dot, ".exe") == 0 || |
| 998 | stricmp(dot, ".com") == 0) |
| 999 | result->st_mode |= 0111; |
| 1000 | } |
| 1001 | return code; |
| 1002 | } |
| 1003 | |
| 1004 | static int |
| 1005 | win32_wstat(const wchar_t* path, struct win32_stat *result) |
| 1006 | { |
| 1007 | int code; |
| 1008 | const wchar_t *dot; |
| 1009 | WIN32_FILE_ATTRIBUTE_DATA info; |
| 1010 | /* XXX not supported on Win95 and NT 3.x */ |
Martin v. Löwis | 012bc72 | 2006-10-15 09:43:39 +0000 | [diff] [blame] | 1011 | if (!Py_GetFileAttributesExW(path, GetFileExInfoStandard, &info)) { |
Martin v. Löwis | 3bf573f | 2007-04-04 18:30:36 +0000 | [diff] [blame] | 1012 | if (GetLastError() != ERROR_SHARING_VIOLATION) { |
| 1013 | /* Protocol violation: we explicitly clear errno, instead of |
| 1014 | setting it to a POSIX error. Callers should use GetLastError. */ |
| 1015 | errno = 0; |
| 1016 | return -1; |
| 1017 | } else { |
| 1018 | /* Could not get attributes on open file. Fall back to |
| 1019 | reading the directory. */ |
| 1020 | if (!attributes_from_dir_w(path, &info)) { |
| 1021 | /* Very strange. This should not fail now */ |
| 1022 | errno = 0; |
| 1023 | return -1; |
| 1024 | } |
| 1025 | } |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1026 | } |
| 1027 | code = attribute_data_to_stat(&info, result); |
| 1028 | if (code < 0) |
| 1029 | return code; |
| 1030 | /* Set IFEXEC if it is an .exe, .bat, ... */ |
| 1031 | dot = wcsrchr(path, '.'); |
| 1032 | if (dot) { |
| 1033 | if (_wcsicmp(dot, L".bat") == 0 || |
| 1034 | _wcsicmp(dot, L".cmd") == 0 || |
| 1035 | _wcsicmp(dot, L".exe") == 0 || |
| 1036 | _wcsicmp(dot, L".com") == 0) |
| 1037 | result->st_mode |= 0111; |
| 1038 | } |
| 1039 | return code; |
| 1040 | } |
| 1041 | |
| 1042 | static int |
| 1043 | win32_fstat(int file_number, struct win32_stat *result) |
| 1044 | { |
| 1045 | BY_HANDLE_FILE_INFORMATION info; |
| 1046 | HANDLE h; |
| 1047 | int type; |
| 1048 | |
| 1049 | h = (HANDLE)_get_osfhandle(file_number); |
| 1050 | |
| 1051 | /* Protocol violation: we explicitly clear errno, instead of |
| 1052 | setting it to a POSIX error. Callers should use GetLastError. */ |
| 1053 | errno = 0; |
| 1054 | |
| 1055 | if (h == INVALID_HANDLE_VALUE) { |
| 1056 | /* This is really a C library error (invalid file handle). |
| 1057 | We set the Win32 error to the closes one matching. */ |
| 1058 | SetLastError(ERROR_INVALID_HANDLE); |
| 1059 | return -1; |
| 1060 | } |
| 1061 | memset(result, 0, sizeof(*result)); |
| 1062 | |
| 1063 | type = GetFileType(h); |
| 1064 | if (type == FILE_TYPE_UNKNOWN) { |
| 1065 | DWORD error = GetLastError(); |
| 1066 | if (error != 0) { |
| 1067 | return -1; |
| 1068 | } |
| 1069 | /* else: valid but unknown file */ |
| 1070 | } |
| 1071 | |
| 1072 | if (type != FILE_TYPE_DISK) { |
| 1073 | if (type == FILE_TYPE_CHAR) |
| 1074 | result->st_mode = _S_IFCHR; |
| 1075 | else if (type == FILE_TYPE_PIPE) |
| 1076 | result->st_mode = _S_IFIFO; |
| 1077 | return 0; |
| 1078 | } |
| 1079 | |
| 1080 | if (!GetFileInformationByHandle(h, &info)) { |
| 1081 | return -1; |
| 1082 | } |
| 1083 | |
| 1084 | /* similar to stat() */ |
| 1085 | result->st_mode = attributes_to_mode(info.dwFileAttributes); |
| 1086 | result->st_size = (((__int64)info.nFileSizeHigh)<<32) + info.nFileSizeLow; |
| 1087 | FILE_TIME_to_time_t_nsec(&info.ftCreationTime, &result->st_ctime, &result->st_ctime_nsec); |
| 1088 | FILE_TIME_to_time_t_nsec(&info.ftLastWriteTime, &result->st_mtime, &result->st_mtime_nsec); |
| 1089 | FILE_TIME_to_time_t_nsec(&info.ftLastAccessTime, &result->st_atime, &result->st_atime_nsec); |
| 1090 | /* specific to fstat() */ |
| 1091 | result->st_nlink = info.nNumberOfLinks; |
| 1092 | result->st_ino = (((__int64)info.nFileIndexHigh)<<32) + info.nFileIndexLow; |
| 1093 | return 0; |
| 1094 | } |
| 1095 | |
| 1096 | #endif /* MS_WINDOWS */ |
| 1097 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1098 | PyDoc_STRVAR(stat_result__doc__, |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1099 | "stat_result: Result from stat or lstat.\n\n\ |
| 1100 | This object may be accessed either as a tuple of\n\ |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 1101 | (mode, ino, dev, nlink, uid, gid, size, atime, mtime, ctime)\n\ |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1102 | or via the attributes st_mode, st_ino, st_dev, st_nlink, st_uid, and so on.\n\ |
| 1103 | \n\ |
Hye-Shik Chang | 5f937a7 | 2005-06-02 13:09:30 +0000 | [diff] [blame] | 1104 | Posix/windows: If your platform supports st_blksize, st_blocks, st_rdev,\n\ |
| 1105 | or st_flags, they are available as attributes only.\n\ |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1106 | \n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1107 | See os.stat for more information."); |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1108 | |
| 1109 | static PyStructSequence_Field stat_result_fields[] = { |
| 1110 | {"st_mode", "protection bits"}, |
| 1111 | {"st_ino", "inode"}, |
| 1112 | {"st_dev", "device"}, |
| 1113 | {"st_nlink", "number of hard links"}, |
| 1114 | {"st_uid", "user ID of owner"}, |
| 1115 | {"st_gid", "group ID of owner"}, |
| 1116 | {"st_size", "total size, in bytes"}, |
Martin v. Löwis | f607bda | 2002-10-16 18:27:39 +0000 | [diff] [blame] | 1117 | /* The NULL is replaced with PyStructSequence_UnnamedField later. */ |
| 1118 | {NULL, "integer time of last access"}, |
| 1119 | {NULL, "integer time of last modification"}, |
| 1120 | {NULL, "integer time of last change"}, |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1121 | {"st_atime", "time of last access"}, |
| 1122 | {"st_mtime", "time of last modification"}, |
| 1123 | {"st_ctime", "time of last change"}, |
Martin v. Löwis | 60a5d72 | 2002-10-16 20:28:25 +0000 | [diff] [blame] | 1124 | #ifdef HAVE_STRUCT_STAT_ST_BLKSIZE |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1125 | {"st_blksize", "blocksize for filesystem I/O"}, |
| 1126 | #endif |
Martin v. Löwis | 60a5d72 | 2002-10-16 20:28:25 +0000 | [diff] [blame] | 1127 | #ifdef HAVE_STRUCT_STAT_ST_BLOCKS |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1128 | {"st_blocks", "number of blocks allocated"}, |
| 1129 | #endif |
Martin v. Löwis | 60a5d72 | 2002-10-16 20:28:25 +0000 | [diff] [blame] | 1130 | #ifdef HAVE_STRUCT_STAT_ST_RDEV |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1131 | {"st_rdev", "device type (if inode device)"}, |
| 1132 | #endif |
Hye-Shik Chang | 5f937a7 | 2005-06-02 13:09:30 +0000 | [diff] [blame] | 1133 | #ifdef HAVE_STRUCT_STAT_ST_FLAGS |
| 1134 | {"st_flags", "user defined flags for file"}, |
| 1135 | #endif |
Martin v. Löwis | ebd9d5b | 2005-08-09 15:00:59 +0000 | [diff] [blame] | 1136 | #ifdef HAVE_STRUCT_STAT_ST_GEN |
| 1137 | {"st_gen", "generation number"}, |
| 1138 | #endif |
| 1139 | #ifdef HAVE_STRUCT_STAT_ST_BIRTHTIME |
| 1140 | {"st_birthtime", "time of creation"}, |
| 1141 | #endif |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1142 | {0} |
| 1143 | }; |
| 1144 | |
Martin v. Löwis | 60a5d72 | 2002-10-16 20:28:25 +0000 | [diff] [blame] | 1145 | #ifdef HAVE_STRUCT_STAT_ST_BLKSIZE |
Martin v. Löwis | f607bda | 2002-10-16 18:27:39 +0000 | [diff] [blame] | 1146 | #define ST_BLKSIZE_IDX 13 |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1147 | #else |
Martin v. Löwis | f607bda | 2002-10-16 18:27:39 +0000 | [diff] [blame] | 1148 | #define ST_BLKSIZE_IDX 12 |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1149 | #endif |
| 1150 | |
Martin v. Löwis | 60a5d72 | 2002-10-16 20:28:25 +0000 | [diff] [blame] | 1151 | #ifdef HAVE_STRUCT_STAT_ST_BLOCKS |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1152 | #define ST_BLOCKS_IDX (ST_BLKSIZE_IDX+1) |
| 1153 | #else |
| 1154 | #define ST_BLOCKS_IDX ST_BLKSIZE_IDX |
| 1155 | #endif |
| 1156 | |
Martin v. Löwis | 60a5d72 | 2002-10-16 20:28:25 +0000 | [diff] [blame] | 1157 | #ifdef HAVE_STRUCT_STAT_ST_RDEV |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1158 | #define ST_RDEV_IDX (ST_BLOCKS_IDX+1) |
| 1159 | #else |
| 1160 | #define ST_RDEV_IDX ST_BLOCKS_IDX |
| 1161 | #endif |
| 1162 | |
Hye-Shik Chang | 5f937a7 | 2005-06-02 13:09:30 +0000 | [diff] [blame] | 1163 | #ifdef HAVE_STRUCT_STAT_ST_FLAGS |
| 1164 | #define ST_FLAGS_IDX (ST_RDEV_IDX+1) |
| 1165 | #else |
| 1166 | #define ST_FLAGS_IDX ST_RDEV_IDX |
| 1167 | #endif |
| 1168 | |
Martin v. Löwis | ebd9d5b | 2005-08-09 15:00:59 +0000 | [diff] [blame] | 1169 | #ifdef HAVE_STRUCT_STAT_ST_GEN |
Martin v. Löwis | f09582e | 2005-08-14 21:42:34 +0000 | [diff] [blame] | 1170 | #define ST_GEN_IDX (ST_FLAGS_IDX+1) |
Martin v. Löwis | ebd9d5b | 2005-08-09 15:00:59 +0000 | [diff] [blame] | 1171 | #else |
Martin v. Löwis | f09582e | 2005-08-14 21:42:34 +0000 | [diff] [blame] | 1172 | #define ST_GEN_IDX ST_FLAGS_IDX |
Martin v. Löwis | ebd9d5b | 2005-08-09 15:00:59 +0000 | [diff] [blame] | 1173 | #endif |
| 1174 | |
| 1175 | #ifdef HAVE_STRUCT_STAT_ST_BIRTHTIME |
| 1176 | #define ST_BIRTHTIME_IDX (ST_GEN_IDX+1) |
| 1177 | #else |
| 1178 | #define ST_BIRTHTIME_IDX ST_GEN_IDX |
| 1179 | #endif |
| 1180 | |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1181 | static PyStructSequence_Desc stat_result_desc = { |
| 1182 | "stat_result", /* name */ |
| 1183 | stat_result__doc__, /* doc */ |
| 1184 | stat_result_fields, |
| 1185 | 10 |
| 1186 | }; |
| 1187 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1188 | PyDoc_STRVAR(statvfs_result__doc__, |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1189 | "statvfs_result: Result from statvfs or fstatvfs.\n\n\ |
| 1190 | This object may be accessed either as a tuple of\n\ |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 1191 | (bsize, frsize, blocks, bfree, bavail, files, ffree, favail, flag, namemax),\n\ |
Guido van Rossum | a4dc73e | 2001-10-18 20:53:15 +0000 | [diff] [blame] | 1192 | 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] | 1193 | \n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1194 | See os.statvfs for more information."); |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1195 | |
| 1196 | static PyStructSequence_Field statvfs_result_fields[] = { |
| 1197 | {"f_bsize", }, |
| 1198 | {"f_frsize", }, |
| 1199 | {"f_blocks", }, |
| 1200 | {"f_bfree", }, |
| 1201 | {"f_bavail", }, |
| 1202 | {"f_files", }, |
| 1203 | {"f_ffree", }, |
| 1204 | {"f_favail", }, |
| 1205 | {"f_flag", }, |
| 1206 | {"f_namemax",}, |
| 1207 | {0} |
| 1208 | }; |
| 1209 | |
| 1210 | static PyStructSequence_Desc statvfs_result_desc = { |
| 1211 | "statvfs_result", /* name */ |
| 1212 | statvfs_result__doc__, /* doc */ |
| 1213 | statvfs_result_fields, |
| 1214 | 10 |
| 1215 | }; |
| 1216 | |
Martin v. Löwis | 19ab6c9 | 2006-04-16 18:55:50 +0000 | [diff] [blame] | 1217 | static int initialized; |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1218 | static PyTypeObject StatResultType; |
| 1219 | static PyTypeObject StatVFSResultType; |
Martin v. Löwis | f607bda | 2002-10-16 18:27:39 +0000 | [diff] [blame] | 1220 | static newfunc structseq_new; |
| 1221 | |
| 1222 | static PyObject * |
| 1223 | statresult_new(PyTypeObject *type, PyObject *args, PyObject *kwds) |
| 1224 | { |
| 1225 | PyStructSequence *result; |
| 1226 | int i; |
| 1227 | |
| 1228 | result = (PyStructSequence*)structseq_new(type, args, kwds); |
| 1229 | if (!result) |
| 1230 | return NULL; |
| 1231 | /* If we have been initialized from a tuple, |
| 1232 | st_?time might be set to None. Initialize it |
| 1233 | from the int slots. */ |
| 1234 | for (i = 7; i <= 9; i++) { |
| 1235 | if (result->ob_item[i+3] == Py_None) { |
| 1236 | Py_DECREF(Py_None); |
| 1237 | Py_INCREF(result->ob_item[i]); |
| 1238 | result->ob_item[i+3] = result->ob_item[i]; |
| 1239 | } |
| 1240 | } |
| 1241 | return (PyObject*)result; |
| 1242 | } |
| 1243 | |
| 1244 | |
| 1245 | |
| 1246 | /* If true, st_?time is float. */ |
Martin v. Löwis | fe33d0b | 2005-01-16 08:57:39 +0000 | [diff] [blame] | 1247 | static int _stat_float_times = 1; |
Martin v. Löwis | f607bda | 2002-10-16 18:27:39 +0000 | [diff] [blame] | 1248 | |
| 1249 | PyDoc_STRVAR(stat_float_times__doc__, |
| 1250 | "stat_float_times([newval]) -> oldval\n\n\ |
| 1251 | Determine whether os.[lf]stat represents time stamps as float objects.\n\ |
| 1252 | If newval is True, future calls to stat() return floats, if it is False,\n\ |
| 1253 | future calls return ints. \n\ |
| 1254 | If newval is omitted, return the current setting.\n"); |
| 1255 | |
| 1256 | static PyObject* |
| 1257 | stat_float_times(PyObject* self, PyObject *args) |
| 1258 | { |
| 1259 | int newval = -1; |
| 1260 | if (!PyArg_ParseTuple(args, "|i:stat_float_times", &newval)) |
| 1261 | return NULL; |
| 1262 | if (newval == -1) |
| 1263 | /* Return old value */ |
| 1264 | return PyBool_FromLong(_stat_float_times); |
| 1265 | _stat_float_times = newval; |
| 1266 | Py_INCREF(Py_None); |
| 1267 | return Py_None; |
| 1268 | } |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1269 | |
Martin v. Löwis | 94717ed | 2002-09-09 14:24:16 +0000 | [diff] [blame] | 1270 | static void |
| 1271 | fill_time(PyObject *v, int index, time_t sec, unsigned long nsec) |
| 1272 | { |
Martin v. Löwis | f607bda | 2002-10-16 18:27:39 +0000 | [diff] [blame] | 1273 | PyObject *fval,*ival; |
| 1274 | #if SIZEOF_TIME_T > SIZEOF_LONG |
Martin v. Löwis | b9a0f91 | 2003-03-29 10:06:18 +0000 | [diff] [blame] | 1275 | ival = PyLong_FromLongLong((PY_LONG_LONG)sec); |
Martin v. Löwis | f607bda | 2002-10-16 18:27:39 +0000 | [diff] [blame] | 1276 | #else |
| 1277 | ival = PyInt_FromLong((long)sec); |
| 1278 | #endif |
Neal Norwitz | e0a81af | 2006-08-12 01:50:38 +0000 | [diff] [blame] | 1279 | if (!ival) |
| 1280 | return; |
Martin v. Löwis | f607bda | 2002-10-16 18:27:39 +0000 | [diff] [blame] | 1281 | if (_stat_float_times) { |
| 1282 | fval = PyFloat_FromDouble(sec + 1e-9*nsec); |
| 1283 | } else { |
| 1284 | fval = ival; |
| 1285 | Py_INCREF(fval); |
| 1286 | } |
| 1287 | PyStructSequence_SET_ITEM(v, index, ival); |
| 1288 | PyStructSequence_SET_ITEM(v, index+3, fval); |
Martin v. Löwis | 94717ed | 2002-09-09 14:24:16 +0000 | [diff] [blame] | 1289 | } |
| 1290 | |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 1291 | /* pack a system stat C structure into the Python stat tuple |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 1292 | (used by posix_stat() and posix_fstat()) */ |
| 1293 | static PyObject* |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1294 | _pystat_fromstructstat(STRUCT_STAT *st) |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 1295 | { |
Martin v. Löwis | 94717ed | 2002-09-09 14:24:16 +0000 | [diff] [blame] | 1296 | unsigned long ansec, mnsec, cnsec; |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1297 | PyObject *v = PyStructSequence_New(&StatResultType); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 1298 | if (v == NULL) |
| 1299 | return NULL; |
| 1300 | |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1301 | PyStructSequence_SET_ITEM(v, 0, PyInt_FromLong((long)st->st_mode)); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 1302 | #ifdef HAVE_LARGEFILE_SUPPORT |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 1303 | PyStructSequence_SET_ITEM(v, 1, |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1304 | PyLong_FromLongLong((PY_LONG_LONG)st->st_ino)); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 1305 | #else |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1306 | PyStructSequence_SET_ITEM(v, 1, PyInt_FromLong((long)st->st_ino)); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 1307 | #endif |
| 1308 | #if defined(HAVE_LONG_LONG) && !defined(MS_WINDOWS) |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 1309 | PyStructSequence_SET_ITEM(v, 2, |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1310 | PyLong_FromLongLong((PY_LONG_LONG)st->st_dev)); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 1311 | #else |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1312 | PyStructSequence_SET_ITEM(v, 2, PyInt_FromLong((long)st->st_dev)); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 1313 | #endif |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1314 | PyStructSequence_SET_ITEM(v, 3, PyInt_FromLong((long)st->st_nlink)); |
| 1315 | PyStructSequence_SET_ITEM(v, 4, PyInt_FromLong((long)st->st_uid)); |
| 1316 | PyStructSequence_SET_ITEM(v, 5, PyInt_FromLong((long)st->st_gid)); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 1317 | #ifdef HAVE_LARGEFILE_SUPPORT |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 1318 | PyStructSequence_SET_ITEM(v, 6, |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1319 | PyLong_FromLongLong((PY_LONG_LONG)st->st_size)); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 1320 | #else |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1321 | PyStructSequence_SET_ITEM(v, 6, PyInt_FromLong(st->st_size)); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 1322 | #endif |
Martin v. Löwis | 94717ed | 2002-09-09 14:24:16 +0000 | [diff] [blame] | 1323 | |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1324 | #if defined(HAVE_STAT_TV_NSEC) |
| 1325 | ansec = st->st_atim.tv_nsec; |
| 1326 | mnsec = st->st_mtim.tv_nsec; |
| 1327 | cnsec = st->st_ctim.tv_nsec; |
| 1328 | #elif defined(HAVE_STAT_TV_NSEC2) |
| 1329 | ansec = st->st_atimespec.tv_nsec; |
| 1330 | mnsec = st->st_mtimespec.tv_nsec; |
| 1331 | cnsec = st->st_ctimespec.tv_nsec; |
| 1332 | #elif defined(HAVE_STAT_NSEC) |
| 1333 | ansec = st->st_atime_nsec; |
| 1334 | mnsec = st->st_mtime_nsec; |
| 1335 | cnsec = st->st_ctime_nsec; |
Martin v. Löwis | ebd9d5b | 2005-08-09 15:00:59 +0000 | [diff] [blame] | 1336 | #else |
Martin v. Löwis | 94717ed | 2002-09-09 14:24:16 +0000 | [diff] [blame] | 1337 | ansec = mnsec = cnsec = 0; |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1338 | #endif |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1339 | fill_time(v, 7, st->st_atime, ansec); |
| 1340 | fill_time(v, 8, st->st_mtime, mnsec); |
| 1341 | fill_time(v, 9, st->st_ctime, cnsec); |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1342 | |
Martin v. Löwis | 60a5d72 | 2002-10-16 20:28:25 +0000 | [diff] [blame] | 1343 | #ifdef HAVE_STRUCT_STAT_ST_BLKSIZE |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 1344 | PyStructSequence_SET_ITEM(v, ST_BLKSIZE_IDX, |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1345 | PyInt_FromLong((long)st->st_blksize)); |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1346 | #endif |
Martin v. Löwis | 60a5d72 | 2002-10-16 20:28:25 +0000 | [diff] [blame] | 1347 | #ifdef HAVE_STRUCT_STAT_ST_BLOCKS |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 1348 | PyStructSequence_SET_ITEM(v, ST_BLOCKS_IDX, |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1349 | PyInt_FromLong((long)st->st_blocks)); |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1350 | #endif |
Martin v. Löwis | 60a5d72 | 2002-10-16 20:28:25 +0000 | [diff] [blame] | 1351 | #ifdef HAVE_STRUCT_STAT_ST_RDEV |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 1352 | PyStructSequence_SET_ITEM(v, ST_RDEV_IDX, |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1353 | PyInt_FromLong((long)st->st_rdev)); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 1354 | #endif |
Martin v. Löwis | ebd9d5b | 2005-08-09 15:00:59 +0000 | [diff] [blame] | 1355 | #ifdef HAVE_STRUCT_STAT_ST_GEN |
| 1356 | PyStructSequence_SET_ITEM(v, ST_GEN_IDX, |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1357 | PyInt_FromLong((long)st->st_gen)); |
Martin v. Löwis | ebd9d5b | 2005-08-09 15:00:59 +0000 | [diff] [blame] | 1358 | #endif |
| 1359 | #ifdef HAVE_STRUCT_STAT_ST_BIRTHTIME |
| 1360 | { |
| 1361 | PyObject *val; |
| 1362 | unsigned long bsec,bnsec; |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1363 | bsec = (long)st->st_birthtime; |
Martin v. Löwis | ebd9d5b | 2005-08-09 15:00:59 +0000 | [diff] [blame] | 1364 | #ifdef HAVE_STAT_TV_NSEC2 |
Hye-Shik Chang | d69e034 | 2006-02-19 16:22:22 +0000 | [diff] [blame] | 1365 | bnsec = st->st_birthtimespec.tv_nsec; |
Martin v. Löwis | ebd9d5b | 2005-08-09 15:00:59 +0000 | [diff] [blame] | 1366 | #else |
| 1367 | bnsec = 0; |
| 1368 | #endif |
| 1369 | if (_stat_float_times) { |
| 1370 | val = PyFloat_FromDouble(bsec + 1e-9*bnsec); |
| 1371 | } else { |
| 1372 | val = PyInt_FromLong((long)bsec); |
| 1373 | } |
| 1374 | PyStructSequence_SET_ITEM(v, ST_BIRTHTIME_IDX, |
| 1375 | val); |
| 1376 | } |
| 1377 | #endif |
Hye-Shik Chang | 5f937a7 | 2005-06-02 13:09:30 +0000 | [diff] [blame] | 1378 | #ifdef HAVE_STRUCT_STAT_ST_FLAGS |
| 1379 | PyStructSequence_SET_ITEM(v, ST_FLAGS_IDX, |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1380 | PyInt_FromLong((long)st->st_flags)); |
Hye-Shik Chang | 5f937a7 | 2005-06-02 13:09:30 +0000 | [diff] [blame] | 1381 | #endif |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 1382 | |
| 1383 | if (PyErr_Occurred()) { |
| 1384 | Py_DECREF(v); |
| 1385 | return NULL; |
| 1386 | } |
| 1387 | |
| 1388 | return v; |
| 1389 | } |
| 1390 | |
Martin v. Löwis | d894872 | 2004-06-02 09:57:56 +0000 | [diff] [blame] | 1391 | #ifdef MS_WINDOWS |
| 1392 | |
| 1393 | /* IsUNCRoot -- test whether the supplied path is of the form \\SERVER\SHARE\, |
| 1394 | where / can be used in place of \ and the trailing slash is optional. |
| 1395 | Both SERVER and SHARE must have at least one character. |
| 1396 | */ |
| 1397 | |
| 1398 | #define ISSLASHA(c) ((c) == '\\' || (c) == '/') |
| 1399 | #define ISSLASHW(c) ((c) == L'\\' || (c) == L'/') |
Kristján Valur Jónsson | dbeaa69 | 2006-06-09 16:28:01 +0000 | [diff] [blame] | 1400 | #ifndef ARRAYSIZE |
Martin v. Löwis | d894872 | 2004-06-02 09:57:56 +0000 | [diff] [blame] | 1401 | #define ARRAYSIZE(a) (sizeof(a) / sizeof(a[0])) |
Kristján Valur Jónsson | dbeaa69 | 2006-06-09 16:28:01 +0000 | [diff] [blame] | 1402 | #endif |
Martin v. Löwis | d894872 | 2004-06-02 09:57:56 +0000 | [diff] [blame] | 1403 | |
Tim Peters | 4ad8217 | 2004-08-30 17:02:04 +0000 | [diff] [blame] | 1404 | static BOOL |
Martin v. Löwis | d894872 | 2004-06-02 09:57:56 +0000 | [diff] [blame] | 1405 | IsUNCRootA(char *path, int pathlen) |
| 1406 | { |
| 1407 | #define ISSLASH ISSLASHA |
| 1408 | |
| 1409 | int i, share; |
| 1410 | |
| 1411 | if (pathlen < 5 || !ISSLASH(path[0]) || !ISSLASH(path[1])) |
| 1412 | /* minimum UNCRoot is \\x\y */ |
| 1413 | return FALSE; |
| 1414 | for (i = 2; i < pathlen ; i++) |
| 1415 | if (ISSLASH(path[i])) break; |
| 1416 | if (i == 2 || i == pathlen) |
| 1417 | /* do not allow \\\SHARE or \\SERVER */ |
| 1418 | return FALSE; |
| 1419 | share = i+1; |
| 1420 | for (i = share; i < pathlen; i++) |
| 1421 | if (ISSLASH(path[i])) break; |
| 1422 | return (i != share && (i == pathlen || i == pathlen-1)); |
| 1423 | |
| 1424 | #undef ISSLASH |
| 1425 | } |
| 1426 | |
| 1427 | #ifdef Py_WIN_WIDE_FILENAMES |
Tim Peters | 4ad8217 | 2004-08-30 17:02:04 +0000 | [diff] [blame] | 1428 | static BOOL |
Martin v. Löwis | d894872 | 2004-06-02 09:57:56 +0000 | [diff] [blame] | 1429 | IsUNCRootW(Py_UNICODE *path, int pathlen) |
| 1430 | { |
| 1431 | #define ISSLASH ISSLASHW |
| 1432 | |
| 1433 | int i, share; |
| 1434 | |
| 1435 | if (pathlen < 5 || !ISSLASH(path[0]) || !ISSLASH(path[1])) |
| 1436 | /* minimum UNCRoot is \\x\y */ |
| 1437 | return FALSE; |
| 1438 | for (i = 2; i < pathlen ; i++) |
| 1439 | if (ISSLASH(path[i])) break; |
| 1440 | if (i == 2 || i == pathlen) |
| 1441 | /* do not allow \\\SHARE or \\SERVER */ |
| 1442 | return FALSE; |
| 1443 | share = i+1; |
| 1444 | for (i = share; i < pathlen; i++) |
| 1445 | if (ISSLASH(path[i])) break; |
| 1446 | return (i != share && (i == pathlen || i == pathlen-1)); |
| 1447 | |
| 1448 | #undef ISSLASH |
| 1449 | } |
| 1450 | #endif /* Py_WIN_WIDE_FILENAMES */ |
| 1451 | #endif /* MS_WINDOWS */ |
| 1452 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1453 | static PyObject * |
Tim Peters | 11b2306 | 2003-04-23 02:39:17 +0000 | [diff] [blame] | 1454 | posix_do_stat(PyObject *self, PyObject *args, |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 1455 | char *format, |
Martin v. Löwis | 79acb9e | 2002-12-06 12:48:53 +0000 | [diff] [blame] | 1456 | #ifdef __VMS |
| 1457 | int (*statfunc)(const char *, STRUCT_STAT *, ...), |
| 1458 | #else |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 1459 | int (*statfunc)(const char *, STRUCT_STAT *), |
Martin v. Löwis | 79acb9e | 2002-12-06 12:48:53 +0000 | [diff] [blame] | 1460 | #endif |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 1461 | char *wformat, |
| 1462 | int (*wstatfunc)(const Py_UNICODE *, STRUCT_STAT *)) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1463 | { |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 1464 | STRUCT_STAT st; |
Tim Peters | 500bd03 | 2001-12-19 19:05:01 +0000 | [diff] [blame] | 1465 | char *path = NULL; /* pass this to stat; do not free() it */ |
| 1466 | char *pathfree = NULL; /* this memory must be free'd */ |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 1467 | int res; |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1468 | PyObject *result; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 1469 | |
| 1470 | #ifdef Py_WIN_WIDE_FILENAMES |
| 1471 | /* If on wide-character-capable OS see if argument |
| 1472 | is Unicode and if so use wide API. */ |
| 1473 | if (unicode_file_names()) { |
| 1474 | PyUnicodeObject *po; |
| 1475 | if (PyArg_ParseTuple(args, wformat, &po)) { |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1476 | Py_UNICODE *wpath = PyUnicode_AS_UNICODE(po); |
| 1477 | |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 1478 | Py_BEGIN_ALLOW_THREADS |
| 1479 | /* PyUnicode_AS_UNICODE result OK without |
| 1480 | thread lock as it is a simple dereference. */ |
| 1481 | res = wstatfunc(wpath, &st); |
| 1482 | Py_END_ALLOW_THREADS |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1483 | |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 1484 | if (res != 0) |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1485 | return win32_error_unicode("stat", wpath); |
| 1486 | return _pystat_fromstructstat(&st); |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 1487 | } |
| 1488 | /* Drop the argument parsing error as narrow strings |
| 1489 | are also valid. */ |
| 1490 | PyErr_Clear(); |
| 1491 | } |
| 1492 | #endif |
| 1493 | |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 1494 | if (!PyArg_ParseTuple(args, format, |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 1495 | Py_FileSystemDefaultEncoding, &path)) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1496 | return NULL; |
Tim Peters | 500bd03 | 2001-12-19 19:05:01 +0000 | [diff] [blame] | 1497 | pathfree = path; |
Guido van Rossum | ace88ae | 2000-04-21 18:54:45 +0000 | [diff] [blame] | 1498 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1499 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 1500 | res = (*statfunc)(path, &st); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1501 | Py_END_ALLOW_THREADS |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1502 | |
| 1503 | if (res != 0) { |
| 1504 | #ifdef MS_WINDOWS |
| 1505 | result = win32_error("stat", pathfree); |
| 1506 | #else |
| 1507 | result = posix_error_with_filename(pathfree); |
| 1508 | #endif |
| 1509 | } |
| 1510 | else |
| 1511 | result = _pystat_fromstructstat(&st); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 1512 | |
Tim Peters | 500bd03 | 2001-12-19 19:05:01 +0000 | [diff] [blame] | 1513 | PyMem_Free(pathfree); |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1514 | return result; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1515 | } |
| 1516 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1517 | /* POSIX methods */ |
| 1518 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1519 | PyDoc_STRVAR(posix_access__doc__, |
Georg Brandl | 7a28447 | 2007-01-27 19:38:50 +0000 | [diff] [blame] | 1520 | "access(path, mode) -> True if granted, False otherwise\n\n\ |
Guido van Rossum | a0b9075 | 2002-06-18 16:22:43 +0000 | [diff] [blame] | 1521 | Use the real uid/gid to test for access to a path. Note that most\n\ |
| 1522 | operations will use the effective uid/gid, therefore this routine can\n\ |
| 1523 | be used in a suid/sgid environment to test if the invoking user has the\n\ |
| 1524 | specified access to the path. The mode argument can be F_OK to test\n\ |
| 1525 | 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] | 1526 | |
| 1527 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 1528 | posix_access(PyObject *self, PyObject *args) |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 1529 | { |
Guido van Rossum | 015f22a | 1999-01-06 22:52:38 +0000 | [diff] [blame] | 1530 | char *path; |
| 1531 | int mode; |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 1532 | |
Martin v. Löwis | 1b699a5 | 2003-09-12 16:25:38 +0000 | [diff] [blame] | 1533 | #ifdef Py_WIN_WIDE_FILENAMES |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 1534 | DWORD attr; |
Martin v. Löwis | 1b699a5 | 2003-09-12 16:25:38 +0000 | [diff] [blame] | 1535 | if (unicode_file_names()) { |
| 1536 | PyUnicodeObject *po; |
| 1537 | if (PyArg_ParseTuple(args, "Ui:access", &po, &mode)) { |
| 1538 | Py_BEGIN_ALLOW_THREADS |
| 1539 | /* PyUnicode_AS_UNICODE OK without thread lock as |
| 1540 | it is a simple dereference. */ |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 1541 | attr = GetFileAttributesW(PyUnicode_AS_UNICODE(po)); |
Martin v. Löwis | 1b699a5 | 2003-09-12 16:25:38 +0000 | [diff] [blame] | 1542 | Py_END_ALLOW_THREADS |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 1543 | goto finish; |
Martin v. Löwis | 1b699a5 | 2003-09-12 16:25:38 +0000 | [diff] [blame] | 1544 | } |
| 1545 | /* Drop the argument parsing error as narrow strings |
| 1546 | are also valid. */ |
| 1547 | PyErr_Clear(); |
| 1548 | } |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 1549 | if (!PyArg_ParseTuple(args, "eti:access", |
| 1550 | Py_FileSystemDefaultEncoding, &path, &mode)) |
| 1551 | return 0; |
| 1552 | Py_BEGIN_ALLOW_THREADS |
| 1553 | attr = GetFileAttributesA(path); |
| 1554 | Py_END_ALLOW_THREADS |
| 1555 | PyMem_Free(path); |
| 1556 | finish: |
| 1557 | if (attr == 0xFFFFFFFF) |
| 1558 | /* File does not exist, or cannot read attributes */ |
| 1559 | return PyBool_FromLong(0); |
| 1560 | /* Access is possible if either write access wasn't requested, or |
Martin v. Löwis | 7b3cc06 | 2007-12-03 23:09:04 +0000 | [diff] [blame] | 1561 | the file isn't read-only, or if it's a directory, as there are |
| 1562 | no read-only directories on Windows. */ |
| 1563 | return PyBool_FromLong(!(mode & 2) |
| 1564 | || !(attr & FILE_ATTRIBUTE_READONLY) |
| 1565 | || (attr & FILE_ATTRIBUTE_DIRECTORY)); |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 1566 | #else |
| 1567 | int res; |
Martin v. Löwis | b60ae99 | 2005-03-08 09:10:29 +0000 | [diff] [blame] | 1568 | if (!PyArg_ParseTuple(args, "eti:access", |
| 1569 | Py_FileSystemDefaultEncoding, &path, &mode)) |
Guido van Rossum | 015f22a | 1999-01-06 22:52:38 +0000 | [diff] [blame] | 1570 | return NULL; |
| 1571 | Py_BEGIN_ALLOW_THREADS |
| 1572 | res = access(path, mode); |
| 1573 | Py_END_ALLOW_THREADS |
Neal Norwitz | 24b3c22 | 2005-09-19 06:43:44 +0000 | [diff] [blame] | 1574 | PyMem_Free(path); |
Neal Norwitz | 3efd0a1 | 2005-09-19 06:45:53 +0000 | [diff] [blame] | 1575 | return PyBool_FromLong(res == 0); |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 1576 | #endif |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 1577 | } |
| 1578 | |
Guido van Rossum | d371ff1 | 1999-01-25 16:12:23 +0000 | [diff] [blame] | 1579 | #ifndef F_OK |
| 1580 | #define F_OK 0 |
| 1581 | #endif |
| 1582 | #ifndef R_OK |
| 1583 | #define R_OK 4 |
| 1584 | #endif |
| 1585 | #ifndef W_OK |
| 1586 | #define W_OK 2 |
| 1587 | #endif |
| 1588 | #ifndef X_OK |
| 1589 | #define X_OK 1 |
| 1590 | #endif |
| 1591 | |
| 1592 | #ifdef HAVE_TTYNAME |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1593 | PyDoc_STRVAR(posix_ttyname__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 1594 | "ttyname(fd) -> string\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1595 | Return the name of the terminal device connected to 'fd'."); |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 1596 | |
| 1597 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 1598 | posix_ttyname(PyObject *self, PyObject *args) |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 1599 | { |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 1600 | int id; |
| 1601 | char *ret; |
| 1602 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 1603 | if (!PyArg_ParseTuple(args, "i:ttyname", &id)) |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 1604 | return NULL; |
| 1605 | |
Martin v. Löwis | 79acb9e | 2002-12-06 12:48:53 +0000 | [diff] [blame] | 1606 | #if defined(__VMS) |
Martin v. Löwis | c16f3bd | 2003-05-03 09:14:54 +0000 | [diff] [blame] | 1607 | /* file descriptor 0 only, the default input device (stdin) */ |
Martin v. Löwis | 79acb9e | 2002-12-06 12:48:53 +0000 | [diff] [blame] | 1608 | if (id == 0) { |
| 1609 | ret = ttyname(); |
| 1610 | } |
| 1611 | else { |
| 1612 | ret = NULL; |
| 1613 | } |
| 1614 | #else |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 1615 | ret = ttyname(id); |
Martin v. Löwis | 79acb9e | 2002-12-06 12:48:53 +0000 | [diff] [blame] | 1616 | #endif |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 1617 | if (ret == NULL) |
Neal Norwitz | 3efd0a1 | 2005-09-19 06:45:53 +0000 | [diff] [blame] | 1618 | return posix_error(); |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 1619 | return PyString_FromString(ret); |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 1620 | } |
Guido van Rossum | d371ff1 | 1999-01-25 16:12:23 +0000 | [diff] [blame] | 1621 | #endif |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 1622 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 1623 | #ifdef HAVE_CTERMID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1624 | PyDoc_STRVAR(posix_ctermid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 1625 | "ctermid() -> string\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1626 | Return the name of the controlling terminal for this process."); |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 1627 | |
| 1628 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 1629 | posix_ctermid(PyObject *self, PyObject *noargs) |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 1630 | { |
| 1631 | char *ret; |
| 1632 | char buffer[L_ctermid]; |
| 1633 | |
Greg Ward | b48bc17 | 2000-03-01 21:51:56 +0000 | [diff] [blame] | 1634 | #ifdef USE_CTERMID_R |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 1635 | ret = ctermid_r(buffer); |
| 1636 | #else |
| 1637 | ret = ctermid(buffer); |
| 1638 | #endif |
| 1639 | if (ret == NULL) |
Neal Norwitz | 3efd0a1 | 2005-09-19 06:45:53 +0000 | [diff] [blame] | 1640 | return posix_error(); |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 1641 | return PyString_FromString(buffer); |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 1642 | } |
| 1643 | #endif |
| 1644 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1645 | PyDoc_STRVAR(posix_chdir__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 1646 | "chdir(path)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1647 | Change the current working directory to the specified path."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1648 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1649 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 1650 | posix_chdir(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1651 | { |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 1652 | #ifdef MS_WINDOWS |
Martin v. Löwis | 8e0d494 | 2006-05-04 10:08:42 +0000 | [diff] [blame] | 1653 | 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] | 1654 | #elif defined(PYOS_OS2) && defined(PYCC_GCC) |
Martin v. Löwis | 8e0d494 | 2006-05-04 10:08:42 +0000 | [diff] [blame] | 1655 | return posix_1str(args, "et:chdir", _chdir2); |
Martin v. Löwis | 7a924e6 | 2003-03-05 14:15:21 +0000 | [diff] [blame] | 1656 | #elif defined(__VMS) |
Martin v. Löwis | 8e0d494 | 2006-05-04 10:08:42 +0000 | [diff] [blame] | 1657 | return posix_1str(args, "et:chdir", (int (*)(const char *))chdir); |
Martin v. Löwis | 79acb9e | 2002-12-06 12:48:53 +0000 | [diff] [blame] | 1658 | #else |
Martin v. Löwis | 8e0d494 | 2006-05-04 10:08:42 +0000 | [diff] [blame] | 1659 | return posix_1str(args, "et:chdir", chdir); |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 1660 | #endif |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1661 | } |
| 1662 | |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 1663 | #ifdef HAVE_FCHDIR |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1664 | PyDoc_STRVAR(posix_fchdir__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 1665 | "fchdir(fildes)\n\n\ |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 1666 | 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] | 1667 | opened on a directory, not a file."); |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 1668 | |
| 1669 | static PyObject * |
| 1670 | posix_fchdir(PyObject *self, PyObject *fdobj) |
| 1671 | { |
| 1672 | return posix_fildes(fdobj, fchdir); |
| 1673 | } |
| 1674 | #endif /* HAVE_FCHDIR */ |
| 1675 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1676 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1677 | PyDoc_STRVAR(posix_chmod__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 1678 | "chmod(path, mode)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1679 | Change the access permissions of a file."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1680 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1681 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 1682 | posix_chmod(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1683 | { |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 1684 | char *path = NULL; |
Guido van Rossum | ffd15f5 | 2000-03-31 00:47:28 +0000 | [diff] [blame] | 1685 | int i; |
| 1686 | int res; |
Mark Hammond | 817c929 | 2003-12-03 01:22:38 +0000 | [diff] [blame] | 1687 | #ifdef Py_WIN_WIDE_FILENAMES |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 1688 | DWORD attr; |
Mark Hammond | 817c929 | 2003-12-03 01:22:38 +0000 | [diff] [blame] | 1689 | if (unicode_file_names()) { |
| 1690 | PyUnicodeObject *po; |
| 1691 | if (PyArg_ParseTuple(args, "Ui|:chmod", &po, &i)) { |
| 1692 | Py_BEGIN_ALLOW_THREADS |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 1693 | attr = GetFileAttributesW(PyUnicode_AS_UNICODE(po)); |
| 1694 | if (attr != 0xFFFFFFFF) { |
| 1695 | if (i & _S_IWRITE) |
| 1696 | attr &= ~FILE_ATTRIBUTE_READONLY; |
| 1697 | else |
| 1698 | attr |= FILE_ATTRIBUTE_READONLY; |
| 1699 | res = SetFileAttributesW(PyUnicode_AS_UNICODE(po), attr); |
| 1700 | } |
| 1701 | else |
| 1702 | res = 0; |
Mark Hammond | 817c929 | 2003-12-03 01:22:38 +0000 | [diff] [blame] | 1703 | Py_END_ALLOW_THREADS |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 1704 | if (!res) |
| 1705 | return win32_error_unicode("chmod", |
Mark Hammond | 817c929 | 2003-12-03 01:22:38 +0000 | [diff] [blame] | 1706 | PyUnicode_AS_UNICODE(po)); |
| 1707 | Py_INCREF(Py_None); |
| 1708 | return Py_None; |
| 1709 | } |
| 1710 | /* Drop the argument parsing error as narrow strings |
| 1711 | are also valid. */ |
| 1712 | PyErr_Clear(); |
| 1713 | } |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 1714 | if (!PyArg_ParseTuple(args, "eti:chmod", Py_FileSystemDefaultEncoding, |
| 1715 | &path, &i)) |
| 1716 | return NULL; |
| 1717 | Py_BEGIN_ALLOW_THREADS |
| 1718 | attr = GetFileAttributesA(path); |
| 1719 | if (attr != 0xFFFFFFFF) { |
| 1720 | if (i & _S_IWRITE) |
| 1721 | attr &= ~FILE_ATTRIBUTE_READONLY; |
| 1722 | else |
| 1723 | attr |= FILE_ATTRIBUTE_READONLY; |
| 1724 | res = SetFileAttributesA(path, attr); |
| 1725 | } |
| 1726 | else |
| 1727 | res = 0; |
| 1728 | Py_END_ALLOW_THREADS |
| 1729 | if (!res) { |
| 1730 | win32_error("chmod", path); |
| 1731 | PyMem_Free(path); |
| 1732 | return NULL; |
| 1733 | } |
Martin v. Löwis | 9f485bc | 2006-05-08 05:25:56 +0000 | [diff] [blame] | 1734 | PyMem_Free(path); |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 1735 | Py_INCREF(Py_None); |
| 1736 | return Py_None; |
| 1737 | #else /* Py_WIN_WIDE_FILENAMES */ |
Mark Hammond | 817c929 | 2003-12-03 01:22:38 +0000 | [diff] [blame] | 1738 | if (!PyArg_ParseTuple(args, "eti:chmod", Py_FileSystemDefaultEncoding, |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 1739 | &path, &i)) |
Guido van Rossum | ffd15f5 | 2000-03-31 00:47:28 +0000 | [diff] [blame] | 1740 | return NULL; |
| 1741 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | ef40e77 | 2000-03-31 01:26:23 +0000 | [diff] [blame] | 1742 | res = chmod(path, i); |
Guido van Rossum | ffd15f5 | 2000-03-31 00:47:28 +0000 | [diff] [blame] | 1743 | Py_END_ALLOW_THREADS |
| 1744 | if (res < 0) |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 1745 | return posix_error_with_allocated_filename(path); |
| 1746 | PyMem_Free(path); |
Guido van Rossum | ffd15f5 | 2000-03-31 00:47:28 +0000 | [diff] [blame] | 1747 | Py_INCREF(Py_None); |
| 1748 | return Py_None; |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 1749 | #endif |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1750 | } |
| 1751 | |
Christian Heimes | 3628187 | 2007-11-30 21:11:28 +0000 | [diff] [blame] | 1752 | #ifdef HAVE_FCHMOD |
| 1753 | PyDoc_STRVAR(posix_fchmod__doc__, |
| 1754 | "fchmod(fd, mode)\n\n\ |
| 1755 | Change the access permissions of the file given by file\n\ |
| 1756 | descriptor fd."); |
| 1757 | |
| 1758 | static PyObject * |
| 1759 | posix_fchmod(PyObject *self, PyObject *args) |
| 1760 | { |
| 1761 | int fd, mode, res; |
| 1762 | if (!PyArg_ParseTuple(args, "ii:fchmod", &fd, &mode)) |
| 1763 | return NULL; |
| 1764 | Py_BEGIN_ALLOW_THREADS |
| 1765 | res = fchmod(fd, mode); |
| 1766 | Py_END_ALLOW_THREADS |
| 1767 | if (res < 0) |
| 1768 | return posix_error(); |
| 1769 | Py_RETURN_NONE; |
| 1770 | } |
| 1771 | #endif /* HAVE_FCHMOD */ |
| 1772 | |
| 1773 | #ifdef HAVE_LCHMOD |
| 1774 | PyDoc_STRVAR(posix_lchmod__doc__, |
| 1775 | "lchmod(path, mode)\n\n\ |
| 1776 | Change the access permissions of a file. If path is a symlink, this\n\ |
| 1777 | affects the link itself rather than the target."); |
| 1778 | |
| 1779 | static PyObject * |
| 1780 | posix_lchmod(PyObject *self, PyObject *args) |
| 1781 | { |
| 1782 | char *path = NULL; |
| 1783 | int i; |
| 1784 | int res; |
| 1785 | if (!PyArg_ParseTuple(args, "eti:lchmod", Py_FileSystemDefaultEncoding, |
| 1786 | &path, &i)) |
| 1787 | return NULL; |
| 1788 | Py_BEGIN_ALLOW_THREADS |
| 1789 | res = lchmod(path, i); |
| 1790 | Py_END_ALLOW_THREADS |
| 1791 | if (res < 0) |
| 1792 | return posix_error_with_allocated_filename(path); |
| 1793 | PyMem_Free(path); |
| 1794 | Py_RETURN_NONE; |
| 1795 | } |
| 1796 | #endif /* HAVE_LCHMOD */ |
| 1797 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1798 | |
Martin v. Löwis | 382abef | 2007-02-19 10:55:19 +0000 | [diff] [blame] | 1799 | #ifdef HAVE_CHFLAGS |
| 1800 | PyDoc_STRVAR(posix_chflags__doc__, |
| 1801 | "chflags(path, flags)\n\n\ |
| 1802 | Set file flags."); |
| 1803 | |
| 1804 | static PyObject * |
| 1805 | posix_chflags(PyObject *self, PyObject *args) |
| 1806 | { |
| 1807 | char *path; |
| 1808 | unsigned long flags; |
| 1809 | int res; |
| 1810 | if (!PyArg_ParseTuple(args, "etk:chflags", |
| 1811 | Py_FileSystemDefaultEncoding, &path, &flags)) |
| 1812 | return NULL; |
| 1813 | Py_BEGIN_ALLOW_THREADS |
| 1814 | res = chflags(path, flags); |
| 1815 | Py_END_ALLOW_THREADS |
| 1816 | if (res < 0) |
| 1817 | return posix_error_with_allocated_filename(path); |
| 1818 | PyMem_Free(path); |
| 1819 | Py_INCREF(Py_None); |
| 1820 | return Py_None; |
| 1821 | } |
| 1822 | #endif /* HAVE_CHFLAGS */ |
| 1823 | |
| 1824 | #ifdef HAVE_LCHFLAGS |
| 1825 | PyDoc_STRVAR(posix_lchflags__doc__, |
| 1826 | "lchflags(path, flags)\n\n\ |
| 1827 | Set file flags.\n\ |
| 1828 | This function will not follow symbolic links."); |
| 1829 | |
| 1830 | static PyObject * |
| 1831 | posix_lchflags(PyObject *self, PyObject *args) |
| 1832 | { |
| 1833 | char *path; |
| 1834 | unsigned long flags; |
| 1835 | int res; |
| 1836 | if (!PyArg_ParseTuple(args, "etk:lchflags", |
| 1837 | Py_FileSystemDefaultEncoding, &path, &flags)) |
| 1838 | return NULL; |
| 1839 | Py_BEGIN_ALLOW_THREADS |
| 1840 | res = lchflags(path, flags); |
| 1841 | Py_END_ALLOW_THREADS |
| 1842 | if (res < 0) |
| 1843 | return posix_error_with_allocated_filename(path); |
| 1844 | PyMem_Free(path); |
| 1845 | Py_INCREF(Py_None); |
| 1846 | return Py_None; |
| 1847 | } |
| 1848 | #endif /* HAVE_LCHFLAGS */ |
| 1849 | |
Martin v. Löwis | 244edc8 | 2001-10-04 22:44:26 +0000 | [diff] [blame] | 1850 | #ifdef HAVE_CHROOT |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1851 | PyDoc_STRVAR(posix_chroot__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 1852 | "chroot(path)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1853 | Change root directory to path."); |
Martin v. Löwis | 244edc8 | 2001-10-04 22:44:26 +0000 | [diff] [blame] | 1854 | |
| 1855 | static PyObject * |
| 1856 | posix_chroot(PyObject *self, PyObject *args) |
| 1857 | { |
Martin v. Löwis | 8e0d494 | 2006-05-04 10:08:42 +0000 | [diff] [blame] | 1858 | return posix_1str(args, "et:chroot", chroot); |
Martin v. Löwis | 244edc8 | 2001-10-04 22:44:26 +0000 | [diff] [blame] | 1859 | } |
| 1860 | #endif |
| 1861 | |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 1862 | #ifdef HAVE_FSYNC |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1863 | PyDoc_STRVAR(posix_fsync__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 1864 | "fsync(fildes)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1865 | force write of file with filedescriptor to disk."); |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 1866 | |
| 1867 | static PyObject * |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 1868 | posix_fsync(PyObject *self, PyObject *fdobj) |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 1869 | { |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 1870 | return posix_fildes(fdobj, fsync); |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 1871 | } |
| 1872 | #endif /* HAVE_FSYNC */ |
| 1873 | |
| 1874 | #ifdef HAVE_FDATASYNC |
Guido van Rossum | ecc23b0 | 2000-09-22 16:01:05 +0000 | [diff] [blame] | 1875 | |
Guido van Rossum | 7f58e2e | 2000-09-22 17:26:14 +0000 | [diff] [blame] | 1876 | #ifdef __hpux |
Guido van Rossum | ecc23b0 | 2000-09-22 16:01:05 +0000 | [diff] [blame] | 1877 | extern int fdatasync(int); /* On HP-UX, in libc but not in unistd.h */ |
| 1878 | #endif |
| 1879 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1880 | PyDoc_STRVAR(posix_fdatasync__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 1881 | "fdatasync(fildes)\n\n\ |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 1882 | force write of file with filedescriptor to disk.\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1883 | does not force update of metadata."); |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 1884 | |
| 1885 | static PyObject * |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 1886 | posix_fdatasync(PyObject *self, PyObject *fdobj) |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 1887 | { |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 1888 | return posix_fildes(fdobj, fdatasync); |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 1889 | } |
| 1890 | #endif /* HAVE_FDATASYNC */ |
| 1891 | |
| 1892 | |
Fredrik Lundh | 1072334 | 2000-07-10 16:38:09 +0000 | [diff] [blame] | 1893 | #ifdef HAVE_CHOWN |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1894 | PyDoc_STRVAR(posix_chown__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 1895 | "chown(path, uid, gid)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1896 | 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] | 1897 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1898 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 1899 | posix_chown(PyObject *self, PyObject *args) |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 1900 | { |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 1901 | char *path = NULL; |
Gregory P. Smith | f48da8f | 2008-03-18 19:05:32 +0000 | [diff] [blame] | 1902 | long uid, gid; |
Fredrik Lundh | 44328e6 | 2000-07-10 15:59:30 +0000 | [diff] [blame] | 1903 | int res; |
Gregory P. Smith | f48da8f | 2008-03-18 19:05:32 +0000 | [diff] [blame] | 1904 | if (!PyArg_ParseTuple(args, "etll:chown", |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 1905 | Py_FileSystemDefaultEncoding, &path, |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 1906 | &uid, &gid)) |
Fredrik Lundh | 44328e6 | 2000-07-10 15:59:30 +0000 | [diff] [blame] | 1907 | return NULL; |
| 1908 | Py_BEGIN_ALLOW_THREADS |
| 1909 | res = chown(path, (uid_t) uid, (gid_t) gid); |
| 1910 | Py_END_ALLOW_THREADS |
| 1911 | if (res < 0) |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 1912 | return posix_error_with_allocated_filename(path); |
| 1913 | PyMem_Free(path); |
Fredrik Lundh | 44328e6 | 2000-07-10 15:59:30 +0000 | [diff] [blame] | 1914 | Py_INCREF(Py_None); |
| 1915 | return Py_None; |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 1916 | } |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 1917 | #endif /* HAVE_CHOWN */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 1918 | |
Christian Heimes | 3628187 | 2007-11-30 21:11:28 +0000 | [diff] [blame] | 1919 | #ifdef HAVE_FCHOWN |
| 1920 | PyDoc_STRVAR(posix_fchown__doc__, |
| 1921 | "fchown(fd, uid, gid)\n\n\ |
| 1922 | Change the owner and group id of the file given by file descriptor\n\ |
| 1923 | fd to the numeric uid and gid."); |
| 1924 | |
| 1925 | static PyObject * |
| 1926 | posix_fchown(PyObject *self, PyObject *args) |
| 1927 | { |
| 1928 | int fd, uid, gid; |
| 1929 | int res; |
| 1930 | if (!PyArg_ParseTuple(args, "iii:chown", &fd, &uid, &gid)) |
| 1931 | return NULL; |
| 1932 | Py_BEGIN_ALLOW_THREADS |
| 1933 | res = fchown(fd, (uid_t) uid, (gid_t) gid); |
| 1934 | Py_END_ALLOW_THREADS |
| 1935 | if (res < 0) |
| 1936 | return posix_error(); |
| 1937 | Py_RETURN_NONE; |
| 1938 | } |
| 1939 | #endif /* HAVE_FCHOWN */ |
| 1940 | |
Martin v. Löwis | 0cec0ff | 2002-07-28 16:33:45 +0000 | [diff] [blame] | 1941 | #ifdef HAVE_LCHOWN |
| 1942 | PyDoc_STRVAR(posix_lchown__doc__, |
| 1943 | "lchown(path, uid, gid)\n\n\ |
| 1944 | Change the owner and group id of path to the numeric uid and gid.\n\ |
| 1945 | This function will not follow symbolic links."); |
| 1946 | |
| 1947 | static PyObject * |
| 1948 | posix_lchown(PyObject *self, PyObject *args) |
| 1949 | { |
| 1950 | char *path = NULL; |
| 1951 | int uid, gid; |
| 1952 | int res; |
| 1953 | if (!PyArg_ParseTuple(args, "etii:lchown", |
| 1954 | Py_FileSystemDefaultEncoding, &path, |
| 1955 | &uid, &gid)) |
| 1956 | return NULL; |
| 1957 | Py_BEGIN_ALLOW_THREADS |
| 1958 | res = lchown(path, (uid_t) uid, (gid_t) gid); |
| 1959 | Py_END_ALLOW_THREADS |
Tim Peters | 11b2306 | 2003-04-23 02:39:17 +0000 | [diff] [blame] | 1960 | if (res < 0) |
Martin v. Löwis | 0cec0ff | 2002-07-28 16:33:45 +0000 | [diff] [blame] | 1961 | return posix_error_with_allocated_filename(path); |
| 1962 | PyMem_Free(path); |
| 1963 | Py_INCREF(Py_None); |
| 1964 | return Py_None; |
| 1965 | } |
| 1966 | #endif /* HAVE_LCHOWN */ |
| 1967 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1968 | |
Guido van Rossum | 36bc680 | 1995-06-14 22:54:23 +0000 | [diff] [blame] | 1969 | #ifdef HAVE_GETCWD |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1970 | PyDoc_STRVAR(posix_getcwd__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 1971 | "getcwd() -> path\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 1972 | Return a string representing the current working directory."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1973 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1974 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 1975 | posix_getcwd(PyObject *self, PyObject *noargs) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1976 | { |
Facundo Batista | 5596b0c | 2008-06-22 13:36:20 +0000 | [diff] [blame] | 1977 | int bufsize_incr = 1024; |
| 1978 | int bufsize = 0; |
| 1979 | char *tmpbuf = NULL; |
| 1980 | char *res = NULL; |
| 1981 | PyObject *dynamic_return; |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 1982 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1983 | Py_BEGIN_ALLOW_THREADS |
Facundo Batista | 5596b0c | 2008-06-22 13:36:20 +0000 | [diff] [blame] | 1984 | do { |
| 1985 | bufsize = bufsize + bufsize_incr; |
| 1986 | tmpbuf = malloc(bufsize); |
| 1987 | if (tmpbuf == NULL) { |
| 1988 | break; |
| 1989 | } |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 1990 | #if defined(PYOS_OS2) && defined(PYCC_GCC) |
Facundo Batista | 5596b0c | 2008-06-22 13:36:20 +0000 | [diff] [blame] | 1991 | res = _getcwd2(tmpbuf, bufsize); |
Martin v. Löwis | 79acb9e | 2002-12-06 12:48:53 +0000 | [diff] [blame] | 1992 | #else |
Facundo Batista | 5596b0c | 2008-06-22 13:36:20 +0000 | [diff] [blame] | 1993 | res = getcwd(tmpbuf, bufsize); |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 1994 | #endif |
Facundo Batista | 5596b0c | 2008-06-22 13:36:20 +0000 | [diff] [blame] | 1995 | |
| 1996 | if (res == NULL) { |
| 1997 | free(tmpbuf); |
| 1998 | } |
| 1999 | } while ((res == NULL) && (errno == ERANGE)); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2000 | Py_END_ALLOW_THREADS |
Facundo Batista | 5596b0c | 2008-06-22 13:36:20 +0000 | [diff] [blame] | 2001 | |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 2002 | if (res == NULL) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2003 | return posix_error(); |
Facundo Batista | 5596b0c | 2008-06-22 13:36:20 +0000 | [diff] [blame] | 2004 | |
| 2005 | dynamic_return = PyString_FromString(tmpbuf); |
| 2006 | free(tmpbuf); |
| 2007 | |
| 2008 | return dynamic_return; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2009 | } |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2010 | |
Walter Dörwald | 3b918c3 | 2002-11-21 20:18:46 +0000 | [diff] [blame] | 2011 | #ifdef Py_USING_UNICODE |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2012 | PyDoc_STRVAR(posix_getcwdu__doc__, |
| 2013 | "getcwdu() -> path\n\n\ |
| 2014 | Return a unicode string representing the current working directory."); |
| 2015 | |
| 2016 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 2017 | posix_getcwdu(PyObject *self, PyObject *noargs) |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2018 | { |
| 2019 | char buf[1026]; |
| 2020 | char *res; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2021 | |
| 2022 | #ifdef Py_WIN_WIDE_FILENAMES |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 2023 | DWORD len; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2024 | if (unicode_file_names()) { |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2025 | wchar_t wbuf[1026]; |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 2026 | wchar_t *wbuf2 = wbuf; |
| 2027 | PyObject *resobj; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2028 | Py_BEGIN_ALLOW_THREADS |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 2029 | len = GetCurrentDirectoryW(sizeof wbuf/ sizeof wbuf[0], wbuf); |
| 2030 | /* If the buffer is large enough, len does not include the |
| 2031 | terminating \0. If the buffer is too small, len includes |
| 2032 | the space needed for the terminator. */ |
| 2033 | if (len >= sizeof wbuf/ sizeof wbuf[0]) { |
| 2034 | wbuf2 = malloc(len * sizeof(wchar_t)); |
| 2035 | if (wbuf2) |
| 2036 | len = GetCurrentDirectoryW(len, wbuf2); |
| 2037 | } |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2038 | Py_END_ALLOW_THREADS |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 2039 | if (!wbuf2) { |
| 2040 | PyErr_NoMemory(); |
| 2041 | return NULL; |
| 2042 | } |
| 2043 | if (!len) { |
| 2044 | if (wbuf2 != wbuf) free(wbuf2); |
| 2045 | return win32_error("getcwdu", NULL); |
| 2046 | } |
| 2047 | resobj = PyUnicode_FromWideChar(wbuf2, len); |
| 2048 | if (wbuf2 != wbuf) free(wbuf2); |
| 2049 | return resobj; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2050 | } |
| 2051 | #endif |
| 2052 | |
| 2053 | Py_BEGIN_ALLOW_THREADS |
| 2054 | #if defined(PYOS_OS2) && defined(PYCC_GCC) |
| 2055 | res = _getcwd2(buf, sizeof buf); |
| 2056 | #else |
| 2057 | res = getcwd(buf, sizeof buf); |
| 2058 | #endif |
| 2059 | Py_END_ALLOW_THREADS |
| 2060 | if (res == NULL) |
| 2061 | return posix_error(); |
| 2062 | return PyUnicode_Decode(buf, strlen(buf), Py_FileSystemDefaultEncoding,"strict"); |
| 2063 | } |
Guido van Rossum | 36bc680 | 1995-06-14 22:54:23 +0000 | [diff] [blame] | 2064 | #endif |
Walter Dörwald | 3b918c3 | 2002-11-21 20:18:46 +0000 | [diff] [blame] | 2065 | #endif |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2066 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2067 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 2068 | #ifdef HAVE_LINK |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2069 | PyDoc_STRVAR(posix_link__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 2070 | "link(src, dst)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2071 | Create a hard link to a file."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2072 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2073 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 2074 | posix_link(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2075 | { |
Martin v. Löwis | 4fc2bda | 2006-05-04 12:04:27 +0000 | [diff] [blame] | 2076 | return posix_2str(args, "etet:link", link); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2077 | } |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 2078 | #endif /* HAVE_LINK */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2079 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2080 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2081 | PyDoc_STRVAR(posix_listdir__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 2082 | "listdir(path) -> list_of_strings\n\n\ |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2083 | Return a list containing the names of the entries in the directory.\n\ |
| 2084 | \n\ |
| 2085 | path: path of directory to list\n\ |
| 2086 | \n\ |
| 2087 | 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] | 2088 | entries '.' and '..' even if they are present in the directory."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2089 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2090 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 2091 | posix_listdir(PyObject *self, PyObject *args) |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 2092 | { |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2093 | /* XXX Should redo this putting the (now four) versions of opendir |
Guido van Rossum | 6d8841c | 1997-08-14 19:57:39 +0000 | [diff] [blame] | 2094 | in separate files instead of having them all here... */ |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 2095 | #if defined(MS_WINDOWS) && !defined(HAVE_OPENDIR) |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 2096 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2097 | PyObject *d, *v; |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 2098 | HANDLE hFindFile; |
Martin v. Löwis | e920f0d | 2006-03-07 23:59:33 +0000 | [diff] [blame] | 2099 | BOOL result; |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 2100 | WIN32_FIND_DATA FileData; |
Martin v. Löwis | 682b1bb | 2006-05-12 12:27:28 +0000 | [diff] [blame] | 2101 | char namebuf[MAX_PATH+5]; /* Overallocate for \\*.*\0 */ |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 2102 | char *bufptr = namebuf; |
Martin v. Löwis | 682b1bb | 2006-05-12 12:27:28 +0000 | [diff] [blame] | 2103 | 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] | 2104 | |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2105 | #ifdef Py_WIN_WIDE_FILENAMES |
| 2106 | /* If on wide-character-capable OS see if argument |
| 2107 | is Unicode and if so use wide API. */ |
| 2108 | if (unicode_file_names()) { |
Martin v. Löwis | 682b1bb | 2006-05-12 12:27:28 +0000 | [diff] [blame] | 2109 | PyObject *po; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2110 | if (PyArg_ParseTuple(args, "U:listdir", &po)) { |
| 2111 | WIN32_FIND_DATAW wFileData; |
Martin v. Löwis | 682b1bb | 2006-05-12 12:27:28 +0000 | [diff] [blame] | 2112 | Py_UNICODE *wnamebuf; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2113 | Py_UNICODE wch; |
Martin v. Löwis | 682b1bb | 2006-05-12 12:27:28 +0000 | [diff] [blame] | 2114 | /* Overallocate for \\*.*\0 */ |
| 2115 | len = PyUnicode_GET_SIZE(po); |
| 2116 | wnamebuf = malloc((len + 5) * sizeof(wchar_t)); |
| 2117 | if (!wnamebuf) { |
| 2118 | PyErr_NoMemory(); |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2119 | return NULL; |
Martin v. Löwis | 682b1bb | 2006-05-12 12:27:28 +0000 | [diff] [blame] | 2120 | } |
| 2121 | wcscpy(wnamebuf, PyUnicode_AS_UNICODE(po)); |
| 2122 | wch = len > 0 ? wnamebuf[len-1] : '\0'; |
| 2123 | if (wch != L'/' && wch != L'\\' && wch != L':') |
| 2124 | wnamebuf[len++] = L'\\'; |
| 2125 | wcscpy(wnamebuf + len, L"*.*"); |
| 2126 | if ((d = PyList_New(0)) == NULL) { |
| 2127 | free(wnamebuf); |
| 2128 | return NULL; |
| 2129 | } |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2130 | hFindFile = FindFirstFileW(wnamebuf, &wFileData); |
| 2131 | if (hFindFile == INVALID_HANDLE_VALUE) { |
Martin v. Löwis | 682b1bb | 2006-05-12 12:27:28 +0000 | [diff] [blame] | 2132 | int error = GetLastError(); |
| 2133 | if (error == ERROR_FILE_NOT_FOUND) { |
| 2134 | free(wnamebuf); |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2135 | return d; |
| 2136 | } |
| 2137 | Py_DECREF(d); |
Martin v. Löwis | 682b1bb | 2006-05-12 12:27:28 +0000 | [diff] [blame] | 2138 | win32_error_unicode("FindFirstFileW", wnamebuf); |
| 2139 | free(wnamebuf); |
| 2140 | return NULL; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2141 | } |
| 2142 | do { |
Martin v. Löwis | e920f0d | 2006-03-07 23:59:33 +0000 | [diff] [blame] | 2143 | /* Skip over . and .. */ |
| 2144 | if (wcscmp(wFileData.cFileName, L".") != 0 && |
| 2145 | wcscmp(wFileData.cFileName, L"..") != 0) { |
| 2146 | v = PyUnicode_FromUnicode(wFileData.cFileName, wcslen(wFileData.cFileName)); |
| 2147 | if (v == NULL) { |
| 2148 | Py_DECREF(d); |
| 2149 | d = NULL; |
| 2150 | break; |
| 2151 | } |
| 2152 | if (PyList_Append(d, v) != 0) { |
| 2153 | Py_DECREF(v); |
| 2154 | Py_DECREF(d); |
| 2155 | d = NULL; |
| 2156 | break; |
| 2157 | } |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2158 | Py_DECREF(v); |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2159 | } |
Georg Brandl | 622927b | 2006-03-07 12:48:03 +0000 | [diff] [blame] | 2160 | Py_BEGIN_ALLOW_THREADS |
| 2161 | result = FindNextFileW(hFindFile, &wFileData); |
| 2162 | Py_END_ALLOW_THREADS |
Martin v. Löwis | 982e9fe | 2006-07-24 12:54:17 +0000 | [diff] [blame] | 2163 | /* FindNextFile sets error to ERROR_NO_MORE_FILES if |
| 2164 | it got to the end of the directory. */ |
| 2165 | if (!result && GetLastError() != ERROR_NO_MORE_FILES) { |
| 2166 | Py_DECREF(d); |
| 2167 | win32_error_unicode("FindNextFileW", wnamebuf); |
| 2168 | FindClose(hFindFile); |
| 2169 | free(wnamebuf); |
| 2170 | return NULL; |
| 2171 | } |
Georg Brandl | 622927b | 2006-03-07 12:48:03 +0000 | [diff] [blame] | 2172 | } while (result == TRUE); |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2173 | |
| 2174 | if (FindClose(hFindFile) == FALSE) { |
| 2175 | Py_DECREF(d); |
Martin v. Löwis | 682b1bb | 2006-05-12 12:27:28 +0000 | [diff] [blame] | 2176 | win32_error_unicode("FindClose", wnamebuf); |
| 2177 | free(wnamebuf); |
| 2178 | return NULL; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2179 | } |
Martin v. Löwis | e3edaea | 2006-05-15 05:51:36 +0000 | [diff] [blame] | 2180 | free(wnamebuf); |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2181 | return d; |
| 2182 | } |
| 2183 | /* Drop the argument parsing error as narrow strings |
| 2184 | are also valid. */ |
| 2185 | PyErr_Clear(); |
| 2186 | } |
| 2187 | #endif |
| 2188 | |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 2189 | if (!PyArg_ParseTuple(args, "et#:listdir", |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 2190 | Py_FileSystemDefaultEncoding, &bufptr, &len)) |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 2191 | return NULL; |
Neil Schemenauer | 94b866a | 2002-03-22 20:51:58 +0000 | [diff] [blame] | 2192 | if (len > 0) { |
| 2193 | char ch = namebuf[len-1]; |
| 2194 | if (ch != SEP && ch != ALTSEP && ch != ':') |
| 2195 | namebuf[len++] = '/'; |
| 2196 | } |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 2197 | strcpy(namebuf + len, "*.*"); |
| 2198 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2199 | if ((d = PyList_New(0)) == NULL) |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 2200 | return NULL; |
| 2201 | |
| 2202 | hFindFile = FindFirstFile(namebuf, &FileData); |
| 2203 | if (hFindFile == INVALID_HANDLE_VALUE) { |
Martin v. Löwis | 682b1bb | 2006-05-12 12:27:28 +0000 | [diff] [blame] | 2204 | int error = GetLastError(); |
| 2205 | if (error == ERROR_FILE_NOT_FOUND) |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2206 | return d; |
| 2207 | Py_DECREF(d); |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 2208 | return win32_error("FindFirstFile", namebuf); |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 2209 | } |
| 2210 | do { |
Martin v. Löwis | e920f0d | 2006-03-07 23:59:33 +0000 | [diff] [blame] | 2211 | /* Skip over . and .. */ |
| 2212 | if (strcmp(FileData.cFileName, ".") != 0 && |
| 2213 | strcmp(FileData.cFileName, "..") != 0) { |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 2214 | v = PyString_FromString(FileData.cFileName); |
Martin v. Löwis | e920f0d | 2006-03-07 23:59:33 +0000 | [diff] [blame] | 2215 | if (v == NULL) { |
| 2216 | Py_DECREF(d); |
| 2217 | d = NULL; |
| 2218 | break; |
| 2219 | } |
| 2220 | if (PyList_Append(d, v) != 0) { |
| 2221 | Py_DECREF(v); |
| 2222 | Py_DECREF(d); |
| 2223 | d = NULL; |
| 2224 | break; |
| 2225 | } |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2226 | Py_DECREF(v); |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 2227 | } |
Georg Brandl | 622927b | 2006-03-07 12:48:03 +0000 | [diff] [blame] | 2228 | Py_BEGIN_ALLOW_THREADS |
| 2229 | result = FindNextFile(hFindFile, &FileData); |
| 2230 | Py_END_ALLOW_THREADS |
Martin v. Löwis | 982e9fe | 2006-07-24 12:54:17 +0000 | [diff] [blame] | 2231 | /* FindNextFile sets error to ERROR_NO_MORE_FILES if |
| 2232 | it got to the end of the directory. */ |
| 2233 | if (!result && GetLastError() != ERROR_NO_MORE_FILES) { |
| 2234 | Py_DECREF(d); |
| 2235 | win32_error("FindNextFile", namebuf); |
| 2236 | FindClose(hFindFile); |
| 2237 | return NULL; |
| 2238 | } |
Georg Brandl | 622927b | 2006-03-07 12:48:03 +0000 | [diff] [blame] | 2239 | } while (result == TRUE); |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 2240 | |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2241 | if (FindClose(hFindFile) == FALSE) { |
| 2242 | Py_DECREF(d); |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 2243 | return win32_error("FindClose", namebuf); |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2244 | } |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 2245 | |
| 2246 | return d; |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 2247 | |
Tim Peters | 0bb44a4 | 2000-09-15 07:44:49 +0000 | [diff] [blame] | 2248 | #elif defined(PYOS_OS2) |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2249 | |
| 2250 | #ifndef MAX_PATH |
| 2251 | #define MAX_PATH CCHMAXPATH |
| 2252 | #endif |
| 2253 | char *name, *pt; |
Thomas Wouters | 68bc4f9 | 2006-03-01 01:05:10 +0000 | [diff] [blame] | 2254 | Py_ssize_t len; |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2255 | PyObject *d, *v; |
| 2256 | char namebuf[MAX_PATH+5]; |
| 2257 | HDIR hdir = 1; |
| 2258 | ULONG srchcnt = 1; |
| 2259 | FILEFINDBUF3 ep; |
| 2260 | APIRET rc; |
| 2261 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 2262 | if (!PyArg_ParseTuple(args, "t#:listdir", &name, &len)) |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2263 | return NULL; |
| 2264 | if (len >= MAX_PATH) { |
| 2265 | PyErr_SetString(PyExc_ValueError, "path too long"); |
| 2266 | return NULL; |
| 2267 | } |
| 2268 | strcpy(namebuf, name); |
| 2269 | for (pt = namebuf; *pt; pt++) |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 2270 | if (*pt == ALTSEP) |
| 2271 | *pt = SEP; |
| 2272 | if (namebuf[len-1] != SEP) |
| 2273 | namebuf[len++] = SEP; |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2274 | strcpy(namebuf + len, "*.*"); |
| 2275 | |
| 2276 | if ((d = PyList_New(0)) == NULL) |
| 2277 | return NULL; |
| 2278 | |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 2279 | rc = DosFindFirst(namebuf, /* Wildcard Pattern to Match */ |
| 2280 | &hdir, /* Handle to Use While Search Directory */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2281 | FILE_READONLY | FILE_HIDDEN | FILE_SYSTEM | FILE_DIRECTORY, |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 2282 | &ep, sizeof(ep), /* Structure to Receive Directory Entry */ |
| 2283 | &srchcnt, /* Max and Actual Count of Entries Per Iteration */ |
| 2284 | FIL_STANDARD); /* Format of Entry (EAs or Not) */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2285 | |
| 2286 | if (rc != NO_ERROR) { |
| 2287 | errno = ENOENT; |
Barry Warsaw | f63b8cc | 1999-05-27 23:13:21 +0000 | [diff] [blame] | 2288 | return posix_error_with_filename(name); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2289 | } |
| 2290 | |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 2291 | if (srchcnt > 0) { /* If Directory is NOT Totally Empty, */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2292 | do { |
| 2293 | if (ep.achName[0] == '.' |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 2294 | && (ep.achName[1] == '\0' || (ep.achName[1] == '.' && ep.achName[2] == '\0'))) |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 2295 | continue; /* Skip Over "." and ".." Names */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2296 | |
| 2297 | strcpy(namebuf, ep.achName); |
| 2298 | |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 2299 | /* Leave Case of Name Alone -- In Native Form */ |
| 2300 | /* (Removed Forced Lowercasing Code) */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2301 | |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 2302 | v = PyString_FromString(namebuf); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2303 | if (v == NULL) { |
| 2304 | Py_DECREF(d); |
| 2305 | d = NULL; |
| 2306 | break; |
| 2307 | } |
| 2308 | if (PyList_Append(d, v) != 0) { |
| 2309 | Py_DECREF(v); |
| 2310 | Py_DECREF(d); |
| 2311 | d = NULL; |
| 2312 | break; |
| 2313 | } |
| 2314 | Py_DECREF(v); |
| 2315 | } while (DosFindNext(hdir, &ep, sizeof(ep), &srchcnt) == NO_ERROR && srchcnt > 0); |
| 2316 | } |
| 2317 | |
| 2318 | return d; |
| 2319 | #else |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 2320 | |
Just van Rossum | 2fe07fd | 2003-03-03 19:07:13 +0000 | [diff] [blame] | 2321 | char *name = NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2322 | PyObject *d, *v; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2323 | DIR *dirp; |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 2324 | struct dirent *ep; |
Just van Rossum | 96b1c90 | 2003-03-03 17:32:15 +0000 | [diff] [blame] | 2325 | int arg_is_unicode = 1; |
| 2326 | |
Georg Brandl | 05e89b8 | 2006-04-11 07:04:06 +0000 | [diff] [blame] | 2327 | errno = 0; |
Just van Rossum | 96b1c90 | 2003-03-03 17:32:15 +0000 | [diff] [blame] | 2328 | if (!PyArg_ParseTuple(args, "U:listdir", &v)) { |
| 2329 | arg_is_unicode = 0; |
| 2330 | PyErr_Clear(); |
| 2331 | } |
| 2332 | if (!PyArg_ParseTuple(args, "et:listdir", Py_FileSystemDefaultEncoding, &name)) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2333 | return NULL; |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 2334 | if ((dirp = opendir(name)) == NULL) { |
Just van Rossum | 2fe07fd | 2003-03-03 19:07:13 +0000 | [diff] [blame] | 2335 | return posix_error_with_allocated_filename(name); |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 2336 | } |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2337 | if ((d = PyList_New(0)) == NULL) { |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2338 | closedir(dirp); |
Just van Rossum | 2fe07fd | 2003-03-03 19:07:13 +0000 | [diff] [blame] | 2339 | PyMem_Free(name); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2340 | return NULL; |
| 2341 | } |
Georg Brandl | 622927b | 2006-03-07 12:48:03 +0000 | [diff] [blame] | 2342 | for (;;) { |
Georg Brandl | 86cbf81 | 2008-07-16 21:31:41 +0000 | [diff] [blame] | 2343 | errno = 0; |
Georg Brandl | 622927b | 2006-03-07 12:48:03 +0000 | [diff] [blame] | 2344 | Py_BEGIN_ALLOW_THREADS |
| 2345 | ep = readdir(dirp); |
| 2346 | Py_END_ALLOW_THREADS |
Georg Brandl | 86cbf81 | 2008-07-16 21:31:41 +0000 | [diff] [blame] | 2347 | if (ep == NULL) { |
| 2348 | if (errno == 0) { |
| 2349 | break; |
| 2350 | } else { |
| 2351 | closedir(dirp); |
| 2352 | Py_DECREF(d); |
| 2353 | return posix_error_with_allocated_filename(name); |
| 2354 | } |
| 2355 | } |
Guido van Rossum | 24f42ac | 1995-07-18 18:16:52 +0000 | [diff] [blame] | 2356 | if (ep->d_name[0] == '.' && |
| 2357 | (NAMLEN(ep) == 1 || |
Guido van Rossum | a376cc5 | 1996-12-05 23:43:35 +0000 | [diff] [blame] | 2358 | (ep->d_name[1] == '.' && NAMLEN(ep) == 2))) |
Guido van Rossum | 24f42ac | 1995-07-18 18:16:52 +0000 | [diff] [blame] | 2359 | continue; |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 2360 | v = PyString_FromStringAndSize(ep->d_name, NAMLEN(ep)); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2361 | if (v == NULL) { |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2362 | Py_DECREF(d); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2363 | d = NULL; |
| 2364 | break; |
| 2365 | } |
Just van Rossum | 46c9784 | 2003-02-25 21:42:15 +0000 | [diff] [blame] | 2366 | #ifdef Py_USING_UNICODE |
Just van Rossum | 96b1c90 | 2003-03-03 17:32:15 +0000 | [diff] [blame] | 2367 | if (arg_is_unicode) { |
Just van Rossum | 46c9784 | 2003-02-25 21:42:15 +0000 | [diff] [blame] | 2368 | PyObject *w; |
| 2369 | |
| 2370 | w = PyUnicode_FromEncodedObject(v, |
Tim Peters | 11b2306 | 2003-04-23 02:39:17 +0000 | [diff] [blame] | 2371 | Py_FileSystemDefaultEncoding, |
Just van Rossum | 46c9784 | 2003-02-25 21:42:15 +0000 | [diff] [blame] | 2372 | "strict"); |
Just van Rossum | 6a42183 | 2003-03-04 19:30:44 +0000 | [diff] [blame] | 2373 | if (w != NULL) { |
| 2374 | Py_DECREF(v); |
| 2375 | v = w; |
| 2376 | } |
| 2377 | else { |
| 2378 | /* fall back to the original byte string, as |
| 2379 | discussed in patch #683592 */ |
| 2380 | PyErr_Clear(); |
Just van Rossum | 46c9784 | 2003-02-25 21:42:15 +0000 | [diff] [blame] | 2381 | } |
Just van Rossum | 46c9784 | 2003-02-25 21:42:15 +0000 | [diff] [blame] | 2382 | } |
| 2383 | #endif |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2384 | if (PyList_Append(d, v) != 0) { |
| 2385 | Py_DECREF(v); |
| 2386 | Py_DECREF(d); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2387 | d = NULL; |
| 2388 | break; |
| 2389 | } |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2390 | Py_DECREF(v); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2391 | } |
| 2392 | closedir(dirp); |
Just van Rossum | 2fe07fd | 2003-03-03 19:07:13 +0000 | [diff] [blame] | 2393 | PyMem_Free(name); |
Guido van Rossum | 0ee42cd | 1991-04-08 21:01:03 +0000 | [diff] [blame] | 2394 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2395 | return d; |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 2396 | |
Tim Peters | 0bb44a4 | 2000-09-15 07:44:49 +0000 | [diff] [blame] | 2397 | #endif /* which OS */ |
| 2398 | } /* end of posix_listdir */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2399 | |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 2400 | #ifdef MS_WINDOWS |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 2401 | /* A helper function for abspath on win32 */ |
| 2402 | static PyObject * |
| 2403 | posix__getfullpathname(PyObject *self, PyObject *args) |
| 2404 | { |
| 2405 | /* assume encoded strings wont more than double no of chars */ |
| 2406 | char inbuf[MAX_PATH*2]; |
| 2407 | char *inbufp = inbuf; |
Tim Peters | 67d70eb | 2006-03-01 04:35:45 +0000 | [diff] [blame] | 2408 | Py_ssize_t insize = sizeof(inbuf); |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 2409 | char outbuf[MAX_PATH*2]; |
| 2410 | char *temp; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2411 | #ifdef Py_WIN_WIDE_FILENAMES |
| 2412 | if (unicode_file_names()) { |
| 2413 | PyUnicodeObject *po; |
| 2414 | if (PyArg_ParseTuple(args, "U|:_getfullpathname", &po)) { |
Georg Brandl | bb608a8 | 2008-12-05 08:35:09 +0000 | [diff] [blame] | 2415 | Py_UNICODE *wpath = PyUnicode_AS_UNICODE(po); |
| 2416 | Py_UNICODE woutbuf[MAX_PATH*2], *woutbufp = woutbuf; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2417 | Py_UNICODE *wtemp; |
Georg Brandl | bb608a8 | 2008-12-05 08:35:09 +0000 | [diff] [blame] | 2418 | DWORD result; |
| 2419 | PyObject *v; |
| 2420 | result = GetFullPathNameW(wpath, |
| 2421 | sizeof(woutbuf)/sizeof(woutbuf[0]), |
| 2422 | woutbuf, &wtemp); |
| 2423 | if (result > sizeof(woutbuf)/sizeof(woutbuf[0])) { |
| 2424 | woutbufp = malloc(result * sizeof(Py_UNICODE)); |
| 2425 | if (!woutbufp) |
| 2426 | return PyErr_NoMemory(); |
| 2427 | result = GetFullPathNameW(wpath, result, woutbufp, &wtemp); |
| 2428 | } |
| 2429 | if (result) |
| 2430 | v = PyUnicode_FromUnicode(woutbufp, wcslen(woutbufp)); |
| 2431 | else |
| 2432 | v = win32_error_unicode("GetFullPathNameW", wpath); |
| 2433 | if (woutbufp != woutbuf) |
| 2434 | free(woutbufp); |
| 2435 | return v; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2436 | } |
| 2437 | /* Drop the argument parsing error as narrow strings |
| 2438 | are also valid. */ |
| 2439 | PyErr_Clear(); |
| 2440 | } |
| 2441 | #endif |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 2442 | if (!PyArg_ParseTuple (args, "et#:_getfullpathname", |
| 2443 | Py_FileSystemDefaultEncoding, &inbufp, |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 2444 | &insize)) |
| 2445 | return NULL; |
| 2446 | if (!GetFullPathName(inbuf, sizeof(outbuf)/sizeof(outbuf[0]), |
| 2447 | outbuf, &temp)) |
| 2448 | return win32_error("GetFullPathName", inbuf); |
Martin v. Löwis | 969297f | 2004-06-15 18:49:58 +0000 | [diff] [blame] | 2449 | if (PyUnicode_Check(PyTuple_GetItem(args, 0))) { |
| 2450 | return PyUnicode_Decode(outbuf, strlen(outbuf), |
| 2451 | Py_FileSystemDefaultEncoding, NULL); |
| 2452 | } |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 2453 | return PyString_FromString(outbuf); |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 2454 | } /* end of posix__getfullpathname */ |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 2455 | #endif /* MS_WINDOWS */ |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 2456 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2457 | PyDoc_STRVAR(posix_mkdir__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 2458 | "mkdir(path [, mode=0777])\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2459 | Create a directory."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2460 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2461 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 2462 | posix_mkdir(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2463 | { |
Guido van Rossum | b0824db | 1996-02-25 04:50:32 +0000 | [diff] [blame] | 2464 | int res; |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 2465 | char *path = NULL; |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 2466 | int mode = 0777; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2467 | |
| 2468 | #ifdef Py_WIN_WIDE_FILENAMES |
| 2469 | if (unicode_file_names()) { |
| 2470 | PyUnicodeObject *po; |
Mark Hammond | 05107b6 | 2003-02-19 04:08:27 +0000 | [diff] [blame] | 2471 | if (PyArg_ParseTuple(args, "U|i:mkdir", &po, &mode)) { |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2472 | Py_BEGIN_ALLOW_THREADS |
| 2473 | /* PyUnicode_AS_UNICODE OK without thread lock as |
| 2474 | it is a simple dereference. */ |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 2475 | res = CreateDirectoryW(PyUnicode_AS_UNICODE(po), NULL); |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2476 | Py_END_ALLOW_THREADS |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 2477 | if (!res) |
| 2478 | return win32_error_unicode("mkdir", PyUnicode_AS_UNICODE(po)); |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2479 | Py_INCREF(Py_None); |
| 2480 | return Py_None; |
| 2481 | } |
| 2482 | /* Drop the argument parsing error as narrow strings |
| 2483 | are also valid. */ |
| 2484 | PyErr_Clear(); |
| 2485 | } |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 2486 | if (!PyArg_ParseTuple(args, "et|i:mkdir", |
| 2487 | Py_FileSystemDefaultEncoding, &path, &mode)) |
| 2488 | return NULL; |
| 2489 | Py_BEGIN_ALLOW_THREADS |
| 2490 | /* PyUnicode_AS_UNICODE OK without thread lock as |
| 2491 | it is a simple dereference. */ |
| 2492 | res = CreateDirectoryA(path, NULL); |
| 2493 | Py_END_ALLOW_THREADS |
| 2494 | if (!res) { |
| 2495 | win32_error("mkdir", path); |
| 2496 | PyMem_Free(path); |
| 2497 | return NULL; |
| 2498 | } |
| 2499 | PyMem_Free(path); |
| 2500 | Py_INCREF(Py_None); |
| 2501 | return Py_None; |
| 2502 | #else |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2503 | |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 2504 | if (!PyArg_ParseTuple(args, "et|i:mkdir", |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 2505 | Py_FileSystemDefaultEncoding, &path, &mode)) |
Guido van Rossum | b0824db | 1996-02-25 04:50:32 +0000 | [diff] [blame] | 2506 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2507 | Py_BEGIN_ALLOW_THREADS |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 2508 | #if ( defined(__WATCOMC__) || defined(PYCC_VACPP) ) && !defined(__QNX__) |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 2509 | res = mkdir(path); |
| 2510 | #else |
Guido van Rossum | b0824db | 1996-02-25 04:50:32 +0000 | [diff] [blame] | 2511 | res = mkdir(path, mode); |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 2512 | #endif |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2513 | Py_END_ALLOW_THREADS |
Guido van Rossum | b0824db | 1996-02-25 04:50:32 +0000 | [diff] [blame] | 2514 | if (res < 0) |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 2515 | return posix_error_with_allocated_filename(path); |
| 2516 | PyMem_Free(path); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2517 | Py_INCREF(Py_None); |
| 2518 | return Py_None; |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 2519 | #endif |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2520 | } |
| 2521 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2522 | |
Neal Norwitz | 1818ed7 | 2006-03-26 00:29:48 +0000 | [diff] [blame] | 2523 | /* sys/resource.h is needed for at least: wait3(), wait4(), broken nice. */ |
| 2524 | #if defined(HAVE_SYS_RESOURCE_H) |
Thomas Wouters | e38b2f1 | 2001-07-11 22:35:31 +0000 | [diff] [blame] | 2525 | #include <sys/resource.h> |
| 2526 | #endif |
Thomas Wouters | e38b2f1 | 2001-07-11 22:35:31 +0000 | [diff] [blame] | 2527 | |
Neal Norwitz | 1818ed7 | 2006-03-26 00:29:48 +0000 | [diff] [blame] | 2528 | |
| 2529 | #ifdef HAVE_NICE |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2530 | PyDoc_STRVAR(posix_nice__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 2531 | "nice(inc) -> new_priority\n\n\ |
| 2532 | 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] | 2533 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2534 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 2535 | posix_nice(PyObject *self, PyObject *args) |
Guido van Rossum | 775f4da | 1993-01-09 17:18:52 +0000 | [diff] [blame] | 2536 | { |
| 2537 | int increment, value; |
| 2538 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 2539 | if (!PyArg_ParseTuple(args, "i:nice", &increment)) |
Guido van Rossum | 775f4da | 1993-01-09 17:18:52 +0000 | [diff] [blame] | 2540 | return NULL; |
Thomas Wouters | c2c12dc | 2001-07-11 14:45:34 +0000 | [diff] [blame] | 2541 | |
| 2542 | /* There are two flavours of 'nice': one that returns the new |
| 2543 | priority (as required by almost all standards out there) and the |
Thomas Wouters | e38b2f1 | 2001-07-11 22:35:31 +0000 | [diff] [blame] | 2544 | Linux/FreeBSD/BSDI one, which returns '0' on success and advices |
| 2545 | the use of getpriority() to get the new priority. |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 2546 | |
Thomas Wouters | c2c12dc | 2001-07-11 14:45:34 +0000 | [diff] [blame] | 2547 | If we are of the nice family that returns the new priority, we |
| 2548 | need to clear errno before the call, and check if errno is filled |
| 2549 | before calling posix_error() on a returnvalue of -1, because the |
| 2550 | -1 may be the actual new priority! */ |
| 2551 | |
| 2552 | errno = 0; |
Guido van Rossum | 775f4da | 1993-01-09 17:18:52 +0000 | [diff] [blame] | 2553 | value = nice(increment); |
Thomas Wouters | e38b2f1 | 2001-07-11 22:35:31 +0000 | [diff] [blame] | 2554 | #if defined(HAVE_BROKEN_NICE) && defined(HAVE_GETPRIORITY) |
Thomas Wouters | c2c12dc | 2001-07-11 14:45:34 +0000 | [diff] [blame] | 2555 | if (value == 0) |
| 2556 | value = getpriority(PRIO_PROCESS, 0); |
| 2557 | #endif |
| 2558 | if (value == -1 && errno != 0) |
| 2559 | /* either nice() or getpriority() returned an error */ |
Guido van Rossum | 775f4da | 1993-01-09 17:18:52 +0000 | [diff] [blame] | 2560 | return posix_error(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2561 | return PyInt_FromLong((long) value); |
Guido van Rossum | 775f4da | 1993-01-09 17:18:52 +0000 | [diff] [blame] | 2562 | } |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 2563 | #endif /* HAVE_NICE */ |
Guido van Rossum | 1ff6cb4 | 1991-04-08 20:59:13 +0000 | [diff] [blame] | 2564 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2565 | PyDoc_STRVAR(posix_rename__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 2566 | "rename(old, new)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2567 | Rename a file or directory."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2568 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2569 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 2570 | posix_rename(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2571 | { |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2572 | #ifdef MS_WINDOWS |
Martin v. Löwis | 8e0d494 | 2006-05-04 10:08:42 +0000 | [diff] [blame] | 2573 | PyObject *o1, *o2; |
| 2574 | char *p1, *p2; |
| 2575 | BOOL result; |
| 2576 | if (unicode_file_names()) { |
Hirokazu Yamamoto | a0fdd72 | 2008-08-17 09:19:52 +0000 | [diff] [blame] | 2577 | if (!PyArg_ParseTuple(args, "OO:rename", &o1, &o2)) |
| 2578 | goto error; |
| 2579 | if (!convert_to_unicode(&o1)) |
| 2580 | goto error; |
| 2581 | if (!convert_to_unicode(&o2)) { |
| 2582 | Py_DECREF(o1); |
| 2583 | goto error; |
Martin v. Löwis | 8e0d494 | 2006-05-04 10:08:42 +0000 | [diff] [blame] | 2584 | } |
Hirokazu Yamamoto | a0fdd72 | 2008-08-17 09:19:52 +0000 | [diff] [blame] | 2585 | Py_BEGIN_ALLOW_THREADS |
| 2586 | result = MoveFileW(PyUnicode_AsUnicode(o1), |
| 2587 | PyUnicode_AsUnicode(o2)); |
| 2588 | Py_END_ALLOW_THREADS |
| 2589 | Py_DECREF(o1); |
| 2590 | Py_DECREF(o2); |
| 2591 | if (!result) |
| 2592 | return win32_error("rename", NULL); |
| 2593 | Py_INCREF(Py_None); |
| 2594 | return Py_None; |
| 2595 | error: |
| 2596 | PyErr_Clear(); |
Martin v. Löwis | 8e0d494 | 2006-05-04 10:08:42 +0000 | [diff] [blame] | 2597 | } |
| 2598 | if (!PyArg_ParseTuple(args, "ss:rename", &p1, &p2)) |
| 2599 | return NULL; |
| 2600 | Py_BEGIN_ALLOW_THREADS |
| 2601 | result = MoveFileA(p1, p2); |
| 2602 | Py_END_ALLOW_THREADS |
| 2603 | if (!result) |
| 2604 | return win32_error("rename", NULL); |
| 2605 | Py_INCREF(Py_None); |
| 2606 | return Py_None; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2607 | #else |
Martin v. Löwis | 4fc2bda | 2006-05-04 12:04:27 +0000 | [diff] [blame] | 2608 | return posix_2str(args, "etet:rename", rename); |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2609 | #endif |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2610 | } |
| 2611 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2612 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2613 | PyDoc_STRVAR(posix_rmdir__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 2614 | "rmdir(path)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2615 | Remove a directory."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2616 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2617 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 2618 | posix_rmdir(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2619 | { |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2620 | #ifdef MS_WINDOWS |
Martin v. Löwis | 8e0d494 | 2006-05-04 10:08:42 +0000 | [diff] [blame] | 2621 | return win32_1str(args, "rmdir", "s:rmdir", RemoveDirectoryA, "U:rmdir", RemoveDirectoryW); |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2622 | #else |
Martin v. Löwis | 8e0d494 | 2006-05-04 10:08:42 +0000 | [diff] [blame] | 2623 | return posix_1str(args, "et:rmdir", rmdir); |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2624 | #endif |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2625 | } |
| 2626 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2627 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2628 | PyDoc_STRVAR(posix_stat__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 2629 | "stat(path) -> stat result\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2630 | Perform a stat system call on the given path."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2631 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2632 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 2633 | posix_stat(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2634 | { |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2635 | #ifdef MS_WINDOWS |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 2636 | 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] | 2637 | #else |
| 2638 | return posix_do_stat(self, args, "et:stat", STAT, NULL, NULL); |
| 2639 | #endif |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2640 | } |
| 2641 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2642 | |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 2643 | #ifdef HAVE_SYSTEM |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2644 | PyDoc_STRVAR(posix_system__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 2645 | "system(command) -> exit_status\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2646 | Execute the command (a string) in a subshell."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2647 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2648 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 2649 | posix_system(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2650 | { |
Guido van Rossum | ef0a00e | 1992-01-27 16:51:30 +0000 | [diff] [blame] | 2651 | char *command; |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 2652 | long sts; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 2653 | if (!PyArg_ParseTuple(args, "s:system", &command)) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2654 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2655 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | ef0a00e | 1992-01-27 16:51:30 +0000 | [diff] [blame] | 2656 | sts = system(command); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2657 | Py_END_ALLOW_THREADS |
| 2658 | return PyInt_FromLong(sts); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2659 | } |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 2660 | #endif |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2661 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2662 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2663 | PyDoc_STRVAR(posix_umask__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 2664 | "umask(new_mask) -> old_mask\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2665 | Set the current numeric umask and return the previous umask."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2666 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2667 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 2668 | posix_umask(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2669 | { |
| 2670 | int i; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 2671 | if (!PyArg_ParseTuple(args, "i:umask", &i)) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2672 | return NULL; |
Fred Drake | 0368bc4 | 2001-07-19 20:48:32 +0000 | [diff] [blame] | 2673 | i = (int)umask(i); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2674 | if (i < 0) |
| 2675 | return posix_error(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2676 | return PyInt_FromLong((long)i); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2677 | } |
| 2678 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2679 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2680 | PyDoc_STRVAR(posix_unlink__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 2681 | "unlink(path)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2682 | Remove a file (same as remove(path))."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2683 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2684 | PyDoc_STRVAR(posix_remove__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 2685 | "remove(path)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2686 | Remove a file (same as unlink(path))."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2687 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2688 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 2689 | posix_unlink(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2690 | { |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2691 | #ifdef MS_WINDOWS |
Martin v. Löwis | 8e0d494 | 2006-05-04 10:08:42 +0000 | [diff] [blame] | 2692 | return win32_1str(args, "remove", "s:remove", DeleteFileA, "U:remove", DeleteFileW); |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2693 | #else |
Martin v. Löwis | 8e0d494 | 2006-05-04 10:08:42 +0000 | [diff] [blame] | 2694 | return posix_1str(args, "et:remove", unlink); |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 2695 | #endif |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2696 | } |
| 2697 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2698 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 2699 | #ifdef HAVE_UNAME |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2700 | PyDoc_STRVAR(posix_uname__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 2701 | "uname() -> (sysname, nodename, release, version, machine)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2702 | Return a tuple identifying the current operating system."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2703 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2704 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 2705 | posix_uname(PyObject *self, PyObject *noargs) |
Guido van Rossum | c39de5f | 1992-02-05 11:15:54 +0000 | [diff] [blame] | 2706 | { |
Guido van Rossum | c39de5f | 1992-02-05 11:15:54 +0000 | [diff] [blame] | 2707 | struct utsname u; |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 2708 | int res; |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 2709 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2710 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 2711 | res = uname(&u); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2712 | Py_END_ALLOW_THREADS |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 2713 | if (res < 0) |
Guido van Rossum | c39de5f | 1992-02-05 11:15:54 +0000 | [diff] [blame] | 2714 | return posix_error(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2715 | return Py_BuildValue("(sssss)", |
Barry Warsaw | 43d68b8 | 1996-12-19 22:10:44 +0000 | [diff] [blame] | 2716 | u.sysname, |
| 2717 | u.nodename, |
| 2718 | u.release, |
| 2719 | u.version, |
| 2720 | u.machine); |
Guido van Rossum | c39de5f | 1992-02-05 11:15:54 +0000 | [diff] [blame] | 2721 | } |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 2722 | #endif /* HAVE_UNAME */ |
Guido van Rossum | 1ff6cb4 | 1991-04-08 20:59:13 +0000 | [diff] [blame] | 2723 | |
Martin v. Löwis | 6aa9fdb | 2002-09-10 09:16:13 +0000 | [diff] [blame] | 2724 | static int |
| 2725 | extract_time(PyObject *t, long* sec, long* usec) |
| 2726 | { |
| 2727 | long intval; |
| 2728 | if (PyFloat_Check(t)) { |
| 2729 | double tval = PyFloat_AsDouble(t); |
Christian Heimes | e93237d | 2007-12-19 02:37:44 +0000 | [diff] [blame] | 2730 | PyObject *intobj = Py_TYPE(t)->tp_as_number->nb_int(t); |
Martin v. Löwis | 6aa9fdb | 2002-09-10 09:16:13 +0000 | [diff] [blame] | 2731 | if (!intobj) |
| 2732 | return -1; |
| 2733 | intval = PyInt_AsLong(intobj); |
| 2734 | Py_DECREF(intobj); |
Michael W. Hudson | b896381 | 2005-07-05 15:21:58 +0000 | [diff] [blame] | 2735 | if (intval == -1 && PyErr_Occurred()) |
| 2736 | return -1; |
Martin v. Löwis | 6aa9fdb | 2002-09-10 09:16:13 +0000 | [diff] [blame] | 2737 | *sec = intval; |
Tim Peters | 96940cf | 2002-09-10 15:37:28 +0000 | [diff] [blame] | 2738 | *usec = (long)((tval - intval) * 1e6); /* can't exceed 1000000 */ |
Martin v. Löwis | 6aa9fdb | 2002-09-10 09:16:13 +0000 | [diff] [blame] | 2739 | if (*usec < 0) |
| 2740 | /* If rounding gave us a negative number, |
| 2741 | truncate. */ |
| 2742 | *usec = 0; |
| 2743 | return 0; |
| 2744 | } |
| 2745 | intval = PyInt_AsLong(t); |
| 2746 | if (intval == -1 && PyErr_Occurred()) |
| 2747 | return -1; |
| 2748 | *sec = intval; |
| 2749 | *usec = 0; |
Martin v. Löwis | 076b209 | 2002-09-10 15:04:41 +0000 | [diff] [blame] | 2750 | return 0; |
Martin v. Löwis | 6aa9fdb | 2002-09-10 09:16:13 +0000 | [diff] [blame] | 2751 | } |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2752 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2753 | PyDoc_STRVAR(posix_utime__doc__, |
Georg Brandl | 9e5b5e4 | 2006-05-17 14:18:20 +0000 | [diff] [blame] | 2754 | "utime(path, (atime, mtime))\n\ |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 2755 | utime(path, None)\n\n\ |
Barry Warsaw | 3cef856 | 2000-05-01 16:17:24 +0000 | [diff] [blame] | 2756 | 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] | 2757 | 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] | 2758 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2759 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 2760 | posix_utime(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2761 | { |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 2762 | #ifdef Py_WIN_WIDE_FILENAMES |
| 2763 | PyObject *arg; |
| 2764 | PyUnicodeObject *obwpath; |
| 2765 | wchar_t *wpath = NULL; |
| 2766 | char *apath = NULL; |
| 2767 | HANDLE hFile; |
| 2768 | long atimesec, mtimesec, ausec, musec; |
| 2769 | FILETIME atime, mtime; |
| 2770 | PyObject *result = NULL; |
| 2771 | |
| 2772 | if (unicode_file_names()) { |
| 2773 | if (PyArg_ParseTuple(args, "UO|:utime", &obwpath, &arg)) { |
| 2774 | wpath = PyUnicode_AS_UNICODE(obwpath); |
| 2775 | Py_BEGIN_ALLOW_THREADS |
| 2776 | hFile = CreateFileW(wpath, FILE_WRITE_ATTRIBUTES, 0, |
Martin v. Löwis | 18aaa56 | 2006-10-15 08:43:33 +0000 | [diff] [blame] | 2777 | NULL, OPEN_EXISTING, |
| 2778 | FILE_FLAG_BACKUP_SEMANTICS, NULL); |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 2779 | Py_END_ALLOW_THREADS |
| 2780 | if (hFile == INVALID_HANDLE_VALUE) |
| 2781 | return win32_error_unicode("utime", wpath); |
| 2782 | } else |
| 2783 | /* Drop the argument parsing error as narrow strings |
| 2784 | are also valid. */ |
| 2785 | PyErr_Clear(); |
| 2786 | } |
| 2787 | if (!wpath) { |
| 2788 | if (!PyArg_ParseTuple(args, "etO:utime", |
| 2789 | Py_FileSystemDefaultEncoding, &apath, &arg)) |
| 2790 | return NULL; |
| 2791 | Py_BEGIN_ALLOW_THREADS |
| 2792 | hFile = CreateFileA(apath, FILE_WRITE_ATTRIBUTES, 0, |
Martin v. Löwis | 18aaa56 | 2006-10-15 08:43:33 +0000 | [diff] [blame] | 2793 | NULL, OPEN_EXISTING, |
| 2794 | FILE_FLAG_BACKUP_SEMANTICS, NULL); |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 2795 | Py_END_ALLOW_THREADS |
| 2796 | if (hFile == INVALID_HANDLE_VALUE) { |
| 2797 | win32_error("utime", apath); |
| 2798 | PyMem_Free(apath); |
| 2799 | return NULL; |
| 2800 | } |
| 2801 | PyMem_Free(apath); |
| 2802 | } |
| 2803 | |
| 2804 | if (arg == Py_None) { |
| 2805 | SYSTEMTIME now; |
| 2806 | GetSystemTime(&now); |
| 2807 | if (!SystemTimeToFileTime(&now, &mtime) || |
| 2808 | !SystemTimeToFileTime(&now, &atime)) { |
| 2809 | win32_error("utime", NULL); |
| 2810 | goto done; |
| 2811 | } |
| 2812 | } |
| 2813 | else if (!PyTuple_Check(arg) || PyTuple_Size(arg) != 2) { |
| 2814 | PyErr_SetString(PyExc_TypeError, |
| 2815 | "utime() arg 2 must be a tuple (atime, mtime)"); |
| 2816 | goto done; |
| 2817 | } |
| 2818 | else { |
| 2819 | if (extract_time(PyTuple_GET_ITEM(arg, 0), |
| 2820 | &atimesec, &ausec) == -1) |
| 2821 | goto done; |
Martin v. Löwis | f43893a | 2006-10-09 20:44:25 +0000 | [diff] [blame] | 2822 | time_t_to_FILE_TIME(atimesec, 1000*ausec, &atime); |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 2823 | if (extract_time(PyTuple_GET_ITEM(arg, 1), |
| 2824 | &mtimesec, &musec) == -1) |
| 2825 | goto done; |
Martin v. Löwis | f43893a | 2006-10-09 20:44:25 +0000 | [diff] [blame] | 2826 | time_t_to_FILE_TIME(mtimesec, 1000*musec, &mtime); |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 2827 | } |
| 2828 | if (!SetFileTime(hFile, NULL, &atime, &mtime)) { |
| 2829 | /* Avoid putting the file name into the error here, |
| 2830 | as that may confuse the user into believing that |
| 2831 | something is wrong with the file, when it also |
| 2832 | could be the time stamp that gives a problem. */ |
| 2833 | win32_error("utime", NULL); |
| 2834 | } |
| 2835 | Py_INCREF(Py_None); |
| 2836 | result = Py_None; |
| 2837 | done: |
| 2838 | CloseHandle(hFile); |
| 2839 | return result; |
| 2840 | #else /* Py_WIN_WIDE_FILENAMES */ |
| 2841 | |
Neal Norwitz | 2adf210 | 2004-06-09 01:46:02 +0000 | [diff] [blame] | 2842 | char *path = NULL; |
Martin v. Löwis | 6aa9fdb | 2002-09-10 09:16:13 +0000 | [diff] [blame] | 2843 | long atime, mtime, ausec, musec; |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 2844 | int res; |
Barry Warsaw | 3cef856 | 2000-05-01 16:17:24 +0000 | [diff] [blame] | 2845 | PyObject* arg; |
Guido van Rossum | 1ff6cb4 | 1991-04-08 20:59:13 +0000 | [diff] [blame] | 2846 | |
Martin v. Löwis | 6aa9fdb | 2002-09-10 09:16:13 +0000 | [diff] [blame] | 2847 | #if defined(HAVE_UTIMES) |
| 2848 | struct timeval buf[2]; |
| 2849 | #define ATIME buf[0].tv_sec |
| 2850 | #define MTIME buf[1].tv_sec |
| 2851 | #elif defined(HAVE_UTIME_H) |
Guido van Rossum | 6d8841c | 1997-08-14 19:57:39 +0000 | [diff] [blame] | 2852 | /* XXX should define struct utimbuf instead, above */ |
Guido van Rossum | 1ff6cb4 | 1991-04-08 20:59:13 +0000 | [diff] [blame] | 2853 | struct utimbuf buf; |
| 2854 | #define ATIME buf.actime |
| 2855 | #define MTIME buf.modtime |
| 2856 | #define UTIME_ARG &buf |
Martin v. Löwis | 6aa9fdb | 2002-09-10 09:16:13 +0000 | [diff] [blame] | 2857 | #else /* HAVE_UTIMES */ |
Guido van Rossum | 1ff6cb4 | 1991-04-08 20:59:13 +0000 | [diff] [blame] | 2858 | time_t buf[2]; |
| 2859 | #define ATIME buf[0] |
| 2860 | #define MTIME buf[1] |
| 2861 | #define UTIME_ARG buf |
Martin v. Löwis | 6aa9fdb | 2002-09-10 09:16:13 +0000 | [diff] [blame] | 2862 | #endif /* HAVE_UTIMES */ |
Guido van Rossum | 1ff6cb4 | 1991-04-08 20:59:13 +0000 | [diff] [blame] | 2863 | |
Mark Hammond | 817c929 | 2003-12-03 01:22:38 +0000 | [diff] [blame] | 2864 | |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 2865 | if (!PyArg_ParseTuple(args, "etO:utime", |
Hye-Shik Chang | 2b2c973 | 2004-01-04 13:54:25 +0000 | [diff] [blame] | 2866 | Py_FileSystemDefaultEncoding, &path, &arg)) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2867 | return NULL; |
Barry Warsaw | 3cef856 | 2000-05-01 16:17:24 +0000 | [diff] [blame] | 2868 | if (arg == Py_None) { |
| 2869 | /* optional time values not given */ |
| 2870 | Py_BEGIN_ALLOW_THREADS |
| 2871 | res = utime(path, NULL); |
| 2872 | Py_END_ALLOW_THREADS |
| 2873 | } |
Martin v. Löwis | 6aa9fdb | 2002-09-10 09:16:13 +0000 | [diff] [blame] | 2874 | else if (!PyTuple_Check(arg) || PyTuple_Size(arg) != 2) { |
Barry Warsaw | 3cef856 | 2000-05-01 16:17:24 +0000 | [diff] [blame] | 2875 | PyErr_SetString(PyExc_TypeError, |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 2876 | "utime() arg 2 must be a tuple (atime, mtime)"); |
Neal Norwitz | 9665271 | 2004-06-06 20:40:27 +0000 | [diff] [blame] | 2877 | PyMem_Free(path); |
Barry Warsaw | 3cef856 | 2000-05-01 16:17:24 +0000 | [diff] [blame] | 2878 | return NULL; |
| 2879 | } |
| 2880 | else { |
Martin v. Löwis | 6aa9fdb | 2002-09-10 09:16:13 +0000 | [diff] [blame] | 2881 | if (extract_time(PyTuple_GET_ITEM(arg, 0), |
Neal Norwitz | 9665271 | 2004-06-06 20:40:27 +0000 | [diff] [blame] | 2882 | &atime, &ausec) == -1) { |
| 2883 | PyMem_Free(path); |
Martin v. Löwis | 6aa9fdb | 2002-09-10 09:16:13 +0000 | [diff] [blame] | 2884 | return NULL; |
Neal Norwitz | 9665271 | 2004-06-06 20:40:27 +0000 | [diff] [blame] | 2885 | } |
Martin v. Löwis | 6aa9fdb | 2002-09-10 09:16:13 +0000 | [diff] [blame] | 2886 | if (extract_time(PyTuple_GET_ITEM(arg, 1), |
Neal Norwitz | 9665271 | 2004-06-06 20:40:27 +0000 | [diff] [blame] | 2887 | &mtime, &musec) == -1) { |
| 2888 | PyMem_Free(path); |
Martin v. Löwis | 6aa9fdb | 2002-09-10 09:16:13 +0000 | [diff] [blame] | 2889 | return NULL; |
Neal Norwitz | 9665271 | 2004-06-06 20:40:27 +0000 | [diff] [blame] | 2890 | } |
Barry Warsaw | 3cef856 | 2000-05-01 16:17:24 +0000 | [diff] [blame] | 2891 | ATIME = atime; |
| 2892 | MTIME = mtime; |
Martin v. Löwis | 6aa9fdb | 2002-09-10 09:16:13 +0000 | [diff] [blame] | 2893 | #ifdef HAVE_UTIMES |
| 2894 | buf[0].tv_usec = ausec; |
| 2895 | buf[1].tv_usec = musec; |
| 2896 | Py_BEGIN_ALLOW_THREADS |
| 2897 | res = utimes(path, buf); |
| 2898 | Py_END_ALLOW_THREADS |
| 2899 | #else |
Barry Warsaw | 3cef856 | 2000-05-01 16:17:24 +0000 | [diff] [blame] | 2900 | Py_BEGIN_ALLOW_THREADS |
| 2901 | res = utime(path, UTIME_ARG); |
| 2902 | Py_END_ALLOW_THREADS |
Mark Hammond | 817c929 | 2003-12-03 01:22:38 +0000 | [diff] [blame] | 2903 | #endif /* HAVE_UTIMES */ |
Barry Warsaw | 3cef856 | 2000-05-01 16:17:24 +0000 | [diff] [blame] | 2904 | } |
Mark Hammond | 2d5914b | 2004-05-04 08:10:37 +0000 | [diff] [blame] | 2905 | if (res < 0) { |
Neal Norwitz | 9665271 | 2004-06-06 20:40:27 +0000 | [diff] [blame] | 2906 | return posix_error_with_allocated_filename(path); |
Mark Hammond | 2d5914b | 2004-05-04 08:10:37 +0000 | [diff] [blame] | 2907 | } |
Neal Norwitz | 9665271 | 2004-06-06 20:40:27 +0000 | [diff] [blame] | 2908 | PyMem_Free(path); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2909 | Py_INCREF(Py_None); |
| 2910 | return Py_None; |
Guido van Rossum | 1ff6cb4 | 1991-04-08 20:59:13 +0000 | [diff] [blame] | 2911 | #undef UTIME_ARG |
| 2912 | #undef ATIME |
| 2913 | #undef MTIME |
Martin v. Löwis | d4e3bb3 | 2006-05-06 16:32:54 +0000 | [diff] [blame] | 2914 | #endif /* Py_WIN_WIDE_FILENAMES */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2915 | } |
| 2916 | |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 2917 | |
Guido van Rossum | 3b06619 | 1991-06-04 19:40:25 +0000 | [diff] [blame] | 2918 | /* Process operations */ |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 2919 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2920 | PyDoc_STRVAR(posix__exit__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 2921 | "_exit(status)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2922 | Exit to the system with specified status, without normal exit processing."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2923 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2924 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 2925 | posix__exit(PyObject *self, PyObject *args) |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 2926 | { |
| 2927 | int sts; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 2928 | if (!PyArg_ParseTuple(args, "i:_exit", &sts)) |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 2929 | return NULL; |
| 2930 | _exit(sts); |
Guido van Rossum | a376cc5 | 1996-12-05 23:43:35 +0000 | [diff] [blame] | 2931 | return NULL; /* Make gcc -Wall happy */ |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 2932 | } |
| 2933 | |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 2934 | #if defined(HAVE_EXECV) || defined(HAVE_SPAWNV) |
| 2935 | static void |
Martin v. Löwis | 725507b | 2006-03-07 12:08:51 +0000 | [diff] [blame] | 2936 | free_string_array(char **array, Py_ssize_t count) |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 2937 | { |
Martin v. Löwis | 725507b | 2006-03-07 12:08:51 +0000 | [diff] [blame] | 2938 | Py_ssize_t i; |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 2939 | for (i = 0; i < count; i++) |
| 2940 | PyMem_Free(array[i]); |
| 2941 | PyMem_DEL(array); |
| 2942 | } |
| 2943 | #endif |
| 2944 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2945 | |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 2946 | #ifdef HAVE_EXECV |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2947 | PyDoc_STRVAR(posix_execv__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 2948 | "execv(path, args)\n\n\ |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2949 | Execute an executable path with arguments, replacing current process.\n\ |
| 2950 | \n\ |
| 2951 | path: path of executable file\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2952 | args: tuple or list of strings"); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2953 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2954 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 2955 | posix_execv(PyObject *self, PyObject *args) |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 2956 | { |
Guido van Rossum | ef0a00e | 1992-01-27 16:51:30 +0000 | [diff] [blame] | 2957 | char *path; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2958 | PyObject *argv; |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 2959 | char **argvlist; |
Martin v. Löwis | 725507b | 2006-03-07 12:08:51 +0000 | [diff] [blame] | 2960 | Py_ssize_t i, argc; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 2961 | PyObject *(*getitem)(PyObject *, Py_ssize_t); |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 2962 | |
Guido van Rossum | 89b3325 | 1993-10-22 14:26:06 +0000 | [diff] [blame] | 2963 | /* execv has two arguments: (path, argv), where |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 2964 | argv is a list or tuple of strings. */ |
| 2965 | |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 2966 | if (!PyArg_ParseTuple(args, "etO:execv", |
| 2967 | Py_FileSystemDefaultEncoding, |
| 2968 | &path, &argv)) |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 2969 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2970 | if (PyList_Check(argv)) { |
| 2971 | argc = PyList_Size(argv); |
| 2972 | getitem = PyList_GetItem; |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 2973 | } |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2974 | else if (PyTuple_Check(argv)) { |
| 2975 | argc = PyTuple_Size(argv); |
| 2976 | getitem = PyTuple_GetItem; |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 2977 | } |
Guido van Rossum | ef0a00e | 1992-01-27 16:51:30 +0000 | [diff] [blame] | 2978 | else { |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 2979 | PyErr_SetString(PyExc_TypeError, "execv() arg 2 must be a tuple or list"); |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 2980 | PyMem_Free(path); |
Guido van Rossum | 50422b4 | 2000-04-26 20:34:28 +0000 | [diff] [blame] | 2981 | return NULL; |
| 2982 | } |
| 2983 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2984 | argvlist = PyMem_NEW(char *, argc+1); |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 2985 | if (argvlist == NULL) { |
| 2986 | PyMem_Free(path); |
Neal Norwitz | ec74f2f | 2003-02-11 23:05:40 +0000 | [diff] [blame] | 2987 | return PyErr_NoMemory(); |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 2988 | } |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 2989 | for (i = 0; i < argc; i++) { |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 2990 | if (!PyArg_Parse((*getitem)(argv, i), "et", |
| 2991 | Py_FileSystemDefaultEncoding, |
| 2992 | &argvlist[i])) { |
| 2993 | free_string_array(argvlist, i); |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 2994 | PyErr_SetString(PyExc_TypeError, |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 2995 | "execv() arg 2 must contain only strings"); |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 2996 | PyMem_Free(path); |
Guido van Rossum | 50422b4 | 2000-04-26 20:34:28 +0000 | [diff] [blame] | 2997 | return NULL; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 2998 | |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 2999 | } |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 3000 | } |
| 3001 | argvlist[argc] = NULL; |
| 3002 | |
Guido van Rossum | ef0a00e | 1992-01-27 16:51:30 +0000 | [diff] [blame] | 3003 | execv(path, argvlist); |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3004 | |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 3005 | /* If we get here it's definitely an error */ |
| 3006 | |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 3007 | free_string_array(argvlist, argc); |
| 3008 | PyMem_Free(path); |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 3009 | return posix_error(); |
| 3010 | } |
| 3011 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3012 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3013 | PyDoc_STRVAR(posix_execve__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 3014 | "execve(path, args, env)\n\n\ |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3015 | Execute a path with arguments and environment, replacing current process.\n\ |
| 3016 | \n\ |
| 3017 | path: path of executable file\n\ |
| 3018 | args: tuple or list of arguments\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3019 | env: dictionary of strings mapping to strings"); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3020 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3021 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 3022 | posix_execve(PyObject *self, PyObject *args) |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 3023 | { |
| 3024 | char *path; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3025 | PyObject *argv, *env; |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 3026 | char **argvlist; |
| 3027 | char **envlist; |
Barry Warsaw | 5ed19dc | 1997-01-29 15:08:24 +0000 | [diff] [blame] | 3028 | PyObject *key, *val, *keys=NULL, *vals=NULL; |
Martin v. Löwis | 725507b | 2006-03-07 12:08:51 +0000 | [diff] [blame] | 3029 | Py_ssize_t i, pos, argc, envc; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 3030 | PyObject *(*getitem)(PyObject *, Py_ssize_t); |
Martin v. Löwis | 26fd960 | 2006-04-22 11:15:41 +0000 | [diff] [blame] | 3031 | Py_ssize_t lastarg = 0; |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 3032 | |
| 3033 | /* execve has three arguments: (path, argv, env), where |
| 3034 | argv is a list or tuple of strings and env is a dictionary |
| 3035 | like posix.environ. */ |
| 3036 | |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 3037 | if (!PyArg_ParseTuple(args, "etOO:execve", |
| 3038 | Py_FileSystemDefaultEncoding, |
| 3039 | &path, &argv, &env)) |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 3040 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3041 | if (PyList_Check(argv)) { |
| 3042 | argc = PyList_Size(argv); |
| 3043 | getitem = PyList_GetItem; |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 3044 | } |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3045 | else if (PyTuple_Check(argv)) { |
| 3046 | argc = PyTuple_Size(argv); |
| 3047 | getitem = PyTuple_GetItem; |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 3048 | } |
| 3049 | else { |
Guido van Rossum | 0847c5c | 2002-12-13 18:36:22 +0000 | [diff] [blame] | 3050 | PyErr_SetString(PyExc_TypeError, |
| 3051 | "execve() arg 2 must be a tuple or list"); |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 3052 | goto fail_0; |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 3053 | } |
Barry Warsaw | 5ed19dc | 1997-01-29 15:08:24 +0000 | [diff] [blame] | 3054 | if (!PyMapping_Check(env)) { |
Guido van Rossum | 0847c5c | 2002-12-13 18:36:22 +0000 | [diff] [blame] | 3055 | PyErr_SetString(PyExc_TypeError, |
| 3056 | "execve() arg 3 must be a mapping object"); |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 3057 | goto fail_0; |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 3058 | } |
| 3059 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3060 | argvlist = PyMem_NEW(char *, argc+1); |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 3061 | if (argvlist == NULL) { |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3062 | PyErr_NoMemory(); |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 3063 | goto fail_0; |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 3064 | } |
| 3065 | for (i = 0; i < argc; i++) { |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3066 | if (!PyArg_Parse((*getitem)(argv, i), |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 3067 | "et;execve() arg 2 must contain only strings", |
Guido van Rossum | 1e700d2 | 2002-10-16 16:52:11 +0000 | [diff] [blame] | 3068 | Py_FileSystemDefaultEncoding, |
Barry Warsaw | 43d68b8 | 1996-12-19 22:10:44 +0000 | [diff] [blame] | 3069 | &argvlist[i])) |
| 3070 | { |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 3071 | lastarg = i; |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 3072 | goto fail_1; |
| 3073 | } |
| 3074 | } |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 3075 | lastarg = argc; |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 3076 | argvlist[argc] = NULL; |
| 3077 | |
Jeremy Hylton | 03657cf | 2000-07-12 13:05:33 +0000 | [diff] [blame] | 3078 | i = PyMapping_Size(env); |
Guido van Rossum | 0847c5c | 2002-12-13 18:36:22 +0000 | [diff] [blame] | 3079 | if (i < 0) |
| 3080 | goto fail_1; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3081 | envlist = PyMem_NEW(char *, i + 1); |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 3082 | if (envlist == NULL) { |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3083 | PyErr_NoMemory(); |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 3084 | goto fail_1; |
| 3085 | } |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 3086 | envc = 0; |
Barry Warsaw | 5ed19dc | 1997-01-29 15:08:24 +0000 | [diff] [blame] | 3087 | keys = PyMapping_Keys(env); |
| 3088 | vals = PyMapping_Values(env); |
| 3089 | if (!keys || !vals) |
| 3090 | goto fail_2; |
Guido van Rossum | 0847c5c | 2002-12-13 18:36:22 +0000 | [diff] [blame] | 3091 | if (!PyList_Check(keys) || !PyList_Check(vals)) { |
| 3092 | PyErr_SetString(PyExc_TypeError, |
| 3093 | "execve(): env.keys() or env.values() is not a list"); |
| 3094 | goto fail_2; |
| 3095 | } |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 3096 | |
Barry Warsaw | 5ed19dc | 1997-01-29 15:08:24 +0000 | [diff] [blame] | 3097 | for (pos = 0; pos < i; pos++) { |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 3098 | char *p, *k, *v; |
Tim Peters | c8996f5 | 2001-12-03 20:41:00 +0000 | [diff] [blame] | 3099 | size_t len; |
Barry Warsaw | 5ed19dc | 1997-01-29 15:08:24 +0000 | [diff] [blame] | 3100 | |
| 3101 | key = PyList_GetItem(keys, pos); |
| 3102 | val = PyList_GetItem(vals, pos); |
| 3103 | if (!key || !val) |
| 3104 | goto fail_2; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 3105 | |
Guido van Rossum | 0847c5c | 2002-12-13 18:36:22 +0000 | [diff] [blame] | 3106 | if (!PyArg_Parse( |
| 3107 | key, |
| 3108 | "s;execve() arg 3 contains a non-string key", |
| 3109 | &k) || |
| 3110 | !PyArg_Parse( |
| 3111 | val, |
| 3112 | "s;execve() arg 3 contains a non-string value", |
| 3113 | &v)) |
Barry Warsaw | 43d68b8 | 1996-12-19 22:10:44 +0000 | [diff] [blame] | 3114 | { |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 3115 | goto fail_2; |
| 3116 | } |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 3117 | |
| 3118 | #if defined(PYOS_OS2) |
| 3119 | /* Omit Pseudo-Env Vars that Would Confuse Programs if Passed On */ |
| 3120 | if (stricmp(k, "BEGINLIBPATH") != 0 && stricmp(k, "ENDLIBPATH") != 0) { |
| 3121 | #endif |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 3122 | len = PyString_Size(key) + PyString_Size(val) + 2; |
Tim Peters | c8996f5 | 2001-12-03 20:41:00 +0000 | [diff] [blame] | 3123 | p = PyMem_NEW(char, len); |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 3124 | if (p == NULL) { |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3125 | PyErr_NoMemory(); |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 3126 | goto fail_2; |
| 3127 | } |
Tim Peters | c8996f5 | 2001-12-03 20:41:00 +0000 | [diff] [blame] | 3128 | PyOS_snprintf(p, len, "%s=%s", k, v); |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 3129 | envlist[envc++] = p; |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 3130 | #if defined(PYOS_OS2) |
| 3131 | } |
| 3132 | #endif |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 3133 | } |
| 3134 | envlist[envc] = 0; |
| 3135 | |
| 3136 | execve(path, argvlist, envlist); |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 3137 | |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 3138 | /* If we get here it's definitely an error */ |
| 3139 | |
| 3140 | (void) posix_error(); |
| 3141 | |
Guido van Rossum | 0847c5c | 2002-12-13 18:36:22 +0000 | [diff] [blame] | 3142 | fail_2: |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 3143 | while (--envc >= 0) |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3144 | PyMem_DEL(envlist[envc]); |
| 3145 | PyMem_DEL(envlist); |
Guido van Rossum | 0847c5c | 2002-12-13 18:36:22 +0000 | [diff] [blame] | 3146 | fail_1: |
| 3147 | free_string_array(argvlist, lastarg); |
Barry Warsaw | 5ed19dc | 1997-01-29 15:08:24 +0000 | [diff] [blame] | 3148 | Py_XDECREF(vals); |
| 3149 | Py_XDECREF(keys); |
Guido van Rossum | 0847c5c | 2002-12-13 18:36:22 +0000 | [diff] [blame] | 3150 | fail_0: |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 3151 | PyMem_Free(path); |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 3152 | return NULL; |
| 3153 | } |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 3154 | #endif /* HAVE_EXECV */ |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 3155 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3156 | |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3157 | #ifdef HAVE_SPAWNV |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3158 | PyDoc_STRVAR(posix_spawnv__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 3159 | "spawnv(mode, path, args)\n\n\ |
Tim Peters | 25059d3 | 2001-12-07 20:35:43 +0000 | [diff] [blame] | 3160 | Execute the program 'path' in a new process.\n\ |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3161 | \n\ |
Fred Drake | a6dff3e | 1999-02-01 22:24:40 +0000 | [diff] [blame] | 3162 | mode: mode of process creation\n\ |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3163 | path: path of executable file\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3164 | args: tuple or list of strings"); |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3165 | |
| 3166 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 3167 | posix_spawnv(PyObject *self, PyObject *args) |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3168 | { |
| 3169 | char *path; |
| 3170 | PyObject *argv; |
| 3171 | char **argvlist; |
Martin v. Löwis | 26fd960 | 2006-04-22 11:15:41 +0000 | [diff] [blame] | 3172 | int mode, i; |
| 3173 | Py_ssize_t argc; |
Tim Peters | 79248aa | 2001-08-29 21:37:10 +0000 | [diff] [blame] | 3174 | Py_intptr_t spawnval; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 3175 | PyObject *(*getitem)(PyObject *, Py_ssize_t); |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3176 | |
| 3177 | /* spawnv has three arguments: (mode, path, argv), where |
| 3178 | argv is a list or tuple of strings. */ |
| 3179 | |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 3180 | if (!PyArg_ParseTuple(args, "ietO:spawnv", &mode, |
| 3181 | Py_FileSystemDefaultEncoding, |
| 3182 | &path, &argv)) |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3183 | return NULL; |
| 3184 | if (PyList_Check(argv)) { |
| 3185 | argc = PyList_Size(argv); |
| 3186 | getitem = PyList_GetItem; |
| 3187 | } |
| 3188 | else if (PyTuple_Check(argv)) { |
| 3189 | argc = PyTuple_Size(argv); |
| 3190 | getitem = PyTuple_GetItem; |
| 3191 | } |
| 3192 | else { |
Guido van Rossum | 0847c5c | 2002-12-13 18:36:22 +0000 | [diff] [blame] | 3193 | PyErr_SetString(PyExc_TypeError, |
| 3194 | "spawnv() arg 2 must be a tuple or list"); |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 3195 | PyMem_Free(path); |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3196 | return NULL; |
| 3197 | } |
| 3198 | |
| 3199 | argvlist = PyMem_NEW(char *, argc+1); |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 3200 | if (argvlist == NULL) { |
| 3201 | PyMem_Free(path); |
Neal Norwitz | ec74f2f | 2003-02-11 23:05:40 +0000 | [diff] [blame] | 3202 | return PyErr_NoMemory(); |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 3203 | } |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3204 | for (i = 0; i < argc; i++) { |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 3205 | if (!PyArg_Parse((*getitem)(argv, i), "et", |
| 3206 | Py_FileSystemDefaultEncoding, |
| 3207 | &argvlist[i])) { |
| 3208 | free_string_array(argvlist, i); |
Guido van Rossum | 0847c5c | 2002-12-13 18:36:22 +0000 | [diff] [blame] | 3209 | PyErr_SetString( |
| 3210 | PyExc_TypeError, |
| 3211 | "spawnv() arg 2 must contain only strings"); |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 3212 | PyMem_Free(path); |
Fred Drake | 137507e | 2000-06-01 02:02:46 +0000 | [diff] [blame] | 3213 | return NULL; |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3214 | } |
| 3215 | } |
| 3216 | argvlist[argc] = NULL; |
| 3217 | |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 3218 | #if defined(PYOS_OS2) && defined(PYCC_GCC) |
| 3219 | Py_BEGIN_ALLOW_THREADS |
| 3220 | spawnval = spawnv(mode, path, argvlist); |
| 3221 | Py_END_ALLOW_THREADS |
| 3222 | #else |
Guido van Rossum | 246bc17 | 1999-02-01 23:54:31 +0000 | [diff] [blame] | 3223 | if (mode == _OLD_P_OVERLAY) |
| 3224 | mode = _P_OVERLAY; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 3225 | |
Tim Peters | 25059d3 | 2001-12-07 20:35:43 +0000 | [diff] [blame] | 3226 | Py_BEGIN_ALLOW_THREADS |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 3227 | spawnval = _spawnv(mode, path, argvlist); |
Tim Peters | 25059d3 | 2001-12-07 20:35:43 +0000 | [diff] [blame] | 3228 | Py_END_ALLOW_THREADS |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 3229 | #endif |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 3230 | |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 3231 | free_string_array(argvlist, argc); |
| 3232 | PyMem_Free(path); |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3233 | |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 3234 | if (spawnval == -1) |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3235 | return posix_error(); |
| 3236 | else |
Fredrik Lundh | e25cfd8 | 2000-07-09 13:10:40 +0000 | [diff] [blame] | 3237 | #if SIZEOF_LONG == SIZEOF_VOID_P |
| 3238 | return Py_BuildValue("l", (long) spawnval); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 3239 | #else |
Martin v. Löwis | b9a0f91 | 2003-03-29 10:06:18 +0000 | [diff] [blame] | 3240 | return Py_BuildValue("L", (PY_LONG_LONG) spawnval); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 3241 | #endif |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3242 | } |
| 3243 | |
| 3244 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3245 | PyDoc_STRVAR(posix_spawnve__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 3246 | "spawnve(mode, path, args, env)\n\n\ |
Tim Peters | 25059d3 | 2001-12-07 20:35:43 +0000 | [diff] [blame] | 3247 | Execute the program 'path' in a new process.\n\ |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3248 | \n\ |
Fred Drake | a6dff3e | 1999-02-01 22:24:40 +0000 | [diff] [blame] | 3249 | mode: mode of process creation\n\ |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3250 | path: path of executable file\n\ |
| 3251 | args: tuple or list of arguments\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3252 | env: dictionary of strings mapping to strings"); |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3253 | |
| 3254 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 3255 | posix_spawnve(PyObject *self, PyObject *args) |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3256 | { |
| 3257 | char *path; |
| 3258 | PyObject *argv, *env; |
| 3259 | char **argvlist; |
| 3260 | char **envlist; |
| 3261 | PyObject *key, *val, *keys=NULL, *vals=NULL, *res=NULL; |
Martin v. Löwis | 26fd960 | 2006-04-22 11:15:41 +0000 | [diff] [blame] | 3262 | int mode, pos, envc; |
| 3263 | Py_ssize_t argc, i; |
Tim Peters | 79248aa | 2001-08-29 21:37:10 +0000 | [diff] [blame] | 3264 | Py_intptr_t spawnval; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 3265 | PyObject *(*getitem)(PyObject *, Py_ssize_t); |
Martin v. Löwis | 26fd960 | 2006-04-22 11:15:41 +0000 | [diff] [blame] | 3266 | Py_ssize_t lastarg = 0; |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3267 | |
| 3268 | /* spawnve has four arguments: (mode, path, argv, env), where |
| 3269 | argv is a list or tuple of strings and env is a dictionary |
| 3270 | like posix.environ. */ |
| 3271 | |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 3272 | if (!PyArg_ParseTuple(args, "ietOO:spawnve", &mode, |
| 3273 | Py_FileSystemDefaultEncoding, |
| 3274 | &path, &argv, &env)) |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3275 | return NULL; |
| 3276 | if (PyList_Check(argv)) { |
| 3277 | argc = PyList_Size(argv); |
| 3278 | getitem = PyList_GetItem; |
| 3279 | } |
| 3280 | else if (PyTuple_Check(argv)) { |
| 3281 | argc = PyTuple_Size(argv); |
| 3282 | getitem = PyTuple_GetItem; |
| 3283 | } |
| 3284 | else { |
Guido van Rossum | 0847c5c | 2002-12-13 18:36:22 +0000 | [diff] [blame] | 3285 | PyErr_SetString(PyExc_TypeError, |
| 3286 | "spawnve() arg 2 must be a tuple or list"); |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 3287 | goto fail_0; |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3288 | } |
| 3289 | if (!PyMapping_Check(env)) { |
Guido van Rossum | 0847c5c | 2002-12-13 18:36:22 +0000 | [diff] [blame] | 3290 | PyErr_SetString(PyExc_TypeError, |
| 3291 | "spawnve() arg 3 must be a mapping object"); |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 3292 | goto fail_0; |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3293 | } |
| 3294 | |
| 3295 | argvlist = PyMem_NEW(char *, argc+1); |
| 3296 | if (argvlist == NULL) { |
| 3297 | PyErr_NoMemory(); |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 3298 | goto fail_0; |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3299 | } |
| 3300 | for (i = 0; i < argc; i++) { |
| 3301 | if (!PyArg_Parse((*getitem)(argv, i), |
Guido van Rossum | 0847c5c | 2002-12-13 18:36:22 +0000 | [diff] [blame] | 3302 | "et;spawnve() arg 2 must contain only strings", |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 3303 | Py_FileSystemDefaultEncoding, |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3304 | &argvlist[i])) |
| 3305 | { |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 3306 | lastarg = i; |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3307 | goto fail_1; |
| 3308 | } |
| 3309 | } |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 3310 | lastarg = argc; |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3311 | argvlist[argc] = NULL; |
| 3312 | |
Jeremy Hylton | 03657cf | 2000-07-12 13:05:33 +0000 | [diff] [blame] | 3313 | i = PyMapping_Size(env); |
Guido van Rossum | 0847c5c | 2002-12-13 18:36:22 +0000 | [diff] [blame] | 3314 | if (i < 0) |
| 3315 | goto fail_1; |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3316 | envlist = PyMem_NEW(char *, i + 1); |
| 3317 | if (envlist == NULL) { |
| 3318 | PyErr_NoMemory(); |
| 3319 | goto fail_1; |
| 3320 | } |
| 3321 | envc = 0; |
| 3322 | keys = PyMapping_Keys(env); |
| 3323 | vals = PyMapping_Values(env); |
| 3324 | if (!keys || !vals) |
| 3325 | goto fail_2; |
Guido van Rossum | 0847c5c | 2002-12-13 18:36:22 +0000 | [diff] [blame] | 3326 | if (!PyList_Check(keys) || !PyList_Check(vals)) { |
| 3327 | PyErr_SetString(PyExc_TypeError, |
| 3328 | "spawnve(): env.keys() or env.values() is not a list"); |
| 3329 | goto fail_2; |
| 3330 | } |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 3331 | |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3332 | for (pos = 0; pos < i; pos++) { |
| 3333 | char *p, *k, *v; |
Tim Peters | c8996f5 | 2001-12-03 20:41:00 +0000 | [diff] [blame] | 3334 | size_t len; |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3335 | |
| 3336 | key = PyList_GetItem(keys, pos); |
| 3337 | val = PyList_GetItem(vals, pos); |
| 3338 | if (!key || !val) |
| 3339 | goto fail_2; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 3340 | |
Guido van Rossum | 0847c5c | 2002-12-13 18:36:22 +0000 | [diff] [blame] | 3341 | if (!PyArg_Parse( |
| 3342 | key, |
| 3343 | "s;spawnve() arg 3 contains a non-string key", |
| 3344 | &k) || |
| 3345 | !PyArg_Parse( |
| 3346 | val, |
| 3347 | "s;spawnve() arg 3 contains a non-string value", |
| 3348 | &v)) |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3349 | { |
| 3350 | goto fail_2; |
| 3351 | } |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 3352 | len = PyString_Size(key) + PyString_Size(val) + 2; |
Tim Peters | c8996f5 | 2001-12-03 20:41:00 +0000 | [diff] [blame] | 3353 | p = PyMem_NEW(char, len); |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3354 | if (p == NULL) { |
| 3355 | PyErr_NoMemory(); |
| 3356 | goto fail_2; |
| 3357 | } |
Tim Peters | c8996f5 | 2001-12-03 20:41:00 +0000 | [diff] [blame] | 3358 | PyOS_snprintf(p, len, "%s=%s", k, v); |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3359 | envlist[envc++] = p; |
| 3360 | } |
| 3361 | envlist[envc] = 0; |
| 3362 | |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 3363 | #if defined(PYOS_OS2) && defined(PYCC_GCC) |
| 3364 | Py_BEGIN_ALLOW_THREADS |
| 3365 | spawnval = spawnve(mode, path, argvlist, envlist); |
| 3366 | Py_END_ALLOW_THREADS |
| 3367 | #else |
Guido van Rossum | 246bc17 | 1999-02-01 23:54:31 +0000 | [diff] [blame] | 3368 | if (mode == _OLD_P_OVERLAY) |
| 3369 | mode = _P_OVERLAY; |
Tim Peters | 25059d3 | 2001-12-07 20:35:43 +0000 | [diff] [blame] | 3370 | |
| 3371 | Py_BEGIN_ALLOW_THREADS |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 3372 | spawnval = _spawnve(mode, path, argvlist, envlist); |
Tim Peters | 25059d3 | 2001-12-07 20:35:43 +0000 | [diff] [blame] | 3373 | Py_END_ALLOW_THREADS |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 3374 | #endif |
Tim Peters | 25059d3 | 2001-12-07 20:35:43 +0000 | [diff] [blame] | 3375 | |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 3376 | if (spawnval == -1) |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3377 | (void) posix_error(); |
| 3378 | else |
Fredrik Lundh | e25cfd8 | 2000-07-09 13:10:40 +0000 | [diff] [blame] | 3379 | #if SIZEOF_LONG == SIZEOF_VOID_P |
| 3380 | res = Py_BuildValue("l", (long) spawnval); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 3381 | #else |
Martin v. Löwis | b9a0f91 | 2003-03-29 10:06:18 +0000 | [diff] [blame] | 3382 | res = Py_BuildValue("L", (PY_LONG_LONG) spawnval); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 3383 | #endif |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3384 | |
Guido van Rossum | 0847c5c | 2002-12-13 18:36:22 +0000 | [diff] [blame] | 3385 | fail_2: |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3386 | while (--envc >= 0) |
| 3387 | PyMem_DEL(envlist[envc]); |
| 3388 | PyMem_DEL(envlist); |
Guido van Rossum | 0847c5c | 2002-12-13 18:36:22 +0000 | [diff] [blame] | 3389 | fail_1: |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 3390 | free_string_array(argvlist, lastarg); |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3391 | Py_XDECREF(vals); |
| 3392 | Py_XDECREF(keys); |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 3393 | fail_0: |
| 3394 | PyMem_Free(path); |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3395 | return res; |
| 3396 | } |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 3397 | |
| 3398 | /* OS/2 supports spawnvp & spawnvpe natively */ |
| 3399 | #if defined(PYOS_OS2) |
| 3400 | PyDoc_STRVAR(posix_spawnvp__doc__, |
| 3401 | "spawnvp(mode, file, args)\n\n\ |
| 3402 | Execute the program 'file' in a new process, using the environment\n\ |
| 3403 | search path to find the file.\n\ |
| 3404 | \n\ |
| 3405 | mode: mode of process creation\n\ |
| 3406 | file: executable file name\n\ |
| 3407 | args: tuple or list of strings"); |
| 3408 | |
| 3409 | static PyObject * |
| 3410 | posix_spawnvp(PyObject *self, PyObject *args) |
| 3411 | { |
| 3412 | char *path; |
| 3413 | PyObject *argv; |
| 3414 | char **argvlist; |
| 3415 | int mode, i, argc; |
| 3416 | Py_intptr_t spawnval; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 3417 | PyObject *(*getitem)(PyObject *, Py_ssize_t); |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 3418 | |
| 3419 | /* spawnvp has three arguments: (mode, path, argv), where |
| 3420 | argv is a list or tuple of strings. */ |
| 3421 | |
| 3422 | if (!PyArg_ParseTuple(args, "ietO:spawnvp", &mode, |
| 3423 | Py_FileSystemDefaultEncoding, |
| 3424 | &path, &argv)) |
| 3425 | return NULL; |
| 3426 | if (PyList_Check(argv)) { |
| 3427 | argc = PyList_Size(argv); |
| 3428 | getitem = PyList_GetItem; |
| 3429 | } |
| 3430 | else if (PyTuple_Check(argv)) { |
| 3431 | argc = PyTuple_Size(argv); |
| 3432 | getitem = PyTuple_GetItem; |
| 3433 | } |
| 3434 | else { |
| 3435 | PyErr_SetString(PyExc_TypeError, |
| 3436 | "spawnvp() arg 2 must be a tuple or list"); |
| 3437 | PyMem_Free(path); |
| 3438 | return NULL; |
| 3439 | } |
| 3440 | |
| 3441 | argvlist = PyMem_NEW(char *, argc+1); |
| 3442 | if (argvlist == NULL) { |
| 3443 | PyMem_Free(path); |
| 3444 | return PyErr_NoMemory(); |
| 3445 | } |
| 3446 | for (i = 0; i < argc; i++) { |
| 3447 | if (!PyArg_Parse((*getitem)(argv, i), "et", |
| 3448 | Py_FileSystemDefaultEncoding, |
| 3449 | &argvlist[i])) { |
| 3450 | free_string_array(argvlist, i); |
| 3451 | PyErr_SetString( |
| 3452 | PyExc_TypeError, |
| 3453 | "spawnvp() arg 2 must contain only strings"); |
| 3454 | PyMem_Free(path); |
| 3455 | return NULL; |
| 3456 | } |
| 3457 | } |
| 3458 | argvlist[argc] = NULL; |
| 3459 | |
| 3460 | Py_BEGIN_ALLOW_THREADS |
| 3461 | #if defined(PYCC_GCC) |
| 3462 | spawnval = spawnvp(mode, path, argvlist); |
| 3463 | #else |
| 3464 | spawnval = _spawnvp(mode, path, argvlist); |
| 3465 | #endif |
| 3466 | Py_END_ALLOW_THREADS |
| 3467 | |
| 3468 | free_string_array(argvlist, argc); |
| 3469 | PyMem_Free(path); |
| 3470 | |
| 3471 | if (spawnval == -1) |
| 3472 | return posix_error(); |
| 3473 | else |
| 3474 | return Py_BuildValue("l", (long) spawnval); |
| 3475 | } |
| 3476 | |
| 3477 | |
| 3478 | PyDoc_STRVAR(posix_spawnvpe__doc__, |
| 3479 | "spawnvpe(mode, file, args, env)\n\n\ |
| 3480 | Execute the program 'file' in a new process, using the environment\n\ |
| 3481 | search path to find the file.\n\ |
| 3482 | \n\ |
| 3483 | mode: mode of process creation\n\ |
| 3484 | file: executable file name\n\ |
| 3485 | args: tuple or list of arguments\n\ |
| 3486 | env: dictionary of strings mapping to strings"); |
| 3487 | |
| 3488 | static PyObject * |
| 3489 | posix_spawnvpe(PyObject *self, PyObject *args) |
| 3490 | { |
| 3491 | char *path; |
| 3492 | PyObject *argv, *env; |
| 3493 | char **argvlist; |
| 3494 | char **envlist; |
| 3495 | PyObject *key, *val, *keys=NULL, *vals=NULL, *res=NULL; |
| 3496 | int mode, i, pos, argc, envc; |
| 3497 | Py_intptr_t spawnval; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 3498 | PyObject *(*getitem)(PyObject *, Py_ssize_t); |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 3499 | int lastarg = 0; |
| 3500 | |
| 3501 | /* spawnvpe has four arguments: (mode, path, argv, env), where |
| 3502 | argv is a list or tuple of strings and env is a dictionary |
| 3503 | like posix.environ. */ |
| 3504 | |
| 3505 | if (!PyArg_ParseTuple(args, "ietOO:spawnvpe", &mode, |
| 3506 | Py_FileSystemDefaultEncoding, |
| 3507 | &path, &argv, &env)) |
| 3508 | return NULL; |
| 3509 | if (PyList_Check(argv)) { |
| 3510 | argc = PyList_Size(argv); |
| 3511 | getitem = PyList_GetItem; |
| 3512 | } |
| 3513 | else if (PyTuple_Check(argv)) { |
| 3514 | argc = PyTuple_Size(argv); |
| 3515 | getitem = PyTuple_GetItem; |
| 3516 | } |
| 3517 | else { |
| 3518 | PyErr_SetString(PyExc_TypeError, |
| 3519 | "spawnvpe() arg 2 must be a tuple or list"); |
| 3520 | goto fail_0; |
| 3521 | } |
| 3522 | if (!PyMapping_Check(env)) { |
| 3523 | PyErr_SetString(PyExc_TypeError, |
| 3524 | "spawnvpe() arg 3 must be a mapping object"); |
| 3525 | goto fail_0; |
| 3526 | } |
| 3527 | |
| 3528 | argvlist = PyMem_NEW(char *, argc+1); |
| 3529 | if (argvlist == NULL) { |
| 3530 | PyErr_NoMemory(); |
| 3531 | goto fail_0; |
| 3532 | } |
| 3533 | for (i = 0; i < argc; i++) { |
| 3534 | if (!PyArg_Parse((*getitem)(argv, i), |
| 3535 | "et;spawnvpe() arg 2 must contain only strings", |
| 3536 | Py_FileSystemDefaultEncoding, |
| 3537 | &argvlist[i])) |
| 3538 | { |
| 3539 | lastarg = i; |
| 3540 | goto fail_1; |
| 3541 | } |
| 3542 | } |
| 3543 | lastarg = argc; |
| 3544 | argvlist[argc] = NULL; |
| 3545 | |
| 3546 | i = PyMapping_Size(env); |
| 3547 | if (i < 0) |
| 3548 | goto fail_1; |
| 3549 | envlist = PyMem_NEW(char *, i + 1); |
| 3550 | if (envlist == NULL) { |
| 3551 | PyErr_NoMemory(); |
| 3552 | goto fail_1; |
| 3553 | } |
| 3554 | envc = 0; |
| 3555 | keys = PyMapping_Keys(env); |
| 3556 | vals = PyMapping_Values(env); |
| 3557 | if (!keys || !vals) |
| 3558 | goto fail_2; |
| 3559 | if (!PyList_Check(keys) || !PyList_Check(vals)) { |
| 3560 | PyErr_SetString(PyExc_TypeError, |
| 3561 | "spawnvpe(): env.keys() or env.values() is not a list"); |
| 3562 | goto fail_2; |
| 3563 | } |
| 3564 | |
| 3565 | for (pos = 0; pos < i; pos++) { |
| 3566 | char *p, *k, *v; |
| 3567 | size_t len; |
| 3568 | |
| 3569 | key = PyList_GetItem(keys, pos); |
| 3570 | val = PyList_GetItem(vals, pos); |
| 3571 | if (!key || !val) |
| 3572 | goto fail_2; |
| 3573 | |
| 3574 | if (!PyArg_Parse( |
| 3575 | key, |
| 3576 | "s;spawnvpe() arg 3 contains a non-string key", |
| 3577 | &k) || |
| 3578 | !PyArg_Parse( |
| 3579 | val, |
| 3580 | "s;spawnvpe() arg 3 contains a non-string value", |
| 3581 | &v)) |
| 3582 | { |
| 3583 | goto fail_2; |
| 3584 | } |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 3585 | len = PyString_Size(key) + PyString_Size(val) + 2; |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 3586 | p = PyMem_NEW(char, len); |
| 3587 | if (p == NULL) { |
| 3588 | PyErr_NoMemory(); |
| 3589 | goto fail_2; |
| 3590 | } |
| 3591 | PyOS_snprintf(p, len, "%s=%s", k, v); |
| 3592 | envlist[envc++] = p; |
| 3593 | } |
| 3594 | envlist[envc] = 0; |
| 3595 | |
| 3596 | Py_BEGIN_ALLOW_THREADS |
| 3597 | #if defined(PYCC_GCC) |
Andrew MacIntyre | 94dcf0d | 2008-02-03 07:07:31 +0000 | [diff] [blame] | 3598 | spawnval = spawnvpe(mode, path, argvlist, envlist); |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 3599 | #else |
Andrew MacIntyre | 94dcf0d | 2008-02-03 07:07:31 +0000 | [diff] [blame] | 3600 | spawnval = _spawnvpe(mode, path, argvlist, envlist); |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 3601 | #endif |
| 3602 | Py_END_ALLOW_THREADS |
| 3603 | |
| 3604 | if (spawnval == -1) |
| 3605 | (void) posix_error(); |
| 3606 | else |
| 3607 | res = Py_BuildValue("l", (long) spawnval); |
| 3608 | |
| 3609 | fail_2: |
| 3610 | while (--envc >= 0) |
| 3611 | PyMem_DEL(envlist[envc]); |
| 3612 | PyMem_DEL(envlist); |
| 3613 | fail_1: |
| 3614 | free_string_array(argvlist, lastarg); |
| 3615 | Py_XDECREF(vals); |
| 3616 | Py_XDECREF(keys); |
| 3617 | fail_0: |
| 3618 | PyMem_Free(path); |
| 3619 | return res; |
| 3620 | } |
| 3621 | #endif /* PYOS_OS2 */ |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 3622 | #endif /* HAVE_SPAWNV */ |
| 3623 | |
| 3624 | |
Guido van Rossum | 2242f2f | 2001-04-11 20:58:20 +0000 | [diff] [blame] | 3625 | #ifdef HAVE_FORK1 |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3626 | PyDoc_STRVAR(posix_fork1__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 3627 | "fork1() -> pid\n\n\ |
Guido van Rossum | 2242f2f | 2001-04-11 20:58:20 +0000 | [diff] [blame] | 3628 | Fork a child process with a single multiplexed (i.e., not bound) thread.\n\ |
| 3629 | \n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3630 | 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] | 3631 | |
| 3632 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 3633 | posix_fork1(PyObject *self, PyObject *noargs) |
Guido van Rossum | 2242f2f | 2001-04-11 20:58:20 +0000 | [diff] [blame] | 3634 | { |
Christian Heimes | 951cc0f | 2008-01-31 23:08:23 +0000 | [diff] [blame] | 3635 | pid_t pid = fork1(); |
Guido van Rossum | 2242f2f | 2001-04-11 20:58:20 +0000 | [diff] [blame] | 3636 | if (pid == -1) |
| 3637 | return posix_error(); |
Gregory P. Smith | fb7a50f | 2008-07-14 06:06:48 +0000 | [diff] [blame] | 3638 | if (pid == 0) |
| 3639 | PyOS_AfterFork(); |
Antoine Pitrou | 794b3fc | 2009-05-23 15:47:13 +0000 | [diff] [blame] | 3640 | return PyLong_FromPid(pid); |
Guido van Rossum | 2242f2f | 2001-04-11 20:58:20 +0000 | [diff] [blame] | 3641 | } |
| 3642 | #endif |
| 3643 | |
| 3644 | |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 3645 | #ifdef HAVE_FORK |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3646 | PyDoc_STRVAR(posix_fork__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 3647 | "fork() -> pid\n\n\ |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3648 | Fork a child process.\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3649 | 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] | 3650 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3651 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 3652 | posix_fork(PyObject *self, PyObject *noargs) |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 3653 | { |
Christian Heimes | 951cc0f | 2008-01-31 23:08:23 +0000 | [diff] [blame] | 3654 | pid_t pid = fork(); |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 3655 | if (pid == -1) |
| 3656 | return posix_error(); |
Fred Drake | 49b0c3b | 2000-07-06 19:42:19 +0000 | [diff] [blame] | 3657 | if (pid == 0) |
| 3658 | PyOS_AfterFork(); |
Antoine Pitrou | 794b3fc | 2009-05-23 15:47:13 +0000 | [diff] [blame] | 3659 | return PyLong_FromPid(pid); |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 3660 | } |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 3661 | #endif |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 3662 | |
Neal Norwitz | b59798b | 2003-03-21 01:43:31 +0000 | [diff] [blame] | 3663 | /* AIX uses /dev/ptc but is otherwise the same as /dev/ptmx */ |
Neal Norwitz | 2deaddb | 2003-03-21 03:08:31 +0000 | [diff] [blame] | 3664 | /* IRIX has both /dev/ptc and /dev/ptmx, use ptmx */ |
| 3665 | #if defined(HAVE_DEV_PTC) && !defined(HAVE_DEV_PTMX) |
Neal Norwitz | b59798b | 2003-03-21 01:43:31 +0000 | [diff] [blame] | 3666 | #define DEV_PTY_FILE "/dev/ptc" |
| 3667 | #define HAVE_DEV_PTMX |
| 3668 | #else |
| 3669 | #define DEV_PTY_FILE "/dev/ptmx" |
| 3670 | #endif |
| 3671 | |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 3672 | #if defined(HAVE_OPENPTY) || defined(HAVE_FORKPTY) || defined(HAVE_DEV_PTMX) |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 3673 | #ifdef HAVE_PTY_H |
| 3674 | #include <pty.h> |
| 3675 | #else |
| 3676 | #ifdef HAVE_LIBUTIL_H |
| 3677 | #include <libutil.h> |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 3678 | #endif /* HAVE_LIBUTIL_H */ |
| 3679 | #endif /* HAVE_PTY_H */ |
Martin v. Löwis | 14e73b1 | 2003-01-01 09:51:12 +0000 | [diff] [blame] | 3680 | #ifdef HAVE_STROPTS_H |
| 3681 | #include <stropts.h> |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 3682 | #endif |
| 3683 | #endif /* defined(HAVE_OPENPTY) || defined(HAVE_FORKPTY) || defined(HAVE_DEV_PTMX */ |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 3684 | |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 3685 | #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] | 3686 | PyDoc_STRVAR(posix_openpty__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 3687 | "openpty() -> (master_fd, slave_fd)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3688 | 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] | 3689 | |
| 3690 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 3691 | posix_openpty(PyObject *self, PyObject *noargs) |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 3692 | { |
| 3693 | int master_fd, slave_fd; |
Thomas Wouters | 70c21a1 | 2000-07-14 14:28:33 +0000 | [diff] [blame] | 3694 | #ifndef HAVE_OPENPTY |
| 3695 | char * slave_name; |
Thomas Wouters | 70c21a1 | 2000-07-14 14:28:33 +0000 | [diff] [blame] | 3696 | #endif |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 3697 | #if defined(HAVE_DEV_PTMX) && !defined(HAVE_OPENPTY) && !defined(HAVE__GETPTY) |
Martin v. Löwis | c8b2e77 | 2002-12-31 14:30:26 +0000 | [diff] [blame] | 3698 | PyOS_sighandler_t sig_saved; |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 3699 | #ifdef sun |
Neal Norwitz | 84a98e0 | 2006-04-10 07:44:23 +0000 | [diff] [blame] | 3700 | extern char *ptsname(int fildes); |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 3701 | #endif |
| 3702 | #endif |
Thomas Wouters | 70c21a1 | 2000-07-14 14:28:33 +0000 | [diff] [blame] | 3703 | |
Thomas Wouters | 70c21a1 | 2000-07-14 14:28:33 +0000 | [diff] [blame] | 3704 | #ifdef HAVE_OPENPTY |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 3705 | if (openpty(&master_fd, &slave_fd, NULL, NULL, NULL) != 0) |
| 3706 | return posix_error(); |
Neal Norwitz | b59798b | 2003-03-21 01:43:31 +0000 | [diff] [blame] | 3707 | #elif defined(HAVE__GETPTY) |
Thomas Wouters | 70c21a1 | 2000-07-14 14:28:33 +0000 | [diff] [blame] | 3708 | slave_name = _getpty(&master_fd, O_RDWR, 0666, 0); |
| 3709 | if (slave_name == NULL) |
| 3710 | return posix_error(); |
| 3711 | |
| 3712 | slave_fd = open(slave_name, O_RDWR); |
| 3713 | if (slave_fd < 0) |
| 3714 | return posix_error(); |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 3715 | #else |
Neal Norwitz | b59798b | 2003-03-21 01:43:31 +0000 | [diff] [blame] | 3716 | master_fd = open(DEV_PTY_FILE, O_RDWR | O_NOCTTY); /* open master */ |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 3717 | if (master_fd < 0) |
| 3718 | return posix_error(); |
Anthony Baxter | 9ceaa72 | 2004-10-13 14:48:50 +0000 | [diff] [blame] | 3719 | sig_saved = PyOS_setsig(SIGCHLD, SIG_DFL); |
Martin v. Löwis | c8b2e77 | 2002-12-31 14:30:26 +0000 | [diff] [blame] | 3720 | /* change permission of slave */ |
| 3721 | if (grantpt(master_fd) < 0) { |
Anthony Baxter | 9ceaa72 | 2004-10-13 14:48:50 +0000 | [diff] [blame] | 3722 | PyOS_setsig(SIGCHLD, sig_saved); |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 3723 | return posix_error(); |
Martin v. Löwis | c8b2e77 | 2002-12-31 14:30:26 +0000 | [diff] [blame] | 3724 | } |
| 3725 | /* unlock slave */ |
| 3726 | if (unlockpt(master_fd) < 0) { |
Anthony Baxter | 9ceaa72 | 2004-10-13 14:48:50 +0000 | [diff] [blame] | 3727 | PyOS_setsig(SIGCHLD, sig_saved); |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 3728 | return posix_error(); |
Martin v. Löwis | c8b2e77 | 2002-12-31 14:30:26 +0000 | [diff] [blame] | 3729 | } |
Anthony Baxter | 9ceaa72 | 2004-10-13 14:48:50 +0000 | [diff] [blame] | 3730 | PyOS_setsig(SIGCHLD, sig_saved); |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 3731 | slave_name = ptsname(master_fd); /* get name of slave */ |
| 3732 | if (slave_name == NULL) |
| 3733 | return posix_error(); |
| 3734 | slave_fd = open(slave_name, O_RDWR | O_NOCTTY); /* open slave */ |
| 3735 | if (slave_fd < 0) |
| 3736 | return posix_error(); |
Neal Norwitz | b59798b | 2003-03-21 01:43:31 +0000 | [diff] [blame] | 3737 | #if !defined(__CYGWIN__) && !defined(HAVE_DEV_PTC) |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 3738 | ioctl(slave_fd, I_PUSH, "ptem"); /* push ptem */ |
| 3739 | ioctl(slave_fd, I_PUSH, "ldterm"); /* push ldterm */ |
Neal Norwitz | 6700e47 | 2002-12-31 16:16:07 +0000 | [diff] [blame] | 3740 | #ifndef __hpux |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 3741 | ioctl(slave_fd, I_PUSH, "ttcompat"); /* push ttcompat */ |
Neal Norwitz | 6700e47 | 2002-12-31 16:16:07 +0000 | [diff] [blame] | 3742 | #endif /* __hpux */ |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 3743 | #endif /* HAVE_CYGWIN */ |
Thomas Wouters | 1e0c2f4 | 2000-07-24 16:06:23 +0000 | [diff] [blame] | 3744 | #endif /* HAVE_OPENPTY */ |
Thomas Wouters | 70c21a1 | 2000-07-14 14:28:33 +0000 | [diff] [blame] | 3745 | |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 3746 | return Py_BuildValue("(ii)", master_fd, slave_fd); |
Thomas Wouters | 70c21a1 | 2000-07-14 14:28:33 +0000 | [diff] [blame] | 3747 | |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 3748 | } |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 3749 | #endif /* defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX) */ |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 3750 | |
| 3751 | #ifdef HAVE_FORKPTY |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3752 | PyDoc_STRVAR(posix_forkpty__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 3753 | "forkpty() -> (pid, master_fd)\n\n\ |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 3754 | Fork a new process with a new pseudo-terminal as controlling tty.\n\n\ |
| 3755 | 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] | 3756 | To both, return fd of newly opened pseudo-terminal.\n"); |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 3757 | |
| 3758 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 3759 | posix_forkpty(PyObject *self, PyObject *noargs) |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 3760 | { |
Christian Heimes | 951cc0f | 2008-01-31 23:08:23 +0000 | [diff] [blame] | 3761 | int master_fd = -1; |
| 3762 | pid_t pid; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 3763 | |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 3764 | pid = forkpty(&master_fd, NULL, NULL, NULL); |
| 3765 | if (pid == -1) |
| 3766 | return posix_error(); |
Fred Drake | 49b0c3b | 2000-07-06 19:42:19 +0000 | [diff] [blame] | 3767 | if (pid == 0) |
| 3768 | PyOS_AfterFork(); |
Antoine Pitrou | 794b3fc | 2009-05-23 15:47:13 +0000 | [diff] [blame] | 3769 | return Py_BuildValue("(Ni)", PyLong_FromPid(pid), master_fd); |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 3770 | } |
| 3771 | #endif |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3772 | |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 3773 | #ifdef HAVE_GETEGID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3774 | PyDoc_STRVAR(posix_getegid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 3775 | "getegid() -> egid\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3776 | Return the current process's effective group id."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3777 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3778 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 3779 | posix_getegid(PyObject *self, PyObject *noargs) |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 3780 | { |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3781 | return PyInt_FromLong((long)getegid()); |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 3782 | } |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 3783 | #endif |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 3784 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3785 | |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 3786 | #ifdef HAVE_GETEUID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3787 | PyDoc_STRVAR(posix_geteuid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 3788 | "geteuid() -> euid\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3789 | Return the current process's effective user id."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3790 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3791 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 3792 | posix_geteuid(PyObject *self, PyObject *noargs) |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 3793 | { |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3794 | return PyInt_FromLong((long)geteuid()); |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 3795 | } |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 3796 | #endif |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 3797 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3798 | |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 3799 | #ifdef HAVE_GETGID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3800 | PyDoc_STRVAR(posix_getgid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 3801 | "getgid() -> gid\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3802 | Return the current process's group id."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3803 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3804 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 3805 | posix_getgid(PyObject *self, PyObject *noargs) |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 3806 | { |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3807 | return PyInt_FromLong((long)getgid()); |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 3808 | } |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 3809 | #endif |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 3810 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3811 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3812 | PyDoc_STRVAR(posix_getpid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 3813 | "getpid() -> pid\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3814 | Return the current process id"); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3815 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3816 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 3817 | posix_getpid(PyObject *self, PyObject *noargs) |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 3818 | { |
Antoine Pitrou | cd1376d | 2009-05-23 16:19:24 +0000 | [diff] [blame^] | 3819 | return PyLong_FromPid(getpid()); |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 3820 | } |
| 3821 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3822 | |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 3823 | #ifdef HAVE_GETGROUPS |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3824 | PyDoc_STRVAR(posix_getgroups__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 3825 | "getgroups() -> list of group IDs\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3826 | Return list of supplemental group IDs for the process."); |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 3827 | |
| 3828 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 3829 | posix_getgroups(PyObject *self, PyObject *noargs) |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 3830 | { |
| 3831 | PyObject *result = NULL; |
| 3832 | |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 3833 | #ifdef NGROUPS_MAX |
| 3834 | #define MAX_GROUPS NGROUPS_MAX |
| 3835 | #else |
| 3836 | /* defined to be 16 on Solaris7, so this should be a small number */ |
| 3837 | #define MAX_GROUPS 64 |
| 3838 | #endif |
| 3839 | gid_t grouplist[MAX_GROUPS]; |
| 3840 | int n; |
| 3841 | |
| 3842 | n = getgroups(MAX_GROUPS, grouplist); |
| 3843 | if (n < 0) |
| 3844 | posix_error(); |
| 3845 | else { |
| 3846 | result = PyList_New(n); |
| 3847 | if (result != NULL) { |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 3848 | int i; |
| 3849 | for (i = 0; i < n; ++i) { |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 3850 | PyObject *o = PyInt_FromLong((long)grouplist[i]); |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 3851 | if (o == NULL) { |
| 3852 | Py_DECREF(result); |
| 3853 | result = NULL; |
| 3854 | break; |
| 3855 | } |
| 3856 | PyList_SET_ITEM(result, i, o); |
| 3857 | } |
| 3858 | } |
| 3859 | } |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 3860 | |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 3861 | return result; |
| 3862 | } |
| 3863 | #endif |
| 3864 | |
Martin v. Löwis | 606edc1 | 2002-06-13 21:09:11 +0000 | [diff] [blame] | 3865 | #ifdef HAVE_GETPGID |
Neal Norwitz | 0c2c17c | 2002-06-13 21:22:11 +0000 | [diff] [blame] | 3866 | PyDoc_STRVAR(posix_getpgid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 3867 | "getpgid(pid) -> pgid\n\n\ |
Neal Norwitz | 0c2c17c | 2002-06-13 21:22:11 +0000 | [diff] [blame] | 3868 | Call the system call getpgid()."); |
Martin v. Löwis | 606edc1 | 2002-06-13 21:09:11 +0000 | [diff] [blame] | 3869 | |
| 3870 | static PyObject * |
| 3871 | posix_getpgid(PyObject *self, PyObject *args) |
| 3872 | { |
Antoine Pitrou | cd1376d | 2009-05-23 16:19:24 +0000 | [diff] [blame^] | 3873 | pid_t pid, pgid; |
| 3874 | if (!PyArg_ParseTuple(args, PARSE_PID ":getpgid", &pid)) |
Martin v. Löwis | 606edc1 | 2002-06-13 21:09:11 +0000 | [diff] [blame] | 3875 | return NULL; |
| 3876 | pgid = getpgid(pid); |
| 3877 | if (pgid < 0) |
| 3878 | return posix_error(); |
Antoine Pitrou | cd1376d | 2009-05-23 16:19:24 +0000 | [diff] [blame^] | 3879 | return PyLong_FromPid(pgid); |
Martin v. Löwis | 606edc1 | 2002-06-13 21:09:11 +0000 | [diff] [blame] | 3880 | } |
| 3881 | #endif /* HAVE_GETPGID */ |
| 3882 | |
| 3883 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3884 | #ifdef HAVE_GETPGRP |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3885 | PyDoc_STRVAR(posix_getpgrp__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 3886 | "getpgrp() -> pgrp\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3887 | Return the current process group id."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3888 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3889 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 3890 | posix_getpgrp(PyObject *self, PyObject *noargs) |
Guido van Rossum | 0481447 | 1991-06-04 20:23:49 +0000 | [diff] [blame] | 3891 | { |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3892 | #ifdef GETPGRP_HAVE_ARG |
Antoine Pitrou | cd1376d | 2009-05-23 16:19:24 +0000 | [diff] [blame^] | 3893 | return PyLong_FromPid(getpgrp(0)); |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 3894 | #else /* GETPGRP_HAVE_ARG */ |
Antoine Pitrou | cd1376d | 2009-05-23 16:19:24 +0000 | [diff] [blame^] | 3895 | return PyLong_FromPid(getpgrp()); |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 3896 | #endif /* GETPGRP_HAVE_ARG */ |
Guido van Rossum | 0481447 | 1991-06-04 20:23:49 +0000 | [diff] [blame] | 3897 | } |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3898 | #endif /* HAVE_GETPGRP */ |
Guido van Rossum | 0481447 | 1991-06-04 20:23:49 +0000 | [diff] [blame] | 3899 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3900 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3901 | #ifdef HAVE_SETPGRP |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3902 | PyDoc_STRVAR(posix_setpgrp__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 3903 | "setpgrp()\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3904 | Make this process a session leader."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3905 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3906 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 3907 | posix_setpgrp(PyObject *self, PyObject *noargs) |
Guido van Rossum | c2670a0 | 1992-09-13 20:07:29 +0000 | [diff] [blame] | 3908 | { |
Guido van Rossum | 6493389 | 1994-10-20 21:56:42 +0000 | [diff] [blame] | 3909 | #ifdef SETPGRP_HAVE_ARG |
Guido van Rossum | c2670a0 | 1992-09-13 20:07:29 +0000 | [diff] [blame] | 3910 | if (setpgrp(0, 0) < 0) |
Guido van Rossum | 6493389 | 1994-10-20 21:56:42 +0000 | [diff] [blame] | 3911 | #else /* SETPGRP_HAVE_ARG */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3912 | if (setpgrp() < 0) |
Guido van Rossum | 6493389 | 1994-10-20 21:56:42 +0000 | [diff] [blame] | 3913 | #endif /* SETPGRP_HAVE_ARG */ |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3914 | return posix_error(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3915 | Py_INCREF(Py_None); |
| 3916 | return Py_None; |
Guido van Rossum | c2670a0 | 1992-09-13 20:07:29 +0000 | [diff] [blame] | 3917 | } |
| 3918 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3919 | #endif /* HAVE_SETPGRP */ |
| 3920 | |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 3921 | #ifdef HAVE_GETPPID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3922 | PyDoc_STRVAR(posix_getppid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 3923 | "getppid() -> ppid\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3924 | Return the parent's process id."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3925 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3926 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 3927 | posix_getppid(PyObject *self, PyObject *noargs) |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 3928 | { |
Antoine Pitrou | cd1376d | 2009-05-23 16:19:24 +0000 | [diff] [blame^] | 3929 | return PyLong_FromPid(getppid()); |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 3930 | } |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 3931 | #endif |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 3932 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3933 | |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 3934 | #ifdef HAVE_GETLOGIN |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3935 | PyDoc_STRVAR(posix_getlogin__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 3936 | "getlogin() -> string\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3937 | Return the actual login name."); |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 3938 | |
| 3939 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 3940 | posix_getlogin(PyObject *self, PyObject *noargs) |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 3941 | { |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 3942 | PyObject *result = NULL; |
Fred Drake | a30680b | 2000-12-06 21:24:28 +0000 | [diff] [blame] | 3943 | char *name; |
| 3944 | int old_errno = errno; |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 3945 | |
Fred Drake | a30680b | 2000-12-06 21:24:28 +0000 | [diff] [blame] | 3946 | errno = 0; |
| 3947 | name = getlogin(); |
| 3948 | if (name == NULL) { |
| 3949 | if (errno) |
| 3950 | posix_error(); |
| 3951 | else |
| 3952 | PyErr_SetString(PyExc_OSError, |
Fred Drake | e63544f | 2000-12-06 21:45:33 +0000 | [diff] [blame] | 3953 | "unable to determine login name"); |
Fred Drake | a30680b | 2000-12-06 21:24:28 +0000 | [diff] [blame] | 3954 | } |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 3955 | else |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 3956 | result = PyString_FromString(name); |
Fred Drake | a30680b | 2000-12-06 21:24:28 +0000 | [diff] [blame] | 3957 | errno = old_errno; |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 3958 | |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 3959 | return result; |
| 3960 | } |
| 3961 | #endif |
| 3962 | |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 3963 | #ifdef HAVE_GETUID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3964 | PyDoc_STRVAR(posix_getuid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 3965 | "getuid() -> uid\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3966 | Return the current process's user id."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3967 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3968 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 3969 | posix_getuid(PyObject *self, PyObject *noargs) |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 3970 | { |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3971 | return PyInt_FromLong((long)getuid()); |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 3972 | } |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 3973 | #endif |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 3974 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3975 | |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 3976 | #ifdef HAVE_KILL |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3977 | PyDoc_STRVAR(posix_kill__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 3978 | "kill(pid, sig)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3979 | Kill a process with a signal."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3980 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3981 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 3982 | posix_kill(PyObject *self, PyObject *args) |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 3983 | { |
Christian Heimes | d491d71 | 2008-02-01 18:49:26 +0000 | [diff] [blame] | 3984 | pid_t pid; |
| 3985 | int sig; |
Antoine Pitrou | 794b3fc | 2009-05-23 15:47:13 +0000 | [diff] [blame] | 3986 | if (!PyArg_ParseTuple(args, PARSE_PID "i:kill", &pid, &sig)) |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 3987 | return NULL; |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 3988 | #if defined(PYOS_OS2) && !defined(PYCC_GCC) |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 3989 | if (sig == XCPT_SIGNAL_INTR || sig == XCPT_SIGNAL_BREAK) { |
| 3990 | APIRET rc; |
| 3991 | if ((rc = DosSendSignalException(pid, sig)) != NO_ERROR) |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 3992 | return os2_error(rc); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 3993 | |
| 3994 | } else if (sig == XCPT_SIGNAL_KILLPROC) { |
| 3995 | APIRET rc; |
| 3996 | if ((rc = DosKillProcess(DKP_PROCESS, pid)) != NO_ERROR) |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 3997 | return os2_error(rc); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 3998 | |
| 3999 | } else |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 4000 | return NULL; /* Unrecognized Signal Requested */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4001 | #else |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 4002 | if (kill(pid, sig) == -1) |
| 4003 | return posix_error(); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4004 | #endif |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 4005 | Py_INCREF(Py_None); |
| 4006 | return Py_None; |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 4007 | } |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 4008 | #endif |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 4009 | |
Martin v. Löwis | b2c92f4 | 2002-02-16 23:35:41 +0000 | [diff] [blame] | 4010 | #ifdef HAVE_KILLPG |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 4011 | PyDoc_STRVAR(posix_killpg__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 4012 | "killpg(pgid, sig)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 4013 | Kill a process group with a signal."); |
Martin v. Löwis | b2c92f4 | 2002-02-16 23:35:41 +0000 | [diff] [blame] | 4014 | |
| 4015 | static PyObject * |
| 4016 | posix_killpg(PyObject *self, PyObject *args) |
| 4017 | { |
Antoine Pitrou | cd1376d | 2009-05-23 16:19:24 +0000 | [diff] [blame^] | 4018 | int sig; |
| 4019 | pid_t pgid; |
| 4020 | /* XXX some man pages make the `pgid` parameter an int, others |
| 4021 | a pid_t. Since getpgrp() returns a pid_t, we assume killpg should |
| 4022 | take the same type. Moreover, pid_t is always at least as wide as |
| 4023 | int (else compilation of this module fails), which is safe. */ |
| 4024 | if (!PyArg_ParseTuple(args, PARSE_PID "i:killpg", &pgid, &sig)) |
Martin v. Löwis | b2c92f4 | 2002-02-16 23:35:41 +0000 | [diff] [blame] | 4025 | return NULL; |
| 4026 | if (killpg(pgid, sig) == -1) |
| 4027 | return posix_error(); |
| 4028 | Py_INCREF(Py_None); |
| 4029 | return Py_None; |
| 4030 | } |
| 4031 | #endif |
| 4032 | |
Guido van Rossum | c012547 | 1996-06-28 18:55:32 +0000 | [diff] [blame] | 4033 | #ifdef HAVE_PLOCK |
| 4034 | |
| 4035 | #ifdef HAVE_SYS_LOCK_H |
| 4036 | #include <sys/lock.h> |
| 4037 | #endif |
| 4038 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 4039 | PyDoc_STRVAR(posix_plock__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 4040 | "plock(op)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 4041 | Lock program segments into memory."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 4042 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 4043 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 4044 | posix_plock(PyObject *self, PyObject *args) |
Guido van Rossum | c012547 | 1996-06-28 18:55:32 +0000 | [diff] [blame] | 4045 | { |
| 4046 | int op; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 4047 | if (!PyArg_ParseTuple(args, "i:plock", &op)) |
Guido van Rossum | c012547 | 1996-06-28 18:55:32 +0000 | [diff] [blame] | 4048 | return NULL; |
| 4049 | if (plock(op) == -1) |
| 4050 | return posix_error(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 4051 | Py_INCREF(Py_None); |
| 4052 | return Py_None; |
Guido van Rossum | c012547 | 1996-06-28 18:55:32 +0000 | [diff] [blame] | 4053 | } |
| 4054 | #endif |
| 4055 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 4056 | |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 4057 | #ifdef HAVE_POPEN |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 4058 | PyDoc_STRVAR(posix_popen__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 4059 | "popen(command [, mode='r' [, bufsize]]) -> pipe\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 4060 | Open a pipe to/from a command returning a file object."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 4061 | |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4062 | #if defined(PYOS_OS2) |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4063 | #if defined(PYCC_VACPP) |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 4064 | static int |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4065 | async_system(const char *command) |
| 4066 | { |
Andrew MacIntyre | a4a8afb | 2004-12-12 08:30:51 +0000 | [diff] [blame] | 4067 | char errormsg[256], args[1024]; |
| 4068 | RESULTCODES rcodes; |
| 4069 | APIRET rc; |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4070 | |
Andrew MacIntyre | a4a8afb | 2004-12-12 08:30:51 +0000 | [diff] [blame] | 4071 | char *shell = getenv("COMSPEC"); |
| 4072 | if (!shell) |
| 4073 | shell = "cmd"; |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4074 | |
Andrew MacIntyre | a4a8afb | 2004-12-12 08:30:51 +0000 | [diff] [blame] | 4075 | /* avoid overflowing the argument buffer */ |
| 4076 | if (strlen(shell) + 3 + strlen(command) >= 1024) |
| 4077 | return ERROR_NOT_ENOUGH_MEMORY |
| 4078 | |
| 4079 | args[0] = '\0'; |
| 4080 | strcat(args, shell); |
| 4081 | strcat(args, "/c "); |
| 4082 | strcat(args, command); |
| 4083 | |
| 4084 | /* execute asynchronously, inheriting the environment */ |
| 4085 | rc = DosExecPgm(errormsg, |
| 4086 | sizeof(errormsg), |
| 4087 | EXEC_ASYNC, |
| 4088 | args, |
| 4089 | NULL, |
| 4090 | &rcodes, |
| 4091 | shell); |
| 4092 | return rc; |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4093 | } |
| 4094 | |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 4095 | static FILE * |
| 4096 | popen(const char *command, const char *mode, int pipesize, int *err) |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4097 | { |
Andrew MacIntyre | a4a8afb | 2004-12-12 08:30:51 +0000 | [diff] [blame] | 4098 | int oldfd, tgtfd; |
| 4099 | HFILE pipeh[2]; |
| 4100 | APIRET rc; |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4101 | |
Andrew MacIntyre | a4a8afb | 2004-12-12 08:30:51 +0000 | [diff] [blame] | 4102 | /* mode determines which of stdin or stdout is reconnected to |
| 4103 | * the pipe to the child |
| 4104 | */ |
| 4105 | if (strchr(mode, 'r') != NULL) { |
| 4106 | tgt_fd = 1; /* stdout */ |
| 4107 | } else if (strchr(mode, 'w')) { |
| 4108 | tgt_fd = 0; /* stdin */ |
| 4109 | } else { |
| 4110 | *err = ERROR_INVALID_ACCESS; |
| 4111 | return NULL; |
| 4112 | } |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4113 | |
Andrew MacIntyre | a3be258 | 2004-12-18 09:51:05 +0000 | [diff] [blame] | 4114 | /* setup the pipe */ |
Andrew MacIntyre | a4a8afb | 2004-12-12 08:30:51 +0000 | [diff] [blame] | 4115 | if ((rc = DosCreatePipe(&pipeh[0], &pipeh[1], pipesize)) != NO_ERROR) { |
| 4116 | *err = rc; |
| 4117 | return NULL; |
| 4118 | } |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4119 | |
Andrew MacIntyre | a4a8afb | 2004-12-12 08:30:51 +0000 | [diff] [blame] | 4120 | /* prevent other threads accessing stdio */ |
| 4121 | DosEnterCritSec(); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4122 | |
Andrew MacIntyre | a4a8afb | 2004-12-12 08:30:51 +0000 | [diff] [blame] | 4123 | /* reconnect stdio and execute child */ |
| 4124 | oldfd = dup(tgtfd); |
| 4125 | close(tgtfd); |
| 4126 | if (dup2(pipeh[tgtfd], tgtfd) == 0) { |
| 4127 | DosClose(pipeh[tgtfd]); |
| 4128 | rc = async_system(command); |
| 4129 | } |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4130 | |
Andrew MacIntyre | a4a8afb | 2004-12-12 08:30:51 +0000 | [diff] [blame] | 4131 | /* restore stdio */ |
| 4132 | dup2(oldfd, tgtfd); |
| 4133 | close(oldfd); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4134 | |
Andrew MacIntyre | a4a8afb | 2004-12-12 08:30:51 +0000 | [diff] [blame] | 4135 | /* allow other threads access to stdio */ |
| 4136 | DosExitCritSec(); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4137 | |
Andrew MacIntyre | a4a8afb | 2004-12-12 08:30:51 +0000 | [diff] [blame] | 4138 | /* if execution of child was successful return file stream */ |
| 4139 | if (rc == NO_ERROR) |
| 4140 | return fdopen(pipeh[1 - tgtfd], mode); |
| 4141 | else { |
| 4142 | DosClose(pipeh[1 - tgtfd]); |
| 4143 | *err = rc; |
| 4144 | return NULL; |
| 4145 | } |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4146 | } |
| 4147 | |
| 4148 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 4149 | posix_popen(PyObject *self, PyObject *args) |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4150 | { |
| 4151 | char *name; |
| 4152 | char *mode = "r"; |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 4153 | int err, bufsize = -1; |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4154 | FILE *fp; |
| 4155 | PyObject *f; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 4156 | if (!PyArg_ParseTuple(args, "s|si:popen", &name, &mode, &bufsize)) |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4157 | return NULL; |
| 4158 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 4159 | fp = popen(name, mode, (bufsize > 0) ? bufsize : 4096, &err); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4160 | Py_END_ALLOW_THREADS |
| 4161 | if (fp == NULL) |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 4162 | return os2_error(err); |
| 4163 | |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 4164 | f = PyFile_FromFile(fp, name, mode, fclose); |
| 4165 | if (f != NULL) |
| 4166 | PyFile_SetBufSize(f, bufsize); |
| 4167 | return f; |
| 4168 | } |
| 4169 | |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4170 | #elif defined(PYCC_GCC) |
| 4171 | |
| 4172 | /* standard posix version of popen() support */ |
| 4173 | static PyObject * |
| 4174 | posix_popen(PyObject *self, PyObject *args) |
| 4175 | { |
| 4176 | char *name; |
| 4177 | char *mode = "r"; |
| 4178 | int bufsize = -1; |
| 4179 | FILE *fp; |
| 4180 | PyObject *f; |
| 4181 | if (!PyArg_ParseTuple(args, "s|si:popen", &name, &mode, &bufsize)) |
| 4182 | return NULL; |
| 4183 | Py_BEGIN_ALLOW_THREADS |
| 4184 | fp = popen(name, mode); |
| 4185 | Py_END_ALLOW_THREADS |
| 4186 | if (fp == NULL) |
| 4187 | return posix_error(); |
| 4188 | f = PyFile_FromFile(fp, name, mode, pclose); |
| 4189 | if (f != NULL) |
| 4190 | PyFile_SetBufSize(f, bufsize); |
| 4191 | return f; |
| 4192 | } |
| 4193 | |
| 4194 | /* fork() under OS/2 has lots'o'warts |
| 4195 | * EMX supports pipe() and spawn*() so we can synthesize popen[234]() |
| 4196 | * most of this code is a ripoff of the win32 code, but using the |
| 4197 | * capabilities of EMX's C library routines |
| 4198 | */ |
| 4199 | |
| 4200 | /* These tell _PyPopen() whether to return 1, 2, or 3 file objects. */ |
| 4201 | #define POPEN_1 1 |
| 4202 | #define POPEN_2 2 |
| 4203 | #define POPEN_3 3 |
| 4204 | #define POPEN_4 4 |
| 4205 | |
| 4206 | static PyObject *_PyPopen(char *, int, int, int); |
| 4207 | static int _PyPclose(FILE *file); |
| 4208 | |
| 4209 | /* |
| 4210 | * Internal dictionary mapping popen* file pointers to process handles, |
| 4211 | * for use when retrieving the process exit code. See _PyPclose() below |
| 4212 | * for more information on this dictionary's use. |
| 4213 | */ |
| 4214 | static PyObject *_PyPopenProcs = NULL; |
| 4215 | |
| 4216 | /* os2emx version of popen2() |
| 4217 | * |
| 4218 | * The result of this function is a pipe (file) connected to the |
| 4219 | * process's stdin, and a pipe connected to the process's stdout. |
| 4220 | */ |
| 4221 | |
| 4222 | static PyObject * |
| 4223 | os2emx_popen2(PyObject *self, PyObject *args) |
| 4224 | { |
| 4225 | PyObject *f; |
| 4226 | int tm=0; |
| 4227 | |
| 4228 | char *cmdstring; |
| 4229 | char *mode = "t"; |
| 4230 | int bufsize = -1; |
| 4231 | if (!PyArg_ParseTuple(args, "s|si:popen2", &cmdstring, &mode, &bufsize)) |
| 4232 | return NULL; |
| 4233 | |
| 4234 | if (*mode == 't') |
| 4235 | tm = O_TEXT; |
| 4236 | else if (*mode != 'b') { |
| 4237 | PyErr_SetString(PyExc_ValueError, "mode must be 't' or 'b'"); |
| 4238 | return NULL; |
| 4239 | } else |
| 4240 | tm = O_BINARY; |
| 4241 | |
| 4242 | f = _PyPopen(cmdstring, tm, POPEN_2, bufsize); |
| 4243 | |
| 4244 | return f; |
| 4245 | } |
| 4246 | |
| 4247 | /* |
| 4248 | * Variation on os2emx.popen2 |
| 4249 | * |
| 4250 | * The result of this function is 3 pipes - the process's stdin, |
| 4251 | * stdout and stderr |
| 4252 | */ |
| 4253 | |
| 4254 | static PyObject * |
| 4255 | os2emx_popen3(PyObject *self, PyObject *args) |
| 4256 | { |
| 4257 | PyObject *f; |
| 4258 | int tm = 0; |
| 4259 | |
| 4260 | char *cmdstring; |
| 4261 | char *mode = "t"; |
| 4262 | int bufsize = -1; |
| 4263 | if (!PyArg_ParseTuple(args, "s|si:popen3", &cmdstring, &mode, &bufsize)) |
| 4264 | return NULL; |
| 4265 | |
| 4266 | if (*mode == 't') |
| 4267 | tm = O_TEXT; |
| 4268 | else if (*mode != 'b') { |
| 4269 | PyErr_SetString(PyExc_ValueError, "mode must be 't' or 'b'"); |
| 4270 | return NULL; |
| 4271 | } else |
| 4272 | tm = O_BINARY; |
| 4273 | |
| 4274 | f = _PyPopen(cmdstring, tm, POPEN_3, bufsize); |
| 4275 | |
| 4276 | return f; |
| 4277 | } |
| 4278 | |
| 4279 | /* |
| 4280 | * Variation on os2emx.popen2 |
| 4281 | * |
Tim Peters | 11b2306 | 2003-04-23 02:39:17 +0000 | [diff] [blame] | 4282 | * The result of this function is 2 pipes - the processes stdin, |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4283 | * and stdout+stderr combined as a single pipe. |
| 4284 | */ |
| 4285 | |
| 4286 | static PyObject * |
| 4287 | os2emx_popen4(PyObject *self, PyObject *args) |
| 4288 | { |
| 4289 | PyObject *f; |
| 4290 | int tm = 0; |
| 4291 | |
| 4292 | char *cmdstring; |
| 4293 | char *mode = "t"; |
| 4294 | int bufsize = -1; |
| 4295 | if (!PyArg_ParseTuple(args, "s|si:popen4", &cmdstring, &mode, &bufsize)) |
| 4296 | return NULL; |
| 4297 | |
| 4298 | if (*mode == 't') |
| 4299 | tm = O_TEXT; |
| 4300 | else if (*mode != 'b') { |
| 4301 | PyErr_SetString(PyExc_ValueError, "mode must be 't' or 'b'"); |
| 4302 | return NULL; |
| 4303 | } else |
| 4304 | tm = O_BINARY; |
| 4305 | |
| 4306 | f = _PyPopen(cmdstring, tm, POPEN_4, bufsize); |
| 4307 | |
| 4308 | return f; |
| 4309 | } |
| 4310 | |
| 4311 | /* a couple of structures for convenient handling of multiple |
| 4312 | * file handles and pipes |
| 4313 | */ |
| 4314 | struct file_ref |
| 4315 | { |
| 4316 | int handle; |
| 4317 | int flags; |
| 4318 | }; |
| 4319 | |
| 4320 | struct pipe_ref |
| 4321 | { |
| 4322 | int rd; |
| 4323 | int wr; |
| 4324 | }; |
| 4325 | |
| 4326 | /* The following code is derived from the win32 code */ |
| 4327 | |
| 4328 | static PyObject * |
| 4329 | _PyPopen(char *cmdstring, int mode, int n, int bufsize) |
| 4330 | { |
| 4331 | struct file_ref stdio[3]; |
| 4332 | struct pipe_ref p_fd[3]; |
| 4333 | FILE *p_s[3]; |
Christian Heimes | d491d71 | 2008-02-01 18:49:26 +0000 | [diff] [blame] | 4334 | int file_count, i, pipe_err; |
| 4335 | pid_t pipe_pid; |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4336 | char *shell, *sh_name, *opt, *rd_mode, *wr_mode; |
| 4337 | PyObject *f, *p_f[3]; |
| 4338 | |
| 4339 | /* file modes for subsequent fdopen's on pipe handles */ |
| 4340 | if (mode == O_TEXT) |
| 4341 | { |
| 4342 | rd_mode = "rt"; |
| 4343 | wr_mode = "wt"; |
| 4344 | } |
| 4345 | else |
| 4346 | { |
| 4347 | rd_mode = "rb"; |
| 4348 | wr_mode = "wb"; |
| 4349 | } |
| 4350 | |
| 4351 | /* prepare shell references */ |
| 4352 | if ((shell = getenv("EMXSHELL")) == NULL) |
| 4353 | if ((shell = getenv("COMSPEC")) == NULL) |
| 4354 | { |
| 4355 | errno = ENOENT; |
| 4356 | return posix_error(); |
| 4357 | } |
| 4358 | |
| 4359 | sh_name = _getname(shell); |
| 4360 | if (stricmp(sh_name, "cmd.exe") == 0 || stricmp(sh_name, "4os2.exe") == 0) |
| 4361 | opt = "/c"; |
| 4362 | else |
| 4363 | opt = "-c"; |
| 4364 | |
| 4365 | /* save current stdio fds + their flags, and set not inheritable */ |
| 4366 | i = pipe_err = 0; |
| 4367 | while (pipe_err >= 0 && i < 3) |
| 4368 | { |
| 4369 | pipe_err = stdio[i].handle = dup(i); |
| 4370 | stdio[i].flags = fcntl(i, F_GETFD, 0); |
| 4371 | fcntl(stdio[i].handle, F_SETFD, stdio[i].flags | FD_CLOEXEC); |
| 4372 | i++; |
| 4373 | } |
| 4374 | if (pipe_err < 0) |
| 4375 | { |
| 4376 | /* didn't get them all saved - clean up and bail out */ |
| 4377 | int saved_err = errno; |
| 4378 | while (i-- > 0) |
| 4379 | { |
| 4380 | close(stdio[i].handle); |
| 4381 | } |
| 4382 | errno = saved_err; |
| 4383 | return posix_error(); |
| 4384 | } |
| 4385 | |
| 4386 | /* create pipe ends */ |
| 4387 | file_count = 2; |
| 4388 | if (n == POPEN_3) |
| 4389 | file_count = 3; |
| 4390 | i = pipe_err = 0; |
| 4391 | while ((pipe_err == 0) && (i < file_count)) |
| 4392 | pipe_err = pipe((int *)&p_fd[i++]); |
| 4393 | if (pipe_err < 0) |
| 4394 | { |
| 4395 | /* didn't get them all made - clean up and bail out */ |
| 4396 | while (i-- > 0) |
| 4397 | { |
| 4398 | close(p_fd[i].wr); |
| 4399 | close(p_fd[i].rd); |
| 4400 | } |
| 4401 | errno = EPIPE; |
| 4402 | return posix_error(); |
| 4403 | } |
| 4404 | |
| 4405 | /* change the actual standard IO streams over temporarily, |
| 4406 | * making the retained pipe ends non-inheritable |
| 4407 | */ |
| 4408 | pipe_err = 0; |
| 4409 | |
| 4410 | /* - stdin */ |
| 4411 | if (dup2(p_fd[0].rd, 0) == 0) |
| 4412 | { |
| 4413 | close(p_fd[0].rd); |
| 4414 | i = fcntl(p_fd[0].wr, F_GETFD, 0); |
| 4415 | fcntl(p_fd[0].wr, F_SETFD, i | FD_CLOEXEC); |
| 4416 | if ((p_s[0] = fdopen(p_fd[0].wr, wr_mode)) == NULL) |
| 4417 | { |
| 4418 | close(p_fd[0].wr); |
| 4419 | pipe_err = -1; |
| 4420 | } |
| 4421 | } |
| 4422 | else |
| 4423 | { |
| 4424 | pipe_err = -1; |
| 4425 | } |
| 4426 | |
| 4427 | /* - stdout */ |
| 4428 | if (pipe_err == 0) |
| 4429 | { |
| 4430 | if (dup2(p_fd[1].wr, 1) == 1) |
| 4431 | { |
| 4432 | close(p_fd[1].wr); |
| 4433 | i = fcntl(p_fd[1].rd, F_GETFD, 0); |
| 4434 | fcntl(p_fd[1].rd, F_SETFD, i | FD_CLOEXEC); |
| 4435 | if ((p_s[1] = fdopen(p_fd[1].rd, rd_mode)) == NULL) |
| 4436 | { |
| 4437 | close(p_fd[1].rd); |
| 4438 | pipe_err = -1; |
| 4439 | } |
| 4440 | } |
| 4441 | else |
| 4442 | { |
| 4443 | pipe_err = -1; |
| 4444 | } |
| 4445 | } |
| 4446 | |
| 4447 | /* - stderr, as required */ |
| 4448 | if (pipe_err == 0) |
| 4449 | switch (n) |
| 4450 | { |
| 4451 | case POPEN_3: |
| 4452 | { |
| 4453 | if (dup2(p_fd[2].wr, 2) == 2) |
| 4454 | { |
| 4455 | close(p_fd[2].wr); |
| 4456 | i = fcntl(p_fd[2].rd, F_GETFD, 0); |
| 4457 | fcntl(p_fd[2].rd, F_SETFD, i | FD_CLOEXEC); |
| 4458 | if ((p_s[2] = fdopen(p_fd[2].rd, rd_mode)) == NULL) |
| 4459 | { |
| 4460 | close(p_fd[2].rd); |
| 4461 | pipe_err = -1; |
| 4462 | } |
| 4463 | } |
| 4464 | else |
| 4465 | { |
| 4466 | pipe_err = -1; |
| 4467 | } |
| 4468 | break; |
| 4469 | } |
| 4470 | |
| 4471 | case POPEN_4: |
| 4472 | { |
| 4473 | if (dup2(1, 2) != 2) |
| 4474 | { |
| 4475 | pipe_err = -1; |
| 4476 | } |
| 4477 | break; |
| 4478 | } |
| 4479 | } |
| 4480 | |
| 4481 | /* spawn the child process */ |
| 4482 | if (pipe_err == 0) |
| 4483 | { |
| 4484 | pipe_pid = spawnlp(P_NOWAIT, shell, shell, opt, cmdstring, (char *)0); |
| 4485 | if (pipe_pid == -1) |
| 4486 | { |
| 4487 | pipe_err = -1; |
| 4488 | } |
| 4489 | else |
| 4490 | { |
| 4491 | /* save the PID into the FILE structure |
| 4492 | * NOTE: this implementation doesn't actually |
| 4493 | * take advantage of this, but do it for |
| 4494 | * completeness - AIM Apr01 |
| 4495 | */ |
| 4496 | for (i = 0; i < file_count; i++) |
| 4497 | p_s[i]->_pid = pipe_pid; |
| 4498 | } |
| 4499 | } |
| 4500 | |
| 4501 | /* reset standard IO to normal */ |
| 4502 | for (i = 0; i < 3; i++) |
| 4503 | { |
| 4504 | dup2(stdio[i].handle, i); |
| 4505 | fcntl(i, F_SETFD, stdio[i].flags); |
| 4506 | close(stdio[i].handle); |
| 4507 | } |
| 4508 | |
| 4509 | /* if any remnant problems, clean up and bail out */ |
| 4510 | if (pipe_err < 0) |
| 4511 | { |
| 4512 | for (i = 0; i < 3; i++) |
| 4513 | { |
| 4514 | close(p_fd[i].rd); |
| 4515 | close(p_fd[i].wr); |
| 4516 | } |
| 4517 | errno = EPIPE; |
| 4518 | return posix_error_with_filename(cmdstring); |
| 4519 | } |
| 4520 | |
| 4521 | /* build tuple of file objects to return */ |
| 4522 | if ((p_f[0] = PyFile_FromFile(p_s[0], cmdstring, wr_mode, _PyPclose)) != NULL) |
| 4523 | PyFile_SetBufSize(p_f[0], bufsize); |
| 4524 | if ((p_f[1] = PyFile_FromFile(p_s[1], cmdstring, rd_mode, _PyPclose)) != NULL) |
| 4525 | PyFile_SetBufSize(p_f[1], bufsize); |
| 4526 | if (n == POPEN_3) |
| 4527 | { |
| 4528 | if ((p_f[2] = PyFile_FromFile(p_s[2], cmdstring, rd_mode, _PyPclose)) != NULL) |
| 4529 | PyFile_SetBufSize(p_f[0], bufsize); |
Raymond Hettinger | 8ae4689 | 2003-10-12 19:09:37 +0000 | [diff] [blame] | 4530 | f = PyTuple_Pack(3, p_f[0], p_f[1], p_f[2]); |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4531 | } |
| 4532 | else |
Raymond Hettinger | 8ae4689 | 2003-10-12 19:09:37 +0000 | [diff] [blame] | 4533 | f = PyTuple_Pack(2, p_f[0], p_f[1]); |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4534 | |
| 4535 | /* |
| 4536 | * Insert the files we've created into the process dictionary |
| 4537 | * all referencing the list with the process handle and the |
| 4538 | * initial number of files (see description below in _PyPclose). |
| 4539 | * Since if _PyPclose later tried to wait on a process when all |
| 4540 | * handles weren't closed, it could create a deadlock with the |
| 4541 | * child, we spend some energy here to try to ensure that we |
| 4542 | * either insert all file handles into the dictionary or none |
| 4543 | * at all. It's a little clumsy with the various popen modes |
| 4544 | * and variable number of files involved. |
| 4545 | */ |
| 4546 | if (!_PyPopenProcs) |
| 4547 | { |
| 4548 | _PyPopenProcs = PyDict_New(); |
| 4549 | } |
| 4550 | |
| 4551 | if (_PyPopenProcs) |
| 4552 | { |
| 4553 | PyObject *procObj, *pidObj, *intObj, *fileObj[3]; |
| 4554 | int ins_rc[3]; |
| 4555 | |
| 4556 | fileObj[0] = fileObj[1] = fileObj[2] = NULL; |
| 4557 | ins_rc[0] = ins_rc[1] = ins_rc[2] = 0; |
| 4558 | |
| 4559 | procObj = PyList_New(2); |
Antoine Pitrou | 794b3fc | 2009-05-23 15:47:13 +0000 | [diff] [blame] | 4560 | pidObj = PyLong_FromPid(pipe_pid); |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4561 | intObj = PyInt_FromLong((long) file_count); |
| 4562 | |
| 4563 | if (procObj && pidObj && intObj) |
| 4564 | { |
| 4565 | PyList_SetItem(procObj, 0, pidObj); |
| 4566 | PyList_SetItem(procObj, 1, intObj); |
| 4567 | |
| 4568 | fileObj[0] = PyLong_FromVoidPtr(p_s[0]); |
| 4569 | if (fileObj[0]) |
| 4570 | { |
| 4571 | ins_rc[0] = PyDict_SetItem(_PyPopenProcs, |
| 4572 | fileObj[0], |
| 4573 | procObj); |
| 4574 | } |
| 4575 | fileObj[1] = PyLong_FromVoidPtr(p_s[1]); |
| 4576 | if (fileObj[1]) |
| 4577 | { |
| 4578 | ins_rc[1] = PyDict_SetItem(_PyPopenProcs, |
| 4579 | fileObj[1], |
| 4580 | procObj); |
| 4581 | } |
| 4582 | if (file_count >= 3) |
| 4583 | { |
| 4584 | fileObj[2] = PyLong_FromVoidPtr(p_s[2]); |
| 4585 | if (fileObj[2]) |
| 4586 | { |
| 4587 | ins_rc[2] = PyDict_SetItem(_PyPopenProcs, |
| 4588 | fileObj[2], |
| 4589 | procObj); |
| 4590 | } |
| 4591 | } |
| 4592 | |
| 4593 | if (ins_rc[0] < 0 || !fileObj[0] || |
| 4594 | ins_rc[1] < 0 || (file_count > 1 && !fileObj[1]) || |
| 4595 | ins_rc[2] < 0 || (file_count > 2 && !fileObj[2])) |
| 4596 | { |
| 4597 | /* Something failed - remove any dictionary |
| 4598 | * entries that did make it. |
| 4599 | */ |
| 4600 | if (!ins_rc[0] && fileObj[0]) |
| 4601 | { |
| 4602 | PyDict_DelItem(_PyPopenProcs, |
| 4603 | fileObj[0]); |
| 4604 | } |
| 4605 | if (!ins_rc[1] && fileObj[1]) |
| 4606 | { |
| 4607 | PyDict_DelItem(_PyPopenProcs, |
| 4608 | fileObj[1]); |
| 4609 | } |
| 4610 | if (!ins_rc[2] && fileObj[2]) |
| 4611 | { |
| 4612 | PyDict_DelItem(_PyPopenProcs, |
| 4613 | fileObj[2]); |
| 4614 | } |
| 4615 | } |
| 4616 | } |
Tim Peters | 11b2306 | 2003-04-23 02:39:17 +0000 | [diff] [blame] | 4617 | |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4618 | /* |
| 4619 | * Clean up our localized references for the dictionary keys |
| 4620 | * and value since PyDict_SetItem will Py_INCREF any copies |
| 4621 | * that got placed in the dictionary. |
| 4622 | */ |
| 4623 | Py_XDECREF(procObj); |
| 4624 | Py_XDECREF(fileObj[0]); |
| 4625 | Py_XDECREF(fileObj[1]); |
| 4626 | Py_XDECREF(fileObj[2]); |
| 4627 | } |
| 4628 | |
| 4629 | /* Child is launched. */ |
| 4630 | return f; |
| 4631 | } |
| 4632 | |
| 4633 | /* |
| 4634 | * Wrapper for fclose() to use for popen* files, so we can retrieve the |
| 4635 | * exit code for the child process and return as a result of the close. |
| 4636 | * |
| 4637 | * This function uses the _PyPopenProcs dictionary in order to map the |
| 4638 | * input file pointer to information about the process that was |
| 4639 | * originally created by the popen* call that created the file pointer. |
| 4640 | * The dictionary uses the file pointer as a key (with one entry |
| 4641 | * inserted for each file returned by the original popen* call) and a |
| 4642 | * single list object as the value for all files from a single call. |
| 4643 | * The list object contains the Win32 process handle at [0], and a file |
| 4644 | * count at [1], which is initialized to the total number of file |
| 4645 | * handles using that list. |
| 4646 | * |
| 4647 | * This function closes whichever handle it is passed, and decrements |
| 4648 | * the file count in the dictionary for the process handle pointed to |
| 4649 | * by this file. On the last close (when the file count reaches zero), |
| 4650 | * this function will wait for the child process and then return its |
| 4651 | * exit code as the result of the close() operation. This permits the |
| 4652 | * files to be closed in any order - it is always the close() of the |
| 4653 | * final handle that will return the exit code. |
Andrew MacIntyre | baf25b0 | 2003-04-21 14:22:36 +0000 | [diff] [blame] | 4654 | * |
| 4655 | * NOTE: This function is currently called with the GIL released. |
| 4656 | * hence we use the GILState API to manage our state. |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4657 | */ |
| 4658 | |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4659 | static int _PyPclose(FILE *file) |
| 4660 | { |
| 4661 | int result; |
| 4662 | int exit_code; |
Christian Heimes | d491d71 | 2008-02-01 18:49:26 +0000 | [diff] [blame] | 4663 | pid_t pipe_pid; |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4664 | PyObject *procObj, *pidObj, *intObj, *fileObj; |
| 4665 | int file_count; |
| 4666 | #ifdef WITH_THREAD |
Andrew MacIntyre | baf25b0 | 2003-04-21 14:22:36 +0000 | [diff] [blame] | 4667 | PyGILState_STATE state; |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4668 | #endif |
| 4669 | |
| 4670 | /* Close the file handle first, to ensure it can't block the |
| 4671 | * child from exiting if it's the last handle. |
| 4672 | */ |
| 4673 | result = fclose(file); |
| 4674 | |
| 4675 | #ifdef WITH_THREAD |
Andrew MacIntyre | baf25b0 | 2003-04-21 14:22:36 +0000 | [diff] [blame] | 4676 | state = PyGILState_Ensure(); |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4677 | #endif |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4678 | if (_PyPopenProcs) |
| 4679 | { |
| 4680 | if ((fileObj = PyLong_FromVoidPtr(file)) != NULL && |
| 4681 | (procObj = PyDict_GetItem(_PyPopenProcs, |
| 4682 | fileObj)) != NULL && |
| 4683 | (pidObj = PyList_GetItem(procObj,0)) != NULL && |
| 4684 | (intObj = PyList_GetItem(procObj,1)) != NULL) |
| 4685 | { |
Antoine Pitrou | 794b3fc | 2009-05-23 15:47:13 +0000 | [diff] [blame] | 4686 | pipe_pid = (pid_t) PyLong_AsPid(pidObj); |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4687 | file_count = (int) PyInt_AsLong(intObj); |
| 4688 | |
| 4689 | if (file_count > 1) |
| 4690 | { |
| 4691 | /* Still other files referencing process */ |
| 4692 | file_count--; |
| 4693 | PyList_SetItem(procObj,1, |
| 4694 | PyInt_FromLong((long) file_count)); |
| 4695 | } |
| 4696 | else |
| 4697 | { |
| 4698 | /* Last file for this process */ |
| 4699 | if (result != EOF && |
| 4700 | waitpid(pipe_pid, &exit_code, 0) == pipe_pid) |
| 4701 | { |
| 4702 | /* extract exit status */ |
| 4703 | if (WIFEXITED(exit_code)) |
| 4704 | { |
| 4705 | result = WEXITSTATUS(exit_code); |
| 4706 | } |
| 4707 | else |
| 4708 | { |
| 4709 | errno = EPIPE; |
| 4710 | result = -1; |
| 4711 | } |
| 4712 | } |
| 4713 | else |
| 4714 | { |
| 4715 | /* Indicate failure - this will cause the file object |
| 4716 | * to raise an I/O error and translate the last |
| 4717 | * error code from errno. We do have a problem with |
| 4718 | * last errors that overlap the normal errno table, |
| 4719 | * but that's a consistent problem with the file object. |
| 4720 | */ |
| 4721 | result = -1; |
| 4722 | } |
| 4723 | } |
| 4724 | |
| 4725 | /* Remove this file pointer from dictionary */ |
| 4726 | PyDict_DelItem(_PyPopenProcs, fileObj); |
| 4727 | |
| 4728 | if (PyDict_Size(_PyPopenProcs) == 0) |
| 4729 | { |
| 4730 | Py_DECREF(_PyPopenProcs); |
| 4731 | _PyPopenProcs = NULL; |
| 4732 | } |
| 4733 | |
| 4734 | } /* if object retrieval ok */ |
| 4735 | |
| 4736 | Py_XDECREF(fileObj); |
| 4737 | } /* if _PyPopenProcs */ |
| 4738 | |
| 4739 | #ifdef WITH_THREAD |
Andrew MacIntyre | baf25b0 | 2003-04-21 14:22:36 +0000 | [diff] [blame] | 4740 | PyGILState_Release(state); |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4741 | #endif |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4742 | return result; |
| 4743 | } |
| 4744 | |
| 4745 | #endif /* PYCC_??? */ |
| 4746 | |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 4747 | #elif defined(MS_WINDOWS) |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4748 | |
| 4749 | /* |
| 4750 | * Portable 'popen' replacement for Win32. |
| 4751 | * |
| 4752 | * Written by Bill Tutt <billtut@microsoft.com>. Minor tweaks |
| 4753 | * and 2.0 integration by Fredrik Lundh <fredrik@pythonware.com> |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 4754 | * Return code handling by David Bolen <db3l@fitlinxx.com>. |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4755 | */ |
| 4756 | |
| 4757 | #include <malloc.h> |
| 4758 | #include <io.h> |
| 4759 | #include <fcntl.h> |
| 4760 | |
| 4761 | /* These tell _PyPopen() wether to return 1, 2, or 3 file objects. */ |
| 4762 | #define POPEN_1 1 |
| 4763 | #define POPEN_2 2 |
| 4764 | #define POPEN_3 3 |
| 4765 | #define POPEN_4 4 |
| 4766 | |
| 4767 | static PyObject *_PyPopen(char *, int, int); |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 4768 | static int _PyPclose(FILE *file); |
| 4769 | |
| 4770 | /* |
| 4771 | * Internal dictionary mapping popen* file pointers to process handles, |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 4772 | * for use when retrieving the process exit code. See _PyPclose() below |
| 4773 | * for more information on this dictionary's use. |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 4774 | */ |
| 4775 | static PyObject *_PyPopenProcs = NULL; |
| 4776 | |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4777 | |
| 4778 | /* popen that works from a GUI. |
| 4779 | * |
| 4780 | * The result of this function is a pipe (file) connected to the |
| 4781 | * processes stdin or stdout, depending on the requested mode. |
| 4782 | */ |
| 4783 | |
| 4784 | static PyObject * |
| 4785 | posix_popen(PyObject *self, PyObject *args) |
| 4786 | { |
Raymond Hettinger | b5cb665 | 2003-09-01 22:25:41 +0000 | [diff] [blame] | 4787 | PyObject *f; |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4788 | int tm = 0; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 4789 | |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4790 | char *cmdstring; |
| 4791 | char *mode = "r"; |
Fredrik Lundh | bb7eeff | 2000-07-09 17:59:32 +0000 | [diff] [blame] | 4792 | int bufsize = -1; |
Fredrik Lundh | 766ccdc | 2000-07-09 17:41:01 +0000 | [diff] [blame] | 4793 | if (!PyArg_ParseTuple(args, "s|si:popen", &cmdstring, &mode, &bufsize)) |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4794 | return NULL; |
| 4795 | |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4796 | if (*mode == 'r') |
| 4797 | tm = _O_RDONLY; |
| 4798 | else if (*mode != 'w') { |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 4799 | PyErr_SetString(PyExc_ValueError, "popen() arg 2 must be 'r' or 'w'"); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4800 | return NULL; |
| 4801 | } else |
| 4802 | tm = _O_WRONLY; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 4803 | |
Fredrik Lundh | 766ccdc | 2000-07-09 17:41:01 +0000 | [diff] [blame] | 4804 | if (bufsize != -1) { |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 4805 | PyErr_SetString(PyExc_ValueError, "popen() arg 3 must be -1"); |
Fredrik Lundh | 766ccdc | 2000-07-09 17:41:01 +0000 | [diff] [blame] | 4806 | return NULL; |
| 4807 | } |
| 4808 | |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4809 | if (*(mode+1) == 't') |
Fredrik Lundh | bb7eeff | 2000-07-09 17:59:32 +0000 | [diff] [blame] | 4810 | f = _PyPopen(cmdstring, tm | _O_TEXT, POPEN_1); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4811 | else if (*(mode+1) == 'b') |
Fredrik Lundh | bb7eeff | 2000-07-09 17:59:32 +0000 | [diff] [blame] | 4812 | f = _PyPopen(cmdstring, tm | _O_BINARY, POPEN_1); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4813 | else |
| 4814 | f = _PyPopen(cmdstring, tm | _O_TEXT, POPEN_1); |
| 4815 | |
| 4816 | return f; |
| 4817 | } |
| 4818 | |
| 4819 | /* Variation on win32pipe.popen |
| 4820 | * |
| 4821 | * The result of this function is a pipe (file) connected to the |
| 4822 | * process's stdin, and a pipe connected to the process's stdout. |
| 4823 | */ |
| 4824 | |
| 4825 | static PyObject * |
| 4826 | win32_popen2(PyObject *self, PyObject *args) |
| 4827 | { |
| 4828 | PyObject *f; |
| 4829 | int tm=0; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 4830 | |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4831 | char *cmdstring; |
| 4832 | char *mode = "t"; |
Fredrik Lundh | 766ccdc | 2000-07-09 17:41:01 +0000 | [diff] [blame] | 4833 | int bufsize = -1; |
| 4834 | if (!PyArg_ParseTuple(args, "s|si:popen2", &cmdstring, &mode, &bufsize)) |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4835 | return NULL; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 4836 | |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4837 | if (*mode == 't') |
| 4838 | tm = _O_TEXT; |
| 4839 | else if (*mode != 'b') { |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 4840 | PyErr_SetString(PyExc_ValueError, "popen2() arg 2 must be 't' or 'b'"); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4841 | return NULL; |
| 4842 | } else |
| 4843 | tm = _O_BINARY; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 4844 | |
Fredrik Lundh | 766ccdc | 2000-07-09 17:41:01 +0000 | [diff] [blame] | 4845 | if (bufsize != -1) { |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 4846 | PyErr_SetString(PyExc_ValueError, "popen2() arg 3 must be -1"); |
Fredrik Lundh | 766ccdc | 2000-07-09 17:41:01 +0000 | [diff] [blame] | 4847 | return NULL; |
| 4848 | } |
| 4849 | |
| 4850 | f = _PyPopen(cmdstring, tm, POPEN_2); |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 4851 | |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4852 | return f; |
| 4853 | } |
| 4854 | |
| 4855 | /* |
| 4856 | * Variation on <om win32pipe.popen> |
Fredrik Lundh | bb7eeff | 2000-07-09 17:59:32 +0000 | [diff] [blame] | 4857 | * |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4858 | * The result of this function is 3 pipes - the process's stdin, |
| 4859 | * stdout and stderr |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4860 | */ |
| 4861 | |
| 4862 | static PyObject * |
| 4863 | win32_popen3(PyObject *self, PyObject *args) |
| 4864 | { |
| 4865 | PyObject *f; |
| 4866 | int tm = 0; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 4867 | |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4868 | char *cmdstring; |
| 4869 | char *mode = "t"; |
Fredrik Lundh | 766ccdc | 2000-07-09 17:41:01 +0000 | [diff] [blame] | 4870 | int bufsize = -1; |
| 4871 | if (!PyArg_ParseTuple(args, "s|si:popen3", &cmdstring, &mode, &bufsize)) |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4872 | return NULL; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 4873 | |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4874 | if (*mode == 't') |
| 4875 | tm = _O_TEXT; |
| 4876 | else if (*mode != 'b') { |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 4877 | PyErr_SetString(PyExc_ValueError, "popen3() arg 2 must be 't' or 'b'"); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4878 | return NULL; |
| 4879 | } else |
| 4880 | tm = _O_BINARY; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 4881 | |
Fredrik Lundh | 766ccdc | 2000-07-09 17:41:01 +0000 | [diff] [blame] | 4882 | if (bufsize != -1) { |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 4883 | PyErr_SetString(PyExc_ValueError, "popen3() arg 3 must be -1"); |
Fredrik Lundh | 766ccdc | 2000-07-09 17:41:01 +0000 | [diff] [blame] | 4884 | return NULL; |
| 4885 | } |
| 4886 | |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4887 | f = _PyPopen(cmdstring, tm, POPEN_3); |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 4888 | |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4889 | return f; |
| 4890 | } |
| 4891 | |
| 4892 | /* |
| 4893 | * Variation on win32pipe.popen |
| 4894 | * |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 4895 | * The result of this function is 2 pipes - the processes stdin, |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4896 | * and stdout+stderr combined as a single pipe. |
| 4897 | */ |
| 4898 | |
| 4899 | static PyObject * |
| 4900 | win32_popen4(PyObject *self, PyObject *args) |
| 4901 | { |
| 4902 | PyObject *f; |
| 4903 | int tm = 0; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 4904 | |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4905 | char *cmdstring; |
| 4906 | char *mode = "t"; |
Fredrik Lundh | 766ccdc | 2000-07-09 17:41:01 +0000 | [diff] [blame] | 4907 | int bufsize = -1; |
| 4908 | if (!PyArg_ParseTuple(args, "s|si:popen4", &cmdstring, &mode, &bufsize)) |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4909 | return NULL; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 4910 | |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4911 | if (*mode == 't') |
| 4912 | tm = _O_TEXT; |
| 4913 | else if (*mode != 'b') { |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 4914 | PyErr_SetString(PyExc_ValueError, "popen4() arg 2 must be 't' or 'b'"); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4915 | return NULL; |
| 4916 | } else |
| 4917 | tm = _O_BINARY; |
Fredrik Lundh | 766ccdc | 2000-07-09 17:41:01 +0000 | [diff] [blame] | 4918 | |
| 4919 | if (bufsize != -1) { |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 4920 | PyErr_SetString(PyExc_ValueError, "popen4() arg 3 must be -1"); |
Fredrik Lundh | 766ccdc | 2000-07-09 17:41:01 +0000 | [diff] [blame] | 4921 | return NULL; |
| 4922 | } |
| 4923 | |
Fredrik Lundh | bb7eeff | 2000-07-09 17:59:32 +0000 | [diff] [blame] | 4924 | f = _PyPopen(cmdstring, tm, POPEN_4); |
Fredrik Lundh | 766ccdc | 2000-07-09 17:41:01 +0000 | [diff] [blame] | 4925 | |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4926 | return f; |
| 4927 | } |
| 4928 | |
Mark Hammond | 0850137 | 2001-01-31 07:30:29 +0000 | [diff] [blame] | 4929 | static BOOL |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 4930 | _PyPopenCreateProcess(char *cmdstring, |
Fredrik Lundh | 9ac81f6 | 2000-07-09 23:35:24 +0000 | [diff] [blame] | 4931 | HANDLE hStdin, |
| 4932 | HANDLE hStdout, |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 4933 | HANDLE hStderr, |
| 4934 | HANDLE *hProcess) |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4935 | { |
| 4936 | PROCESS_INFORMATION piProcInfo; |
| 4937 | STARTUPINFO siStartInfo; |
Mark Hammond | fe51c6d | 2002-08-02 02:27:13 +0000 | [diff] [blame] | 4938 | DWORD dwProcessFlags = 0; /* no NEW_CONSOLE by default for Ctrl+C handling */ |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4939 | char *s1,*s2, *s3 = " /c "; |
Mark Hammond | 0850137 | 2001-01-31 07:30:29 +0000 | [diff] [blame] | 4940 | const char *szConsoleSpawn = "w9xpopen.exe"; |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4941 | int i; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 4942 | Py_ssize_t x; |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4943 | |
| 4944 | if (i = GetEnvironmentVariable("COMSPEC",NULL,0)) { |
Tim Peters | 402d598 | 2001-08-27 06:37:48 +0000 | [diff] [blame] | 4945 | char *comshell; |
| 4946 | |
Tim Peters | 92e4dd8 | 2002-10-05 01:47:34 +0000 | [diff] [blame] | 4947 | s1 = (char *)alloca(i); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4948 | if (!(x = GetEnvironmentVariable("COMSPEC", s1, i))) |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 4949 | /* x < i, so x fits into an integer */ |
| 4950 | return (int)x; |
Tim Peters | 402d598 | 2001-08-27 06:37:48 +0000 | [diff] [blame] | 4951 | |
| 4952 | /* Explicitly check if we are using COMMAND.COM. If we are |
| 4953 | * then use the w9xpopen hack. |
| 4954 | */ |
| 4955 | comshell = s1 + x; |
| 4956 | while (comshell >= s1 && *comshell != '\\') |
| 4957 | --comshell; |
| 4958 | ++comshell; |
| 4959 | |
| 4960 | if (GetVersion() < 0x80000000 && |
| 4961 | _stricmp(comshell, "command.com") != 0) { |
| 4962 | /* NT/2000 and not using command.com. */ |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4963 | x = i + strlen(s3) + strlen(cmdstring) + 1; |
Tim Peters | 92e4dd8 | 2002-10-05 01:47:34 +0000 | [diff] [blame] | 4964 | s2 = (char *)alloca(x); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4965 | ZeroMemory(s2, x); |
Tim Peters | 75cdad5 | 2001-11-28 22:07:30 +0000 | [diff] [blame] | 4966 | PyOS_snprintf(s2, x, "%s%s%s", s1, s3, cmdstring); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4967 | } |
| 4968 | else { |
| 4969 | /* |
Tim Peters | 402d598 | 2001-08-27 06:37:48 +0000 | [diff] [blame] | 4970 | * Oh gag, we're on Win9x or using COMMAND.COM. Use |
| 4971 | * the workaround listed in KB: Q150956 |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4972 | */ |
Mark Hammond | 0850137 | 2001-01-31 07:30:29 +0000 | [diff] [blame] | 4973 | char modulepath[_MAX_PATH]; |
| 4974 | struct stat statinfo; |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4975 | GetModuleFileName(NULL, modulepath, sizeof(modulepath)); |
Martin v. Löwis | 26fd960 | 2006-04-22 11:15:41 +0000 | [diff] [blame] | 4976 | for (x = i = 0; modulepath[i]; i++) |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4977 | if (modulepath[i] == SEP) |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 4978 | x = i+1; |
| 4979 | modulepath[x] = '\0'; |
Mark Hammond | 0850137 | 2001-01-31 07:30:29 +0000 | [diff] [blame] | 4980 | /* Create the full-name to w9xpopen, so we can test it exists */ |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 4981 | strncat(modulepath, |
| 4982 | szConsoleSpawn, |
Mark Hammond | 0850137 | 2001-01-31 07:30:29 +0000 | [diff] [blame] | 4983 | (sizeof(modulepath)/sizeof(modulepath[0])) |
| 4984 | -strlen(modulepath)); |
| 4985 | if (stat(modulepath, &statinfo) != 0) { |
Kristján Valur Jónsson | 17b8e97 | 2007-04-25 00:10:50 +0000 | [diff] [blame] | 4986 | size_t mplen = sizeof(modulepath)/sizeof(modulepath[0]); |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 4987 | /* Eeek - file-not-found - possibly an embedding |
| 4988 | situation - see if we can locate it in sys.prefix |
Mark Hammond | 0850137 | 2001-01-31 07:30:29 +0000 | [diff] [blame] | 4989 | */ |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 4990 | strncpy(modulepath, |
| 4991 | Py_GetExecPrefix(), |
Kristján Valur Jónsson | 17b8e97 | 2007-04-25 00:10:50 +0000 | [diff] [blame] | 4992 | mplen); |
| 4993 | modulepath[mplen-1] = '\0'; |
Mark Hammond | 0850137 | 2001-01-31 07:30:29 +0000 | [diff] [blame] | 4994 | if (modulepath[strlen(modulepath)-1] != '\\') |
| 4995 | strcat(modulepath, "\\"); |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 4996 | strncat(modulepath, |
| 4997 | szConsoleSpawn, |
Kristján Valur Jónsson | 17b8e97 | 2007-04-25 00:10:50 +0000 | [diff] [blame] | 4998 | mplen-strlen(modulepath)); |
Mark Hammond | 0850137 | 2001-01-31 07:30:29 +0000 | [diff] [blame] | 4999 | /* No where else to look - raise an easily identifiable |
| 5000 | error, rather than leaving Windows to report |
| 5001 | "file not found" - as the user is probably blissfully |
| 5002 | unaware this shim EXE is used, and it will confuse them. |
| 5003 | (well, it confused me for a while ;-) |
| 5004 | */ |
| 5005 | if (stat(modulepath, &statinfo) != 0) { |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 5006 | PyErr_Format(PyExc_RuntimeError, |
Mark Hammond | 0850137 | 2001-01-31 07:30:29 +0000 | [diff] [blame] | 5007 | "Can not locate '%s' which is needed " |
Tim Peters | 402d598 | 2001-08-27 06:37:48 +0000 | [diff] [blame] | 5008 | "for popen to work with your shell " |
| 5009 | "or platform.", |
Mark Hammond | 0850137 | 2001-01-31 07:30:29 +0000 | [diff] [blame] | 5010 | szConsoleSpawn); |
| 5011 | return FALSE; |
| 5012 | } |
| 5013 | } |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5014 | x = i + strlen(s3) + strlen(cmdstring) + 1 + |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 5015 | strlen(modulepath) + |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5016 | strlen(szConsoleSpawn) + 1; |
Mark Hammond | 0850137 | 2001-01-31 07:30:29 +0000 | [diff] [blame] | 5017 | |
Tim Peters | 92e4dd8 | 2002-10-05 01:47:34 +0000 | [diff] [blame] | 5018 | s2 = (char *)alloca(x); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5019 | ZeroMemory(s2, x); |
Mark Hammond | e7fefbf | 2002-04-03 01:47:00 +0000 | [diff] [blame] | 5020 | /* To maintain correct argument passing semantics, |
| 5021 | we pass the command-line as it stands, and allow |
| 5022 | quoting to be applied. w9xpopen.exe will then |
| 5023 | use its argv vector, and re-quote the necessary |
| 5024 | args for the ultimate child process. |
| 5025 | */ |
Tim Peters | 75cdad5 | 2001-11-28 22:07:30 +0000 | [diff] [blame] | 5026 | PyOS_snprintf( |
| 5027 | s2, x, |
Mark Hammond | e7fefbf | 2002-04-03 01:47:00 +0000 | [diff] [blame] | 5028 | "\"%s\" %s%s%s", |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5029 | modulepath, |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5030 | s1, |
| 5031 | s3, |
| 5032 | cmdstring); |
Mark Hammond | fe51c6d | 2002-08-02 02:27:13 +0000 | [diff] [blame] | 5033 | /* Not passing CREATE_NEW_CONSOLE has been known to |
Tim Peters | 11b2306 | 2003-04-23 02:39:17 +0000 | [diff] [blame] | 5034 | cause random failures on win9x. Specifically a |
Mark Hammond | fe51c6d | 2002-08-02 02:27:13 +0000 | [diff] [blame] | 5035 | dialog: |
| 5036 | "Your program accessed mem currently in use at xxx" |
| 5037 | and a hopeful warning about the stability of your |
| 5038 | system. |
| 5039 | Cost is Ctrl+C wont kill children, but anyone |
| 5040 | who cares can have a go! |
| 5041 | */ |
| 5042 | dwProcessFlags |= CREATE_NEW_CONSOLE; |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5043 | } |
| 5044 | } |
| 5045 | |
| 5046 | /* Could be an else here to try cmd.exe / command.com in the path |
| 5047 | Now we'll just error out.. */ |
Mark Hammond | 0850137 | 2001-01-31 07:30:29 +0000 | [diff] [blame] | 5048 | else { |
Tim Peters | 402d598 | 2001-08-27 06:37:48 +0000 | [diff] [blame] | 5049 | PyErr_SetString(PyExc_RuntimeError, |
| 5050 | "Cannot locate a COMSPEC environment variable to " |
| 5051 | "use as the shell"); |
Mark Hammond | 0850137 | 2001-01-31 07:30:29 +0000 | [diff] [blame] | 5052 | return FALSE; |
| 5053 | } |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 5054 | |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5055 | ZeroMemory(&siStartInfo, sizeof(STARTUPINFO)); |
| 5056 | siStartInfo.cb = sizeof(STARTUPINFO); |
| 5057 | siStartInfo.dwFlags = STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW; |
| 5058 | siStartInfo.hStdInput = hStdin; |
| 5059 | siStartInfo.hStdOutput = hStdout; |
| 5060 | siStartInfo.hStdError = hStderr; |
| 5061 | siStartInfo.wShowWindow = SW_HIDE; |
| 5062 | |
| 5063 | if (CreateProcess(NULL, |
Fredrik Lundh | 9ac81f6 | 2000-07-09 23:35:24 +0000 | [diff] [blame] | 5064 | s2, |
| 5065 | NULL, |
| 5066 | NULL, |
| 5067 | TRUE, |
Mark Hammond | fe51c6d | 2002-08-02 02:27:13 +0000 | [diff] [blame] | 5068 | dwProcessFlags, |
Fredrik Lundh | 9ac81f6 | 2000-07-09 23:35:24 +0000 | [diff] [blame] | 5069 | NULL, |
| 5070 | NULL, |
| 5071 | &siStartInfo, |
| 5072 | &piProcInfo) ) { |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5073 | /* Close the handles now so anyone waiting is woken. */ |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5074 | CloseHandle(piProcInfo.hThread); |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 5075 | |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 5076 | /* Return process handle */ |
| 5077 | *hProcess = piProcInfo.hProcess; |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5078 | return TRUE; |
| 5079 | } |
Tim Peters | 402d598 | 2001-08-27 06:37:48 +0000 | [diff] [blame] | 5080 | win32_error("CreateProcess", s2); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5081 | return FALSE; |
| 5082 | } |
| 5083 | |
| 5084 | /* The following code is based off of KB: Q190351 */ |
| 5085 | |
| 5086 | static PyObject * |
| 5087 | _PyPopen(char *cmdstring, int mode, int n) |
| 5088 | { |
| 5089 | HANDLE hChildStdinRd, hChildStdinWr, hChildStdoutRd, hChildStdoutWr, |
| 5090 | hChildStderrRd, hChildStderrWr, hChildStdinWrDup, hChildStdoutRdDup, |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 5091 | hChildStderrRdDup, hProcess; /* hChildStdoutWrDup; */ |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 5092 | |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5093 | SECURITY_ATTRIBUTES saAttr; |
| 5094 | BOOL fSuccess; |
| 5095 | int fd1, fd2, fd3; |
| 5096 | FILE *f1, *f2, *f3; |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 5097 | long file_count; |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5098 | PyObject *f; |
| 5099 | |
| 5100 | saAttr.nLength = sizeof(SECURITY_ATTRIBUTES); |
| 5101 | saAttr.bInheritHandle = TRUE; |
| 5102 | saAttr.lpSecurityDescriptor = NULL; |
| 5103 | |
| 5104 | if (!CreatePipe(&hChildStdinRd, &hChildStdinWr, &saAttr, 0)) |
| 5105 | return win32_error("CreatePipe", NULL); |
| 5106 | |
| 5107 | /* Create new output read handle and the input write handle. Set |
| 5108 | * the inheritance properties to FALSE. Otherwise, the child inherits |
Walter Dörwald | f0dfc7a | 2003-10-20 14:01:56 +0000 | [diff] [blame] | 5109 | * these handles; resulting in non-closeable handles to the pipes |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5110 | * being created. */ |
| 5111 | fSuccess = DuplicateHandle(GetCurrentProcess(), hChildStdinWr, |
Fredrik Lundh | 9ac81f6 | 2000-07-09 23:35:24 +0000 | [diff] [blame] | 5112 | GetCurrentProcess(), &hChildStdinWrDup, 0, |
| 5113 | FALSE, |
| 5114 | DUPLICATE_SAME_ACCESS); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5115 | if (!fSuccess) |
| 5116 | return win32_error("DuplicateHandle", NULL); |
| 5117 | |
| 5118 | /* Close the inheritable version of ChildStdin |
| 5119 | that we're using. */ |
| 5120 | CloseHandle(hChildStdinWr); |
| 5121 | |
| 5122 | if (!CreatePipe(&hChildStdoutRd, &hChildStdoutWr, &saAttr, 0)) |
| 5123 | return win32_error("CreatePipe", NULL); |
| 5124 | |
| 5125 | fSuccess = DuplicateHandle(GetCurrentProcess(), hChildStdoutRd, |
Fredrik Lundh | 9ac81f6 | 2000-07-09 23:35:24 +0000 | [diff] [blame] | 5126 | GetCurrentProcess(), &hChildStdoutRdDup, 0, |
| 5127 | FALSE, DUPLICATE_SAME_ACCESS); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5128 | if (!fSuccess) |
| 5129 | return win32_error("DuplicateHandle", NULL); |
| 5130 | |
| 5131 | /* Close the inheritable version of ChildStdout |
| 5132 | that we're using. */ |
| 5133 | CloseHandle(hChildStdoutRd); |
| 5134 | |
| 5135 | if (n != POPEN_4) { |
| 5136 | if (!CreatePipe(&hChildStderrRd, &hChildStderrWr, &saAttr, 0)) |
| 5137 | return win32_error("CreatePipe", NULL); |
Fredrik Lundh | 9ac81f6 | 2000-07-09 23:35:24 +0000 | [diff] [blame] | 5138 | fSuccess = DuplicateHandle(GetCurrentProcess(), |
| 5139 | hChildStderrRd, |
| 5140 | GetCurrentProcess(), |
| 5141 | &hChildStderrRdDup, 0, |
| 5142 | FALSE, DUPLICATE_SAME_ACCESS); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5143 | if (!fSuccess) |
| 5144 | return win32_error("DuplicateHandle", NULL); |
| 5145 | /* Close the inheritable version of ChildStdErr that we're using. */ |
| 5146 | CloseHandle(hChildStderrRd); |
| 5147 | } |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 5148 | |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5149 | switch (n) { |
| 5150 | case POPEN_1: |
| 5151 | switch (mode & (_O_RDONLY | _O_TEXT | _O_BINARY | _O_WRONLY)) { |
| 5152 | case _O_WRONLY | _O_TEXT: |
| 5153 | /* Case for writing to child Stdin in text mode. */ |
Martin v. Löwis | a43190b | 2006-05-22 09:15:18 +0000 | [diff] [blame] | 5154 | fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5155 | f1 = _fdopen(fd1, "w"); |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 5156 | f = PyFile_FromFile(f1, cmdstring, "w", _PyPclose); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5157 | PyFile_SetBufSize(f, 0); |
| 5158 | /* We don't care about these pipes anymore, so close them. */ |
| 5159 | CloseHandle(hChildStdoutRdDup); |
| 5160 | CloseHandle(hChildStderrRdDup); |
| 5161 | break; |
| 5162 | |
| 5163 | case _O_RDONLY | _O_TEXT: |
| 5164 | /* Case for reading from child Stdout in text mode. */ |
Martin v. Löwis | a43190b | 2006-05-22 09:15:18 +0000 | [diff] [blame] | 5165 | fd1 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5166 | f1 = _fdopen(fd1, "r"); |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 5167 | f = PyFile_FromFile(f1, cmdstring, "r", _PyPclose); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5168 | PyFile_SetBufSize(f, 0); |
| 5169 | /* We don't care about these pipes anymore, so close them. */ |
| 5170 | CloseHandle(hChildStdinWrDup); |
| 5171 | CloseHandle(hChildStderrRdDup); |
| 5172 | break; |
| 5173 | |
| 5174 | case _O_RDONLY | _O_BINARY: |
| 5175 | /* Case for readinig from child Stdout in binary mode. */ |
Martin v. Löwis | a43190b | 2006-05-22 09:15:18 +0000 | [diff] [blame] | 5176 | fd1 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5177 | f1 = _fdopen(fd1, "rb"); |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 5178 | f = PyFile_FromFile(f1, cmdstring, "rb", _PyPclose); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5179 | PyFile_SetBufSize(f, 0); |
| 5180 | /* We don't care about these pipes anymore, so close them. */ |
| 5181 | CloseHandle(hChildStdinWrDup); |
| 5182 | CloseHandle(hChildStderrRdDup); |
| 5183 | break; |
| 5184 | |
| 5185 | case _O_WRONLY | _O_BINARY: |
| 5186 | /* Case for writing to child Stdin in binary mode. */ |
Martin v. Löwis | a43190b | 2006-05-22 09:15:18 +0000 | [diff] [blame] | 5187 | fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5188 | f1 = _fdopen(fd1, "wb"); |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 5189 | f = PyFile_FromFile(f1, cmdstring, "wb", _PyPclose); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5190 | PyFile_SetBufSize(f, 0); |
| 5191 | /* We don't care about these pipes anymore, so close them. */ |
| 5192 | CloseHandle(hChildStdoutRdDup); |
| 5193 | CloseHandle(hChildStderrRdDup); |
| 5194 | break; |
| 5195 | } |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 5196 | file_count = 1; |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5197 | break; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 5198 | |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5199 | case POPEN_2: |
| 5200 | case POPEN_4: |
| 5201 | { |
| 5202 | char *m1, *m2; |
| 5203 | PyObject *p1, *p2; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 5204 | |
Tim Peters | 7dca21e | 2002-08-19 00:42:29 +0000 | [diff] [blame] | 5205 | if (mode & _O_TEXT) { |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5206 | m1 = "r"; |
| 5207 | m2 = "w"; |
| 5208 | } else { |
| 5209 | m1 = "rb"; |
| 5210 | m2 = "wb"; |
| 5211 | } |
| 5212 | |
Martin v. Löwis | a43190b | 2006-05-22 09:15:18 +0000 | [diff] [blame] | 5213 | fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5214 | f1 = _fdopen(fd1, m2); |
Martin v. Löwis | a43190b | 2006-05-22 09:15:18 +0000 | [diff] [blame] | 5215 | fd2 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5216 | f2 = _fdopen(fd2, m1); |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 5217 | p1 = PyFile_FromFile(f1, cmdstring, m2, _PyPclose); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5218 | PyFile_SetBufSize(p1, 0); |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 5219 | p2 = PyFile_FromFile(f2, cmdstring, m1, _PyPclose); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5220 | PyFile_SetBufSize(p2, 0); |
| 5221 | |
| 5222 | if (n != 4) |
| 5223 | CloseHandle(hChildStderrRdDup); |
| 5224 | |
Raymond Hettinger | 8ae4689 | 2003-10-12 19:09:37 +0000 | [diff] [blame] | 5225 | f = PyTuple_Pack(2,p1,p2); |
Mark Hammond | 64aae66 | 2001-01-31 05:38:47 +0000 | [diff] [blame] | 5226 | Py_XDECREF(p1); |
| 5227 | Py_XDECREF(p2); |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 5228 | file_count = 2; |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5229 | break; |
| 5230 | } |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 5231 | |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5232 | case POPEN_3: |
| 5233 | { |
| 5234 | char *m1, *m2; |
| 5235 | PyObject *p1, *p2, *p3; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 5236 | |
Tim Peters | 7dca21e | 2002-08-19 00:42:29 +0000 | [diff] [blame] | 5237 | if (mode & _O_TEXT) { |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5238 | m1 = "r"; |
| 5239 | m2 = "w"; |
| 5240 | } else { |
| 5241 | m1 = "rb"; |
| 5242 | m2 = "wb"; |
| 5243 | } |
| 5244 | |
Martin v. Löwis | a43190b | 2006-05-22 09:15:18 +0000 | [diff] [blame] | 5245 | fd1 = _open_osfhandle((Py_intptr_t)hChildStdinWrDup, mode); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5246 | f1 = _fdopen(fd1, m2); |
Martin v. Löwis | a43190b | 2006-05-22 09:15:18 +0000 | [diff] [blame] | 5247 | fd2 = _open_osfhandle((Py_intptr_t)hChildStdoutRdDup, mode); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5248 | f2 = _fdopen(fd2, m1); |
Martin v. Löwis | a43190b | 2006-05-22 09:15:18 +0000 | [diff] [blame] | 5249 | fd3 = _open_osfhandle((Py_intptr_t)hChildStderrRdDup, mode); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5250 | f3 = _fdopen(fd3, m1); |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 5251 | p1 = PyFile_FromFile(f1, cmdstring, m2, _PyPclose); |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 5252 | p2 = PyFile_FromFile(f2, cmdstring, m1, _PyPclose); |
| 5253 | p3 = PyFile_FromFile(f3, cmdstring, m1, _PyPclose); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5254 | PyFile_SetBufSize(p1, 0); |
| 5255 | PyFile_SetBufSize(p2, 0); |
| 5256 | PyFile_SetBufSize(p3, 0); |
Raymond Hettinger | 8ae4689 | 2003-10-12 19:09:37 +0000 | [diff] [blame] | 5257 | f = PyTuple_Pack(3,p1,p2,p3); |
Mark Hammond | 64aae66 | 2001-01-31 05:38:47 +0000 | [diff] [blame] | 5258 | Py_XDECREF(p1); |
| 5259 | Py_XDECREF(p2); |
| 5260 | Py_XDECREF(p3); |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 5261 | file_count = 3; |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5262 | break; |
| 5263 | } |
| 5264 | } |
| 5265 | |
| 5266 | if (n == POPEN_4) { |
| 5267 | if (!_PyPopenCreateProcess(cmdstring, |
Fredrik Lundh | 9ac81f6 | 2000-07-09 23:35:24 +0000 | [diff] [blame] | 5268 | hChildStdinRd, |
| 5269 | hChildStdoutWr, |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 5270 | hChildStdoutWr, |
| 5271 | &hProcess)) |
Mark Hammond | 0850137 | 2001-01-31 07:30:29 +0000 | [diff] [blame] | 5272 | return NULL; |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5273 | } |
| 5274 | else { |
| 5275 | if (!_PyPopenCreateProcess(cmdstring, |
Fredrik Lundh | 9ac81f6 | 2000-07-09 23:35:24 +0000 | [diff] [blame] | 5276 | hChildStdinRd, |
| 5277 | hChildStdoutWr, |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 5278 | hChildStderrWr, |
| 5279 | &hProcess)) |
Mark Hammond | 0850137 | 2001-01-31 07:30:29 +0000 | [diff] [blame] | 5280 | return NULL; |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5281 | } |
| 5282 | |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 5283 | /* |
| 5284 | * Insert the files we've created into the process dictionary |
| 5285 | * all referencing the list with the process handle and the |
| 5286 | * initial number of files (see description below in _PyPclose). |
| 5287 | * Since if _PyPclose later tried to wait on a process when all |
| 5288 | * handles weren't closed, it could create a deadlock with the |
| 5289 | * child, we spend some energy here to try to ensure that we |
| 5290 | * either insert all file handles into the dictionary or none |
| 5291 | * at all. It's a little clumsy with the various popen modes |
| 5292 | * and variable number of files involved. |
| 5293 | */ |
| 5294 | if (!_PyPopenProcs) { |
| 5295 | _PyPopenProcs = PyDict_New(); |
| 5296 | } |
| 5297 | |
| 5298 | if (_PyPopenProcs) { |
| 5299 | PyObject *procObj, *hProcessObj, *intObj, *fileObj[3]; |
| 5300 | int ins_rc[3]; |
| 5301 | |
| 5302 | fileObj[0] = fileObj[1] = fileObj[2] = NULL; |
| 5303 | ins_rc[0] = ins_rc[1] = ins_rc[2] = 0; |
| 5304 | |
| 5305 | procObj = PyList_New(2); |
| 5306 | hProcessObj = PyLong_FromVoidPtr(hProcess); |
| 5307 | intObj = PyInt_FromLong(file_count); |
| 5308 | |
| 5309 | if (procObj && hProcessObj && intObj) { |
| 5310 | PyList_SetItem(procObj,0,hProcessObj); |
| 5311 | PyList_SetItem(procObj,1,intObj); |
| 5312 | |
| 5313 | fileObj[0] = PyLong_FromVoidPtr(f1); |
| 5314 | if (fileObj[0]) { |
| 5315 | ins_rc[0] = PyDict_SetItem(_PyPopenProcs, |
| 5316 | fileObj[0], |
| 5317 | procObj); |
| 5318 | } |
| 5319 | if (file_count >= 2) { |
| 5320 | fileObj[1] = PyLong_FromVoidPtr(f2); |
| 5321 | if (fileObj[1]) { |
| 5322 | ins_rc[1] = PyDict_SetItem(_PyPopenProcs, |
| 5323 | fileObj[1], |
| 5324 | procObj); |
| 5325 | } |
| 5326 | } |
| 5327 | if (file_count >= 3) { |
| 5328 | fileObj[2] = PyLong_FromVoidPtr(f3); |
| 5329 | if (fileObj[2]) { |
| 5330 | ins_rc[2] = PyDict_SetItem(_PyPopenProcs, |
| 5331 | fileObj[2], |
| 5332 | procObj); |
| 5333 | } |
| 5334 | } |
| 5335 | |
| 5336 | if (ins_rc[0] < 0 || !fileObj[0] || |
| 5337 | ins_rc[1] < 0 || (file_count > 1 && !fileObj[1]) || |
| 5338 | ins_rc[2] < 0 || (file_count > 2 && !fileObj[2])) { |
| 5339 | /* Something failed - remove any dictionary |
| 5340 | * entries that did make it. |
| 5341 | */ |
| 5342 | if (!ins_rc[0] && fileObj[0]) { |
| 5343 | PyDict_DelItem(_PyPopenProcs, |
| 5344 | fileObj[0]); |
| 5345 | } |
| 5346 | if (!ins_rc[1] && fileObj[1]) { |
| 5347 | PyDict_DelItem(_PyPopenProcs, |
| 5348 | fileObj[1]); |
| 5349 | } |
| 5350 | if (!ins_rc[2] && fileObj[2]) { |
| 5351 | PyDict_DelItem(_PyPopenProcs, |
| 5352 | fileObj[2]); |
| 5353 | } |
| 5354 | } |
| 5355 | } |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 5356 | |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 5357 | /* |
| 5358 | * Clean up our localized references for the dictionary keys |
| 5359 | * and value since PyDict_SetItem will Py_INCREF any copies |
| 5360 | * that got placed in the dictionary. |
| 5361 | */ |
| 5362 | Py_XDECREF(procObj); |
| 5363 | Py_XDECREF(fileObj[0]); |
| 5364 | Py_XDECREF(fileObj[1]); |
| 5365 | Py_XDECREF(fileObj[2]); |
| 5366 | } |
| 5367 | |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5368 | /* Child is launched. Close the parents copy of those pipe |
| 5369 | * handles that only the child should have open. You need to |
| 5370 | * make sure that no handles to the write end of the output pipe |
| 5371 | * are maintained in this process or else the pipe will not close |
| 5372 | * when the child process exits and the ReadFile will hang. */ |
| 5373 | |
| 5374 | if (!CloseHandle(hChildStdinRd)) |
| 5375 | return win32_error("CloseHandle", NULL); |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 5376 | |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5377 | if (!CloseHandle(hChildStdoutWr)) |
| 5378 | return win32_error("CloseHandle", NULL); |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 5379 | |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5380 | if ((n != 4) && (!CloseHandle(hChildStderrWr))) |
| 5381 | return win32_error("CloseHandle", NULL); |
| 5382 | |
| 5383 | return f; |
| 5384 | } |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 5385 | |
| 5386 | /* |
| 5387 | * Wrapper for fclose() to use for popen* files, so we can retrieve the |
| 5388 | * 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] | 5389 | * |
| 5390 | * This function uses the _PyPopenProcs dictionary in order to map the |
| 5391 | * input file pointer to information about the process that was |
| 5392 | * originally created by the popen* call that created the file pointer. |
| 5393 | * The dictionary uses the file pointer as a key (with one entry |
| 5394 | * inserted for each file returned by the original popen* call) and a |
| 5395 | * single list object as the value for all files from a single call. |
| 5396 | * The list object contains the Win32 process handle at [0], and a file |
| 5397 | * count at [1], which is initialized to the total number of file |
| 5398 | * handles using that list. |
| 5399 | * |
| 5400 | * This function closes whichever handle it is passed, and decrements |
| 5401 | * the file count in the dictionary for the process handle pointed to |
| 5402 | * by this file. On the last close (when the file count reaches zero), |
| 5403 | * this function will wait for the child process and then return its |
| 5404 | * exit code as the result of the close() operation. This permits the |
| 5405 | * files to be closed in any order - it is always the close() of the |
| 5406 | * final handle that will return the exit code. |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 5407 | * |
| 5408 | * NOTE: This function is currently called with the GIL released. |
| 5409 | * hence we use the GILState API to manage our state. |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 5410 | */ |
Tim Peters | 736aa32 | 2000-09-01 06:51:24 +0000 | [diff] [blame] | 5411 | |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 5412 | static int _PyPclose(FILE *file) |
| 5413 | { |
Fredrik Lundh | 2031893 | 2000-07-26 17:29:12 +0000 | [diff] [blame] | 5414 | int result; |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 5415 | DWORD exit_code; |
| 5416 | HANDLE hProcess; |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 5417 | PyObject *procObj, *hProcessObj, *intObj, *fileObj; |
| 5418 | long file_count; |
Tim Peters | 736aa32 | 2000-09-01 06:51:24 +0000 | [diff] [blame] | 5419 | #ifdef WITH_THREAD |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 5420 | PyGILState_STATE state; |
Tim Peters | 736aa32 | 2000-09-01 06:51:24 +0000 | [diff] [blame] | 5421 | #endif |
| 5422 | |
Fredrik Lundh | 2031893 | 2000-07-26 17:29:12 +0000 | [diff] [blame] | 5423 | /* Close the file handle first, to ensure it can't block the |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 5424 | * child from exiting if it's the last handle. |
Fredrik Lundh | 2031893 | 2000-07-26 17:29:12 +0000 | [diff] [blame] | 5425 | */ |
| 5426 | result = fclose(file); |
Tim Peters | 736aa32 | 2000-09-01 06:51:24 +0000 | [diff] [blame] | 5427 | #ifdef WITH_THREAD |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 5428 | state = PyGILState_Ensure(); |
Tim Peters | 736aa32 | 2000-09-01 06:51:24 +0000 | [diff] [blame] | 5429 | #endif |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 5430 | if (_PyPopenProcs) { |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 5431 | if ((fileObj = PyLong_FromVoidPtr(file)) != NULL && |
| 5432 | (procObj = PyDict_GetItem(_PyPopenProcs, |
| 5433 | fileObj)) != NULL && |
| 5434 | (hProcessObj = PyList_GetItem(procObj,0)) != NULL && |
| 5435 | (intObj = PyList_GetItem(procObj,1)) != NULL) { |
| 5436 | |
| 5437 | hProcess = PyLong_AsVoidPtr(hProcessObj); |
| 5438 | file_count = PyInt_AsLong(intObj); |
| 5439 | |
| 5440 | if (file_count > 1) { |
| 5441 | /* Still other files referencing process */ |
| 5442 | file_count--; |
| 5443 | PyList_SetItem(procObj,1, |
| 5444 | PyInt_FromLong(file_count)); |
| 5445 | } else { |
| 5446 | /* Last file for this process */ |
Fredrik Lundh | 2031893 | 2000-07-26 17:29:12 +0000 | [diff] [blame] | 5447 | if (result != EOF && |
| 5448 | WaitForSingleObject(hProcess, INFINITE) != WAIT_FAILED && |
| 5449 | GetExitCodeProcess(hProcess, &exit_code)) { |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 5450 | /* Possible truncation here in 16-bit environments, but |
| 5451 | * real exit codes are just the lower byte in any event. |
| 5452 | */ |
| 5453 | result = exit_code; |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 5454 | } else { |
Fredrik Lundh | 2031893 | 2000-07-26 17:29:12 +0000 | [diff] [blame] | 5455 | /* Indicate failure - this will cause the file object |
| 5456 | * to raise an I/O error and translate the last Win32 |
| 5457 | * error code from errno. We do have a problem with |
| 5458 | * last errors that overlap the normal errno table, |
| 5459 | * but that's a consistent problem with the file object. |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 5460 | */ |
Fredrik Lundh | 2031893 | 2000-07-26 17:29:12 +0000 | [diff] [blame] | 5461 | if (result != EOF) { |
| 5462 | /* If the error wasn't from the fclose(), then |
| 5463 | * set errno for the file object error handling. |
| 5464 | */ |
| 5465 | errno = GetLastError(); |
| 5466 | } |
| 5467 | result = -1; |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 5468 | } |
| 5469 | |
| 5470 | /* Free up the native handle at this point */ |
| 5471 | CloseHandle(hProcess); |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 5472 | } |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 5473 | |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 5474 | /* Remove this file pointer from dictionary */ |
| 5475 | PyDict_DelItem(_PyPopenProcs, fileObj); |
| 5476 | |
| 5477 | if (PyDict_Size(_PyPopenProcs) == 0) { |
| 5478 | Py_DECREF(_PyPopenProcs); |
| 5479 | _PyPopenProcs = NULL; |
| 5480 | } |
| 5481 | |
| 5482 | } /* if object retrieval ok */ |
| 5483 | |
| 5484 | Py_XDECREF(fileObj); |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 5485 | } /* if _PyPopenProcs */ |
| 5486 | |
Tim Peters | 736aa32 | 2000-09-01 06:51:24 +0000 | [diff] [blame] | 5487 | #ifdef WITH_THREAD |
Mark Hammond | 8d98d2c | 2003-04-19 15:41:53 +0000 | [diff] [blame] | 5488 | PyGILState_Release(state); |
Tim Peters | 736aa32 | 2000-09-01 06:51:24 +0000 | [diff] [blame] | 5489 | #endif |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 5490 | return result; |
| 5491 | } |
Tim Peters | 9acdd3a | 2000-09-01 19:26:36 +0000 | [diff] [blame] | 5492 | |
| 5493 | #else /* which OS? */ |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 5494 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 5495 | posix_popen(PyObject *self, PyObject *args) |
Guido van Rossum | 3b06619 | 1991-06-04 19:40:25 +0000 | [diff] [blame] | 5496 | { |
Guido van Rossum | a6a1e53 | 1995-01-10 15:36:38 +0000 | [diff] [blame] | 5497 | char *name; |
| 5498 | char *mode = "r"; |
| 5499 | int bufsize = -1; |
Guido van Rossum | 3b06619 | 1991-06-04 19:40:25 +0000 | [diff] [blame] | 5500 | FILE *fp; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 5501 | PyObject *f; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5502 | if (!PyArg_ParseTuple(args, "s|si:popen", &name, &mode, &bufsize)) |
Guido van Rossum | 3b06619 | 1991-06-04 19:40:25 +0000 | [diff] [blame] | 5503 | return NULL; |
Martin v. Löwis | 9ad853b | 2003-10-31 10:01:53 +0000 | [diff] [blame] | 5504 | /* Strip mode of binary or text modifiers */ |
| 5505 | if (strcmp(mode, "rb") == 0 || strcmp(mode, "rt") == 0) |
| 5506 | mode = "r"; |
| 5507 | else if (strcmp(mode, "wb") == 0 || strcmp(mode, "wt") == 0) |
| 5508 | mode = "w"; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 5509 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | ef0a00e | 1992-01-27 16:51:30 +0000 | [diff] [blame] | 5510 | fp = popen(name, mode); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 5511 | Py_END_ALLOW_THREADS |
Guido van Rossum | 3b06619 | 1991-06-04 19:40:25 +0000 | [diff] [blame] | 5512 | if (fp == NULL) |
| 5513 | return posix_error(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 5514 | f = PyFile_FromFile(fp, name, mode, pclose); |
Guido van Rossum | a6a1e53 | 1995-01-10 15:36:38 +0000 | [diff] [blame] | 5515 | if (f != NULL) |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 5516 | PyFile_SetBufSize(f, bufsize); |
Guido van Rossum | a6a1e53 | 1995-01-10 15:36:38 +0000 | [diff] [blame] | 5517 | return f; |
Guido van Rossum | 3b06619 | 1991-06-04 19:40:25 +0000 | [diff] [blame] | 5518 | } |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 5519 | |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 5520 | #endif /* PYOS_??? */ |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 5521 | #endif /* HAVE_POPEN */ |
Guido van Rossum | 3b06619 | 1991-06-04 19:40:25 +0000 | [diff] [blame] | 5522 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 5523 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 5524 | #ifdef HAVE_SETUID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5525 | PyDoc_STRVAR(posix_setuid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 5526 | "setuid(uid)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5527 | Set the current process's user id."); |
| 5528 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 5529 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 5530 | posix_setuid(PyObject *self, PyObject *args) |
Guido van Rossum | a3d78fb | 1993-11-10 09:23:53 +0000 | [diff] [blame] | 5531 | { |
Gregory P. Smith | dd7b630 | 2009-04-06 06:47:37 +0000 | [diff] [blame] | 5532 | long uid_arg; |
| 5533 | uid_t uid; |
| 5534 | if (!PyArg_ParseTuple(args, "l:setuid", &uid_arg)) |
Guido van Rossum | a3d78fb | 1993-11-10 09:23:53 +0000 | [diff] [blame] | 5535 | return NULL; |
Gregory P. Smith | dd7b630 | 2009-04-06 06:47:37 +0000 | [diff] [blame] | 5536 | uid = uid_arg; |
| 5537 | if (uid != uid_arg) { |
| 5538 | PyErr_SetString(PyExc_OverflowError, "user id too big"); |
| 5539 | return NULL; |
| 5540 | } |
Guido van Rossum | a3d78fb | 1993-11-10 09:23:53 +0000 | [diff] [blame] | 5541 | if (setuid(uid) < 0) |
| 5542 | return posix_error(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 5543 | Py_INCREF(Py_None); |
| 5544 | return Py_None; |
Guido van Rossum | a3d78fb | 1993-11-10 09:23:53 +0000 | [diff] [blame] | 5545 | } |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 5546 | #endif /* HAVE_SETUID */ |
Guido van Rossum | a3d78fb | 1993-11-10 09:23:53 +0000 | [diff] [blame] | 5547 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 5548 | |
Andrew M. Kuchling | 8d2f2b2 | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 5549 | #ifdef HAVE_SETEUID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5550 | PyDoc_STRVAR(posix_seteuid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 5551 | "seteuid(uid)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5552 | Set the current process's effective user id."); |
| 5553 | |
Andrew M. Kuchling | 8d2f2b2 | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 5554 | static PyObject * |
| 5555 | posix_seteuid (PyObject *self, PyObject *args) |
| 5556 | { |
Gregory P. Smith | dd7b630 | 2009-04-06 06:47:37 +0000 | [diff] [blame] | 5557 | long euid_arg; |
| 5558 | uid_t euid; |
| 5559 | if (!PyArg_ParseTuple(args, "l", &euid_arg)) |
Andrew M. Kuchling | 8d2f2b2 | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 5560 | return NULL; |
Gregory P. Smith | dd7b630 | 2009-04-06 06:47:37 +0000 | [diff] [blame] | 5561 | euid = euid_arg; |
| 5562 | if (euid != euid_arg) { |
| 5563 | PyErr_SetString(PyExc_OverflowError, "user id too big"); |
| 5564 | return NULL; |
| 5565 | } |
| 5566 | if (seteuid(euid) < 0) { |
Andrew M. Kuchling | 8d2f2b2 | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 5567 | return posix_error(); |
| 5568 | } else { |
| 5569 | Py_INCREF(Py_None); |
| 5570 | return Py_None; |
| 5571 | } |
| 5572 | } |
| 5573 | #endif /* HAVE_SETEUID */ |
| 5574 | |
| 5575 | #ifdef HAVE_SETEGID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5576 | PyDoc_STRVAR(posix_setegid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 5577 | "setegid(gid)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5578 | Set the current process's effective group id."); |
| 5579 | |
Andrew M. Kuchling | 8d2f2b2 | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 5580 | static PyObject * |
| 5581 | posix_setegid (PyObject *self, PyObject *args) |
| 5582 | { |
Gregory P. Smith | dd7b630 | 2009-04-06 06:47:37 +0000 | [diff] [blame] | 5583 | long egid_arg; |
| 5584 | gid_t egid; |
| 5585 | if (!PyArg_ParseTuple(args, "l", &egid_arg)) |
Andrew M. Kuchling | 8d2f2b2 | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 5586 | return NULL; |
Gregory P. Smith | dd7b630 | 2009-04-06 06:47:37 +0000 | [diff] [blame] | 5587 | egid = egid_arg; |
| 5588 | if (egid != egid_arg) { |
| 5589 | PyErr_SetString(PyExc_OverflowError, "group id too big"); |
| 5590 | return NULL; |
| 5591 | } |
| 5592 | if (setegid(egid) < 0) { |
Andrew M. Kuchling | 8d2f2b2 | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 5593 | return posix_error(); |
| 5594 | } else { |
| 5595 | Py_INCREF(Py_None); |
| 5596 | return Py_None; |
| 5597 | } |
| 5598 | } |
| 5599 | #endif /* HAVE_SETEGID */ |
| 5600 | |
| 5601 | #ifdef HAVE_SETREUID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5602 | PyDoc_STRVAR(posix_setreuid__doc__, |
Neal Norwitz | 94f1d71 | 2004-02-16 01:26:34 +0000 | [diff] [blame] | 5603 | "setreuid(ruid, euid)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5604 | Set the current process's real and effective user ids."); |
| 5605 | |
Andrew M. Kuchling | 8d2f2b2 | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 5606 | static PyObject * |
| 5607 | posix_setreuid (PyObject *self, PyObject *args) |
| 5608 | { |
Gregory P. Smith | dd7b630 | 2009-04-06 06:47:37 +0000 | [diff] [blame] | 5609 | long ruid_arg, euid_arg; |
| 5610 | uid_t ruid, euid; |
| 5611 | if (!PyArg_ParseTuple(args, "ll", &ruid_arg, &euid_arg)) |
Andrew M. Kuchling | 8d2f2b2 | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 5612 | return NULL; |
Gregory P. Smith | dd7b630 | 2009-04-06 06:47:37 +0000 | [diff] [blame] | 5613 | ruid = ruid_arg; |
| 5614 | euid = euid_arg; |
| 5615 | if (euid != euid_arg || ruid != ruid_arg) { |
| 5616 | PyErr_SetString(PyExc_OverflowError, "user id too big"); |
| 5617 | return NULL; |
| 5618 | } |
| 5619 | if (setreuid(ruid, euid) < 0) { |
Andrew M. Kuchling | 8d2f2b2 | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 5620 | return posix_error(); |
| 5621 | } else { |
| 5622 | Py_INCREF(Py_None); |
| 5623 | return Py_None; |
| 5624 | } |
| 5625 | } |
| 5626 | #endif /* HAVE_SETREUID */ |
| 5627 | |
| 5628 | #ifdef HAVE_SETREGID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5629 | PyDoc_STRVAR(posix_setregid__doc__, |
Neal Norwitz | 94f1d71 | 2004-02-16 01:26:34 +0000 | [diff] [blame] | 5630 | "setregid(rgid, egid)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5631 | Set the current process's real and effective group ids."); |
| 5632 | |
Andrew M. Kuchling | 8d2f2b2 | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 5633 | static PyObject * |
| 5634 | posix_setregid (PyObject *self, PyObject *args) |
| 5635 | { |
Gregory P. Smith | dd7b630 | 2009-04-06 06:47:37 +0000 | [diff] [blame] | 5636 | long rgid_arg, egid_arg; |
| 5637 | gid_t rgid, egid; |
| 5638 | if (!PyArg_ParseTuple(args, "ll", &rgid_arg, &egid_arg)) |
Andrew M. Kuchling | 8d2f2b2 | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 5639 | return NULL; |
Gregory P. Smith | dd7b630 | 2009-04-06 06:47:37 +0000 | [diff] [blame] | 5640 | rgid = rgid_arg; |
| 5641 | egid = egid_arg; |
| 5642 | if (egid != egid_arg || rgid != rgid_arg) { |
| 5643 | PyErr_SetString(PyExc_OverflowError, "group id too big"); |
| 5644 | return NULL; |
| 5645 | } |
| 5646 | if (setregid(rgid, egid) < 0) { |
Andrew M. Kuchling | 8d2f2b2 | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 5647 | return posix_error(); |
| 5648 | } else { |
| 5649 | Py_INCREF(Py_None); |
| 5650 | return Py_None; |
| 5651 | } |
| 5652 | } |
| 5653 | #endif /* HAVE_SETREGID */ |
| 5654 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 5655 | #ifdef HAVE_SETGID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5656 | PyDoc_STRVAR(posix_setgid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 5657 | "setgid(gid)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5658 | Set the current process's group id."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 5659 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 5660 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 5661 | posix_setgid(PyObject *self, PyObject *args) |
Guido van Rossum | a3d78fb | 1993-11-10 09:23:53 +0000 | [diff] [blame] | 5662 | { |
Gregory P. Smith | dd7b630 | 2009-04-06 06:47:37 +0000 | [diff] [blame] | 5663 | long gid_arg; |
| 5664 | gid_t gid; |
| 5665 | if (!PyArg_ParseTuple(args, "l:setgid", &gid_arg)) |
Guido van Rossum | a3d78fb | 1993-11-10 09:23:53 +0000 | [diff] [blame] | 5666 | return NULL; |
Gregory P. Smith | dd7b630 | 2009-04-06 06:47:37 +0000 | [diff] [blame] | 5667 | gid = gid_arg; |
| 5668 | if (gid != gid_arg) { |
| 5669 | PyErr_SetString(PyExc_OverflowError, "group id too big"); |
| 5670 | return NULL; |
| 5671 | } |
Guido van Rossum | a3d78fb | 1993-11-10 09:23:53 +0000 | [diff] [blame] | 5672 | if (setgid(gid) < 0) |
| 5673 | return posix_error(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 5674 | Py_INCREF(Py_None); |
| 5675 | return Py_None; |
Guido van Rossum | a3d78fb | 1993-11-10 09:23:53 +0000 | [diff] [blame] | 5676 | } |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 5677 | #endif /* HAVE_SETGID */ |
Guido van Rossum | a3d78fb | 1993-11-10 09:23:53 +0000 | [diff] [blame] | 5678 | |
Martin v. Löwis | 61c5edf | 2001-10-18 04:06:00 +0000 | [diff] [blame] | 5679 | #ifdef HAVE_SETGROUPS |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5680 | PyDoc_STRVAR(posix_setgroups__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 5681 | "setgroups(list)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5682 | Set the groups of the current process to list."); |
Martin v. Löwis | 61c5edf | 2001-10-18 04:06:00 +0000 | [diff] [blame] | 5683 | |
| 5684 | static PyObject * |
Georg Brandl | 96a8c39 | 2006-05-29 21:04:52 +0000 | [diff] [blame] | 5685 | posix_setgroups(PyObject *self, PyObject *groups) |
Martin v. Löwis | 61c5edf | 2001-10-18 04:06:00 +0000 | [diff] [blame] | 5686 | { |
Martin v. Löwis | 61c5edf | 2001-10-18 04:06:00 +0000 | [diff] [blame] | 5687 | int i, len; |
| 5688 | gid_t grouplist[MAX_GROUPS]; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 5689 | |
Martin v. Löwis | 61c5edf | 2001-10-18 04:06:00 +0000 | [diff] [blame] | 5690 | if (!PySequence_Check(groups)) { |
| 5691 | PyErr_SetString(PyExc_TypeError, "setgroups argument must be a sequence"); |
| 5692 | return NULL; |
| 5693 | } |
| 5694 | len = PySequence_Size(groups); |
| 5695 | if (len > MAX_GROUPS) { |
| 5696 | PyErr_SetString(PyExc_ValueError, "too many groups"); |
| 5697 | return NULL; |
| 5698 | } |
| 5699 | for(i = 0; i < len; i++) { |
| 5700 | PyObject *elem; |
| 5701 | elem = PySequence_GetItem(groups, i); |
| 5702 | if (!elem) |
| 5703 | return NULL; |
| 5704 | if (!PyInt_Check(elem)) { |
Georg Brandl | a13c244 | 2005-11-22 19:30:31 +0000 | [diff] [blame] | 5705 | if (!PyLong_Check(elem)) { |
| 5706 | PyErr_SetString(PyExc_TypeError, |
| 5707 | "groups must be integers"); |
| 5708 | Py_DECREF(elem); |
| 5709 | return NULL; |
| 5710 | } else { |
| 5711 | unsigned long x = PyLong_AsUnsignedLong(elem); |
| 5712 | if (PyErr_Occurred()) { |
| 5713 | PyErr_SetString(PyExc_TypeError, |
| 5714 | "group id too big"); |
| 5715 | Py_DECREF(elem); |
| 5716 | return NULL; |
| 5717 | } |
| 5718 | grouplist[i] = x; |
Gregory P. Smith | dd7b630 | 2009-04-06 06:47:37 +0000 | [diff] [blame] | 5719 | /* read back to see if it fits in gid_t */ |
Georg Brandl | a13c244 | 2005-11-22 19:30:31 +0000 | [diff] [blame] | 5720 | if (grouplist[i] != x) { |
| 5721 | PyErr_SetString(PyExc_TypeError, |
| 5722 | "group id too big"); |
| 5723 | Py_DECREF(elem); |
| 5724 | return NULL; |
| 5725 | } |
| 5726 | } |
| 5727 | } else { |
| 5728 | long x = PyInt_AsLong(elem); |
| 5729 | grouplist[i] = x; |
| 5730 | if (grouplist[i] != x) { |
| 5731 | PyErr_SetString(PyExc_TypeError, |
| 5732 | "group id too big"); |
| 5733 | Py_DECREF(elem); |
| 5734 | return NULL; |
| 5735 | } |
Martin v. Löwis | 61c5edf | 2001-10-18 04:06:00 +0000 | [diff] [blame] | 5736 | } |
Martin v. Löwis | 61c5edf | 2001-10-18 04:06:00 +0000 | [diff] [blame] | 5737 | Py_DECREF(elem); |
| 5738 | } |
| 5739 | |
| 5740 | if (setgroups(len, grouplist) < 0) |
| 5741 | return posix_error(); |
| 5742 | Py_INCREF(Py_None); |
| 5743 | return Py_None; |
| 5744 | } |
| 5745 | #endif /* HAVE_SETGROUPS */ |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 5746 | |
Neal Norwitz | 6c2f913 | 2006-03-20 07:25:26 +0000 | [diff] [blame] | 5747 | #if defined(HAVE_WAIT3) || defined(HAVE_WAIT4) |
Neal Norwitz | 05a4559 | 2006-03-20 06:30:08 +0000 | [diff] [blame] | 5748 | static PyObject * |
Christian Heimes | d491d71 | 2008-02-01 18:49:26 +0000 | [diff] [blame] | 5749 | wait_helper(pid_t pid, int status, struct rusage *ru) |
Neal Norwitz | 05a4559 | 2006-03-20 06:30:08 +0000 | [diff] [blame] | 5750 | { |
| 5751 | PyObject *result; |
| 5752 | static PyObject *struct_rusage; |
| 5753 | |
| 5754 | if (pid == -1) |
| 5755 | return posix_error(); |
| 5756 | |
| 5757 | if (struct_rusage == NULL) { |
Christian Heimes | 000a074 | 2008-01-03 22:16:32 +0000 | [diff] [blame] | 5758 | PyObject *m = PyImport_ImportModuleNoBlock("resource"); |
Neal Norwitz | 05a4559 | 2006-03-20 06:30:08 +0000 | [diff] [blame] | 5759 | if (m == NULL) |
| 5760 | return NULL; |
| 5761 | struct_rusage = PyObject_GetAttrString(m, "struct_rusage"); |
| 5762 | Py_DECREF(m); |
| 5763 | if (struct_rusage == NULL) |
| 5764 | return NULL; |
| 5765 | } |
| 5766 | |
| 5767 | /* XXX(nnorwitz): Copied (w/mods) from resource.c, there should be only one. */ |
| 5768 | result = PyStructSequence_New((PyTypeObject*) struct_rusage); |
| 5769 | if (!result) |
| 5770 | return NULL; |
| 5771 | |
| 5772 | #ifndef doubletime |
| 5773 | #define doubletime(TV) ((double)(TV).tv_sec + (TV).tv_usec * 0.000001) |
| 5774 | #endif |
| 5775 | |
| 5776 | PyStructSequence_SET_ITEM(result, 0, |
| 5777 | PyFloat_FromDouble(doubletime(ru->ru_utime))); |
| 5778 | PyStructSequence_SET_ITEM(result, 1, |
| 5779 | PyFloat_FromDouble(doubletime(ru->ru_stime))); |
| 5780 | #define SET_INT(result, index, value)\ |
| 5781 | PyStructSequence_SET_ITEM(result, index, PyInt_FromLong(value)) |
| 5782 | SET_INT(result, 2, ru->ru_maxrss); |
| 5783 | SET_INT(result, 3, ru->ru_ixrss); |
| 5784 | SET_INT(result, 4, ru->ru_idrss); |
| 5785 | SET_INT(result, 5, ru->ru_isrss); |
| 5786 | SET_INT(result, 6, ru->ru_minflt); |
| 5787 | SET_INT(result, 7, ru->ru_majflt); |
| 5788 | SET_INT(result, 8, ru->ru_nswap); |
| 5789 | SET_INT(result, 9, ru->ru_inblock); |
| 5790 | SET_INT(result, 10, ru->ru_oublock); |
| 5791 | SET_INT(result, 11, ru->ru_msgsnd); |
| 5792 | SET_INT(result, 12, ru->ru_msgrcv); |
| 5793 | SET_INT(result, 13, ru->ru_nsignals); |
| 5794 | SET_INT(result, 14, ru->ru_nvcsw); |
| 5795 | SET_INT(result, 15, ru->ru_nivcsw); |
| 5796 | #undef SET_INT |
| 5797 | |
| 5798 | if (PyErr_Occurred()) { |
| 5799 | Py_DECREF(result); |
| 5800 | return NULL; |
| 5801 | } |
| 5802 | |
Antoine Pitrou | 794b3fc | 2009-05-23 15:47:13 +0000 | [diff] [blame] | 5803 | return Py_BuildValue("NiN", PyLong_FromPid(pid), status, result); |
Neal Norwitz | 05a4559 | 2006-03-20 06:30:08 +0000 | [diff] [blame] | 5804 | } |
Neal Norwitz | 6c2f913 | 2006-03-20 07:25:26 +0000 | [diff] [blame] | 5805 | #endif /* HAVE_WAIT3 || HAVE_WAIT4 */ |
Neal Norwitz | 05a4559 | 2006-03-20 06:30:08 +0000 | [diff] [blame] | 5806 | |
| 5807 | #ifdef HAVE_WAIT3 |
| 5808 | PyDoc_STRVAR(posix_wait3__doc__, |
| 5809 | "wait3(options) -> (pid, status, rusage)\n\n\ |
| 5810 | Wait for completion of a child process."); |
| 5811 | |
| 5812 | static PyObject * |
| 5813 | posix_wait3(PyObject *self, PyObject *args) |
| 5814 | { |
Christian Heimes | d491d71 | 2008-02-01 18:49:26 +0000 | [diff] [blame] | 5815 | pid_t pid; |
| 5816 | int options; |
Neal Norwitz | 05a4559 | 2006-03-20 06:30:08 +0000 | [diff] [blame] | 5817 | struct rusage ru; |
Neal Norwitz | d5a3754 | 2006-03-20 06:48:34 +0000 | [diff] [blame] | 5818 | WAIT_TYPE status; |
| 5819 | WAIT_STATUS_INT(status) = 0; |
Neal Norwitz | 05a4559 | 2006-03-20 06:30:08 +0000 | [diff] [blame] | 5820 | |
| 5821 | if (!PyArg_ParseTuple(args, "i:wait3", &options)) |
| 5822 | return NULL; |
| 5823 | |
| 5824 | Py_BEGIN_ALLOW_THREADS |
| 5825 | pid = wait3(&status, options, &ru); |
| 5826 | Py_END_ALLOW_THREADS |
| 5827 | |
Neal Norwitz | d5a3754 | 2006-03-20 06:48:34 +0000 | [diff] [blame] | 5828 | return wait_helper(pid, WAIT_STATUS_INT(status), &ru); |
Neal Norwitz | 05a4559 | 2006-03-20 06:30:08 +0000 | [diff] [blame] | 5829 | } |
| 5830 | #endif /* HAVE_WAIT3 */ |
| 5831 | |
| 5832 | #ifdef HAVE_WAIT4 |
| 5833 | PyDoc_STRVAR(posix_wait4__doc__, |
| 5834 | "wait4(pid, options) -> (pid, status, rusage)\n\n\ |
| 5835 | Wait for completion of a given child process."); |
| 5836 | |
| 5837 | static PyObject * |
| 5838 | posix_wait4(PyObject *self, PyObject *args) |
| 5839 | { |
Christian Heimes | d491d71 | 2008-02-01 18:49:26 +0000 | [diff] [blame] | 5840 | pid_t pid; |
| 5841 | int options; |
Neal Norwitz | 05a4559 | 2006-03-20 06:30:08 +0000 | [diff] [blame] | 5842 | struct rusage ru; |
Neal Norwitz | d5a3754 | 2006-03-20 06:48:34 +0000 | [diff] [blame] | 5843 | WAIT_TYPE status; |
| 5844 | WAIT_STATUS_INT(status) = 0; |
Neal Norwitz | 05a4559 | 2006-03-20 06:30:08 +0000 | [diff] [blame] | 5845 | |
Antoine Pitrou | 794b3fc | 2009-05-23 15:47:13 +0000 | [diff] [blame] | 5846 | if (!PyArg_ParseTuple(args, PARSE_PID "i:wait4", &pid, &options)) |
Neal Norwitz | 05a4559 | 2006-03-20 06:30:08 +0000 | [diff] [blame] | 5847 | return NULL; |
| 5848 | |
| 5849 | Py_BEGIN_ALLOW_THREADS |
| 5850 | pid = wait4(pid, &status, options, &ru); |
| 5851 | Py_END_ALLOW_THREADS |
| 5852 | |
Neal Norwitz | d5a3754 | 2006-03-20 06:48:34 +0000 | [diff] [blame] | 5853 | return wait_helper(pid, WAIT_STATUS_INT(status), &ru); |
Neal Norwitz | 05a4559 | 2006-03-20 06:30:08 +0000 | [diff] [blame] | 5854 | } |
| 5855 | #endif /* HAVE_WAIT4 */ |
| 5856 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 5857 | #ifdef HAVE_WAITPID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5858 | PyDoc_STRVAR(posix_waitpid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 5859 | "waitpid(pid, options) -> (pid, status)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5860 | Wait for completion of a given child process."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 5861 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 5862 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 5863 | posix_waitpid(PyObject *self, PyObject *args) |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 5864 | { |
Christian Heimes | d491d71 | 2008-02-01 18:49:26 +0000 | [diff] [blame] | 5865 | pid_t pid; |
| 5866 | int options; |
Neal Norwitz | d5a3754 | 2006-03-20 06:48:34 +0000 | [diff] [blame] | 5867 | WAIT_TYPE status; |
| 5868 | WAIT_STATUS_INT(status) = 0; |
Guido van Rossum | 54ecc3d | 1999-01-27 17:53:11 +0000 | [diff] [blame] | 5869 | |
Antoine Pitrou | 794b3fc | 2009-05-23 15:47:13 +0000 | [diff] [blame] | 5870 | if (!PyArg_ParseTuple(args, PARSE_PID "i:waitpid", &pid, &options)) |
Guido van Rossum | 21803b8 | 1992-08-09 12:55:27 +0000 | [diff] [blame] | 5871 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 5872 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | e6a3aa6 | 1999-02-01 16:15:30 +0000 | [diff] [blame] | 5873 | pid = waitpid(pid, &status, options); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 5874 | Py_END_ALLOW_THREADS |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 5875 | if (pid == -1) |
| 5876 | return posix_error(); |
Neal Norwitz | d5a3754 | 2006-03-20 06:48:34 +0000 | [diff] [blame] | 5877 | |
Antoine Pitrou | 794b3fc | 2009-05-23 15:47:13 +0000 | [diff] [blame] | 5878 | return Py_BuildValue("Ni", PyLong_FromPid(pid), WAIT_STATUS_INT(status)); |
Guido van Rossum | 21803b8 | 1992-08-09 12:55:27 +0000 | [diff] [blame] | 5879 | } |
| 5880 | |
Tim Peters | ab034fa | 2002-02-01 11:27:43 +0000 | [diff] [blame] | 5881 | #elif defined(HAVE_CWAIT) |
| 5882 | |
| 5883 | /* 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] | 5884 | PyDoc_STRVAR(posix_waitpid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 5885 | "waitpid(pid, options) -> (pid, status << 8)\n\n" |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5886 | "Wait for completion of a given process. options is ignored on Windows."); |
Tim Peters | ab034fa | 2002-02-01 11:27:43 +0000 | [diff] [blame] | 5887 | |
| 5888 | static PyObject * |
| 5889 | posix_waitpid(PyObject *self, PyObject *args) |
| 5890 | { |
Martin v. Löwis | a43190b | 2006-05-22 09:15:18 +0000 | [diff] [blame] | 5891 | Py_intptr_t pid; |
Martin v. Löwis | 18e1655 | 2006-02-15 17:27:45 +0000 | [diff] [blame] | 5892 | int status, options; |
Tim Peters | ab034fa | 2002-02-01 11:27:43 +0000 | [diff] [blame] | 5893 | |
Antoine Pitrou | 794b3fc | 2009-05-23 15:47:13 +0000 | [diff] [blame] | 5894 | if (!PyArg_ParseTuple(args, PARSE_PID "i:waitpid", &pid, &options)) |
Tim Peters | ab034fa | 2002-02-01 11:27:43 +0000 | [diff] [blame] | 5895 | return NULL; |
| 5896 | Py_BEGIN_ALLOW_THREADS |
| 5897 | pid = _cwait(&status, pid, options); |
| 5898 | Py_END_ALLOW_THREADS |
| 5899 | if (pid == -1) |
| 5900 | return posix_error(); |
Neal Norwitz | d5a3754 | 2006-03-20 06:48:34 +0000 | [diff] [blame] | 5901 | |
| 5902 | /* shift the status left a byte so this is more like the POSIX waitpid */ |
Antoine Pitrou | 794b3fc | 2009-05-23 15:47:13 +0000 | [diff] [blame] | 5903 | return Py_BuildValue("Ni", PyLong_FromPid(pid), status << 8); |
Tim Peters | ab034fa | 2002-02-01 11:27:43 +0000 | [diff] [blame] | 5904 | } |
| 5905 | #endif /* HAVE_WAITPID || HAVE_CWAIT */ |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 5906 | |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 5907 | #ifdef HAVE_WAIT |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5908 | PyDoc_STRVAR(posix_wait__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 5909 | "wait() -> (pid, status)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5910 | Wait for completion of a child process."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 5911 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 5912 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 5913 | posix_wait(PyObject *self, PyObject *noargs) |
Guido van Rossum | 21803b8 | 1992-08-09 12:55:27 +0000 | [diff] [blame] | 5914 | { |
Christian Heimes | d491d71 | 2008-02-01 18:49:26 +0000 | [diff] [blame] | 5915 | pid_t pid; |
Neal Norwitz | d5a3754 | 2006-03-20 06:48:34 +0000 | [diff] [blame] | 5916 | WAIT_TYPE status; |
| 5917 | WAIT_STATUS_INT(status) = 0; |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 5918 | |
Guido van Rossum | 54ecc3d | 1999-01-27 17:53:11 +0000 | [diff] [blame] | 5919 | Py_BEGIN_ALLOW_THREADS |
| 5920 | pid = wait(&status); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 5921 | Py_END_ALLOW_THREADS |
Guido van Rossum | 21803b8 | 1992-08-09 12:55:27 +0000 | [diff] [blame] | 5922 | if (pid == -1) |
| 5923 | return posix_error(); |
Neal Norwitz | d5a3754 | 2006-03-20 06:48:34 +0000 | [diff] [blame] | 5924 | |
Antoine Pitrou | 794b3fc | 2009-05-23 15:47:13 +0000 | [diff] [blame] | 5925 | return Py_BuildValue("Ni", PyLong_FromPid(pid), WAIT_STATUS_INT(status)); |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 5926 | } |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 5927 | #endif |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 5928 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 5929 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5930 | PyDoc_STRVAR(posix_lstat__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 5931 | "lstat(path) -> stat result\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5932 | Like stat(path), but do not follow symbolic links."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 5933 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 5934 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 5935 | posix_lstat(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 5936 | { |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 5937 | #ifdef HAVE_LSTAT |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 5938 | return posix_do_stat(self, args, "et:lstat", lstat, NULL, NULL); |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 5939 | #else /* !HAVE_LSTAT */ |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 5940 | #ifdef MS_WINDOWS |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 5941 | 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] | 5942 | #else |
| 5943 | return posix_do_stat(self, args, "et:lstat", STAT, NULL, NULL); |
| 5944 | #endif |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 5945 | #endif /* !HAVE_LSTAT */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 5946 | } |
| 5947 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 5948 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 5949 | #ifdef HAVE_READLINK |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5950 | PyDoc_STRVAR(posix_readlink__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 5951 | "readlink(path) -> path\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5952 | 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] | 5953 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 5954 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 5955 | posix_readlink(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 5956 | { |
Ronald Oussoren | 10168f2 | 2006-10-22 10:45:18 +0000 | [diff] [blame] | 5957 | PyObject* v; |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 5958 | char buf[MAXPATHLEN]; |
Guido van Rossum | ef0a00e | 1992-01-27 16:51:30 +0000 | [diff] [blame] | 5959 | char *path; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 5960 | int n; |
Ronald Oussoren | 10168f2 | 2006-10-22 10:45:18 +0000 | [diff] [blame] | 5961 | #ifdef Py_USING_UNICODE |
| 5962 | int arg_is_unicode = 0; |
| 5963 | #endif |
| 5964 | |
| 5965 | if (!PyArg_ParseTuple(args, "et:readlink", |
| 5966 | Py_FileSystemDefaultEncoding, &path)) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 5967 | return NULL; |
Ronald Oussoren | 10168f2 | 2006-10-22 10:45:18 +0000 | [diff] [blame] | 5968 | #ifdef Py_USING_UNICODE |
| 5969 | v = PySequence_GetItem(args, 0); |
Neal Norwitz | 91a5721 | 2007-08-12 17:11:13 +0000 | [diff] [blame] | 5970 | if (v == NULL) { |
| 5971 | PyMem_Free(path); |
| 5972 | return NULL; |
| 5973 | } |
Ronald Oussoren | 10168f2 | 2006-10-22 10:45:18 +0000 | [diff] [blame] | 5974 | |
| 5975 | if (PyUnicode_Check(v)) { |
| 5976 | arg_is_unicode = 1; |
| 5977 | } |
| 5978 | Py_DECREF(v); |
| 5979 | #endif |
| 5980 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 5981 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | 50e61dc | 1992-03-27 17:22:31 +0000 | [diff] [blame] | 5982 | n = readlink(path, buf, (int) sizeof buf); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 5983 | Py_END_ALLOW_THREADS |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 5984 | if (n < 0) |
Neal Norwitz | 91a5721 | 2007-08-12 17:11:13 +0000 | [diff] [blame] | 5985 | return posix_error_with_allocated_filename(path); |
Ronald Oussoren | 10168f2 | 2006-10-22 10:45:18 +0000 | [diff] [blame] | 5986 | |
Neal Norwitz | 91a5721 | 2007-08-12 17:11:13 +0000 | [diff] [blame] | 5987 | PyMem_Free(path); |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 5988 | v = PyString_FromStringAndSize(buf, n); |
Ronald Oussoren | 10168f2 | 2006-10-22 10:45:18 +0000 | [diff] [blame] | 5989 | #ifdef Py_USING_UNICODE |
| 5990 | if (arg_is_unicode) { |
| 5991 | PyObject *w; |
| 5992 | |
| 5993 | w = PyUnicode_FromEncodedObject(v, |
| 5994 | Py_FileSystemDefaultEncoding, |
| 5995 | "strict"); |
| 5996 | if (w != NULL) { |
| 5997 | Py_DECREF(v); |
| 5998 | v = w; |
| 5999 | } |
| 6000 | else { |
| 6001 | /* fall back to the original byte string, as |
| 6002 | discussed in patch #683592 */ |
| 6003 | PyErr_Clear(); |
| 6004 | } |
| 6005 | } |
| 6006 | #endif |
| 6007 | return v; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 6008 | } |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 6009 | #endif /* HAVE_READLINK */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 6010 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6011 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 6012 | #ifdef HAVE_SYMLINK |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6013 | PyDoc_STRVAR(posix_symlink__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6014 | "symlink(src, dst)\n\n\ |
Brett Cannon | 807413d | 2003-06-11 00:18:09 +0000 | [diff] [blame] | 6015 | Create a symbolic link pointing to src named dst."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6016 | |
Guido van Rossum | bfaf3d6 | 1997-12-29 20:02:27 +0000 | [diff] [blame] | 6017 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6018 | posix_symlink(PyObject *self, PyObject *args) |
Guido van Rossum | bfaf3d6 | 1997-12-29 20:02:27 +0000 | [diff] [blame] | 6019 | { |
Martin v. Löwis | 4fc2bda | 2006-05-04 12:04:27 +0000 | [diff] [blame] | 6020 | return posix_2str(args, "etet:symlink", symlink); |
Guido van Rossum | bfaf3d6 | 1997-12-29 20:02:27 +0000 | [diff] [blame] | 6021 | } |
| 6022 | #endif /* HAVE_SYMLINK */ |
| 6023 | |
| 6024 | |
| 6025 | #ifdef HAVE_TIMES |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 6026 | #if defined(PYCC_VACPP) && defined(PYOS_OS2) |
| 6027 | static long |
Thomas Wouters | f3f33dc | 2000-07-21 06:00:07 +0000 | [diff] [blame] | 6028 | system_uptime(void) |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 6029 | { |
| 6030 | ULONG value = 0; |
| 6031 | |
| 6032 | Py_BEGIN_ALLOW_THREADS |
| 6033 | DosQuerySysInfo(QSV_MS_COUNT, QSV_MS_COUNT, &value, sizeof(value)); |
| 6034 | Py_END_ALLOW_THREADS |
| 6035 | |
| 6036 | return value; |
| 6037 | } |
| 6038 | |
| 6039 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 6040 | posix_times(PyObject *self, PyObject *noargs) |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 6041 | { |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 6042 | /* Currently Only Uptime is Provided -- Others Later */ |
| 6043 | return Py_BuildValue("ddddd", |
| 6044 | (double)0 /* t.tms_utime / HZ */, |
| 6045 | (double)0 /* t.tms_stime / HZ */, |
| 6046 | (double)0 /* t.tms_cutime / HZ */, |
| 6047 | (double)0 /* t.tms_cstime / HZ */, |
| 6048 | (double)system_uptime() / 1000); |
| 6049 | } |
Guido van Rossum | bfaf3d6 | 1997-12-29 20:02:27 +0000 | [diff] [blame] | 6050 | #else /* not OS2 */ |
Martin v. Löwis | 3f15ae3 | 2008-12-29 18:20:48 +0000 | [diff] [blame] | 6051 | #define NEED_TICKS_PER_SECOND |
| 6052 | static long ticks_per_second = -1; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6053 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 6054 | posix_times(PyObject *self, PyObject *noargs) |
Guido van Rossum | 22db57e | 1992-04-05 14:25:30 +0000 | [diff] [blame] | 6055 | { |
| 6056 | struct tms t; |
| 6057 | clock_t c; |
Guido van Rossum | 22db57e | 1992-04-05 14:25:30 +0000 | [diff] [blame] | 6058 | errno = 0; |
| 6059 | c = times(&t); |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6060 | if (c == (clock_t) -1) |
| 6061 | return posix_error(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6062 | return Py_BuildValue("ddddd", |
Martin v. Löwis | 3f15ae3 | 2008-12-29 18:20:48 +0000 | [diff] [blame] | 6063 | (double)t.tms_utime / ticks_per_second, |
| 6064 | (double)t.tms_stime / ticks_per_second, |
| 6065 | (double)t.tms_cutime / ticks_per_second, |
| 6066 | (double)t.tms_cstime / ticks_per_second, |
| 6067 | (double)c / ticks_per_second); |
Guido van Rossum | 22db57e | 1992-04-05 14:25:30 +0000 | [diff] [blame] | 6068 | } |
Guido van Rossum | bfaf3d6 | 1997-12-29 20:02:27 +0000 | [diff] [blame] | 6069 | #endif /* not OS2 */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 6070 | #endif /* HAVE_TIMES */ |
Guido van Rossum | bfaf3d6 | 1997-12-29 20:02:27 +0000 | [diff] [blame] | 6071 | |
| 6072 | |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 6073 | #ifdef MS_WINDOWS |
Guido van Rossum | 14ed0b2 | 1994-09-29 09:50:09 +0000 | [diff] [blame] | 6074 | #define HAVE_TIMES /* so the method table will pick it up */ |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6075 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 6076 | posix_times(PyObject *self, PyObject *noargs) |
Guido van Rossum | 14ed0b2 | 1994-09-29 09:50:09 +0000 | [diff] [blame] | 6077 | { |
| 6078 | FILETIME create, exit, kernel, user; |
| 6079 | HANDLE hProc; |
Guido van Rossum | 14ed0b2 | 1994-09-29 09:50:09 +0000 | [diff] [blame] | 6080 | hProc = GetCurrentProcess(); |
Guido van Rossum | b8c3cbd | 1999-02-16 14:37:28 +0000 | [diff] [blame] | 6081 | GetProcessTimes(hProc, &create, &exit, &kernel, &user); |
| 6082 | /* The fields of a FILETIME structure are the hi and lo part |
| 6083 | of a 64-bit value expressed in 100 nanosecond units. |
| 6084 | 1e7 is one second in such units; 1e-7 the inverse. |
| 6085 | 429.4967296 is 2**32 / 1e7 or 2**32 * 1e-7. |
| 6086 | */ |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6087 | return Py_BuildValue( |
| 6088 | "ddddd", |
Guido van Rossum | b8c3cbd | 1999-02-16 14:37:28 +0000 | [diff] [blame] | 6089 | (double)(user.dwHighDateTime*429.4967296 + |
| 6090 | user.dwLowDateTime*1e-7), |
Georg Brandl | 0a40ffb | 2008-02-13 07:20:22 +0000 | [diff] [blame] | 6091 | (double)(kernel.dwHighDateTime*429.4967296 + |
| 6092 | kernel.dwLowDateTime*1e-7), |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6093 | (double)0, |
| 6094 | (double)0, |
| 6095 | (double)0); |
Guido van Rossum | 14ed0b2 | 1994-09-29 09:50:09 +0000 | [diff] [blame] | 6096 | } |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 6097 | #endif /* MS_WINDOWS */ |
Guido van Rossum | bfaf3d6 | 1997-12-29 20:02:27 +0000 | [diff] [blame] | 6098 | |
| 6099 | #ifdef HAVE_TIMES |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6100 | PyDoc_STRVAR(posix_times__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6101 | "times() -> (utime, stime, cutime, cstime, elapsed_time)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6102 | Return a tuple of floating point numbers indicating process times."); |
Guido van Rossum | bfaf3d6 | 1997-12-29 20:02:27 +0000 | [diff] [blame] | 6103 | #endif |
Guido van Rossum | 22db57e | 1992-04-05 14:25:30 +0000 | [diff] [blame] | 6104 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6105 | |
Martin v. Löwis | 49ee14d | 2003-11-10 06:35:36 +0000 | [diff] [blame] | 6106 | #ifdef HAVE_GETSID |
| 6107 | PyDoc_STRVAR(posix_getsid__doc__, |
| 6108 | "getsid(pid) -> sid\n\n\ |
| 6109 | Call the system call getsid()."); |
| 6110 | |
| 6111 | static PyObject * |
| 6112 | posix_getsid(PyObject *self, PyObject *args) |
| 6113 | { |
Christian Heimes | d491d71 | 2008-02-01 18:49:26 +0000 | [diff] [blame] | 6114 | pid_t pid; |
| 6115 | int sid; |
Antoine Pitrou | 794b3fc | 2009-05-23 15:47:13 +0000 | [diff] [blame] | 6116 | if (!PyArg_ParseTuple(args, PARSE_PID ":getsid", &pid)) |
Martin v. Löwis | 49ee14d | 2003-11-10 06:35:36 +0000 | [diff] [blame] | 6117 | return NULL; |
| 6118 | sid = getsid(pid); |
| 6119 | if (sid < 0) |
| 6120 | return posix_error(); |
| 6121 | return PyInt_FromLong((long)sid); |
| 6122 | } |
| 6123 | #endif /* HAVE_GETSID */ |
| 6124 | |
| 6125 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 6126 | #ifdef HAVE_SETSID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6127 | PyDoc_STRVAR(posix_setsid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6128 | "setsid()\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6129 | Call the system call setsid()."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6130 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6131 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 6132 | posix_setsid(PyObject *self, PyObject *noargs) |
Guido van Rossum | c2670a0 | 1992-09-13 20:07:29 +0000 | [diff] [blame] | 6133 | { |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6134 | if (setsid() < 0) |
| 6135 | return posix_error(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6136 | Py_INCREF(Py_None); |
| 6137 | return Py_None; |
Guido van Rossum | c2670a0 | 1992-09-13 20:07:29 +0000 | [diff] [blame] | 6138 | } |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 6139 | #endif /* HAVE_SETSID */ |
Guido van Rossum | c2670a0 | 1992-09-13 20:07:29 +0000 | [diff] [blame] | 6140 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 6141 | #ifdef HAVE_SETPGID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6142 | PyDoc_STRVAR(posix_setpgid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6143 | "setpgid(pid, pgrp)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6144 | Call the system call setpgid()."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6145 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6146 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6147 | posix_setpgid(PyObject *self, PyObject *args) |
Guido van Rossum | c2670a0 | 1992-09-13 20:07:29 +0000 | [diff] [blame] | 6148 | { |
Christian Heimes | d491d71 | 2008-02-01 18:49:26 +0000 | [diff] [blame] | 6149 | pid_t pid; |
| 6150 | int pgrp; |
Antoine Pitrou | 794b3fc | 2009-05-23 15:47:13 +0000 | [diff] [blame] | 6151 | if (!PyArg_ParseTuple(args, PARSE_PID "i:setpgid", &pid, &pgrp)) |
Guido van Rossum | c2670a0 | 1992-09-13 20:07:29 +0000 | [diff] [blame] | 6152 | return NULL; |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6153 | if (setpgid(pid, pgrp) < 0) |
| 6154 | return posix_error(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6155 | Py_INCREF(Py_None); |
| 6156 | return Py_None; |
Guido van Rossum | c2670a0 | 1992-09-13 20:07:29 +0000 | [diff] [blame] | 6157 | } |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 6158 | #endif /* HAVE_SETPGID */ |
Guido van Rossum | c2670a0 | 1992-09-13 20:07:29 +0000 | [diff] [blame] | 6159 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6160 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 6161 | #ifdef HAVE_TCGETPGRP |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6162 | PyDoc_STRVAR(posix_tcgetpgrp__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6163 | "tcgetpgrp(fd) -> pgid\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6164 | 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] | 6165 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6166 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6167 | posix_tcgetpgrp(PyObject *self, PyObject *args) |
Guido van Rossum | 7066dd7 | 1992-09-17 17:54:56 +0000 | [diff] [blame] | 6168 | { |
Christian Heimes | e6a8074 | 2008-02-03 19:51:13 +0000 | [diff] [blame] | 6169 | int fd; |
| 6170 | pid_t pgid; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 6171 | if (!PyArg_ParseTuple(args, "i:tcgetpgrp", &fd)) |
Guido van Rossum | 7066dd7 | 1992-09-17 17:54:56 +0000 | [diff] [blame] | 6172 | return NULL; |
| 6173 | pgid = tcgetpgrp(fd); |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6174 | if (pgid < 0) |
| 6175 | return posix_error(); |
Antoine Pitrou | 794b3fc | 2009-05-23 15:47:13 +0000 | [diff] [blame] | 6176 | return PyLong_FromPid(pgid); |
Guido van Rossum | 7066dd7 | 1992-09-17 17:54:56 +0000 | [diff] [blame] | 6177 | } |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 6178 | #endif /* HAVE_TCGETPGRP */ |
Guido van Rossum | 7066dd7 | 1992-09-17 17:54:56 +0000 | [diff] [blame] | 6179 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6180 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 6181 | #ifdef HAVE_TCSETPGRP |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6182 | PyDoc_STRVAR(posix_tcsetpgrp__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6183 | "tcsetpgrp(fd, pgid)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6184 | 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] | 6185 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6186 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6187 | posix_tcsetpgrp(PyObject *self, PyObject *args) |
Guido van Rossum | 7066dd7 | 1992-09-17 17:54:56 +0000 | [diff] [blame] | 6188 | { |
Antoine Pitrou | cd1376d | 2009-05-23 16:19:24 +0000 | [diff] [blame^] | 6189 | int fd; |
| 6190 | pid_t pgid; |
| 6191 | if (!PyArg_ParseTuple(args, "i" PARSE_PID ":tcsetpgrp", &fd, &pgid)) |
Guido van Rossum | 7066dd7 | 1992-09-17 17:54:56 +0000 | [diff] [blame] | 6192 | return NULL; |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6193 | if (tcsetpgrp(fd, pgid) < 0) |
| 6194 | return posix_error(); |
Barry Warsaw | 43d68b8 | 1996-12-19 22:10:44 +0000 | [diff] [blame] | 6195 | Py_INCREF(Py_None); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6196 | return Py_None; |
Guido van Rossum | 7066dd7 | 1992-09-17 17:54:56 +0000 | [diff] [blame] | 6197 | } |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 6198 | #endif /* HAVE_TCSETPGRP */ |
Guido van Rossum | 22db57e | 1992-04-05 14:25:30 +0000 | [diff] [blame] | 6199 | |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6200 | /* Functions acting on file descriptors */ |
| 6201 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6202 | PyDoc_STRVAR(posix_open__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6203 | "open(filename, flag [, mode=0777]) -> fd\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6204 | Open a file (for low level IO)."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6205 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6206 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6207 | posix_open(PyObject *self, PyObject *args) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6208 | { |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 6209 | char *file = NULL; |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6210 | int flag; |
| 6211 | int mode = 0777; |
| 6212 | int fd; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 6213 | |
| 6214 | #ifdef MS_WINDOWS |
| 6215 | if (unicode_file_names()) { |
| 6216 | PyUnicodeObject *po; |
| 6217 | if (PyArg_ParseTuple(args, "Ui|i:mkdir", &po, &flag, &mode)) { |
| 6218 | Py_BEGIN_ALLOW_THREADS |
| 6219 | /* PyUnicode_AS_UNICODE OK without thread |
| 6220 | lock as it is a simple dereference. */ |
| 6221 | fd = _wopen(PyUnicode_AS_UNICODE(po), flag, mode); |
| 6222 | Py_END_ALLOW_THREADS |
| 6223 | if (fd < 0) |
| 6224 | return posix_error(); |
| 6225 | return PyInt_FromLong((long)fd); |
| 6226 | } |
| 6227 | /* Drop the argument parsing error as narrow strings |
| 6228 | are also valid. */ |
| 6229 | PyErr_Clear(); |
| 6230 | } |
| 6231 | #endif |
| 6232 | |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 6233 | if (!PyArg_ParseTuple(args, "eti|i", |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 6234 | Py_FileSystemDefaultEncoding, &file, |
| 6235 | &flag, &mode)) |
Barry Warsaw | 43d68b8 | 1996-12-19 22:10:44 +0000 | [diff] [blame] | 6236 | return NULL; |
| 6237 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6238 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6239 | fd = open(file, flag, mode); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6240 | Py_END_ALLOW_THREADS |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6241 | if (fd < 0) |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 6242 | return posix_error_with_allocated_filename(file); |
| 6243 | PyMem_Free(file); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6244 | return PyInt_FromLong((long)fd); |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6245 | } |
| 6246 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6247 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6248 | PyDoc_STRVAR(posix_close__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6249 | "close(fd)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6250 | Close a file descriptor (for low level IO)."); |
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_close(PyObject *self, PyObject *args) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6254 | { |
| 6255 | int fd, res; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 6256 | if (!PyArg_ParseTuple(args, "i:close", &fd)) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6257 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6258 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6259 | res = close(fd); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6260 | Py_END_ALLOW_THREADS |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6261 | if (res < 0) |
| 6262 | return posix_error(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6263 | Py_INCREF(Py_None); |
| 6264 | return Py_None; |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6265 | } |
| 6266 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6267 | |
Georg Brandl | 309501a | 2008-01-19 20:22:13 +0000 | [diff] [blame] | 6268 | PyDoc_STRVAR(posix_closerange__doc__, |
| 6269 | "closerange(fd_low, fd_high)\n\n\ |
| 6270 | Closes all file descriptors in [fd_low, fd_high), ignoring errors."); |
| 6271 | |
| 6272 | static PyObject * |
| 6273 | posix_closerange(PyObject *self, PyObject *args) |
| 6274 | { |
| 6275 | int fd_from, fd_to, i; |
| 6276 | if (!PyArg_ParseTuple(args, "ii:closerange", &fd_from, &fd_to)) |
| 6277 | return NULL; |
| 6278 | Py_BEGIN_ALLOW_THREADS |
| 6279 | for (i = fd_from; i < fd_to; i++) |
| 6280 | close(i); |
| 6281 | Py_END_ALLOW_THREADS |
| 6282 | Py_RETURN_NONE; |
| 6283 | } |
| 6284 | |
| 6285 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6286 | PyDoc_STRVAR(posix_dup__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6287 | "dup(fd) -> fd2\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6288 | Return a duplicate of a file descriptor."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6289 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6290 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6291 | posix_dup(PyObject *self, PyObject *args) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6292 | { |
| 6293 | int fd; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 6294 | if (!PyArg_ParseTuple(args, "i:dup", &fd)) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6295 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6296 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6297 | fd = dup(fd); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6298 | Py_END_ALLOW_THREADS |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6299 | if (fd < 0) |
| 6300 | return posix_error(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6301 | return PyInt_FromLong((long)fd); |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6302 | } |
| 6303 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6304 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6305 | PyDoc_STRVAR(posix_dup2__doc__, |
Andrew M. Kuchling | 8135fd5 | 2004-01-16 13:18:42 +0000 | [diff] [blame] | 6306 | "dup2(old_fd, new_fd)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6307 | Duplicate file descriptor."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6308 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6309 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6310 | posix_dup2(PyObject *self, PyObject *args) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6311 | { |
| 6312 | int fd, fd2, res; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 6313 | if (!PyArg_ParseTuple(args, "ii:dup2", &fd, &fd2)) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6314 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6315 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6316 | res = dup2(fd, fd2); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6317 | Py_END_ALLOW_THREADS |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6318 | if (res < 0) |
| 6319 | return posix_error(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6320 | Py_INCREF(Py_None); |
| 6321 | return Py_None; |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6322 | } |
| 6323 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6324 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6325 | PyDoc_STRVAR(posix_lseek__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6326 | "lseek(fd, pos, how) -> newpos\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6327 | Set the current position of a file descriptor."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6328 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6329 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6330 | posix_lseek(PyObject *self, PyObject *args) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6331 | { |
| 6332 | int fd, how; |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 6333 | #if defined(MS_WIN64) || defined(MS_WINDOWS) |
Martin v. Löwis | b9a0f91 | 2003-03-29 10:06:18 +0000 | [diff] [blame] | 6334 | PY_LONG_LONG pos, res; |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 6335 | #else |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 6336 | off_t pos, res; |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 6337 | #endif |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 6338 | PyObject *posobj; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 6339 | if (!PyArg_ParseTuple(args, "iOi:lseek", &fd, &posobj, &how)) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6340 | return NULL; |
| 6341 | #ifdef SEEK_SET |
| 6342 | /* Turn 0, 1, 2 into SEEK_{SET,CUR,END} */ |
| 6343 | switch (how) { |
| 6344 | case 0: how = SEEK_SET; break; |
| 6345 | case 1: how = SEEK_CUR; break; |
| 6346 | case 2: how = SEEK_END; break; |
| 6347 | } |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 6348 | #endif /* SEEK_END */ |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 6349 | |
| 6350 | #if !defined(HAVE_LARGEFILE_SUPPORT) |
| 6351 | pos = PyInt_AsLong(posobj); |
| 6352 | #else |
| 6353 | pos = PyLong_Check(posobj) ? |
| 6354 | PyLong_AsLongLong(posobj) : PyInt_AsLong(posobj); |
| 6355 | #endif |
| 6356 | if (PyErr_Occurred()) |
| 6357 | return NULL; |
| 6358 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6359 | Py_BEGIN_ALLOW_THREADS |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 6360 | #if defined(MS_WIN64) || defined(MS_WINDOWS) |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 6361 | res = _lseeki64(fd, pos, how); |
| 6362 | #else |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6363 | res = lseek(fd, pos, how); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 6364 | #endif |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6365 | Py_END_ALLOW_THREADS |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6366 | if (res < 0) |
| 6367 | return posix_error(); |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 6368 | |
| 6369 | #if !defined(HAVE_LARGEFILE_SUPPORT) |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6370 | return PyInt_FromLong(res); |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 6371 | #else |
| 6372 | return PyLong_FromLongLong(res); |
| 6373 | #endif |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6374 | } |
| 6375 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6376 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6377 | PyDoc_STRVAR(posix_read__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6378 | "read(fd, buffersize) -> string\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6379 | Read a file descriptor."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6380 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6381 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6382 | posix_read(PyObject *self, PyObject *args) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6383 | { |
Guido van Rossum | 8bac546 | 1996-06-11 18:38:48 +0000 | [diff] [blame] | 6384 | int fd, size, n; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6385 | PyObject *buffer; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 6386 | if (!PyArg_ParseTuple(args, "ii:read", &fd, &size)) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6387 | return NULL; |
Michael W. Hudson | 9867ced | 2005-01-31 17:01:59 +0000 | [diff] [blame] | 6388 | if (size < 0) { |
| 6389 | errno = EINVAL; |
| 6390 | return posix_error(); |
| 6391 | } |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 6392 | buffer = PyString_FromStringAndSize((char *)NULL, size); |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6393 | if (buffer == NULL) |
| 6394 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6395 | Py_BEGIN_ALLOW_THREADS |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 6396 | n = read(fd, PyString_AsString(buffer), size); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6397 | Py_END_ALLOW_THREADS |
Guido van Rossum | 8bac546 | 1996-06-11 18:38:48 +0000 | [diff] [blame] | 6398 | if (n < 0) { |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6399 | Py_DECREF(buffer); |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6400 | return posix_error(); |
| 6401 | } |
Guido van Rossum | 8bac546 | 1996-06-11 18:38:48 +0000 | [diff] [blame] | 6402 | if (n != size) |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 6403 | _PyString_Resize(&buffer, n); |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6404 | return buffer; |
| 6405 | } |
| 6406 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6407 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6408 | PyDoc_STRVAR(posix_write__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6409 | "write(fd, string) -> byteswritten\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6410 | Write a string to a file descriptor."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6411 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6412 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6413 | posix_write(PyObject *self, PyObject *args) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6414 | { |
Martin v. Löwis | f91d46a | 2008-08-12 14:49:50 +0000 | [diff] [blame] | 6415 | Py_buffer pbuf; |
Thomas Wouters | 68bc4f9 | 2006-03-01 01:05:10 +0000 | [diff] [blame] | 6416 | int fd; |
| 6417 | Py_ssize_t size; |
Thomas Wouters | 68bc4f9 | 2006-03-01 01:05:10 +0000 | [diff] [blame] | 6418 | |
Martin v. Löwis | f91d46a | 2008-08-12 14:49:50 +0000 | [diff] [blame] | 6419 | if (!PyArg_ParseTuple(args, "is*:write", &fd, &pbuf)) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6420 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6421 | Py_BEGIN_ALLOW_THREADS |
Martin v. Löwis | f91d46a | 2008-08-12 14:49:50 +0000 | [diff] [blame] | 6422 | size = write(fd, pbuf.buf, (size_t)pbuf.len); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6423 | Py_END_ALLOW_THREADS |
Martin v. Löwis | f91d46a | 2008-08-12 14:49:50 +0000 | [diff] [blame] | 6424 | PyBuffer_Release(&pbuf); |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6425 | if (size < 0) |
| 6426 | return posix_error(); |
Thomas Wouters | 68bc4f9 | 2006-03-01 01:05:10 +0000 | [diff] [blame] | 6427 | return PyInt_FromSsize_t(size); |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6428 | } |
| 6429 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6430 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6431 | PyDoc_STRVAR(posix_fstat__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6432 | "fstat(fd) -> stat result\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6433 | Like stat(), but for an open file descriptor."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6434 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6435 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6436 | posix_fstat(PyObject *self, PyObject *args) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6437 | { |
| 6438 | int fd; |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 6439 | STRUCT_STAT st; |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6440 | int res; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 6441 | if (!PyArg_ParseTuple(args, "i:fstat", &fd)) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6442 | return NULL; |
Martin v. Löwis | 7a924e6 | 2003-03-05 14:15:21 +0000 | [diff] [blame] | 6443 | #ifdef __VMS |
| 6444 | /* on OpenVMS we must ensure that all bytes are written to the file */ |
| 6445 | fsync(fd); |
| 6446 | #endif |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6447 | Py_BEGIN_ALLOW_THREADS |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 6448 | res = FSTAT(fd, &st); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6449 | Py_END_ALLOW_THREADS |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 6450 | if (res != 0) { |
| 6451 | #ifdef MS_WINDOWS |
| 6452 | return win32_error("fstat", NULL); |
| 6453 | #else |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6454 | return posix_error(); |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 6455 | #endif |
| 6456 | } |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 6457 | |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 6458 | return _pystat_fromstructstat(&st); |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6459 | } |
| 6460 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6461 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6462 | PyDoc_STRVAR(posix_fdopen__doc__, |
Neal Norwitz | c18b308 | 2002-10-11 22:19:42 +0000 | [diff] [blame] | 6463 | "fdopen(fd [, mode='r' [, bufsize]]) -> file_object\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6464 | Return an open file object connected to a file descriptor."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6465 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6466 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6467 | posix_fdopen(PyObject *self, PyObject *args) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6468 | { |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6469 | int fd; |
Kristján Valur Jónsson | 0a440d4 | 2007-04-26 09:15:08 +0000 | [diff] [blame] | 6470 | char *orgmode = "r"; |
Guido van Rossum | a6a1e53 | 1995-01-10 15:36:38 +0000 | [diff] [blame] | 6471 | int bufsize = -1; |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6472 | FILE *fp; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6473 | PyObject *f; |
Kristján Valur Jónsson | 0a440d4 | 2007-04-26 09:15:08 +0000 | [diff] [blame] | 6474 | char *mode; |
| 6475 | if (!PyArg_ParseTuple(args, "i|si", &fd, &orgmode, &bufsize)) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6476 | return NULL; |
Barry Warsaw | 43d68b8 | 1996-12-19 22:10:44 +0000 | [diff] [blame] | 6477 | |
Kristján Valur Jónsson | 0a440d4 | 2007-04-26 09:15:08 +0000 | [diff] [blame] | 6478 | /* Sanitize mode. See fileobject.c */ |
| 6479 | mode = PyMem_MALLOC(strlen(orgmode)+3); |
| 6480 | if (!mode) { |
| 6481 | PyErr_NoMemory(); |
| 6482 | return NULL; |
| 6483 | } |
| 6484 | strcpy(mode, orgmode); |
| 6485 | if (_PyFile_SanitizeMode(mode)) { |
| 6486 | PyMem_FREE(mode); |
Thomas Heller | 1f043e2 | 2002-11-07 16:00:59 +0000 | [diff] [blame] | 6487 | return NULL; |
| 6488 | } |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6489 | Py_BEGIN_ALLOW_THREADS |
Georg Brandl | 644b1e7 | 2006-03-31 20:27:22 +0000 | [diff] [blame] | 6490 | #if !defined(MS_WINDOWS) && defined(HAVE_FCNTL_H) |
Georg Brandl | 54a188a | 2006-03-31 20:00:11 +0000 | [diff] [blame] | 6491 | if (mode[0] == 'a') { |
| 6492 | /* try to make sure the O_APPEND flag is set */ |
| 6493 | int flags; |
| 6494 | flags = fcntl(fd, F_GETFL); |
| 6495 | if (flags != -1) |
| 6496 | fcntl(fd, F_SETFL, flags | O_APPEND); |
| 6497 | fp = fdopen(fd, mode); |
Thomas Wouters | 2a9a6b0 | 2006-03-31 22:38:19 +0000 | [diff] [blame] | 6498 | if (fp == NULL && flags != -1) |
Georg Brandl | 54a188a | 2006-03-31 20:00:11 +0000 | [diff] [blame] | 6499 | /* restore old mode if fdopen failed */ |
| 6500 | fcntl(fd, F_SETFL, flags); |
| 6501 | } else { |
| 6502 | fp = fdopen(fd, mode); |
| 6503 | } |
Georg Brandl | 644b1e7 | 2006-03-31 20:27:22 +0000 | [diff] [blame] | 6504 | #else |
| 6505 | fp = fdopen(fd, mode); |
| 6506 | #endif |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6507 | Py_END_ALLOW_THREADS |
Neal Norwitz | d83eb31 | 2007-05-02 04:47:55 +0000 | [diff] [blame] | 6508 | PyMem_FREE(mode); |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6509 | if (fp == NULL) |
| 6510 | return posix_error(); |
Kristján Valur Jónsson | 0a440d4 | 2007-04-26 09:15:08 +0000 | [diff] [blame] | 6511 | f = PyFile_FromFile(fp, "<fdopen>", orgmode, fclose); |
Guido van Rossum | a6a1e53 | 1995-01-10 15:36:38 +0000 | [diff] [blame] | 6512 | if (f != NULL) |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6513 | PyFile_SetBufSize(f, bufsize); |
Guido van Rossum | a6a1e53 | 1995-01-10 15:36:38 +0000 | [diff] [blame] | 6514 | return f; |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6515 | } |
| 6516 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6517 | PyDoc_STRVAR(posix_isatty__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6518 | "isatty(fd) -> bool\n\n\ |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 6519 | 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] | 6520 | connected to the slave end of a terminal."); |
Skip Montanaro | 1517d84 | 2000-07-19 14:34:14 +0000 | [diff] [blame] | 6521 | |
| 6522 | static PyObject * |
Thomas Wouters | 616607a | 2000-07-19 14:45:40 +0000 | [diff] [blame] | 6523 | posix_isatty(PyObject *self, PyObject *args) |
Skip Montanaro | 1517d84 | 2000-07-19 14:34:14 +0000 | [diff] [blame] | 6524 | { |
| 6525 | int fd; |
| 6526 | if (!PyArg_ParseTuple(args, "i:isatty", &fd)) |
| 6527 | return NULL; |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 6528 | return PyBool_FromLong(isatty(fd)); |
Skip Montanaro | 1517d84 | 2000-07-19 14:34:14 +0000 | [diff] [blame] | 6529 | } |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6530 | |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 6531 | #ifdef HAVE_PIPE |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6532 | PyDoc_STRVAR(posix_pipe__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6533 | "pipe() -> (read_end, write_end)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6534 | Create a pipe."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6535 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6536 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 6537 | posix_pipe(PyObject *self, PyObject *noargs) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6538 | { |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 6539 | #if defined(PYOS_OS2) |
| 6540 | HFILE read, write; |
| 6541 | APIRET rc; |
| 6542 | |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 6543 | Py_BEGIN_ALLOW_THREADS |
| 6544 | rc = DosCreatePipe( &read, &write, 4096); |
| 6545 | Py_END_ALLOW_THREADS |
| 6546 | if (rc != NO_ERROR) |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 6547 | return os2_error(rc); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 6548 | |
| 6549 | return Py_BuildValue("(ii)", read, write); |
| 6550 | #else |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 6551 | #if !defined(MS_WINDOWS) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6552 | int fds[2]; |
| 6553 | int res; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6554 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6555 | res = pipe(fds); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6556 | Py_END_ALLOW_THREADS |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6557 | if (res != 0) |
| 6558 | return posix_error(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6559 | return Py_BuildValue("(ii)", fds[0], fds[1]); |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 6560 | #else /* MS_WINDOWS */ |
Guido van Rossum | 794d813 | 1994-08-23 13:48:48 +0000 | [diff] [blame] | 6561 | HANDLE read, write; |
Guido van Rossum | b3f9f4b | 1998-06-12 15:05:15 +0000 | [diff] [blame] | 6562 | int read_fd, write_fd; |
Guido van Rossum | 794d813 | 1994-08-23 13:48:48 +0000 | [diff] [blame] | 6563 | BOOL ok; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6564 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | b3f9f4b | 1998-06-12 15:05:15 +0000 | [diff] [blame] | 6565 | ok = CreatePipe(&read, &write, NULL, 0); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6566 | Py_END_ALLOW_THREADS |
Guido van Rossum | 794d813 | 1994-08-23 13:48:48 +0000 | [diff] [blame] | 6567 | if (!ok) |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 6568 | return win32_error("CreatePipe", NULL); |
Tim Peters | 79248aa | 2001-08-29 21:37:10 +0000 | [diff] [blame] | 6569 | read_fd = _open_osfhandle((Py_intptr_t)read, 0); |
| 6570 | write_fd = _open_osfhandle((Py_intptr_t)write, 1); |
Guido van Rossum | b3f9f4b | 1998-06-12 15:05:15 +0000 | [diff] [blame] | 6571 | return Py_BuildValue("(ii)", read_fd, write_fd); |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 6572 | #endif /* MS_WINDOWS */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 6573 | #endif |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 6574 | } |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 6575 | #endif /* HAVE_PIPE */ |
| 6576 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6577 | |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 6578 | #ifdef HAVE_MKFIFO |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6579 | PyDoc_STRVAR(posix_mkfifo__doc__, |
Neal Norwitz | c18b308 | 2002-10-11 22:19:42 +0000 | [diff] [blame] | 6580 | "mkfifo(filename [, mode=0666])\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6581 | Create a FIFO (a POSIX named pipe)."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6582 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6583 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6584 | posix_mkfifo(PyObject *self, PyObject *args) |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 6585 | { |
Martin v. Löwis | 06a83e9 | 2002-04-14 10:19:44 +0000 | [diff] [blame] | 6586 | char *filename; |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 6587 | int mode = 0666; |
| 6588 | int res; |
Martin v. Löwis | 06a83e9 | 2002-04-14 10:19:44 +0000 | [diff] [blame] | 6589 | if (!PyArg_ParseTuple(args, "s|i:mkfifo", &filename, &mode)) |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 6590 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6591 | Py_BEGIN_ALLOW_THREADS |
Martin v. Löwis | 06a83e9 | 2002-04-14 10:19:44 +0000 | [diff] [blame] | 6592 | res = mkfifo(filename, mode); |
| 6593 | Py_END_ALLOW_THREADS |
| 6594 | if (res < 0) |
| 6595 | return posix_error(); |
| 6596 | Py_INCREF(Py_None); |
| 6597 | return Py_None; |
| 6598 | } |
| 6599 | #endif |
| 6600 | |
| 6601 | |
Neal Norwitz | 1169011 | 2002-07-30 01:08:28 +0000 | [diff] [blame] | 6602 | #if defined(HAVE_MKNOD) && defined(HAVE_MAKEDEV) |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6603 | PyDoc_STRVAR(posix_mknod__doc__, |
Neal Norwitz | c18b308 | 2002-10-11 22:19:42 +0000 | [diff] [blame] | 6604 | "mknod(filename [, mode=0600, device])\n\n\ |
Martin v. Löwis | 06a83e9 | 2002-04-14 10:19:44 +0000 | [diff] [blame] | 6605 | Create a filesystem node (file, device special file or named pipe)\n\ |
| 6606 | named filename. mode specifies both the permissions to use and the\n\ |
| 6607 | type of node to be created, being combined (bitwise OR) with one of\n\ |
| 6608 | 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] | 6609 | device defines the newly created device special file (probably using\n\ |
| 6610 | os.makedev()), otherwise it is ignored."); |
Martin v. Löwis | 06a83e9 | 2002-04-14 10:19:44 +0000 | [diff] [blame] | 6611 | |
| 6612 | |
| 6613 | static PyObject * |
| 6614 | posix_mknod(PyObject *self, PyObject *args) |
| 6615 | { |
| 6616 | char *filename; |
| 6617 | int mode = 0600; |
Martin v. Löwis | dbe3f76 | 2002-10-10 14:27:30 +0000 | [diff] [blame] | 6618 | int device = 0; |
Martin v. Löwis | 06a83e9 | 2002-04-14 10:19:44 +0000 | [diff] [blame] | 6619 | int res; |
Martin v. Löwis | d631ebe | 2002-11-02 17:42:33 +0000 | [diff] [blame] | 6620 | if (!PyArg_ParseTuple(args, "s|ii:mknod", &filename, &mode, &device)) |
Martin v. Löwis | 06a83e9 | 2002-04-14 10:19:44 +0000 | [diff] [blame] | 6621 | return NULL; |
| 6622 | Py_BEGIN_ALLOW_THREADS |
Martin v. Löwis | dbe3f76 | 2002-10-10 14:27:30 +0000 | [diff] [blame] | 6623 | res = mknod(filename, mode, device); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6624 | Py_END_ALLOW_THREADS |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 6625 | if (res < 0) |
| 6626 | return posix_error(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6627 | Py_INCREF(Py_None); |
| 6628 | return Py_None; |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 6629 | } |
| 6630 | #endif |
| 6631 | |
Martin v. Löwis | dbe3f76 | 2002-10-10 14:27:30 +0000 | [diff] [blame] | 6632 | #ifdef HAVE_DEVICE_MACROS |
| 6633 | PyDoc_STRVAR(posix_major__doc__, |
| 6634 | "major(device) -> major number\n\ |
| 6635 | Extracts a device major number from a raw device number."); |
| 6636 | |
| 6637 | static PyObject * |
| 6638 | posix_major(PyObject *self, PyObject *args) |
| 6639 | { |
| 6640 | int device; |
| 6641 | if (!PyArg_ParseTuple(args, "i:major", &device)) |
| 6642 | return NULL; |
| 6643 | return PyInt_FromLong((long)major(device)); |
| 6644 | } |
| 6645 | |
| 6646 | PyDoc_STRVAR(posix_minor__doc__, |
| 6647 | "minor(device) -> minor number\n\ |
| 6648 | Extracts a device minor number from a raw device number."); |
| 6649 | |
| 6650 | static PyObject * |
| 6651 | posix_minor(PyObject *self, PyObject *args) |
| 6652 | { |
| 6653 | int device; |
| 6654 | if (!PyArg_ParseTuple(args, "i:minor", &device)) |
| 6655 | return NULL; |
| 6656 | return PyInt_FromLong((long)minor(device)); |
| 6657 | } |
| 6658 | |
| 6659 | PyDoc_STRVAR(posix_makedev__doc__, |
| 6660 | "makedev(major, minor) -> device number\n\ |
| 6661 | Composes a raw device number from the major and minor device numbers."); |
| 6662 | |
| 6663 | static PyObject * |
| 6664 | posix_makedev(PyObject *self, PyObject *args) |
| 6665 | { |
| 6666 | int major, minor; |
| 6667 | if (!PyArg_ParseTuple(args, "ii:makedev", &major, &minor)) |
| 6668 | return NULL; |
| 6669 | return PyInt_FromLong((long)makedev(major, minor)); |
| 6670 | } |
| 6671 | #endif /* device macros */ |
| 6672 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6673 | |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 6674 | #ifdef HAVE_FTRUNCATE |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6675 | PyDoc_STRVAR(posix_ftruncate__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6676 | "ftruncate(fd, length)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6677 | Truncate a file to a specified length."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6678 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6679 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6680 | posix_ftruncate(PyObject *self, PyObject *args) |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 6681 | { |
| 6682 | int fd; |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 6683 | off_t length; |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 6684 | int res; |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 6685 | PyObject *lenobj; |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 6686 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 6687 | if (!PyArg_ParseTuple(args, "iO:ftruncate", &fd, &lenobj)) |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 6688 | return NULL; |
| 6689 | |
| 6690 | #if !defined(HAVE_LARGEFILE_SUPPORT) |
| 6691 | length = PyInt_AsLong(lenobj); |
| 6692 | #else |
| 6693 | length = PyLong_Check(lenobj) ? |
| 6694 | PyLong_AsLongLong(lenobj) : PyInt_AsLong(lenobj); |
| 6695 | #endif |
| 6696 | if (PyErr_Occurred()) |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 6697 | return NULL; |
| 6698 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6699 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 6700 | res = ftruncate(fd, length); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6701 | Py_END_ALLOW_THREADS |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 6702 | if (res < 0) { |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6703 | PyErr_SetFromErrno(PyExc_IOError); |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 6704 | return NULL; |
| 6705 | } |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6706 | Py_INCREF(Py_None); |
| 6707 | return Py_None; |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 6708 | } |
| 6709 | #endif |
Guido van Rossum | 22db57e | 1992-04-05 14:25:30 +0000 | [diff] [blame] | 6710 | |
Guido van Rossum | f1af3fe | 1996-07-23 19:18:10 +0000 | [diff] [blame] | 6711 | #ifdef HAVE_PUTENV |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6712 | PyDoc_STRVAR(posix_putenv__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6713 | "putenv(key, value)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6714 | Change or add an environment variable."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6715 | |
Fred Drake | 762e206 | 1999-08-26 17:23:54 +0000 | [diff] [blame] | 6716 | /* Save putenv() parameters as values here, so we can collect them when they |
| 6717 | * get re-set with another call for the same key. */ |
| 6718 | static PyObject *posix_putenv_garbage; |
| 6719 | |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 6720 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6721 | posix_putenv(PyObject *self, PyObject *args) |
Guido van Rossum | f1af3fe | 1996-07-23 19:18:10 +0000 | [diff] [blame] | 6722 | { |
| 6723 | char *s1, *s2; |
Anthony Baxter | 64182fe | 2006-04-11 12:14:09 +0000 | [diff] [blame] | 6724 | char *newenv; |
Fred Drake | 762e206 | 1999-08-26 17:23:54 +0000 | [diff] [blame] | 6725 | PyObject *newstr; |
Tim Peters | c8996f5 | 2001-12-03 20:41:00 +0000 | [diff] [blame] | 6726 | size_t len; |
Guido van Rossum | f1af3fe | 1996-07-23 19:18:10 +0000 | [diff] [blame] | 6727 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 6728 | if (!PyArg_ParseTuple(args, "ss:putenv", &s1, &s2)) |
Guido van Rossum | f1af3fe | 1996-07-23 19:18:10 +0000 | [diff] [blame] | 6729 | return NULL; |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 6730 | |
| 6731 | #if defined(PYOS_OS2) |
| 6732 | if (stricmp(s1, "BEGINLIBPATH") == 0) { |
| 6733 | APIRET rc; |
| 6734 | |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 6735 | rc = DosSetExtLIBPATH(s2, BEGIN_LIBPATH); |
| 6736 | if (rc != NO_ERROR) |
| 6737 | return os2_error(rc); |
| 6738 | |
| 6739 | } else if (stricmp(s1, "ENDLIBPATH") == 0) { |
| 6740 | APIRET rc; |
| 6741 | |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 6742 | rc = DosSetExtLIBPATH(s2, END_LIBPATH); |
| 6743 | if (rc != NO_ERROR) |
| 6744 | return os2_error(rc); |
| 6745 | } else { |
| 6746 | #endif |
| 6747 | |
Fred Drake | 762e206 | 1999-08-26 17:23:54 +0000 | [diff] [blame] | 6748 | /* XXX This can leak memory -- not easy to fix :-( */ |
Tim Peters | c8996f5 | 2001-12-03 20:41:00 +0000 | [diff] [blame] | 6749 | len = strlen(s1) + strlen(s2) + 2; |
| 6750 | /* len includes space for a trailing \0; the size arg to |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 6751 | PyString_FromStringAndSize does not count that */ |
| 6752 | newstr = PyString_FromStringAndSize(NULL, (int)len - 1); |
Fred Drake | 762e206 | 1999-08-26 17:23:54 +0000 | [diff] [blame] | 6753 | if (newstr == NULL) |
| 6754 | return PyErr_NoMemory(); |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 6755 | newenv = PyString_AS_STRING(newstr); |
Anthony Baxter | 64182fe | 2006-04-11 12:14:09 +0000 | [diff] [blame] | 6756 | PyOS_snprintf(newenv, len, "%s=%s", s1, s2); |
| 6757 | if (putenv(newenv)) { |
Neal Norwitz | 4adc9ab | 2003-02-10 03:10:43 +0000 | [diff] [blame] | 6758 | Py_DECREF(newstr); |
Guido van Rossum | f1af3fe | 1996-07-23 19:18:10 +0000 | [diff] [blame] | 6759 | posix_error(); |
| 6760 | return NULL; |
| 6761 | } |
Fred Drake | 762e206 | 1999-08-26 17:23:54 +0000 | [diff] [blame] | 6762 | /* Install the first arg and newstr in posix_putenv_garbage; |
| 6763 | * this will cause previous value to be collected. This has to |
| 6764 | * happen after the real putenv() call because the old value |
| 6765 | * was still accessible until then. */ |
| 6766 | if (PyDict_SetItem(posix_putenv_garbage, |
| 6767 | PyTuple_GET_ITEM(args, 0), newstr)) { |
| 6768 | /* really not much we can do; just leak */ |
| 6769 | PyErr_Clear(); |
| 6770 | } |
| 6771 | else { |
| 6772 | Py_DECREF(newstr); |
| 6773 | } |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 6774 | |
| 6775 | #if defined(PYOS_OS2) |
| 6776 | } |
| 6777 | #endif |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6778 | Py_INCREF(Py_None); |
| 6779 | return Py_None; |
Guido van Rossum | f1af3fe | 1996-07-23 19:18:10 +0000 | [diff] [blame] | 6780 | } |
Guido van Rossum | b6a4716 | 1997-09-15 22:54:34 +0000 | [diff] [blame] | 6781 | #endif /* putenv */ |
| 6782 | |
Guido van Rossum | c524d95 | 2001-10-19 01:31:59 +0000 | [diff] [blame] | 6783 | #ifdef HAVE_UNSETENV |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6784 | PyDoc_STRVAR(posix_unsetenv__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6785 | "unsetenv(key)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6786 | Delete an environment variable."); |
Guido van Rossum | c524d95 | 2001-10-19 01:31:59 +0000 | [diff] [blame] | 6787 | |
| 6788 | static PyObject * |
| 6789 | posix_unsetenv(PyObject *self, PyObject *args) |
| 6790 | { |
| 6791 | char *s1; |
| 6792 | |
| 6793 | if (!PyArg_ParseTuple(args, "s:unsetenv", &s1)) |
| 6794 | return NULL; |
| 6795 | |
| 6796 | unsetenv(s1); |
| 6797 | |
| 6798 | /* Remove the key from posix_putenv_garbage; |
| 6799 | * this will cause it to be collected. This has to |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 6800 | * happen after the real unsetenv() call because the |
Guido van Rossum | c524d95 | 2001-10-19 01:31:59 +0000 | [diff] [blame] | 6801 | * old value was still accessible until then. |
| 6802 | */ |
| 6803 | if (PyDict_DelItem(posix_putenv_garbage, |
| 6804 | PyTuple_GET_ITEM(args, 0))) { |
| 6805 | /* really not much we can do; just leak */ |
| 6806 | PyErr_Clear(); |
| 6807 | } |
| 6808 | |
| 6809 | Py_INCREF(Py_None); |
| 6810 | return Py_None; |
| 6811 | } |
| 6812 | #endif /* unsetenv */ |
| 6813 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6814 | PyDoc_STRVAR(posix_strerror__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6815 | "strerror(code) -> string\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6816 | Translate an error code to a message string."); |
Guido van Rossum | b6a4716 | 1997-09-15 22:54:34 +0000 | [diff] [blame] | 6817 | |
Guido van Rossum | f68d8e5 | 2001-04-14 17:55:09 +0000 | [diff] [blame] | 6818 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6819 | posix_strerror(PyObject *self, PyObject *args) |
Guido van Rossum | b6a4716 | 1997-09-15 22:54:34 +0000 | [diff] [blame] | 6820 | { |
| 6821 | int code; |
| 6822 | char *message; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 6823 | if (!PyArg_ParseTuple(args, "i:strerror", &code)) |
Guido van Rossum | b6a4716 | 1997-09-15 22:54:34 +0000 | [diff] [blame] | 6824 | return NULL; |
| 6825 | message = strerror(code); |
| 6826 | if (message == NULL) { |
| 6827 | PyErr_SetString(PyExc_ValueError, |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 6828 | "strerror() argument out of range"); |
Guido van Rossum | b6a4716 | 1997-09-15 22:54:34 +0000 | [diff] [blame] | 6829 | return NULL; |
| 6830 | } |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 6831 | return PyString_FromString(message); |
Guido van Rossum | b6a4716 | 1997-09-15 22:54:34 +0000 | [diff] [blame] | 6832 | } |
Guido van Rossum | b6a4716 | 1997-09-15 22:54:34 +0000 | [diff] [blame] | 6833 | |
Guido van Rossum | f1af3fe | 1996-07-23 19:18:10 +0000 | [diff] [blame] | 6834 | |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 6835 | #ifdef HAVE_SYS_WAIT_H |
| 6836 | |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 6837 | #ifdef WCOREDUMP |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6838 | PyDoc_STRVAR(posix_WCOREDUMP__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6839 | "WCOREDUMP(status) -> bool\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6840 | 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] | 6841 | |
| 6842 | static PyObject * |
| 6843 | posix_WCOREDUMP(PyObject *self, PyObject *args) |
| 6844 | { |
Neal Norwitz | d5a3754 | 2006-03-20 06:48:34 +0000 | [diff] [blame] | 6845 | WAIT_TYPE status; |
| 6846 | WAIT_STATUS_INT(status) = 0; |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 6847 | |
Neal Norwitz | d5a3754 | 2006-03-20 06:48:34 +0000 | [diff] [blame] | 6848 | if (!PyArg_ParseTuple(args, "i:WCOREDUMP", &WAIT_STATUS_INT(status))) |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 6849 | return NULL; |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 6850 | |
| 6851 | return PyBool_FromLong(WCOREDUMP(status)); |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 6852 | } |
| 6853 | #endif /* WCOREDUMP */ |
| 6854 | |
| 6855 | #ifdef WIFCONTINUED |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6856 | PyDoc_STRVAR(posix_WIFCONTINUED__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6857 | "WIFCONTINUED(status) -> bool\n\n\ |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 6858 | 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] | 6859 | job control stop."); |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 6860 | |
| 6861 | static PyObject * |
Martin v. Löwis | 2b41b0d | 2002-05-04 13:13:41 +0000 | [diff] [blame] | 6862 | posix_WIFCONTINUED(PyObject *self, PyObject *args) |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 6863 | { |
Neal Norwitz | d5a3754 | 2006-03-20 06:48:34 +0000 | [diff] [blame] | 6864 | WAIT_TYPE status; |
| 6865 | WAIT_STATUS_INT(status) = 0; |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 6866 | |
Neal Norwitz | d5a3754 | 2006-03-20 06:48:34 +0000 | [diff] [blame] | 6867 | if (!PyArg_ParseTuple(args, "i:WCONTINUED", &WAIT_STATUS_INT(status))) |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 6868 | return NULL; |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 6869 | |
Martin v. Löwis | 2b41b0d | 2002-05-04 13:13:41 +0000 | [diff] [blame] | 6870 | return PyBool_FromLong(WIFCONTINUED(status)); |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 6871 | } |
| 6872 | #endif /* WIFCONTINUED */ |
| 6873 | |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 6874 | #ifdef WIFSTOPPED |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6875 | PyDoc_STRVAR(posix_WIFSTOPPED__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6876 | "WIFSTOPPED(status) -> bool\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6877 | Return True if the process returning 'status' was stopped."); |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 6878 | |
| 6879 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6880 | posix_WIFSTOPPED(PyObject *self, PyObject *args) |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 6881 | { |
Neal Norwitz | d5a3754 | 2006-03-20 06:48:34 +0000 | [diff] [blame] | 6882 | WAIT_TYPE status; |
| 6883 | WAIT_STATUS_INT(status) = 0; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 6884 | |
Neal Norwitz | d5a3754 | 2006-03-20 06:48:34 +0000 | [diff] [blame] | 6885 | if (!PyArg_ParseTuple(args, "i:WIFSTOPPED", &WAIT_STATUS_INT(status))) |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 6886 | return NULL; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 6887 | |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 6888 | return PyBool_FromLong(WIFSTOPPED(status)); |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 6889 | } |
| 6890 | #endif /* WIFSTOPPED */ |
| 6891 | |
| 6892 | #ifdef WIFSIGNALED |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6893 | PyDoc_STRVAR(posix_WIFSIGNALED__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6894 | "WIFSIGNALED(status) -> bool\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6895 | 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] | 6896 | |
| 6897 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6898 | posix_WIFSIGNALED(PyObject *self, PyObject *args) |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 6899 | { |
Neal Norwitz | d5a3754 | 2006-03-20 06:48:34 +0000 | [diff] [blame] | 6900 | WAIT_TYPE status; |
| 6901 | WAIT_STATUS_INT(status) = 0; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 6902 | |
Neal Norwitz | d5a3754 | 2006-03-20 06:48:34 +0000 | [diff] [blame] | 6903 | if (!PyArg_ParseTuple(args, "i:WIFSIGNALED", &WAIT_STATUS_INT(status))) |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 6904 | return NULL; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 6905 | |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 6906 | return PyBool_FromLong(WIFSIGNALED(status)); |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 6907 | } |
| 6908 | #endif /* WIFSIGNALED */ |
| 6909 | |
| 6910 | #ifdef WIFEXITED |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6911 | PyDoc_STRVAR(posix_WIFEXITED__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6912 | "WIFEXITED(status) -> bool\n\n\ |
Fred Drake | 7e3535c | 1999-02-02 16:37:11 +0000 | [diff] [blame] | 6913 | 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] | 6914 | system call."); |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 6915 | |
| 6916 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6917 | posix_WIFEXITED(PyObject *self, PyObject *args) |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 6918 | { |
Neal Norwitz | d5a3754 | 2006-03-20 06:48:34 +0000 | [diff] [blame] | 6919 | WAIT_TYPE status; |
| 6920 | WAIT_STATUS_INT(status) = 0; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 6921 | |
Neal Norwitz | d5a3754 | 2006-03-20 06:48:34 +0000 | [diff] [blame] | 6922 | if (!PyArg_ParseTuple(args, "i:WIFEXITED", &WAIT_STATUS_INT(status))) |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 6923 | return NULL; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 6924 | |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 6925 | return PyBool_FromLong(WIFEXITED(status)); |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 6926 | } |
| 6927 | #endif /* WIFEXITED */ |
| 6928 | |
Guido van Rossum | 54ecc3d | 1999-01-27 17:53:11 +0000 | [diff] [blame] | 6929 | #ifdef WEXITSTATUS |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6930 | PyDoc_STRVAR(posix_WEXITSTATUS__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6931 | "WEXITSTATUS(status) -> integer\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6932 | Return the process return code from 'status'."); |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 6933 | |
| 6934 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6935 | posix_WEXITSTATUS(PyObject *self, PyObject *args) |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 6936 | { |
Neal Norwitz | d5a3754 | 2006-03-20 06:48:34 +0000 | [diff] [blame] | 6937 | WAIT_TYPE status; |
| 6938 | WAIT_STATUS_INT(status) = 0; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 6939 | |
Neal Norwitz | d5a3754 | 2006-03-20 06:48:34 +0000 | [diff] [blame] | 6940 | if (!PyArg_ParseTuple(args, "i:WEXITSTATUS", &WAIT_STATUS_INT(status))) |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 6941 | return NULL; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 6942 | |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 6943 | return Py_BuildValue("i", WEXITSTATUS(status)); |
| 6944 | } |
| 6945 | #endif /* WEXITSTATUS */ |
| 6946 | |
| 6947 | #ifdef WTERMSIG |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6948 | PyDoc_STRVAR(posix_WTERMSIG__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6949 | "WTERMSIG(status) -> integer\n\n\ |
Fred Drake | 7e3535c | 1999-02-02 16:37:11 +0000 | [diff] [blame] | 6950 | 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] | 6951 | value."); |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 6952 | |
| 6953 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6954 | posix_WTERMSIG(PyObject *self, PyObject *args) |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 6955 | { |
Neal Norwitz | d5a3754 | 2006-03-20 06:48:34 +0000 | [diff] [blame] | 6956 | WAIT_TYPE status; |
| 6957 | WAIT_STATUS_INT(status) = 0; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 6958 | |
Neal Norwitz | d5a3754 | 2006-03-20 06:48:34 +0000 | [diff] [blame] | 6959 | if (!PyArg_ParseTuple(args, "i:WTERMSIG", &WAIT_STATUS_INT(status))) |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 6960 | return NULL; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 6961 | |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 6962 | return Py_BuildValue("i", WTERMSIG(status)); |
| 6963 | } |
| 6964 | #endif /* WTERMSIG */ |
| 6965 | |
| 6966 | #ifdef WSTOPSIG |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6967 | PyDoc_STRVAR(posix_WSTOPSIG__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6968 | "WSTOPSIG(status) -> integer\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6969 | Return the signal that stopped the process that provided\n\ |
| 6970 | the 'status' value."); |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 6971 | |
| 6972 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6973 | posix_WSTOPSIG(PyObject *self, PyObject *args) |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 6974 | { |
Neal Norwitz | d5a3754 | 2006-03-20 06:48:34 +0000 | [diff] [blame] | 6975 | WAIT_TYPE status; |
| 6976 | WAIT_STATUS_INT(status) = 0; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 6977 | |
Neal Norwitz | d5a3754 | 2006-03-20 06:48:34 +0000 | [diff] [blame] | 6978 | if (!PyArg_ParseTuple(args, "i:WSTOPSIG", &WAIT_STATUS_INT(status))) |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 6979 | return NULL; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 6980 | |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 6981 | return Py_BuildValue("i", WSTOPSIG(status)); |
| 6982 | } |
| 6983 | #endif /* WSTOPSIG */ |
| 6984 | |
| 6985 | #endif /* HAVE_SYS_WAIT_H */ |
| 6986 | |
| 6987 | |
Martin v. Löwis | 5f5d99c | 2006-05-16 07:05:37 +0000 | [diff] [blame] | 6988 | #if defined(HAVE_FSTATVFS) && defined(HAVE_SYS_STATVFS_H) |
Guido van Rossum | d5753e1 | 1999-10-19 13:29:23 +0000 | [diff] [blame] | 6989 | #ifdef _SCO_DS |
| 6990 | /* SCO OpenServer 5.0 and later requires _SVID3 before it reveals the |
| 6991 | needed definitions in sys/statvfs.h */ |
| 6992 | #define _SVID3 |
| 6993 | #endif |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 6994 | #include <sys/statvfs.h> |
| 6995 | |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 6996 | static PyObject* |
| 6997 | _pystatvfs_fromstructstatvfs(struct statvfs st) { |
| 6998 | PyObject *v = PyStructSequence_New(&StatVFSResultType); |
| 6999 | if (v == NULL) |
| 7000 | return NULL; |
| 7001 | |
| 7002 | #if !defined(HAVE_LARGEFILE_SUPPORT) |
| 7003 | PyStructSequence_SET_ITEM(v, 0, PyInt_FromLong((long) st.f_bsize)); |
| 7004 | PyStructSequence_SET_ITEM(v, 1, PyInt_FromLong((long) st.f_frsize)); |
| 7005 | PyStructSequence_SET_ITEM(v, 2, PyInt_FromLong((long) st.f_blocks)); |
| 7006 | PyStructSequence_SET_ITEM(v, 3, PyInt_FromLong((long) st.f_bfree)); |
| 7007 | PyStructSequence_SET_ITEM(v, 4, PyInt_FromLong((long) st.f_bavail)); |
| 7008 | PyStructSequence_SET_ITEM(v, 5, PyInt_FromLong((long) st.f_files)); |
| 7009 | PyStructSequence_SET_ITEM(v, 6, PyInt_FromLong((long) st.f_ffree)); |
| 7010 | PyStructSequence_SET_ITEM(v, 7, PyInt_FromLong((long) st.f_favail)); |
| 7011 | PyStructSequence_SET_ITEM(v, 8, PyInt_FromLong((long) st.f_flag)); |
| 7012 | PyStructSequence_SET_ITEM(v, 9, PyInt_FromLong((long) st.f_namemax)); |
| 7013 | #else |
| 7014 | PyStructSequence_SET_ITEM(v, 0, PyInt_FromLong((long) st.f_bsize)); |
| 7015 | PyStructSequence_SET_ITEM(v, 1, PyInt_FromLong((long) st.f_frsize)); |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 7016 | PyStructSequence_SET_ITEM(v, 2, |
Martin v. Löwis | b9a0f91 | 2003-03-29 10:06:18 +0000 | [diff] [blame] | 7017 | PyLong_FromLongLong((PY_LONG_LONG) st.f_blocks)); |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 7018 | PyStructSequence_SET_ITEM(v, 3, |
Martin v. Löwis | b9a0f91 | 2003-03-29 10:06:18 +0000 | [diff] [blame] | 7019 | PyLong_FromLongLong((PY_LONG_LONG) st.f_bfree)); |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 7020 | PyStructSequence_SET_ITEM(v, 4, |
Martin v. Löwis | b9a0f91 | 2003-03-29 10:06:18 +0000 | [diff] [blame] | 7021 | PyLong_FromLongLong((PY_LONG_LONG) st.f_bavail)); |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 7022 | PyStructSequence_SET_ITEM(v, 5, |
Martin v. Löwis | b9a0f91 | 2003-03-29 10:06:18 +0000 | [diff] [blame] | 7023 | PyLong_FromLongLong((PY_LONG_LONG) st.f_files)); |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 7024 | PyStructSequence_SET_ITEM(v, 6, |
Martin v. Löwis | b9a0f91 | 2003-03-29 10:06:18 +0000 | [diff] [blame] | 7025 | PyLong_FromLongLong((PY_LONG_LONG) st.f_ffree)); |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 7026 | PyStructSequence_SET_ITEM(v, 7, |
Martin v. Löwis | b9a0f91 | 2003-03-29 10:06:18 +0000 | [diff] [blame] | 7027 | PyLong_FromLongLong((PY_LONG_LONG) st.f_favail)); |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 7028 | PyStructSequence_SET_ITEM(v, 8, PyInt_FromLong((long) st.f_flag)); |
| 7029 | PyStructSequence_SET_ITEM(v, 9, PyInt_FromLong((long) st.f_namemax)); |
| 7030 | #endif |
| 7031 | |
| 7032 | return v; |
| 7033 | } |
| 7034 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7035 | PyDoc_STRVAR(posix_fstatvfs__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 7036 | "fstatvfs(fd) -> statvfs result\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7037 | Perform an fstatvfs system call on the given fd."); |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 7038 | |
| 7039 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 7040 | posix_fstatvfs(PyObject *self, PyObject *args) |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 7041 | { |
| 7042 | int fd, res; |
| 7043 | struct statvfs st; |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 7044 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7045 | if (!PyArg_ParseTuple(args, "i:fstatvfs", &fd)) |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 7046 | return NULL; |
| 7047 | Py_BEGIN_ALLOW_THREADS |
| 7048 | res = fstatvfs(fd, &st); |
| 7049 | Py_END_ALLOW_THREADS |
| 7050 | if (res != 0) |
| 7051 | return posix_error(); |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 7052 | |
| 7053 | return _pystatvfs_fromstructstatvfs(st); |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 7054 | } |
Martin v. Löwis | 5f5d99c | 2006-05-16 07:05:37 +0000 | [diff] [blame] | 7055 | #endif /* HAVE_FSTATVFS && HAVE_SYS_STATVFS_H */ |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 7056 | |
| 7057 | |
Martin v. Löwis | 5f5d99c | 2006-05-16 07:05:37 +0000 | [diff] [blame] | 7058 | #if defined(HAVE_STATVFS) && defined(HAVE_SYS_STATVFS_H) |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 7059 | #include <sys/statvfs.h> |
| 7060 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7061 | PyDoc_STRVAR(posix_statvfs__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 7062 | "statvfs(path) -> statvfs result\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7063 | Perform a statvfs system call on the given path."); |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 7064 | |
| 7065 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 7066 | posix_statvfs(PyObject *self, PyObject *args) |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 7067 | { |
| 7068 | char *path; |
| 7069 | int res; |
| 7070 | struct statvfs st; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7071 | if (!PyArg_ParseTuple(args, "s:statvfs", &path)) |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 7072 | return NULL; |
| 7073 | Py_BEGIN_ALLOW_THREADS |
| 7074 | res = statvfs(path, &st); |
| 7075 | Py_END_ALLOW_THREADS |
| 7076 | if (res != 0) |
| 7077 | return posix_error_with_filename(path); |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 7078 | |
| 7079 | return _pystatvfs_fromstructstatvfs(st); |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 7080 | } |
| 7081 | #endif /* HAVE_STATVFS */ |
| 7082 | |
| 7083 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7084 | #ifdef HAVE_TEMPNAM |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7085 | PyDoc_STRVAR(posix_tempnam__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 7086 | "tempnam([dir[, prefix]]) -> string\n\n\ |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7087 | Return a unique name for a temporary file.\n\ |
Neal Norwitz | 50d5d4f | 2002-07-30 01:17:43 +0000 | [diff] [blame] | 7088 | 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] | 7089 | or None if not needed."); |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7090 | |
| 7091 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 7092 | posix_tempnam(PyObject *self, PyObject *args) |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7093 | { |
| 7094 | PyObject *result = NULL; |
| 7095 | char *dir = NULL; |
| 7096 | char *pfx = NULL; |
| 7097 | char *name; |
| 7098 | |
| 7099 | if (!PyArg_ParseTuple(args, "|zz:tempnam", &dir, &pfx)) |
| 7100 | return NULL; |
Skip Montanaro | 95618b5 | 2001-08-18 18:52:10 +0000 | [diff] [blame] | 7101 | |
| 7102 | if (PyErr_Warn(PyExc_RuntimeWarning, |
| 7103 | "tempnam is a potential security risk to your program") < 0) |
| 7104 | return NULL; |
| 7105 | |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 7106 | #ifdef MS_WINDOWS |
Fred Drake | 78b71c2 | 2001-07-17 20:37:36 +0000 | [diff] [blame] | 7107 | name = _tempnam(dir, pfx); |
| 7108 | #else |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7109 | name = tempnam(dir, pfx); |
Fred Drake | 78b71c2 | 2001-07-17 20:37:36 +0000 | [diff] [blame] | 7110 | #endif |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7111 | if (name == NULL) |
| 7112 | return PyErr_NoMemory(); |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 7113 | result = PyString_FromString(name); |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7114 | free(name); |
| 7115 | return result; |
| 7116 | } |
Guido van Rossum | d371ff1 | 1999-01-25 16:12:23 +0000 | [diff] [blame] | 7117 | #endif |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7118 | |
| 7119 | |
| 7120 | #ifdef HAVE_TMPFILE |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7121 | PyDoc_STRVAR(posix_tmpfile__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 7122 | "tmpfile() -> file object\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7123 | Create a temporary file with no directory entries."); |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7124 | |
| 7125 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 7126 | posix_tmpfile(PyObject *self, PyObject *noargs) |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7127 | { |
| 7128 | FILE *fp; |
| 7129 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7130 | fp = tmpfile(); |
| 7131 | if (fp == NULL) |
| 7132 | return posix_error(); |
Guido van Rossum | db9198a | 2002-06-10 19:23:22 +0000 | [diff] [blame] | 7133 | return PyFile_FromFile(fp, "<tmpfile>", "w+b", fclose); |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7134 | } |
| 7135 | #endif |
| 7136 | |
| 7137 | |
| 7138 | #ifdef HAVE_TMPNAM |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7139 | PyDoc_STRVAR(posix_tmpnam__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 7140 | "tmpnam() -> string\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7141 | Return a unique name for a temporary file."); |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7142 | |
| 7143 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 7144 | posix_tmpnam(PyObject *self, PyObject *noargs) |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7145 | { |
| 7146 | char buffer[L_tmpnam]; |
| 7147 | char *name; |
| 7148 | |
Skip Montanaro | 95618b5 | 2001-08-18 18:52:10 +0000 | [diff] [blame] | 7149 | if (PyErr_Warn(PyExc_RuntimeWarning, |
| 7150 | "tmpnam is a potential security risk to your program") < 0) |
| 7151 | return NULL; |
| 7152 | |
Greg Ward | b48bc17 | 2000-03-01 21:51:56 +0000 | [diff] [blame] | 7153 | #ifdef USE_TMPNAM_R |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7154 | name = tmpnam_r(buffer); |
| 7155 | #else |
| 7156 | name = tmpnam(buffer); |
| 7157 | #endif |
| 7158 | if (name == NULL) { |
Neal Norwitz | d1e0ef6 | 2006-03-20 04:08:12 +0000 | [diff] [blame] | 7159 | PyObject *err = Py_BuildValue("is", 0, |
Greg Ward | b48bc17 | 2000-03-01 21:51:56 +0000 | [diff] [blame] | 7160 | #ifdef USE_TMPNAM_R |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7161 | "unexpected NULL from tmpnam_r" |
| 7162 | #else |
| 7163 | "unexpected NULL from tmpnam" |
| 7164 | #endif |
Neal Norwitz | d1e0ef6 | 2006-03-20 04:08:12 +0000 | [diff] [blame] | 7165 | ); |
| 7166 | PyErr_SetObject(PyExc_OSError, err); |
| 7167 | Py_XDECREF(err); |
| 7168 | return NULL; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7169 | } |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 7170 | return PyString_FromString(buffer); |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 7171 | } |
| 7172 | #endif |
| 7173 | |
| 7174 | |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7175 | /* This is used for fpathconf(), pathconf(), confstr() and sysconf(). |
| 7176 | * It maps strings representing configuration variable names to |
| 7177 | * integer values, allowing those functions to be called with the |
Thomas Wouters | 7e47402 | 2000-07-16 12:04:32 +0000 | [diff] [blame] | 7178 | * magic names instead of polluting the module's namespace with tons of |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 7179 | * rarely-used constants. There are three separate tables that use |
| 7180 | * these definitions. |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 7181 | * |
| 7182 | * This code is always included, even if none of the interfaces that |
| 7183 | * need it are included. The #if hackery needed to avoid it would be |
| 7184 | * sufficiently pervasive that it's not worth the loss of readability. |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7185 | */ |
| 7186 | struct constdef { |
| 7187 | char *name; |
| 7188 | long value; |
| 7189 | }; |
| 7190 | |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 7191 | static int |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 7192 | conv_confname(PyObject *arg, int *valuep, struct constdef *table, |
| 7193 | size_t tablesize) |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 7194 | { |
| 7195 | if (PyInt_Check(arg)) { |
| 7196 | *valuep = PyInt_AS_LONG(arg); |
| 7197 | return 1; |
| 7198 | } |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 7199 | if (PyString_Check(arg)) { |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 7200 | /* look up the value in the table using a binary search */ |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 7201 | size_t lo = 0; |
| 7202 | size_t mid; |
| 7203 | size_t hi = tablesize; |
| 7204 | int cmp; |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 7205 | char *confname = PyString_AS_STRING(arg); |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 7206 | while (lo < hi) { |
| 7207 | mid = (lo + hi) / 2; |
| 7208 | cmp = strcmp(confname, table[mid].name); |
| 7209 | if (cmp < 0) |
| 7210 | hi = mid; |
| 7211 | else if (cmp > 0) |
| 7212 | lo = mid + 1; |
| 7213 | else { |
| 7214 | *valuep = table[mid].value; |
| 7215 | return 1; |
| 7216 | } |
| 7217 | } |
| 7218 | PyErr_SetString(PyExc_ValueError, "unrecognized configuration name"); |
| 7219 | } |
| 7220 | else |
| 7221 | PyErr_SetString(PyExc_TypeError, |
| 7222 | "configuration names must be strings or integers"); |
| 7223 | return 0; |
| 7224 | } |
| 7225 | |
| 7226 | |
| 7227 | #if defined(HAVE_FPATHCONF) || defined(HAVE_PATHCONF) |
| 7228 | static struct constdef posix_constants_pathconf[] = { |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7229 | #ifdef _PC_ABI_AIO_XFER_MAX |
| 7230 | {"PC_ABI_AIO_XFER_MAX", _PC_ABI_AIO_XFER_MAX}, |
| 7231 | #endif |
| 7232 | #ifdef _PC_ABI_ASYNC_IO |
| 7233 | {"PC_ABI_ASYNC_IO", _PC_ABI_ASYNC_IO}, |
| 7234 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7235 | #ifdef _PC_ASYNC_IO |
| 7236 | {"PC_ASYNC_IO", _PC_ASYNC_IO}, |
| 7237 | #endif |
| 7238 | #ifdef _PC_CHOWN_RESTRICTED |
| 7239 | {"PC_CHOWN_RESTRICTED", _PC_CHOWN_RESTRICTED}, |
| 7240 | #endif |
| 7241 | #ifdef _PC_FILESIZEBITS |
| 7242 | {"PC_FILESIZEBITS", _PC_FILESIZEBITS}, |
| 7243 | #endif |
| 7244 | #ifdef _PC_LAST |
| 7245 | {"PC_LAST", _PC_LAST}, |
| 7246 | #endif |
| 7247 | #ifdef _PC_LINK_MAX |
| 7248 | {"PC_LINK_MAX", _PC_LINK_MAX}, |
| 7249 | #endif |
| 7250 | #ifdef _PC_MAX_CANON |
| 7251 | {"PC_MAX_CANON", _PC_MAX_CANON}, |
| 7252 | #endif |
| 7253 | #ifdef _PC_MAX_INPUT |
| 7254 | {"PC_MAX_INPUT", _PC_MAX_INPUT}, |
| 7255 | #endif |
| 7256 | #ifdef _PC_NAME_MAX |
| 7257 | {"PC_NAME_MAX", _PC_NAME_MAX}, |
| 7258 | #endif |
| 7259 | #ifdef _PC_NO_TRUNC |
| 7260 | {"PC_NO_TRUNC", _PC_NO_TRUNC}, |
| 7261 | #endif |
| 7262 | #ifdef _PC_PATH_MAX |
| 7263 | {"PC_PATH_MAX", _PC_PATH_MAX}, |
| 7264 | #endif |
| 7265 | #ifdef _PC_PIPE_BUF |
| 7266 | {"PC_PIPE_BUF", _PC_PIPE_BUF}, |
| 7267 | #endif |
| 7268 | #ifdef _PC_PRIO_IO |
| 7269 | {"PC_PRIO_IO", _PC_PRIO_IO}, |
| 7270 | #endif |
| 7271 | #ifdef _PC_SOCK_MAXBUF |
| 7272 | {"PC_SOCK_MAXBUF", _PC_SOCK_MAXBUF}, |
| 7273 | #endif |
| 7274 | #ifdef _PC_SYNC_IO |
| 7275 | {"PC_SYNC_IO", _PC_SYNC_IO}, |
| 7276 | #endif |
| 7277 | #ifdef _PC_VDISABLE |
| 7278 | {"PC_VDISABLE", _PC_VDISABLE}, |
| 7279 | #endif |
| 7280 | }; |
| 7281 | |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7282 | static int |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 7283 | conv_path_confname(PyObject *arg, int *valuep) |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7284 | { |
| 7285 | return conv_confname(arg, valuep, posix_constants_pathconf, |
| 7286 | sizeof(posix_constants_pathconf) |
| 7287 | / sizeof(struct constdef)); |
| 7288 | } |
| 7289 | #endif |
| 7290 | |
| 7291 | #ifdef HAVE_FPATHCONF |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7292 | PyDoc_STRVAR(posix_fpathconf__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 7293 | "fpathconf(fd, name) -> integer\n\n\ |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7294 | 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] | 7295 | If there is no limit, return -1."); |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7296 | |
| 7297 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 7298 | posix_fpathconf(PyObject *self, PyObject *args) |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7299 | { |
| 7300 | PyObject *result = NULL; |
| 7301 | int name, fd; |
| 7302 | |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 7303 | if (PyArg_ParseTuple(args, "iO&:fpathconf", &fd, |
| 7304 | conv_path_confname, &name)) { |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7305 | long limit; |
| 7306 | |
| 7307 | errno = 0; |
| 7308 | limit = fpathconf(fd, name); |
| 7309 | if (limit == -1 && errno != 0) |
| 7310 | posix_error(); |
| 7311 | else |
| 7312 | result = PyInt_FromLong(limit); |
| 7313 | } |
| 7314 | return result; |
| 7315 | } |
| 7316 | #endif |
| 7317 | |
| 7318 | |
| 7319 | #ifdef HAVE_PATHCONF |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7320 | PyDoc_STRVAR(posix_pathconf__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 7321 | "pathconf(path, name) -> integer\n\n\ |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7322 | 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] | 7323 | If there is no limit, return -1."); |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7324 | |
| 7325 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 7326 | posix_pathconf(PyObject *self, PyObject *args) |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7327 | { |
| 7328 | PyObject *result = NULL; |
| 7329 | int name; |
| 7330 | char *path; |
| 7331 | |
| 7332 | if (PyArg_ParseTuple(args, "sO&:pathconf", &path, |
| 7333 | conv_path_confname, &name)) { |
| 7334 | long limit; |
| 7335 | |
| 7336 | errno = 0; |
| 7337 | limit = pathconf(path, name); |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 7338 | if (limit == -1 && errno != 0) { |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7339 | if (errno == EINVAL) |
| 7340 | /* could be a path or name problem */ |
| 7341 | posix_error(); |
| 7342 | else |
| 7343 | posix_error_with_filename(path); |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 7344 | } |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7345 | else |
| 7346 | result = PyInt_FromLong(limit); |
| 7347 | } |
| 7348 | return result; |
| 7349 | } |
| 7350 | #endif |
| 7351 | |
| 7352 | #ifdef HAVE_CONFSTR |
| 7353 | static struct constdef posix_constants_confstr[] = { |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7354 | #ifdef _CS_ARCHITECTURE |
| 7355 | {"CS_ARCHITECTURE", _CS_ARCHITECTURE}, |
| 7356 | #endif |
| 7357 | #ifdef _CS_HOSTNAME |
| 7358 | {"CS_HOSTNAME", _CS_HOSTNAME}, |
| 7359 | #endif |
| 7360 | #ifdef _CS_HW_PROVIDER |
| 7361 | {"CS_HW_PROVIDER", _CS_HW_PROVIDER}, |
| 7362 | #endif |
| 7363 | #ifdef _CS_HW_SERIAL |
| 7364 | {"CS_HW_SERIAL", _CS_HW_SERIAL}, |
| 7365 | #endif |
| 7366 | #ifdef _CS_INITTAB_NAME |
| 7367 | {"CS_INITTAB_NAME", _CS_INITTAB_NAME}, |
| 7368 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7369 | #ifdef _CS_LFS64_CFLAGS |
| 7370 | {"CS_LFS64_CFLAGS", _CS_LFS64_CFLAGS}, |
| 7371 | #endif |
| 7372 | #ifdef _CS_LFS64_LDFLAGS |
| 7373 | {"CS_LFS64_LDFLAGS", _CS_LFS64_LDFLAGS}, |
| 7374 | #endif |
| 7375 | #ifdef _CS_LFS64_LIBS |
| 7376 | {"CS_LFS64_LIBS", _CS_LFS64_LIBS}, |
| 7377 | #endif |
| 7378 | #ifdef _CS_LFS64_LINTFLAGS |
| 7379 | {"CS_LFS64_LINTFLAGS", _CS_LFS64_LINTFLAGS}, |
| 7380 | #endif |
| 7381 | #ifdef _CS_LFS_CFLAGS |
| 7382 | {"CS_LFS_CFLAGS", _CS_LFS_CFLAGS}, |
| 7383 | #endif |
| 7384 | #ifdef _CS_LFS_LDFLAGS |
| 7385 | {"CS_LFS_LDFLAGS", _CS_LFS_LDFLAGS}, |
| 7386 | #endif |
| 7387 | #ifdef _CS_LFS_LIBS |
| 7388 | {"CS_LFS_LIBS", _CS_LFS_LIBS}, |
| 7389 | #endif |
| 7390 | #ifdef _CS_LFS_LINTFLAGS |
| 7391 | {"CS_LFS_LINTFLAGS", _CS_LFS_LINTFLAGS}, |
| 7392 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7393 | #ifdef _CS_MACHINE |
| 7394 | {"CS_MACHINE", _CS_MACHINE}, |
| 7395 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7396 | #ifdef _CS_PATH |
| 7397 | {"CS_PATH", _CS_PATH}, |
| 7398 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7399 | #ifdef _CS_RELEASE |
| 7400 | {"CS_RELEASE", _CS_RELEASE}, |
| 7401 | #endif |
| 7402 | #ifdef _CS_SRPC_DOMAIN |
| 7403 | {"CS_SRPC_DOMAIN", _CS_SRPC_DOMAIN}, |
| 7404 | #endif |
| 7405 | #ifdef _CS_SYSNAME |
| 7406 | {"CS_SYSNAME", _CS_SYSNAME}, |
| 7407 | #endif |
| 7408 | #ifdef _CS_VERSION |
| 7409 | {"CS_VERSION", _CS_VERSION}, |
| 7410 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7411 | #ifdef _CS_XBS5_ILP32_OFF32_CFLAGS |
| 7412 | {"CS_XBS5_ILP32_OFF32_CFLAGS", _CS_XBS5_ILP32_OFF32_CFLAGS}, |
| 7413 | #endif |
| 7414 | #ifdef _CS_XBS5_ILP32_OFF32_LDFLAGS |
| 7415 | {"CS_XBS5_ILP32_OFF32_LDFLAGS", _CS_XBS5_ILP32_OFF32_LDFLAGS}, |
| 7416 | #endif |
| 7417 | #ifdef _CS_XBS5_ILP32_OFF32_LIBS |
| 7418 | {"CS_XBS5_ILP32_OFF32_LIBS", _CS_XBS5_ILP32_OFF32_LIBS}, |
| 7419 | #endif |
| 7420 | #ifdef _CS_XBS5_ILP32_OFF32_LINTFLAGS |
| 7421 | {"CS_XBS5_ILP32_OFF32_LINTFLAGS", _CS_XBS5_ILP32_OFF32_LINTFLAGS}, |
| 7422 | #endif |
| 7423 | #ifdef _CS_XBS5_ILP32_OFFBIG_CFLAGS |
| 7424 | {"CS_XBS5_ILP32_OFFBIG_CFLAGS", _CS_XBS5_ILP32_OFFBIG_CFLAGS}, |
| 7425 | #endif |
| 7426 | #ifdef _CS_XBS5_ILP32_OFFBIG_LDFLAGS |
| 7427 | {"CS_XBS5_ILP32_OFFBIG_LDFLAGS", _CS_XBS5_ILP32_OFFBIG_LDFLAGS}, |
| 7428 | #endif |
| 7429 | #ifdef _CS_XBS5_ILP32_OFFBIG_LIBS |
| 7430 | {"CS_XBS5_ILP32_OFFBIG_LIBS", _CS_XBS5_ILP32_OFFBIG_LIBS}, |
| 7431 | #endif |
| 7432 | #ifdef _CS_XBS5_ILP32_OFFBIG_LINTFLAGS |
| 7433 | {"CS_XBS5_ILP32_OFFBIG_LINTFLAGS", _CS_XBS5_ILP32_OFFBIG_LINTFLAGS}, |
| 7434 | #endif |
| 7435 | #ifdef _CS_XBS5_LP64_OFF64_CFLAGS |
| 7436 | {"CS_XBS5_LP64_OFF64_CFLAGS", _CS_XBS5_LP64_OFF64_CFLAGS}, |
| 7437 | #endif |
| 7438 | #ifdef _CS_XBS5_LP64_OFF64_LDFLAGS |
| 7439 | {"CS_XBS5_LP64_OFF64_LDFLAGS", _CS_XBS5_LP64_OFF64_LDFLAGS}, |
| 7440 | #endif |
| 7441 | #ifdef _CS_XBS5_LP64_OFF64_LIBS |
| 7442 | {"CS_XBS5_LP64_OFF64_LIBS", _CS_XBS5_LP64_OFF64_LIBS}, |
| 7443 | #endif |
| 7444 | #ifdef _CS_XBS5_LP64_OFF64_LINTFLAGS |
| 7445 | {"CS_XBS5_LP64_OFF64_LINTFLAGS", _CS_XBS5_LP64_OFF64_LINTFLAGS}, |
| 7446 | #endif |
| 7447 | #ifdef _CS_XBS5_LPBIG_OFFBIG_CFLAGS |
| 7448 | {"CS_XBS5_LPBIG_OFFBIG_CFLAGS", _CS_XBS5_LPBIG_OFFBIG_CFLAGS}, |
| 7449 | #endif |
| 7450 | #ifdef _CS_XBS5_LPBIG_OFFBIG_LDFLAGS |
| 7451 | {"CS_XBS5_LPBIG_OFFBIG_LDFLAGS", _CS_XBS5_LPBIG_OFFBIG_LDFLAGS}, |
| 7452 | #endif |
| 7453 | #ifdef _CS_XBS5_LPBIG_OFFBIG_LIBS |
| 7454 | {"CS_XBS5_LPBIG_OFFBIG_LIBS", _CS_XBS5_LPBIG_OFFBIG_LIBS}, |
| 7455 | #endif |
| 7456 | #ifdef _CS_XBS5_LPBIG_OFFBIG_LINTFLAGS |
| 7457 | {"CS_XBS5_LPBIG_OFFBIG_LINTFLAGS", _CS_XBS5_LPBIG_OFFBIG_LINTFLAGS}, |
| 7458 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7459 | #ifdef _MIPS_CS_AVAIL_PROCESSORS |
| 7460 | {"MIPS_CS_AVAIL_PROCESSORS", _MIPS_CS_AVAIL_PROCESSORS}, |
| 7461 | #endif |
| 7462 | #ifdef _MIPS_CS_BASE |
| 7463 | {"MIPS_CS_BASE", _MIPS_CS_BASE}, |
| 7464 | #endif |
| 7465 | #ifdef _MIPS_CS_HOSTID |
| 7466 | {"MIPS_CS_HOSTID", _MIPS_CS_HOSTID}, |
| 7467 | #endif |
| 7468 | #ifdef _MIPS_CS_HW_NAME |
| 7469 | {"MIPS_CS_HW_NAME", _MIPS_CS_HW_NAME}, |
| 7470 | #endif |
| 7471 | #ifdef _MIPS_CS_NUM_PROCESSORS |
| 7472 | {"MIPS_CS_NUM_PROCESSORS", _MIPS_CS_NUM_PROCESSORS}, |
| 7473 | #endif |
| 7474 | #ifdef _MIPS_CS_OSREL_MAJ |
| 7475 | {"MIPS_CS_OSREL_MAJ", _MIPS_CS_OSREL_MAJ}, |
| 7476 | #endif |
| 7477 | #ifdef _MIPS_CS_OSREL_MIN |
| 7478 | {"MIPS_CS_OSREL_MIN", _MIPS_CS_OSREL_MIN}, |
| 7479 | #endif |
| 7480 | #ifdef _MIPS_CS_OSREL_PATCH |
| 7481 | {"MIPS_CS_OSREL_PATCH", _MIPS_CS_OSREL_PATCH}, |
| 7482 | #endif |
| 7483 | #ifdef _MIPS_CS_OS_NAME |
| 7484 | {"MIPS_CS_OS_NAME", _MIPS_CS_OS_NAME}, |
| 7485 | #endif |
| 7486 | #ifdef _MIPS_CS_OS_PROVIDER |
| 7487 | {"MIPS_CS_OS_PROVIDER", _MIPS_CS_OS_PROVIDER}, |
| 7488 | #endif |
| 7489 | #ifdef _MIPS_CS_PROCESSORS |
| 7490 | {"MIPS_CS_PROCESSORS", _MIPS_CS_PROCESSORS}, |
| 7491 | #endif |
| 7492 | #ifdef _MIPS_CS_SERIAL |
| 7493 | {"MIPS_CS_SERIAL", _MIPS_CS_SERIAL}, |
| 7494 | #endif |
| 7495 | #ifdef _MIPS_CS_VENDOR |
| 7496 | {"MIPS_CS_VENDOR", _MIPS_CS_VENDOR}, |
| 7497 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7498 | }; |
| 7499 | |
| 7500 | static int |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 7501 | conv_confstr_confname(PyObject *arg, int *valuep) |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7502 | { |
| 7503 | return conv_confname(arg, valuep, posix_constants_confstr, |
| 7504 | sizeof(posix_constants_confstr) |
| 7505 | / sizeof(struct constdef)); |
| 7506 | } |
| 7507 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7508 | PyDoc_STRVAR(posix_confstr__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 7509 | "confstr(name) -> string\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7510 | Return a string-valued system configuration variable."); |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7511 | |
| 7512 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 7513 | posix_confstr(PyObject *self, PyObject *args) |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7514 | { |
| 7515 | PyObject *result = NULL; |
| 7516 | int name; |
Neal Norwitz | 449b24e | 2006-04-20 06:56:05 +0000 | [diff] [blame] | 7517 | char buffer[256]; |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7518 | |
| 7519 | if (PyArg_ParseTuple(args, "O&:confstr", conv_confstr_confname, &name)) { |
Skip Montanaro | dd527fc | 2006-04-18 00:49:49 +0000 | [diff] [blame] | 7520 | int len; |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7521 | |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7522 | errno = 0; |
Skip Montanaro | dd527fc | 2006-04-18 00:49:49 +0000 | [diff] [blame] | 7523 | len = confstr(name, buffer, sizeof(buffer)); |
Skip Montanaro | 94785ef | 2006-04-20 01:29:48 +0000 | [diff] [blame] | 7524 | if (len == 0) { |
| 7525 | if (errno) { |
| 7526 | posix_error(); |
| 7527 | } |
| 7528 | else { |
| 7529 | result = Py_None; |
| 7530 | Py_INCREF(Py_None); |
| 7531 | } |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7532 | } |
| 7533 | else { |
Neal Norwitz | 0d21b1e | 2006-04-20 06:44:42 +0000 | [diff] [blame] | 7534 | if ((unsigned int)len >= sizeof(buffer)) { |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 7535 | result = PyString_FromStringAndSize(NULL, len-1); |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7536 | if (result != NULL) |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 7537 | confstr(name, PyString_AS_STRING(result), len); |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7538 | } |
| 7539 | else |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 7540 | result = PyString_FromStringAndSize(buffer, len-1); |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7541 | } |
| 7542 | } |
| 7543 | return result; |
| 7544 | } |
| 7545 | #endif |
| 7546 | |
| 7547 | |
| 7548 | #ifdef HAVE_SYSCONF |
| 7549 | static struct constdef posix_constants_sysconf[] = { |
| 7550 | #ifdef _SC_2_CHAR_TERM |
| 7551 | {"SC_2_CHAR_TERM", _SC_2_CHAR_TERM}, |
| 7552 | #endif |
| 7553 | #ifdef _SC_2_C_BIND |
| 7554 | {"SC_2_C_BIND", _SC_2_C_BIND}, |
| 7555 | #endif |
| 7556 | #ifdef _SC_2_C_DEV |
| 7557 | {"SC_2_C_DEV", _SC_2_C_DEV}, |
| 7558 | #endif |
| 7559 | #ifdef _SC_2_C_VERSION |
| 7560 | {"SC_2_C_VERSION", _SC_2_C_VERSION}, |
| 7561 | #endif |
| 7562 | #ifdef _SC_2_FORT_DEV |
| 7563 | {"SC_2_FORT_DEV", _SC_2_FORT_DEV}, |
| 7564 | #endif |
| 7565 | #ifdef _SC_2_FORT_RUN |
| 7566 | {"SC_2_FORT_RUN", _SC_2_FORT_RUN}, |
| 7567 | #endif |
| 7568 | #ifdef _SC_2_LOCALEDEF |
| 7569 | {"SC_2_LOCALEDEF", _SC_2_LOCALEDEF}, |
| 7570 | #endif |
| 7571 | #ifdef _SC_2_SW_DEV |
| 7572 | {"SC_2_SW_DEV", _SC_2_SW_DEV}, |
| 7573 | #endif |
| 7574 | #ifdef _SC_2_UPE |
| 7575 | {"SC_2_UPE", _SC_2_UPE}, |
| 7576 | #endif |
| 7577 | #ifdef _SC_2_VERSION |
| 7578 | {"SC_2_VERSION", _SC_2_VERSION}, |
| 7579 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7580 | #ifdef _SC_ABI_ASYNCHRONOUS_IO |
| 7581 | {"SC_ABI_ASYNCHRONOUS_IO", _SC_ABI_ASYNCHRONOUS_IO}, |
| 7582 | #endif |
| 7583 | #ifdef _SC_ACL |
| 7584 | {"SC_ACL", _SC_ACL}, |
| 7585 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7586 | #ifdef _SC_AIO_LISTIO_MAX |
| 7587 | {"SC_AIO_LISTIO_MAX", _SC_AIO_LISTIO_MAX}, |
| 7588 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7589 | #ifdef _SC_AIO_MAX |
| 7590 | {"SC_AIO_MAX", _SC_AIO_MAX}, |
| 7591 | #endif |
| 7592 | #ifdef _SC_AIO_PRIO_DELTA_MAX |
| 7593 | {"SC_AIO_PRIO_DELTA_MAX", _SC_AIO_PRIO_DELTA_MAX}, |
| 7594 | #endif |
| 7595 | #ifdef _SC_ARG_MAX |
| 7596 | {"SC_ARG_MAX", _SC_ARG_MAX}, |
| 7597 | #endif |
| 7598 | #ifdef _SC_ASYNCHRONOUS_IO |
| 7599 | {"SC_ASYNCHRONOUS_IO", _SC_ASYNCHRONOUS_IO}, |
| 7600 | #endif |
| 7601 | #ifdef _SC_ATEXIT_MAX |
| 7602 | {"SC_ATEXIT_MAX", _SC_ATEXIT_MAX}, |
| 7603 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7604 | #ifdef _SC_AUDIT |
| 7605 | {"SC_AUDIT", _SC_AUDIT}, |
| 7606 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7607 | #ifdef _SC_AVPHYS_PAGES |
| 7608 | {"SC_AVPHYS_PAGES", _SC_AVPHYS_PAGES}, |
| 7609 | #endif |
| 7610 | #ifdef _SC_BC_BASE_MAX |
| 7611 | {"SC_BC_BASE_MAX", _SC_BC_BASE_MAX}, |
| 7612 | #endif |
| 7613 | #ifdef _SC_BC_DIM_MAX |
| 7614 | {"SC_BC_DIM_MAX", _SC_BC_DIM_MAX}, |
| 7615 | #endif |
| 7616 | #ifdef _SC_BC_SCALE_MAX |
| 7617 | {"SC_BC_SCALE_MAX", _SC_BC_SCALE_MAX}, |
| 7618 | #endif |
| 7619 | #ifdef _SC_BC_STRING_MAX |
| 7620 | {"SC_BC_STRING_MAX", _SC_BC_STRING_MAX}, |
| 7621 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7622 | #ifdef _SC_CAP |
| 7623 | {"SC_CAP", _SC_CAP}, |
| 7624 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7625 | #ifdef _SC_CHARCLASS_NAME_MAX |
| 7626 | {"SC_CHARCLASS_NAME_MAX", _SC_CHARCLASS_NAME_MAX}, |
| 7627 | #endif |
| 7628 | #ifdef _SC_CHAR_BIT |
| 7629 | {"SC_CHAR_BIT", _SC_CHAR_BIT}, |
| 7630 | #endif |
| 7631 | #ifdef _SC_CHAR_MAX |
| 7632 | {"SC_CHAR_MAX", _SC_CHAR_MAX}, |
| 7633 | #endif |
| 7634 | #ifdef _SC_CHAR_MIN |
| 7635 | {"SC_CHAR_MIN", _SC_CHAR_MIN}, |
| 7636 | #endif |
| 7637 | #ifdef _SC_CHILD_MAX |
| 7638 | {"SC_CHILD_MAX", _SC_CHILD_MAX}, |
| 7639 | #endif |
| 7640 | #ifdef _SC_CLK_TCK |
| 7641 | {"SC_CLK_TCK", _SC_CLK_TCK}, |
| 7642 | #endif |
| 7643 | #ifdef _SC_COHER_BLKSZ |
| 7644 | {"SC_COHER_BLKSZ", _SC_COHER_BLKSZ}, |
| 7645 | #endif |
| 7646 | #ifdef _SC_COLL_WEIGHTS_MAX |
| 7647 | {"SC_COLL_WEIGHTS_MAX", _SC_COLL_WEIGHTS_MAX}, |
| 7648 | #endif |
| 7649 | #ifdef _SC_DCACHE_ASSOC |
| 7650 | {"SC_DCACHE_ASSOC", _SC_DCACHE_ASSOC}, |
| 7651 | #endif |
| 7652 | #ifdef _SC_DCACHE_BLKSZ |
| 7653 | {"SC_DCACHE_BLKSZ", _SC_DCACHE_BLKSZ}, |
| 7654 | #endif |
| 7655 | #ifdef _SC_DCACHE_LINESZ |
| 7656 | {"SC_DCACHE_LINESZ", _SC_DCACHE_LINESZ}, |
| 7657 | #endif |
| 7658 | #ifdef _SC_DCACHE_SZ |
| 7659 | {"SC_DCACHE_SZ", _SC_DCACHE_SZ}, |
| 7660 | #endif |
| 7661 | #ifdef _SC_DCACHE_TBLKSZ |
| 7662 | {"SC_DCACHE_TBLKSZ", _SC_DCACHE_TBLKSZ}, |
| 7663 | #endif |
| 7664 | #ifdef _SC_DELAYTIMER_MAX |
| 7665 | {"SC_DELAYTIMER_MAX", _SC_DELAYTIMER_MAX}, |
| 7666 | #endif |
| 7667 | #ifdef _SC_EQUIV_CLASS_MAX |
| 7668 | {"SC_EQUIV_CLASS_MAX", _SC_EQUIV_CLASS_MAX}, |
| 7669 | #endif |
| 7670 | #ifdef _SC_EXPR_NEST_MAX |
| 7671 | {"SC_EXPR_NEST_MAX", _SC_EXPR_NEST_MAX}, |
| 7672 | #endif |
| 7673 | #ifdef _SC_FSYNC |
| 7674 | {"SC_FSYNC", _SC_FSYNC}, |
| 7675 | #endif |
| 7676 | #ifdef _SC_GETGR_R_SIZE_MAX |
| 7677 | {"SC_GETGR_R_SIZE_MAX", _SC_GETGR_R_SIZE_MAX}, |
| 7678 | #endif |
| 7679 | #ifdef _SC_GETPW_R_SIZE_MAX |
| 7680 | {"SC_GETPW_R_SIZE_MAX", _SC_GETPW_R_SIZE_MAX}, |
| 7681 | #endif |
| 7682 | #ifdef _SC_ICACHE_ASSOC |
| 7683 | {"SC_ICACHE_ASSOC", _SC_ICACHE_ASSOC}, |
| 7684 | #endif |
| 7685 | #ifdef _SC_ICACHE_BLKSZ |
| 7686 | {"SC_ICACHE_BLKSZ", _SC_ICACHE_BLKSZ}, |
| 7687 | #endif |
| 7688 | #ifdef _SC_ICACHE_LINESZ |
| 7689 | {"SC_ICACHE_LINESZ", _SC_ICACHE_LINESZ}, |
| 7690 | #endif |
| 7691 | #ifdef _SC_ICACHE_SZ |
| 7692 | {"SC_ICACHE_SZ", _SC_ICACHE_SZ}, |
| 7693 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7694 | #ifdef _SC_INF |
| 7695 | {"SC_INF", _SC_INF}, |
| 7696 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7697 | #ifdef _SC_INT_MAX |
| 7698 | {"SC_INT_MAX", _SC_INT_MAX}, |
| 7699 | #endif |
| 7700 | #ifdef _SC_INT_MIN |
| 7701 | {"SC_INT_MIN", _SC_INT_MIN}, |
| 7702 | #endif |
| 7703 | #ifdef _SC_IOV_MAX |
| 7704 | {"SC_IOV_MAX", _SC_IOV_MAX}, |
| 7705 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7706 | #ifdef _SC_IP_SECOPTS |
| 7707 | {"SC_IP_SECOPTS", _SC_IP_SECOPTS}, |
| 7708 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7709 | #ifdef _SC_JOB_CONTROL |
| 7710 | {"SC_JOB_CONTROL", _SC_JOB_CONTROL}, |
| 7711 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7712 | #ifdef _SC_KERN_POINTERS |
| 7713 | {"SC_KERN_POINTERS", _SC_KERN_POINTERS}, |
| 7714 | #endif |
| 7715 | #ifdef _SC_KERN_SIM |
| 7716 | {"SC_KERN_SIM", _SC_KERN_SIM}, |
| 7717 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7718 | #ifdef _SC_LINE_MAX |
| 7719 | {"SC_LINE_MAX", _SC_LINE_MAX}, |
| 7720 | #endif |
| 7721 | #ifdef _SC_LOGIN_NAME_MAX |
| 7722 | {"SC_LOGIN_NAME_MAX", _SC_LOGIN_NAME_MAX}, |
| 7723 | #endif |
| 7724 | #ifdef _SC_LOGNAME_MAX |
| 7725 | {"SC_LOGNAME_MAX", _SC_LOGNAME_MAX}, |
| 7726 | #endif |
| 7727 | #ifdef _SC_LONG_BIT |
| 7728 | {"SC_LONG_BIT", _SC_LONG_BIT}, |
| 7729 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7730 | #ifdef _SC_MAC |
| 7731 | {"SC_MAC", _SC_MAC}, |
| 7732 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7733 | #ifdef _SC_MAPPED_FILES |
| 7734 | {"SC_MAPPED_FILES", _SC_MAPPED_FILES}, |
| 7735 | #endif |
| 7736 | #ifdef _SC_MAXPID |
| 7737 | {"SC_MAXPID", _SC_MAXPID}, |
| 7738 | #endif |
| 7739 | #ifdef _SC_MB_LEN_MAX |
| 7740 | {"SC_MB_LEN_MAX", _SC_MB_LEN_MAX}, |
| 7741 | #endif |
| 7742 | #ifdef _SC_MEMLOCK |
| 7743 | {"SC_MEMLOCK", _SC_MEMLOCK}, |
| 7744 | #endif |
| 7745 | #ifdef _SC_MEMLOCK_RANGE |
| 7746 | {"SC_MEMLOCK_RANGE", _SC_MEMLOCK_RANGE}, |
| 7747 | #endif |
| 7748 | #ifdef _SC_MEMORY_PROTECTION |
| 7749 | {"SC_MEMORY_PROTECTION", _SC_MEMORY_PROTECTION}, |
| 7750 | #endif |
| 7751 | #ifdef _SC_MESSAGE_PASSING |
| 7752 | {"SC_MESSAGE_PASSING", _SC_MESSAGE_PASSING}, |
| 7753 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7754 | #ifdef _SC_MMAP_FIXED_ALIGNMENT |
| 7755 | {"SC_MMAP_FIXED_ALIGNMENT", _SC_MMAP_FIXED_ALIGNMENT}, |
| 7756 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7757 | #ifdef _SC_MQ_OPEN_MAX |
| 7758 | {"SC_MQ_OPEN_MAX", _SC_MQ_OPEN_MAX}, |
| 7759 | #endif |
| 7760 | #ifdef _SC_MQ_PRIO_MAX |
| 7761 | {"SC_MQ_PRIO_MAX", _SC_MQ_PRIO_MAX}, |
| 7762 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7763 | #ifdef _SC_NACLS_MAX |
| 7764 | {"SC_NACLS_MAX", _SC_NACLS_MAX}, |
| 7765 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7766 | #ifdef _SC_NGROUPS_MAX |
| 7767 | {"SC_NGROUPS_MAX", _SC_NGROUPS_MAX}, |
| 7768 | #endif |
| 7769 | #ifdef _SC_NL_ARGMAX |
| 7770 | {"SC_NL_ARGMAX", _SC_NL_ARGMAX}, |
| 7771 | #endif |
| 7772 | #ifdef _SC_NL_LANGMAX |
| 7773 | {"SC_NL_LANGMAX", _SC_NL_LANGMAX}, |
| 7774 | #endif |
| 7775 | #ifdef _SC_NL_MSGMAX |
| 7776 | {"SC_NL_MSGMAX", _SC_NL_MSGMAX}, |
| 7777 | #endif |
| 7778 | #ifdef _SC_NL_NMAX |
| 7779 | {"SC_NL_NMAX", _SC_NL_NMAX}, |
| 7780 | #endif |
| 7781 | #ifdef _SC_NL_SETMAX |
| 7782 | {"SC_NL_SETMAX", _SC_NL_SETMAX}, |
| 7783 | #endif |
| 7784 | #ifdef _SC_NL_TEXTMAX |
| 7785 | {"SC_NL_TEXTMAX", _SC_NL_TEXTMAX}, |
| 7786 | #endif |
| 7787 | #ifdef _SC_NPROCESSORS_CONF |
| 7788 | {"SC_NPROCESSORS_CONF", _SC_NPROCESSORS_CONF}, |
| 7789 | #endif |
| 7790 | #ifdef _SC_NPROCESSORS_ONLN |
| 7791 | {"SC_NPROCESSORS_ONLN", _SC_NPROCESSORS_ONLN}, |
| 7792 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7793 | #ifdef _SC_NPROC_CONF |
| 7794 | {"SC_NPROC_CONF", _SC_NPROC_CONF}, |
| 7795 | #endif |
| 7796 | #ifdef _SC_NPROC_ONLN |
| 7797 | {"SC_NPROC_ONLN", _SC_NPROC_ONLN}, |
| 7798 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7799 | #ifdef _SC_NZERO |
| 7800 | {"SC_NZERO", _SC_NZERO}, |
| 7801 | #endif |
| 7802 | #ifdef _SC_OPEN_MAX |
| 7803 | {"SC_OPEN_MAX", _SC_OPEN_MAX}, |
| 7804 | #endif |
| 7805 | #ifdef _SC_PAGESIZE |
| 7806 | {"SC_PAGESIZE", _SC_PAGESIZE}, |
| 7807 | #endif |
| 7808 | #ifdef _SC_PAGE_SIZE |
| 7809 | {"SC_PAGE_SIZE", _SC_PAGE_SIZE}, |
| 7810 | #endif |
| 7811 | #ifdef _SC_PASS_MAX |
| 7812 | {"SC_PASS_MAX", _SC_PASS_MAX}, |
| 7813 | #endif |
| 7814 | #ifdef _SC_PHYS_PAGES |
| 7815 | {"SC_PHYS_PAGES", _SC_PHYS_PAGES}, |
| 7816 | #endif |
| 7817 | #ifdef _SC_PII |
| 7818 | {"SC_PII", _SC_PII}, |
| 7819 | #endif |
| 7820 | #ifdef _SC_PII_INTERNET |
| 7821 | {"SC_PII_INTERNET", _SC_PII_INTERNET}, |
| 7822 | #endif |
| 7823 | #ifdef _SC_PII_INTERNET_DGRAM |
| 7824 | {"SC_PII_INTERNET_DGRAM", _SC_PII_INTERNET_DGRAM}, |
| 7825 | #endif |
| 7826 | #ifdef _SC_PII_INTERNET_STREAM |
| 7827 | {"SC_PII_INTERNET_STREAM", _SC_PII_INTERNET_STREAM}, |
| 7828 | #endif |
| 7829 | #ifdef _SC_PII_OSI |
| 7830 | {"SC_PII_OSI", _SC_PII_OSI}, |
| 7831 | #endif |
| 7832 | #ifdef _SC_PII_OSI_CLTS |
| 7833 | {"SC_PII_OSI_CLTS", _SC_PII_OSI_CLTS}, |
| 7834 | #endif |
| 7835 | #ifdef _SC_PII_OSI_COTS |
| 7836 | {"SC_PII_OSI_COTS", _SC_PII_OSI_COTS}, |
| 7837 | #endif |
| 7838 | #ifdef _SC_PII_OSI_M |
| 7839 | {"SC_PII_OSI_M", _SC_PII_OSI_M}, |
| 7840 | #endif |
| 7841 | #ifdef _SC_PII_SOCKET |
| 7842 | {"SC_PII_SOCKET", _SC_PII_SOCKET}, |
| 7843 | #endif |
| 7844 | #ifdef _SC_PII_XTI |
| 7845 | {"SC_PII_XTI", _SC_PII_XTI}, |
| 7846 | #endif |
| 7847 | #ifdef _SC_POLL |
| 7848 | {"SC_POLL", _SC_POLL}, |
| 7849 | #endif |
| 7850 | #ifdef _SC_PRIORITIZED_IO |
| 7851 | {"SC_PRIORITIZED_IO", _SC_PRIORITIZED_IO}, |
| 7852 | #endif |
| 7853 | #ifdef _SC_PRIORITY_SCHEDULING |
| 7854 | {"SC_PRIORITY_SCHEDULING", _SC_PRIORITY_SCHEDULING}, |
| 7855 | #endif |
| 7856 | #ifdef _SC_REALTIME_SIGNALS |
| 7857 | {"SC_REALTIME_SIGNALS", _SC_REALTIME_SIGNALS}, |
| 7858 | #endif |
| 7859 | #ifdef _SC_RE_DUP_MAX |
| 7860 | {"SC_RE_DUP_MAX", _SC_RE_DUP_MAX}, |
| 7861 | #endif |
| 7862 | #ifdef _SC_RTSIG_MAX |
| 7863 | {"SC_RTSIG_MAX", _SC_RTSIG_MAX}, |
| 7864 | #endif |
| 7865 | #ifdef _SC_SAVED_IDS |
| 7866 | {"SC_SAVED_IDS", _SC_SAVED_IDS}, |
| 7867 | #endif |
| 7868 | #ifdef _SC_SCHAR_MAX |
| 7869 | {"SC_SCHAR_MAX", _SC_SCHAR_MAX}, |
| 7870 | #endif |
| 7871 | #ifdef _SC_SCHAR_MIN |
| 7872 | {"SC_SCHAR_MIN", _SC_SCHAR_MIN}, |
| 7873 | #endif |
| 7874 | #ifdef _SC_SELECT |
| 7875 | {"SC_SELECT", _SC_SELECT}, |
| 7876 | #endif |
| 7877 | #ifdef _SC_SEMAPHORES |
| 7878 | {"SC_SEMAPHORES", _SC_SEMAPHORES}, |
| 7879 | #endif |
| 7880 | #ifdef _SC_SEM_NSEMS_MAX |
| 7881 | {"SC_SEM_NSEMS_MAX", _SC_SEM_NSEMS_MAX}, |
| 7882 | #endif |
| 7883 | #ifdef _SC_SEM_VALUE_MAX |
| 7884 | {"SC_SEM_VALUE_MAX", _SC_SEM_VALUE_MAX}, |
| 7885 | #endif |
| 7886 | #ifdef _SC_SHARED_MEMORY_OBJECTS |
| 7887 | {"SC_SHARED_MEMORY_OBJECTS", _SC_SHARED_MEMORY_OBJECTS}, |
| 7888 | #endif |
| 7889 | #ifdef _SC_SHRT_MAX |
| 7890 | {"SC_SHRT_MAX", _SC_SHRT_MAX}, |
| 7891 | #endif |
| 7892 | #ifdef _SC_SHRT_MIN |
| 7893 | {"SC_SHRT_MIN", _SC_SHRT_MIN}, |
| 7894 | #endif |
| 7895 | #ifdef _SC_SIGQUEUE_MAX |
| 7896 | {"SC_SIGQUEUE_MAX", _SC_SIGQUEUE_MAX}, |
| 7897 | #endif |
| 7898 | #ifdef _SC_SIGRT_MAX |
| 7899 | {"SC_SIGRT_MAX", _SC_SIGRT_MAX}, |
| 7900 | #endif |
| 7901 | #ifdef _SC_SIGRT_MIN |
| 7902 | {"SC_SIGRT_MIN", _SC_SIGRT_MIN}, |
| 7903 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 7904 | #ifdef _SC_SOFTPOWER |
| 7905 | {"SC_SOFTPOWER", _SC_SOFTPOWER}, |
| 7906 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 7907 | #ifdef _SC_SPLIT_CACHE |
| 7908 | {"SC_SPLIT_CACHE", _SC_SPLIT_CACHE}, |
| 7909 | #endif |
| 7910 | #ifdef _SC_SSIZE_MAX |
| 7911 | {"SC_SSIZE_MAX", _SC_SSIZE_MAX}, |
| 7912 | #endif |
| 7913 | #ifdef _SC_STACK_PROT |
| 7914 | {"SC_STACK_PROT", _SC_STACK_PROT}, |
| 7915 | #endif |
| 7916 | #ifdef _SC_STREAM_MAX |
| 7917 | {"SC_STREAM_MAX", _SC_STREAM_MAX}, |
| 7918 | #endif |
| 7919 | #ifdef _SC_SYNCHRONIZED_IO |
| 7920 | {"SC_SYNCHRONIZED_IO", _SC_SYNCHRONIZED_IO}, |
| 7921 | #endif |
| 7922 | #ifdef _SC_THREADS |
| 7923 | {"SC_THREADS", _SC_THREADS}, |
| 7924 | #endif |
| 7925 | #ifdef _SC_THREAD_ATTR_STACKADDR |
| 7926 | {"SC_THREAD_ATTR_STACKADDR", _SC_THREAD_ATTR_STACKADDR}, |
| 7927 | #endif |
| 7928 | #ifdef _SC_THREAD_ATTR_STACKSIZE |
| 7929 | {"SC_THREAD_ATTR_STACKSIZE", _SC_THREAD_ATTR_STACKSIZE}, |
| 7930 | #endif |
| 7931 | #ifdef _SC_THREAD_DESTRUCTOR_ITERATIONS |
| 7932 | {"SC_THREAD_DESTRUCTOR_ITERATIONS", _SC_THREAD_DESTRUCTOR_ITERATIONS}, |
| 7933 | #endif |
| 7934 | #ifdef _SC_THREAD_KEYS_MAX |
| 7935 | {"SC_THREAD_KEYS_MAX", _SC_THREAD_KEYS_MAX}, |
| 7936 | #endif |
| 7937 | #ifdef _SC_THREAD_PRIORITY_SCHEDULING |
| 7938 | {"SC_THREAD_PRIORITY_SCHEDULING", _SC_THREAD_PRIORITY_SCHEDULING}, |
| 7939 | #endif |
| 7940 | #ifdef _SC_THREAD_PRIO_INHERIT |
| 7941 | {"SC_THREAD_PRIO_INHERIT", _SC_THREAD_PRIO_INHERIT}, |
| 7942 | #endif |
| 7943 | #ifdef _SC_THREAD_PRIO_PROTECT |
| 7944 | {"SC_THREAD_PRIO_PROTECT", _SC_THREAD_PRIO_PROTECT}, |
| 7945 | #endif |
| 7946 | #ifdef _SC_THREAD_PROCESS_SHARED |
| 7947 | {"SC_THREAD_PROCESS_SHARED", _SC_THREAD_PROCESS_SHARED}, |
| 7948 | #endif |
| 7949 | #ifdef _SC_THREAD_SAFE_FUNCTIONS |
| 7950 | {"SC_THREAD_SAFE_FUNCTIONS", _SC_THREAD_SAFE_FUNCTIONS}, |
| 7951 | #endif |
| 7952 | #ifdef _SC_THREAD_STACK_MIN |
| 7953 | {"SC_THREAD_STACK_MIN", _SC_THREAD_STACK_MIN}, |
| 7954 | #endif |
| 7955 | #ifdef _SC_THREAD_THREADS_MAX |
| 7956 | {"SC_THREAD_THREADS_MAX", _SC_THREAD_THREADS_MAX}, |
| 7957 | #endif |
| 7958 | #ifdef _SC_TIMERS |
| 7959 | {"SC_TIMERS", _SC_TIMERS}, |
| 7960 | #endif |
| 7961 | #ifdef _SC_TIMER_MAX |
| 7962 | {"SC_TIMER_MAX", _SC_TIMER_MAX}, |
| 7963 | #endif |
| 7964 | #ifdef _SC_TTY_NAME_MAX |
| 7965 | {"SC_TTY_NAME_MAX", _SC_TTY_NAME_MAX}, |
| 7966 | #endif |
| 7967 | #ifdef _SC_TZNAME_MAX |
| 7968 | {"SC_TZNAME_MAX", _SC_TZNAME_MAX}, |
| 7969 | #endif |
| 7970 | #ifdef _SC_T_IOV_MAX |
| 7971 | {"SC_T_IOV_MAX", _SC_T_IOV_MAX}, |
| 7972 | #endif |
| 7973 | #ifdef _SC_UCHAR_MAX |
| 7974 | {"SC_UCHAR_MAX", _SC_UCHAR_MAX}, |
| 7975 | #endif |
| 7976 | #ifdef _SC_UINT_MAX |
| 7977 | {"SC_UINT_MAX", _SC_UINT_MAX}, |
| 7978 | #endif |
| 7979 | #ifdef _SC_UIO_MAXIOV |
| 7980 | {"SC_UIO_MAXIOV", _SC_UIO_MAXIOV}, |
| 7981 | #endif |
| 7982 | #ifdef _SC_ULONG_MAX |
| 7983 | {"SC_ULONG_MAX", _SC_ULONG_MAX}, |
| 7984 | #endif |
| 7985 | #ifdef _SC_USHRT_MAX |
| 7986 | {"SC_USHRT_MAX", _SC_USHRT_MAX}, |
| 7987 | #endif |
| 7988 | #ifdef _SC_VERSION |
| 7989 | {"SC_VERSION", _SC_VERSION}, |
| 7990 | #endif |
| 7991 | #ifdef _SC_WORD_BIT |
| 7992 | {"SC_WORD_BIT", _SC_WORD_BIT}, |
| 7993 | #endif |
| 7994 | #ifdef _SC_XBS5_ILP32_OFF32 |
| 7995 | {"SC_XBS5_ILP32_OFF32", _SC_XBS5_ILP32_OFF32}, |
| 7996 | #endif |
| 7997 | #ifdef _SC_XBS5_ILP32_OFFBIG |
| 7998 | {"SC_XBS5_ILP32_OFFBIG", _SC_XBS5_ILP32_OFFBIG}, |
| 7999 | #endif |
| 8000 | #ifdef _SC_XBS5_LP64_OFF64 |
| 8001 | {"SC_XBS5_LP64_OFF64", _SC_XBS5_LP64_OFF64}, |
| 8002 | #endif |
| 8003 | #ifdef _SC_XBS5_LPBIG_OFFBIG |
| 8004 | {"SC_XBS5_LPBIG_OFFBIG", _SC_XBS5_LPBIG_OFFBIG}, |
| 8005 | #endif |
| 8006 | #ifdef _SC_XOPEN_CRYPT |
| 8007 | {"SC_XOPEN_CRYPT", _SC_XOPEN_CRYPT}, |
| 8008 | #endif |
| 8009 | #ifdef _SC_XOPEN_ENH_I18N |
| 8010 | {"SC_XOPEN_ENH_I18N", _SC_XOPEN_ENH_I18N}, |
| 8011 | #endif |
| 8012 | #ifdef _SC_XOPEN_LEGACY |
| 8013 | {"SC_XOPEN_LEGACY", _SC_XOPEN_LEGACY}, |
| 8014 | #endif |
| 8015 | #ifdef _SC_XOPEN_REALTIME |
| 8016 | {"SC_XOPEN_REALTIME", _SC_XOPEN_REALTIME}, |
| 8017 | #endif |
| 8018 | #ifdef _SC_XOPEN_REALTIME_THREADS |
| 8019 | {"SC_XOPEN_REALTIME_THREADS", _SC_XOPEN_REALTIME_THREADS}, |
| 8020 | #endif |
| 8021 | #ifdef _SC_XOPEN_SHM |
| 8022 | {"SC_XOPEN_SHM", _SC_XOPEN_SHM}, |
| 8023 | #endif |
| 8024 | #ifdef _SC_XOPEN_UNIX |
| 8025 | {"SC_XOPEN_UNIX", _SC_XOPEN_UNIX}, |
| 8026 | #endif |
| 8027 | #ifdef _SC_XOPEN_VERSION |
| 8028 | {"SC_XOPEN_VERSION", _SC_XOPEN_VERSION}, |
| 8029 | #endif |
| 8030 | #ifdef _SC_XOPEN_XCU_VERSION |
| 8031 | {"SC_XOPEN_XCU_VERSION", _SC_XOPEN_XCU_VERSION}, |
| 8032 | #endif |
| 8033 | #ifdef _SC_XOPEN_XPG2 |
| 8034 | {"SC_XOPEN_XPG2", _SC_XOPEN_XPG2}, |
| 8035 | #endif |
| 8036 | #ifdef _SC_XOPEN_XPG3 |
| 8037 | {"SC_XOPEN_XPG3", _SC_XOPEN_XPG3}, |
| 8038 | #endif |
| 8039 | #ifdef _SC_XOPEN_XPG4 |
| 8040 | {"SC_XOPEN_XPG4", _SC_XOPEN_XPG4}, |
| 8041 | #endif |
| 8042 | }; |
| 8043 | |
| 8044 | static int |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 8045 | conv_sysconf_confname(PyObject *arg, int *valuep) |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8046 | { |
| 8047 | return conv_confname(arg, valuep, posix_constants_sysconf, |
| 8048 | sizeof(posix_constants_sysconf) |
| 8049 | / sizeof(struct constdef)); |
| 8050 | } |
| 8051 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 8052 | PyDoc_STRVAR(posix_sysconf__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 8053 | "sysconf(name) -> integer\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 8054 | Return an integer-valued system configuration variable."); |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8055 | |
| 8056 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 8057 | posix_sysconf(PyObject *self, PyObject *args) |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8058 | { |
| 8059 | PyObject *result = NULL; |
| 8060 | int name; |
| 8061 | |
| 8062 | if (PyArg_ParseTuple(args, "O&:sysconf", conv_sysconf_confname, &name)) { |
| 8063 | int value; |
| 8064 | |
| 8065 | errno = 0; |
| 8066 | value = sysconf(name); |
| 8067 | if (value == -1 && errno != 0) |
| 8068 | posix_error(); |
| 8069 | else |
| 8070 | result = PyInt_FromLong(value); |
| 8071 | } |
| 8072 | return result; |
| 8073 | } |
| 8074 | #endif |
| 8075 | |
| 8076 | |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 8077 | /* This code is used to ensure that the tables of configuration value names |
| 8078 | * are in sorted order as required by conv_confname(), and also to build the |
| 8079 | * the exported dictionaries that are used to publish information about the |
| 8080 | * names available on the host platform. |
| 8081 | * |
| 8082 | * Sorting the table at runtime ensures that the table is properly ordered |
| 8083 | * when used, even for platforms we're not able to test on. It also makes |
| 8084 | * it easier to add additional entries to the tables. |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 8085 | */ |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 8086 | |
| 8087 | static int |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 8088 | cmp_constdefs(const void *v1, const void *v2) |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 8089 | { |
| 8090 | const struct constdef *c1 = |
| 8091 | (const struct constdef *) v1; |
| 8092 | const struct constdef *c2 = |
| 8093 | (const struct constdef *) v2; |
| 8094 | |
| 8095 | return strcmp(c1->name, c2->name); |
| 8096 | } |
| 8097 | |
| 8098 | static int |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 8099 | setup_confname_table(struct constdef *table, size_t tablesize, |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 8100 | char *tablename, PyObject *module) |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 8101 | { |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 8102 | PyObject *d = NULL; |
Barry Warsaw | 3155db3 | 2000-04-13 15:20:40 +0000 | [diff] [blame] | 8103 | size_t i; |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 8104 | |
| 8105 | qsort(table, tablesize, sizeof(struct constdef), cmp_constdefs); |
| 8106 | d = PyDict_New(); |
Barry Warsaw | 3155db3 | 2000-04-13 15:20:40 +0000 | [diff] [blame] | 8107 | if (d == NULL) |
| 8108 | return -1; |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 8109 | |
Barry Warsaw | 3155db3 | 2000-04-13 15:20:40 +0000 | [diff] [blame] | 8110 | for (i=0; i < tablesize; ++i) { |
| 8111 | PyObject *o = PyInt_FromLong(table[i].value); |
| 8112 | if (o == NULL || PyDict_SetItemString(d, table[i].name, o) == -1) { |
| 8113 | Py_XDECREF(o); |
| 8114 | Py_DECREF(d); |
| 8115 | return -1; |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 8116 | } |
Barry Warsaw | 3155db3 | 2000-04-13 15:20:40 +0000 | [diff] [blame] | 8117 | Py_DECREF(o); |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 8118 | } |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 8119 | return PyModule_AddObject(module, tablename, d); |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 8120 | } |
| 8121 | |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 8122 | /* Return -1 on failure, 0 on success. */ |
| 8123 | static int |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 8124 | setup_confname_tables(PyObject *module) |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 8125 | { |
| 8126 | #if defined(HAVE_FPATHCONF) || defined(HAVE_PATHCONF) |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 8127 | if (setup_confname_table(posix_constants_pathconf, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 8128 | sizeof(posix_constants_pathconf) |
| 8129 | / sizeof(struct constdef), |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 8130 | "pathconf_names", module)) |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 8131 | return -1; |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 8132 | #endif |
| 8133 | #ifdef HAVE_CONFSTR |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 8134 | if (setup_confname_table(posix_constants_confstr, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 8135 | sizeof(posix_constants_confstr) |
| 8136 | / sizeof(struct constdef), |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 8137 | "confstr_names", module)) |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 8138 | return -1; |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 8139 | #endif |
| 8140 | #ifdef HAVE_SYSCONF |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 8141 | if (setup_confname_table(posix_constants_sysconf, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 8142 | sizeof(posix_constants_sysconf) |
| 8143 | / sizeof(struct constdef), |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 8144 | "sysconf_names", module)) |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 8145 | return -1; |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 8146 | #endif |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 8147 | return 0; |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 8148 | } |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 8149 | |
| 8150 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 8151 | PyDoc_STRVAR(posix_abort__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 8152 | "abort() -> does not return!\n\n\ |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8153 | 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] | 8154 | in the hardest way possible on the hosting operating system."); |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8155 | |
| 8156 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 8157 | posix_abort(PyObject *self, PyObject *noargs) |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8158 | { |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8159 | abort(); |
| 8160 | /*NOTREACHED*/ |
| 8161 | Py_FatalError("abort() called from Python code didn't abort!"); |
| 8162 | return NULL; |
| 8163 | } |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 8164 | |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 8165 | #ifdef MS_WINDOWS |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 8166 | PyDoc_STRVAR(win32_startfile__doc__, |
Georg Brandl | f4f4415 | 2006-02-18 22:29:33 +0000 | [diff] [blame] | 8167 | "startfile(filepath [, operation]) - Start a file with its associated\n\ |
| 8168 | application.\n\ |
Tim Peters | f58a7aa | 2000-09-22 10:05:54 +0000 | [diff] [blame] | 8169 | \n\ |
Georg Brandl | f4f4415 | 2006-02-18 22:29:33 +0000 | [diff] [blame] | 8170 | When \"operation\" is not specified or \"open\", this acts like\n\ |
| 8171 | double-clicking the file in Explorer, or giving the file name as an\n\ |
| 8172 | argument to the DOS \"start\" command: the file is opened with whatever\n\ |
| 8173 | application (if any) its extension is associated.\n\ |
| 8174 | When another \"operation\" is given, it specifies what should be done with\n\ |
| 8175 | the file. A typical operation is \"print\".\n\ |
Tim Peters | f58a7aa | 2000-09-22 10:05:54 +0000 | [diff] [blame] | 8176 | \n\ |
| 8177 | startfile returns as soon as the associated application is launched.\n\ |
| 8178 | There is no option to wait for the application to close, and no way\n\ |
| 8179 | to retrieve the application's exit status.\n\ |
| 8180 | \n\ |
| 8181 | The filepath is relative to the current directory. If you want to use\n\ |
| 8182 | 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] | 8183 | the underlying Win32 ShellExecute function doesn't work if it is."); |
Tim Peters | f58a7aa | 2000-09-22 10:05:54 +0000 | [diff] [blame] | 8184 | |
| 8185 | static PyObject * |
| 8186 | win32_startfile(PyObject *self, PyObject *args) |
| 8187 | { |
| 8188 | char *filepath; |
Georg Brandl | f4f4415 | 2006-02-18 22:29:33 +0000 | [diff] [blame] | 8189 | char *operation = NULL; |
Tim Peters | f58a7aa | 2000-09-22 10:05:54 +0000 | [diff] [blame] | 8190 | HINSTANCE rc; |
Georg Brandl | ad89dc8 | 2006-04-03 12:26:26 +0000 | [diff] [blame] | 8191 | #ifdef Py_WIN_WIDE_FILENAMES |
| 8192 | if (unicode_file_names()) { |
Martin v. Löwis | 5fe715f | 2006-04-03 23:01:24 +0000 | [diff] [blame] | 8193 | PyObject *unipath, *woperation = NULL; |
Georg Brandl | ad89dc8 | 2006-04-03 12:26:26 +0000 | [diff] [blame] | 8194 | if (!PyArg_ParseTuple(args, "U|s:startfile", |
| 8195 | &unipath, &operation)) { |
| 8196 | PyErr_Clear(); |
| 8197 | goto normal; |
| 8198 | } |
| 8199 | |
Martin v. Löwis | 5fe715f | 2006-04-03 23:01:24 +0000 | [diff] [blame] | 8200 | |
| 8201 | if (operation) { |
| 8202 | woperation = PyUnicode_DecodeASCII(operation, |
| 8203 | strlen(operation), NULL); |
| 8204 | if (!woperation) { |
| 8205 | PyErr_Clear(); |
| 8206 | operation = NULL; |
| 8207 | goto normal; |
| 8208 | } |
Georg Brandl | ad89dc8 | 2006-04-03 12:26:26 +0000 | [diff] [blame] | 8209 | } |
| 8210 | |
| 8211 | Py_BEGIN_ALLOW_THREADS |
Martin v. Löwis | 5fe715f | 2006-04-03 23:01:24 +0000 | [diff] [blame] | 8212 | rc = ShellExecuteW((HWND)0, woperation ? PyUnicode_AS_UNICODE(woperation) : 0, |
Georg Brandl | ad89dc8 | 2006-04-03 12:26:26 +0000 | [diff] [blame] | 8213 | PyUnicode_AS_UNICODE(unipath), |
Georg Brandl | ad89dc8 | 2006-04-03 12:26:26 +0000 | [diff] [blame] | 8214 | NULL, NULL, SW_SHOWNORMAL); |
| 8215 | Py_END_ALLOW_THREADS |
| 8216 | |
Martin v. Löwis | 5fe715f | 2006-04-03 23:01:24 +0000 | [diff] [blame] | 8217 | Py_XDECREF(woperation); |
Georg Brandl | ad89dc8 | 2006-04-03 12:26:26 +0000 | [diff] [blame] | 8218 | if (rc <= (HINSTANCE)32) { |
| 8219 | PyObject *errval = win32_error_unicode("startfile", |
| 8220 | PyUnicode_AS_UNICODE(unipath)); |
| 8221 | return errval; |
| 8222 | } |
| 8223 | Py_INCREF(Py_None); |
| 8224 | return Py_None; |
| 8225 | } |
| 8226 | #endif |
| 8227 | |
| 8228 | normal: |
Georg Brandl | f4f4415 | 2006-02-18 22:29:33 +0000 | [diff] [blame] | 8229 | if (!PyArg_ParseTuple(args, "et|s:startfile", |
| 8230 | Py_FileSystemDefaultEncoding, &filepath, |
| 8231 | &operation)) |
Tim Peters | f58a7aa | 2000-09-22 10:05:54 +0000 | [diff] [blame] | 8232 | return NULL; |
| 8233 | Py_BEGIN_ALLOW_THREADS |
Georg Brandl | f4f4415 | 2006-02-18 22:29:33 +0000 | [diff] [blame] | 8234 | rc = ShellExecute((HWND)0, operation, filepath, |
| 8235 | NULL, NULL, SW_SHOWNORMAL); |
Tim Peters | f58a7aa | 2000-09-22 10:05:54 +0000 | [diff] [blame] | 8236 | Py_END_ALLOW_THREADS |
Georg Brandl | e9f8ec9 | 2005-09-25 06:16:40 +0000 | [diff] [blame] | 8237 | if (rc <= (HINSTANCE)32) { |
| 8238 | PyObject *errval = win32_error("startfile", filepath); |
| 8239 | PyMem_Free(filepath); |
| 8240 | return errval; |
| 8241 | } |
| 8242 | PyMem_Free(filepath); |
Tim Peters | f58a7aa | 2000-09-22 10:05:54 +0000 | [diff] [blame] | 8243 | Py_INCREF(Py_None); |
| 8244 | return Py_None; |
| 8245 | } |
| 8246 | #endif |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8247 | |
Martin v. Löwis | 438b534 | 2002-12-27 10:16:42 +0000 | [diff] [blame] | 8248 | #ifdef HAVE_GETLOADAVG |
| 8249 | PyDoc_STRVAR(posix_getloadavg__doc__, |
| 8250 | "getloadavg() -> (float, float, float)\n\n\ |
| 8251 | Return the number of processes in the system run queue averaged over\n\ |
| 8252 | the last 1, 5, and 15 minutes or raises OSError if the load average\n\ |
| 8253 | was unobtainable"); |
| 8254 | |
| 8255 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 8256 | posix_getloadavg(PyObject *self, PyObject *noargs) |
Martin v. Löwis | 438b534 | 2002-12-27 10:16:42 +0000 | [diff] [blame] | 8257 | { |
| 8258 | double loadavg[3]; |
Martin v. Löwis | 438b534 | 2002-12-27 10:16:42 +0000 | [diff] [blame] | 8259 | if (getloadavg(loadavg, 3)!=3) { |
| 8260 | PyErr_SetString(PyExc_OSError, "Load averages are unobtainable"); |
| 8261 | return NULL; |
| 8262 | } else |
| 8263 | return Py_BuildValue("ddd", loadavg[0], loadavg[1], loadavg[2]); |
| 8264 | } |
| 8265 | #endif |
| 8266 | |
Martin v. Löwis | dc3883f | 2004-08-29 15:46:35 +0000 | [diff] [blame] | 8267 | #ifdef MS_WINDOWS |
| 8268 | |
| 8269 | PyDoc_STRVAR(win32_urandom__doc__, |
| 8270 | "urandom(n) -> str\n\n\ |
| 8271 | Return a string of n random bytes suitable for cryptographic use."); |
| 8272 | |
| 8273 | typedef BOOL (WINAPI *CRYPTACQUIRECONTEXTA)(HCRYPTPROV *phProv,\ |
| 8274 | LPCSTR pszContainer, LPCSTR pszProvider, DWORD dwProvType,\ |
| 8275 | DWORD dwFlags ); |
| 8276 | typedef BOOL (WINAPI *CRYPTGENRANDOM)(HCRYPTPROV hProv, DWORD dwLen,\ |
| 8277 | BYTE *pbBuffer ); |
| 8278 | |
| 8279 | static CRYPTGENRANDOM pCryptGenRandom = NULL; |
Martin v. Löwis | af699dd | 2007-09-04 09:51:57 +0000 | [diff] [blame] | 8280 | /* This handle is never explicitly released. Instead, the operating |
| 8281 | system will release it when the process terminates. */ |
Martin v. Löwis | dc3883f | 2004-08-29 15:46:35 +0000 | [diff] [blame] | 8282 | static HCRYPTPROV hCryptProv = 0; |
| 8283 | |
Tim Peters | 4ad8217 | 2004-08-30 17:02:04 +0000 | [diff] [blame] | 8284 | static PyObject* |
| 8285 | win32_urandom(PyObject *self, PyObject *args) |
Martin v. Löwis | dc3883f | 2004-08-29 15:46:35 +0000 | [diff] [blame] | 8286 | { |
Tim Peters | d311538 | 2004-08-30 17:36:46 +0000 | [diff] [blame] | 8287 | int howMany; |
| 8288 | PyObject* result; |
Martin v. Löwis | dc3883f | 2004-08-29 15:46:35 +0000 | [diff] [blame] | 8289 | |
Tim Peters | 4ad8217 | 2004-08-30 17:02:04 +0000 | [diff] [blame] | 8290 | /* Read arguments */ |
Tim Peters | 9b279a8 | 2004-08-30 17:10:53 +0000 | [diff] [blame] | 8291 | if (! PyArg_ParseTuple(args, "i:urandom", &howMany)) |
Tim Peters | 4ad8217 | 2004-08-30 17:02:04 +0000 | [diff] [blame] | 8292 | return NULL; |
Tim Peters | 51eba61 | 2004-08-30 17:08:02 +0000 | [diff] [blame] | 8293 | if (howMany < 0) |
| 8294 | return PyErr_Format(PyExc_ValueError, |
| 8295 | "negative argument not allowed"); |
Martin v. Löwis | dc3883f | 2004-08-29 15:46:35 +0000 | [diff] [blame] | 8296 | |
Tim Peters | 4ad8217 | 2004-08-30 17:02:04 +0000 | [diff] [blame] | 8297 | if (hCryptProv == 0) { |
| 8298 | HINSTANCE hAdvAPI32 = NULL; |
| 8299 | CRYPTACQUIRECONTEXTA pCryptAcquireContext = NULL; |
Martin v. Löwis | dc3883f | 2004-08-29 15:46:35 +0000 | [diff] [blame] | 8300 | |
Tim Peters | 4ad8217 | 2004-08-30 17:02:04 +0000 | [diff] [blame] | 8301 | /* Obtain handle to the DLL containing CryptoAPI |
| 8302 | This should not fail */ |
| 8303 | hAdvAPI32 = GetModuleHandle("advapi32.dll"); |
| 8304 | if(hAdvAPI32 == NULL) |
| 8305 | return win32_error("GetModuleHandle", NULL); |
Martin v. Löwis | dc3883f | 2004-08-29 15:46:35 +0000 | [diff] [blame] | 8306 | |
Tim Peters | 4ad8217 | 2004-08-30 17:02:04 +0000 | [diff] [blame] | 8307 | /* Obtain pointers to the CryptoAPI functions |
| 8308 | This will fail on some early versions of Win95 */ |
| 8309 | pCryptAcquireContext = (CRYPTACQUIRECONTEXTA)GetProcAddress( |
| 8310 | hAdvAPI32, |
| 8311 | "CryptAcquireContextA"); |
| 8312 | if (pCryptAcquireContext == NULL) |
| 8313 | return PyErr_Format(PyExc_NotImplementedError, |
| 8314 | "CryptAcquireContextA not found"); |
Martin v. Löwis | dc3883f | 2004-08-29 15:46:35 +0000 | [diff] [blame] | 8315 | |
Tim Peters | 4ad8217 | 2004-08-30 17:02:04 +0000 | [diff] [blame] | 8316 | pCryptGenRandom = (CRYPTGENRANDOM)GetProcAddress( |
| 8317 | hAdvAPI32, "CryptGenRandom"); |
Georg Brandl | 74bb783 | 2006-09-06 06:03:59 +0000 | [diff] [blame] | 8318 | if (pCryptGenRandom == NULL) |
Tim Peters | 4ad8217 | 2004-08-30 17:02:04 +0000 | [diff] [blame] | 8319 | return PyErr_Format(PyExc_NotImplementedError, |
| 8320 | "CryptGenRandom not found"); |
Martin v. Löwis | dc3883f | 2004-08-29 15:46:35 +0000 | [diff] [blame] | 8321 | |
Tim Peters | 4ad8217 | 2004-08-30 17:02:04 +0000 | [diff] [blame] | 8322 | /* Acquire context */ |
| 8323 | if (! pCryptAcquireContext(&hCryptProv, NULL, NULL, |
| 8324 | PROV_RSA_FULL, CRYPT_VERIFYCONTEXT)) |
| 8325 | return win32_error("CryptAcquireContext", NULL); |
| 8326 | } |
Martin v. Löwis | dc3883f | 2004-08-29 15:46:35 +0000 | [diff] [blame] | 8327 | |
Tim Peters | 4ad8217 | 2004-08-30 17:02:04 +0000 | [diff] [blame] | 8328 | /* Allocate bytes */ |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 8329 | result = PyString_FromStringAndSize(NULL, howMany); |
Tim Peters | d311538 | 2004-08-30 17:36:46 +0000 | [diff] [blame] | 8330 | if (result != NULL) { |
| 8331 | /* Get random data */ |
Amaury Forgeot d'Arc | 74bd40d | 2008-07-21 21:06:46 +0000 | [diff] [blame] | 8332 | memset(PyString_AS_STRING(result), 0, howMany); /* zero seed */ |
Tim Peters | d311538 | 2004-08-30 17:36:46 +0000 | [diff] [blame] | 8333 | if (! pCryptGenRandom(hCryptProv, howMany, (unsigned char*) |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 8334 | PyString_AS_STRING(result))) { |
Tim Peters | d311538 | 2004-08-30 17:36:46 +0000 | [diff] [blame] | 8335 | Py_DECREF(result); |
| 8336 | return win32_error("CryptGenRandom", NULL); |
| 8337 | } |
Tim Peters | 4ad8217 | 2004-08-30 17:02:04 +0000 | [diff] [blame] | 8338 | } |
Tim Peters | d311538 | 2004-08-30 17:36:46 +0000 | [diff] [blame] | 8339 | return result; |
Martin v. Löwis | dc3883f | 2004-08-29 15:46:35 +0000 | [diff] [blame] | 8340 | } |
| 8341 | #endif |
Martin v. Löwis | 438b534 | 2002-12-27 10:16:42 +0000 | [diff] [blame] | 8342 | |
Neal Norwitz | 2a30cd0 | 2006-07-10 01:18:57 +0000 | [diff] [blame] | 8343 | #ifdef __VMS |
| 8344 | /* Use openssl random routine */ |
| 8345 | #include <openssl/rand.h> |
| 8346 | PyDoc_STRVAR(vms_urandom__doc__, |
| 8347 | "urandom(n) -> str\n\n\ |
| 8348 | Return a string of n random bytes suitable for cryptographic use."); |
| 8349 | |
| 8350 | static PyObject* |
| 8351 | vms_urandom(PyObject *self, PyObject *args) |
| 8352 | { |
| 8353 | int howMany; |
| 8354 | PyObject* result; |
| 8355 | |
| 8356 | /* Read arguments */ |
| 8357 | if (! PyArg_ParseTuple(args, "i:urandom", &howMany)) |
| 8358 | return NULL; |
| 8359 | if (howMany < 0) |
| 8360 | return PyErr_Format(PyExc_ValueError, |
| 8361 | "negative argument not allowed"); |
| 8362 | |
| 8363 | /* Allocate bytes */ |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 8364 | result = PyString_FromStringAndSize(NULL, howMany); |
Neal Norwitz | 2a30cd0 | 2006-07-10 01:18:57 +0000 | [diff] [blame] | 8365 | if (result != NULL) { |
| 8366 | /* Get random data */ |
| 8367 | if (RAND_pseudo_bytes((unsigned char*) |
Gregory P. Smith | dd96db6 | 2008-06-09 04:58:54 +0000 | [diff] [blame] | 8368 | PyString_AS_STRING(result), |
Neal Norwitz | 2a30cd0 | 2006-07-10 01:18:57 +0000 | [diff] [blame] | 8369 | howMany) < 0) { |
| 8370 | Py_DECREF(result); |
| 8371 | return PyErr_Format(PyExc_ValueError, |
| 8372 | "RAND_pseudo_bytes"); |
| 8373 | } |
| 8374 | } |
| 8375 | return result; |
| 8376 | } |
| 8377 | #endif |
| 8378 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8379 | static PyMethodDef posix_methods[] = { |
| 8380 | {"access", posix_access, METH_VARARGS, posix_access__doc__}, |
| 8381 | #ifdef HAVE_TTYNAME |
| 8382 | {"ttyname", posix_ttyname, METH_VARARGS, posix_ttyname__doc__}, |
| 8383 | #endif |
| 8384 | {"chdir", posix_chdir, METH_VARARGS, posix_chdir__doc__}, |
Martin v. Löwis | 382abef | 2007-02-19 10:55:19 +0000 | [diff] [blame] | 8385 | #ifdef HAVE_CHFLAGS |
| 8386 | {"chflags", posix_chflags, METH_VARARGS, posix_chflags__doc__}, |
| 8387 | #endif /* HAVE_CHFLAGS */ |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8388 | {"chmod", posix_chmod, METH_VARARGS, posix_chmod__doc__}, |
Christian Heimes | 3628187 | 2007-11-30 21:11:28 +0000 | [diff] [blame] | 8389 | #ifdef HAVE_FCHMOD |
| 8390 | {"fchmod", posix_fchmod, METH_VARARGS, posix_fchmod__doc__}, |
| 8391 | #endif /* HAVE_FCHMOD */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 8392 | #ifdef HAVE_CHOWN |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8393 | {"chown", posix_chown, METH_VARARGS, posix_chown__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 8394 | #endif /* HAVE_CHOWN */ |
Christian Heimes | 3628187 | 2007-11-30 21:11:28 +0000 | [diff] [blame] | 8395 | #ifdef HAVE_LCHMOD |
| 8396 | {"lchmod", posix_lchmod, METH_VARARGS, posix_lchmod__doc__}, |
| 8397 | #endif /* HAVE_LCHMOD */ |
| 8398 | #ifdef HAVE_FCHOWN |
| 8399 | {"fchown", posix_fchown, METH_VARARGS, posix_fchown__doc__}, |
| 8400 | #endif /* HAVE_FCHOWN */ |
Martin v. Löwis | 382abef | 2007-02-19 10:55:19 +0000 | [diff] [blame] | 8401 | #ifdef HAVE_LCHFLAGS |
| 8402 | {"lchflags", posix_lchflags, METH_VARARGS, posix_lchflags__doc__}, |
| 8403 | #endif /* HAVE_LCHFLAGS */ |
Martin v. Löwis | 0cec0ff | 2002-07-28 16:33:45 +0000 | [diff] [blame] | 8404 | #ifdef HAVE_LCHOWN |
| 8405 | {"lchown", posix_lchown, METH_VARARGS, posix_lchown__doc__}, |
| 8406 | #endif /* HAVE_LCHOWN */ |
Martin v. Löwis | 244edc8 | 2001-10-04 22:44:26 +0000 | [diff] [blame] | 8407 | #ifdef HAVE_CHROOT |
| 8408 | {"chroot", posix_chroot, METH_VARARGS, posix_chroot__doc__}, |
| 8409 | #endif |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8410 | #ifdef HAVE_CTERMID |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 8411 | {"ctermid", posix_ctermid, METH_NOARGS, posix_ctermid__doc__}, |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8412 | #endif |
Guido van Rossum | 36bc680 | 1995-06-14 22:54:23 +0000 | [diff] [blame] | 8413 | #ifdef HAVE_GETCWD |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 8414 | {"getcwd", posix_getcwd, METH_NOARGS, posix_getcwd__doc__}, |
Walter Dörwald | 3b918c3 | 2002-11-21 20:18:46 +0000 | [diff] [blame] | 8415 | #ifdef Py_USING_UNICODE |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 8416 | {"getcwdu", posix_getcwdu, METH_NOARGS, posix_getcwdu__doc__}, |
Guido van Rossum | 36bc680 | 1995-06-14 22:54:23 +0000 | [diff] [blame] | 8417 | #endif |
Walter Dörwald | 3b918c3 | 2002-11-21 20:18:46 +0000 | [diff] [blame] | 8418 | #endif |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 8419 | #ifdef HAVE_LINK |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8420 | {"link", posix_link, METH_VARARGS, posix_link__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 8421 | #endif /* HAVE_LINK */ |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8422 | {"listdir", posix_listdir, METH_VARARGS, posix_listdir__doc__}, |
| 8423 | {"lstat", posix_lstat, METH_VARARGS, posix_lstat__doc__}, |
| 8424 | {"mkdir", posix_mkdir, METH_VARARGS, posix_mkdir__doc__}, |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 8425 | #ifdef HAVE_NICE |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8426 | {"nice", posix_nice, METH_VARARGS, posix_nice__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 8427 | #endif /* HAVE_NICE */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 8428 | #ifdef HAVE_READLINK |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8429 | {"readlink", posix_readlink, METH_VARARGS, posix_readlink__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 8430 | #endif /* HAVE_READLINK */ |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8431 | {"rename", posix_rename, METH_VARARGS, posix_rename__doc__}, |
| 8432 | {"rmdir", posix_rmdir, METH_VARARGS, posix_rmdir__doc__}, |
| 8433 | {"stat", posix_stat, METH_VARARGS, posix_stat__doc__}, |
Martin v. Löwis | f607bda | 2002-10-16 18:27:39 +0000 | [diff] [blame] | 8434 | {"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] | 8435 | #ifdef HAVE_SYMLINK |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8436 | {"symlink", posix_symlink, METH_VARARGS, posix_symlink__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 8437 | #endif /* HAVE_SYMLINK */ |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 8438 | #ifdef HAVE_SYSTEM |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8439 | {"system", posix_system, METH_VARARGS, posix_system__doc__}, |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 8440 | #endif |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8441 | {"umask", posix_umask, METH_VARARGS, posix_umask__doc__}, |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 8442 | #ifdef HAVE_UNAME |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 8443 | {"uname", posix_uname, METH_NOARGS, posix_uname__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 8444 | #endif /* HAVE_UNAME */ |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8445 | {"unlink", posix_unlink, METH_VARARGS, posix_unlink__doc__}, |
| 8446 | {"remove", posix_unlink, METH_VARARGS, posix_remove__doc__}, |
| 8447 | {"utime", posix_utime, METH_VARARGS, posix_utime__doc__}, |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 8448 | #ifdef HAVE_TIMES |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 8449 | {"times", posix_times, METH_NOARGS, posix_times__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 8450 | #endif /* HAVE_TIMES */ |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8451 | {"_exit", posix__exit, METH_VARARGS, posix__exit__doc__}, |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 8452 | #ifdef HAVE_EXECV |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8453 | {"execv", posix_execv, METH_VARARGS, posix_execv__doc__}, |
| 8454 | {"execve", posix_execve, METH_VARARGS, posix_execve__doc__}, |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 8455 | #endif /* HAVE_EXECV */ |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 8456 | #ifdef HAVE_SPAWNV |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8457 | {"spawnv", posix_spawnv, METH_VARARGS, posix_spawnv__doc__}, |
| 8458 | {"spawnve", posix_spawnve, METH_VARARGS, posix_spawnve__doc__}, |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 8459 | #if defined(PYOS_OS2) |
| 8460 | {"spawnvp", posix_spawnvp, METH_VARARGS, posix_spawnvp__doc__}, |
| 8461 | {"spawnvpe", posix_spawnvpe, METH_VARARGS, posix_spawnvpe__doc__}, |
| 8462 | #endif /* PYOS_OS2 */ |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 8463 | #endif /* HAVE_SPAWNV */ |
Guido van Rossum | 2242f2f | 2001-04-11 20:58:20 +0000 | [diff] [blame] | 8464 | #ifdef HAVE_FORK1 |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 8465 | {"fork1", posix_fork1, METH_NOARGS, posix_fork1__doc__}, |
Guido van Rossum | 2242f2f | 2001-04-11 20:58:20 +0000 | [diff] [blame] | 8466 | #endif /* HAVE_FORK1 */ |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 8467 | #ifdef HAVE_FORK |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 8468 | {"fork", posix_fork, METH_NOARGS, posix_fork__doc__}, |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 8469 | #endif /* HAVE_FORK */ |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 8470 | #if defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX) |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 8471 | {"openpty", posix_openpty, METH_NOARGS, posix_openpty__doc__}, |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 8472 | #endif /* HAVE_OPENPTY || HAVE__GETPTY || HAVE_DEV_PTMX */ |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 8473 | #ifdef HAVE_FORKPTY |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 8474 | {"forkpty", posix_forkpty, METH_NOARGS, posix_forkpty__doc__}, |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 8475 | #endif /* HAVE_FORKPTY */ |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 8476 | #ifdef HAVE_GETEGID |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 8477 | {"getegid", posix_getegid, METH_NOARGS, posix_getegid__doc__}, |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 8478 | #endif /* HAVE_GETEGID */ |
| 8479 | #ifdef HAVE_GETEUID |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 8480 | {"geteuid", posix_geteuid, METH_NOARGS, posix_geteuid__doc__}, |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 8481 | #endif /* HAVE_GETEUID */ |
| 8482 | #ifdef HAVE_GETGID |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 8483 | {"getgid", posix_getgid, METH_NOARGS, posix_getgid__doc__}, |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 8484 | #endif /* HAVE_GETGID */ |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8485 | #ifdef HAVE_GETGROUPS |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 8486 | {"getgroups", posix_getgroups, METH_NOARGS, posix_getgroups__doc__}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8487 | #endif |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 8488 | {"getpid", posix_getpid, METH_NOARGS, posix_getpid__doc__}, |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 8489 | #ifdef HAVE_GETPGRP |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 8490 | {"getpgrp", posix_getpgrp, METH_NOARGS, posix_getpgrp__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 8491 | #endif /* HAVE_GETPGRP */ |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 8492 | #ifdef HAVE_GETPPID |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 8493 | {"getppid", posix_getppid, METH_NOARGS, posix_getppid__doc__}, |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 8494 | #endif /* HAVE_GETPPID */ |
| 8495 | #ifdef HAVE_GETUID |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 8496 | {"getuid", posix_getuid, METH_NOARGS, posix_getuid__doc__}, |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 8497 | #endif /* HAVE_GETUID */ |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 8498 | #ifdef HAVE_GETLOGIN |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 8499 | {"getlogin", posix_getlogin, METH_NOARGS, posix_getlogin__doc__}, |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 8500 | #endif |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 8501 | #ifdef HAVE_KILL |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8502 | {"kill", posix_kill, METH_VARARGS, posix_kill__doc__}, |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 8503 | #endif /* HAVE_KILL */ |
Martin v. Löwis | b2c92f4 | 2002-02-16 23:35:41 +0000 | [diff] [blame] | 8504 | #ifdef HAVE_KILLPG |
| 8505 | {"killpg", posix_killpg, METH_VARARGS, posix_killpg__doc__}, |
| 8506 | #endif /* HAVE_KILLPG */ |
Guido van Rossum | c012547 | 1996-06-28 18:55:32 +0000 | [diff] [blame] | 8507 | #ifdef HAVE_PLOCK |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8508 | {"plock", posix_plock, METH_VARARGS, posix_plock__doc__}, |
Guido van Rossum | c012547 | 1996-06-28 18:55:32 +0000 | [diff] [blame] | 8509 | #endif /* HAVE_PLOCK */ |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 8510 | #ifdef HAVE_POPEN |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8511 | {"popen", posix_popen, METH_VARARGS, posix_popen__doc__}, |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 8512 | #ifdef MS_WINDOWS |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 8513 | {"popen2", win32_popen2, METH_VARARGS}, |
| 8514 | {"popen3", win32_popen3, METH_VARARGS}, |
| 8515 | {"popen4", win32_popen4, METH_VARARGS}, |
Tim Peters | f58a7aa | 2000-09-22 10:05:54 +0000 | [diff] [blame] | 8516 | {"startfile", win32_startfile, METH_VARARGS, win32_startfile__doc__}, |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 8517 | #else |
| 8518 | #if defined(PYOS_OS2) && defined(PYCC_GCC) |
| 8519 | {"popen2", os2emx_popen2, METH_VARARGS}, |
| 8520 | {"popen3", os2emx_popen3, METH_VARARGS}, |
| 8521 | {"popen4", os2emx_popen4, METH_VARARGS}, |
| 8522 | #endif |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 8523 | #endif |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 8524 | #endif /* HAVE_POPEN */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 8525 | #ifdef HAVE_SETUID |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8526 | {"setuid", posix_setuid, METH_VARARGS, posix_setuid__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 8527 | #endif /* HAVE_SETUID */ |
Andrew M. Kuchling | 8d2f2b2 | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 8528 | #ifdef HAVE_SETEUID |
| 8529 | {"seteuid", posix_seteuid, METH_VARARGS, posix_seteuid__doc__}, |
| 8530 | #endif /* HAVE_SETEUID */ |
| 8531 | #ifdef HAVE_SETEGID |
| 8532 | {"setegid", posix_setegid, METH_VARARGS, posix_setegid__doc__}, |
| 8533 | #endif /* HAVE_SETEGID */ |
| 8534 | #ifdef HAVE_SETREUID |
| 8535 | {"setreuid", posix_setreuid, METH_VARARGS, posix_setreuid__doc__}, |
| 8536 | #endif /* HAVE_SETREUID */ |
| 8537 | #ifdef HAVE_SETREGID |
| 8538 | {"setregid", posix_setregid, METH_VARARGS, posix_setregid__doc__}, |
| 8539 | #endif /* HAVE_SETREGID */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 8540 | #ifdef HAVE_SETGID |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8541 | {"setgid", posix_setgid, METH_VARARGS, posix_setgid__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 8542 | #endif /* HAVE_SETGID */ |
Martin v. Löwis | 61c5edf | 2001-10-18 04:06:00 +0000 | [diff] [blame] | 8543 | #ifdef HAVE_SETGROUPS |
Georg Brandl | 96a8c39 | 2006-05-29 21:04:52 +0000 | [diff] [blame] | 8544 | {"setgroups", posix_setgroups, METH_O, posix_setgroups__doc__}, |
Martin v. Löwis | 61c5edf | 2001-10-18 04:06:00 +0000 | [diff] [blame] | 8545 | #endif /* HAVE_SETGROUPS */ |
Martin v. Löwis | 606edc1 | 2002-06-13 21:09:11 +0000 | [diff] [blame] | 8546 | #ifdef HAVE_GETPGID |
| 8547 | {"getpgid", posix_getpgid, METH_VARARGS, posix_getpgid__doc__}, |
| 8548 | #endif /* HAVE_GETPGID */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 8549 | #ifdef HAVE_SETPGRP |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 8550 | {"setpgrp", posix_setpgrp, METH_NOARGS, posix_setpgrp__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 8551 | #endif /* HAVE_SETPGRP */ |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 8552 | #ifdef HAVE_WAIT |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 8553 | {"wait", posix_wait, METH_NOARGS, posix_wait__doc__}, |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 8554 | #endif /* HAVE_WAIT */ |
Neal Norwitz | 05a4559 | 2006-03-20 06:30:08 +0000 | [diff] [blame] | 8555 | #ifdef HAVE_WAIT3 |
| 8556 | {"wait3", posix_wait3, METH_VARARGS, posix_wait3__doc__}, |
| 8557 | #endif /* HAVE_WAIT3 */ |
| 8558 | #ifdef HAVE_WAIT4 |
| 8559 | {"wait4", posix_wait4, METH_VARARGS, posix_wait4__doc__}, |
| 8560 | #endif /* HAVE_WAIT4 */ |
Tim Peters | ab034fa | 2002-02-01 11:27:43 +0000 | [diff] [blame] | 8561 | #if defined(HAVE_WAITPID) || defined(HAVE_CWAIT) |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8562 | {"waitpid", posix_waitpid, METH_VARARGS, posix_waitpid__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 8563 | #endif /* HAVE_WAITPID */ |
Martin v. Löwis | 49ee14d | 2003-11-10 06:35:36 +0000 | [diff] [blame] | 8564 | #ifdef HAVE_GETSID |
| 8565 | {"getsid", posix_getsid, METH_VARARGS, posix_getsid__doc__}, |
| 8566 | #endif /* HAVE_GETSID */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 8567 | #ifdef HAVE_SETSID |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 8568 | {"setsid", posix_setsid, METH_NOARGS, posix_setsid__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 8569 | #endif /* HAVE_SETSID */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 8570 | #ifdef HAVE_SETPGID |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8571 | {"setpgid", posix_setpgid, METH_VARARGS, posix_setpgid__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 8572 | #endif /* HAVE_SETPGID */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 8573 | #ifdef HAVE_TCGETPGRP |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8574 | {"tcgetpgrp", posix_tcgetpgrp, METH_VARARGS, posix_tcgetpgrp__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 8575 | #endif /* HAVE_TCGETPGRP */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 8576 | #ifdef HAVE_TCSETPGRP |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8577 | {"tcsetpgrp", posix_tcsetpgrp, METH_VARARGS, posix_tcsetpgrp__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 8578 | #endif /* HAVE_TCSETPGRP */ |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8579 | {"open", posix_open, METH_VARARGS, posix_open__doc__}, |
| 8580 | {"close", posix_close, METH_VARARGS, posix_close__doc__}, |
Georg Brandl | 309501a | 2008-01-19 20:22:13 +0000 | [diff] [blame] | 8581 | {"closerange", posix_closerange, METH_VARARGS, posix_closerange__doc__}, |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8582 | {"dup", posix_dup, METH_VARARGS, posix_dup__doc__}, |
| 8583 | {"dup2", posix_dup2, METH_VARARGS, posix_dup2__doc__}, |
| 8584 | {"lseek", posix_lseek, METH_VARARGS, posix_lseek__doc__}, |
| 8585 | {"read", posix_read, METH_VARARGS, posix_read__doc__}, |
| 8586 | {"write", posix_write, METH_VARARGS, posix_write__doc__}, |
| 8587 | {"fstat", posix_fstat, METH_VARARGS, posix_fstat__doc__}, |
| 8588 | {"fdopen", posix_fdopen, METH_VARARGS, posix_fdopen__doc__}, |
Skip Montanaro | 1517d84 | 2000-07-19 14:34:14 +0000 | [diff] [blame] | 8589 | {"isatty", posix_isatty, METH_VARARGS, posix_isatty__doc__}, |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 8590 | #ifdef HAVE_PIPE |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 8591 | {"pipe", posix_pipe, METH_NOARGS, posix_pipe__doc__}, |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 8592 | #endif |
| 8593 | #ifdef HAVE_MKFIFO |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8594 | {"mkfifo", posix_mkfifo, METH_VARARGS, posix_mkfifo__doc__}, |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 8595 | #endif |
Neal Norwitz | 1169011 | 2002-07-30 01:08:28 +0000 | [diff] [blame] | 8596 | #if defined(HAVE_MKNOD) && defined(HAVE_MAKEDEV) |
Martin v. Löwis | 06a83e9 | 2002-04-14 10:19:44 +0000 | [diff] [blame] | 8597 | {"mknod", posix_mknod, METH_VARARGS, posix_mknod__doc__}, |
| 8598 | #endif |
Martin v. Löwis | dbe3f76 | 2002-10-10 14:27:30 +0000 | [diff] [blame] | 8599 | #ifdef HAVE_DEVICE_MACROS |
| 8600 | {"major", posix_major, METH_VARARGS, posix_major__doc__}, |
| 8601 | {"minor", posix_minor, METH_VARARGS, posix_minor__doc__}, |
| 8602 | {"makedev", posix_makedev, METH_VARARGS, posix_makedev__doc__}, |
| 8603 | #endif |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 8604 | #ifdef HAVE_FTRUNCATE |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8605 | {"ftruncate", posix_ftruncate, METH_VARARGS, posix_ftruncate__doc__}, |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 8606 | #endif |
Guido van Rossum | f1af3fe | 1996-07-23 19:18:10 +0000 | [diff] [blame] | 8607 | #ifdef HAVE_PUTENV |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8608 | {"putenv", posix_putenv, METH_VARARGS, posix_putenv__doc__}, |
Guido van Rossum | f1af3fe | 1996-07-23 19:18:10 +0000 | [diff] [blame] | 8609 | #endif |
Guido van Rossum | c524d95 | 2001-10-19 01:31:59 +0000 | [diff] [blame] | 8610 | #ifdef HAVE_UNSETENV |
| 8611 | {"unsetenv", posix_unsetenv, METH_VARARGS, posix_unsetenv__doc__}, |
| 8612 | #endif |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8613 | {"strerror", posix_strerror, METH_VARARGS, posix_strerror__doc__}, |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 8614 | #ifdef HAVE_FCHDIR |
| 8615 | {"fchdir", posix_fchdir, METH_O, posix_fchdir__doc__}, |
| 8616 | #endif |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 8617 | #ifdef HAVE_FSYNC |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 8618 | {"fsync", posix_fsync, METH_O, posix_fsync__doc__}, |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 8619 | #endif |
| 8620 | #ifdef HAVE_FDATASYNC |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 8621 | {"fdatasync", posix_fdatasync, METH_O, posix_fdatasync__doc__}, |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 8622 | #endif |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 8623 | #ifdef HAVE_SYS_WAIT_H |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 8624 | #ifdef WCOREDUMP |
| 8625 | {"WCOREDUMP", posix_WCOREDUMP, METH_VARARGS, posix_WCOREDUMP__doc__}, |
| 8626 | #endif /* WCOREDUMP */ |
Martin v. Löwis | 2b41b0d | 2002-05-04 13:13:41 +0000 | [diff] [blame] | 8627 | #ifdef WIFCONTINUED |
| 8628 | {"WIFCONTINUED",posix_WIFCONTINUED, METH_VARARGS, posix_WIFCONTINUED__doc__}, |
| 8629 | #endif /* WIFCONTINUED */ |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 8630 | #ifdef WIFSTOPPED |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8631 | {"WIFSTOPPED", posix_WIFSTOPPED, METH_VARARGS, posix_WIFSTOPPED__doc__}, |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 8632 | #endif /* WIFSTOPPED */ |
| 8633 | #ifdef WIFSIGNALED |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8634 | {"WIFSIGNALED", posix_WIFSIGNALED, METH_VARARGS, posix_WIFSIGNALED__doc__}, |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 8635 | #endif /* WIFSIGNALED */ |
| 8636 | #ifdef WIFEXITED |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8637 | {"WIFEXITED", posix_WIFEXITED, METH_VARARGS, posix_WIFEXITED__doc__}, |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 8638 | #endif /* WIFEXITED */ |
| 8639 | #ifdef WEXITSTATUS |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8640 | {"WEXITSTATUS", posix_WEXITSTATUS, METH_VARARGS, posix_WEXITSTATUS__doc__}, |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 8641 | #endif /* WEXITSTATUS */ |
| 8642 | #ifdef WTERMSIG |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8643 | {"WTERMSIG", posix_WTERMSIG, METH_VARARGS, posix_WTERMSIG__doc__}, |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 8644 | #endif /* WTERMSIG */ |
| 8645 | #ifdef WSTOPSIG |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8646 | {"WSTOPSIG", posix_WSTOPSIG, METH_VARARGS, posix_WSTOPSIG__doc__}, |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 8647 | #endif /* WSTOPSIG */ |
| 8648 | #endif /* HAVE_SYS_WAIT_H */ |
Martin v. Löwis | 5f5d99c | 2006-05-16 07:05:37 +0000 | [diff] [blame] | 8649 | #if defined(HAVE_FSTATVFS) && defined(HAVE_SYS_STATVFS_H) |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8650 | {"fstatvfs", posix_fstatvfs, METH_VARARGS, posix_fstatvfs__doc__}, |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 8651 | #endif |
Martin v. Löwis | 5f5d99c | 2006-05-16 07:05:37 +0000 | [diff] [blame] | 8652 | #if defined(HAVE_STATVFS) && defined(HAVE_SYS_STATVFS_H) |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8653 | {"statvfs", posix_statvfs, METH_VARARGS, posix_statvfs__doc__}, |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 8654 | #endif |
Guido van Rossum | e2ad633 | 2001-01-08 17:51:55 +0000 | [diff] [blame] | 8655 | #ifdef HAVE_TMPFILE |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 8656 | {"tmpfile", posix_tmpfile, METH_NOARGS, posix_tmpfile__doc__}, |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8657 | #endif |
| 8658 | #ifdef HAVE_TEMPNAM |
| 8659 | {"tempnam", posix_tempnam, METH_VARARGS, posix_tempnam__doc__}, |
| 8660 | #endif |
| 8661 | #ifdef HAVE_TMPNAM |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 8662 | {"tmpnam", posix_tmpnam, METH_NOARGS, posix_tmpnam__doc__}, |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8663 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8664 | #ifdef HAVE_CONFSTR |
| 8665 | {"confstr", posix_confstr, METH_VARARGS, posix_confstr__doc__}, |
| 8666 | #endif |
| 8667 | #ifdef HAVE_SYSCONF |
| 8668 | {"sysconf", posix_sysconf, METH_VARARGS, posix_sysconf__doc__}, |
| 8669 | #endif |
| 8670 | #ifdef HAVE_FPATHCONF |
| 8671 | {"fpathconf", posix_fpathconf, METH_VARARGS, posix_fpathconf__doc__}, |
| 8672 | #endif |
| 8673 | #ifdef HAVE_PATHCONF |
| 8674 | {"pathconf", posix_pathconf, METH_VARARGS, posix_pathconf__doc__}, |
| 8675 | #endif |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 8676 | {"abort", posix_abort, METH_NOARGS, posix_abort__doc__}, |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 8677 | #ifdef MS_WINDOWS |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 8678 | {"_getfullpathname", posix__getfullpathname, METH_VARARGS, NULL}, |
| 8679 | #endif |
Martin v. Löwis | 438b534 | 2002-12-27 10:16:42 +0000 | [diff] [blame] | 8680 | #ifdef HAVE_GETLOADAVG |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 8681 | {"getloadavg", posix_getloadavg, METH_NOARGS, posix_getloadavg__doc__}, |
Martin v. Löwis | 438b534 | 2002-12-27 10:16:42 +0000 | [diff] [blame] | 8682 | #endif |
Martin v. Löwis | dc3883f | 2004-08-29 15:46:35 +0000 | [diff] [blame] | 8683 | #ifdef MS_WINDOWS |
| 8684 | {"urandom", win32_urandom, METH_VARARGS, win32_urandom__doc__}, |
| 8685 | #endif |
Neal Norwitz | 2a30cd0 | 2006-07-10 01:18:57 +0000 | [diff] [blame] | 8686 | #ifdef __VMS |
| 8687 | {"urandom", vms_urandom, METH_VARARGS, vms_urandom__doc__}, |
| 8688 | #endif |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 8689 | {NULL, NULL} /* Sentinel */ |
| 8690 | }; |
| 8691 | |
| 8692 | |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 8693 | static int |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 8694 | ins(PyObject *module, char *symbol, long value) |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 8695 | { |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 8696 | return PyModule_AddIntConstant(module, symbol, value); |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 8697 | } |
| 8698 | |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 8699 | #if defined(PYOS_OS2) |
| 8700 | /* Insert Platform-Specific Constant Values (Strings & Numbers) of Common Use */ |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 8701 | static int insertvalues(PyObject *module) |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 8702 | { |
| 8703 | APIRET rc; |
| 8704 | ULONG values[QSV_MAX+1]; |
| 8705 | PyObject *v; |
Marc-André Lemburg | d4c0a9c | 2001-11-28 11:47:00 +0000 | [diff] [blame] | 8706 | char *ver, tmp[50]; |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 8707 | |
| 8708 | Py_BEGIN_ALLOW_THREADS |
Andrew MacIntyre | 75e0145 | 2003-04-21 14:19:51 +0000 | [diff] [blame] | 8709 | rc = DosQuerySysInfo(1L, QSV_MAX, &values[1], sizeof(ULONG) * QSV_MAX); |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 8710 | Py_END_ALLOW_THREADS |
| 8711 | |
| 8712 | if (rc != NO_ERROR) { |
| 8713 | os2_error(rc); |
| 8714 | return -1; |
| 8715 | } |
| 8716 | |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 8717 | if (ins(module, "meminstalled", values[QSV_TOTPHYSMEM])) return -1; |
| 8718 | if (ins(module, "memkernel", values[QSV_TOTRESMEM])) return -1; |
| 8719 | if (ins(module, "memvirtual", values[QSV_TOTAVAILMEM])) return -1; |
| 8720 | if (ins(module, "maxpathlen", values[QSV_MAX_PATH_LENGTH])) return -1; |
| 8721 | if (ins(module, "maxnamelen", values[QSV_MAX_COMP_LENGTH])) return -1; |
| 8722 | if (ins(module, "revision", values[QSV_VERSION_REVISION])) return -1; |
| 8723 | if (ins(module, "timeslice", values[QSV_MIN_SLICE])) return -1; |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 8724 | |
| 8725 | switch (values[QSV_VERSION_MINOR]) { |
| 8726 | case 0: ver = "2.00"; break; |
| 8727 | case 10: ver = "2.10"; break; |
| 8728 | case 11: ver = "2.11"; break; |
| 8729 | case 30: ver = "3.00"; break; |
| 8730 | case 40: ver = "4.00"; break; |
| 8731 | case 50: ver = "5.00"; break; |
| 8732 | default: |
Tim Peters | 885d457 | 2001-11-28 20:27:42 +0000 | [diff] [blame] | 8733 | PyOS_snprintf(tmp, sizeof(tmp), |
| 8734 | "%d-%d", values[QSV_VERSION_MAJOR], |
| 8735 | values[QSV_VERSION_MINOR]); |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 8736 | ver = &tmp[0]; |
| 8737 | } |
| 8738 | |
| 8739 | /* Add Indicator of the Version of the Operating System */ |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 8740 | if (PyModule_AddStringConstant(module, "version", tmp) < 0) |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 8741 | return -1; |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 8742 | |
| 8743 | /* Add Indicator of Which Drive was Used to Boot the System */ |
| 8744 | tmp[0] = 'A' + values[QSV_BOOT_DRIVE] - 1; |
| 8745 | tmp[1] = ':'; |
| 8746 | tmp[2] = '\0'; |
| 8747 | |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 8748 | return PyModule_AddStringConstant(module, "bootdrive", tmp); |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 8749 | } |
| 8750 | #endif |
| 8751 | |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 8752 | static int |
Thomas Wouters | f3f33dc | 2000-07-21 06:00:07 +0000 | [diff] [blame] | 8753 | all_ins(PyObject *d) |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 8754 | { |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 8755 | #ifdef F_OK |
| 8756 | if (ins(d, "F_OK", (long)F_OK)) return -1; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 8757 | #endif |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 8758 | #ifdef R_OK |
| 8759 | if (ins(d, "R_OK", (long)R_OK)) return -1; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 8760 | #endif |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 8761 | #ifdef W_OK |
| 8762 | if (ins(d, "W_OK", (long)W_OK)) return -1; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 8763 | #endif |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 8764 | #ifdef X_OK |
| 8765 | if (ins(d, "X_OK", (long)X_OK)) return -1; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 8766 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 8767 | #ifdef NGROUPS_MAX |
| 8768 | if (ins(d, "NGROUPS_MAX", (long)NGROUPS_MAX)) return -1; |
| 8769 | #endif |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 8770 | #ifdef TMP_MAX |
| 8771 | if (ins(d, "TMP_MAX", (long)TMP_MAX)) return -1; |
| 8772 | #endif |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 8773 | #ifdef WCONTINUED |
| 8774 | if (ins(d, "WCONTINUED", (long)WCONTINUED)) return -1; |
| 8775 | #endif |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 8776 | #ifdef WNOHANG |
| 8777 | if (ins(d, "WNOHANG", (long)WNOHANG)) return -1; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 8778 | #endif |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 8779 | #ifdef WUNTRACED |
| 8780 | if (ins(d, "WUNTRACED", (long)WUNTRACED)) return -1; |
| 8781 | #endif |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 8782 | #ifdef O_RDONLY |
| 8783 | if (ins(d, "O_RDONLY", (long)O_RDONLY)) return -1; |
| 8784 | #endif |
| 8785 | #ifdef O_WRONLY |
| 8786 | if (ins(d, "O_WRONLY", (long)O_WRONLY)) return -1; |
| 8787 | #endif |
| 8788 | #ifdef O_RDWR |
| 8789 | if (ins(d, "O_RDWR", (long)O_RDWR)) return -1; |
| 8790 | #endif |
| 8791 | #ifdef O_NDELAY |
| 8792 | if (ins(d, "O_NDELAY", (long)O_NDELAY)) return -1; |
| 8793 | #endif |
| 8794 | #ifdef O_NONBLOCK |
| 8795 | if (ins(d, "O_NONBLOCK", (long)O_NONBLOCK)) return -1; |
| 8796 | #endif |
| 8797 | #ifdef O_APPEND |
| 8798 | if (ins(d, "O_APPEND", (long)O_APPEND)) return -1; |
| 8799 | #endif |
| 8800 | #ifdef O_DSYNC |
| 8801 | if (ins(d, "O_DSYNC", (long)O_DSYNC)) return -1; |
| 8802 | #endif |
| 8803 | #ifdef O_RSYNC |
| 8804 | if (ins(d, "O_RSYNC", (long)O_RSYNC)) return -1; |
| 8805 | #endif |
| 8806 | #ifdef O_SYNC |
| 8807 | if (ins(d, "O_SYNC", (long)O_SYNC)) return -1; |
| 8808 | #endif |
| 8809 | #ifdef O_NOCTTY |
| 8810 | if (ins(d, "O_NOCTTY", (long)O_NOCTTY)) return -1; |
| 8811 | #endif |
| 8812 | #ifdef O_CREAT |
| 8813 | if (ins(d, "O_CREAT", (long)O_CREAT)) return -1; |
| 8814 | #endif |
| 8815 | #ifdef O_EXCL |
| 8816 | if (ins(d, "O_EXCL", (long)O_EXCL)) return -1; |
| 8817 | #endif |
| 8818 | #ifdef O_TRUNC |
| 8819 | if (ins(d, "O_TRUNC", (long)O_TRUNC)) return -1; |
| 8820 | #endif |
Guido van Rossum | 98d9d09 | 1997-08-08 21:48:51 +0000 | [diff] [blame] | 8821 | #ifdef O_BINARY |
| 8822 | if (ins(d, "O_BINARY", (long)O_BINARY)) return -1; |
| 8823 | #endif |
| 8824 | #ifdef O_TEXT |
| 8825 | if (ins(d, "O_TEXT", (long)O_TEXT)) return -1; |
| 8826 | #endif |
Martin v. Löwis | 4fe3c27 | 2001-10-18 22:05:36 +0000 | [diff] [blame] | 8827 | #ifdef O_LARGEFILE |
| 8828 | if (ins(d, "O_LARGEFILE", (long)O_LARGEFILE)) return -1; |
| 8829 | #endif |
Skip Montanaro | 5ff1492 | 2005-05-16 02:42:22 +0000 | [diff] [blame] | 8830 | #ifdef O_SHLOCK |
| 8831 | if (ins(d, "O_SHLOCK", (long)O_SHLOCK)) return -1; |
| 8832 | #endif |
| 8833 | #ifdef O_EXLOCK |
| 8834 | if (ins(d, "O_EXLOCK", (long)O_EXLOCK)) return -1; |
| 8835 | #endif |
Martin v. Löwis | 4fe3c27 | 2001-10-18 22:05:36 +0000 | [diff] [blame] | 8836 | |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 8837 | /* MS Windows */ |
| 8838 | #ifdef O_NOINHERIT |
| 8839 | /* Don't inherit in child processes. */ |
| 8840 | if (ins(d, "O_NOINHERIT", (long)O_NOINHERIT)) return -1; |
| 8841 | #endif |
| 8842 | #ifdef _O_SHORT_LIVED |
| 8843 | /* Optimize for short life (keep in memory). */ |
| 8844 | /* MS forgot to define this one with a non-underscore form too. */ |
| 8845 | if (ins(d, "O_SHORT_LIVED", (long)_O_SHORT_LIVED)) return -1; |
| 8846 | #endif |
| 8847 | #ifdef O_TEMPORARY |
| 8848 | /* Automatically delete when last handle is closed. */ |
| 8849 | if (ins(d, "O_TEMPORARY", (long)O_TEMPORARY)) return -1; |
| 8850 | #endif |
| 8851 | #ifdef O_RANDOM |
| 8852 | /* Optimize for random access. */ |
| 8853 | if (ins(d, "O_RANDOM", (long)O_RANDOM)) return -1; |
| 8854 | #endif |
| 8855 | #ifdef O_SEQUENTIAL |
| 8856 | /* Optimize for sequential access. */ |
| 8857 | if (ins(d, "O_SEQUENTIAL", (long)O_SEQUENTIAL)) return -1; |
| 8858 | #endif |
| 8859 | |
Martin v. Löwis | 4fe3c27 | 2001-10-18 22:05:36 +0000 | [diff] [blame] | 8860 | /* GNU extensions. */ |
Georg Brandl | 5049a85 | 2008-05-16 13:10:15 +0000 | [diff] [blame] | 8861 | #ifdef O_ASYNC |
| 8862 | /* Send a SIGIO signal whenever input or output |
| 8863 | becomes available on file descriptor */ |
| 8864 | if (ins(d, "O_ASYNC", (long)O_ASYNC)) return -1; |
| 8865 | #endif |
Martin v. Löwis | 4fe3c27 | 2001-10-18 22:05:36 +0000 | [diff] [blame] | 8866 | #ifdef O_DIRECT |
| 8867 | /* Direct disk access. */ |
| 8868 | if (ins(d, "O_DIRECT", (long)O_DIRECT)) return -1; |
| 8869 | #endif |
| 8870 | #ifdef O_DIRECTORY |
| 8871 | /* Must be a directory. */ |
| 8872 | if (ins(d, "O_DIRECTORY", (long)O_DIRECTORY)) return -1; |
| 8873 | #endif |
| 8874 | #ifdef O_NOFOLLOW |
| 8875 | /* Do not follow links. */ |
| 8876 | if (ins(d, "O_NOFOLLOW", (long)O_NOFOLLOW)) return -1; |
| 8877 | #endif |
Georg Brandl | b67da6e | 2007-11-24 13:56:09 +0000 | [diff] [blame] | 8878 | #ifdef O_NOATIME |
| 8879 | /* Do not update the access time. */ |
| 8880 | if (ins(d, "O_NOATIME", (long)O_NOATIME)) return -1; |
| 8881 | #endif |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 8882 | |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 8883 | /* These come from sysexits.h */ |
| 8884 | #ifdef EX_OK |
| 8885 | if (ins(d, "EX_OK", (long)EX_OK)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 8886 | #endif /* EX_OK */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 8887 | #ifdef EX_USAGE |
| 8888 | if (ins(d, "EX_USAGE", (long)EX_USAGE)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 8889 | #endif /* EX_USAGE */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 8890 | #ifdef EX_DATAERR |
| 8891 | if (ins(d, "EX_DATAERR", (long)EX_DATAERR)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 8892 | #endif /* EX_DATAERR */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 8893 | #ifdef EX_NOINPUT |
| 8894 | if (ins(d, "EX_NOINPUT", (long)EX_NOINPUT)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 8895 | #endif /* EX_NOINPUT */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 8896 | #ifdef EX_NOUSER |
| 8897 | if (ins(d, "EX_NOUSER", (long)EX_NOUSER)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 8898 | #endif /* EX_NOUSER */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 8899 | #ifdef EX_NOHOST |
| 8900 | if (ins(d, "EX_NOHOST", (long)EX_NOHOST)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 8901 | #endif /* EX_NOHOST */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 8902 | #ifdef EX_UNAVAILABLE |
| 8903 | if (ins(d, "EX_UNAVAILABLE", (long)EX_UNAVAILABLE)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 8904 | #endif /* EX_UNAVAILABLE */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 8905 | #ifdef EX_SOFTWARE |
| 8906 | if (ins(d, "EX_SOFTWARE", (long)EX_SOFTWARE)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 8907 | #endif /* EX_SOFTWARE */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 8908 | #ifdef EX_OSERR |
| 8909 | if (ins(d, "EX_OSERR", (long)EX_OSERR)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 8910 | #endif /* EX_OSERR */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 8911 | #ifdef EX_OSFILE |
| 8912 | if (ins(d, "EX_OSFILE", (long)EX_OSFILE)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 8913 | #endif /* EX_OSFILE */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 8914 | #ifdef EX_CANTCREAT |
| 8915 | if (ins(d, "EX_CANTCREAT", (long)EX_CANTCREAT)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 8916 | #endif /* EX_CANTCREAT */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 8917 | #ifdef EX_IOERR |
| 8918 | if (ins(d, "EX_IOERR", (long)EX_IOERR)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 8919 | #endif /* EX_IOERR */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 8920 | #ifdef EX_TEMPFAIL |
| 8921 | if (ins(d, "EX_TEMPFAIL", (long)EX_TEMPFAIL)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 8922 | #endif /* EX_TEMPFAIL */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 8923 | #ifdef EX_PROTOCOL |
| 8924 | if (ins(d, "EX_PROTOCOL", (long)EX_PROTOCOL)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 8925 | #endif /* EX_PROTOCOL */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 8926 | #ifdef EX_NOPERM |
| 8927 | if (ins(d, "EX_NOPERM", (long)EX_NOPERM)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 8928 | #endif /* EX_NOPERM */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 8929 | #ifdef EX_CONFIG |
| 8930 | if (ins(d, "EX_CONFIG", (long)EX_CONFIG)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 8931 | #endif /* EX_CONFIG */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 8932 | #ifdef EX_NOTFOUND |
| 8933 | if (ins(d, "EX_NOTFOUND", (long)EX_NOTFOUND)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 8934 | #endif /* EX_NOTFOUND */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 8935 | |
Guido van Rossum | 246bc17 | 1999-02-01 23:54:31 +0000 | [diff] [blame] | 8936 | #ifdef HAVE_SPAWNV |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 8937 | #if defined(PYOS_OS2) && defined(PYCC_GCC) |
| 8938 | if (ins(d, "P_WAIT", (long)P_WAIT)) return -1; |
| 8939 | if (ins(d, "P_NOWAIT", (long)P_NOWAIT)) return -1; |
| 8940 | if (ins(d, "P_OVERLAY", (long)P_OVERLAY)) return -1; |
| 8941 | if (ins(d, "P_DEBUG", (long)P_DEBUG)) return -1; |
| 8942 | if (ins(d, "P_SESSION", (long)P_SESSION)) return -1; |
| 8943 | if (ins(d, "P_DETACH", (long)P_DETACH)) return -1; |
| 8944 | if (ins(d, "P_PM", (long)P_PM)) return -1; |
| 8945 | if (ins(d, "P_DEFAULT", (long)P_DEFAULT)) return -1; |
| 8946 | if (ins(d, "P_MINIMIZE", (long)P_MINIMIZE)) return -1; |
| 8947 | if (ins(d, "P_MAXIMIZE", (long)P_MAXIMIZE)) return -1; |
| 8948 | if (ins(d, "P_FULLSCREEN", (long)P_FULLSCREEN)) return -1; |
| 8949 | if (ins(d, "P_WINDOWED", (long)P_WINDOWED)) return -1; |
| 8950 | if (ins(d, "P_FOREGROUND", (long)P_FOREGROUND)) return -1; |
| 8951 | if (ins(d, "P_BACKGROUND", (long)P_BACKGROUND)) return -1; |
| 8952 | if (ins(d, "P_NOCLOSE", (long)P_NOCLOSE)) return -1; |
| 8953 | if (ins(d, "P_NOSESSION", (long)P_NOSESSION)) return -1; |
| 8954 | if (ins(d, "P_QUOTE", (long)P_QUOTE)) return -1; |
| 8955 | if (ins(d, "P_TILDE", (long)P_TILDE)) return -1; |
| 8956 | if (ins(d, "P_UNRELATED", (long)P_UNRELATED)) return -1; |
| 8957 | if (ins(d, "P_DEBUGDESC", (long)P_DEBUGDESC)) return -1; |
| 8958 | #else |
Guido van Rossum | 7d38529 | 1999-02-16 19:38:04 +0000 | [diff] [blame] | 8959 | if (ins(d, "P_WAIT", (long)_P_WAIT)) return -1; |
| 8960 | if (ins(d, "P_NOWAIT", (long)_P_NOWAIT)) return -1; |
| 8961 | if (ins(d, "P_OVERLAY", (long)_OLD_P_OVERLAY)) return -1; |
| 8962 | if (ins(d, "P_NOWAITO", (long)_P_NOWAITO)) return -1; |
| 8963 | if (ins(d, "P_DETACH", (long)_P_DETACH)) return -1; |
Guido van Rossum | 246bc17 | 1999-02-01 23:54:31 +0000 | [diff] [blame] | 8964 | #endif |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 8965 | #endif |
Guido van Rossum | 246bc17 | 1999-02-01 23:54:31 +0000 | [diff] [blame] | 8966 | |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 8967 | #if defined(PYOS_OS2) |
| 8968 | if (insertvalues(d)) return -1; |
| 8969 | #endif |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 8970 | return 0; |
| 8971 | } |
| 8972 | |
| 8973 | |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 8974 | #if (defined(_MSC_VER) || defined(__WATCOMC__) || defined(__BORLANDC__)) && !defined(__QNX__) |
Guido van Rossum | 0cb96de | 1997-10-01 04:29:29 +0000 | [diff] [blame] | 8975 | #define INITFUNC initnt |
| 8976 | #define MODNAME "nt" |
Tim Peters | 58e0a8c | 2001-05-14 22:32:33 +0000 | [diff] [blame] | 8977 | |
| 8978 | #elif defined(PYOS_OS2) |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 8979 | #define INITFUNC initos2 |
| 8980 | #define MODNAME "os2" |
Tim Peters | 58e0a8c | 2001-05-14 22:32:33 +0000 | [diff] [blame] | 8981 | |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 8982 | #else |
Guido van Rossum | 0cb96de | 1997-10-01 04:29:29 +0000 | [diff] [blame] | 8983 | #define INITFUNC initposix |
| 8984 | #define MODNAME "posix" |
| 8985 | #endif |
| 8986 | |
Mark Hammond | fe51c6d | 2002-08-02 02:27:13 +0000 | [diff] [blame] | 8987 | PyMODINIT_FUNC |
Thomas Wouters | f3f33dc | 2000-07-21 06:00:07 +0000 | [diff] [blame] | 8988 | INITFUNC(void) |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 8989 | { |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 8990 | PyObject *m, *v; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 8991 | |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 8992 | m = Py_InitModule3(MODNAME, |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 8993 | posix_methods, |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 8994 | posix__doc__); |
Neal Norwitz | 1ac754f | 2006-01-19 06:09:39 +0000 | [diff] [blame] | 8995 | if (m == NULL) |
| 8996 | return; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 8997 | |
Guido van Rossum | 0cb96de | 1997-10-01 04:29:29 +0000 | [diff] [blame] | 8998 | /* Initialize environ dictionary */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 8999 | v = convertenviron(); |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 9000 | Py_XINCREF(v); |
| 9001 | if (v == NULL || PyModule_AddObject(m, "environ", v) != 0) |
Guido van Rossum | 0cb96de | 1997-10-01 04:29:29 +0000 | [diff] [blame] | 9002 | return; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 9003 | Py_DECREF(v); |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9004 | |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 9005 | if (all_ins(m)) |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 9006 | return; |
| 9007 | |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 9008 | if (setup_confname_tables(m)) |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 9009 | return; |
| 9010 | |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 9011 | Py_INCREF(PyExc_OSError); |
| 9012 | PyModule_AddObject(m, "error", PyExc_OSError); |
Fred Drake | 762e206 | 1999-08-26 17:23:54 +0000 | [diff] [blame] | 9013 | |
Guido van Rossum | b3d3956 | 2000-01-31 18:41:26 +0000 | [diff] [blame] | 9014 | #ifdef HAVE_PUTENV |
Neil Schemenauer | 19030a0 | 2001-01-16 04:27:47 +0000 | [diff] [blame] | 9015 | if (posix_putenv_garbage == NULL) |
| 9016 | posix_putenv_garbage = PyDict_New(); |
Guido van Rossum | b3d3956 | 2000-01-31 18:41:26 +0000 | [diff] [blame] | 9017 | #endif |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 9018 | |
Martin v. Löwis | 19ab6c9 | 2006-04-16 18:55:50 +0000 | [diff] [blame] | 9019 | if (!initialized) { |
| 9020 | stat_result_desc.name = MODNAME ".stat_result"; |
| 9021 | stat_result_desc.fields[7].name = PyStructSequence_UnnamedField; |
| 9022 | stat_result_desc.fields[8].name = PyStructSequence_UnnamedField; |
| 9023 | stat_result_desc.fields[9].name = PyStructSequence_UnnamedField; |
| 9024 | PyStructSequence_InitType(&StatResultType, &stat_result_desc); |
| 9025 | structseq_new = StatResultType.tp_new; |
| 9026 | StatResultType.tp_new = statresult_new; |
| 9027 | |
| 9028 | statvfs_result_desc.name = MODNAME ".statvfs_result"; |
| 9029 | PyStructSequence_InitType(&StatVFSResultType, &statvfs_result_desc); |
Martin v. Löwis | 3f15ae3 | 2008-12-29 18:20:48 +0000 | [diff] [blame] | 9030 | #ifdef NEED_TICKS_PER_SECOND |
| 9031 | # if defined(HAVE_SYSCONF) && defined(_SC_CLK_TCK) |
| 9032 | ticks_per_second = sysconf(_SC_CLK_TCK); |
| 9033 | # elif defined(HZ) |
| 9034 | ticks_per_second = HZ; |
| 9035 | # else |
| 9036 | ticks_per_second = 60; /* magic fallback value; may be bogus */ |
| 9037 | # endif |
| 9038 | #endif |
Martin v. Löwis | 19ab6c9 | 2006-04-16 18:55:50 +0000 | [diff] [blame] | 9039 | } |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 9040 | Py_INCREF((PyObject*) &StatResultType); |
| 9041 | PyModule_AddObject(m, "stat_result", (PyObject*) &StatResultType); |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 9042 | Py_INCREF((PyObject*) &StatVFSResultType); |
| 9043 | PyModule_AddObject(m, "statvfs_result", |
| 9044 | (PyObject*) &StatVFSResultType); |
Martin v. Löwis | 19ab6c9 | 2006-04-16 18:55:50 +0000 | [diff] [blame] | 9045 | initialized = 1; |
Ronald Oussoren | d06b6f2 | 2006-04-23 11:59:25 +0000 | [diff] [blame] | 9046 | |
| 9047 | #ifdef __APPLE__ |
| 9048 | /* |
| 9049 | * Step 2 of weak-linking support on Mac OS X. |
| 9050 | * |
| 9051 | * The code below removes functions that are not available on the |
| 9052 | * currently active platform. |
| 9053 | * |
| 9054 | * This block allow one to use a python binary that was build on |
| 9055 | * OSX 10.4 on OSX 10.3, without loosing access to new APIs on |
| 9056 | * OSX 10.4. |
| 9057 | */ |
| 9058 | #ifdef HAVE_FSTATVFS |
| 9059 | if (fstatvfs == NULL) { |
| 9060 | if (PyObject_DelAttrString(m, "fstatvfs") == -1) { |
| 9061 | return; |
| 9062 | } |
| 9063 | } |
| 9064 | #endif /* HAVE_FSTATVFS */ |
| 9065 | |
| 9066 | #ifdef HAVE_STATVFS |
| 9067 | if (statvfs == NULL) { |
| 9068 | if (PyObject_DelAttrString(m, "statvfs") == -1) { |
| 9069 | return; |
| 9070 | } |
| 9071 | } |
| 9072 | #endif /* HAVE_STATVFS */ |
| 9073 | |
| 9074 | # ifdef HAVE_LCHOWN |
| 9075 | if (lchown == NULL) { |
| 9076 | if (PyObject_DelAttrString(m, "lchown") == -1) { |
| 9077 | return; |
| 9078 | } |
| 9079 | } |
| 9080 | #endif /* HAVE_LCHOWN */ |
| 9081 | |
| 9082 | |
| 9083 | #endif /* __APPLE__ */ |
| 9084 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 9085 | } |
Anthony Baxter | ac6bd46 | 2006-04-13 02:06:09 +0000 | [diff] [blame] | 9086 | |
| 9087 | #ifdef __cplusplus |
| 9088 | } |
| 9089 | #endif |
| 9090 | |
Martin v. Löwis | 18aaa56 | 2006-10-15 08:43:33 +0000 | [diff] [blame] | 9091 | |