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 | |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 4 | /* This file is also used for Windows NT and MS-Win. In that case the module |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 5 | actually calls itself 'nt', not 'posix', and a few functions are |
| 6 | either unimplemented or implemented differently. The source |
Guido van Rossum | 8d665e6 | 1996-06-26 18:22:49 +0000 | [diff] [blame] | 7 | assumes that for Windows NT, the macro 'MS_WIN32' 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 |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 9 | test macro, e.g. '__BORLANDC__' or '_MSC_VER'. */ |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 10 | |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 11 | /* See also ../Dos/dosmodule.c */ |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 12 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 13 | static char posix__doc__ [] = |
| 14 | "This module provides access to operating system functionality that is\n\ |
| 15 | standardized by the C Standard and the POSIX standard (a thinly\n\ |
| 16 | disguised Unix interface). Refer to the library manual and\n\ |
| 17 | corresponding Unix manual entries for more information on calls."; |
| 18 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 19 | #include "Python.h" |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 20 | #include "structseq.h" |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 21 | |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 22 | #if defined(PYOS_OS2) |
| 23 | #define INCL_DOS |
| 24 | #define INCL_DOSERRORS |
| 25 | #define INCL_DOSPROCESS |
| 26 | #define INCL_NOPMAPI |
| 27 | #include <os2.h> |
| 28 | #endif |
| 29 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 30 | #include <sys/types.h> |
| 31 | #include <sys/stat.h> |
Guido van Rossum | a6535fd | 2001-10-18 19:44:10 +0000 | [diff] [blame] | 32 | |
Guido van Rossum | 36bc680 | 1995-06-14 22:54:23 +0000 | [diff] [blame] | 33 | #ifdef HAVE_SYS_WAIT_H |
| 34 | #include <sys/wait.h> /* For WNOHANG */ |
| 35 | #endif |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 36 | |
Guido van Rossum | a376cc5 | 1996-12-05 23:43:35 +0000 | [diff] [blame] | 37 | #ifdef HAVE_SIGNAL_H |
| 38 | #include <signal.h> |
| 39 | #endif |
| 40 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 41 | #ifdef HAVE_FCNTL_H |
| 42 | #include <fcntl.h> |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 43 | #endif /* HAVE_FCNTL_H */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 44 | |
Guido van Rossum | a6535fd | 2001-10-18 19:44:10 +0000 | [diff] [blame] | 45 | #ifdef HAVE_GRP_H |
| 46 | #include <grp.h> |
| 47 | #endif |
| 48 | |
Skip Montanaro | 8216c18 | 2001-02-27 17:04:34 +0000 | [diff] [blame] | 49 | /* pick up declaration of confstr on some systems? */ |
| 50 | #ifdef HAVE_UNISTD_H |
| 51 | #include <unistd.h> |
| 52 | #endif /* HAVE_UNISTD_H */ |
| 53 | |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 54 | /* Various compilers have only certain posix functions */ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 55 | /* XXX Gosh I wish these were all moved into pyconfig.h */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 56 | #if defined(PYCC_VACPP) && defined(PYOS_OS2) |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 57 | #include <process.h> |
| 58 | #else |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 59 | #if defined(__WATCOMC__) && !defined(__QNX__) /* Watcom compiler */ |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 60 | #define HAVE_GETCWD 1 |
| 61 | #define HAVE_OPENDIR 1 |
| 62 | #define HAVE_SYSTEM 1 |
| 63 | #if defined(__OS2__) |
| 64 | #define HAVE_EXECV 1 |
| 65 | #define HAVE_WAIT 1 |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 66 | #endif |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 67 | #include <process.h> |
| 68 | #else |
| 69 | #ifdef __BORLANDC__ /* Borland compiler */ |
| 70 | #define HAVE_EXECV 1 |
| 71 | #define HAVE_GETCWD 1 |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 72 | #define HAVE_OPENDIR 1 |
| 73 | #define HAVE_PIPE 1 |
| 74 | #define HAVE_POPEN 1 |
| 75 | #define HAVE_SYSTEM 1 |
| 76 | #define HAVE_WAIT 1 |
| 77 | #else |
| 78 | #ifdef _MSC_VER /* Microsoft compiler */ |
Guido van Rossum | 8d665e6 | 1996-06-26 18:22:49 +0000 | [diff] [blame] | 79 | #define HAVE_GETCWD 1 |
| 80 | #ifdef MS_WIN32 |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 81 | #define HAVE_SPAWNV 1 |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 82 | #define HAVE_EXECV 1 |
| 83 | #define HAVE_PIPE 1 |
| 84 | #define HAVE_POPEN 1 |
| 85 | #define HAVE_SYSTEM 1 |
| 86 | #else /* 16-bit Windows */ |
Guido van Rossum | 8d665e6 | 1996-06-26 18:22:49 +0000 | [diff] [blame] | 87 | #endif /* !MS_WIN32 */ |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 88 | #else /* all other compilers */ |
| 89 | /* Unix functions that the configure script doesn't check for */ |
| 90 | #define HAVE_EXECV 1 |
| 91 | #define HAVE_FORK 1 |
Guido van Rossum | 2242f2f | 2001-04-11 20:58:20 +0000 | [diff] [blame] | 92 | #if defined(__USLC__) && defined(__SCO_VERSION__) /* SCO UDK Compiler */ |
| 93 | #define HAVE_FORK1 1 |
| 94 | #endif |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 95 | #define HAVE_GETCWD 1 |
| 96 | #define HAVE_GETEGID 1 |
| 97 | #define HAVE_GETEUID 1 |
| 98 | #define HAVE_GETGID 1 |
| 99 | #define HAVE_GETPPID 1 |
| 100 | #define HAVE_GETUID 1 |
| 101 | #define HAVE_KILL 1 |
| 102 | #define HAVE_OPENDIR 1 |
| 103 | #define HAVE_PIPE 1 |
| 104 | #define HAVE_POPEN 1 |
| 105 | #define HAVE_SYSTEM 1 |
| 106 | #define HAVE_WAIT 1 |
Guido van Rossum | d371ff1 | 1999-01-25 16:12:23 +0000 | [diff] [blame] | 107 | #define HAVE_TTYNAME 1 |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 108 | #endif /* _MSC_VER */ |
| 109 | #endif /* __BORLANDC__ */ |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 110 | #endif /* ! __WATCOMC__ || __QNX__ */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 111 | #endif /* ! __IBMC__ */ |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 112 | |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 113 | #ifndef _MSC_VER |
Guido van Rossum | 36bc680 | 1995-06-14 22:54:23 +0000 | [diff] [blame] | 114 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 115 | #ifdef HAVE_UNISTD_H |
Guido van Rossum | 0b0db8e | 1993-01-21 16:07:51 +0000 | [diff] [blame] | 116 | #include <unistd.h> |
Guido van Rossum | 36bc680 | 1995-06-14 22:54:23 +0000 | [diff] [blame] | 117 | #endif |
| 118 | |
Guido van Rossum | b00adfb | 2000-09-25 13:22:00 +0000 | [diff] [blame] | 119 | #if defined(sun) && !defined(__SVR4) |
| 120 | /* SunOS 4.1.4 doesn't have prototypes for these: */ |
| 121 | extern int rename(const char *, const char *); |
| 122 | extern int pclose(FILE *); |
| 123 | extern int fclose(FILE *); |
Thomas Wouters | 0f954a4 | 2001-02-15 08:46:56 +0000 | [diff] [blame] | 124 | extern int fsync(int); |
| 125 | extern int lstat(const char *, struct stat *); |
| 126 | extern int symlink(const char *, const char *); |
Guido van Rossum | b00adfb | 2000-09-25 13:22:00 +0000 | [diff] [blame] | 127 | #endif |
| 128 | |
Guido van Rossum | 36bc680 | 1995-06-14 22:54:23 +0000 | [diff] [blame] | 129 | #ifdef NeXT |
| 130 | /* NeXT's <unistd.h> and <utime.h> aren't worth much */ |
| 131 | #undef HAVE_UNISTD_H |
| 132 | #undef HAVE_UTIME_H |
Guido van Rossum | b9f866c | 1997-05-22 15:12:39 +0000 | [diff] [blame] | 133 | #define HAVE_WAITPID |
Guido van Rossum | 36bc680 | 1995-06-14 22:54:23 +0000 | [diff] [blame] | 134 | /* #undef HAVE_GETCWD */ |
Guido van Rossum | 54ecc3d | 1999-01-27 17:53:11 +0000 | [diff] [blame] | 135 | #define UNION_WAIT /* This should really be checked for by autoconf */ |
Guido van Rossum | 36bc680 | 1995-06-14 22:54:23 +0000 | [diff] [blame] | 136 | #endif |
| 137 | |
Thomas Wouters | 1e0c2f4 | 2000-07-24 16:06:23 +0000 | [diff] [blame] | 138 | #ifndef HAVE_UNISTD_H |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 139 | #if defined(PYCC_VACPP) |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 140 | extern int mkdir(char *); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 141 | #else |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 142 | #if ( defined(__WATCOMC__) || defined(_MSC_VER) ) && !defined(__QNX__) |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 143 | extern int mkdir(const char *); |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 144 | #else |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 145 | extern int mkdir(const char *, mode_t); |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 146 | #endif |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 147 | #endif |
| 148 | #if defined(__IBMC__) || defined(__IBMCPP__) |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 149 | extern int chdir(char *); |
| 150 | extern int rmdir(char *); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 151 | #else |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 152 | extern int chdir(const char *); |
| 153 | extern int rmdir(const char *); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 154 | #endif |
Tim Peters | 58e0a8c | 2001-05-14 22:32:33 +0000 | [diff] [blame] | 155 | #ifdef __BORLANDC__ |
| 156 | extern int chmod(const char *, int); |
| 157 | #else |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 158 | extern int chmod(const char *, mode_t); |
Tim Peters | 58e0a8c | 2001-05-14 22:32:33 +0000 | [diff] [blame] | 159 | #endif |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 160 | extern int chown(const char *, uid_t, gid_t); |
| 161 | extern char *getcwd(char *, int); |
| 162 | extern char *strerror(int); |
| 163 | extern int link(const char *, const char *); |
| 164 | extern int rename(const char *, const char *); |
| 165 | extern int stat(const char *, struct stat *); |
| 166 | extern int unlink(const char *); |
| 167 | extern int pclose(FILE *); |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 168 | #ifdef HAVE_SYMLINK |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 169 | extern int symlink(const char *, const char *); |
Guido van Rossum | a38a503 | 1995-02-17 15:11:36 +0000 | [diff] [blame] | 170 | #endif /* HAVE_SYMLINK */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 171 | #ifdef HAVE_LSTAT |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 172 | extern int lstat(const char *, struct stat *); |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 173 | #endif /* HAVE_LSTAT */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 174 | #endif /* !HAVE_UNISTD_H */ |
Guido van Rossum | 36bc680 | 1995-06-14 22:54:23 +0000 | [diff] [blame] | 175 | |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 176 | #endif /* !_MSC_VER */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 177 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 178 | #ifdef HAVE_UTIME_H |
| 179 | #include <utime.h> |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 180 | #endif /* HAVE_UTIME_H */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 181 | |
Guido van Rossum | 14ed0b2 | 1994-09-29 09:50:09 +0000 | [diff] [blame] | 182 | #ifdef HAVE_SYS_UTIME_H |
| 183 | #include <sys/utime.h> |
| 184 | #define HAVE_UTIME_H /* pretend we do for the rest of this file */ |
| 185 | #endif /* HAVE_SYS_UTIME_H */ |
| 186 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 187 | #ifdef HAVE_SYS_TIMES_H |
| 188 | #include <sys/times.h> |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 189 | #endif /* HAVE_SYS_TIMES_H */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 190 | |
| 191 | #ifdef HAVE_SYS_PARAM_H |
| 192 | #include <sys/param.h> |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 193 | #endif /* HAVE_SYS_PARAM_H */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 194 | |
| 195 | #ifdef HAVE_SYS_UTSNAME_H |
| 196 | #include <sys/utsname.h> |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 197 | #endif /* HAVE_SYS_UTSNAME_H */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 198 | |
| 199 | #ifndef MAXPATHLEN |
| 200 | #define MAXPATHLEN 1024 |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 201 | #endif /* MAXPATHLEN */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 202 | |
Guido van Rossum | 3bbc62e | 1995-01-02 19:30:30 +0000 | [diff] [blame] | 203 | #ifdef HAVE_DIRENT_H |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 204 | #include <dirent.h> |
Guido van Rossum | 3bbc62e | 1995-01-02 19:30:30 +0000 | [diff] [blame] | 205 | #define NAMLEN(dirent) strlen((dirent)->d_name) |
| 206 | #else |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 207 | #if defined(__WATCOMC__) && !defined(__QNX__) |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 208 | #include <direct.h> |
| 209 | #define NAMLEN(dirent) strlen((dirent)->d_name) |
| 210 | #else |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 211 | #define dirent direct |
Guido van Rossum | 3bbc62e | 1995-01-02 19:30:30 +0000 | [diff] [blame] | 212 | #define NAMLEN(dirent) (dirent)->d_namlen |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 213 | #endif |
Guido van Rossum | 3bbc62e | 1995-01-02 19:30:30 +0000 | [diff] [blame] | 214 | #ifdef HAVE_SYS_NDIR_H |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 215 | #include <sys/ndir.h> |
Guido van Rossum | 3bbc62e | 1995-01-02 19:30:30 +0000 | [diff] [blame] | 216 | #endif |
| 217 | #ifdef HAVE_SYS_DIR_H |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 218 | #include <sys/dir.h> |
Guido van Rossum | 3bbc62e | 1995-01-02 19:30:30 +0000 | [diff] [blame] | 219 | #endif |
| 220 | #ifdef HAVE_NDIR_H |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 221 | #include <ndir.h> |
Guido van Rossum | 3bbc62e | 1995-01-02 19:30:30 +0000 | [diff] [blame] | 222 | #endif |
| 223 | #endif |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 224 | |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 225 | #ifdef _MSC_VER |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 226 | #include <direct.h> |
| 227 | #include <io.h> |
| 228 | #include <process.h> |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 229 | #define WINDOWS_LEAN_AND_MEAN |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 230 | #include <windows.h> |
Guido van Rossum | 8d665e6 | 1996-06-26 18:22:49 +0000 | [diff] [blame] | 231 | #ifdef MS_WIN32 |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 232 | #define popen _popen |
Guido van Rossum | 794d813 | 1994-08-23 13:48:48 +0000 | [diff] [blame] | 233 | #define pclose _pclose |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 234 | #else /* 16-bit Windows */ |
| 235 | #include <dos.h> |
| 236 | #include <ctype.h> |
Guido van Rossum | 8d665e6 | 1996-06-26 18:22:49 +0000 | [diff] [blame] | 237 | #endif /* MS_WIN32 */ |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 238 | #endif /* _MSC_VER */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 239 | |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 240 | #if defined(PYCC_VACPP) && defined(PYOS_OS2) |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 241 | #include <io.h> |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 242 | #endif /* OS2 */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 243 | |
Guido van Rossum | 54ecc3d | 1999-01-27 17:53:11 +0000 | [diff] [blame] | 244 | #ifdef UNION_WAIT |
| 245 | /* Emulate some macros on systems that have a union instead of macros */ |
| 246 | |
| 247 | #ifndef WIFEXITED |
| 248 | #define WIFEXITED(u_wait) (!(u_wait).w_termsig && !(u_wait).w_coredump) |
| 249 | #endif |
| 250 | |
| 251 | #ifndef WEXITSTATUS |
| 252 | #define WEXITSTATUS(u_wait) (WIFEXITED(u_wait)?((u_wait).w_retcode):-1) |
| 253 | #endif |
| 254 | |
| 255 | #ifndef WTERMSIG |
| 256 | #define WTERMSIG(u_wait) ((u_wait).w_termsig) |
| 257 | #endif |
| 258 | |
| 259 | #endif /* UNION_WAIT */ |
| 260 | |
Greg Ward | b48bc17 | 2000-03-01 21:51:56 +0000 | [diff] [blame] | 261 | /* Don't use the "_r" form if we don't need it (also, won't have a |
| 262 | prototype for it, at least on Solaris -- maybe others as well?). */ |
| 263 | #if defined(HAVE_CTERMID_R) && defined(WITH_THREAD) |
| 264 | #define USE_CTERMID_R |
| 265 | #endif |
| 266 | |
| 267 | #if defined(HAVE_TMPNAM_R) && defined(WITH_THREAD) |
| 268 | #define USE_TMPNAM_R |
| 269 | #endif |
| 270 | |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 271 | /* choose the appropriate stat and fstat functions and return structs */ |
Guido van Rossum | 64529cd | 2000-06-30 22:45:12 +0000 | [diff] [blame] | 272 | #undef STAT |
Tim Peters | 6e13a56 | 2001-09-06 00:32:15 +0000 | [diff] [blame] | 273 | #if defined(MS_WIN64) || defined(MS_WIN32) |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 274 | # define STAT _stati64 |
| 275 | # define FSTAT _fstati64 |
| 276 | # define STRUCT_STAT struct _stati64 |
| 277 | #else |
| 278 | # define STAT stat |
| 279 | # define FSTAT fstat |
| 280 | # define STRUCT_STAT struct stat |
| 281 | #endif |
| 282 | |
| 283 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 284 | /* Return a dictionary corresponding to the POSIX environment table */ |
| 285 | |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 286 | #if !defined(_MSC_VER) && ( !defined(__WATCOMC__) || defined(__QNX__) ) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 287 | extern char **environ; |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 288 | #endif /* !_MSC_VER */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 289 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 290 | static PyObject * |
Thomas Wouters | f3f33dc | 2000-07-21 06:00:07 +0000 | [diff] [blame] | 291 | convertenviron(void) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 292 | { |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 293 | PyObject *d; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 294 | char **e; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 295 | d = PyDict_New(); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 296 | if (d == NULL) |
| 297 | return NULL; |
| 298 | if (environ == NULL) |
| 299 | return d; |
Guido van Rossum | 6a619f4 | 1999-08-03 19:41:10 +0000 | [diff] [blame] | 300 | /* This part ignores errors */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 301 | for (e = environ; *e != NULL; e++) { |
Guido van Rossum | 6a619f4 | 1999-08-03 19:41:10 +0000 | [diff] [blame] | 302 | PyObject *k; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 303 | PyObject *v; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 304 | char *p = strchr(*e, '='); |
| 305 | if (p == NULL) |
| 306 | continue; |
Guido van Rossum | 6a619f4 | 1999-08-03 19:41:10 +0000 | [diff] [blame] | 307 | k = PyString_FromStringAndSize(*e, (int)(p-*e)); |
| 308 | if (k == NULL) { |
| 309 | PyErr_Clear(); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 310 | continue; |
Guido van Rossum | 6a619f4 | 1999-08-03 19:41:10 +0000 | [diff] [blame] | 311 | } |
| 312 | v = PyString_FromString(p+1); |
| 313 | if (v == NULL) { |
| 314 | PyErr_Clear(); |
| 315 | Py_DECREF(k); |
| 316 | continue; |
| 317 | } |
| 318 | if (PyDict_GetItem(d, k) == NULL) { |
| 319 | if (PyDict_SetItem(d, k, v) != 0) |
| 320 | PyErr_Clear(); |
| 321 | } |
| 322 | Py_DECREF(k); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 323 | Py_DECREF(v); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 324 | } |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 325 | #if defined(PYOS_OS2) |
| 326 | { |
| 327 | APIRET rc; |
| 328 | char buffer[1024]; /* OS/2 Provides a Documented Max of 1024 Chars */ |
| 329 | |
| 330 | rc = DosQueryExtLIBPATH(buffer, BEGIN_LIBPATH); |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 331 | if (rc == NO_ERROR) { /* (not a type, envname is NOT 'BEGIN_LIBPATH') */ |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 332 | PyObject *v = PyString_FromString(buffer); |
| 333 | PyDict_SetItemString(d, "BEGINLIBPATH", v); |
| 334 | Py_DECREF(v); |
| 335 | } |
| 336 | rc = DosQueryExtLIBPATH(buffer, END_LIBPATH); |
| 337 | if (rc == NO_ERROR) { /* (not a typo, envname is NOT 'END_LIBPATH') */ |
| 338 | PyObject *v = PyString_FromString(buffer); |
| 339 | PyDict_SetItemString(d, "ENDLIBPATH", v); |
| 340 | Py_DECREF(v); |
| 341 | } |
| 342 | } |
| 343 | #endif |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 344 | return d; |
| 345 | } |
| 346 | |
| 347 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 348 | /* Set a POSIX-specific error from errno, and return NULL */ |
| 349 | |
Barry Warsaw | d58d764 | 1998-07-23 16:14:40 +0000 | [diff] [blame] | 350 | static PyObject * |
Thomas Wouters | f3f33dc | 2000-07-21 06:00:07 +0000 | [diff] [blame] | 351 | posix_error(void) |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 352 | { |
Barry Warsaw | ca74da4 | 1999-02-09 19:31:45 +0000 | [diff] [blame] | 353 | return PyErr_SetFromErrno(PyExc_OSError); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 354 | } |
Barry Warsaw | d58d764 | 1998-07-23 16:14:40 +0000 | [diff] [blame] | 355 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 356 | posix_error_with_filename(char* name) |
Barry Warsaw | d58d764 | 1998-07-23 16:14:40 +0000 | [diff] [blame] | 357 | { |
Barry Warsaw | ca74da4 | 1999-02-09 19:31:45 +0000 | [diff] [blame] | 358 | return PyErr_SetFromErrnoWithFilename(PyExc_OSError, name); |
Barry Warsaw | d58d764 | 1998-07-23 16:14:40 +0000 | [diff] [blame] | 359 | } |
| 360 | |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 361 | static PyObject * |
| 362 | posix_error_with_allocated_filename(char* name) |
| 363 | { |
| 364 | PyObject *rc = PyErr_SetFromErrnoWithFilename(PyExc_OSError, name); |
| 365 | PyMem_Free(name); |
| 366 | return rc; |
| 367 | } |
| 368 | |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 369 | #ifdef MS_WIN32 |
| 370 | static PyObject * |
| 371 | win32_error(char* function, char* filename) |
| 372 | { |
Mark Hammond | 33a6da9 | 2000-08-15 00:46:38 +0000 | [diff] [blame] | 373 | /* XXX We should pass the function name along in the future. |
| 374 | (_winreg.c also wants to pass the function name.) |
| 375 | This would however require an additional param to the |
| 376 | Windows error object, which is non-trivial. |
| 377 | */ |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 378 | errno = GetLastError(); |
| 379 | if (filename) |
Mark Hammond | 33a6da9 | 2000-08-15 00:46:38 +0000 | [diff] [blame] | 380 | return PyErr_SetFromWindowsErrWithFilename(errno, filename); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 381 | else |
Mark Hammond | 33a6da9 | 2000-08-15 00:46:38 +0000 | [diff] [blame] | 382 | return PyErr_SetFromWindowsErr(errno); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 383 | } |
| 384 | #endif |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 385 | |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 386 | #if defined(PYOS_OS2) |
| 387 | /********************************************************************** |
| 388 | * Helper Function to Trim and Format OS/2 Messages |
| 389 | **********************************************************************/ |
| 390 | static void |
| 391 | os2_formatmsg(char *msgbuf, int msglen, char *reason) |
| 392 | { |
| 393 | msgbuf[msglen] = '\0'; /* OS/2 Doesn't Guarantee a Terminator */ |
| 394 | |
| 395 | if (strlen(msgbuf) > 0) { /* If Non-Empty Msg, Trim CRLF */ |
| 396 | char *lastc = &msgbuf[ strlen(msgbuf)-1 ]; |
| 397 | |
| 398 | while (lastc > msgbuf && isspace(*lastc)) |
| 399 | *lastc-- = '\0'; /* Trim Trailing Whitespace (CRLF) */ |
| 400 | } |
| 401 | |
| 402 | /* Add Optional Reason Text */ |
| 403 | if (reason) { |
| 404 | strcat(msgbuf, " : "); |
| 405 | strcat(msgbuf, reason); |
| 406 | } |
| 407 | } |
| 408 | |
| 409 | /********************************************************************** |
| 410 | * Decode an OS/2 Operating System Error Code |
| 411 | * |
| 412 | * A convenience function to lookup an OS/2 error code and return a |
| 413 | * text message we can use to raise a Python exception. |
| 414 | * |
| 415 | * Notes: |
| 416 | * The messages for errors returned from the OS/2 kernel reside in |
| 417 | * the file OSO001.MSG in the \OS2 directory hierarchy. |
| 418 | * |
| 419 | **********************************************************************/ |
| 420 | static char * |
| 421 | os2_strerror(char *msgbuf, int msgbuflen, int errorcode, char *reason) |
| 422 | { |
| 423 | APIRET rc; |
| 424 | ULONG msglen; |
| 425 | |
| 426 | /* Retrieve Kernel-Related Error Message from OSO001.MSG File */ |
| 427 | Py_BEGIN_ALLOW_THREADS |
| 428 | rc = DosGetMessage(NULL, 0, msgbuf, msgbuflen, |
| 429 | errorcode, "oso001.msg", &msglen); |
| 430 | Py_END_ALLOW_THREADS |
| 431 | |
| 432 | if (rc == NO_ERROR) |
| 433 | os2_formatmsg(msgbuf, msglen, reason); |
| 434 | else |
| 435 | sprintf(msgbuf, "unknown OS error #%d", errorcode); |
| 436 | |
| 437 | return msgbuf; |
| 438 | } |
| 439 | |
| 440 | /* Set an OS/2-specific error and return NULL. OS/2 kernel |
| 441 | errors are not in a global variable e.g. 'errno' nor are |
| 442 | they congruent with posix error numbers. */ |
| 443 | |
| 444 | static PyObject * os2_error(int code) |
| 445 | { |
| 446 | char text[1024]; |
| 447 | PyObject *v; |
| 448 | |
| 449 | os2_strerror(text, sizeof(text), code, ""); |
| 450 | |
| 451 | v = Py_BuildValue("(is)", code, text); |
| 452 | if (v != NULL) { |
Barry Warsaw | ca74da4 | 1999-02-09 19:31:45 +0000 | [diff] [blame] | 453 | PyErr_SetObject(PyExc_OSError, v); |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 454 | Py_DECREF(v); |
| 455 | } |
| 456 | return NULL; /* Signal to Python that an Exception is Pending */ |
| 457 | } |
| 458 | |
| 459 | #endif /* OS2 */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 460 | |
| 461 | /* POSIX generic methods */ |
| 462 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 463 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 464 | posix_int(PyObject *args, char *format, int (*func)(int)) |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 465 | { |
| 466 | int fd; |
| 467 | int res; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 468 | if (!PyArg_ParseTuple(args, format, &fd)) |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 469 | return NULL; |
| 470 | Py_BEGIN_ALLOW_THREADS |
| 471 | res = (*func)(fd); |
| 472 | Py_END_ALLOW_THREADS |
| 473 | if (res < 0) |
| 474 | return posix_error(); |
| 475 | Py_INCREF(Py_None); |
| 476 | return Py_None; |
| 477 | } |
| 478 | |
| 479 | |
| 480 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 481 | posix_1str(PyObject *args, char *format, int (*func)(const char*)) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 482 | { |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 483 | char *path1 = NULL; |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 484 | int res; |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 485 | if (!PyArg_ParseTuple(args, format, |
| 486 | Py_FileSystemDefaultEncoding, &path1)) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 487 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 488 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 489 | res = (*func)(path1); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 490 | Py_END_ALLOW_THREADS |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 491 | if (res < 0) |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 492 | return posix_error_with_allocated_filename(path1); |
| 493 | PyMem_Free(path1); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 494 | Py_INCREF(Py_None); |
| 495 | return Py_None; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 496 | } |
| 497 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 498 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 499 | posix_2str(PyObject *args, char *format, |
| 500 | int (*func)(const char *, const char *)) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 501 | { |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 502 | char *path1 = NULL, *path2 = NULL; |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 503 | int res; |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 504 | if (!PyArg_ParseTuple(args, format, |
| 505 | Py_FileSystemDefaultEncoding, &path1, |
| 506 | Py_FileSystemDefaultEncoding, &path2)) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 507 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 508 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 509 | res = (*func)(path1, path2); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 510 | Py_END_ALLOW_THREADS |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 511 | PyMem_Free(path1); |
| 512 | PyMem_Free(path2); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 513 | if (res != 0) |
Barry Warsaw | d58d764 | 1998-07-23 16:14:40 +0000 | [diff] [blame] | 514 | /* XXX how to report both path1 and path2??? */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 515 | return posix_error(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 516 | Py_INCREF(Py_None); |
| 517 | return Py_None; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 518 | } |
| 519 | |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 520 | static char stat_result__doc__[] = |
| 521 | "stat_result: Result from stat or lstat.\n\n\ |
| 522 | This object may be accessed either as a tuple of\n\ |
| 523 | (mode,ino,dev,nlink,uid,gid,size,atime,mtime,ctime)\n\ |
| 524 | or via the attributes st_mode, st_ino, st_dev, st_nlink, st_uid, and so on.\n\ |
| 525 | \n\ |
Guido van Rossum | a4dc73e | 2001-10-18 20:53:15 +0000 | [diff] [blame] | 526 | Posix/windows: If your platform supports st_blksize, st_blocks, or st_rdev,\n\ |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 527 | they are available as attributes only.\n\ |
| 528 | \n\ |
| 529 | See os.stat for more information.\n"; |
| 530 | |
| 531 | static PyStructSequence_Field stat_result_fields[] = { |
| 532 | {"st_mode", "protection bits"}, |
| 533 | {"st_ino", "inode"}, |
| 534 | {"st_dev", "device"}, |
| 535 | {"st_nlink", "number of hard links"}, |
| 536 | {"st_uid", "user ID of owner"}, |
| 537 | {"st_gid", "group ID of owner"}, |
| 538 | {"st_size", "total size, in bytes"}, |
| 539 | {"st_atime", "time of last access"}, |
| 540 | {"st_mtime", "time of last modification"}, |
| 541 | {"st_ctime", "time of last change"}, |
| 542 | #ifdef HAVE_ST_BLKSIZE |
| 543 | {"st_blksize", "blocksize for filesystem I/O"}, |
| 544 | #endif |
| 545 | #ifdef HAVE_ST_BLOCKS |
| 546 | {"st_blocks", "number of blocks allocated"}, |
| 547 | #endif |
| 548 | #ifdef HAVE_ST_RDEV |
| 549 | {"st_rdev", "device type (if inode device)"}, |
| 550 | #endif |
| 551 | {0} |
| 552 | }; |
| 553 | |
| 554 | #ifdef HAVE_ST_BLKSIZE |
| 555 | #define ST_BLKSIZE_IDX 10 |
| 556 | #else |
| 557 | #define ST_BLKSIZE_IDX 9 |
| 558 | #endif |
| 559 | |
| 560 | #ifdef HAVE_ST_BLOCKS |
| 561 | #define ST_BLOCKS_IDX (ST_BLKSIZE_IDX+1) |
| 562 | #else |
| 563 | #define ST_BLOCKS_IDX ST_BLKSIZE_IDX |
| 564 | #endif |
| 565 | |
| 566 | #ifdef HAVE_ST_RDEV |
| 567 | #define ST_RDEV_IDX (ST_BLOCKS_IDX+1) |
| 568 | #else |
| 569 | #define ST_RDEV_IDX ST_BLOCKS_IDX |
| 570 | #endif |
| 571 | |
| 572 | static PyStructSequence_Desc stat_result_desc = { |
| 573 | "stat_result", /* name */ |
| 574 | stat_result__doc__, /* doc */ |
| 575 | stat_result_fields, |
| 576 | 10 |
| 577 | }; |
| 578 | |
| 579 | static char statvfs_result__doc__[] = |
| 580 | "statvfs_result: Result from statvfs or fstatvfs.\n\n\ |
| 581 | This object may be accessed either as a tuple of\n\ |
Guido van Rossum | a4dc73e | 2001-10-18 20:53:15 +0000 | [diff] [blame] | 582 | (bsize,frsize,blocks,bfree,bavail,files,ffree,favail,flag,namemax),\n\ |
| 583 | 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] | 584 | \n\ |
| 585 | See os.statvfs for more information.\n"; |
| 586 | |
| 587 | static PyStructSequence_Field statvfs_result_fields[] = { |
| 588 | {"f_bsize", }, |
| 589 | {"f_frsize", }, |
| 590 | {"f_blocks", }, |
| 591 | {"f_bfree", }, |
| 592 | {"f_bavail", }, |
| 593 | {"f_files", }, |
| 594 | {"f_ffree", }, |
| 595 | {"f_favail", }, |
| 596 | {"f_flag", }, |
| 597 | {"f_namemax",}, |
| 598 | {0} |
| 599 | }; |
| 600 | |
| 601 | static PyStructSequence_Desc statvfs_result_desc = { |
| 602 | "statvfs_result", /* name */ |
| 603 | statvfs_result__doc__, /* doc */ |
| 604 | statvfs_result_fields, |
| 605 | 10 |
| 606 | }; |
| 607 | |
| 608 | static PyTypeObject StatResultType; |
| 609 | static PyTypeObject StatVFSResultType; |
| 610 | |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 611 | /* pack a system stat C structure into the Python stat tuple |
| 612 | (used by posix_stat() and posix_fstat()) */ |
| 613 | static PyObject* |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 614 | _pystat_fromstructstat(STRUCT_STAT st) |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 615 | { |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 616 | PyObject *v = PyStructSequence_New(&StatResultType); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 617 | if (v == NULL) |
| 618 | return NULL; |
| 619 | |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 620 | PyStructSequence_SET_ITEM(v, 0, PyInt_FromLong((long)st.st_mode)); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 621 | #ifdef HAVE_LARGEFILE_SUPPORT |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 622 | PyStructSequence_SET_ITEM(v, 1, |
| 623 | PyLong_FromLongLong((LONG_LONG)st.st_ino)); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 624 | #else |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 625 | PyStructSequence_SET_ITEM(v, 1, PyInt_FromLong((long)st.st_ino)); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 626 | #endif |
| 627 | #if defined(HAVE_LONG_LONG) && !defined(MS_WINDOWS) |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 628 | PyStructSequence_SET_ITEM(v, 2, |
| 629 | PyLong_FromLongLong((LONG_LONG)st.st_dev)); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 630 | #else |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 631 | PyStructSequence_SET_ITEM(v, 2, PyInt_FromLong((long)st.st_dev)); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 632 | #endif |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 633 | PyStructSequence_SET_ITEM(v, 3, PyInt_FromLong((long)st.st_nlink)); |
| 634 | PyStructSequence_SET_ITEM(v, 4, PyInt_FromLong((long)st.st_uid)); |
| 635 | PyStructSequence_SET_ITEM(v, 5, PyInt_FromLong((long)st.st_gid)); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 636 | #ifdef HAVE_LARGEFILE_SUPPORT |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 637 | PyStructSequence_SET_ITEM(v, 6, |
| 638 | PyLong_FromLongLong((LONG_LONG)st.st_size)); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 639 | #else |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 640 | PyStructSequence_SET_ITEM(v, 6, PyInt_FromLong(st.st_size)); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 641 | #endif |
| 642 | #if SIZEOF_TIME_T > SIZEOF_LONG |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 643 | PyStructSequence_SET_ITEM(v, 7, |
| 644 | PyLong_FromLongLong((LONG_LONG)st.st_atime)); |
| 645 | PyStructSequence_SET_ITEM(v, 8, |
| 646 | PyLong_FromLongLong((LONG_LONG)st.st_mtime)); |
| 647 | PyStructSequence_SET_ITEM(v, 9, |
| 648 | PyLong_FromLongLong((LONG_LONG)st.st_ctime)); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 649 | #else |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 650 | PyStructSequence_SET_ITEM(v, 7, PyInt_FromLong((long)st.st_atime)); |
| 651 | PyStructSequence_SET_ITEM(v, 8, PyInt_FromLong((long)st.st_mtime)); |
| 652 | PyStructSequence_SET_ITEM(v, 9, PyInt_FromLong((long)st.st_ctime)); |
| 653 | #endif |
| 654 | |
| 655 | #ifdef HAVE_ST_BLKSIZE |
| 656 | PyStructSequence_SET_ITEM(v, ST_BLKSIZE_IDX, |
| 657 | PyInt_FromLong((long)st.st_blksize)); |
| 658 | #endif |
| 659 | #ifdef HAVE_ST_BLOCKS |
| 660 | PyStructSequence_SET_ITEM(v, ST_BLOCKS_IDX, |
| 661 | PyInt_FromLong((long)st.st_blocks)); |
| 662 | #endif |
| 663 | #ifdef HAVE_ST_RDEV |
| 664 | PyStructSequence_SET_ITEM(v, ST_RDEV_IDX, |
| 665 | PyInt_FromLong((long)st.st_rdev)); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 666 | #endif |
| 667 | |
| 668 | if (PyErr_Occurred()) { |
| 669 | Py_DECREF(v); |
| 670 | return NULL; |
| 671 | } |
| 672 | |
| 673 | return v; |
| 674 | } |
| 675 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 676 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 677 | posix_do_stat(PyObject *self, PyObject *args, char *format, |
| 678 | int (*statfunc)(const char *, STRUCT_STAT *)) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 679 | { |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 680 | STRUCT_STAT st; |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 681 | char *path = NULL; |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 682 | int res; |
Guido van Rossum | ace88ae | 2000-04-21 18:54:45 +0000 | [diff] [blame] | 683 | |
| 684 | #ifdef MS_WIN32 |
| 685 | int pathlen; |
| 686 | char pathcopy[MAX_PATH]; |
| 687 | #endif /* MS_WIN32 */ |
| 688 | |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 689 | if (!PyArg_ParseTuple(args, format, |
| 690 | Py_FileSystemDefaultEncoding, &path)) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 691 | return NULL; |
Guido van Rossum | ace88ae | 2000-04-21 18:54:45 +0000 | [diff] [blame] | 692 | |
| 693 | #ifdef MS_WIN32 |
| 694 | pathlen = strlen(path); |
| 695 | /* the library call can blow up if the file name is too long! */ |
| 696 | if (pathlen > MAX_PATH) { |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 697 | PyMem_Free(path); |
Guido van Rossum | ace88ae | 2000-04-21 18:54:45 +0000 | [diff] [blame] | 698 | errno = ENAMETOOLONG; |
| 699 | return posix_error(); |
| 700 | } |
| 701 | |
| 702 | if ((pathlen > 0) && (path[pathlen-1] == '\\' || path[pathlen-1] == '/')) { |
Guido van Rossum | 19dde10 | 2000-05-03 02:44:55 +0000 | [diff] [blame] | 703 | /* exception for specific or current drive root */ |
| 704 | if (!((pathlen == 1) || |
| 705 | ((pathlen == 3) && |
Guido van Rossum | ace88ae | 2000-04-21 18:54:45 +0000 | [diff] [blame] | 706 | (path[1] == ':') && |
Guido van Rossum | 19dde10 | 2000-05-03 02:44:55 +0000 | [diff] [blame] | 707 | (path[2] == '\\' || path[2] == '/')))) |
Guido van Rossum | ace88ae | 2000-04-21 18:54:45 +0000 | [diff] [blame] | 708 | { |
| 709 | strncpy(pathcopy, path, pathlen); |
| 710 | pathcopy[pathlen-1] = '\0'; /* nuke the trailing backslash */ |
| 711 | path = pathcopy; |
| 712 | } |
| 713 | } |
| 714 | #endif /* MS_WIN32 */ |
| 715 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 716 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 717 | res = (*statfunc)(path, &st); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 718 | Py_END_ALLOW_THREADS |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 719 | if (res != 0) |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 720 | return posix_error_with_allocated_filename(path); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 721 | |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 722 | PyMem_Free(path); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 723 | return _pystat_fromstructstat(st); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 724 | } |
| 725 | |
| 726 | |
| 727 | /* POSIX methods */ |
| 728 | |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 729 | static char posix_access__doc__[] = |
Guido van Rossum | 015f22a | 1999-01-06 22:52:38 +0000 | [diff] [blame] | 730 | "access(path, mode) -> 1 if granted, 0 otherwise\n\ |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 731 | Test for access to a file."; |
| 732 | |
| 733 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 734 | posix_access(PyObject *self, PyObject *args) |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 735 | { |
Guido van Rossum | 015f22a | 1999-01-06 22:52:38 +0000 | [diff] [blame] | 736 | char *path; |
| 737 | int mode; |
| 738 | int res; |
| 739 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 740 | if (!PyArg_ParseTuple(args, "si:access", &path, &mode)) |
Guido van Rossum | 015f22a | 1999-01-06 22:52:38 +0000 | [diff] [blame] | 741 | return NULL; |
| 742 | Py_BEGIN_ALLOW_THREADS |
| 743 | res = access(path, mode); |
| 744 | Py_END_ALLOW_THREADS |
| 745 | return(PyInt_FromLong(res == 0 ? 1L : 0L)); |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 746 | } |
| 747 | |
Guido van Rossum | d371ff1 | 1999-01-25 16:12:23 +0000 | [diff] [blame] | 748 | #ifndef F_OK |
| 749 | #define F_OK 0 |
| 750 | #endif |
| 751 | #ifndef R_OK |
| 752 | #define R_OK 4 |
| 753 | #endif |
| 754 | #ifndef W_OK |
| 755 | #define W_OK 2 |
| 756 | #endif |
| 757 | #ifndef X_OK |
| 758 | #define X_OK 1 |
| 759 | #endif |
| 760 | |
| 761 | #ifdef HAVE_TTYNAME |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 762 | static char posix_ttyname__doc__[] = |
Guido van Rossum | 61eeb04 | 1999-02-22 15:29:15 +0000 | [diff] [blame] | 763 | "ttyname(fd) -> String\n\ |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 764 | Return the name of the terminal device connected to 'fd'."; |
| 765 | |
| 766 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 767 | posix_ttyname(PyObject *self, PyObject *args) |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 768 | { |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 769 | int id; |
| 770 | char *ret; |
| 771 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 772 | if (!PyArg_ParseTuple(args, "i:ttyname", &id)) |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 773 | return NULL; |
| 774 | |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 775 | ret = ttyname(id); |
| 776 | if (ret == NULL) |
| 777 | return(posix_error()); |
| 778 | return(PyString_FromString(ret)); |
| 779 | } |
Guido van Rossum | d371ff1 | 1999-01-25 16:12:23 +0000 | [diff] [blame] | 780 | #endif |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 781 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 782 | #ifdef HAVE_CTERMID |
| 783 | static char posix_ctermid__doc__[] = |
| 784 | "ctermid() -> String\n\ |
| 785 | Return the name of the controlling terminal for this process."; |
| 786 | |
| 787 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 788 | posix_ctermid(PyObject *self, PyObject *args) |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 789 | { |
| 790 | char *ret; |
| 791 | char buffer[L_ctermid]; |
| 792 | |
| 793 | if (!PyArg_ParseTuple(args, ":ctermid")) |
| 794 | return NULL; |
| 795 | |
Greg Ward | b48bc17 | 2000-03-01 21:51:56 +0000 | [diff] [blame] | 796 | #ifdef USE_CTERMID_R |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 797 | ret = ctermid_r(buffer); |
| 798 | #else |
| 799 | ret = ctermid(buffer); |
| 800 | #endif |
| 801 | if (ret == NULL) |
| 802 | return(posix_error()); |
| 803 | return(PyString_FromString(buffer)); |
| 804 | } |
| 805 | #endif |
| 806 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 807 | static char posix_chdir__doc__[] = |
| 808 | "chdir(path) -> None\n\ |
| 809 | Change the current working directory to the specified path."; |
| 810 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 811 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 812 | posix_chdir(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 813 | { |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 814 | return posix_1str(args, "et:chdir", chdir); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 815 | } |
| 816 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 817 | |
| 818 | static char posix_chmod__doc__[] = |
| 819 | "chmod(path, mode) -> None\n\ |
| 820 | Change the access permissions of a file."; |
| 821 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 822 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 823 | posix_chmod(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 824 | { |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 825 | char *path = NULL; |
Guido van Rossum | ffd15f5 | 2000-03-31 00:47:28 +0000 | [diff] [blame] | 826 | int i; |
| 827 | int res; |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 828 | if (!PyArg_ParseTuple(args, "eti", Py_FileSystemDefaultEncoding, |
| 829 | &path, &i)) |
Guido van Rossum | ffd15f5 | 2000-03-31 00:47:28 +0000 | [diff] [blame] | 830 | return NULL; |
| 831 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | ef40e77 | 2000-03-31 01:26:23 +0000 | [diff] [blame] | 832 | res = chmod(path, i); |
Guido van Rossum | ffd15f5 | 2000-03-31 00:47:28 +0000 | [diff] [blame] | 833 | Py_END_ALLOW_THREADS |
| 834 | if (res < 0) |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 835 | return posix_error_with_allocated_filename(path); |
| 836 | PyMem_Free(path); |
Guido van Rossum | ffd15f5 | 2000-03-31 00:47:28 +0000 | [diff] [blame] | 837 | Py_INCREF(Py_None); |
| 838 | return Py_None; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 839 | } |
| 840 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 841 | |
Martin v. Löwis | 244edc8 | 2001-10-04 22:44:26 +0000 | [diff] [blame] | 842 | #ifdef HAVE_CHROOT |
| 843 | static char posix_chroot__doc__[] = |
| 844 | "chroot(path) -> None\n\ |
| 845 | Change root directory to path."; |
| 846 | |
| 847 | static PyObject * |
| 848 | posix_chroot(PyObject *self, PyObject *args) |
| 849 | { |
| 850 | return posix_1str(args, "et:chroot", chroot); |
| 851 | } |
| 852 | #endif |
| 853 | |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 854 | #ifdef HAVE_FSYNC |
| 855 | static char posix_fsync__doc__[] = |
| 856 | "fsync(fildes) -> None\n\ |
| 857 | force write of file with filedescriptor to disk."; |
| 858 | |
| 859 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 860 | posix_fsync(PyObject *self, PyObject *args) |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 861 | { |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 862 | return posix_int(args, "i:fsync", fsync); |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 863 | } |
| 864 | #endif /* HAVE_FSYNC */ |
| 865 | |
| 866 | #ifdef HAVE_FDATASYNC |
Guido van Rossum | ecc23b0 | 2000-09-22 16:01:05 +0000 | [diff] [blame] | 867 | |
Guido van Rossum | 7f58e2e | 2000-09-22 17:26:14 +0000 | [diff] [blame] | 868 | #ifdef __hpux |
Guido van Rossum | ecc23b0 | 2000-09-22 16:01:05 +0000 | [diff] [blame] | 869 | extern int fdatasync(int); /* On HP-UX, in libc but not in unistd.h */ |
| 870 | #endif |
| 871 | |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 872 | static char posix_fdatasync__doc__[] = |
| 873 | "fdatasync(fildes) -> None\n\ |
| 874 | force write of file with filedescriptor to disk.\n\ |
| 875 | does not force update of metadata."; |
| 876 | |
| 877 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 878 | posix_fdatasync(PyObject *self, PyObject *args) |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 879 | { |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 880 | return posix_int(args, "i:fdatasync", fdatasync); |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 881 | } |
| 882 | #endif /* HAVE_FDATASYNC */ |
| 883 | |
| 884 | |
Fredrik Lundh | 1072334 | 2000-07-10 16:38:09 +0000 | [diff] [blame] | 885 | #ifdef HAVE_CHOWN |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 886 | static char posix_chown__doc__[] = |
| 887 | "chown(path, uid, gid) -> None\n\ |
| 888 | Change the owner and group id of path to the numeric uid and gid."; |
| 889 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 890 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 891 | posix_chown(PyObject *self, PyObject *args) |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 892 | { |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 893 | char *path = NULL; |
Fredrik Lundh | 44328e6 | 2000-07-10 15:59:30 +0000 | [diff] [blame] | 894 | int uid, gid; |
| 895 | int res; |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 896 | if (!PyArg_ParseTuple(args, "etii:chown", |
| 897 | Py_FileSystemDefaultEncoding, &path, |
| 898 | &uid, &gid)) |
Fredrik Lundh | 44328e6 | 2000-07-10 15:59:30 +0000 | [diff] [blame] | 899 | return NULL; |
| 900 | Py_BEGIN_ALLOW_THREADS |
| 901 | res = chown(path, (uid_t) uid, (gid_t) gid); |
| 902 | Py_END_ALLOW_THREADS |
| 903 | if (res < 0) |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 904 | return posix_error_with_allocated_filename(path); |
| 905 | PyMem_Free(path); |
Fredrik Lundh | 44328e6 | 2000-07-10 15:59:30 +0000 | [diff] [blame] | 906 | Py_INCREF(Py_None); |
| 907 | return Py_None; |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 908 | } |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 909 | #endif /* HAVE_CHOWN */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 910 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 911 | |
Guido van Rossum | 36bc680 | 1995-06-14 22:54:23 +0000 | [diff] [blame] | 912 | #ifdef HAVE_GETCWD |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 913 | static char posix_getcwd__doc__[] = |
| 914 | "getcwd() -> path\n\ |
| 915 | Return a string representing the current working directory."; |
| 916 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 917 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 918 | posix_getcwd(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 919 | { |
| 920 | char buf[1026]; |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 921 | char *res; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 922 | if (!PyArg_ParseTuple(args, ":getcwd")) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 923 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 924 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 925 | res = getcwd(buf, sizeof buf); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 926 | Py_END_ALLOW_THREADS |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 927 | if (res == NULL) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 928 | return posix_error(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 929 | return PyString_FromString(buf); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 930 | } |
Guido van Rossum | 36bc680 | 1995-06-14 22:54:23 +0000 | [diff] [blame] | 931 | #endif |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 932 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 933 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 934 | #ifdef HAVE_LINK |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 935 | static char posix_link__doc__[] = |
| 936 | "link(src, dst) -> None\n\ |
| 937 | Create a hard link to a file."; |
| 938 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 939 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 940 | posix_link(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 941 | { |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 942 | return posix_2str(args, "etet:link", link); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 943 | } |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 944 | #endif /* HAVE_LINK */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 945 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 946 | |
| 947 | static char posix_listdir__doc__[] = |
| 948 | "listdir(path) -> list_of_strings\n\ |
| 949 | Return a list containing the names of the entries in the directory.\n\ |
| 950 | \n\ |
| 951 | path: path of directory to list\n\ |
| 952 | \n\ |
| 953 | The list is in arbitrary order. It does not include the special\n\ |
| 954 | entries '.' and '..' even if they are present in the directory."; |
| 955 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 956 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 957 | posix_listdir(PyObject *self, PyObject *args) |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 958 | { |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 959 | /* XXX Should redo this putting the (now four) versions of opendir |
Guido van Rossum | 6d8841c | 1997-08-14 19:57:39 +0000 | [diff] [blame] | 960 | in separate files instead of having them all here... */ |
Guido van Rossum | 8d665e6 | 1996-06-26 18:22:49 +0000 | [diff] [blame] | 961 | #if defined(MS_WIN32) && !defined(HAVE_OPENDIR) |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 962 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 963 | PyObject *d, *v; |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 964 | HANDLE hFindFile; |
| 965 | WIN32_FIND_DATA FileData; |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 966 | /* MAX_PATH characters could mean a bigger encoded string */ |
| 967 | char namebuf[MAX_PATH*2+5]; |
| 968 | char *bufptr = namebuf; |
| 969 | int len = sizeof(namebuf)/sizeof(namebuf[0]); |
Tim Peters | 0bb44a4 | 2000-09-15 07:44:49 +0000 | [diff] [blame] | 970 | char ch; |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 971 | |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 972 | if (!PyArg_ParseTuple(args, "et#:listdir", |
| 973 | Py_FileSystemDefaultEncoding, &bufptr, &len)) |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 974 | return NULL; |
Tim Peters | 0bb44a4 | 2000-09-15 07:44:49 +0000 | [diff] [blame] | 975 | ch = namebuf[len-1]; |
| 976 | if (ch != '/' && ch != '\\' && ch != ':') |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 977 | namebuf[len++] = '/'; |
| 978 | strcpy(namebuf + len, "*.*"); |
| 979 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 980 | if ((d = PyList_New(0)) == NULL) |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 981 | return NULL; |
| 982 | |
| 983 | hFindFile = FindFirstFile(namebuf, &FileData); |
| 984 | if (hFindFile == INVALID_HANDLE_VALUE) { |
| 985 | errno = GetLastError(); |
Guido van Rossum | 617bc19 | 1998-08-06 03:23:32 +0000 | [diff] [blame] | 986 | if (errno == ERROR_FILE_NOT_FOUND) |
| 987 | return PyList_New(0); |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 988 | return win32_error("FindFirstFile", namebuf); |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 989 | } |
| 990 | do { |
Guido van Rossum | 24f42ac | 1995-07-18 18:16:52 +0000 | [diff] [blame] | 991 | if (FileData.cFileName[0] == '.' && |
| 992 | (FileData.cFileName[1] == '\0' || |
| 993 | FileData.cFileName[1] == '.' && |
| 994 | FileData.cFileName[2] == '\0')) |
| 995 | continue; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 996 | v = PyString_FromString(FileData.cFileName); |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 997 | if (v == NULL) { |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 998 | Py_DECREF(d); |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 999 | d = NULL; |
| 1000 | break; |
| 1001 | } |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1002 | if (PyList_Append(d, v) != 0) { |
| 1003 | Py_DECREF(v); |
| 1004 | Py_DECREF(d); |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 1005 | d = NULL; |
| 1006 | break; |
| 1007 | } |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1008 | Py_DECREF(v); |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 1009 | } while (FindNextFile(hFindFile, &FileData) == TRUE); |
| 1010 | |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 1011 | if (FindClose(hFindFile) == FALSE) |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 1012 | return win32_error("FindClose", namebuf); |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 1013 | |
| 1014 | return d; |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 1015 | |
Tim Peters | 0bb44a4 | 2000-09-15 07:44:49 +0000 | [diff] [blame] | 1016 | #elif defined(_MSC_VER) /* 16-bit Windows */ |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 1017 | |
| 1018 | #ifndef MAX_PATH |
| 1019 | #define MAX_PATH 250 |
| 1020 | #endif |
| 1021 | char *name, *pt; |
| 1022 | int len; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1023 | PyObject *d, *v; |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 1024 | char namebuf[MAX_PATH+5]; |
| 1025 | struct _find_t ep; |
| 1026 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 1027 | if (!PyArg_ParseTuple(args, "t#:listdir", &name, &len)) |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 1028 | return NULL; |
| 1029 | if (len >= MAX_PATH) { |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1030 | PyErr_SetString(PyExc_ValueError, "path too long"); |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 1031 | return NULL; |
| 1032 | } |
| 1033 | strcpy(namebuf, name); |
| 1034 | for (pt = namebuf; *pt; pt++) |
| 1035 | if (*pt == '/') |
| 1036 | *pt = '\\'; |
| 1037 | if (namebuf[len-1] != '\\') |
| 1038 | namebuf[len++] = '\\'; |
| 1039 | strcpy(namebuf + len, "*.*"); |
| 1040 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1041 | if ((d = PyList_New(0)) == NULL) |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 1042 | return NULL; |
| 1043 | |
| 1044 | if (_dos_findfirst(namebuf, _A_RDONLY | |
Barry Warsaw | 43d68b8 | 1996-12-19 22:10:44 +0000 | [diff] [blame] | 1045 | _A_HIDDEN | _A_SYSTEM | _A_SUBDIR, &ep) != 0) |
| 1046 | { |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 1047 | errno = ENOENT; |
Barry Warsaw | f63b8cc | 1999-05-27 23:13:21 +0000 | [diff] [blame] | 1048 | return posix_error_with_filename(name); |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 1049 | } |
| 1050 | do { |
| 1051 | if (ep.name[0] == '.' && |
| 1052 | (ep.name[1] == '\0' || |
| 1053 | ep.name[1] == '.' && |
| 1054 | ep.name[2] == '\0')) |
| 1055 | continue; |
| 1056 | strcpy(namebuf, ep.name); |
| 1057 | for (pt = namebuf; *pt; pt++) |
| 1058 | if (isupper(*pt)) |
| 1059 | *pt = tolower(*pt); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1060 | v = PyString_FromString(namebuf); |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 1061 | if (v == NULL) { |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1062 | Py_DECREF(d); |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 1063 | d = NULL; |
| 1064 | break; |
| 1065 | } |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1066 | if (PyList_Append(d, v) != 0) { |
| 1067 | Py_DECREF(v); |
| 1068 | Py_DECREF(d); |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 1069 | d = NULL; |
| 1070 | break; |
| 1071 | } |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1072 | Py_DECREF(v); |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 1073 | } while (_dos_findnext(&ep) == 0); |
| 1074 | |
| 1075 | return d; |
| 1076 | |
Tim Peters | 0bb44a4 | 2000-09-15 07:44:49 +0000 | [diff] [blame] | 1077 | #elif defined(PYOS_OS2) |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 1078 | |
| 1079 | #ifndef MAX_PATH |
| 1080 | #define MAX_PATH CCHMAXPATH |
| 1081 | #endif |
| 1082 | char *name, *pt; |
| 1083 | int len; |
| 1084 | PyObject *d, *v; |
| 1085 | char namebuf[MAX_PATH+5]; |
| 1086 | HDIR hdir = 1; |
| 1087 | ULONG srchcnt = 1; |
| 1088 | FILEFINDBUF3 ep; |
| 1089 | APIRET rc; |
| 1090 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 1091 | if (!PyArg_ParseTuple(args, "t#:listdir", &name, &len)) |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 1092 | return NULL; |
| 1093 | if (len >= MAX_PATH) { |
| 1094 | PyErr_SetString(PyExc_ValueError, "path too long"); |
| 1095 | return NULL; |
| 1096 | } |
| 1097 | strcpy(namebuf, name); |
| 1098 | for (pt = namebuf; *pt; pt++) |
| 1099 | if (*pt == '/') |
| 1100 | *pt = '\\'; |
| 1101 | if (namebuf[len-1] != '\\') |
| 1102 | namebuf[len++] = '\\'; |
| 1103 | strcpy(namebuf + len, "*.*"); |
| 1104 | |
| 1105 | if ((d = PyList_New(0)) == NULL) |
| 1106 | return NULL; |
| 1107 | |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 1108 | rc = DosFindFirst(namebuf, /* Wildcard Pattern to Match */ |
| 1109 | &hdir, /* Handle to Use While Search Directory */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 1110 | FILE_READONLY | FILE_HIDDEN | FILE_SYSTEM | FILE_DIRECTORY, |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 1111 | &ep, sizeof(ep), /* Structure to Receive Directory Entry */ |
| 1112 | &srchcnt, /* Max and Actual Count of Entries Per Iteration */ |
| 1113 | FIL_STANDARD); /* Format of Entry (EAs or Not) */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 1114 | |
| 1115 | if (rc != NO_ERROR) { |
| 1116 | errno = ENOENT; |
Barry Warsaw | f63b8cc | 1999-05-27 23:13:21 +0000 | [diff] [blame] | 1117 | return posix_error_with_filename(name); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 1118 | } |
| 1119 | |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 1120 | if (srchcnt > 0) { /* If Directory is NOT Totally Empty, */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 1121 | do { |
| 1122 | if (ep.achName[0] == '.' |
| 1123 | && (ep.achName[1] == '\0' || ep.achName[1] == '.' && ep.achName[2] == '\0')) |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 1124 | continue; /* Skip Over "." and ".." Names */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 1125 | |
| 1126 | strcpy(namebuf, ep.achName); |
| 1127 | |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 1128 | /* Leave Case of Name Alone -- In Native Form */ |
| 1129 | /* (Removed Forced Lowercasing Code) */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 1130 | |
| 1131 | v = PyString_FromString(namebuf); |
| 1132 | if (v == NULL) { |
| 1133 | Py_DECREF(d); |
| 1134 | d = NULL; |
| 1135 | break; |
| 1136 | } |
| 1137 | if (PyList_Append(d, v) != 0) { |
| 1138 | Py_DECREF(v); |
| 1139 | Py_DECREF(d); |
| 1140 | d = NULL; |
| 1141 | break; |
| 1142 | } |
| 1143 | Py_DECREF(v); |
| 1144 | } while (DosFindNext(hdir, &ep, sizeof(ep), &srchcnt) == NO_ERROR && srchcnt > 0); |
| 1145 | } |
| 1146 | |
| 1147 | return d; |
| 1148 | #else |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 1149 | |
Guido van Rossum | ef0a00e | 1992-01-27 16:51:30 +0000 | [diff] [blame] | 1150 | char *name; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1151 | PyObject *d, *v; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1152 | DIR *dirp; |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 1153 | struct dirent *ep; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 1154 | if (!PyArg_ParseTuple(args, "s:listdir", &name)) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1155 | return NULL; |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 1156 | if ((dirp = opendir(name)) == NULL) { |
Barry Warsaw | f63b8cc | 1999-05-27 23:13:21 +0000 | [diff] [blame] | 1157 | return posix_error_with_filename(name); |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 1158 | } |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1159 | if ((d = PyList_New(0)) == NULL) { |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1160 | closedir(dirp); |
| 1161 | return NULL; |
| 1162 | } |
| 1163 | while ((ep = readdir(dirp)) != NULL) { |
Guido van Rossum | 24f42ac | 1995-07-18 18:16:52 +0000 | [diff] [blame] | 1164 | if (ep->d_name[0] == '.' && |
| 1165 | (NAMLEN(ep) == 1 || |
Guido van Rossum | a376cc5 | 1996-12-05 23:43:35 +0000 | [diff] [blame] | 1166 | (ep->d_name[1] == '.' && NAMLEN(ep) == 2))) |
Guido van Rossum | 24f42ac | 1995-07-18 18:16:52 +0000 | [diff] [blame] | 1167 | continue; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1168 | v = PyString_FromStringAndSize(ep->d_name, NAMLEN(ep)); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1169 | if (v == NULL) { |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1170 | Py_DECREF(d); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1171 | d = NULL; |
| 1172 | break; |
| 1173 | } |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1174 | if (PyList_Append(d, v) != 0) { |
| 1175 | Py_DECREF(v); |
| 1176 | Py_DECREF(d); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1177 | d = NULL; |
| 1178 | break; |
| 1179 | } |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1180 | Py_DECREF(v); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1181 | } |
| 1182 | closedir(dirp); |
Guido van Rossum | 0ee42cd | 1991-04-08 21:01:03 +0000 | [diff] [blame] | 1183 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1184 | return d; |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 1185 | |
Tim Peters | 0bb44a4 | 2000-09-15 07:44:49 +0000 | [diff] [blame] | 1186 | #endif /* which OS */ |
| 1187 | } /* end of posix_listdir */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1188 | |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 1189 | #ifdef MS_WIN32 |
| 1190 | /* A helper function for abspath on win32 */ |
| 1191 | static PyObject * |
| 1192 | posix__getfullpathname(PyObject *self, PyObject *args) |
| 1193 | { |
| 1194 | /* assume encoded strings wont more than double no of chars */ |
| 1195 | char inbuf[MAX_PATH*2]; |
| 1196 | char *inbufp = inbuf; |
| 1197 | int insize = sizeof(inbuf)/sizeof(inbuf[0]); |
| 1198 | char outbuf[MAX_PATH*2]; |
| 1199 | char *temp; |
| 1200 | if (!PyArg_ParseTuple (args, "et#:_getfullpathname", |
| 1201 | Py_FileSystemDefaultEncoding, &inbufp, |
| 1202 | &insize)) |
| 1203 | return NULL; |
| 1204 | if (!GetFullPathName(inbuf, sizeof(outbuf)/sizeof(outbuf[0]), |
| 1205 | outbuf, &temp)) |
| 1206 | return win32_error("GetFullPathName", inbuf); |
| 1207 | return PyString_FromString(outbuf); |
| 1208 | } /* end of posix__getfullpathname */ |
| 1209 | #endif /* MS_WIN32 */ |
| 1210 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1211 | static char posix_mkdir__doc__[] = |
| 1212 | "mkdir(path [, mode=0777]) -> None\n\ |
| 1213 | Create a directory."; |
| 1214 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1215 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 1216 | posix_mkdir(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1217 | { |
Guido van Rossum | b0824db | 1996-02-25 04:50:32 +0000 | [diff] [blame] | 1218 | int res; |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 1219 | char *path = NULL; |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 1220 | int mode = 0777; |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 1221 | if (!PyArg_ParseTuple(args, "et|i:mkdir", |
| 1222 | Py_FileSystemDefaultEncoding, &path, &mode)) |
Guido van Rossum | b0824db | 1996-02-25 04:50:32 +0000 | [diff] [blame] | 1223 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1224 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 1225 | #if ( defined(__WATCOMC__) || defined(_MSC_VER) || defined(PYCC_VACPP) ) && !defined(__QNX__) |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 1226 | res = mkdir(path); |
| 1227 | #else |
Guido van Rossum | b0824db | 1996-02-25 04:50:32 +0000 | [diff] [blame] | 1228 | res = mkdir(path, mode); |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 1229 | #endif |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1230 | Py_END_ALLOW_THREADS |
Guido van Rossum | b0824db | 1996-02-25 04:50:32 +0000 | [diff] [blame] | 1231 | if (res < 0) |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 1232 | return posix_error_with_allocated_filename(path); |
| 1233 | PyMem_Free(path); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1234 | Py_INCREF(Py_None); |
| 1235 | return Py_None; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1236 | } |
| 1237 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1238 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 1239 | #ifdef HAVE_NICE |
Thomas Wouters | e38b2f1 | 2001-07-11 22:35:31 +0000 | [diff] [blame] | 1240 | #if defined(HAVE_BROKEN_NICE) && defined(HAVE_SYS_RESOURCE_H) |
| 1241 | #if defined(HAVE_GETPRIORITY) && !defined(PRIO_PROCESS) |
| 1242 | #include <sys/resource.h> |
| 1243 | #endif |
| 1244 | #endif |
| 1245 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1246 | static char posix_nice__doc__[] = |
| 1247 | "nice(inc) -> new_priority\n\ |
| 1248 | Decrease the priority of process and return new priority."; |
| 1249 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1250 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 1251 | posix_nice(PyObject *self, PyObject *args) |
Guido van Rossum | 775f4da | 1993-01-09 17:18:52 +0000 | [diff] [blame] | 1252 | { |
| 1253 | int increment, value; |
| 1254 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 1255 | if (!PyArg_ParseTuple(args, "i:nice", &increment)) |
Guido van Rossum | 775f4da | 1993-01-09 17:18:52 +0000 | [diff] [blame] | 1256 | return NULL; |
Thomas Wouters | c2c12dc | 2001-07-11 14:45:34 +0000 | [diff] [blame] | 1257 | |
| 1258 | /* There are two flavours of 'nice': one that returns the new |
| 1259 | priority (as required by almost all standards out there) and the |
Thomas Wouters | e38b2f1 | 2001-07-11 22:35:31 +0000 | [diff] [blame] | 1260 | Linux/FreeBSD/BSDI one, which returns '0' on success and advices |
| 1261 | the use of getpriority() to get the new priority. |
Thomas Wouters | c2c12dc | 2001-07-11 14:45:34 +0000 | [diff] [blame] | 1262 | |
| 1263 | If we are of the nice family that returns the new priority, we |
| 1264 | need to clear errno before the call, and check if errno is filled |
| 1265 | before calling posix_error() on a returnvalue of -1, because the |
| 1266 | -1 may be the actual new priority! */ |
| 1267 | |
| 1268 | errno = 0; |
Guido van Rossum | 775f4da | 1993-01-09 17:18:52 +0000 | [diff] [blame] | 1269 | value = nice(increment); |
Thomas Wouters | e38b2f1 | 2001-07-11 22:35:31 +0000 | [diff] [blame] | 1270 | #if defined(HAVE_BROKEN_NICE) && defined(HAVE_GETPRIORITY) |
Thomas Wouters | c2c12dc | 2001-07-11 14:45:34 +0000 | [diff] [blame] | 1271 | if (value == 0) |
| 1272 | value = getpriority(PRIO_PROCESS, 0); |
| 1273 | #endif |
| 1274 | if (value == -1 && errno != 0) |
| 1275 | /* either nice() or getpriority() returned an error */ |
Guido van Rossum | 775f4da | 1993-01-09 17:18:52 +0000 | [diff] [blame] | 1276 | return posix_error(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1277 | return PyInt_FromLong((long) value); |
Guido van Rossum | 775f4da | 1993-01-09 17:18:52 +0000 | [diff] [blame] | 1278 | } |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 1279 | #endif /* HAVE_NICE */ |
Guido van Rossum | 1ff6cb4 | 1991-04-08 20:59:13 +0000 | [diff] [blame] | 1280 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1281 | |
| 1282 | static char posix_rename__doc__[] = |
| 1283 | "rename(old, new) -> None\n\ |
| 1284 | Rename a file or directory."; |
| 1285 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1286 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 1287 | posix_rename(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1288 | { |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 1289 | return posix_2str(args, "etet:rename", rename); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1290 | } |
| 1291 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1292 | |
| 1293 | static char posix_rmdir__doc__[] = |
| 1294 | "rmdir(path) -> None\n\ |
| 1295 | Remove a directory."; |
| 1296 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1297 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 1298 | posix_rmdir(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1299 | { |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 1300 | return posix_1str(args, "et:rmdir", rmdir); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1301 | } |
| 1302 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1303 | |
| 1304 | static char posix_stat__doc__[] = |
| 1305 | "stat(path) -> (mode,ino,dev,nlink,uid,gid,size,atime,mtime,ctime)\n\ |
| 1306 | Perform a stat system call on the given path."; |
| 1307 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1308 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 1309 | posix_stat(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1310 | { |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 1311 | return posix_do_stat(self, args, "et:stat", STAT); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1312 | } |
| 1313 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1314 | |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 1315 | #ifdef HAVE_SYSTEM |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1316 | static char posix_system__doc__[] = |
| 1317 | "system(command) -> exit_status\n\ |
| 1318 | Execute the command (a string) in a subshell."; |
| 1319 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1320 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 1321 | posix_system(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1322 | { |
Guido van Rossum | ef0a00e | 1992-01-27 16:51:30 +0000 | [diff] [blame] | 1323 | char *command; |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 1324 | long sts; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 1325 | if (!PyArg_ParseTuple(args, "s:system", &command)) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1326 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1327 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | ef0a00e | 1992-01-27 16:51:30 +0000 | [diff] [blame] | 1328 | sts = system(command); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1329 | Py_END_ALLOW_THREADS |
| 1330 | return PyInt_FromLong(sts); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1331 | } |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 1332 | #endif |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1333 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1334 | |
| 1335 | static char posix_umask__doc__[] = |
| 1336 | "umask(new_mask) -> old_mask\n\ |
| 1337 | Set the current numeric umask and return the previous umask."; |
| 1338 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1339 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 1340 | posix_umask(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1341 | { |
| 1342 | int i; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 1343 | if (!PyArg_ParseTuple(args, "i:umask", &i)) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1344 | return NULL; |
Fred Drake | 0368bc4 | 2001-07-19 20:48:32 +0000 | [diff] [blame] | 1345 | i = (int)umask(i); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1346 | if (i < 0) |
| 1347 | return posix_error(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1348 | return PyInt_FromLong((long)i); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1349 | } |
| 1350 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1351 | |
| 1352 | static char posix_unlink__doc__[] = |
| 1353 | "unlink(path) -> None\n\ |
| 1354 | Remove a file (same as remove(path))."; |
| 1355 | |
| 1356 | static char posix_remove__doc__[] = |
| 1357 | "remove(path) -> None\n\ |
| 1358 | Remove a file (same as unlink(path))."; |
| 1359 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1360 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 1361 | posix_unlink(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1362 | { |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 1363 | return posix_1str(args, "et:remove", unlink); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1364 | } |
| 1365 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1366 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 1367 | #ifdef HAVE_UNAME |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1368 | static char posix_uname__doc__[] = |
| 1369 | "uname() -> (sysname, nodename, release, version, machine)\n\ |
| 1370 | Return a tuple identifying the current operating system."; |
| 1371 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1372 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 1373 | posix_uname(PyObject *self, PyObject *args) |
Guido van Rossum | c39de5f | 1992-02-05 11:15:54 +0000 | [diff] [blame] | 1374 | { |
Guido van Rossum | c39de5f | 1992-02-05 11:15:54 +0000 | [diff] [blame] | 1375 | struct utsname u; |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 1376 | int res; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 1377 | if (!PyArg_ParseTuple(args, ":uname")) |
Guido van Rossum | 50e61dc | 1992-03-27 17:22:31 +0000 | [diff] [blame] | 1378 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1379 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 1380 | res = uname(&u); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1381 | Py_END_ALLOW_THREADS |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 1382 | if (res < 0) |
Guido van Rossum | c39de5f | 1992-02-05 11:15:54 +0000 | [diff] [blame] | 1383 | return posix_error(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1384 | return Py_BuildValue("(sssss)", |
Barry Warsaw | 43d68b8 | 1996-12-19 22:10:44 +0000 | [diff] [blame] | 1385 | u.sysname, |
| 1386 | u.nodename, |
| 1387 | u.release, |
| 1388 | u.version, |
| 1389 | u.machine); |
Guido van Rossum | c39de5f | 1992-02-05 11:15:54 +0000 | [diff] [blame] | 1390 | } |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 1391 | #endif /* HAVE_UNAME */ |
Guido van Rossum | 1ff6cb4 | 1991-04-08 20:59:13 +0000 | [diff] [blame] | 1392 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1393 | |
| 1394 | static char posix_utime__doc__[] = |
| 1395 | "utime(path, (atime, utime)) -> None\n\ |
Barry Warsaw | 3cef856 | 2000-05-01 16:17:24 +0000 | [diff] [blame] | 1396 | utime(path, None) -> None\n\ |
| 1397 | Set the access and modified time of the file to the given values. If the\n\ |
| 1398 | 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] | 1399 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1400 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 1401 | posix_utime(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1402 | { |
Guido van Rossum | ef0a00e | 1992-01-27 16:51:30 +0000 | [diff] [blame] | 1403 | char *path; |
Guido van Rossum | f8803dd | 1995-01-26 00:37:45 +0000 | [diff] [blame] | 1404 | long atime, mtime; |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 1405 | int res; |
Barry Warsaw | 3cef856 | 2000-05-01 16:17:24 +0000 | [diff] [blame] | 1406 | PyObject* arg; |
Guido van Rossum | 1ff6cb4 | 1991-04-08 20:59:13 +0000 | [diff] [blame] | 1407 | |
Guido van Rossum | 6d8841c | 1997-08-14 19:57:39 +0000 | [diff] [blame] | 1408 | /* XXX should define struct utimbuf instead, above */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 1409 | #ifdef HAVE_UTIME_H |
Guido van Rossum | 1ff6cb4 | 1991-04-08 20:59:13 +0000 | [diff] [blame] | 1410 | struct utimbuf buf; |
| 1411 | #define ATIME buf.actime |
| 1412 | #define MTIME buf.modtime |
| 1413 | #define UTIME_ARG &buf |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 1414 | #else /* HAVE_UTIME_H */ |
Guido van Rossum | 1ff6cb4 | 1991-04-08 20:59:13 +0000 | [diff] [blame] | 1415 | time_t buf[2]; |
| 1416 | #define ATIME buf[0] |
| 1417 | #define MTIME buf[1] |
| 1418 | #define UTIME_ARG buf |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 1419 | #endif /* HAVE_UTIME_H */ |
Guido van Rossum | 1ff6cb4 | 1991-04-08 20:59:13 +0000 | [diff] [blame] | 1420 | |
Barry Warsaw | 3cef856 | 2000-05-01 16:17:24 +0000 | [diff] [blame] | 1421 | if (!PyArg_ParseTuple(args, "sO:utime", &path, &arg)) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1422 | return NULL; |
Barry Warsaw | 3cef856 | 2000-05-01 16:17:24 +0000 | [diff] [blame] | 1423 | if (arg == Py_None) { |
| 1424 | /* optional time values not given */ |
| 1425 | Py_BEGIN_ALLOW_THREADS |
| 1426 | res = utime(path, NULL); |
| 1427 | Py_END_ALLOW_THREADS |
| 1428 | } |
| 1429 | else if (!PyArg_Parse(arg, "(ll)", &atime, &mtime)) { |
| 1430 | PyErr_SetString(PyExc_TypeError, |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 1431 | "utime() arg 2 must be a tuple (atime, mtime)"); |
Barry Warsaw | 3cef856 | 2000-05-01 16:17:24 +0000 | [diff] [blame] | 1432 | return NULL; |
| 1433 | } |
| 1434 | else { |
| 1435 | ATIME = atime; |
| 1436 | MTIME = mtime; |
| 1437 | Py_BEGIN_ALLOW_THREADS |
| 1438 | res = utime(path, UTIME_ARG); |
| 1439 | Py_END_ALLOW_THREADS |
| 1440 | } |
Guido van Rossum | ff4949e | 1992-08-05 19:58:53 +0000 | [diff] [blame] | 1441 | if (res < 0) |
Barry Warsaw | d58d764 | 1998-07-23 16:14:40 +0000 | [diff] [blame] | 1442 | return posix_error_with_filename(path); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1443 | Py_INCREF(Py_None); |
| 1444 | return Py_None; |
Guido van Rossum | 1ff6cb4 | 1991-04-08 20:59:13 +0000 | [diff] [blame] | 1445 | #undef UTIME_ARG |
| 1446 | #undef ATIME |
| 1447 | #undef MTIME |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1448 | } |
| 1449 | |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 1450 | |
Guido van Rossum | 3b06619 | 1991-06-04 19:40:25 +0000 | [diff] [blame] | 1451 | /* Process operations */ |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 1452 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1453 | static char posix__exit__doc__[] = |
| 1454 | "_exit(status)\n\ |
| 1455 | Exit to the system with specified status, without normal exit processing."; |
| 1456 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1457 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 1458 | posix__exit(PyObject *self, PyObject *args) |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 1459 | { |
| 1460 | int sts; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 1461 | if (!PyArg_ParseTuple(args, "i:_exit", &sts)) |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 1462 | return NULL; |
| 1463 | _exit(sts); |
Guido van Rossum | a376cc5 | 1996-12-05 23:43:35 +0000 | [diff] [blame] | 1464 | return NULL; /* Make gcc -Wall happy */ |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 1465 | } |
| 1466 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1467 | |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 1468 | #ifdef HAVE_EXECV |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1469 | static char posix_execv__doc__[] = |
| 1470 | "execv(path, args)\n\ |
| 1471 | Execute an executable path with arguments, replacing current process.\n\ |
| 1472 | \n\ |
| 1473 | path: path of executable file\n\ |
| 1474 | args: tuple or list of strings"; |
| 1475 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1476 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 1477 | posix_execv(PyObject *self, PyObject *args) |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 1478 | { |
Guido van Rossum | ef0a00e | 1992-01-27 16:51:30 +0000 | [diff] [blame] | 1479 | char *path; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1480 | PyObject *argv; |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 1481 | char **argvlist; |
| 1482 | int i, argc; |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 1483 | PyObject *(*getitem)(PyObject *, int); |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 1484 | |
Guido van Rossum | 89b3325 | 1993-10-22 14:26:06 +0000 | [diff] [blame] | 1485 | /* execv has two arguments: (path, argv), where |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 1486 | argv is a list or tuple of strings. */ |
| 1487 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 1488 | if (!PyArg_ParseTuple(args, "sO:execv", &path, &argv)) |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 1489 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1490 | if (PyList_Check(argv)) { |
| 1491 | argc = PyList_Size(argv); |
| 1492 | getitem = PyList_GetItem; |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 1493 | } |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1494 | else if (PyTuple_Check(argv)) { |
| 1495 | argc = PyTuple_Size(argv); |
| 1496 | getitem = PyTuple_GetItem; |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 1497 | } |
Guido van Rossum | ef0a00e | 1992-01-27 16:51:30 +0000 | [diff] [blame] | 1498 | else { |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 1499 | PyErr_SetString(PyExc_TypeError, "execv() arg 2 must be a tuple or list"); |
Guido van Rossum | 50422b4 | 2000-04-26 20:34:28 +0000 | [diff] [blame] | 1500 | return NULL; |
| 1501 | } |
| 1502 | |
| 1503 | if (argc == 0) { |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 1504 | PyErr_SetString(PyExc_ValueError, "execv() arg 2 must not be empty"); |
Guido van Rossum | ef0a00e | 1992-01-27 16:51:30 +0000 | [diff] [blame] | 1505 | return NULL; |
| 1506 | } |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 1507 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1508 | argvlist = PyMem_NEW(char *, argc+1); |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 1509 | if (argvlist == NULL) |
| 1510 | return NULL; |
| 1511 | for (i = 0; i < argc; i++) { |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1512 | if (!PyArg_Parse((*getitem)(argv, i), "s", &argvlist[i])) { |
| 1513 | PyMem_DEL(argvlist); |
Guido van Rossum | 50422b4 | 2000-04-26 20:34:28 +0000 | [diff] [blame] | 1514 | PyErr_SetString(PyExc_TypeError, |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 1515 | "execv() arg 2 must contain only strings"); |
Guido van Rossum | 50422b4 | 2000-04-26 20:34:28 +0000 | [diff] [blame] | 1516 | return NULL; |
| 1517 | |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 1518 | } |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 1519 | } |
| 1520 | argvlist[argc] = NULL; |
| 1521 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 1522 | #ifdef BAD_EXEC_PROTOTYPES |
| 1523 | execv(path, (const char **) argvlist); |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 1524 | #else /* BAD_EXEC_PROTOTYPES */ |
Guido van Rossum | ef0a00e | 1992-01-27 16:51:30 +0000 | [diff] [blame] | 1525 | execv(path, argvlist); |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 1526 | #endif /* BAD_EXEC_PROTOTYPES */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 1527 | |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 1528 | /* If we get here it's definitely an error */ |
| 1529 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1530 | PyMem_DEL(argvlist); |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 1531 | return posix_error(); |
| 1532 | } |
| 1533 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1534 | |
| 1535 | static char posix_execve__doc__[] = |
| 1536 | "execve(path, args, env)\n\ |
| 1537 | Execute a path with arguments and environment, replacing current process.\n\ |
| 1538 | \n\ |
| 1539 | path: path of executable file\n\ |
| 1540 | args: tuple or list of arguments\n\ |
Thomas Wouters | 7e47402 | 2000-07-16 12:04:32 +0000 | [diff] [blame] | 1541 | env: dictionary of strings mapping to strings"; |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1542 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1543 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 1544 | posix_execve(PyObject *self, PyObject *args) |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 1545 | { |
| 1546 | char *path; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1547 | PyObject *argv, *env; |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 1548 | char **argvlist; |
| 1549 | char **envlist; |
Barry Warsaw | 5ed19dc | 1997-01-29 15:08:24 +0000 | [diff] [blame] | 1550 | PyObject *key, *val, *keys=NULL, *vals=NULL; |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 1551 | int i, pos, argc, envc; |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 1552 | PyObject *(*getitem)(PyObject *, int); |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 1553 | |
| 1554 | /* execve has three arguments: (path, argv, env), where |
| 1555 | argv is a list or tuple of strings and env is a dictionary |
| 1556 | like posix.environ. */ |
| 1557 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 1558 | if (!PyArg_ParseTuple(args, "sOO:execve", &path, &argv, &env)) |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 1559 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1560 | if (PyList_Check(argv)) { |
| 1561 | argc = PyList_Size(argv); |
| 1562 | getitem = PyList_GetItem; |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 1563 | } |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1564 | else if (PyTuple_Check(argv)) { |
| 1565 | argc = PyTuple_Size(argv); |
| 1566 | getitem = PyTuple_GetItem; |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 1567 | } |
| 1568 | else { |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 1569 | PyErr_SetString(PyExc_TypeError, "execve() arg 2 must be a tuple or list"); |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 1570 | return NULL; |
| 1571 | } |
Barry Warsaw | 5ed19dc | 1997-01-29 15:08:24 +0000 | [diff] [blame] | 1572 | if (!PyMapping_Check(env)) { |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 1573 | PyErr_SetString(PyExc_TypeError, "execve() arg 3 must be a mapping object"); |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 1574 | return NULL; |
| 1575 | } |
| 1576 | |
Guido van Rossum | 50422b4 | 2000-04-26 20:34:28 +0000 | [diff] [blame] | 1577 | if (argc == 0) { |
| 1578 | PyErr_SetString(PyExc_ValueError, |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 1579 | "execve() arg 2 must not be empty"); |
Guido van Rossum | 50422b4 | 2000-04-26 20:34:28 +0000 | [diff] [blame] | 1580 | return NULL; |
| 1581 | } |
| 1582 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1583 | argvlist = PyMem_NEW(char *, argc+1); |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 1584 | if (argvlist == NULL) { |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1585 | PyErr_NoMemory(); |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 1586 | return NULL; |
| 1587 | } |
| 1588 | for (i = 0; i < argc; i++) { |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1589 | if (!PyArg_Parse((*getitem)(argv, i), |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 1590 | "s;execve() arg 2 must contain only strings", |
Barry Warsaw | 43d68b8 | 1996-12-19 22:10:44 +0000 | [diff] [blame] | 1591 | &argvlist[i])) |
| 1592 | { |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 1593 | goto fail_1; |
| 1594 | } |
| 1595 | } |
| 1596 | argvlist[argc] = NULL; |
| 1597 | |
Jeremy Hylton | 03657cf | 2000-07-12 13:05:33 +0000 | [diff] [blame] | 1598 | i = PyMapping_Size(env); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1599 | envlist = PyMem_NEW(char *, i + 1); |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 1600 | if (envlist == NULL) { |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1601 | PyErr_NoMemory(); |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 1602 | goto fail_1; |
| 1603 | } |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 1604 | envc = 0; |
Barry Warsaw | 5ed19dc | 1997-01-29 15:08:24 +0000 | [diff] [blame] | 1605 | keys = PyMapping_Keys(env); |
| 1606 | vals = PyMapping_Values(env); |
| 1607 | if (!keys || !vals) |
| 1608 | goto fail_2; |
| 1609 | |
| 1610 | for (pos = 0; pos < i; pos++) { |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 1611 | char *p, *k, *v; |
Barry Warsaw | 5ed19dc | 1997-01-29 15:08:24 +0000 | [diff] [blame] | 1612 | |
| 1613 | key = PyList_GetItem(keys, pos); |
| 1614 | val = PyList_GetItem(vals, pos); |
| 1615 | if (!key || !val) |
| 1616 | goto fail_2; |
| 1617 | |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 1618 | if (!PyArg_Parse(key, "s;execve() arg 3 contains a non-string key", &k) || |
| 1619 | !PyArg_Parse(val, "s;execve() arg 3 contains a non-string value", &v)) |
Barry Warsaw | 43d68b8 | 1996-12-19 22:10:44 +0000 | [diff] [blame] | 1620 | { |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 1621 | goto fail_2; |
| 1622 | } |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 1623 | |
| 1624 | #if defined(PYOS_OS2) |
| 1625 | /* Omit Pseudo-Env Vars that Would Confuse Programs if Passed On */ |
| 1626 | if (stricmp(k, "BEGINLIBPATH") != 0 && stricmp(k, "ENDLIBPATH") != 0) { |
| 1627 | #endif |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1628 | p = PyMem_NEW(char, PyString_Size(key)+PyString_Size(val) + 2); |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 1629 | if (p == NULL) { |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1630 | PyErr_NoMemory(); |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 1631 | goto fail_2; |
| 1632 | } |
| 1633 | sprintf(p, "%s=%s", k, v); |
| 1634 | envlist[envc++] = p; |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 1635 | #if defined(PYOS_OS2) |
| 1636 | } |
| 1637 | #endif |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 1638 | } |
| 1639 | envlist[envc] = 0; |
| 1640 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 1641 | |
| 1642 | #ifdef BAD_EXEC_PROTOTYPES |
| 1643 | execve(path, (const char **)argvlist, envlist); |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 1644 | #else /* BAD_EXEC_PROTOTYPES */ |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 1645 | execve(path, argvlist, envlist); |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 1646 | #endif /* BAD_EXEC_PROTOTYPES */ |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 1647 | |
| 1648 | /* If we get here it's definitely an error */ |
| 1649 | |
| 1650 | (void) posix_error(); |
| 1651 | |
| 1652 | fail_2: |
| 1653 | while (--envc >= 0) |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1654 | PyMem_DEL(envlist[envc]); |
| 1655 | PyMem_DEL(envlist); |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 1656 | fail_1: |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1657 | PyMem_DEL(argvlist); |
Barry Warsaw | 5ed19dc | 1997-01-29 15:08:24 +0000 | [diff] [blame] | 1658 | Py_XDECREF(vals); |
| 1659 | Py_XDECREF(keys); |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 1660 | return NULL; |
| 1661 | } |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 1662 | #endif /* HAVE_EXECV */ |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 1663 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1664 | |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 1665 | #ifdef HAVE_SPAWNV |
| 1666 | static char posix_spawnv__doc__[] = |
Fred Drake | a6dff3e | 1999-02-01 22:24:40 +0000 | [diff] [blame] | 1667 | "spawnv(mode, path, args)\n\ |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 1668 | Execute an executable path with arguments, replacing current process.\n\ |
| 1669 | \n\ |
Fred Drake | a6dff3e | 1999-02-01 22:24:40 +0000 | [diff] [blame] | 1670 | mode: mode of process creation\n\ |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 1671 | path: path of executable file\n\ |
| 1672 | args: tuple or list of strings"; |
| 1673 | |
| 1674 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 1675 | posix_spawnv(PyObject *self, PyObject *args) |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 1676 | { |
| 1677 | char *path; |
| 1678 | PyObject *argv; |
| 1679 | char **argvlist; |
| 1680 | int mode, i, argc; |
Tim Peters | 79248aa | 2001-08-29 21:37:10 +0000 | [diff] [blame] | 1681 | Py_intptr_t spawnval; |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 1682 | PyObject *(*getitem)(PyObject *, int); |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 1683 | |
| 1684 | /* spawnv has three arguments: (mode, path, argv), where |
| 1685 | argv is a list or tuple of strings. */ |
| 1686 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 1687 | if (!PyArg_ParseTuple(args, "isO:spawnv", &mode, &path, &argv)) |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 1688 | return NULL; |
| 1689 | if (PyList_Check(argv)) { |
| 1690 | argc = PyList_Size(argv); |
| 1691 | getitem = PyList_GetItem; |
| 1692 | } |
| 1693 | else if (PyTuple_Check(argv)) { |
| 1694 | argc = PyTuple_Size(argv); |
| 1695 | getitem = PyTuple_GetItem; |
| 1696 | } |
| 1697 | else { |
Martin v. Löwis | e75f0e4 | 2001-11-24 09:31:44 +0000 | [diff] [blame] | 1698 | PyErr_SetString(PyExc_TypeError, "spawnv() arg 2 must be a tuple or list"); |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 1699 | return NULL; |
| 1700 | } |
| 1701 | |
| 1702 | argvlist = PyMem_NEW(char *, argc+1); |
| 1703 | if (argvlist == NULL) |
| 1704 | return NULL; |
| 1705 | for (i = 0; i < argc; i++) { |
| 1706 | if (!PyArg_Parse((*getitem)(argv, i), "s", &argvlist[i])) { |
| 1707 | PyMem_DEL(argvlist); |
Fred Drake | 137507e | 2000-06-01 02:02:46 +0000 | [diff] [blame] | 1708 | PyErr_SetString(PyExc_TypeError, |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 1709 | "spawnv() arg 2 must contain only strings"); |
Fred Drake | 137507e | 2000-06-01 02:02:46 +0000 | [diff] [blame] | 1710 | return NULL; |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 1711 | } |
| 1712 | } |
| 1713 | argvlist[argc] = NULL; |
| 1714 | |
Guido van Rossum | 246bc17 | 1999-02-01 23:54:31 +0000 | [diff] [blame] | 1715 | if (mode == _OLD_P_OVERLAY) |
| 1716 | mode = _P_OVERLAY; |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 1717 | spawnval = _spawnv(mode, path, argvlist); |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 1718 | |
| 1719 | PyMem_DEL(argvlist); |
| 1720 | |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 1721 | if (spawnval == -1) |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 1722 | return posix_error(); |
| 1723 | else |
Fredrik Lundh | e25cfd8 | 2000-07-09 13:10:40 +0000 | [diff] [blame] | 1724 | #if SIZEOF_LONG == SIZEOF_VOID_P |
| 1725 | return Py_BuildValue("l", (long) spawnval); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 1726 | #else |
Fredrik Lundh | e25cfd8 | 2000-07-09 13:10:40 +0000 | [diff] [blame] | 1727 | return Py_BuildValue("L", (LONG_LONG) spawnval); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 1728 | #endif |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 1729 | } |
| 1730 | |
| 1731 | |
| 1732 | static char posix_spawnve__doc__[] = |
Fred Drake | a6dff3e | 1999-02-01 22:24:40 +0000 | [diff] [blame] | 1733 | "spawnve(mode, path, args, env)\n\ |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 1734 | Execute a path with arguments and environment, replacing current process.\n\ |
| 1735 | \n\ |
Fred Drake | a6dff3e | 1999-02-01 22:24:40 +0000 | [diff] [blame] | 1736 | mode: mode of process creation\n\ |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 1737 | path: path of executable file\n\ |
| 1738 | args: tuple or list of arguments\n\ |
Thomas Wouters | 7e47402 | 2000-07-16 12:04:32 +0000 | [diff] [blame] | 1739 | env: dictionary of strings mapping to strings"; |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 1740 | |
| 1741 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 1742 | posix_spawnve(PyObject *self, PyObject *args) |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 1743 | { |
| 1744 | char *path; |
| 1745 | PyObject *argv, *env; |
| 1746 | char **argvlist; |
| 1747 | char **envlist; |
| 1748 | PyObject *key, *val, *keys=NULL, *vals=NULL, *res=NULL; |
| 1749 | int mode, i, pos, argc, envc; |
Tim Peters | 79248aa | 2001-08-29 21:37:10 +0000 | [diff] [blame] | 1750 | Py_intptr_t spawnval; |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 1751 | PyObject *(*getitem)(PyObject *, int); |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 1752 | |
| 1753 | /* spawnve has four arguments: (mode, path, argv, env), where |
| 1754 | argv is a list or tuple of strings and env is a dictionary |
| 1755 | like posix.environ. */ |
| 1756 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 1757 | if (!PyArg_ParseTuple(args, "isOO:spawnve", &mode, &path, &argv, &env)) |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 1758 | return NULL; |
| 1759 | if (PyList_Check(argv)) { |
| 1760 | argc = PyList_Size(argv); |
| 1761 | getitem = PyList_GetItem; |
| 1762 | } |
| 1763 | else if (PyTuple_Check(argv)) { |
| 1764 | argc = PyTuple_Size(argv); |
| 1765 | getitem = PyTuple_GetItem; |
| 1766 | } |
| 1767 | else { |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 1768 | PyErr_SetString(PyExc_TypeError, "spawnve() arg 2 must be a tuple or list"); |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 1769 | return NULL; |
| 1770 | } |
| 1771 | if (!PyMapping_Check(env)) { |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 1772 | PyErr_SetString(PyExc_TypeError, "spawnve() arg 3 must be a mapping object"); |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 1773 | return NULL; |
| 1774 | } |
| 1775 | |
| 1776 | argvlist = PyMem_NEW(char *, argc+1); |
| 1777 | if (argvlist == NULL) { |
| 1778 | PyErr_NoMemory(); |
| 1779 | return NULL; |
| 1780 | } |
| 1781 | for (i = 0; i < argc; i++) { |
| 1782 | if (!PyArg_Parse((*getitem)(argv, i), |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 1783 | "s;spawnve() arg 2 must contain only strings", |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 1784 | &argvlist[i])) |
| 1785 | { |
| 1786 | goto fail_1; |
| 1787 | } |
| 1788 | } |
| 1789 | argvlist[argc] = NULL; |
| 1790 | |
Jeremy Hylton | 03657cf | 2000-07-12 13:05:33 +0000 | [diff] [blame] | 1791 | i = PyMapping_Size(env); |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 1792 | envlist = PyMem_NEW(char *, i + 1); |
| 1793 | if (envlist == NULL) { |
| 1794 | PyErr_NoMemory(); |
| 1795 | goto fail_1; |
| 1796 | } |
| 1797 | envc = 0; |
| 1798 | keys = PyMapping_Keys(env); |
| 1799 | vals = PyMapping_Values(env); |
| 1800 | if (!keys || !vals) |
| 1801 | goto fail_2; |
| 1802 | |
| 1803 | for (pos = 0; pos < i; pos++) { |
| 1804 | char *p, *k, *v; |
| 1805 | |
| 1806 | key = PyList_GetItem(keys, pos); |
| 1807 | val = PyList_GetItem(vals, pos); |
| 1808 | if (!key || !val) |
| 1809 | goto fail_2; |
| 1810 | |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 1811 | if (!PyArg_Parse(key, "s;spawnve() arg 3 contains a non-string key", &k) || |
| 1812 | !PyArg_Parse(val, "s;spawnve() arg 3 contains a non-string value", &v)) |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 1813 | { |
| 1814 | goto fail_2; |
| 1815 | } |
| 1816 | p = PyMem_NEW(char, PyString_Size(key)+PyString_Size(val) + 2); |
| 1817 | if (p == NULL) { |
| 1818 | PyErr_NoMemory(); |
| 1819 | goto fail_2; |
| 1820 | } |
| 1821 | sprintf(p, "%s=%s", k, v); |
| 1822 | envlist[envc++] = p; |
| 1823 | } |
| 1824 | envlist[envc] = 0; |
| 1825 | |
Guido van Rossum | 246bc17 | 1999-02-01 23:54:31 +0000 | [diff] [blame] | 1826 | if (mode == _OLD_P_OVERLAY) |
| 1827 | mode = _P_OVERLAY; |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 1828 | spawnval = _spawnve(mode, path, argvlist, envlist); |
| 1829 | if (spawnval == -1) |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 1830 | (void) posix_error(); |
| 1831 | else |
Fredrik Lundh | e25cfd8 | 2000-07-09 13:10:40 +0000 | [diff] [blame] | 1832 | #if SIZEOF_LONG == SIZEOF_VOID_P |
| 1833 | res = Py_BuildValue("l", (long) spawnval); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 1834 | #else |
Fredrik Lundh | e25cfd8 | 2000-07-09 13:10:40 +0000 | [diff] [blame] | 1835 | res = Py_BuildValue("L", (LONG_LONG) spawnval); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 1836 | #endif |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 1837 | |
| 1838 | fail_2: |
| 1839 | while (--envc >= 0) |
| 1840 | PyMem_DEL(envlist[envc]); |
| 1841 | PyMem_DEL(envlist); |
| 1842 | fail_1: |
| 1843 | PyMem_DEL(argvlist); |
| 1844 | Py_XDECREF(vals); |
| 1845 | Py_XDECREF(keys); |
| 1846 | return res; |
| 1847 | } |
| 1848 | #endif /* HAVE_SPAWNV */ |
| 1849 | |
| 1850 | |
Guido van Rossum | 2242f2f | 2001-04-11 20:58:20 +0000 | [diff] [blame] | 1851 | #ifdef HAVE_FORK1 |
| 1852 | static char posix_fork1__doc__[] = |
| 1853 | "fork1() -> pid\n\ |
| 1854 | Fork a child process with a single multiplexed (i.e., not bound) thread.\n\ |
| 1855 | \n\ |
| 1856 | Return 0 to child process and PID of child to parent process."; |
| 1857 | |
| 1858 | static PyObject * |
| 1859 | posix_fork1(self, args) |
| 1860 | PyObject *self; |
| 1861 | PyObject *args; |
| 1862 | { |
| 1863 | int pid; |
| 1864 | if (!PyArg_ParseTuple(args, ":fork1")) |
| 1865 | return NULL; |
| 1866 | pid = fork1(); |
| 1867 | if (pid == -1) |
| 1868 | return posix_error(); |
| 1869 | PyOS_AfterFork(); |
| 1870 | return PyInt_FromLong((long)pid); |
| 1871 | } |
| 1872 | #endif |
| 1873 | |
| 1874 | |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 1875 | #ifdef HAVE_FORK |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1876 | static char posix_fork__doc__[] = |
| 1877 | "fork() -> pid\n\ |
| 1878 | Fork a child process.\n\ |
| 1879 | \n\ |
| 1880 | Return 0 to child process and PID of child to parent process."; |
| 1881 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1882 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 1883 | posix_fork(PyObject *self, PyObject *args) |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 1884 | { |
| 1885 | int pid; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 1886 | if (!PyArg_ParseTuple(args, ":fork")) |
Guido van Rossum | 50e61dc | 1992-03-27 17:22:31 +0000 | [diff] [blame] | 1887 | return NULL; |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 1888 | pid = fork(); |
| 1889 | if (pid == -1) |
| 1890 | return posix_error(); |
Fred Drake | 49b0c3b | 2000-07-06 19:42:19 +0000 | [diff] [blame] | 1891 | if (pid == 0) |
| 1892 | PyOS_AfterFork(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1893 | return PyInt_FromLong((long)pid); |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 1894 | } |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 1895 | #endif |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 1896 | |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 1897 | #if defined(HAVE_OPENPTY) || defined(HAVE_FORKPTY) |
| 1898 | #ifdef HAVE_PTY_H |
| 1899 | #include <pty.h> |
| 1900 | #else |
| 1901 | #ifdef HAVE_LIBUTIL_H |
| 1902 | #include <libutil.h> |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 1903 | #endif /* HAVE_LIBUTIL_H */ |
| 1904 | #endif /* HAVE_PTY_H */ |
Thomas Wouters | 70c21a1 | 2000-07-14 14:28:33 +0000 | [diff] [blame] | 1905 | #endif /* defined(HAVE_OPENPTY) || defined(HAVE_FORKPTY) */ |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 1906 | |
Thomas Wouters | 70c21a1 | 2000-07-14 14:28:33 +0000 | [diff] [blame] | 1907 | #if defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 1908 | static char posix_openpty__doc__[] = |
| 1909 | "openpty() -> (master_fd, slave_fd)\n\ |
| 1910 | Open a pseudo-terminal, returning open fd's for both master and slave end.\n"; |
| 1911 | |
| 1912 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 1913 | posix_openpty(PyObject *self, PyObject *args) |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 1914 | { |
| 1915 | int master_fd, slave_fd; |
Thomas Wouters | 70c21a1 | 2000-07-14 14:28:33 +0000 | [diff] [blame] | 1916 | #ifndef HAVE_OPENPTY |
| 1917 | char * slave_name; |
Thomas Wouters | 70c21a1 | 2000-07-14 14:28:33 +0000 | [diff] [blame] | 1918 | #endif |
| 1919 | |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 1920 | if (!PyArg_ParseTuple(args, ":openpty")) |
| 1921 | return NULL; |
Thomas Wouters | 70c21a1 | 2000-07-14 14:28:33 +0000 | [diff] [blame] | 1922 | |
| 1923 | #ifdef HAVE_OPENPTY |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 1924 | if (openpty(&master_fd, &slave_fd, NULL, NULL, NULL) != 0) |
| 1925 | return posix_error(); |
Thomas Wouters | 70c21a1 | 2000-07-14 14:28:33 +0000 | [diff] [blame] | 1926 | #else |
| 1927 | slave_name = _getpty(&master_fd, O_RDWR, 0666, 0); |
| 1928 | if (slave_name == NULL) |
| 1929 | return posix_error(); |
| 1930 | |
| 1931 | slave_fd = open(slave_name, O_RDWR); |
| 1932 | if (slave_fd < 0) |
| 1933 | return posix_error(); |
Thomas Wouters | 1e0c2f4 | 2000-07-24 16:06:23 +0000 | [diff] [blame] | 1934 | #endif /* HAVE_OPENPTY */ |
Thomas Wouters | 70c21a1 | 2000-07-14 14:28:33 +0000 | [diff] [blame] | 1935 | |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 1936 | return Py_BuildValue("(ii)", master_fd, slave_fd); |
Thomas Wouters | 70c21a1 | 2000-07-14 14:28:33 +0000 | [diff] [blame] | 1937 | |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 1938 | } |
Thomas Wouters | 70c21a1 | 2000-07-14 14:28:33 +0000 | [diff] [blame] | 1939 | #endif /* defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) */ |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 1940 | |
| 1941 | #ifdef HAVE_FORKPTY |
| 1942 | static char posix_forkpty__doc__[] = |
| 1943 | "forkpty() -> (pid, master_fd)\n\ |
| 1944 | Fork a new process with a new pseudo-terminal as controlling tty.\n\n\ |
| 1945 | Like fork(), return 0 as pid to child process, and PID of child to parent.\n\ |
| 1946 | To both, return fd of newly opened pseudo-terminal.\n"; |
| 1947 | |
| 1948 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 1949 | posix_forkpty(PyObject *self, PyObject *args) |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 1950 | { |
| 1951 | int master_fd, pid; |
| 1952 | |
| 1953 | if (!PyArg_ParseTuple(args, ":forkpty")) |
| 1954 | return NULL; |
| 1955 | pid = forkpty(&master_fd, NULL, NULL, NULL); |
| 1956 | if (pid == -1) |
| 1957 | return posix_error(); |
Fred Drake | 49b0c3b | 2000-07-06 19:42:19 +0000 | [diff] [blame] | 1958 | if (pid == 0) |
| 1959 | PyOS_AfterFork(); |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 1960 | return Py_BuildValue("(ii)", pid, master_fd); |
| 1961 | } |
| 1962 | #endif |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1963 | |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 1964 | #ifdef HAVE_GETEGID |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1965 | static char posix_getegid__doc__[] = |
| 1966 | "getegid() -> egid\n\ |
| 1967 | Return the current process's effective group id."; |
| 1968 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1969 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 1970 | posix_getegid(PyObject *self, PyObject *args) |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 1971 | { |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 1972 | if (!PyArg_ParseTuple(args, ":getegid")) |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 1973 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1974 | return PyInt_FromLong((long)getegid()); |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 1975 | } |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 1976 | #endif |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 1977 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1978 | |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 1979 | #ifdef HAVE_GETEUID |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1980 | static char posix_geteuid__doc__[] = |
| 1981 | "geteuid() -> euid\n\ |
| 1982 | Return the current process's effective user id."; |
| 1983 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1984 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 1985 | posix_geteuid(PyObject *self, PyObject *args) |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 1986 | { |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 1987 | if (!PyArg_ParseTuple(args, ":geteuid")) |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 1988 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1989 | return PyInt_FromLong((long)geteuid()); |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 1990 | } |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 1991 | #endif |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 1992 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1993 | |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 1994 | #ifdef HAVE_GETGID |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 1995 | static char posix_getgid__doc__[] = |
| 1996 | "getgid() -> gid\n\ |
| 1997 | Return the current process's group id."; |
| 1998 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1999 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 2000 | posix_getgid(PyObject *self, PyObject *args) |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 2001 | { |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 2002 | if (!PyArg_ParseTuple(args, ":getgid")) |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 2003 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2004 | return PyInt_FromLong((long)getgid()); |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 2005 | } |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 2006 | #endif |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 2007 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2008 | |
| 2009 | static char posix_getpid__doc__[] = |
| 2010 | "getpid() -> pid\n\ |
| 2011 | Return the current process id"; |
| 2012 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2013 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 2014 | posix_getpid(PyObject *self, PyObject *args) |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 2015 | { |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 2016 | if (!PyArg_ParseTuple(args, ":getpid")) |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 2017 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2018 | return PyInt_FromLong((long)getpid()); |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 2019 | } |
| 2020 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2021 | |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 2022 | #ifdef HAVE_GETGROUPS |
| 2023 | static char posix_getgroups__doc__[] = "\ |
| 2024 | getgroups() -> list of group IDs\n\ |
| 2025 | Return list of supplemental group IDs for the process."; |
| 2026 | |
| 2027 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 2028 | posix_getgroups(PyObject *self, PyObject *args) |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 2029 | { |
| 2030 | PyObject *result = NULL; |
| 2031 | |
| 2032 | if (PyArg_ParseTuple(args, ":getgroups")) { |
| 2033 | #ifdef NGROUPS_MAX |
| 2034 | #define MAX_GROUPS NGROUPS_MAX |
| 2035 | #else |
| 2036 | /* defined to be 16 on Solaris7, so this should be a small number */ |
| 2037 | #define MAX_GROUPS 64 |
| 2038 | #endif |
| 2039 | gid_t grouplist[MAX_GROUPS]; |
| 2040 | int n; |
| 2041 | |
| 2042 | n = getgroups(MAX_GROUPS, grouplist); |
| 2043 | if (n < 0) |
| 2044 | posix_error(); |
| 2045 | else { |
| 2046 | result = PyList_New(n); |
| 2047 | if (result != NULL) { |
| 2048 | PyObject *o; |
| 2049 | int i; |
| 2050 | for (i = 0; i < n; ++i) { |
| 2051 | o = PyInt_FromLong((long)grouplist[i]); |
| 2052 | if (o == NULL) { |
| 2053 | Py_DECREF(result); |
| 2054 | result = NULL; |
| 2055 | break; |
| 2056 | } |
| 2057 | PyList_SET_ITEM(result, i, o); |
| 2058 | } |
| 2059 | } |
| 2060 | } |
| 2061 | } |
| 2062 | return result; |
| 2063 | } |
| 2064 | #endif |
| 2065 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 2066 | #ifdef HAVE_GETPGRP |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2067 | static char posix_getpgrp__doc__[] = |
| 2068 | "getpgrp() -> pgrp\n\ |
| 2069 | Return the current process group id."; |
| 2070 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2071 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 2072 | posix_getpgrp(PyObject *self, PyObject *args) |
Guido van Rossum | 0481447 | 1991-06-04 20:23:49 +0000 | [diff] [blame] | 2073 | { |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 2074 | if (!PyArg_ParseTuple(args, ":getpgrp")) |
Guido van Rossum | 0481447 | 1991-06-04 20:23:49 +0000 | [diff] [blame] | 2075 | return NULL; |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 2076 | #ifdef GETPGRP_HAVE_ARG |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2077 | return PyInt_FromLong((long)getpgrp(0)); |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 2078 | #else /* GETPGRP_HAVE_ARG */ |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2079 | return PyInt_FromLong((long)getpgrp()); |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 2080 | #endif /* GETPGRP_HAVE_ARG */ |
Guido van Rossum | 0481447 | 1991-06-04 20:23:49 +0000 | [diff] [blame] | 2081 | } |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 2082 | #endif /* HAVE_GETPGRP */ |
Guido van Rossum | 0481447 | 1991-06-04 20:23:49 +0000 | [diff] [blame] | 2083 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2084 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 2085 | #ifdef HAVE_SETPGRP |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2086 | static char posix_setpgrp__doc__[] = |
| 2087 | "setpgrp() -> None\n\ |
| 2088 | Make this process a session leader."; |
| 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_setpgrp(PyObject *self, PyObject *args) |
Guido van Rossum | c2670a0 | 1992-09-13 20:07:29 +0000 | [diff] [blame] | 2092 | { |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 2093 | if (!PyArg_ParseTuple(args, ":setpgrp")) |
Guido van Rossum | c2670a0 | 1992-09-13 20:07:29 +0000 | [diff] [blame] | 2094 | return NULL; |
Guido van Rossum | 6493389 | 1994-10-20 21:56:42 +0000 | [diff] [blame] | 2095 | #ifdef SETPGRP_HAVE_ARG |
Guido van Rossum | c2670a0 | 1992-09-13 20:07:29 +0000 | [diff] [blame] | 2096 | if (setpgrp(0, 0) < 0) |
Guido van Rossum | 6493389 | 1994-10-20 21:56:42 +0000 | [diff] [blame] | 2097 | #else /* SETPGRP_HAVE_ARG */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 2098 | if (setpgrp() < 0) |
Guido van Rossum | 6493389 | 1994-10-20 21:56:42 +0000 | [diff] [blame] | 2099 | #endif /* SETPGRP_HAVE_ARG */ |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 2100 | return posix_error(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2101 | Py_INCREF(Py_None); |
| 2102 | return Py_None; |
Guido van Rossum | c2670a0 | 1992-09-13 20:07:29 +0000 | [diff] [blame] | 2103 | } |
| 2104 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 2105 | #endif /* HAVE_SETPGRP */ |
| 2106 | |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 2107 | #ifdef HAVE_GETPPID |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2108 | static char posix_getppid__doc__[] = |
| 2109 | "getppid() -> ppid\n\ |
| 2110 | Return the parent's process id."; |
| 2111 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2112 | static PyObject * |
Thomas Wouters | f3f33dc | 2000-07-21 06:00:07 +0000 | [diff] [blame] | 2113 | posix_getppid(PyObject *self, PyObject *args) |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 2114 | { |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 2115 | if (!PyArg_ParseTuple(args, ":getppid")) |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 2116 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2117 | return PyInt_FromLong((long)getppid()); |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 2118 | } |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 2119 | #endif |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 2120 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2121 | |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 2122 | #ifdef HAVE_GETLOGIN |
| 2123 | static char posix_getlogin__doc__[] = "\ |
| 2124 | getlogin() -> string\n\ |
| 2125 | Return the actual login name."; |
| 2126 | |
| 2127 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 2128 | posix_getlogin(PyObject *self, PyObject *args) |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 2129 | { |
| 2130 | PyObject *result = NULL; |
| 2131 | |
| 2132 | if (PyArg_ParseTuple(args, ":getlogin")) { |
Fred Drake | a30680b | 2000-12-06 21:24:28 +0000 | [diff] [blame] | 2133 | char *name; |
| 2134 | int old_errno = errno; |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 2135 | |
Fred Drake | a30680b | 2000-12-06 21:24:28 +0000 | [diff] [blame] | 2136 | errno = 0; |
| 2137 | name = getlogin(); |
| 2138 | if (name == NULL) { |
| 2139 | if (errno) |
| 2140 | posix_error(); |
| 2141 | else |
| 2142 | PyErr_SetString(PyExc_OSError, |
Fred Drake | e63544f | 2000-12-06 21:45:33 +0000 | [diff] [blame] | 2143 | "unable to determine login name"); |
Fred Drake | a30680b | 2000-12-06 21:24:28 +0000 | [diff] [blame] | 2144 | } |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 2145 | else |
| 2146 | result = PyString_FromString(name); |
Fred Drake | a30680b | 2000-12-06 21:24:28 +0000 | [diff] [blame] | 2147 | errno = old_errno; |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 2148 | } |
| 2149 | return result; |
| 2150 | } |
| 2151 | #endif |
| 2152 | |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 2153 | #ifdef HAVE_GETUID |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2154 | static char posix_getuid__doc__[] = |
| 2155 | "getuid() -> uid\n\ |
| 2156 | Return the current process's user id."; |
| 2157 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2158 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 2159 | posix_getuid(PyObject *self, PyObject *args) |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 2160 | { |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 2161 | if (!PyArg_ParseTuple(args, ":getuid")) |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 2162 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2163 | return PyInt_FromLong((long)getuid()); |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 2164 | } |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 2165 | #endif |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 2166 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2167 | |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 2168 | #ifdef HAVE_KILL |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2169 | static char posix_kill__doc__[] = |
| 2170 | "kill(pid, sig) -> None\n\ |
| 2171 | Kill a process with a signal."; |
| 2172 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2173 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 2174 | posix_kill(PyObject *self, PyObject *args) |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 2175 | { |
| 2176 | int pid, sig; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 2177 | if (!PyArg_ParseTuple(args, "ii:kill", &pid, &sig)) |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 2178 | return NULL; |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 2179 | #if defined(PYOS_OS2) |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2180 | if (sig == XCPT_SIGNAL_INTR || sig == XCPT_SIGNAL_BREAK) { |
| 2181 | APIRET rc; |
| 2182 | if ((rc = DosSendSignalException(pid, sig)) != NO_ERROR) |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 2183 | return os2_error(rc); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2184 | |
| 2185 | } else if (sig == XCPT_SIGNAL_KILLPROC) { |
| 2186 | APIRET rc; |
| 2187 | if ((rc = DosKillProcess(DKP_PROCESS, pid)) != NO_ERROR) |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 2188 | return os2_error(rc); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2189 | |
| 2190 | } else |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 2191 | return NULL; /* Unrecognized Signal Requested */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2192 | #else |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 2193 | if (kill(pid, sig) == -1) |
| 2194 | return posix_error(); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2195 | #endif |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2196 | Py_INCREF(Py_None); |
| 2197 | return Py_None; |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 2198 | } |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 2199 | #endif |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 2200 | |
Guido van Rossum | c012547 | 1996-06-28 18:55:32 +0000 | [diff] [blame] | 2201 | #ifdef HAVE_PLOCK |
| 2202 | |
| 2203 | #ifdef HAVE_SYS_LOCK_H |
| 2204 | #include <sys/lock.h> |
| 2205 | #endif |
| 2206 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2207 | static char posix_plock__doc__[] = |
| 2208 | "plock(op) -> None\n\ |
| 2209 | Lock program segments into memory."; |
| 2210 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2211 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 2212 | posix_plock(PyObject *self, PyObject *args) |
Guido van Rossum | c012547 | 1996-06-28 18:55:32 +0000 | [diff] [blame] | 2213 | { |
| 2214 | int op; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 2215 | if (!PyArg_ParseTuple(args, "i:plock", &op)) |
Guido van Rossum | c012547 | 1996-06-28 18:55:32 +0000 | [diff] [blame] | 2216 | return NULL; |
| 2217 | if (plock(op) == -1) |
| 2218 | return posix_error(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2219 | Py_INCREF(Py_None); |
| 2220 | return Py_None; |
Guido van Rossum | c012547 | 1996-06-28 18:55:32 +0000 | [diff] [blame] | 2221 | } |
| 2222 | #endif |
| 2223 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2224 | |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 2225 | #ifdef HAVE_POPEN |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2226 | static char posix_popen__doc__[] = |
| 2227 | "popen(command [, mode='r' [, bufsize]]) -> pipe\n\ |
| 2228 | Open a pipe to/from a command returning a file object."; |
| 2229 | |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2230 | #if defined(PYOS_OS2) |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 2231 | static int |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2232 | async_system(const char *command) |
| 2233 | { |
| 2234 | char *p, errormsg[256], args[1024]; |
| 2235 | RESULTCODES rcodes; |
| 2236 | APIRET rc; |
| 2237 | char *shell = getenv("COMSPEC"); |
| 2238 | if (!shell) |
| 2239 | shell = "cmd"; |
| 2240 | |
| 2241 | strcpy(args, shell); |
| 2242 | p = &args[ strlen(args)+1 ]; |
| 2243 | strcpy(p, "/c "); |
| 2244 | strcat(p, command); |
| 2245 | p += strlen(p) + 1; |
| 2246 | *p = '\0'; |
| 2247 | |
| 2248 | rc = DosExecPgm(errormsg, sizeof(errormsg), |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 2249 | EXEC_ASYNC, /* Execute Async w/o Wait for Results */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2250 | args, |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 2251 | NULL, /* Inherit Parent's Environment */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2252 | &rcodes, shell); |
| 2253 | return rc; |
| 2254 | } |
| 2255 | |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 2256 | static FILE * |
| 2257 | popen(const char *command, const char *mode, int pipesize, int *err) |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2258 | { |
| 2259 | HFILE rhan, whan; |
| 2260 | FILE *retfd = NULL; |
| 2261 | APIRET rc = DosCreatePipe(&rhan, &whan, pipesize); |
| 2262 | |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 2263 | if (rc != NO_ERROR) { |
| 2264 | *err = rc; |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 2265 | return NULL; /* ERROR - Unable to Create Anon Pipe */ |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 2266 | } |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2267 | |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 2268 | if (strchr(mode, 'r') != NULL) { /* Treat Command as a Data Source */ |
| 2269 | int oldfd = dup(1); /* Save STDOUT Handle in Another Handle */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2270 | |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 2271 | DosEnterCritSec(); /* Stop Other Threads While Changing Handles */ |
| 2272 | close(1); /* Make STDOUT Available for Reallocation */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2273 | |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 2274 | if (dup2(whan, 1) == 0) { /* Connect STDOUT to Pipe Write Side */ |
| 2275 | DosClose(whan); /* Close Now-Unused Pipe Write Handle */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2276 | |
Martin v. Löwis | dedbe25 | 2001-11-02 23:59:11 +0000 | [diff] [blame] | 2277 | rc = async_system(command); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2278 | } |
| 2279 | |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 2280 | dup2(oldfd, 1); /* Reconnect STDOUT to Original Handle */ |
| 2281 | DosExitCritSec(); /* Now Allow Other Threads to Run */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2282 | |
Martin v. Löwis | dedbe25 | 2001-11-02 23:59:11 +0000 | [diff] [blame] | 2283 | if (rc == NO_ERROR) |
| 2284 | retfd = fdopen(rhan, mode); /* And Return Pipe Read Handle */ |
| 2285 | |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 2286 | close(oldfd); /* And Close Saved STDOUT Handle */ |
| 2287 | return retfd; /* Return fd of Pipe or NULL if Error */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2288 | |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 2289 | } else if (strchr(mode, 'w')) { /* Treat Command as a Data Sink */ |
| 2290 | int oldfd = dup(0); /* Save STDIN Handle in Another Handle */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2291 | |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 2292 | DosEnterCritSec(); /* Stop Other Threads While Changing Handles */ |
| 2293 | close(0); /* Make STDIN Available for Reallocation */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2294 | |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 2295 | if (dup2(rhan, 0) == 0) { /* Connect STDIN to Pipe Read Side */ |
| 2296 | DosClose(rhan); /* Close Now-Unused Pipe Read Handle */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2297 | |
Martin v. Löwis | dedbe25 | 2001-11-02 23:59:11 +0000 | [diff] [blame] | 2298 | rc = async_system(command); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2299 | } |
| 2300 | |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 2301 | dup2(oldfd, 0); /* Reconnect STDIN to Original Handle */ |
| 2302 | DosExitCritSec(); /* Now Allow Other Threads to Run */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2303 | |
Martin v. Löwis | dedbe25 | 2001-11-02 23:59:11 +0000 | [diff] [blame] | 2304 | if (rc == NO_ERROR) |
| 2305 | retfd = fdopen(whan, mode); /* And Return Pipe Write Handle */ |
| 2306 | |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 2307 | close(oldfd); /* And Close Saved STDIN Handle */ |
| 2308 | return retfd; /* Return fd of Pipe or NULL if Error */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2309 | |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 2310 | } else { |
| 2311 | *err = ERROR_INVALID_ACCESS; |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 2312 | return NULL; /* ERROR - Invalid Mode (Neither Read nor Write) */ |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 2313 | } |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2314 | } |
| 2315 | |
| 2316 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 2317 | posix_popen(PyObject *self, PyObject *args) |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2318 | { |
| 2319 | char *name; |
| 2320 | char *mode = "r"; |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 2321 | int err, bufsize = -1; |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2322 | FILE *fp; |
| 2323 | PyObject *f; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 2324 | if (!PyArg_ParseTuple(args, "s|si:popen", &name, &mode, &bufsize)) |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2325 | return NULL; |
| 2326 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 2327 | fp = popen(name, mode, (bufsize > 0) ? bufsize : 4096, &err); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2328 | Py_END_ALLOW_THREADS |
| 2329 | if (fp == NULL) |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 2330 | return os2_error(err); |
| 2331 | |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 2332 | f = PyFile_FromFile(fp, name, mode, fclose); |
| 2333 | if (f != NULL) |
| 2334 | PyFile_SetBufSize(f, bufsize); |
| 2335 | return f; |
| 2336 | } |
| 2337 | |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2338 | #elif defined(MS_WIN32) |
| 2339 | |
| 2340 | /* |
| 2341 | * Portable 'popen' replacement for Win32. |
| 2342 | * |
| 2343 | * Written by Bill Tutt <billtut@microsoft.com>. Minor tweaks |
| 2344 | * and 2.0 integration by Fredrik Lundh <fredrik@pythonware.com> |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 2345 | * Return code handling by David Bolen <db3l@fitlinxx.com>. |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2346 | */ |
| 2347 | |
| 2348 | #include <malloc.h> |
| 2349 | #include <io.h> |
| 2350 | #include <fcntl.h> |
| 2351 | |
| 2352 | /* These tell _PyPopen() wether to return 1, 2, or 3 file objects. */ |
| 2353 | #define POPEN_1 1 |
| 2354 | #define POPEN_2 2 |
| 2355 | #define POPEN_3 3 |
| 2356 | #define POPEN_4 4 |
| 2357 | |
| 2358 | static PyObject *_PyPopen(char *, int, int); |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 2359 | static int _PyPclose(FILE *file); |
| 2360 | |
| 2361 | /* |
| 2362 | * Internal dictionary mapping popen* file pointers to process handles, |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 2363 | * for use when retrieving the process exit code. See _PyPclose() below |
| 2364 | * for more information on this dictionary's use. |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 2365 | */ |
| 2366 | static PyObject *_PyPopenProcs = NULL; |
| 2367 | |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2368 | |
| 2369 | /* popen that works from a GUI. |
| 2370 | * |
| 2371 | * The result of this function is a pipe (file) connected to the |
| 2372 | * processes stdin or stdout, depending on the requested mode. |
| 2373 | */ |
| 2374 | |
| 2375 | static PyObject * |
| 2376 | posix_popen(PyObject *self, PyObject *args) |
| 2377 | { |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2378 | PyObject *f, *s; |
| 2379 | int tm = 0; |
| 2380 | |
| 2381 | char *cmdstring; |
| 2382 | char *mode = "r"; |
Fredrik Lundh | bb7eeff | 2000-07-09 17:59:32 +0000 | [diff] [blame] | 2383 | int bufsize = -1; |
Fredrik Lundh | 766ccdc | 2000-07-09 17:41:01 +0000 | [diff] [blame] | 2384 | if (!PyArg_ParseTuple(args, "s|si:popen", &cmdstring, &mode, &bufsize)) |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2385 | return NULL; |
| 2386 | |
| 2387 | s = PyTuple_New(0); |
| 2388 | |
| 2389 | if (*mode == 'r') |
| 2390 | tm = _O_RDONLY; |
| 2391 | else if (*mode != 'w') { |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 2392 | PyErr_SetString(PyExc_ValueError, "popen() arg 2 must be 'r' or 'w'"); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2393 | return NULL; |
| 2394 | } else |
| 2395 | tm = _O_WRONLY; |
| 2396 | |
Fredrik Lundh | 766ccdc | 2000-07-09 17:41:01 +0000 | [diff] [blame] | 2397 | if (bufsize != -1) { |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 2398 | PyErr_SetString(PyExc_ValueError, "popen() arg 3 must be -1"); |
Fredrik Lundh | 766ccdc | 2000-07-09 17:41:01 +0000 | [diff] [blame] | 2399 | return NULL; |
| 2400 | } |
| 2401 | |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2402 | if (*(mode+1) == 't') |
Fredrik Lundh | bb7eeff | 2000-07-09 17:59:32 +0000 | [diff] [blame] | 2403 | f = _PyPopen(cmdstring, tm | _O_TEXT, POPEN_1); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2404 | else if (*(mode+1) == 'b') |
Fredrik Lundh | bb7eeff | 2000-07-09 17:59:32 +0000 | [diff] [blame] | 2405 | f = _PyPopen(cmdstring, tm | _O_BINARY, POPEN_1); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2406 | else |
| 2407 | f = _PyPopen(cmdstring, tm | _O_TEXT, POPEN_1); |
| 2408 | |
| 2409 | return f; |
| 2410 | } |
| 2411 | |
| 2412 | /* Variation on win32pipe.popen |
| 2413 | * |
| 2414 | * The result of this function is a pipe (file) connected to the |
| 2415 | * process's stdin, and a pipe connected to the process's stdout. |
| 2416 | */ |
| 2417 | |
| 2418 | static PyObject * |
| 2419 | win32_popen2(PyObject *self, PyObject *args) |
| 2420 | { |
| 2421 | PyObject *f; |
| 2422 | int tm=0; |
| 2423 | |
| 2424 | char *cmdstring; |
| 2425 | char *mode = "t"; |
Fredrik Lundh | 766ccdc | 2000-07-09 17:41:01 +0000 | [diff] [blame] | 2426 | int bufsize = -1; |
| 2427 | if (!PyArg_ParseTuple(args, "s|si:popen2", &cmdstring, &mode, &bufsize)) |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2428 | return NULL; |
| 2429 | |
| 2430 | if (*mode == 't') |
| 2431 | tm = _O_TEXT; |
| 2432 | else if (*mode != 'b') { |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 2433 | PyErr_SetString(PyExc_ValueError, "popen2() arg 2 must be 't' or 'b'"); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2434 | return NULL; |
| 2435 | } else |
| 2436 | tm = _O_BINARY; |
| 2437 | |
Fredrik Lundh | 766ccdc | 2000-07-09 17:41:01 +0000 | [diff] [blame] | 2438 | if (bufsize != -1) { |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 2439 | PyErr_SetString(PyExc_ValueError, "popen2() arg 3 must be -1"); |
Fredrik Lundh | 766ccdc | 2000-07-09 17:41:01 +0000 | [diff] [blame] | 2440 | return NULL; |
| 2441 | } |
| 2442 | |
| 2443 | f = _PyPopen(cmdstring, tm, POPEN_2); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2444 | |
| 2445 | return f; |
| 2446 | } |
| 2447 | |
| 2448 | /* |
| 2449 | * Variation on <om win32pipe.popen> |
Fredrik Lundh | bb7eeff | 2000-07-09 17:59:32 +0000 | [diff] [blame] | 2450 | * |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2451 | * The result of this function is 3 pipes - the process's stdin, |
| 2452 | * stdout and stderr |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2453 | */ |
| 2454 | |
| 2455 | static PyObject * |
| 2456 | win32_popen3(PyObject *self, PyObject *args) |
| 2457 | { |
| 2458 | PyObject *f; |
| 2459 | int tm = 0; |
| 2460 | |
| 2461 | char *cmdstring; |
| 2462 | char *mode = "t"; |
Fredrik Lundh | 766ccdc | 2000-07-09 17:41:01 +0000 | [diff] [blame] | 2463 | int bufsize = -1; |
| 2464 | if (!PyArg_ParseTuple(args, "s|si:popen3", &cmdstring, &mode, &bufsize)) |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2465 | return NULL; |
| 2466 | |
| 2467 | if (*mode == 't') |
| 2468 | tm = _O_TEXT; |
| 2469 | else if (*mode != 'b') { |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 2470 | PyErr_SetString(PyExc_ValueError, "popen3() arg 2 must be 't' or 'b'"); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2471 | return NULL; |
| 2472 | } else |
| 2473 | tm = _O_BINARY; |
| 2474 | |
Fredrik Lundh | 766ccdc | 2000-07-09 17:41:01 +0000 | [diff] [blame] | 2475 | if (bufsize != -1) { |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 2476 | PyErr_SetString(PyExc_ValueError, "popen3() arg 3 must be -1"); |
Fredrik Lundh | 766ccdc | 2000-07-09 17:41:01 +0000 | [diff] [blame] | 2477 | return NULL; |
| 2478 | } |
| 2479 | |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2480 | f = _PyPopen(cmdstring, tm, POPEN_3); |
| 2481 | |
| 2482 | return f; |
| 2483 | } |
| 2484 | |
| 2485 | /* |
| 2486 | * Variation on win32pipe.popen |
| 2487 | * |
| 2488 | * The result of this function is 2 pipes - the processes stdin, |
| 2489 | * and stdout+stderr combined as a single pipe. |
| 2490 | */ |
| 2491 | |
| 2492 | static PyObject * |
| 2493 | win32_popen4(PyObject *self, PyObject *args) |
| 2494 | { |
| 2495 | PyObject *f; |
| 2496 | int tm = 0; |
| 2497 | |
| 2498 | char *cmdstring; |
| 2499 | char *mode = "t"; |
Fredrik Lundh | 766ccdc | 2000-07-09 17:41:01 +0000 | [diff] [blame] | 2500 | int bufsize = -1; |
| 2501 | if (!PyArg_ParseTuple(args, "s|si:popen4", &cmdstring, &mode, &bufsize)) |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2502 | return NULL; |
| 2503 | |
| 2504 | if (*mode == 't') |
| 2505 | tm = _O_TEXT; |
| 2506 | else if (*mode != 'b') { |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 2507 | PyErr_SetString(PyExc_ValueError, "popen4() arg 2 must be 't' or 'b'"); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2508 | return NULL; |
| 2509 | } else |
| 2510 | tm = _O_BINARY; |
Fredrik Lundh | 766ccdc | 2000-07-09 17:41:01 +0000 | [diff] [blame] | 2511 | |
| 2512 | if (bufsize != -1) { |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 2513 | PyErr_SetString(PyExc_ValueError, "popen4() arg 3 must be -1"); |
Fredrik Lundh | 766ccdc | 2000-07-09 17:41:01 +0000 | [diff] [blame] | 2514 | return NULL; |
| 2515 | } |
| 2516 | |
Fredrik Lundh | bb7eeff | 2000-07-09 17:59:32 +0000 | [diff] [blame] | 2517 | f = _PyPopen(cmdstring, tm, POPEN_4); |
Fredrik Lundh | 766ccdc | 2000-07-09 17:41:01 +0000 | [diff] [blame] | 2518 | |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2519 | return f; |
| 2520 | } |
| 2521 | |
Mark Hammond | 0850137 | 2001-01-31 07:30:29 +0000 | [diff] [blame] | 2522 | static BOOL |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 2523 | _PyPopenCreateProcess(char *cmdstring, |
Fredrik Lundh | 9ac81f6 | 2000-07-09 23:35:24 +0000 | [diff] [blame] | 2524 | HANDLE hStdin, |
| 2525 | HANDLE hStdout, |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 2526 | HANDLE hStderr, |
| 2527 | HANDLE *hProcess) |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2528 | { |
| 2529 | PROCESS_INFORMATION piProcInfo; |
| 2530 | STARTUPINFO siStartInfo; |
| 2531 | char *s1,*s2, *s3 = " /c "; |
Mark Hammond | 0850137 | 2001-01-31 07:30:29 +0000 | [diff] [blame] | 2532 | const char *szConsoleSpawn = "w9xpopen.exe"; |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2533 | int i; |
| 2534 | int x; |
| 2535 | |
| 2536 | if (i = GetEnvironmentVariable("COMSPEC",NULL,0)) { |
Tim Peters | 402d598 | 2001-08-27 06:37:48 +0000 | [diff] [blame] | 2537 | char *comshell; |
| 2538 | |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2539 | s1 = (char *)_alloca(i); |
| 2540 | if (!(x = GetEnvironmentVariable("COMSPEC", s1, i))) |
| 2541 | return x; |
Tim Peters | 402d598 | 2001-08-27 06:37:48 +0000 | [diff] [blame] | 2542 | |
| 2543 | /* Explicitly check if we are using COMMAND.COM. If we are |
| 2544 | * then use the w9xpopen hack. |
| 2545 | */ |
| 2546 | comshell = s1 + x; |
| 2547 | while (comshell >= s1 && *comshell != '\\') |
| 2548 | --comshell; |
| 2549 | ++comshell; |
| 2550 | |
| 2551 | if (GetVersion() < 0x80000000 && |
| 2552 | _stricmp(comshell, "command.com") != 0) { |
| 2553 | /* NT/2000 and not using command.com. */ |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2554 | x = i + strlen(s3) + strlen(cmdstring) + 1; |
| 2555 | s2 = (char *)_alloca(x); |
| 2556 | ZeroMemory(s2, x); |
| 2557 | sprintf(s2, "%s%s%s", s1, s3, cmdstring); |
| 2558 | } |
| 2559 | else { |
| 2560 | /* |
Tim Peters | 402d598 | 2001-08-27 06:37:48 +0000 | [diff] [blame] | 2561 | * Oh gag, we're on Win9x or using COMMAND.COM. Use |
| 2562 | * the workaround listed in KB: Q150956 |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2563 | */ |
Mark Hammond | 0850137 | 2001-01-31 07:30:29 +0000 | [diff] [blame] | 2564 | char modulepath[_MAX_PATH]; |
| 2565 | struct stat statinfo; |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2566 | GetModuleFileName(NULL, modulepath, sizeof(modulepath)); |
| 2567 | for (i = x = 0; modulepath[i]; i++) |
| 2568 | if (modulepath[i] == '\\') |
| 2569 | x = i+1; |
| 2570 | modulepath[x] = '\0'; |
Mark Hammond | 0850137 | 2001-01-31 07:30:29 +0000 | [diff] [blame] | 2571 | /* Create the full-name to w9xpopen, so we can test it exists */ |
| 2572 | strncat(modulepath, |
| 2573 | szConsoleSpawn, |
| 2574 | (sizeof(modulepath)/sizeof(modulepath[0])) |
| 2575 | -strlen(modulepath)); |
| 2576 | if (stat(modulepath, &statinfo) != 0) { |
| 2577 | /* Eeek - file-not-found - possibly an embedding |
| 2578 | situation - see if we can locate it in sys.prefix |
| 2579 | */ |
| 2580 | strncpy(modulepath, |
| 2581 | Py_GetExecPrefix(), |
| 2582 | sizeof(modulepath)/sizeof(modulepath[0])); |
| 2583 | if (modulepath[strlen(modulepath)-1] != '\\') |
| 2584 | strcat(modulepath, "\\"); |
| 2585 | strncat(modulepath, |
| 2586 | szConsoleSpawn, |
| 2587 | (sizeof(modulepath)/sizeof(modulepath[0])) |
| 2588 | -strlen(modulepath)); |
| 2589 | /* No where else to look - raise an easily identifiable |
| 2590 | error, rather than leaving Windows to report |
| 2591 | "file not found" - as the user is probably blissfully |
| 2592 | unaware this shim EXE is used, and it will confuse them. |
| 2593 | (well, it confused me for a while ;-) |
| 2594 | */ |
| 2595 | if (stat(modulepath, &statinfo) != 0) { |
| 2596 | PyErr_Format(PyExc_RuntimeError, |
| 2597 | "Can not locate '%s' which is needed " |
Tim Peters | 402d598 | 2001-08-27 06:37:48 +0000 | [diff] [blame] | 2598 | "for popen to work with your shell " |
| 2599 | "or platform.", |
Mark Hammond | 0850137 | 2001-01-31 07:30:29 +0000 | [diff] [blame] | 2600 | szConsoleSpawn); |
| 2601 | return FALSE; |
| 2602 | } |
| 2603 | } |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2604 | x = i + strlen(s3) + strlen(cmdstring) + 1 + |
| 2605 | strlen(modulepath) + |
| 2606 | strlen(szConsoleSpawn) + 1; |
Mark Hammond | 0850137 | 2001-01-31 07:30:29 +0000 | [diff] [blame] | 2607 | |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2608 | s2 = (char *)_alloca(x); |
| 2609 | ZeroMemory(s2, x); |
| 2610 | sprintf( |
| 2611 | s2, |
Mark Hammond | 0850137 | 2001-01-31 07:30:29 +0000 | [diff] [blame] | 2612 | "%s \"%s%s%s\"", |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2613 | modulepath, |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2614 | s1, |
| 2615 | s3, |
| 2616 | cmdstring); |
| 2617 | } |
| 2618 | } |
| 2619 | |
| 2620 | /* Could be an else here to try cmd.exe / command.com in the path |
| 2621 | Now we'll just error out.. */ |
Mark Hammond | 0850137 | 2001-01-31 07:30:29 +0000 | [diff] [blame] | 2622 | else { |
Tim Peters | 402d598 | 2001-08-27 06:37:48 +0000 | [diff] [blame] | 2623 | PyErr_SetString(PyExc_RuntimeError, |
| 2624 | "Cannot locate a COMSPEC environment variable to " |
| 2625 | "use as the shell"); |
Mark Hammond | 0850137 | 2001-01-31 07:30:29 +0000 | [diff] [blame] | 2626 | return FALSE; |
| 2627 | } |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2628 | |
| 2629 | ZeroMemory(&siStartInfo, sizeof(STARTUPINFO)); |
| 2630 | siStartInfo.cb = sizeof(STARTUPINFO); |
| 2631 | siStartInfo.dwFlags = STARTF_USESTDHANDLES | STARTF_USESHOWWINDOW; |
| 2632 | siStartInfo.hStdInput = hStdin; |
| 2633 | siStartInfo.hStdOutput = hStdout; |
| 2634 | siStartInfo.hStdError = hStderr; |
| 2635 | siStartInfo.wShowWindow = SW_HIDE; |
| 2636 | |
| 2637 | if (CreateProcess(NULL, |
Fredrik Lundh | 9ac81f6 | 2000-07-09 23:35:24 +0000 | [diff] [blame] | 2638 | s2, |
| 2639 | NULL, |
| 2640 | NULL, |
| 2641 | TRUE, |
| 2642 | CREATE_NEW_CONSOLE, |
| 2643 | NULL, |
| 2644 | NULL, |
| 2645 | &siStartInfo, |
| 2646 | &piProcInfo) ) { |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2647 | /* Close the handles now so anyone waiting is woken. */ |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2648 | CloseHandle(piProcInfo.hThread); |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 2649 | |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 2650 | /* Return process handle */ |
| 2651 | *hProcess = piProcInfo.hProcess; |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2652 | return TRUE; |
| 2653 | } |
Tim Peters | 402d598 | 2001-08-27 06:37:48 +0000 | [diff] [blame] | 2654 | win32_error("CreateProcess", s2); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2655 | return FALSE; |
| 2656 | } |
| 2657 | |
| 2658 | /* The following code is based off of KB: Q190351 */ |
| 2659 | |
| 2660 | static PyObject * |
| 2661 | _PyPopen(char *cmdstring, int mode, int n) |
| 2662 | { |
| 2663 | HANDLE hChildStdinRd, hChildStdinWr, hChildStdoutRd, hChildStdoutWr, |
| 2664 | hChildStderrRd, hChildStderrWr, hChildStdinWrDup, hChildStdoutRdDup, |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 2665 | hChildStderrRdDup, hProcess; /* hChildStdoutWrDup; */ |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2666 | |
| 2667 | SECURITY_ATTRIBUTES saAttr; |
| 2668 | BOOL fSuccess; |
| 2669 | int fd1, fd2, fd3; |
| 2670 | FILE *f1, *f2, *f3; |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 2671 | long file_count; |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2672 | PyObject *f; |
| 2673 | |
| 2674 | saAttr.nLength = sizeof(SECURITY_ATTRIBUTES); |
| 2675 | saAttr.bInheritHandle = TRUE; |
| 2676 | saAttr.lpSecurityDescriptor = NULL; |
| 2677 | |
| 2678 | if (!CreatePipe(&hChildStdinRd, &hChildStdinWr, &saAttr, 0)) |
| 2679 | return win32_error("CreatePipe", NULL); |
| 2680 | |
| 2681 | /* Create new output read handle and the input write handle. Set |
| 2682 | * the inheritance properties to FALSE. Otherwise, the child inherits |
| 2683 | * the these handles; resulting in non-closeable handles to the pipes |
| 2684 | * being created. */ |
| 2685 | fSuccess = DuplicateHandle(GetCurrentProcess(), hChildStdinWr, |
Fredrik Lundh | 9ac81f6 | 2000-07-09 23:35:24 +0000 | [diff] [blame] | 2686 | GetCurrentProcess(), &hChildStdinWrDup, 0, |
| 2687 | FALSE, |
| 2688 | DUPLICATE_SAME_ACCESS); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2689 | if (!fSuccess) |
| 2690 | return win32_error("DuplicateHandle", NULL); |
| 2691 | |
| 2692 | /* Close the inheritable version of ChildStdin |
| 2693 | that we're using. */ |
| 2694 | CloseHandle(hChildStdinWr); |
| 2695 | |
| 2696 | if (!CreatePipe(&hChildStdoutRd, &hChildStdoutWr, &saAttr, 0)) |
| 2697 | return win32_error("CreatePipe", NULL); |
| 2698 | |
| 2699 | fSuccess = DuplicateHandle(GetCurrentProcess(), hChildStdoutRd, |
Fredrik Lundh | 9ac81f6 | 2000-07-09 23:35:24 +0000 | [diff] [blame] | 2700 | GetCurrentProcess(), &hChildStdoutRdDup, 0, |
| 2701 | FALSE, DUPLICATE_SAME_ACCESS); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2702 | if (!fSuccess) |
| 2703 | return win32_error("DuplicateHandle", NULL); |
| 2704 | |
| 2705 | /* Close the inheritable version of ChildStdout |
| 2706 | that we're using. */ |
| 2707 | CloseHandle(hChildStdoutRd); |
| 2708 | |
| 2709 | if (n != POPEN_4) { |
| 2710 | if (!CreatePipe(&hChildStderrRd, &hChildStderrWr, &saAttr, 0)) |
| 2711 | return win32_error("CreatePipe", NULL); |
Fredrik Lundh | 9ac81f6 | 2000-07-09 23:35:24 +0000 | [diff] [blame] | 2712 | fSuccess = DuplicateHandle(GetCurrentProcess(), |
| 2713 | hChildStderrRd, |
| 2714 | GetCurrentProcess(), |
| 2715 | &hChildStderrRdDup, 0, |
| 2716 | FALSE, DUPLICATE_SAME_ACCESS); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2717 | if (!fSuccess) |
| 2718 | return win32_error("DuplicateHandle", NULL); |
| 2719 | /* Close the inheritable version of ChildStdErr that we're using. */ |
| 2720 | CloseHandle(hChildStderrRd); |
| 2721 | } |
| 2722 | |
| 2723 | switch (n) { |
| 2724 | case POPEN_1: |
| 2725 | switch (mode & (_O_RDONLY | _O_TEXT | _O_BINARY | _O_WRONLY)) { |
| 2726 | case _O_WRONLY | _O_TEXT: |
| 2727 | /* Case for writing to child Stdin in text mode. */ |
| 2728 | fd1 = _open_osfhandle((long)hChildStdinWrDup, mode); |
| 2729 | f1 = _fdopen(fd1, "w"); |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 2730 | f = PyFile_FromFile(f1, cmdstring, "w", _PyPclose); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2731 | PyFile_SetBufSize(f, 0); |
| 2732 | /* We don't care about these pipes anymore, so close them. */ |
| 2733 | CloseHandle(hChildStdoutRdDup); |
| 2734 | CloseHandle(hChildStderrRdDup); |
| 2735 | break; |
| 2736 | |
| 2737 | case _O_RDONLY | _O_TEXT: |
| 2738 | /* Case for reading from child Stdout in text mode. */ |
| 2739 | fd1 = _open_osfhandle((long)hChildStdoutRdDup, mode); |
| 2740 | f1 = _fdopen(fd1, "r"); |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 2741 | f = PyFile_FromFile(f1, cmdstring, "r", _PyPclose); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2742 | PyFile_SetBufSize(f, 0); |
| 2743 | /* We don't care about these pipes anymore, so close them. */ |
| 2744 | CloseHandle(hChildStdinWrDup); |
| 2745 | CloseHandle(hChildStderrRdDup); |
| 2746 | break; |
| 2747 | |
| 2748 | case _O_RDONLY | _O_BINARY: |
| 2749 | /* Case for readinig from child Stdout in binary mode. */ |
| 2750 | fd1 = _open_osfhandle((long)hChildStdoutRdDup, mode); |
| 2751 | f1 = _fdopen(fd1, "rb"); |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 2752 | f = PyFile_FromFile(f1, cmdstring, "rb", _PyPclose); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2753 | PyFile_SetBufSize(f, 0); |
| 2754 | /* We don't care about these pipes anymore, so close them. */ |
| 2755 | CloseHandle(hChildStdinWrDup); |
| 2756 | CloseHandle(hChildStderrRdDup); |
| 2757 | break; |
| 2758 | |
| 2759 | case _O_WRONLY | _O_BINARY: |
| 2760 | /* Case for writing to child Stdin in binary mode. */ |
| 2761 | fd1 = _open_osfhandle((long)hChildStdinWrDup, mode); |
| 2762 | f1 = _fdopen(fd1, "wb"); |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 2763 | f = PyFile_FromFile(f1, cmdstring, "wb", _PyPclose); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2764 | PyFile_SetBufSize(f, 0); |
| 2765 | /* We don't care about these pipes anymore, so close them. */ |
| 2766 | CloseHandle(hChildStdoutRdDup); |
| 2767 | CloseHandle(hChildStderrRdDup); |
| 2768 | break; |
| 2769 | } |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 2770 | file_count = 1; |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2771 | break; |
| 2772 | |
| 2773 | case POPEN_2: |
| 2774 | case POPEN_4: |
| 2775 | { |
| 2776 | char *m1, *m2; |
| 2777 | PyObject *p1, *p2; |
| 2778 | |
| 2779 | if (mode && _O_TEXT) { |
| 2780 | m1 = "r"; |
| 2781 | m2 = "w"; |
| 2782 | } else { |
| 2783 | m1 = "rb"; |
| 2784 | m2 = "wb"; |
| 2785 | } |
| 2786 | |
| 2787 | fd1 = _open_osfhandle((long)hChildStdinWrDup, mode); |
| 2788 | f1 = _fdopen(fd1, m2); |
| 2789 | fd2 = _open_osfhandle((long)hChildStdoutRdDup, mode); |
| 2790 | f2 = _fdopen(fd2, m1); |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 2791 | p1 = PyFile_FromFile(f1, cmdstring, m2, _PyPclose); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2792 | PyFile_SetBufSize(p1, 0); |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 2793 | p2 = PyFile_FromFile(f2, cmdstring, m1, _PyPclose); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2794 | PyFile_SetBufSize(p2, 0); |
| 2795 | |
| 2796 | if (n != 4) |
| 2797 | CloseHandle(hChildStderrRdDup); |
| 2798 | |
Fredrik Lundh | 9ac81f6 | 2000-07-09 23:35:24 +0000 | [diff] [blame] | 2799 | f = Py_BuildValue("OO",p1,p2); |
Mark Hammond | 64aae66 | 2001-01-31 05:38:47 +0000 | [diff] [blame] | 2800 | Py_XDECREF(p1); |
| 2801 | Py_XDECREF(p2); |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 2802 | file_count = 2; |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2803 | break; |
| 2804 | } |
| 2805 | |
| 2806 | case POPEN_3: |
| 2807 | { |
| 2808 | char *m1, *m2; |
| 2809 | PyObject *p1, *p2, *p3; |
| 2810 | |
| 2811 | if (mode && _O_TEXT) { |
| 2812 | m1 = "r"; |
| 2813 | m2 = "w"; |
| 2814 | } else { |
| 2815 | m1 = "rb"; |
| 2816 | m2 = "wb"; |
| 2817 | } |
| 2818 | |
| 2819 | fd1 = _open_osfhandle((long)hChildStdinWrDup, mode); |
| 2820 | f1 = _fdopen(fd1, m2); |
| 2821 | fd2 = _open_osfhandle((long)hChildStdoutRdDup, mode); |
| 2822 | f2 = _fdopen(fd2, m1); |
| 2823 | fd3 = _open_osfhandle((long)hChildStderrRdDup, mode); |
| 2824 | f3 = _fdopen(fd3, m1); |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 2825 | p1 = PyFile_FromFile(f1, cmdstring, m2, _PyPclose); |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 2826 | p2 = PyFile_FromFile(f2, cmdstring, m1, _PyPclose); |
| 2827 | p3 = PyFile_FromFile(f3, cmdstring, m1, _PyPclose); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2828 | PyFile_SetBufSize(p1, 0); |
| 2829 | PyFile_SetBufSize(p2, 0); |
| 2830 | PyFile_SetBufSize(p3, 0); |
Fredrik Lundh | 9ac81f6 | 2000-07-09 23:35:24 +0000 | [diff] [blame] | 2831 | f = Py_BuildValue("OOO",p1,p2,p3); |
Mark Hammond | 64aae66 | 2001-01-31 05:38:47 +0000 | [diff] [blame] | 2832 | Py_XDECREF(p1); |
| 2833 | Py_XDECREF(p2); |
| 2834 | Py_XDECREF(p3); |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 2835 | file_count = 3; |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2836 | break; |
| 2837 | } |
| 2838 | } |
| 2839 | |
| 2840 | if (n == POPEN_4) { |
| 2841 | if (!_PyPopenCreateProcess(cmdstring, |
Fredrik Lundh | 9ac81f6 | 2000-07-09 23:35:24 +0000 | [diff] [blame] | 2842 | hChildStdinRd, |
| 2843 | hChildStdoutWr, |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 2844 | hChildStdoutWr, |
| 2845 | &hProcess)) |
Mark Hammond | 0850137 | 2001-01-31 07:30:29 +0000 | [diff] [blame] | 2846 | return NULL; |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2847 | } |
| 2848 | else { |
| 2849 | if (!_PyPopenCreateProcess(cmdstring, |
Fredrik Lundh | 9ac81f6 | 2000-07-09 23:35:24 +0000 | [diff] [blame] | 2850 | hChildStdinRd, |
| 2851 | hChildStdoutWr, |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 2852 | hChildStderrWr, |
| 2853 | &hProcess)) |
Mark Hammond | 0850137 | 2001-01-31 07:30:29 +0000 | [diff] [blame] | 2854 | return NULL; |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2855 | } |
| 2856 | |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 2857 | /* |
| 2858 | * Insert the files we've created into the process dictionary |
| 2859 | * all referencing the list with the process handle and the |
| 2860 | * initial number of files (see description below in _PyPclose). |
| 2861 | * Since if _PyPclose later tried to wait on a process when all |
| 2862 | * handles weren't closed, it could create a deadlock with the |
| 2863 | * child, we spend some energy here to try to ensure that we |
| 2864 | * either insert all file handles into the dictionary or none |
| 2865 | * at all. It's a little clumsy with the various popen modes |
| 2866 | * and variable number of files involved. |
| 2867 | */ |
| 2868 | if (!_PyPopenProcs) { |
| 2869 | _PyPopenProcs = PyDict_New(); |
| 2870 | } |
| 2871 | |
| 2872 | if (_PyPopenProcs) { |
| 2873 | PyObject *procObj, *hProcessObj, *intObj, *fileObj[3]; |
| 2874 | int ins_rc[3]; |
| 2875 | |
| 2876 | fileObj[0] = fileObj[1] = fileObj[2] = NULL; |
| 2877 | ins_rc[0] = ins_rc[1] = ins_rc[2] = 0; |
| 2878 | |
| 2879 | procObj = PyList_New(2); |
| 2880 | hProcessObj = PyLong_FromVoidPtr(hProcess); |
| 2881 | intObj = PyInt_FromLong(file_count); |
| 2882 | |
| 2883 | if (procObj && hProcessObj && intObj) { |
| 2884 | PyList_SetItem(procObj,0,hProcessObj); |
| 2885 | PyList_SetItem(procObj,1,intObj); |
| 2886 | |
| 2887 | fileObj[0] = PyLong_FromVoidPtr(f1); |
| 2888 | if (fileObj[0]) { |
| 2889 | ins_rc[0] = PyDict_SetItem(_PyPopenProcs, |
| 2890 | fileObj[0], |
| 2891 | procObj); |
| 2892 | } |
| 2893 | if (file_count >= 2) { |
| 2894 | fileObj[1] = PyLong_FromVoidPtr(f2); |
| 2895 | if (fileObj[1]) { |
| 2896 | ins_rc[1] = PyDict_SetItem(_PyPopenProcs, |
| 2897 | fileObj[1], |
| 2898 | procObj); |
| 2899 | } |
| 2900 | } |
| 2901 | if (file_count >= 3) { |
| 2902 | fileObj[2] = PyLong_FromVoidPtr(f3); |
| 2903 | if (fileObj[2]) { |
| 2904 | ins_rc[2] = PyDict_SetItem(_PyPopenProcs, |
| 2905 | fileObj[2], |
| 2906 | procObj); |
| 2907 | } |
| 2908 | } |
| 2909 | |
| 2910 | if (ins_rc[0] < 0 || !fileObj[0] || |
| 2911 | ins_rc[1] < 0 || (file_count > 1 && !fileObj[1]) || |
| 2912 | ins_rc[2] < 0 || (file_count > 2 && !fileObj[2])) { |
| 2913 | /* Something failed - remove any dictionary |
| 2914 | * entries that did make it. |
| 2915 | */ |
| 2916 | if (!ins_rc[0] && fileObj[0]) { |
| 2917 | PyDict_DelItem(_PyPopenProcs, |
| 2918 | fileObj[0]); |
| 2919 | } |
| 2920 | if (!ins_rc[1] && fileObj[1]) { |
| 2921 | PyDict_DelItem(_PyPopenProcs, |
| 2922 | fileObj[1]); |
| 2923 | } |
| 2924 | if (!ins_rc[2] && fileObj[2]) { |
| 2925 | PyDict_DelItem(_PyPopenProcs, |
| 2926 | fileObj[2]); |
| 2927 | } |
| 2928 | } |
| 2929 | } |
| 2930 | |
| 2931 | /* |
| 2932 | * Clean up our localized references for the dictionary keys |
| 2933 | * and value since PyDict_SetItem will Py_INCREF any copies |
| 2934 | * that got placed in the dictionary. |
| 2935 | */ |
| 2936 | Py_XDECREF(procObj); |
| 2937 | Py_XDECREF(fileObj[0]); |
| 2938 | Py_XDECREF(fileObj[1]); |
| 2939 | Py_XDECREF(fileObj[2]); |
| 2940 | } |
| 2941 | |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 2942 | /* Child is launched. Close the parents copy of those pipe |
| 2943 | * handles that only the child should have open. You need to |
| 2944 | * make sure that no handles to the write end of the output pipe |
| 2945 | * are maintained in this process or else the pipe will not close |
| 2946 | * when the child process exits and the ReadFile will hang. */ |
| 2947 | |
| 2948 | if (!CloseHandle(hChildStdinRd)) |
| 2949 | return win32_error("CloseHandle", NULL); |
| 2950 | |
| 2951 | if (!CloseHandle(hChildStdoutWr)) |
| 2952 | return win32_error("CloseHandle", NULL); |
| 2953 | |
| 2954 | if ((n != 4) && (!CloseHandle(hChildStderrWr))) |
| 2955 | return win32_error("CloseHandle", NULL); |
| 2956 | |
| 2957 | return f; |
| 2958 | } |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 2959 | |
| 2960 | /* |
| 2961 | * Wrapper for fclose() to use for popen* files, so we can retrieve the |
| 2962 | * 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] | 2963 | * |
| 2964 | * This function uses the _PyPopenProcs dictionary in order to map the |
| 2965 | * input file pointer to information about the process that was |
| 2966 | * originally created by the popen* call that created the file pointer. |
| 2967 | * The dictionary uses the file pointer as a key (with one entry |
| 2968 | * inserted for each file returned by the original popen* call) and a |
| 2969 | * single list object as the value for all files from a single call. |
| 2970 | * The list object contains the Win32 process handle at [0], and a file |
| 2971 | * count at [1], which is initialized to the total number of file |
| 2972 | * handles using that list. |
| 2973 | * |
| 2974 | * This function closes whichever handle it is passed, and decrements |
| 2975 | * the file count in the dictionary for the process handle pointed to |
| 2976 | * by this file. On the last close (when the file count reaches zero), |
| 2977 | * this function will wait for the child process and then return its |
| 2978 | * exit code as the result of the close() operation. This permits the |
| 2979 | * files to be closed in any order - it is always the close() of the |
| 2980 | * final handle that will return the exit code. |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 2981 | */ |
Tim Peters | 736aa32 | 2000-09-01 06:51:24 +0000 | [diff] [blame] | 2982 | |
| 2983 | /* RED_FLAG 31-Aug-2000 Tim |
| 2984 | * This is always called (today!) between a pair of |
| 2985 | * Py_BEGIN_ALLOW_THREADS/ Py_END_ALLOW_THREADS |
| 2986 | * macros. So the thread running this has no valid thread state, as |
| 2987 | * far as Python is concerned. However, this calls some Python API |
| 2988 | * functions that cannot be called safely without a valid thread |
| 2989 | * state, in particular PyDict_GetItem. |
| 2990 | * As a temporary hack (although it may last for years ...), we |
| 2991 | * *rely* on not having a valid thread state in this function, in |
| 2992 | * order to create our own "from scratch". |
| 2993 | * This will deadlock if _PyPclose is ever called by a thread |
| 2994 | * holding the global lock. |
| 2995 | */ |
| 2996 | |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 2997 | static int _PyPclose(FILE *file) |
| 2998 | { |
Fredrik Lundh | 2031893 | 2000-07-26 17:29:12 +0000 | [diff] [blame] | 2999 | int result; |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 3000 | DWORD exit_code; |
| 3001 | HANDLE hProcess; |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 3002 | PyObject *procObj, *hProcessObj, *intObj, *fileObj; |
| 3003 | long file_count; |
Tim Peters | 736aa32 | 2000-09-01 06:51:24 +0000 | [diff] [blame] | 3004 | #ifdef WITH_THREAD |
| 3005 | PyInterpreterState* pInterpreterState; |
| 3006 | PyThreadState* pThreadState; |
| 3007 | #endif |
| 3008 | |
Fredrik Lundh | 2031893 | 2000-07-26 17:29:12 +0000 | [diff] [blame] | 3009 | /* Close the file handle first, to ensure it can't block the |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 3010 | * child from exiting if it's the last handle. |
Fredrik Lundh | 2031893 | 2000-07-26 17:29:12 +0000 | [diff] [blame] | 3011 | */ |
| 3012 | result = fclose(file); |
| 3013 | |
Tim Peters | 736aa32 | 2000-09-01 06:51:24 +0000 | [diff] [blame] | 3014 | #ifdef WITH_THREAD |
| 3015 | /* Bootstrap a valid thread state into existence. */ |
| 3016 | pInterpreterState = PyInterpreterState_New(); |
| 3017 | if (!pInterpreterState) { |
| 3018 | /* Well, we're hosed now! We don't have a thread |
| 3019 | * state, so can't call a nice error routine, or raise |
| 3020 | * an exception. Just die. |
| 3021 | */ |
| 3022 | Py_FatalError("unable to allocate interpreter state " |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 3023 | "when closing popen object"); |
Tim Peters | 736aa32 | 2000-09-01 06:51:24 +0000 | [diff] [blame] | 3024 | return -1; /* unreachable */ |
| 3025 | } |
| 3026 | pThreadState = PyThreadState_New(pInterpreterState); |
| 3027 | if (!pThreadState) { |
| 3028 | Py_FatalError("unable to allocate thread state " |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 3029 | "when closing popen object"); |
Tim Peters | 736aa32 | 2000-09-01 06:51:24 +0000 | [diff] [blame] | 3030 | return -1; /* unreachable */ |
| 3031 | } |
| 3032 | /* Grab the global lock. Note that this will deadlock if the |
| 3033 | * current thread already has the lock! (see RED_FLAG comments |
| 3034 | * before this function) |
| 3035 | */ |
| 3036 | PyEval_RestoreThread(pThreadState); |
| 3037 | #endif |
| 3038 | |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 3039 | if (_PyPopenProcs) { |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 3040 | if ((fileObj = PyLong_FromVoidPtr(file)) != NULL && |
| 3041 | (procObj = PyDict_GetItem(_PyPopenProcs, |
| 3042 | fileObj)) != NULL && |
| 3043 | (hProcessObj = PyList_GetItem(procObj,0)) != NULL && |
| 3044 | (intObj = PyList_GetItem(procObj,1)) != NULL) { |
| 3045 | |
| 3046 | hProcess = PyLong_AsVoidPtr(hProcessObj); |
| 3047 | file_count = PyInt_AsLong(intObj); |
| 3048 | |
| 3049 | if (file_count > 1) { |
| 3050 | /* Still other files referencing process */ |
| 3051 | file_count--; |
| 3052 | PyList_SetItem(procObj,1, |
| 3053 | PyInt_FromLong(file_count)); |
| 3054 | } else { |
| 3055 | /* Last file for this process */ |
Fredrik Lundh | 2031893 | 2000-07-26 17:29:12 +0000 | [diff] [blame] | 3056 | if (result != EOF && |
| 3057 | WaitForSingleObject(hProcess, INFINITE) != WAIT_FAILED && |
| 3058 | GetExitCodeProcess(hProcess, &exit_code)) { |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 3059 | /* Possible truncation here in 16-bit environments, but |
| 3060 | * real exit codes are just the lower byte in any event. |
| 3061 | */ |
| 3062 | result = exit_code; |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 3063 | } else { |
Fredrik Lundh | 2031893 | 2000-07-26 17:29:12 +0000 | [diff] [blame] | 3064 | /* Indicate failure - this will cause the file object |
| 3065 | * to raise an I/O error and translate the last Win32 |
| 3066 | * error code from errno. We do have a problem with |
| 3067 | * last errors that overlap the normal errno table, |
| 3068 | * but that's a consistent problem with the file object. |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 3069 | */ |
Fredrik Lundh | 2031893 | 2000-07-26 17:29:12 +0000 | [diff] [blame] | 3070 | if (result != EOF) { |
| 3071 | /* If the error wasn't from the fclose(), then |
| 3072 | * set errno for the file object error handling. |
| 3073 | */ |
| 3074 | errno = GetLastError(); |
| 3075 | } |
| 3076 | result = -1; |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 3077 | } |
| 3078 | |
| 3079 | /* Free up the native handle at this point */ |
| 3080 | CloseHandle(hProcess); |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 3081 | } |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 3082 | |
Mark Hammond | b37a373 | 2000-08-14 04:47:33 +0000 | [diff] [blame] | 3083 | /* Remove this file pointer from dictionary */ |
| 3084 | PyDict_DelItem(_PyPopenProcs, fileObj); |
| 3085 | |
| 3086 | if (PyDict_Size(_PyPopenProcs) == 0) { |
| 3087 | Py_DECREF(_PyPopenProcs); |
| 3088 | _PyPopenProcs = NULL; |
| 3089 | } |
| 3090 | |
| 3091 | } /* if object retrieval ok */ |
| 3092 | |
| 3093 | Py_XDECREF(fileObj); |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 3094 | } /* if _PyPopenProcs */ |
| 3095 | |
Tim Peters | 736aa32 | 2000-09-01 06:51:24 +0000 | [diff] [blame] | 3096 | #ifdef WITH_THREAD |
| 3097 | /* Tear down the thread & interpreter states. |
| 3098 | * Note that interpreter state clear & delete functions automatically |
Tim Peters | 9acdd3a | 2000-09-01 19:26:36 +0000 | [diff] [blame] | 3099 | * call the thread clear & delete functions, and indeed insist on |
| 3100 | * doing that themselves. The lock must be held during the clear, but |
| 3101 | * need not be held during the delete. |
Tim Peters | 736aa32 | 2000-09-01 06:51:24 +0000 | [diff] [blame] | 3102 | */ |
| 3103 | PyInterpreterState_Clear(pInterpreterState); |
| 3104 | PyEval_ReleaseThread(pThreadState); |
| 3105 | PyInterpreterState_Delete(pInterpreterState); |
| 3106 | #endif |
| 3107 | |
Fredrik Lundh | 56055a4 | 2000-07-23 19:47:12 +0000 | [diff] [blame] | 3108 | return result; |
| 3109 | } |
Tim Peters | 9acdd3a | 2000-09-01 19:26:36 +0000 | [diff] [blame] | 3110 | |
| 3111 | #else /* which OS? */ |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3112 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 3113 | posix_popen(PyObject *self, PyObject *args) |
Guido van Rossum | 3b06619 | 1991-06-04 19:40:25 +0000 | [diff] [blame] | 3114 | { |
Guido van Rossum | a6a1e53 | 1995-01-10 15:36:38 +0000 | [diff] [blame] | 3115 | char *name; |
| 3116 | char *mode = "r"; |
| 3117 | int bufsize = -1; |
Guido van Rossum | 3b06619 | 1991-06-04 19:40:25 +0000 | [diff] [blame] | 3118 | FILE *fp; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3119 | PyObject *f; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 3120 | if (!PyArg_ParseTuple(args, "s|si:popen", &name, &mode, &bufsize)) |
Guido van Rossum | 3b06619 | 1991-06-04 19:40:25 +0000 | [diff] [blame] | 3121 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3122 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | ef0a00e | 1992-01-27 16:51:30 +0000 | [diff] [blame] | 3123 | fp = popen(name, mode); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3124 | Py_END_ALLOW_THREADS |
Guido van Rossum | 3b06619 | 1991-06-04 19:40:25 +0000 | [diff] [blame] | 3125 | if (fp == NULL) |
| 3126 | return posix_error(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3127 | f = PyFile_FromFile(fp, name, mode, pclose); |
Guido van Rossum | a6a1e53 | 1995-01-10 15:36:38 +0000 | [diff] [blame] | 3128 | if (f != NULL) |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3129 | PyFile_SetBufSize(f, bufsize); |
Guido van Rossum | a6a1e53 | 1995-01-10 15:36:38 +0000 | [diff] [blame] | 3130 | return f; |
Guido van Rossum | 3b06619 | 1991-06-04 19:40:25 +0000 | [diff] [blame] | 3131 | } |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 3132 | #endif |
| 3133 | |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 3134 | #endif /* HAVE_POPEN */ |
Guido van Rossum | 3b06619 | 1991-06-04 19:40:25 +0000 | [diff] [blame] | 3135 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3136 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3137 | #ifdef HAVE_SETUID |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3138 | static char posix_setuid__doc__[] = |
| 3139 | "setuid(uid) -> None\n\ |
| 3140 | Set the current process's user id."; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3141 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 3142 | posix_setuid(PyObject *self, PyObject *args) |
Guido van Rossum | a3d78fb | 1993-11-10 09:23:53 +0000 | [diff] [blame] | 3143 | { |
| 3144 | int uid; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 3145 | if (!PyArg_ParseTuple(args, "i:setuid", &uid)) |
Guido van Rossum | a3d78fb | 1993-11-10 09:23:53 +0000 | [diff] [blame] | 3146 | return NULL; |
| 3147 | if (setuid(uid) < 0) |
| 3148 | return posix_error(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3149 | Py_INCREF(Py_None); |
| 3150 | return Py_None; |
Guido van Rossum | a3d78fb | 1993-11-10 09:23:53 +0000 | [diff] [blame] | 3151 | } |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 3152 | #endif /* HAVE_SETUID */ |
Guido van Rossum | a3d78fb | 1993-11-10 09:23:53 +0000 | [diff] [blame] | 3153 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3154 | |
Andrew M. Kuchling | 8d2f2b2 | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 3155 | #ifdef HAVE_SETEUID |
| 3156 | static char posix_seteuid__doc__[] = |
| 3157 | "seteuid(uid) -> None\n\ |
| 3158 | Set the current process's effective user id."; |
| 3159 | static PyObject * |
| 3160 | posix_seteuid (PyObject *self, PyObject *args) |
| 3161 | { |
| 3162 | int euid; |
| 3163 | if (!PyArg_ParseTuple(args, "i", &euid)) { |
| 3164 | return NULL; |
| 3165 | } else if (seteuid(euid) < 0) { |
| 3166 | return posix_error(); |
| 3167 | } else { |
| 3168 | Py_INCREF(Py_None); |
| 3169 | return Py_None; |
| 3170 | } |
| 3171 | } |
| 3172 | #endif /* HAVE_SETEUID */ |
| 3173 | |
| 3174 | #ifdef HAVE_SETEGID |
| 3175 | static char posix_setegid__doc__[] = |
| 3176 | "setegid(gid) -> None\n\ |
| 3177 | Set the current process's effective group id."; |
| 3178 | static PyObject * |
| 3179 | posix_setegid (PyObject *self, PyObject *args) |
| 3180 | { |
| 3181 | int egid; |
| 3182 | if (!PyArg_ParseTuple(args, "i", &egid)) { |
| 3183 | return NULL; |
| 3184 | } else if (setegid(egid) < 0) { |
| 3185 | return posix_error(); |
| 3186 | } else { |
| 3187 | Py_INCREF(Py_None); |
| 3188 | return Py_None; |
| 3189 | } |
| 3190 | } |
| 3191 | #endif /* HAVE_SETEGID */ |
| 3192 | |
| 3193 | #ifdef HAVE_SETREUID |
| 3194 | static char posix_setreuid__doc__[] = |
| 3195 | "seteuid(ruid, euid) -> None\n\ |
| 3196 | Set the current process's real and effective user ids."; |
| 3197 | static PyObject * |
| 3198 | posix_setreuid (PyObject *self, PyObject *args) |
| 3199 | { |
| 3200 | int ruid, euid; |
| 3201 | if (!PyArg_ParseTuple(args, "ii", &ruid, &euid)) { |
| 3202 | return NULL; |
| 3203 | } else if (setreuid(ruid, euid) < 0) { |
| 3204 | return posix_error(); |
| 3205 | } else { |
| 3206 | Py_INCREF(Py_None); |
| 3207 | return Py_None; |
| 3208 | } |
| 3209 | } |
| 3210 | #endif /* HAVE_SETREUID */ |
| 3211 | |
| 3212 | #ifdef HAVE_SETREGID |
| 3213 | static char posix_setregid__doc__[] = |
| 3214 | "setegid(rgid, egid) -> None\n\ |
| 3215 | Set the current process's real and effective group ids."; |
| 3216 | static PyObject * |
| 3217 | posix_setregid (PyObject *self, PyObject *args) |
| 3218 | { |
| 3219 | int rgid, egid; |
| 3220 | if (!PyArg_ParseTuple(args, "ii", &rgid, &egid)) { |
| 3221 | return NULL; |
| 3222 | } else if (setregid(rgid, egid) < 0) { |
| 3223 | return posix_error(); |
| 3224 | } else { |
| 3225 | Py_INCREF(Py_None); |
| 3226 | return Py_None; |
| 3227 | } |
| 3228 | } |
| 3229 | #endif /* HAVE_SETREGID */ |
| 3230 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3231 | #ifdef HAVE_SETGID |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3232 | static char posix_setgid__doc__[] = |
| 3233 | "setgid(gid) -> None\n\ |
| 3234 | Set the current process's group id."; |
| 3235 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3236 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 3237 | posix_setgid(PyObject *self, PyObject *args) |
Guido van Rossum | a3d78fb | 1993-11-10 09:23:53 +0000 | [diff] [blame] | 3238 | { |
| 3239 | int gid; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 3240 | if (!PyArg_ParseTuple(args, "i:setgid", &gid)) |
Guido van Rossum | a3d78fb | 1993-11-10 09:23:53 +0000 | [diff] [blame] | 3241 | return NULL; |
| 3242 | if (setgid(gid) < 0) |
| 3243 | return posix_error(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3244 | Py_INCREF(Py_None); |
| 3245 | return Py_None; |
Guido van Rossum | a3d78fb | 1993-11-10 09:23:53 +0000 | [diff] [blame] | 3246 | } |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 3247 | #endif /* HAVE_SETGID */ |
Guido van Rossum | a3d78fb | 1993-11-10 09:23:53 +0000 | [diff] [blame] | 3248 | |
Martin v. Löwis | 61c5edf | 2001-10-18 04:06:00 +0000 | [diff] [blame] | 3249 | #ifdef HAVE_SETGROUPS |
| 3250 | static char posix_setgroups__doc__[] = |
| 3251 | "setgroups(list) -> None\n\ |
| 3252 | Set the groups of the current process to list."; |
| 3253 | |
| 3254 | static PyObject * |
| 3255 | posix_setgroups(PyObject *self, PyObject *args) |
| 3256 | { |
| 3257 | PyObject *groups; |
| 3258 | int i, len; |
| 3259 | gid_t grouplist[MAX_GROUPS]; |
| 3260 | |
| 3261 | if (!PyArg_ParseTuple(args, "O:setgid", &groups)) |
| 3262 | return NULL; |
| 3263 | if (!PySequence_Check(groups)) { |
| 3264 | PyErr_SetString(PyExc_TypeError, "setgroups argument must be a sequence"); |
| 3265 | return NULL; |
| 3266 | } |
| 3267 | len = PySequence_Size(groups); |
| 3268 | if (len > MAX_GROUPS) { |
| 3269 | PyErr_SetString(PyExc_ValueError, "too many groups"); |
| 3270 | return NULL; |
| 3271 | } |
| 3272 | for(i = 0; i < len; i++) { |
| 3273 | PyObject *elem; |
| 3274 | elem = PySequence_GetItem(groups, i); |
| 3275 | if (!elem) |
| 3276 | return NULL; |
| 3277 | if (!PyInt_Check(elem)) { |
| 3278 | PyErr_SetString(PyExc_TypeError, |
| 3279 | "groups must be integers"); |
| 3280 | Py_DECREF(elem); |
| 3281 | return NULL; |
| 3282 | } |
| 3283 | /* XXX: check that value fits into gid_t. */ |
| 3284 | grouplist[i] = PyInt_AsLong(elem); |
| 3285 | Py_DECREF(elem); |
| 3286 | } |
| 3287 | |
| 3288 | if (setgroups(len, grouplist) < 0) |
| 3289 | return posix_error(); |
| 3290 | Py_INCREF(Py_None); |
| 3291 | return Py_None; |
| 3292 | } |
| 3293 | #endif /* HAVE_SETGROUPS */ |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3294 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3295 | #ifdef HAVE_WAITPID |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3296 | static char posix_waitpid__doc__[] = |
| 3297 | "waitpid(pid, options) -> (pid, status)\n\ |
Guido van Rossum | f377d57 | 2000-12-12 00:37:58 +0000 | [diff] [blame] | 3298 | Wait for completion of a given child process."; |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3299 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3300 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 3301 | posix_waitpid(PyObject *self, PyObject *args) |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 3302 | { |
Guido van Rossum | 54ecc3d | 1999-01-27 17:53:11 +0000 | [diff] [blame] | 3303 | int pid, options; |
| 3304 | #ifdef UNION_WAIT |
| 3305 | union wait status; |
| 3306 | #define status_i (status.w_status) |
| 3307 | #else |
| 3308 | int status; |
| 3309 | #define status_i status |
| 3310 | #endif |
| 3311 | status_i = 0; |
| 3312 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 3313 | if (!PyArg_ParseTuple(args, "ii:waitpid", &pid, &options)) |
Guido van Rossum | 21803b8 | 1992-08-09 12:55:27 +0000 | [diff] [blame] | 3314 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3315 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | e6a3aa6 | 1999-02-01 16:15:30 +0000 | [diff] [blame] | 3316 | #ifdef NeXT |
Guido van Rossum | 54ecc3d | 1999-01-27 17:53:11 +0000 | [diff] [blame] | 3317 | pid = wait4(pid, &status, options, NULL); |
Guido van Rossum | e6a3aa6 | 1999-02-01 16:15:30 +0000 | [diff] [blame] | 3318 | #else |
| 3319 | pid = waitpid(pid, &status, options); |
| 3320 | #endif |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3321 | Py_END_ALLOW_THREADS |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 3322 | if (pid == -1) |
| 3323 | return posix_error(); |
Guido van Rossum | 21803b8 | 1992-08-09 12:55:27 +0000 | [diff] [blame] | 3324 | else |
Guido van Rossum | 54ecc3d | 1999-01-27 17:53:11 +0000 | [diff] [blame] | 3325 | return Py_BuildValue("ii", pid, status_i); |
Guido van Rossum | 21803b8 | 1992-08-09 12:55:27 +0000 | [diff] [blame] | 3326 | } |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3327 | #endif /* HAVE_WAITPID */ |
Guido van Rossum | 21803b8 | 1992-08-09 12:55:27 +0000 | [diff] [blame] | 3328 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3329 | |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 3330 | #ifdef HAVE_WAIT |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3331 | static char posix_wait__doc__[] = |
| 3332 | "wait() -> (pid, status)\n\ |
| 3333 | Wait for completion of a child process."; |
| 3334 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3335 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 3336 | posix_wait(PyObject *self, PyObject *args) |
Guido van Rossum | 21803b8 | 1992-08-09 12:55:27 +0000 | [diff] [blame] | 3337 | { |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 3338 | int pid; |
Guido van Rossum | 54ecc3d | 1999-01-27 17:53:11 +0000 | [diff] [blame] | 3339 | #ifdef UNION_WAIT |
| 3340 | union wait status; |
| 3341 | #define status_i (status.w_status) |
Guido van Rossum | b9f866c | 1997-05-22 15:12:39 +0000 | [diff] [blame] | 3342 | #else |
Guido van Rossum | 54ecc3d | 1999-01-27 17:53:11 +0000 | [diff] [blame] | 3343 | int status; |
| 3344 | #define status_i status |
Guido van Rossum | b9f866c | 1997-05-22 15:12:39 +0000 | [diff] [blame] | 3345 | #endif |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 3346 | if (!PyArg_ParseTuple(args, ":wait")) |
| 3347 | return NULL; |
Guido van Rossum | 54ecc3d | 1999-01-27 17:53:11 +0000 | [diff] [blame] | 3348 | status_i = 0; |
| 3349 | Py_BEGIN_ALLOW_THREADS |
| 3350 | pid = wait(&status); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3351 | Py_END_ALLOW_THREADS |
Guido van Rossum | 21803b8 | 1992-08-09 12:55:27 +0000 | [diff] [blame] | 3352 | if (pid == -1) |
| 3353 | return posix_error(); |
| 3354 | else |
Guido van Rossum | 54ecc3d | 1999-01-27 17:53:11 +0000 | [diff] [blame] | 3355 | return Py_BuildValue("ii", pid, status_i); |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 3356 | #undef status_i |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 3357 | } |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 3358 | #endif |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 3359 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3360 | |
| 3361 | static char posix_lstat__doc__[] = |
| 3362 | "lstat(path) -> (mode,ino,dev,nlink,uid,gid,size,atime,mtime,ctime)\n\ |
| 3363 | Like stat(path), but do not follow symbolic links."; |
| 3364 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3365 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 3366 | posix_lstat(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 3367 | { |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3368 | #ifdef HAVE_LSTAT |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 3369 | return posix_do_stat(self, args, "et:lstat", lstat); |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3370 | #else /* !HAVE_LSTAT */ |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 3371 | return posix_do_stat(self, args, "et:lstat", STAT); |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3372 | #endif /* !HAVE_LSTAT */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 3373 | } |
| 3374 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3375 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3376 | #ifdef HAVE_READLINK |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3377 | static char posix_readlink__doc__[] = |
| 3378 | "readlink(path) -> path\n\ |
| 3379 | Return a string representing the path to which the symbolic link points."; |
| 3380 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3381 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 3382 | posix_readlink(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 3383 | { |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3384 | char buf[MAXPATHLEN]; |
Guido van Rossum | ef0a00e | 1992-01-27 16:51:30 +0000 | [diff] [blame] | 3385 | char *path; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 3386 | int n; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 3387 | if (!PyArg_ParseTuple(args, "s:readlink", &path)) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 3388 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3389 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | 50e61dc | 1992-03-27 17:22:31 +0000 | [diff] [blame] | 3390 | n = readlink(path, buf, (int) sizeof buf); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3391 | Py_END_ALLOW_THREADS |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 3392 | if (n < 0) |
Barry Warsaw | d58d764 | 1998-07-23 16:14:40 +0000 | [diff] [blame] | 3393 | return posix_error_with_filename(path); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3394 | return PyString_FromStringAndSize(buf, n); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 3395 | } |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3396 | #endif /* HAVE_READLINK */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 3397 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3398 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3399 | #ifdef HAVE_SYMLINK |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3400 | static char posix_symlink__doc__[] = |
| 3401 | "symlink(src, dst) -> None\n\ |
| 3402 | Create a symbolic link."; |
| 3403 | |
Guido van Rossum | bfaf3d6 | 1997-12-29 20:02:27 +0000 | [diff] [blame] | 3404 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 3405 | posix_symlink(PyObject *self, PyObject *args) |
Guido van Rossum | bfaf3d6 | 1997-12-29 20:02:27 +0000 | [diff] [blame] | 3406 | { |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 3407 | return posix_2str(args, "etet:symlink", symlink); |
Guido van Rossum | bfaf3d6 | 1997-12-29 20:02:27 +0000 | [diff] [blame] | 3408 | } |
| 3409 | #endif /* HAVE_SYMLINK */ |
| 3410 | |
| 3411 | |
| 3412 | #ifdef HAVE_TIMES |
| 3413 | #ifndef HZ |
| 3414 | #define HZ 60 /* Universal constant :-) */ |
| 3415 | #endif /* HZ */ |
| 3416 | |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 3417 | #if defined(PYCC_VACPP) && defined(PYOS_OS2) |
| 3418 | static long |
Thomas Wouters | f3f33dc | 2000-07-21 06:00:07 +0000 | [diff] [blame] | 3419 | system_uptime(void) |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 3420 | { |
| 3421 | ULONG value = 0; |
| 3422 | |
| 3423 | Py_BEGIN_ALLOW_THREADS |
| 3424 | DosQuerySysInfo(QSV_MS_COUNT, QSV_MS_COUNT, &value, sizeof(value)); |
| 3425 | Py_END_ALLOW_THREADS |
| 3426 | |
| 3427 | return value; |
| 3428 | } |
| 3429 | |
| 3430 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 3431 | posix_times(PyObject *self, PyObject *args) |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 3432 | { |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 3433 | if (!PyArg_ParseTuple(args, ":times")) |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 3434 | return NULL; |
| 3435 | |
| 3436 | /* Currently Only Uptime is Provided -- Others Later */ |
| 3437 | return Py_BuildValue("ddddd", |
| 3438 | (double)0 /* t.tms_utime / HZ */, |
| 3439 | (double)0 /* t.tms_stime / HZ */, |
| 3440 | (double)0 /* t.tms_cutime / HZ */, |
| 3441 | (double)0 /* t.tms_cstime / HZ */, |
| 3442 | (double)system_uptime() / 1000); |
| 3443 | } |
Guido van Rossum | bfaf3d6 | 1997-12-29 20:02:27 +0000 | [diff] [blame] | 3444 | #else /* not OS2 */ |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3445 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 3446 | posix_times(PyObject *self, PyObject *args) |
Guido van Rossum | 22db57e | 1992-04-05 14:25:30 +0000 | [diff] [blame] | 3447 | { |
| 3448 | struct tms t; |
| 3449 | clock_t c; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 3450 | if (!PyArg_ParseTuple(args, ":times")) |
Guido van Rossum | 22db57e | 1992-04-05 14:25:30 +0000 | [diff] [blame] | 3451 | return NULL; |
| 3452 | errno = 0; |
| 3453 | c = times(&t); |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3454 | if (c == (clock_t) -1) |
| 3455 | return posix_error(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3456 | return Py_BuildValue("ddddd", |
Barry Warsaw | 43d68b8 | 1996-12-19 22:10:44 +0000 | [diff] [blame] | 3457 | (double)t.tms_utime / HZ, |
| 3458 | (double)t.tms_stime / HZ, |
| 3459 | (double)t.tms_cutime / HZ, |
| 3460 | (double)t.tms_cstime / HZ, |
| 3461 | (double)c / HZ); |
Guido van Rossum | 22db57e | 1992-04-05 14:25:30 +0000 | [diff] [blame] | 3462 | } |
Guido van Rossum | bfaf3d6 | 1997-12-29 20:02:27 +0000 | [diff] [blame] | 3463 | #endif /* not OS2 */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3464 | #endif /* HAVE_TIMES */ |
Guido van Rossum | bfaf3d6 | 1997-12-29 20:02:27 +0000 | [diff] [blame] | 3465 | |
| 3466 | |
Guido van Rossum | 87755a2 | 1996-09-07 00:59:43 +0000 | [diff] [blame] | 3467 | #ifdef MS_WIN32 |
Guido van Rossum | 14ed0b2 | 1994-09-29 09:50:09 +0000 | [diff] [blame] | 3468 | #define HAVE_TIMES /* so the method table will pick it up */ |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3469 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 3470 | posix_times(PyObject *self, PyObject *args) |
Guido van Rossum | 14ed0b2 | 1994-09-29 09:50:09 +0000 | [diff] [blame] | 3471 | { |
| 3472 | FILETIME create, exit, kernel, user; |
| 3473 | HANDLE hProc; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 3474 | if (!PyArg_ParseTuple(args, ":times")) |
Guido van Rossum | 14ed0b2 | 1994-09-29 09:50:09 +0000 | [diff] [blame] | 3475 | return NULL; |
| 3476 | hProc = GetCurrentProcess(); |
Guido van Rossum | b8c3cbd | 1999-02-16 14:37:28 +0000 | [diff] [blame] | 3477 | GetProcessTimes(hProc, &create, &exit, &kernel, &user); |
| 3478 | /* The fields of a FILETIME structure are the hi and lo part |
| 3479 | of a 64-bit value expressed in 100 nanosecond units. |
| 3480 | 1e7 is one second in such units; 1e-7 the inverse. |
| 3481 | 429.4967296 is 2**32 / 1e7 or 2**32 * 1e-7. |
| 3482 | */ |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3483 | return Py_BuildValue( |
| 3484 | "ddddd", |
Guido van Rossum | b8c3cbd | 1999-02-16 14:37:28 +0000 | [diff] [blame] | 3485 | (double)(kernel.dwHighDateTime*429.4967296 + |
| 3486 | kernel.dwLowDateTime*1e-7), |
| 3487 | (double)(user.dwHighDateTime*429.4967296 + |
| 3488 | user.dwLowDateTime*1e-7), |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3489 | (double)0, |
| 3490 | (double)0, |
| 3491 | (double)0); |
Guido van Rossum | 14ed0b2 | 1994-09-29 09:50:09 +0000 | [diff] [blame] | 3492 | } |
Guido van Rossum | 8d665e6 | 1996-06-26 18:22:49 +0000 | [diff] [blame] | 3493 | #endif /* MS_WIN32 */ |
Guido van Rossum | bfaf3d6 | 1997-12-29 20:02:27 +0000 | [diff] [blame] | 3494 | |
| 3495 | #ifdef HAVE_TIMES |
Roger E. Masse | 0318fd6 | 1997-06-05 22:07:58 +0000 | [diff] [blame] | 3496 | static char posix_times__doc__[] = |
| 3497 | "times() -> (utime, stime, cutime, cstime, elapsed_time)\n\ |
| 3498 | Return a tuple of floating point numbers indicating process times."; |
Guido van Rossum | bfaf3d6 | 1997-12-29 20:02:27 +0000 | [diff] [blame] | 3499 | #endif |
Guido van Rossum | 22db57e | 1992-04-05 14:25:30 +0000 | [diff] [blame] | 3500 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3501 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3502 | #ifdef HAVE_SETSID |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3503 | static char posix_setsid__doc__[] = |
| 3504 | "setsid() -> None\n\ |
| 3505 | Call the system call setsid()."; |
| 3506 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3507 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 3508 | posix_setsid(PyObject *self, PyObject *args) |
Guido van Rossum | c2670a0 | 1992-09-13 20:07:29 +0000 | [diff] [blame] | 3509 | { |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 3510 | if (!PyArg_ParseTuple(args, ":setsid")) |
Guido van Rossum | c2670a0 | 1992-09-13 20:07:29 +0000 | [diff] [blame] | 3511 | return NULL; |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3512 | if (setsid() < 0) |
| 3513 | return posix_error(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3514 | Py_INCREF(Py_None); |
| 3515 | return Py_None; |
Guido van Rossum | c2670a0 | 1992-09-13 20:07:29 +0000 | [diff] [blame] | 3516 | } |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3517 | #endif /* HAVE_SETSID */ |
Guido van Rossum | c2670a0 | 1992-09-13 20:07:29 +0000 | [diff] [blame] | 3518 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3519 | #ifdef HAVE_SETPGID |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3520 | static char posix_setpgid__doc__[] = |
| 3521 | "setpgid(pid, pgrp) -> None\n\ |
| 3522 | Call the system call setpgid()."; |
| 3523 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3524 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 3525 | posix_setpgid(PyObject *self, PyObject *args) |
Guido van Rossum | c2670a0 | 1992-09-13 20:07:29 +0000 | [diff] [blame] | 3526 | { |
| 3527 | int pid, pgrp; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 3528 | if (!PyArg_ParseTuple(args, "ii:setpgid", &pid, &pgrp)) |
Guido van Rossum | c2670a0 | 1992-09-13 20:07:29 +0000 | [diff] [blame] | 3529 | return NULL; |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3530 | if (setpgid(pid, pgrp) < 0) |
| 3531 | return posix_error(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3532 | Py_INCREF(Py_None); |
| 3533 | return Py_None; |
Guido van Rossum | c2670a0 | 1992-09-13 20:07:29 +0000 | [diff] [blame] | 3534 | } |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3535 | #endif /* HAVE_SETPGID */ |
Guido van Rossum | c2670a0 | 1992-09-13 20:07:29 +0000 | [diff] [blame] | 3536 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3537 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3538 | #ifdef HAVE_TCGETPGRP |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3539 | static char posix_tcgetpgrp__doc__[] = |
| 3540 | "tcgetpgrp(fd) -> pgid\n\ |
| 3541 | Return the process group associated with the terminal given by a fd."; |
| 3542 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3543 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 3544 | posix_tcgetpgrp(PyObject *self, PyObject *args) |
Guido van Rossum | 7066dd7 | 1992-09-17 17:54:56 +0000 | [diff] [blame] | 3545 | { |
| 3546 | int fd, pgid; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 3547 | if (!PyArg_ParseTuple(args, "i:tcgetpgrp", &fd)) |
Guido van Rossum | 7066dd7 | 1992-09-17 17:54:56 +0000 | [diff] [blame] | 3548 | return NULL; |
| 3549 | pgid = tcgetpgrp(fd); |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3550 | if (pgid < 0) |
| 3551 | return posix_error(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3552 | return PyInt_FromLong((long)pgid); |
Guido van Rossum | 7066dd7 | 1992-09-17 17:54:56 +0000 | [diff] [blame] | 3553 | } |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3554 | #endif /* HAVE_TCGETPGRP */ |
Guido van Rossum | 7066dd7 | 1992-09-17 17:54:56 +0000 | [diff] [blame] | 3555 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3556 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3557 | #ifdef HAVE_TCSETPGRP |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3558 | static char posix_tcsetpgrp__doc__[] = |
| 3559 | "tcsetpgrp(fd, pgid) -> None\n\ |
| 3560 | Set the process group associated with the terminal given by a fd."; |
| 3561 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3562 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 3563 | posix_tcsetpgrp(PyObject *self, PyObject *args) |
Guido van Rossum | 7066dd7 | 1992-09-17 17:54:56 +0000 | [diff] [blame] | 3564 | { |
| 3565 | int fd, pgid; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 3566 | if (!PyArg_ParseTuple(args, "ii:tcsetpgrp", &fd, &pgid)) |
Guido van Rossum | 7066dd7 | 1992-09-17 17:54:56 +0000 | [diff] [blame] | 3567 | return NULL; |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3568 | if (tcsetpgrp(fd, pgid) < 0) |
| 3569 | return posix_error(); |
Barry Warsaw | 43d68b8 | 1996-12-19 22:10:44 +0000 | [diff] [blame] | 3570 | Py_INCREF(Py_None); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3571 | return Py_None; |
Guido van Rossum | 7066dd7 | 1992-09-17 17:54:56 +0000 | [diff] [blame] | 3572 | } |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3573 | #endif /* HAVE_TCSETPGRP */ |
Guido van Rossum | 22db57e | 1992-04-05 14:25:30 +0000 | [diff] [blame] | 3574 | |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3575 | /* Functions acting on file descriptors */ |
| 3576 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3577 | static char posix_open__doc__[] = |
| 3578 | "open(filename, flag [, mode=0777]) -> fd\n\ |
| 3579 | Open a file (for low level IO)."; |
| 3580 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3581 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 3582 | posix_open(PyObject *self, PyObject *args) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3583 | { |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 3584 | char *file = NULL; |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3585 | int flag; |
| 3586 | int mode = 0777; |
| 3587 | int fd; |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 3588 | if (!PyArg_ParseTuple(args, "eti|i", |
| 3589 | Py_FileSystemDefaultEncoding, &file, |
| 3590 | &flag, &mode)) |
Barry Warsaw | 43d68b8 | 1996-12-19 22:10:44 +0000 | [diff] [blame] | 3591 | return NULL; |
| 3592 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3593 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3594 | fd = open(file, flag, mode); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3595 | Py_END_ALLOW_THREADS |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3596 | if (fd < 0) |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 3597 | return posix_error_with_allocated_filename(file); |
| 3598 | PyMem_Free(file); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3599 | return PyInt_FromLong((long)fd); |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3600 | } |
| 3601 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3602 | |
| 3603 | static char posix_close__doc__[] = |
| 3604 | "close(fd) -> None\n\ |
| 3605 | Close a file descriptor (for low level IO)."; |
| 3606 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3607 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 3608 | posix_close(PyObject *self, PyObject *args) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3609 | { |
| 3610 | int fd, res; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 3611 | if (!PyArg_ParseTuple(args, "i:close", &fd)) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3612 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3613 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3614 | res = close(fd); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3615 | Py_END_ALLOW_THREADS |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3616 | if (res < 0) |
| 3617 | return posix_error(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3618 | Py_INCREF(Py_None); |
| 3619 | return Py_None; |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3620 | } |
| 3621 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3622 | |
| 3623 | static char posix_dup__doc__[] = |
| 3624 | "dup(fd) -> fd2\n\ |
| 3625 | Return a duplicate of a file descriptor."; |
| 3626 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3627 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 3628 | posix_dup(PyObject *self, PyObject *args) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3629 | { |
| 3630 | int fd; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 3631 | if (!PyArg_ParseTuple(args, "i:dup", &fd)) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3632 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3633 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3634 | fd = dup(fd); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3635 | Py_END_ALLOW_THREADS |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3636 | if (fd < 0) |
| 3637 | return posix_error(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3638 | return PyInt_FromLong((long)fd); |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3639 | } |
| 3640 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3641 | |
| 3642 | static char posix_dup2__doc__[] = |
| 3643 | "dup2(fd, fd2) -> None\n\ |
| 3644 | Duplicate file descriptor."; |
| 3645 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3646 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 3647 | posix_dup2(PyObject *self, PyObject *args) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3648 | { |
| 3649 | int fd, fd2, res; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 3650 | if (!PyArg_ParseTuple(args, "ii:dup2", &fd, &fd2)) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3651 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3652 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3653 | res = dup2(fd, fd2); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3654 | Py_END_ALLOW_THREADS |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3655 | if (res < 0) |
| 3656 | return posix_error(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3657 | Py_INCREF(Py_None); |
| 3658 | return Py_None; |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3659 | } |
| 3660 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3661 | |
| 3662 | static char posix_lseek__doc__[] = |
| 3663 | "lseek(fd, pos, how) -> newpos\n\ |
| 3664 | Set the current position of a file descriptor."; |
| 3665 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3666 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 3667 | posix_lseek(PyObject *self, PyObject *args) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3668 | { |
| 3669 | int fd, how; |
Tim Peters | 6e13a56 | 2001-09-06 00:32:15 +0000 | [diff] [blame] | 3670 | #if defined(MS_WIN64) || defined(MS_WIN32) |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 3671 | LONG_LONG pos, res; |
| 3672 | #else |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 3673 | off_t pos, res; |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 3674 | #endif |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 3675 | PyObject *posobj; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 3676 | if (!PyArg_ParseTuple(args, "iOi:lseek", &fd, &posobj, &how)) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3677 | return NULL; |
| 3678 | #ifdef SEEK_SET |
| 3679 | /* Turn 0, 1, 2 into SEEK_{SET,CUR,END} */ |
| 3680 | switch (how) { |
| 3681 | case 0: how = SEEK_SET; break; |
| 3682 | case 1: how = SEEK_CUR; break; |
| 3683 | case 2: how = SEEK_END; break; |
| 3684 | } |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 3685 | #endif /* SEEK_END */ |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 3686 | |
| 3687 | #if !defined(HAVE_LARGEFILE_SUPPORT) |
| 3688 | pos = PyInt_AsLong(posobj); |
| 3689 | #else |
| 3690 | pos = PyLong_Check(posobj) ? |
| 3691 | PyLong_AsLongLong(posobj) : PyInt_AsLong(posobj); |
| 3692 | #endif |
| 3693 | if (PyErr_Occurred()) |
| 3694 | return NULL; |
| 3695 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3696 | Py_BEGIN_ALLOW_THREADS |
Tim Peters | 6e13a56 | 2001-09-06 00:32:15 +0000 | [diff] [blame] | 3697 | #if defined(MS_WIN64) || defined(MS_WIN32) |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 3698 | res = _lseeki64(fd, pos, how); |
| 3699 | #else |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3700 | res = lseek(fd, pos, how); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 3701 | #endif |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3702 | Py_END_ALLOW_THREADS |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3703 | if (res < 0) |
| 3704 | return posix_error(); |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 3705 | |
| 3706 | #if !defined(HAVE_LARGEFILE_SUPPORT) |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3707 | return PyInt_FromLong(res); |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 3708 | #else |
| 3709 | return PyLong_FromLongLong(res); |
| 3710 | #endif |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3711 | } |
| 3712 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3713 | |
| 3714 | static char posix_read__doc__[] = |
| 3715 | "read(fd, buffersize) -> string\n\ |
| 3716 | Read a file descriptor."; |
| 3717 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3718 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 3719 | posix_read(PyObject *self, PyObject *args) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3720 | { |
Guido van Rossum | 8bac546 | 1996-06-11 18:38:48 +0000 | [diff] [blame] | 3721 | int fd, size, n; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3722 | PyObject *buffer; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 3723 | if (!PyArg_ParseTuple(args, "ii:read", &fd, &size)) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3724 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3725 | buffer = PyString_FromStringAndSize((char *)NULL, size); |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3726 | if (buffer == NULL) |
| 3727 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3728 | Py_BEGIN_ALLOW_THREADS |
| 3729 | n = read(fd, PyString_AsString(buffer), size); |
| 3730 | Py_END_ALLOW_THREADS |
Guido van Rossum | 8bac546 | 1996-06-11 18:38:48 +0000 | [diff] [blame] | 3731 | if (n < 0) { |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3732 | Py_DECREF(buffer); |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3733 | return posix_error(); |
| 3734 | } |
Guido van Rossum | 8bac546 | 1996-06-11 18:38:48 +0000 | [diff] [blame] | 3735 | if (n != size) |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3736 | _PyString_Resize(&buffer, n); |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3737 | return buffer; |
| 3738 | } |
| 3739 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3740 | |
| 3741 | static char posix_write__doc__[] = |
| 3742 | "write(fd, string) -> byteswritten\n\ |
| 3743 | Write a string to a file descriptor."; |
| 3744 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3745 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 3746 | posix_write(PyObject *self, PyObject *args) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3747 | { |
| 3748 | int fd, size; |
| 3749 | char *buffer; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 3750 | if (!PyArg_ParseTuple(args, "is#:write", &fd, &buffer, &size)) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3751 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3752 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3753 | size = write(fd, buffer, size); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3754 | Py_END_ALLOW_THREADS |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3755 | if (size < 0) |
| 3756 | return posix_error(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3757 | return PyInt_FromLong((long)size); |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3758 | } |
| 3759 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3760 | |
| 3761 | static char posix_fstat__doc__[]= |
| 3762 | "fstat(fd) -> (mode, ino, dev, nlink, uid, gid, size, atime, mtime, ctime)\n\ |
| 3763 | Like stat(), but for an open file descriptor."; |
| 3764 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3765 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 3766 | posix_fstat(PyObject *self, PyObject *args) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3767 | { |
| 3768 | int fd; |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 3769 | STRUCT_STAT st; |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3770 | int res; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 3771 | if (!PyArg_ParseTuple(args, "i:fstat", &fd)) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3772 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3773 | Py_BEGIN_ALLOW_THREADS |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 3774 | res = FSTAT(fd, &st); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3775 | Py_END_ALLOW_THREADS |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3776 | if (res != 0) |
| 3777 | return posix_error(); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 3778 | |
| 3779 | return _pystat_fromstructstat(st); |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3780 | } |
| 3781 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3782 | |
| 3783 | static char posix_fdopen__doc__[] = |
| 3784 | "fdopen(fd, [, mode='r' [, bufsize]]) -> file_object\n\ |
| 3785 | Return an open file object connected to a file descriptor."; |
| 3786 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3787 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 3788 | posix_fdopen(PyObject *self, PyObject *args) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3789 | { |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3790 | int fd; |
Guido van Rossum | a6a1e53 | 1995-01-10 15:36:38 +0000 | [diff] [blame] | 3791 | char *mode = "r"; |
| 3792 | int bufsize = -1; |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3793 | FILE *fp; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3794 | PyObject *f; |
| 3795 | if (!PyArg_ParseTuple(args, "i|si", &fd, &mode, &bufsize)) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3796 | return NULL; |
Barry Warsaw | 43d68b8 | 1996-12-19 22:10:44 +0000 | [diff] [blame] | 3797 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3798 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3799 | fp = fdopen(fd, mode); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3800 | Py_END_ALLOW_THREADS |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3801 | if (fp == NULL) |
| 3802 | return posix_error(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3803 | f = PyFile_FromFile(fp, "(fdopen)", mode, fclose); |
Guido van Rossum | a6a1e53 | 1995-01-10 15:36:38 +0000 | [diff] [blame] | 3804 | if (f != NULL) |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3805 | PyFile_SetBufSize(f, bufsize); |
Guido van Rossum | a6a1e53 | 1995-01-10 15:36:38 +0000 | [diff] [blame] | 3806 | return f; |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3807 | } |
| 3808 | |
Skip Montanaro | 1517d84 | 2000-07-19 14:34:14 +0000 | [diff] [blame] | 3809 | static char posix_isatty__doc__[] = |
| 3810 | "isatty(fd) -> Boolean\n\ |
| 3811 | Return true if the file descriptor 'fd' is an open file descriptor\n\ |
Thomas Wouters | 12e1595 | 2000-10-03 16:54:24 +0000 | [diff] [blame] | 3812 | connected to the slave end of a terminal."; |
Skip Montanaro | 1517d84 | 2000-07-19 14:34:14 +0000 | [diff] [blame] | 3813 | |
| 3814 | static PyObject * |
Thomas Wouters | 616607a | 2000-07-19 14:45:40 +0000 | [diff] [blame] | 3815 | posix_isatty(PyObject *self, PyObject *args) |
Skip Montanaro | 1517d84 | 2000-07-19 14:34:14 +0000 | [diff] [blame] | 3816 | { |
| 3817 | int fd; |
| 3818 | if (!PyArg_ParseTuple(args, "i:isatty", &fd)) |
| 3819 | return NULL; |
| 3820 | return Py_BuildValue("i", isatty(fd)); |
| 3821 | } |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3822 | |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 3823 | #ifdef HAVE_PIPE |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3824 | static char posix_pipe__doc__[] = |
| 3825 | "pipe() -> (read_end, write_end)\n\ |
| 3826 | Create a pipe."; |
| 3827 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3828 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 3829 | posix_pipe(PyObject *self, PyObject *args) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3830 | { |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 3831 | #if defined(PYOS_OS2) |
| 3832 | HFILE read, write; |
| 3833 | APIRET rc; |
| 3834 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 3835 | if (!PyArg_ParseTuple(args, ":pipe")) |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 3836 | return NULL; |
| 3837 | |
| 3838 | Py_BEGIN_ALLOW_THREADS |
| 3839 | rc = DosCreatePipe( &read, &write, 4096); |
| 3840 | Py_END_ALLOW_THREADS |
| 3841 | if (rc != NO_ERROR) |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 3842 | return os2_error(rc); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 3843 | |
| 3844 | return Py_BuildValue("(ii)", read, write); |
| 3845 | #else |
Guido van Rossum | 8d665e6 | 1996-06-26 18:22:49 +0000 | [diff] [blame] | 3846 | #if !defined(MS_WIN32) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3847 | int fds[2]; |
| 3848 | int res; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 3849 | if (!PyArg_ParseTuple(args, ":pipe")) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3850 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3851 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3852 | res = pipe(fds); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3853 | Py_END_ALLOW_THREADS |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3854 | if (res != 0) |
| 3855 | return posix_error(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3856 | return Py_BuildValue("(ii)", fds[0], fds[1]); |
Guido van Rossum | 8d665e6 | 1996-06-26 18:22:49 +0000 | [diff] [blame] | 3857 | #else /* MS_WIN32 */ |
Guido van Rossum | 794d813 | 1994-08-23 13:48:48 +0000 | [diff] [blame] | 3858 | HANDLE read, write; |
Guido van Rossum | b3f9f4b | 1998-06-12 15:05:15 +0000 | [diff] [blame] | 3859 | int read_fd, write_fd; |
Guido van Rossum | 794d813 | 1994-08-23 13:48:48 +0000 | [diff] [blame] | 3860 | BOOL ok; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 3861 | if (!PyArg_ParseTuple(args, ":pipe")) |
Guido van Rossum | 794d813 | 1994-08-23 13:48:48 +0000 | [diff] [blame] | 3862 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3863 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | b3f9f4b | 1998-06-12 15:05:15 +0000 | [diff] [blame] | 3864 | ok = CreatePipe(&read, &write, NULL, 0); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3865 | Py_END_ALLOW_THREADS |
Guido van Rossum | 794d813 | 1994-08-23 13:48:48 +0000 | [diff] [blame] | 3866 | if (!ok) |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 3867 | return win32_error("CreatePipe", NULL); |
Tim Peters | 79248aa | 2001-08-29 21:37:10 +0000 | [diff] [blame] | 3868 | read_fd = _open_osfhandle((Py_intptr_t)read, 0); |
| 3869 | write_fd = _open_osfhandle((Py_intptr_t)write, 1); |
Guido van Rossum | b3f9f4b | 1998-06-12 15:05:15 +0000 | [diff] [blame] | 3870 | return Py_BuildValue("(ii)", read_fd, write_fd); |
Guido van Rossum | 8d665e6 | 1996-06-26 18:22:49 +0000 | [diff] [blame] | 3871 | #endif /* MS_WIN32 */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 3872 | #endif |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 3873 | } |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 3874 | #endif /* HAVE_PIPE */ |
| 3875 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3876 | |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 3877 | #ifdef HAVE_MKFIFO |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3878 | static char posix_mkfifo__doc__[] = |
| 3879 | "mkfifo(file, [, mode=0666]) -> None\n\ |
| 3880 | Create a FIFO (a POSIX named pipe)."; |
| 3881 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3882 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 3883 | posix_mkfifo(PyObject *self, PyObject *args) |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 3884 | { |
| 3885 | char *file; |
| 3886 | int mode = 0666; |
| 3887 | int res; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 3888 | if (!PyArg_ParseTuple(args, "s|i:mkfifo", &file, &mode)) |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 3889 | return NULL; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3890 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 3891 | res = mkfifo(file, mode); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3892 | Py_END_ALLOW_THREADS |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 3893 | if (res < 0) |
| 3894 | return posix_error(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3895 | Py_INCREF(Py_None); |
| 3896 | return Py_None; |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 3897 | } |
| 3898 | #endif |
| 3899 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3900 | |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 3901 | #ifdef HAVE_FTRUNCATE |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3902 | static char posix_ftruncate__doc__[] = |
| 3903 | "ftruncate(fd, length) -> None\n\ |
| 3904 | Truncate a file to a specified length."; |
| 3905 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3906 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 3907 | posix_ftruncate(PyObject *self, PyObject *args) |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 3908 | { |
| 3909 | int fd; |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 3910 | off_t length; |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 3911 | int res; |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 3912 | PyObject *lenobj; |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 3913 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 3914 | if (!PyArg_ParseTuple(args, "iO:ftruncate", &fd, &lenobj)) |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 3915 | return NULL; |
| 3916 | |
| 3917 | #if !defined(HAVE_LARGEFILE_SUPPORT) |
| 3918 | length = PyInt_AsLong(lenobj); |
| 3919 | #else |
| 3920 | length = PyLong_Check(lenobj) ? |
| 3921 | PyLong_AsLongLong(lenobj) : PyInt_AsLong(lenobj); |
| 3922 | #endif |
| 3923 | if (PyErr_Occurred()) |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 3924 | return NULL; |
| 3925 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3926 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 3927 | res = ftruncate(fd, length); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3928 | Py_END_ALLOW_THREADS |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 3929 | if (res < 0) { |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3930 | PyErr_SetFromErrno(PyExc_IOError); |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 3931 | return NULL; |
| 3932 | } |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3933 | Py_INCREF(Py_None); |
| 3934 | return Py_None; |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 3935 | } |
| 3936 | #endif |
Guido van Rossum | 22db57e | 1992-04-05 14:25:30 +0000 | [diff] [blame] | 3937 | |
Guido van Rossum | b9f866c | 1997-05-22 15:12:39 +0000 | [diff] [blame] | 3938 | #ifdef NeXT |
| 3939 | #define HAVE_PUTENV |
| 3940 | /* Steve Spicklemire got this putenv from NeXTAnswers */ |
| 3941 | static int |
| 3942 | putenv(char *newval) |
| 3943 | { |
| 3944 | extern char **environ; |
| 3945 | |
| 3946 | static int firstTime = 1; |
| 3947 | char **ep; |
| 3948 | char *cp; |
| 3949 | int esiz; |
| 3950 | char *np; |
| 3951 | |
| 3952 | if (!(np = strchr(newval, '='))) |
| 3953 | return 1; |
| 3954 | *np = '\0'; |
| 3955 | |
| 3956 | /* look it up */ |
| 3957 | for (ep=environ ; *ep ; ep++) |
| 3958 | { |
| 3959 | /* this should always be true... */ |
| 3960 | if (cp = strchr(*ep, '=')) |
| 3961 | { |
| 3962 | *cp = '\0'; |
| 3963 | if (!strcmp(*ep, newval)) |
| 3964 | { |
| 3965 | /* got it! */ |
| 3966 | *cp = '='; |
| 3967 | break; |
| 3968 | } |
| 3969 | *cp = '='; |
| 3970 | } |
| 3971 | else |
| 3972 | { |
| 3973 | *np = '='; |
| 3974 | return 1; |
| 3975 | } |
| 3976 | } |
| 3977 | |
| 3978 | *np = '='; |
| 3979 | if (*ep) |
| 3980 | { |
| 3981 | /* the string was already there: |
| 3982 | just replace it with the new one */ |
| 3983 | *ep = newval; |
| 3984 | return 0; |
| 3985 | } |
| 3986 | |
| 3987 | /* expand environ by one */ |
| 3988 | for (esiz=2, ep=environ ; *ep ; ep++) |
| 3989 | esiz++; |
| 3990 | if (firstTime) |
| 3991 | { |
| 3992 | char **epp; |
| 3993 | char **newenv; |
| 3994 | if (!(newenv = malloc(esiz * sizeof(char *)))) |
| 3995 | return 1; |
| 3996 | |
| 3997 | for (ep=environ, epp=newenv ; *ep ;) |
| 3998 | *epp++ = *ep++; |
| 3999 | *epp++ = newval; |
| 4000 | *epp = (char *) 0; |
| 4001 | environ = newenv; |
| 4002 | } |
| 4003 | else |
| 4004 | { |
| 4005 | if (!(environ = realloc(environ, esiz * sizeof(char *)))) |
| 4006 | return 1; |
| 4007 | environ[esiz - 2] = newval; |
| 4008 | environ[esiz - 1] = (char *) 0; |
| 4009 | firstTime = 0; |
| 4010 | } |
| 4011 | |
| 4012 | return 0; |
| 4013 | } |
Guido van Rossum | c6ef204 | 1997-08-21 02:30:45 +0000 | [diff] [blame] | 4014 | #endif /* NeXT */ |
Guido van Rossum | b9f866c | 1997-05-22 15:12:39 +0000 | [diff] [blame] | 4015 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 4016 | |
Guido van Rossum | f1af3fe | 1996-07-23 19:18:10 +0000 | [diff] [blame] | 4017 | #ifdef HAVE_PUTENV |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 4018 | static char posix_putenv__doc__[] = |
| 4019 | "putenv(key, value) -> None\n\ |
| 4020 | Change or add an environment variable."; |
| 4021 | |
Fred Drake | 762e206 | 1999-08-26 17:23:54 +0000 | [diff] [blame] | 4022 | /* Save putenv() parameters as values here, so we can collect them when they |
| 4023 | * get re-set with another call for the same key. */ |
| 4024 | static PyObject *posix_putenv_garbage; |
| 4025 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 4026 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 4027 | posix_putenv(PyObject *self, PyObject *args) |
Guido van Rossum | f1af3fe | 1996-07-23 19:18:10 +0000 | [diff] [blame] | 4028 | { |
| 4029 | char *s1, *s2; |
| 4030 | char *new; |
Fred Drake | 762e206 | 1999-08-26 17:23:54 +0000 | [diff] [blame] | 4031 | PyObject *newstr; |
Guido van Rossum | f1af3fe | 1996-07-23 19:18:10 +0000 | [diff] [blame] | 4032 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 4033 | if (!PyArg_ParseTuple(args, "ss:putenv", &s1, &s2)) |
Guido van Rossum | f1af3fe | 1996-07-23 19:18:10 +0000 | [diff] [blame] | 4034 | return NULL; |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 4035 | |
| 4036 | #if defined(PYOS_OS2) |
| 4037 | if (stricmp(s1, "BEGINLIBPATH") == 0) { |
| 4038 | APIRET rc; |
| 4039 | |
| 4040 | if (strlen(s2) == 0) /* If New Value is an Empty String */ |
| 4041 | s2 = NULL; /* Then OS/2 API Wants a NULL to Undefine It */ |
| 4042 | |
| 4043 | rc = DosSetExtLIBPATH(s2, BEGIN_LIBPATH); |
| 4044 | if (rc != NO_ERROR) |
| 4045 | return os2_error(rc); |
| 4046 | |
| 4047 | } else if (stricmp(s1, "ENDLIBPATH") == 0) { |
| 4048 | APIRET rc; |
| 4049 | |
| 4050 | if (strlen(s2) == 0) /* If New Value is an Empty String */ |
| 4051 | s2 = NULL; /* Then OS/2 API Wants a NULL to Undefine It */ |
| 4052 | |
| 4053 | rc = DosSetExtLIBPATH(s2, END_LIBPATH); |
| 4054 | if (rc != NO_ERROR) |
| 4055 | return os2_error(rc); |
| 4056 | } else { |
| 4057 | #endif |
| 4058 | |
Fred Drake | 762e206 | 1999-08-26 17:23:54 +0000 | [diff] [blame] | 4059 | /* XXX This can leak memory -- not easy to fix :-( */ |
| 4060 | newstr = PyString_FromStringAndSize(NULL, strlen(s1) + strlen(s2) + 2); |
| 4061 | if (newstr == NULL) |
| 4062 | return PyErr_NoMemory(); |
| 4063 | new = PyString_AS_STRING(newstr); |
Guido van Rossum | f1af3fe | 1996-07-23 19:18:10 +0000 | [diff] [blame] | 4064 | (void) sprintf(new, "%s=%s", s1, s2); |
| 4065 | if (putenv(new)) { |
| 4066 | posix_error(); |
| 4067 | return NULL; |
| 4068 | } |
Fred Drake | 762e206 | 1999-08-26 17:23:54 +0000 | [diff] [blame] | 4069 | /* Install the first arg and newstr in posix_putenv_garbage; |
| 4070 | * this will cause previous value to be collected. This has to |
| 4071 | * happen after the real putenv() call because the old value |
| 4072 | * was still accessible until then. */ |
| 4073 | if (PyDict_SetItem(posix_putenv_garbage, |
| 4074 | PyTuple_GET_ITEM(args, 0), newstr)) { |
| 4075 | /* really not much we can do; just leak */ |
| 4076 | PyErr_Clear(); |
| 4077 | } |
| 4078 | else { |
| 4079 | Py_DECREF(newstr); |
| 4080 | } |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 4081 | |
| 4082 | #if defined(PYOS_OS2) |
| 4083 | } |
| 4084 | #endif |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 4085 | Py_INCREF(Py_None); |
| 4086 | return Py_None; |
Guido van Rossum | f1af3fe | 1996-07-23 19:18:10 +0000 | [diff] [blame] | 4087 | } |
Guido van Rossum | b6a4716 | 1997-09-15 22:54:34 +0000 | [diff] [blame] | 4088 | #endif /* putenv */ |
| 4089 | |
Guido van Rossum | c524d95 | 2001-10-19 01:31:59 +0000 | [diff] [blame] | 4090 | #ifdef HAVE_UNSETENV |
| 4091 | static char posix_unsetenv__doc__[] = |
| 4092 | "unsetenv(key) -> None\n\ |
| 4093 | Delete an environment variable."; |
| 4094 | |
| 4095 | static PyObject * |
| 4096 | posix_unsetenv(PyObject *self, PyObject *args) |
| 4097 | { |
| 4098 | char *s1; |
| 4099 | |
| 4100 | if (!PyArg_ParseTuple(args, "s:unsetenv", &s1)) |
| 4101 | return NULL; |
| 4102 | |
| 4103 | unsetenv(s1); |
| 4104 | |
| 4105 | /* Remove the key from posix_putenv_garbage; |
| 4106 | * this will cause it to be collected. This has to |
| 4107 | * happen after the real unsetenv() call because the |
| 4108 | * old value was still accessible until then. |
| 4109 | */ |
| 4110 | if (PyDict_DelItem(posix_putenv_garbage, |
| 4111 | PyTuple_GET_ITEM(args, 0))) { |
| 4112 | /* really not much we can do; just leak */ |
| 4113 | PyErr_Clear(); |
| 4114 | } |
| 4115 | |
| 4116 | Py_INCREF(Py_None); |
| 4117 | return Py_None; |
| 4118 | } |
| 4119 | #endif /* unsetenv */ |
| 4120 | |
Guido van Rossum | b6a4716 | 1997-09-15 22:54:34 +0000 | [diff] [blame] | 4121 | #ifdef HAVE_STRERROR |
| 4122 | static char posix_strerror__doc__[] = |
| 4123 | "strerror(code) -> string\n\ |
| 4124 | Translate an error code to a message string."; |
| 4125 | |
Guido van Rossum | f68d8e5 | 2001-04-14 17:55:09 +0000 | [diff] [blame] | 4126 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 4127 | posix_strerror(PyObject *self, PyObject *args) |
Guido van Rossum | b6a4716 | 1997-09-15 22:54:34 +0000 | [diff] [blame] | 4128 | { |
| 4129 | int code; |
| 4130 | char *message; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 4131 | if (!PyArg_ParseTuple(args, "i:strerror", &code)) |
Guido van Rossum | b6a4716 | 1997-09-15 22:54:34 +0000 | [diff] [blame] | 4132 | return NULL; |
| 4133 | message = strerror(code); |
| 4134 | if (message == NULL) { |
| 4135 | PyErr_SetString(PyExc_ValueError, |
Fred Drake | 661ea26 | 2000-10-24 19:57:45 +0000 | [diff] [blame] | 4136 | "strerror() argument out of range"); |
Guido van Rossum | b6a4716 | 1997-09-15 22:54:34 +0000 | [diff] [blame] | 4137 | return NULL; |
| 4138 | } |
| 4139 | return PyString_FromString(message); |
| 4140 | } |
| 4141 | #endif /* strerror */ |
| 4142 | |
Guido van Rossum | f1af3fe | 1996-07-23 19:18:10 +0000 | [diff] [blame] | 4143 | |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 4144 | #ifdef HAVE_SYS_WAIT_H |
| 4145 | |
| 4146 | #ifdef WIFSTOPPED |
| 4147 | static char posix_WIFSTOPPED__doc__[] = |
| 4148 | "WIFSTOPPED(status) -> Boolean\n\ |
Fred Drake | 7e3535c | 1999-02-02 16:37:11 +0000 | [diff] [blame] | 4149 | Return true if the process returning 'status' was stopped."; |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 4150 | |
| 4151 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 4152 | posix_WIFSTOPPED(PyObject *self, PyObject *args) |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 4153 | { |
Guido van Rossum | 54ecc3d | 1999-01-27 17:53:11 +0000 | [diff] [blame] | 4154 | #ifdef UNION_WAIT |
| 4155 | union wait status; |
| 4156 | #define status_i (status.w_status) |
| 4157 | #else |
| 4158 | int status; |
| 4159 | #define status_i status |
| 4160 | #endif |
| 4161 | status_i = 0; |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 4162 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 4163 | if (!PyArg_ParseTuple(args, "i:WIFSTOPPED", &status_i)) |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 4164 | { |
| 4165 | return NULL; |
| 4166 | } |
| 4167 | |
| 4168 | return Py_BuildValue("i", WIFSTOPPED(status)); |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 4169 | #undef status_i |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 4170 | } |
| 4171 | #endif /* WIFSTOPPED */ |
| 4172 | |
| 4173 | #ifdef WIFSIGNALED |
| 4174 | static char posix_WIFSIGNALED__doc__[] = |
| 4175 | "WIFSIGNALED(status) -> Boolean\n\ |
Guido van Rossum | 3366d1c | 1999-02-23 18:34:43 +0000 | [diff] [blame] | 4176 | 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] | 4177 | |
| 4178 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 4179 | posix_WIFSIGNALED(PyObject *self, PyObject *args) |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 4180 | { |
Guido van Rossum | 54ecc3d | 1999-01-27 17:53:11 +0000 | [diff] [blame] | 4181 | #ifdef UNION_WAIT |
| 4182 | union wait status; |
| 4183 | #define status_i (status.w_status) |
| 4184 | #else |
| 4185 | int status; |
| 4186 | #define status_i status |
| 4187 | #endif |
| 4188 | status_i = 0; |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 4189 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 4190 | if (!PyArg_ParseTuple(args, "i:WIFSIGNALED", &status_i)) |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 4191 | { |
| 4192 | return NULL; |
| 4193 | } |
| 4194 | |
| 4195 | return Py_BuildValue("i", WIFSIGNALED(status)); |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 4196 | #undef status_i |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 4197 | } |
| 4198 | #endif /* WIFSIGNALED */ |
| 4199 | |
| 4200 | #ifdef WIFEXITED |
| 4201 | static char posix_WIFEXITED__doc__[] = |
| 4202 | "WIFEXITED(status) -> Boolean\n\ |
Fred Drake | 7e3535c | 1999-02-02 16:37:11 +0000 | [diff] [blame] | 4203 | Return true if the process returning 'status' exited using the exit()\n\ |
| 4204 | system call."; |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 4205 | |
| 4206 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 4207 | posix_WIFEXITED(PyObject *self, PyObject *args) |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 4208 | { |
Guido van Rossum | 54ecc3d | 1999-01-27 17:53:11 +0000 | [diff] [blame] | 4209 | #ifdef UNION_WAIT |
| 4210 | union wait status; |
| 4211 | #define status_i (status.w_status) |
| 4212 | #else |
| 4213 | int status; |
| 4214 | #define status_i status |
| 4215 | #endif |
| 4216 | status_i = 0; |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 4217 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 4218 | if (!PyArg_ParseTuple(args, "i:WIFEXITED", &status_i)) |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 4219 | { |
| 4220 | return NULL; |
| 4221 | } |
| 4222 | |
| 4223 | return Py_BuildValue("i", WIFEXITED(status)); |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 4224 | #undef status_i |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 4225 | } |
| 4226 | #endif /* WIFEXITED */ |
| 4227 | |
Guido van Rossum | 54ecc3d | 1999-01-27 17:53:11 +0000 | [diff] [blame] | 4228 | #ifdef WEXITSTATUS |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 4229 | static char posix_WEXITSTATUS__doc__[] = |
| 4230 | "WEXITSTATUS(status) -> integer\n\ |
Fred Drake | 7e3535c | 1999-02-02 16:37:11 +0000 | [diff] [blame] | 4231 | Return the process return code from 'status'."; |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 4232 | |
| 4233 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 4234 | posix_WEXITSTATUS(PyObject *self, PyObject *args) |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 4235 | { |
Guido van Rossum | 54ecc3d | 1999-01-27 17:53:11 +0000 | [diff] [blame] | 4236 | #ifdef UNION_WAIT |
| 4237 | union wait status; |
| 4238 | #define status_i (status.w_status) |
| 4239 | #else |
| 4240 | int status; |
| 4241 | #define status_i status |
| 4242 | #endif |
| 4243 | status_i = 0; |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 4244 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 4245 | if (!PyArg_ParseTuple(args, "i:WEXITSTATUS", &status_i)) |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 4246 | { |
| 4247 | return NULL; |
| 4248 | } |
| 4249 | |
| 4250 | return Py_BuildValue("i", WEXITSTATUS(status)); |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 4251 | #undef status_i |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 4252 | } |
| 4253 | #endif /* WEXITSTATUS */ |
| 4254 | |
| 4255 | #ifdef WTERMSIG |
| 4256 | static char posix_WTERMSIG__doc__[] = |
| 4257 | "WTERMSIG(status) -> integer\n\ |
Fred Drake | 7e3535c | 1999-02-02 16:37:11 +0000 | [diff] [blame] | 4258 | Return the signal that terminated the process that provided the 'status'\n\ |
| 4259 | value."; |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 4260 | |
| 4261 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 4262 | posix_WTERMSIG(PyObject *self, PyObject *args) |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 4263 | { |
Guido van Rossum | 54ecc3d | 1999-01-27 17:53:11 +0000 | [diff] [blame] | 4264 | #ifdef UNION_WAIT |
| 4265 | union wait status; |
| 4266 | #define status_i (status.w_status) |
| 4267 | #else |
| 4268 | int status; |
| 4269 | #define status_i status |
| 4270 | #endif |
| 4271 | status_i = 0; |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 4272 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 4273 | if (!PyArg_ParseTuple(args, "i:WTERMSIG", &status_i)) |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 4274 | { |
| 4275 | return NULL; |
| 4276 | } |
| 4277 | |
| 4278 | return Py_BuildValue("i", WTERMSIG(status)); |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 4279 | #undef status_i |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 4280 | } |
| 4281 | #endif /* WTERMSIG */ |
| 4282 | |
| 4283 | #ifdef WSTOPSIG |
| 4284 | static char posix_WSTOPSIG__doc__[] = |
| 4285 | "WSTOPSIG(status) -> integer\n\ |
Fred Drake | 7e3535c | 1999-02-02 16:37:11 +0000 | [diff] [blame] | 4286 | Return the signal that stopped the process that provided the 'status' value."; |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 4287 | |
| 4288 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 4289 | posix_WSTOPSIG(PyObject *self, PyObject *args) |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 4290 | { |
Guido van Rossum | 54ecc3d | 1999-01-27 17:53:11 +0000 | [diff] [blame] | 4291 | #ifdef UNION_WAIT |
| 4292 | union wait status; |
| 4293 | #define status_i (status.w_status) |
| 4294 | #else |
| 4295 | int status; |
| 4296 | #define status_i status |
| 4297 | #endif |
| 4298 | status_i = 0; |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 4299 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 4300 | if (!PyArg_ParseTuple(args, "i:WSTOPSIG", &status_i)) |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 4301 | { |
| 4302 | return NULL; |
| 4303 | } |
| 4304 | |
| 4305 | return Py_BuildValue("i", WSTOPSIG(status)); |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 4306 | #undef status_i |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 4307 | } |
| 4308 | #endif /* WSTOPSIG */ |
| 4309 | |
| 4310 | #endif /* HAVE_SYS_WAIT_H */ |
| 4311 | |
| 4312 | |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 4313 | #if defined(HAVE_FSTATVFS) |
Guido van Rossum | d5753e1 | 1999-10-19 13:29:23 +0000 | [diff] [blame] | 4314 | #ifdef _SCO_DS |
| 4315 | /* SCO OpenServer 5.0 and later requires _SVID3 before it reveals the |
| 4316 | needed definitions in sys/statvfs.h */ |
| 4317 | #define _SVID3 |
| 4318 | #endif |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 4319 | #include <sys/statvfs.h> |
| 4320 | |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 4321 | static PyObject* |
| 4322 | _pystatvfs_fromstructstatvfs(struct statvfs st) { |
| 4323 | PyObject *v = PyStructSequence_New(&StatVFSResultType); |
| 4324 | if (v == NULL) |
| 4325 | return NULL; |
| 4326 | |
| 4327 | #if !defined(HAVE_LARGEFILE_SUPPORT) |
| 4328 | PyStructSequence_SET_ITEM(v, 0, PyInt_FromLong((long) st.f_bsize)); |
| 4329 | PyStructSequence_SET_ITEM(v, 1, PyInt_FromLong((long) st.f_frsize)); |
| 4330 | PyStructSequence_SET_ITEM(v, 2, PyInt_FromLong((long) st.f_blocks)); |
| 4331 | PyStructSequence_SET_ITEM(v, 3, PyInt_FromLong((long) st.f_bfree)); |
| 4332 | PyStructSequence_SET_ITEM(v, 4, PyInt_FromLong((long) st.f_bavail)); |
| 4333 | PyStructSequence_SET_ITEM(v, 5, PyInt_FromLong((long) st.f_files)); |
| 4334 | PyStructSequence_SET_ITEM(v, 6, PyInt_FromLong((long) st.f_ffree)); |
| 4335 | PyStructSequence_SET_ITEM(v, 7, PyInt_FromLong((long) st.f_favail)); |
| 4336 | PyStructSequence_SET_ITEM(v, 8, PyInt_FromLong((long) st.f_flag)); |
| 4337 | PyStructSequence_SET_ITEM(v, 9, PyInt_FromLong((long) st.f_namemax)); |
| 4338 | #else |
| 4339 | PyStructSequence_SET_ITEM(v, 0, PyInt_FromLong((long) st.f_bsize)); |
| 4340 | PyStructSequence_SET_ITEM(v, 1, PyInt_FromLong((long) st.f_frsize)); |
| 4341 | PyStructSequence_SET_ITEM(v, 2, |
| 4342 | PyLong_FromLongLong((LONG_LONG) st.f_blocks)); |
| 4343 | PyStructSequence_SET_ITEM(v, 3, |
| 4344 | PyLong_FromLongLong((LONG_LONG) st.f_bfree)); |
| 4345 | PyStructSequence_SET_ITEM(v, 4, |
| 4346 | PyLong_FromLongLong((LONG_LONG) st.f_bavail)); |
| 4347 | PyStructSequence_SET_ITEM(v, 5, |
| 4348 | PyLong_FromLongLong((LONG_LONG) st.f_files)); |
| 4349 | PyStructSequence_SET_ITEM(v, 6, |
| 4350 | PyLong_FromLongLong((LONG_LONG) st.f_ffree)); |
| 4351 | PyStructSequence_SET_ITEM(v, 7, |
| 4352 | PyLong_FromLongLong((LONG_LONG) st.f_favail)); |
| 4353 | PyStructSequence_SET_ITEM(v, 8, PyInt_FromLong((long) st.f_flag)); |
| 4354 | PyStructSequence_SET_ITEM(v, 9, PyInt_FromLong((long) st.f_namemax)); |
| 4355 | #endif |
| 4356 | |
| 4357 | return v; |
| 4358 | } |
| 4359 | |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 4360 | static char posix_fstatvfs__doc__[] = |
Guido van Rossum | 0c9608c | 1999-02-03 16:32:37 +0000 | [diff] [blame] | 4361 | "fstatvfs(fd) -> \n\ |
| 4362 | (bsize, frsize, blocks, bfree, bavail, files, ffree, favail, flag, namemax)\n\ |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 4363 | Perform an fstatvfs system call on the given fd."; |
| 4364 | |
| 4365 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 4366 | posix_fstatvfs(PyObject *self, PyObject *args) |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 4367 | { |
| 4368 | int fd, res; |
| 4369 | struct statvfs st; |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 4370 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 4371 | if (!PyArg_ParseTuple(args, "i:fstatvfs", &fd)) |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 4372 | return NULL; |
| 4373 | Py_BEGIN_ALLOW_THREADS |
| 4374 | res = fstatvfs(fd, &st); |
| 4375 | Py_END_ALLOW_THREADS |
| 4376 | if (res != 0) |
| 4377 | return posix_error(); |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 4378 | |
| 4379 | return _pystatvfs_fromstructstatvfs(st); |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 4380 | } |
| 4381 | #endif /* HAVE_FSTATVFS */ |
| 4382 | |
| 4383 | |
| 4384 | #if defined(HAVE_STATVFS) |
| 4385 | #include <sys/statvfs.h> |
| 4386 | |
| 4387 | static char posix_statvfs__doc__[] = |
Guido van Rossum | 0c9608c | 1999-02-03 16:32:37 +0000 | [diff] [blame] | 4388 | "statvfs(path) -> \n\ |
| 4389 | (bsize, frsize, blocks, bfree, bavail, files, ffree, favail, flag, namemax)\n\ |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 4390 | Perform a statvfs system call on the given path."; |
| 4391 | |
| 4392 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 4393 | posix_statvfs(PyObject *self, PyObject *args) |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 4394 | { |
| 4395 | char *path; |
| 4396 | int res; |
| 4397 | struct statvfs st; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 4398 | if (!PyArg_ParseTuple(args, "s:statvfs", &path)) |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 4399 | return NULL; |
| 4400 | Py_BEGIN_ALLOW_THREADS |
| 4401 | res = statvfs(path, &st); |
| 4402 | Py_END_ALLOW_THREADS |
| 4403 | if (res != 0) |
| 4404 | return posix_error_with_filename(path); |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 4405 | |
| 4406 | return _pystatvfs_fromstructstatvfs(st); |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 4407 | } |
| 4408 | #endif /* HAVE_STATVFS */ |
| 4409 | |
| 4410 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 4411 | #ifdef HAVE_TEMPNAM |
| 4412 | static char posix_tempnam__doc__[] = "\ |
| 4413 | tempnam([dir[, prefix]]) -> string\n\ |
| 4414 | Return a unique name for a temporary file.\n\ |
| 4415 | The directory and a short may be specified as strings; they may be omitted\n\ |
| 4416 | or None if not needed."; |
| 4417 | |
| 4418 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 4419 | posix_tempnam(PyObject *self, PyObject *args) |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 4420 | { |
| 4421 | PyObject *result = NULL; |
| 4422 | char *dir = NULL; |
| 4423 | char *pfx = NULL; |
| 4424 | char *name; |
| 4425 | |
| 4426 | if (!PyArg_ParseTuple(args, "|zz:tempnam", &dir, &pfx)) |
| 4427 | return NULL; |
Skip Montanaro | 95618b5 | 2001-08-18 18:52:10 +0000 | [diff] [blame] | 4428 | |
| 4429 | if (PyErr_Warn(PyExc_RuntimeWarning, |
| 4430 | "tempnam is a potential security risk to your program") < 0) |
| 4431 | return NULL; |
| 4432 | |
Fred Drake | 78b71c2 | 2001-07-17 20:37:36 +0000 | [diff] [blame] | 4433 | #ifdef MS_WIN32 |
| 4434 | name = _tempnam(dir, pfx); |
| 4435 | #else |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 4436 | name = tempnam(dir, pfx); |
Fred Drake | 78b71c2 | 2001-07-17 20:37:36 +0000 | [diff] [blame] | 4437 | #endif |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 4438 | if (name == NULL) |
| 4439 | return PyErr_NoMemory(); |
| 4440 | result = PyString_FromString(name); |
| 4441 | free(name); |
| 4442 | return result; |
| 4443 | } |
Guido van Rossum | d371ff1 | 1999-01-25 16:12:23 +0000 | [diff] [blame] | 4444 | #endif |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 4445 | |
| 4446 | |
| 4447 | #ifdef HAVE_TMPFILE |
| 4448 | static char posix_tmpfile__doc__[] = "\ |
| 4449 | tmpfile() -> file object\n\ |
| 4450 | Create a temporary file with no directory entries."; |
| 4451 | |
| 4452 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 4453 | posix_tmpfile(PyObject *self, PyObject *args) |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 4454 | { |
| 4455 | FILE *fp; |
| 4456 | |
| 4457 | if (!PyArg_ParseTuple(args, ":tmpfile")) |
| 4458 | return NULL; |
| 4459 | fp = tmpfile(); |
| 4460 | if (fp == NULL) |
| 4461 | return posix_error(); |
| 4462 | return PyFile_FromFile(fp, "<tmpfile>", "w+", fclose); |
| 4463 | } |
| 4464 | #endif |
| 4465 | |
| 4466 | |
| 4467 | #ifdef HAVE_TMPNAM |
| 4468 | static char posix_tmpnam__doc__[] = "\ |
| 4469 | tmpnam() -> string\n\ |
| 4470 | Return a unique name for a temporary file."; |
| 4471 | |
| 4472 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 4473 | posix_tmpnam(PyObject *self, PyObject *args) |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 4474 | { |
| 4475 | char buffer[L_tmpnam]; |
| 4476 | char *name; |
| 4477 | |
| 4478 | if (!PyArg_ParseTuple(args, ":tmpnam")) |
| 4479 | return NULL; |
Skip Montanaro | 95618b5 | 2001-08-18 18:52:10 +0000 | [diff] [blame] | 4480 | |
| 4481 | if (PyErr_Warn(PyExc_RuntimeWarning, |
| 4482 | "tmpnam is a potential security risk to your program") < 0) |
| 4483 | return NULL; |
| 4484 | |
Greg Ward | b48bc17 | 2000-03-01 21:51:56 +0000 | [diff] [blame] | 4485 | #ifdef USE_TMPNAM_R |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 4486 | name = tmpnam_r(buffer); |
| 4487 | #else |
| 4488 | name = tmpnam(buffer); |
| 4489 | #endif |
| 4490 | if (name == NULL) { |
| 4491 | PyErr_SetObject(PyExc_OSError, |
| 4492 | Py_BuildValue("is", 0, |
Greg Ward | b48bc17 | 2000-03-01 21:51:56 +0000 | [diff] [blame] | 4493 | #ifdef USE_TMPNAM_R |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 4494 | "unexpected NULL from tmpnam_r" |
| 4495 | #else |
| 4496 | "unexpected NULL from tmpnam" |
| 4497 | #endif |
| 4498 | )); |
| 4499 | return NULL; |
| 4500 | } |
| 4501 | return PyString_FromString(buffer); |
| 4502 | } |
| 4503 | #endif |
| 4504 | |
| 4505 | |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 4506 | /* This is used for fpathconf(), pathconf(), confstr() and sysconf(). |
| 4507 | * It maps strings representing configuration variable names to |
| 4508 | * integer values, allowing those functions to be called with the |
Thomas Wouters | 7e47402 | 2000-07-16 12:04:32 +0000 | [diff] [blame] | 4509 | * magic names instead of polluting the module's namespace with tons of |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 4510 | * rarely-used constants. There are three separate tables that use |
| 4511 | * these definitions. |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 4512 | * |
| 4513 | * This code is always included, even if none of the interfaces that |
| 4514 | * need it are included. The #if hackery needed to avoid it would be |
| 4515 | * sufficiently pervasive that it's not worth the loss of readability. |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 4516 | */ |
| 4517 | struct constdef { |
| 4518 | char *name; |
| 4519 | long value; |
| 4520 | }; |
| 4521 | |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 4522 | static int |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 4523 | conv_confname(PyObject *arg, int *valuep, struct constdef *table, |
| 4524 | size_t tablesize) |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 4525 | { |
| 4526 | if (PyInt_Check(arg)) { |
| 4527 | *valuep = PyInt_AS_LONG(arg); |
| 4528 | return 1; |
| 4529 | } |
| 4530 | if (PyString_Check(arg)) { |
| 4531 | /* look up the value in the table using a binary search */ |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 4532 | size_t lo = 0; |
| 4533 | size_t mid; |
| 4534 | size_t hi = tablesize; |
| 4535 | int cmp; |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 4536 | char *confname = PyString_AS_STRING(arg); |
| 4537 | while (lo < hi) { |
| 4538 | mid = (lo + hi) / 2; |
| 4539 | cmp = strcmp(confname, table[mid].name); |
| 4540 | if (cmp < 0) |
| 4541 | hi = mid; |
| 4542 | else if (cmp > 0) |
| 4543 | lo = mid + 1; |
| 4544 | else { |
| 4545 | *valuep = table[mid].value; |
| 4546 | return 1; |
| 4547 | } |
| 4548 | } |
| 4549 | PyErr_SetString(PyExc_ValueError, "unrecognized configuration name"); |
| 4550 | } |
| 4551 | else |
| 4552 | PyErr_SetString(PyExc_TypeError, |
| 4553 | "configuration names must be strings or integers"); |
| 4554 | return 0; |
| 4555 | } |
| 4556 | |
| 4557 | |
| 4558 | #if defined(HAVE_FPATHCONF) || defined(HAVE_PATHCONF) |
| 4559 | static struct constdef posix_constants_pathconf[] = { |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 4560 | #ifdef _PC_ABI_AIO_XFER_MAX |
| 4561 | {"PC_ABI_AIO_XFER_MAX", _PC_ABI_AIO_XFER_MAX}, |
| 4562 | #endif |
| 4563 | #ifdef _PC_ABI_ASYNC_IO |
| 4564 | {"PC_ABI_ASYNC_IO", _PC_ABI_ASYNC_IO}, |
| 4565 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 4566 | #ifdef _PC_ASYNC_IO |
| 4567 | {"PC_ASYNC_IO", _PC_ASYNC_IO}, |
| 4568 | #endif |
| 4569 | #ifdef _PC_CHOWN_RESTRICTED |
| 4570 | {"PC_CHOWN_RESTRICTED", _PC_CHOWN_RESTRICTED}, |
| 4571 | #endif |
| 4572 | #ifdef _PC_FILESIZEBITS |
| 4573 | {"PC_FILESIZEBITS", _PC_FILESIZEBITS}, |
| 4574 | #endif |
| 4575 | #ifdef _PC_LAST |
| 4576 | {"PC_LAST", _PC_LAST}, |
| 4577 | #endif |
| 4578 | #ifdef _PC_LINK_MAX |
| 4579 | {"PC_LINK_MAX", _PC_LINK_MAX}, |
| 4580 | #endif |
| 4581 | #ifdef _PC_MAX_CANON |
| 4582 | {"PC_MAX_CANON", _PC_MAX_CANON}, |
| 4583 | #endif |
| 4584 | #ifdef _PC_MAX_INPUT |
| 4585 | {"PC_MAX_INPUT", _PC_MAX_INPUT}, |
| 4586 | #endif |
| 4587 | #ifdef _PC_NAME_MAX |
| 4588 | {"PC_NAME_MAX", _PC_NAME_MAX}, |
| 4589 | #endif |
| 4590 | #ifdef _PC_NO_TRUNC |
| 4591 | {"PC_NO_TRUNC", _PC_NO_TRUNC}, |
| 4592 | #endif |
| 4593 | #ifdef _PC_PATH_MAX |
| 4594 | {"PC_PATH_MAX", _PC_PATH_MAX}, |
| 4595 | #endif |
| 4596 | #ifdef _PC_PIPE_BUF |
| 4597 | {"PC_PIPE_BUF", _PC_PIPE_BUF}, |
| 4598 | #endif |
| 4599 | #ifdef _PC_PRIO_IO |
| 4600 | {"PC_PRIO_IO", _PC_PRIO_IO}, |
| 4601 | #endif |
| 4602 | #ifdef _PC_SOCK_MAXBUF |
| 4603 | {"PC_SOCK_MAXBUF", _PC_SOCK_MAXBUF}, |
| 4604 | #endif |
| 4605 | #ifdef _PC_SYNC_IO |
| 4606 | {"PC_SYNC_IO", _PC_SYNC_IO}, |
| 4607 | #endif |
| 4608 | #ifdef _PC_VDISABLE |
| 4609 | {"PC_VDISABLE", _PC_VDISABLE}, |
| 4610 | #endif |
| 4611 | }; |
| 4612 | |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 4613 | static int |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 4614 | conv_path_confname(PyObject *arg, int *valuep) |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 4615 | { |
| 4616 | return conv_confname(arg, valuep, posix_constants_pathconf, |
| 4617 | sizeof(posix_constants_pathconf) |
| 4618 | / sizeof(struct constdef)); |
| 4619 | } |
| 4620 | #endif |
| 4621 | |
| 4622 | #ifdef HAVE_FPATHCONF |
| 4623 | static char posix_fpathconf__doc__[] = "\ |
| 4624 | fpathconf(fd, name) -> integer\n\ |
| 4625 | Return the configuration limit name for the file descriptor fd.\n\ |
| 4626 | If there is no limit, return -1."; |
| 4627 | |
| 4628 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 4629 | posix_fpathconf(PyObject *self, PyObject *args) |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 4630 | { |
| 4631 | PyObject *result = NULL; |
| 4632 | int name, fd; |
| 4633 | |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 4634 | if (PyArg_ParseTuple(args, "iO&:fpathconf", &fd, |
| 4635 | conv_path_confname, &name)) { |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 4636 | long limit; |
| 4637 | |
| 4638 | errno = 0; |
| 4639 | limit = fpathconf(fd, name); |
| 4640 | if (limit == -1 && errno != 0) |
| 4641 | posix_error(); |
| 4642 | else |
| 4643 | result = PyInt_FromLong(limit); |
| 4644 | } |
| 4645 | return result; |
| 4646 | } |
| 4647 | #endif |
| 4648 | |
| 4649 | |
| 4650 | #ifdef HAVE_PATHCONF |
| 4651 | static char posix_pathconf__doc__[] = "\ |
| 4652 | pathconf(path, name) -> integer\n\ |
| 4653 | Return the configuration limit name for the file or directory path.\n\ |
| 4654 | If there is no limit, return -1."; |
| 4655 | |
| 4656 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 4657 | posix_pathconf(PyObject *self, PyObject *args) |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 4658 | { |
| 4659 | PyObject *result = NULL; |
| 4660 | int name; |
| 4661 | char *path; |
| 4662 | |
| 4663 | if (PyArg_ParseTuple(args, "sO&:pathconf", &path, |
| 4664 | conv_path_confname, &name)) { |
| 4665 | long limit; |
| 4666 | |
| 4667 | errno = 0; |
| 4668 | limit = pathconf(path, name); |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 4669 | if (limit == -1 && errno != 0) { |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 4670 | if (errno == EINVAL) |
| 4671 | /* could be a path or name problem */ |
| 4672 | posix_error(); |
| 4673 | else |
| 4674 | posix_error_with_filename(path); |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 4675 | } |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 4676 | else |
| 4677 | result = PyInt_FromLong(limit); |
| 4678 | } |
| 4679 | return result; |
| 4680 | } |
| 4681 | #endif |
| 4682 | |
| 4683 | #ifdef HAVE_CONFSTR |
| 4684 | static struct constdef posix_constants_confstr[] = { |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 4685 | #ifdef _CS_ARCHITECTURE |
| 4686 | {"CS_ARCHITECTURE", _CS_ARCHITECTURE}, |
| 4687 | #endif |
| 4688 | #ifdef _CS_HOSTNAME |
| 4689 | {"CS_HOSTNAME", _CS_HOSTNAME}, |
| 4690 | #endif |
| 4691 | #ifdef _CS_HW_PROVIDER |
| 4692 | {"CS_HW_PROVIDER", _CS_HW_PROVIDER}, |
| 4693 | #endif |
| 4694 | #ifdef _CS_HW_SERIAL |
| 4695 | {"CS_HW_SERIAL", _CS_HW_SERIAL}, |
| 4696 | #endif |
| 4697 | #ifdef _CS_INITTAB_NAME |
| 4698 | {"CS_INITTAB_NAME", _CS_INITTAB_NAME}, |
| 4699 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 4700 | #ifdef _CS_LFS64_CFLAGS |
| 4701 | {"CS_LFS64_CFLAGS", _CS_LFS64_CFLAGS}, |
| 4702 | #endif |
| 4703 | #ifdef _CS_LFS64_LDFLAGS |
| 4704 | {"CS_LFS64_LDFLAGS", _CS_LFS64_LDFLAGS}, |
| 4705 | #endif |
| 4706 | #ifdef _CS_LFS64_LIBS |
| 4707 | {"CS_LFS64_LIBS", _CS_LFS64_LIBS}, |
| 4708 | #endif |
| 4709 | #ifdef _CS_LFS64_LINTFLAGS |
| 4710 | {"CS_LFS64_LINTFLAGS", _CS_LFS64_LINTFLAGS}, |
| 4711 | #endif |
| 4712 | #ifdef _CS_LFS_CFLAGS |
| 4713 | {"CS_LFS_CFLAGS", _CS_LFS_CFLAGS}, |
| 4714 | #endif |
| 4715 | #ifdef _CS_LFS_LDFLAGS |
| 4716 | {"CS_LFS_LDFLAGS", _CS_LFS_LDFLAGS}, |
| 4717 | #endif |
| 4718 | #ifdef _CS_LFS_LIBS |
| 4719 | {"CS_LFS_LIBS", _CS_LFS_LIBS}, |
| 4720 | #endif |
| 4721 | #ifdef _CS_LFS_LINTFLAGS |
| 4722 | {"CS_LFS_LINTFLAGS", _CS_LFS_LINTFLAGS}, |
| 4723 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 4724 | #ifdef _CS_MACHINE |
| 4725 | {"CS_MACHINE", _CS_MACHINE}, |
| 4726 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 4727 | #ifdef _CS_PATH |
| 4728 | {"CS_PATH", _CS_PATH}, |
| 4729 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 4730 | #ifdef _CS_RELEASE |
| 4731 | {"CS_RELEASE", _CS_RELEASE}, |
| 4732 | #endif |
| 4733 | #ifdef _CS_SRPC_DOMAIN |
| 4734 | {"CS_SRPC_DOMAIN", _CS_SRPC_DOMAIN}, |
| 4735 | #endif |
| 4736 | #ifdef _CS_SYSNAME |
| 4737 | {"CS_SYSNAME", _CS_SYSNAME}, |
| 4738 | #endif |
| 4739 | #ifdef _CS_VERSION |
| 4740 | {"CS_VERSION", _CS_VERSION}, |
| 4741 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 4742 | #ifdef _CS_XBS5_ILP32_OFF32_CFLAGS |
| 4743 | {"CS_XBS5_ILP32_OFF32_CFLAGS", _CS_XBS5_ILP32_OFF32_CFLAGS}, |
| 4744 | #endif |
| 4745 | #ifdef _CS_XBS5_ILP32_OFF32_LDFLAGS |
| 4746 | {"CS_XBS5_ILP32_OFF32_LDFLAGS", _CS_XBS5_ILP32_OFF32_LDFLAGS}, |
| 4747 | #endif |
| 4748 | #ifdef _CS_XBS5_ILP32_OFF32_LIBS |
| 4749 | {"CS_XBS5_ILP32_OFF32_LIBS", _CS_XBS5_ILP32_OFF32_LIBS}, |
| 4750 | #endif |
| 4751 | #ifdef _CS_XBS5_ILP32_OFF32_LINTFLAGS |
| 4752 | {"CS_XBS5_ILP32_OFF32_LINTFLAGS", _CS_XBS5_ILP32_OFF32_LINTFLAGS}, |
| 4753 | #endif |
| 4754 | #ifdef _CS_XBS5_ILP32_OFFBIG_CFLAGS |
| 4755 | {"CS_XBS5_ILP32_OFFBIG_CFLAGS", _CS_XBS5_ILP32_OFFBIG_CFLAGS}, |
| 4756 | #endif |
| 4757 | #ifdef _CS_XBS5_ILP32_OFFBIG_LDFLAGS |
| 4758 | {"CS_XBS5_ILP32_OFFBIG_LDFLAGS", _CS_XBS5_ILP32_OFFBIG_LDFLAGS}, |
| 4759 | #endif |
| 4760 | #ifdef _CS_XBS5_ILP32_OFFBIG_LIBS |
| 4761 | {"CS_XBS5_ILP32_OFFBIG_LIBS", _CS_XBS5_ILP32_OFFBIG_LIBS}, |
| 4762 | #endif |
| 4763 | #ifdef _CS_XBS5_ILP32_OFFBIG_LINTFLAGS |
| 4764 | {"CS_XBS5_ILP32_OFFBIG_LINTFLAGS", _CS_XBS5_ILP32_OFFBIG_LINTFLAGS}, |
| 4765 | #endif |
| 4766 | #ifdef _CS_XBS5_LP64_OFF64_CFLAGS |
| 4767 | {"CS_XBS5_LP64_OFF64_CFLAGS", _CS_XBS5_LP64_OFF64_CFLAGS}, |
| 4768 | #endif |
| 4769 | #ifdef _CS_XBS5_LP64_OFF64_LDFLAGS |
| 4770 | {"CS_XBS5_LP64_OFF64_LDFLAGS", _CS_XBS5_LP64_OFF64_LDFLAGS}, |
| 4771 | #endif |
| 4772 | #ifdef _CS_XBS5_LP64_OFF64_LIBS |
| 4773 | {"CS_XBS5_LP64_OFF64_LIBS", _CS_XBS5_LP64_OFF64_LIBS}, |
| 4774 | #endif |
| 4775 | #ifdef _CS_XBS5_LP64_OFF64_LINTFLAGS |
| 4776 | {"CS_XBS5_LP64_OFF64_LINTFLAGS", _CS_XBS5_LP64_OFF64_LINTFLAGS}, |
| 4777 | #endif |
| 4778 | #ifdef _CS_XBS5_LPBIG_OFFBIG_CFLAGS |
| 4779 | {"CS_XBS5_LPBIG_OFFBIG_CFLAGS", _CS_XBS5_LPBIG_OFFBIG_CFLAGS}, |
| 4780 | #endif |
| 4781 | #ifdef _CS_XBS5_LPBIG_OFFBIG_LDFLAGS |
| 4782 | {"CS_XBS5_LPBIG_OFFBIG_LDFLAGS", _CS_XBS5_LPBIG_OFFBIG_LDFLAGS}, |
| 4783 | #endif |
| 4784 | #ifdef _CS_XBS5_LPBIG_OFFBIG_LIBS |
| 4785 | {"CS_XBS5_LPBIG_OFFBIG_LIBS", _CS_XBS5_LPBIG_OFFBIG_LIBS}, |
| 4786 | #endif |
| 4787 | #ifdef _CS_XBS5_LPBIG_OFFBIG_LINTFLAGS |
| 4788 | {"CS_XBS5_LPBIG_OFFBIG_LINTFLAGS", _CS_XBS5_LPBIG_OFFBIG_LINTFLAGS}, |
| 4789 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 4790 | #ifdef _MIPS_CS_AVAIL_PROCESSORS |
| 4791 | {"MIPS_CS_AVAIL_PROCESSORS", _MIPS_CS_AVAIL_PROCESSORS}, |
| 4792 | #endif |
| 4793 | #ifdef _MIPS_CS_BASE |
| 4794 | {"MIPS_CS_BASE", _MIPS_CS_BASE}, |
| 4795 | #endif |
| 4796 | #ifdef _MIPS_CS_HOSTID |
| 4797 | {"MIPS_CS_HOSTID", _MIPS_CS_HOSTID}, |
| 4798 | #endif |
| 4799 | #ifdef _MIPS_CS_HW_NAME |
| 4800 | {"MIPS_CS_HW_NAME", _MIPS_CS_HW_NAME}, |
| 4801 | #endif |
| 4802 | #ifdef _MIPS_CS_NUM_PROCESSORS |
| 4803 | {"MIPS_CS_NUM_PROCESSORS", _MIPS_CS_NUM_PROCESSORS}, |
| 4804 | #endif |
| 4805 | #ifdef _MIPS_CS_OSREL_MAJ |
| 4806 | {"MIPS_CS_OSREL_MAJ", _MIPS_CS_OSREL_MAJ}, |
| 4807 | #endif |
| 4808 | #ifdef _MIPS_CS_OSREL_MIN |
| 4809 | {"MIPS_CS_OSREL_MIN", _MIPS_CS_OSREL_MIN}, |
| 4810 | #endif |
| 4811 | #ifdef _MIPS_CS_OSREL_PATCH |
| 4812 | {"MIPS_CS_OSREL_PATCH", _MIPS_CS_OSREL_PATCH}, |
| 4813 | #endif |
| 4814 | #ifdef _MIPS_CS_OS_NAME |
| 4815 | {"MIPS_CS_OS_NAME", _MIPS_CS_OS_NAME}, |
| 4816 | #endif |
| 4817 | #ifdef _MIPS_CS_OS_PROVIDER |
| 4818 | {"MIPS_CS_OS_PROVIDER", _MIPS_CS_OS_PROVIDER}, |
| 4819 | #endif |
| 4820 | #ifdef _MIPS_CS_PROCESSORS |
| 4821 | {"MIPS_CS_PROCESSORS", _MIPS_CS_PROCESSORS}, |
| 4822 | #endif |
| 4823 | #ifdef _MIPS_CS_SERIAL |
| 4824 | {"MIPS_CS_SERIAL", _MIPS_CS_SERIAL}, |
| 4825 | #endif |
| 4826 | #ifdef _MIPS_CS_VENDOR |
| 4827 | {"MIPS_CS_VENDOR", _MIPS_CS_VENDOR}, |
| 4828 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 4829 | }; |
| 4830 | |
| 4831 | static int |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 4832 | conv_confstr_confname(PyObject *arg, int *valuep) |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 4833 | { |
| 4834 | return conv_confname(arg, valuep, posix_constants_confstr, |
| 4835 | sizeof(posix_constants_confstr) |
| 4836 | / sizeof(struct constdef)); |
| 4837 | } |
| 4838 | |
| 4839 | static char posix_confstr__doc__[] = "\ |
| 4840 | confstr(name) -> string\n\ |
| 4841 | Return a string-valued system configuration variable."; |
| 4842 | |
| 4843 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 4844 | posix_confstr(PyObject *self, PyObject *args) |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 4845 | { |
| 4846 | PyObject *result = NULL; |
| 4847 | int name; |
| 4848 | char buffer[64]; |
| 4849 | |
| 4850 | if (PyArg_ParseTuple(args, "O&:confstr", conv_confstr_confname, &name)) { |
| 4851 | int len = confstr(name, buffer, sizeof(buffer)); |
| 4852 | |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 4853 | errno = 0; |
| 4854 | if (len == 0) { |
| 4855 | if (errno != 0) |
| 4856 | posix_error(); |
| 4857 | else |
| 4858 | result = PyString_FromString(""); |
| 4859 | } |
| 4860 | else { |
| 4861 | if (len >= sizeof(buffer)) { |
| 4862 | result = PyString_FromStringAndSize(NULL, len); |
| 4863 | if (result != NULL) |
| 4864 | confstr(name, PyString_AS_STRING(result), len+1); |
| 4865 | } |
| 4866 | else |
| 4867 | result = PyString_FromString(buffer); |
| 4868 | } |
| 4869 | } |
| 4870 | return result; |
| 4871 | } |
| 4872 | #endif |
| 4873 | |
| 4874 | |
| 4875 | #ifdef HAVE_SYSCONF |
| 4876 | static struct constdef posix_constants_sysconf[] = { |
| 4877 | #ifdef _SC_2_CHAR_TERM |
| 4878 | {"SC_2_CHAR_TERM", _SC_2_CHAR_TERM}, |
| 4879 | #endif |
| 4880 | #ifdef _SC_2_C_BIND |
| 4881 | {"SC_2_C_BIND", _SC_2_C_BIND}, |
| 4882 | #endif |
| 4883 | #ifdef _SC_2_C_DEV |
| 4884 | {"SC_2_C_DEV", _SC_2_C_DEV}, |
| 4885 | #endif |
| 4886 | #ifdef _SC_2_C_VERSION |
| 4887 | {"SC_2_C_VERSION", _SC_2_C_VERSION}, |
| 4888 | #endif |
| 4889 | #ifdef _SC_2_FORT_DEV |
| 4890 | {"SC_2_FORT_DEV", _SC_2_FORT_DEV}, |
| 4891 | #endif |
| 4892 | #ifdef _SC_2_FORT_RUN |
| 4893 | {"SC_2_FORT_RUN", _SC_2_FORT_RUN}, |
| 4894 | #endif |
| 4895 | #ifdef _SC_2_LOCALEDEF |
| 4896 | {"SC_2_LOCALEDEF", _SC_2_LOCALEDEF}, |
| 4897 | #endif |
| 4898 | #ifdef _SC_2_SW_DEV |
| 4899 | {"SC_2_SW_DEV", _SC_2_SW_DEV}, |
| 4900 | #endif |
| 4901 | #ifdef _SC_2_UPE |
| 4902 | {"SC_2_UPE", _SC_2_UPE}, |
| 4903 | #endif |
| 4904 | #ifdef _SC_2_VERSION |
| 4905 | {"SC_2_VERSION", _SC_2_VERSION}, |
| 4906 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 4907 | #ifdef _SC_ABI_ASYNCHRONOUS_IO |
| 4908 | {"SC_ABI_ASYNCHRONOUS_IO", _SC_ABI_ASYNCHRONOUS_IO}, |
| 4909 | #endif |
| 4910 | #ifdef _SC_ACL |
| 4911 | {"SC_ACL", _SC_ACL}, |
| 4912 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 4913 | #ifdef _SC_AIO_LISTIO_MAX |
| 4914 | {"SC_AIO_LISTIO_MAX", _SC_AIO_LISTIO_MAX}, |
| 4915 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 4916 | #ifdef _SC_AIO_MAX |
| 4917 | {"SC_AIO_MAX", _SC_AIO_MAX}, |
| 4918 | #endif |
| 4919 | #ifdef _SC_AIO_PRIO_DELTA_MAX |
| 4920 | {"SC_AIO_PRIO_DELTA_MAX", _SC_AIO_PRIO_DELTA_MAX}, |
| 4921 | #endif |
| 4922 | #ifdef _SC_ARG_MAX |
| 4923 | {"SC_ARG_MAX", _SC_ARG_MAX}, |
| 4924 | #endif |
| 4925 | #ifdef _SC_ASYNCHRONOUS_IO |
| 4926 | {"SC_ASYNCHRONOUS_IO", _SC_ASYNCHRONOUS_IO}, |
| 4927 | #endif |
| 4928 | #ifdef _SC_ATEXIT_MAX |
| 4929 | {"SC_ATEXIT_MAX", _SC_ATEXIT_MAX}, |
| 4930 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 4931 | #ifdef _SC_AUDIT |
| 4932 | {"SC_AUDIT", _SC_AUDIT}, |
| 4933 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 4934 | #ifdef _SC_AVPHYS_PAGES |
| 4935 | {"SC_AVPHYS_PAGES", _SC_AVPHYS_PAGES}, |
| 4936 | #endif |
| 4937 | #ifdef _SC_BC_BASE_MAX |
| 4938 | {"SC_BC_BASE_MAX", _SC_BC_BASE_MAX}, |
| 4939 | #endif |
| 4940 | #ifdef _SC_BC_DIM_MAX |
| 4941 | {"SC_BC_DIM_MAX", _SC_BC_DIM_MAX}, |
| 4942 | #endif |
| 4943 | #ifdef _SC_BC_SCALE_MAX |
| 4944 | {"SC_BC_SCALE_MAX", _SC_BC_SCALE_MAX}, |
| 4945 | #endif |
| 4946 | #ifdef _SC_BC_STRING_MAX |
| 4947 | {"SC_BC_STRING_MAX", _SC_BC_STRING_MAX}, |
| 4948 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 4949 | #ifdef _SC_CAP |
| 4950 | {"SC_CAP", _SC_CAP}, |
| 4951 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 4952 | #ifdef _SC_CHARCLASS_NAME_MAX |
| 4953 | {"SC_CHARCLASS_NAME_MAX", _SC_CHARCLASS_NAME_MAX}, |
| 4954 | #endif |
| 4955 | #ifdef _SC_CHAR_BIT |
| 4956 | {"SC_CHAR_BIT", _SC_CHAR_BIT}, |
| 4957 | #endif |
| 4958 | #ifdef _SC_CHAR_MAX |
| 4959 | {"SC_CHAR_MAX", _SC_CHAR_MAX}, |
| 4960 | #endif |
| 4961 | #ifdef _SC_CHAR_MIN |
| 4962 | {"SC_CHAR_MIN", _SC_CHAR_MIN}, |
| 4963 | #endif |
| 4964 | #ifdef _SC_CHILD_MAX |
| 4965 | {"SC_CHILD_MAX", _SC_CHILD_MAX}, |
| 4966 | #endif |
| 4967 | #ifdef _SC_CLK_TCK |
| 4968 | {"SC_CLK_TCK", _SC_CLK_TCK}, |
| 4969 | #endif |
| 4970 | #ifdef _SC_COHER_BLKSZ |
| 4971 | {"SC_COHER_BLKSZ", _SC_COHER_BLKSZ}, |
| 4972 | #endif |
| 4973 | #ifdef _SC_COLL_WEIGHTS_MAX |
| 4974 | {"SC_COLL_WEIGHTS_MAX", _SC_COLL_WEIGHTS_MAX}, |
| 4975 | #endif |
| 4976 | #ifdef _SC_DCACHE_ASSOC |
| 4977 | {"SC_DCACHE_ASSOC", _SC_DCACHE_ASSOC}, |
| 4978 | #endif |
| 4979 | #ifdef _SC_DCACHE_BLKSZ |
| 4980 | {"SC_DCACHE_BLKSZ", _SC_DCACHE_BLKSZ}, |
| 4981 | #endif |
| 4982 | #ifdef _SC_DCACHE_LINESZ |
| 4983 | {"SC_DCACHE_LINESZ", _SC_DCACHE_LINESZ}, |
| 4984 | #endif |
| 4985 | #ifdef _SC_DCACHE_SZ |
| 4986 | {"SC_DCACHE_SZ", _SC_DCACHE_SZ}, |
| 4987 | #endif |
| 4988 | #ifdef _SC_DCACHE_TBLKSZ |
| 4989 | {"SC_DCACHE_TBLKSZ", _SC_DCACHE_TBLKSZ}, |
| 4990 | #endif |
| 4991 | #ifdef _SC_DELAYTIMER_MAX |
| 4992 | {"SC_DELAYTIMER_MAX", _SC_DELAYTIMER_MAX}, |
| 4993 | #endif |
| 4994 | #ifdef _SC_EQUIV_CLASS_MAX |
| 4995 | {"SC_EQUIV_CLASS_MAX", _SC_EQUIV_CLASS_MAX}, |
| 4996 | #endif |
| 4997 | #ifdef _SC_EXPR_NEST_MAX |
| 4998 | {"SC_EXPR_NEST_MAX", _SC_EXPR_NEST_MAX}, |
| 4999 | #endif |
| 5000 | #ifdef _SC_FSYNC |
| 5001 | {"SC_FSYNC", _SC_FSYNC}, |
| 5002 | #endif |
| 5003 | #ifdef _SC_GETGR_R_SIZE_MAX |
| 5004 | {"SC_GETGR_R_SIZE_MAX", _SC_GETGR_R_SIZE_MAX}, |
| 5005 | #endif |
| 5006 | #ifdef _SC_GETPW_R_SIZE_MAX |
| 5007 | {"SC_GETPW_R_SIZE_MAX", _SC_GETPW_R_SIZE_MAX}, |
| 5008 | #endif |
| 5009 | #ifdef _SC_ICACHE_ASSOC |
| 5010 | {"SC_ICACHE_ASSOC", _SC_ICACHE_ASSOC}, |
| 5011 | #endif |
| 5012 | #ifdef _SC_ICACHE_BLKSZ |
| 5013 | {"SC_ICACHE_BLKSZ", _SC_ICACHE_BLKSZ}, |
| 5014 | #endif |
| 5015 | #ifdef _SC_ICACHE_LINESZ |
| 5016 | {"SC_ICACHE_LINESZ", _SC_ICACHE_LINESZ}, |
| 5017 | #endif |
| 5018 | #ifdef _SC_ICACHE_SZ |
| 5019 | {"SC_ICACHE_SZ", _SC_ICACHE_SZ}, |
| 5020 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 5021 | #ifdef _SC_INF |
| 5022 | {"SC_INF", _SC_INF}, |
| 5023 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 5024 | #ifdef _SC_INT_MAX |
| 5025 | {"SC_INT_MAX", _SC_INT_MAX}, |
| 5026 | #endif |
| 5027 | #ifdef _SC_INT_MIN |
| 5028 | {"SC_INT_MIN", _SC_INT_MIN}, |
| 5029 | #endif |
| 5030 | #ifdef _SC_IOV_MAX |
| 5031 | {"SC_IOV_MAX", _SC_IOV_MAX}, |
| 5032 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 5033 | #ifdef _SC_IP_SECOPTS |
| 5034 | {"SC_IP_SECOPTS", _SC_IP_SECOPTS}, |
| 5035 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 5036 | #ifdef _SC_JOB_CONTROL |
| 5037 | {"SC_JOB_CONTROL", _SC_JOB_CONTROL}, |
| 5038 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 5039 | #ifdef _SC_KERN_POINTERS |
| 5040 | {"SC_KERN_POINTERS", _SC_KERN_POINTERS}, |
| 5041 | #endif |
| 5042 | #ifdef _SC_KERN_SIM |
| 5043 | {"SC_KERN_SIM", _SC_KERN_SIM}, |
| 5044 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 5045 | #ifdef _SC_LINE_MAX |
| 5046 | {"SC_LINE_MAX", _SC_LINE_MAX}, |
| 5047 | #endif |
| 5048 | #ifdef _SC_LOGIN_NAME_MAX |
| 5049 | {"SC_LOGIN_NAME_MAX", _SC_LOGIN_NAME_MAX}, |
| 5050 | #endif |
| 5051 | #ifdef _SC_LOGNAME_MAX |
| 5052 | {"SC_LOGNAME_MAX", _SC_LOGNAME_MAX}, |
| 5053 | #endif |
| 5054 | #ifdef _SC_LONG_BIT |
| 5055 | {"SC_LONG_BIT", _SC_LONG_BIT}, |
| 5056 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 5057 | #ifdef _SC_MAC |
| 5058 | {"SC_MAC", _SC_MAC}, |
| 5059 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 5060 | #ifdef _SC_MAPPED_FILES |
| 5061 | {"SC_MAPPED_FILES", _SC_MAPPED_FILES}, |
| 5062 | #endif |
| 5063 | #ifdef _SC_MAXPID |
| 5064 | {"SC_MAXPID", _SC_MAXPID}, |
| 5065 | #endif |
| 5066 | #ifdef _SC_MB_LEN_MAX |
| 5067 | {"SC_MB_LEN_MAX", _SC_MB_LEN_MAX}, |
| 5068 | #endif |
| 5069 | #ifdef _SC_MEMLOCK |
| 5070 | {"SC_MEMLOCK", _SC_MEMLOCK}, |
| 5071 | #endif |
| 5072 | #ifdef _SC_MEMLOCK_RANGE |
| 5073 | {"SC_MEMLOCK_RANGE", _SC_MEMLOCK_RANGE}, |
| 5074 | #endif |
| 5075 | #ifdef _SC_MEMORY_PROTECTION |
| 5076 | {"SC_MEMORY_PROTECTION", _SC_MEMORY_PROTECTION}, |
| 5077 | #endif |
| 5078 | #ifdef _SC_MESSAGE_PASSING |
| 5079 | {"SC_MESSAGE_PASSING", _SC_MESSAGE_PASSING}, |
| 5080 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 5081 | #ifdef _SC_MMAP_FIXED_ALIGNMENT |
| 5082 | {"SC_MMAP_FIXED_ALIGNMENT", _SC_MMAP_FIXED_ALIGNMENT}, |
| 5083 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 5084 | #ifdef _SC_MQ_OPEN_MAX |
| 5085 | {"SC_MQ_OPEN_MAX", _SC_MQ_OPEN_MAX}, |
| 5086 | #endif |
| 5087 | #ifdef _SC_MQ_PRIO_MAX |
| 5088 | {"SC_MQ_PRIO_MAX", _SC_MQ_PRIO_MAX}, |
| 5089 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 5090 | #ifdef _SC_NACLS_MAX |
| 5091 | {"SC_NACLS_MAX", _SC_NACLS_MAX}, |
| 5092 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 5093 | #ifdef _SC_NGROUPS_MAX |
| 5094 | {"SC_NGROUPS_MAX", _SC_NGROUPS_MAX}, |
| 5095 | #endif |
| 5096 | #ifdef _SC_NL_ARGMAX |
| 5097 | {"SC_NL_ARGMAX", _SC_NL_ARGMAX}, |
| 5098 | #endif |
| 5099 | #ifdef _SC_NL_LANGMAX |
| 5100 | {"SC_NL_LANGMAX", _SC_NL_LANGMAX}, |
| 5101 | #endif |
| 5102 | #ifdef _SC_NL_MSGMAX |
| 5103 | {"SC_NL_MSGMAX", _SC_NL_MSGMAX}, |
| 5104 | #endif |
| 5105 | #ifdef _SC_NL_NMAX |
| 5106 | {"SC_NL_NMAX", _SC_NL_NMAX}, |
| 5107 | #endif |
| 5108 | #ifdef _SC_NL_SETMAX |
| 5109 | {"SC_NL_SETMAX", _SC_NL_SETMAX}, |
| 5110 | #endif |
| 5111 | #ifdef _SC_NL_TEXTMAX |
| 5112 | {"SC_NL_TEXTMAX", _SC_NL_TEXTMAX}, |
| 5113 | #endif |
| 5114 | #ifdef _SC_NPROCESSORS_CONF |
| 5115 | {"SC_NPROCESSORS_CONF", _SC_NPROCESSORS_CONF}, |
| 5116 | #endif |
| 5117 | #ifdef _SC_NPROCESSORS_ONLN |
| 5118 | {"SC_NPROCESSORS_ONLN", _SC_NPROCESSORS_ONLN}, |
| 5119 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 5120 | #ifdef _SC_NPROC_CONF |
| 5121 | {"SC_NPROC_CONF", _SC_NPROC_CONF}, |
| 5122 | #endif |
| 5123 | #ifdef _SC_NPROC_ONLN |
| 5124 | {"SC_NPROC_ONLN", _SC_NPROC_ONLN}, |
| 5125 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 5126 | #ifdef _SC_NZERO |
| 5127 | {"SC_NZERO", _SC_NZERO}, |
| 5128 | #endif |
| 5129 | #ifdef _SC_OPEN_MAX |
| 5130 | {"SC_OPEN_MAX", _SC_OPEN_MAX}, |
| 5131 | #endif |
| 5132 | #ifdef _SC_PAGESIZE |
| 5133 | {"SC_PAGESIZE", _SC_PAGESIZE}, |
| 5134 | #endif |
| 5135 | #ifdef _SC_PAGE_SIZE |
| 5136 | {"SC_PAGE_SIZE", _SC_PAGE_SIZE}, |
| 5137 | #endif |
| 5138 | #ifdef _SC_PASS_MAX |
| 5139 | {"SC_PASS_MAX", _SC_PASS_MAX}, |
| 5140 | #endif |
| 5141 | #ifdef _SC_PHYS_PAGES |
| 5142 | {"SC_PHYS_PAGES", _SC_PHYS_PAGES}, |
| 5143 | #endif |
| 5144 | #ifdef _SC_PII |
| 5145 | {"SC_PII", _SC_PII}, |
| 5146 | #endif |
| 5147 | #ifdef _SC_PII_INTERNET |
| 5148 | {"SC_PII_INTERNET", _SC_PII_INTERNET}, |
| 5149 | #endif |
| 5150 | #ifdef _SC_PII_INTERNET_DGRAM |
| 5151 | {"SC_PII_INTERNET_DGRAM", _SC_PII_INTERNET_DGRAM}, |
| 5152 | #endif |
| 5153 | #ifdef _SC_PII_INTERNET_STREAM |
| 5154 | {"SC_PII_INTERNET_STREAM", _SC_PII_INTERNET_STREAM}, |
| 5155 | #endif |
| 5156 | #ifdef _SC_PII_OSI |
| 5157 | {"SC_PII_OSI", _SC_PII_OSI}, |
| 5158 | #endif |
| 5159 | #ifdef _SC_PII_OSI_CLTS |
| 5160 | {"SC_PII_OSI_CLTS", _SC_PII_OSI_CLTS}, |
| 5161 | #endif |
| 5162 | #ifdef _SC_PII_OSI_COTS |
| 5163 | {"SC_PII_OSI_COTS", _SC_PII_OSI_COTS}, |
| 5164 | #endif |
| 5165 | #ifdef _SC_PII_OSI_M |
| 5166 | {"SC_PII_OSI_M", _SC_PII_OSI_M}, |
| 5167 | #endif |
| 5168 | #ifdef _SC_PII_SOCKET |
| 5169 | {"SC_PII_SOCKET", _SC_PII_SOCKET}, |
| 5170 | #endif |
| 5171 | #ifdef _SC_PII_XTI |
| 5172 | {"SC_PII_XTI", _SC_PII_XTI}, |
| 5173 | #endif |
| 5174 | #ifdef _SC_POLL |
| 5175 | {"SC_POLL", _SC_POLL}, |
| 5176 | #endif |
| 5177 | #ifdef _SC_PRIORITIZED_IO |
| 5178 | {"SC_PRIORITIZED_IO", _SC_PRIORITIZED_IO}, |
| 5179 | #endif |
| 5180 | #ifdef _SC_PRIORITY_SCHEDULING |
| 5181 | {"SC_PRIORITY_SCHEDULING", _SC_PRIORITY_SCHEDULING}, |
| 5182 | #endif |
| 5183 | #ifdef _SC_REALTIME_SIGNALS |
| 5184 | {"SC_REALTIME_SIGNALS", _SC_REALTIME_SIGNALS}, |
| 5185 | #endif |
| 5186 | #ifdef _SC_RE_DUP_MAX |
| 5187 | {"SC_RE_DUP_MAX", _SC_RE_DUP_MAX}, |
| 5188 | #endif |
| 5189 | #ifdef _SC_RTSIG_MAX |
| 5190 | {"SC_RTSIG_MAX", _SC_RTSIG_MAX}, |
| 5191 | #endif |
| 5192 | #ifdef _SC_SAVED_IDS |
| 5193 | {"SC_SAVED_IDS", _SC_SAVED_IDS}, |
| 5194 | #endif |
| 5195 | #ifdef _SC_SCHAR_MAX |
| 5196 | {"SC_SCHAR_MAX", _SC_SCHAR_MAX}, |
| 5197 | #endif |
| 5198 | #ifdef _SC_SCHAR_MIN |
| 5199 | {"SC_SCHAR_MIN", _SC_SCHAR_MIN}, |
| 5200 | #endif |
| 5201 | #ifdef _SC_SELECT |
| 5202 | {"SC_SELECT", _SC_SELECT}, |
| 5203 | #endif |
| 5204 | #ifdef _SC_SEMAPHORES |
| 5205 | {"SC_SEMAPHORES", _SC_SEMAPHORES}, |
| 5206 | #endif |
| 5207 | #ifdef _SC_SEM_NSEMS_MAX |
| 5208 | {"SC_SEM_NSEMS_MAX", _SC_SEM_NSEMS_MAX}, |
| 5209 | #endif |
| 5210 | #ifdef _SC_SEM_VALUE_MAX |
| 5211 | {"SC_SEM_VALUE_MAX", _SC_SEM_VALUE_MAX}, |
| 5212 | #endif |
| 5213 | #ifdef _SC_SHARED_MEMORY_OBJECTS |
| 5214 | {"SC_SHARED_MEMORY_OBJECTS", _SC_SHARED_MEMORY_OBJECTS}, |
| 5215 | #endif |
| 5216 | #ifdef _SC_SHRT_MAX |
| 5217 | {"SC_SHRT_MAX", _SC_SHRT_MAX}, |
| 5218 | #endif |
| 5219 | #ifdef _SC_SHRT_MIN |
| 5220 | {"SC_SHRT_MIN", _SC_SHRT_MIN}, |
| 5221 | #endif |
| 5222 | #ifdef _SC_SIGQUEUE_MAX |
| 5223 | {"SC_SIGQUEUE_MAX", _SC_SIGQUEUE_MAX}, |
| 5224 | #endif |
| 5225 | #ifdef _SC_SIGRT_MAX |
| 5226 | {"SC_SIGRT_MAX", _SC_SIGRT_MAX}, |
| 5227 | #endif |
| 5228 | #ifdef _SC_SIGRT_MIN |
| 5229 | {"SC_SIGRT_MIN", _SC_SIGRT_MIN}, |
| 5230 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 5231 | #ifdef _SC_SOFTPOWER |
| 5232 | {"SC_SOFTPOWER", _SC_SOFTPOWER}, |
| 5233 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 5234 | #ifdef _SC_SPLIT_CACHE |
| 5235 | {"SC_SPLIT_CACHE", _SC_SPLIT_CACHE}, |
| 5236 | #endif |
| 5237 | #ifdef _SC_SSIZE_MAX |
| 5238 | {"SC_SSIZE_MAX", _SC_SSIZE_MAX}, |
| 5239 | #endif |
| 5240 | #ifdef _SC_STACK_PROT |
| 5241 | {"SC_STACK_PROT", _SC_STACK_PROT}, |
| 5242 | #endif |
| 5243 | #ifdef _SC_STREAM_MAX |
| 5244 | {"SC_STREAM_MAX", _SC_STREAM_MAX}, |
| 5245 | #endif |
| 5246 | #ifdef _SC_SYNCHRONIZED_IO |
| 5247 | {"SC_SYNCHRONIZED_IO", _SC_SYNCHRONIZED_IO}, |
| 5248 | #endif |
| 5249 | #ifdef _SC_THREADS |
| 5250 | {"SC_THREADS", _SC_THREADS}, |
| 5251 | #endif |
| 5252 | #ifdef _SC_THREAD_ATTR_STACKADDR |
| 5253 | {"SC_THREAD_ATTR_STACKADDR", _SC_THREAD_ATTR_STACKADDR}, |
| 5254 | #endif |
| 5255 | #ifdef _SC_THREAD_ATTR_STACKSIZE |
| 5256 | {"SC_THREAD_ATTR_STACKSIZE", _SC_THREAD_ATTR_STACKSIZE}, |
| 5257 | #endif |
| 5258 | #ifdef _SC_THREAD_DESTRUCTOR_ITERATIONS |
| 5259 | {"SC_THREAD_DESTRUCTOR_ITERATIONS", _SC_THREAD_DESTRUCTOR_ITERATIONS}, |
| 5260 | #endif |
| 5261 | #ifdef _SC_THREAD_KEYS_MAX |
| 5262 | {"SC_THREAD_KEYS_MAX", _SC_THREAD_KEYS_MAX}, |
| 5263 | #endif |
| 5264 | #ifdef _SC_THREAD_PRIORITY_SCHEDULING |
| 5265 | {"SC_THREAD_PRIORITY_SCHEDULING", _SC_THREAD_PRIORITY_SCHEDULING}, |
| 5266 | #endif |
| 5267 | #ifdef _SC_THREAD_PRIO_INHERIT |
| 5268 | {"SC_THREAD_PRIO_INHERIT", _SC_THREAD_PRIO_INHERIT}, |
| 5269 | #endif |
| 5270 | #ifdef _SC_THREAD_PRIO_PROTECT |
| 5271 | {"SC_THREAD_PRIO_PROTECT", _SC_THREAD_PRIO_PROTECT}, |
| 5272 | #endif |
| 5273 | #ifdef _SC_THREAD_PROCESS_SHARED |
| 5274 | {"SC_THREAD_PROCESS_SHARED", _SC_THREAD_PROCESS_SHARED}, |
| 5275 | #endif |
| 5276 | #ifdef _SC_THREAD_SAFE_FUNCTIONS |
| 5277 | {"SC_THREAD_SAFE_FUNCTIONS", _SC_THREAD_SAFE_FUNCTIONS}, |
| 5278 | #endif |
| 5279 | #ifdef _SC_THREAD_STACK_MIN |
| 5280 | {"SC_THREAD_STACK_MIN", _SC_THREAD_STACK_MIN}, |
| 5281 | #endif |
| 5282 | #ifdef _SC_THREAD_THREADS_MAX |
| 5283 | {"SC_THREAD_THREADS_MAX", _SC_THREAD_THREADS_MAX}, |
| 5284 | #endif |
| 5285 | #ifdef _SC_TIMERS |
| 5286 | {"SC_TIMERS", _SC_TIMERS}, |
| 5287 | #endif |
| 5288 | #ifdef _SC_TIMER_MAX |
| 5289 | {"SC_TIMER_MAX", _SC_TIMER_MAX}, |
| 5290 | #endif |
| 5291 | #ifdef _SC_TTY_NAME_MAX |
| 5292 | {"SC_TTY_NAME_MAX", _SC_TTY_NAME_MAX}, |
| 5293 | #endif |
| 5294 | #ifdef _SC_TZNAME_MAX |
| 5295 | {"SC_TZNAME_MAX", _SC_TZNAME_MAX}, |
| 5296 | #endif |
| 5297 | #ifdef _SC_T_IOV_MAX |
| 5298 | {"SC_T_IOV_MAX", _SC_T_IOV_MAX}, |
| 5299 | #endif |
| 5300 | #ifdef _SC_UCHAR_MAX |
| 5301 | {"SC_UCHAR_MAX", _SC_UCHAR_MAX}, |
| 5302 | #endif |
| 5303 | #ifdef _SC_UINT_MAX |
| 5304 | {"SC_UINT_MAX", _SC_UINT_MAX}, |
| 5305 | #endif |
| 5306 | #ifdef _SC_UIO_MAXIOV |
| 5307 | {"SC_UIO_MAXIOV", _SC_UIO_MAXIOV}, |
| 5308 | #endif |
| 5309 | #ifdef _SC_ULONG_MAX |
| 5310 | {"SC_ULONG_MAX", _SC_ULONG_MAX}, |
| 5311 | #endif |
| 5312 | #ifdef _SC_USHRT_MAX |
| 5313 | {"SC_USHRT_MAX", _SC_USHRT_MAX}, |
| 5314 | #endif |
| 5315 | #ifdef _SC_VERSION |
| 5316 | {"SC_VERSION", _SC_VERSION}, |
| 5317 | #endif |
| 5318 | #ifdef _SC_WORD_BIT |
| 5319 | {"SC_WORD_BIT", _SC_WORD_BIT}, |
| 5320 | #endif |
| 5321 | #ifdef _SC_XBS5_ILP32_OFF32 |
| 5322 | {"SC_XBS5_ILP32_OFF32", _SC_XBS5_ILP32_OFF32}, |
| 5323 | #endif |
| 5324 | #ifdef _SC_XBS5_ILP32_OFFBIG |
| 5325 | {"SC_XBS5_ILP32_OFFBIG", _SC_XBS5_ILP32_OFFBIG}, |
| 5326 | #endif |
| 5327 | #ifdef _SC_XBS5_LP64_OFF64 |
| 5328 | {"SC_XBS5_LP64_OFF64", _SC_XBS5_LP64_OFF64}, |
| 5329 | #endif |
| 5330 | #ifdef _SC_XBS5_LPBIG_OFFBIG |
| 5331 | {"SC_XBS5_LPBIG_OFFBIG", _SC_XBS5_LPBIG_OFFBIG}, |
| 5332 | #endif |
| 5333 | #ifdef _SC_XOPEN_CRYPT |
| 5334 | {"SC_XOPEN_CRYPT", _SC_XOPEN_CRYPT}, |
| 5335 | #endif |
| 5336 | #ifdef _SC_XOPEN_ENH_I18N |
| 5337 | {"SC_XOPEN_ENH_I18N", _SC_XOPEN_ENH_I18N}, |
| 5338 | #endif |
| 5339 | #ifdef _SC_XOPEN_LEGACY |
| 5340 | {"SC_XOPEN_LEGACY", _SC_XOPEN_LEGACY}, |
| 5341 | #endif |
| 5342 | #ifdef _SC_XOPEN_REALTIME |
| 5343 | {"SC_XOPEN_REALTIME", _SC_XOPEN_REALTIME}, |
| 5344 | #endif |
| 5345 | #ifdef _SC_XOPEN_REALTIME_THREADS |
| 5346 | {"SC_XOPEN_REALTIME_THREADS", _SC_XOPEN_REALTIME_THREADS}, |
| 5347 | #endif |
| 5348 | #ifdef _SC_XOPEN_SHM |
| 5349 | {"SC_XOPEN_SHM", _SC_XOPEN_SHM}, |
| 5350 | #endif |
| 5351 | #ifdef _SC_XOPEN_UNIX |
| 5352 | {"SC_XOPEN_UNIX", _SC_XOPEN_UNIX}, |
| 5353 | #endif |
| 5354 | #ifdef _SC_XOPEN_VERSION |
| 5355 | {"SC_XOPEN_VERSION", _SC_XOPEN_VERSION}, |
| 5356 | #endif |
| 5357 | #ifdef _SC_XOPEN_XCU_VERSION |
| 5358 | {"SC_XOPEN_XCU_VERSION", _SC_XOPEN_XCU_VERSION}, |
| 5359 | #endif |
| 5360 | #ifdef _SC_XOPEN_XPG2 |
| 5361 | {"SC_XOPEN_XPG2", _SC_XOPEN_XPG2}, |
| 5362 | #endif |
| 5363 | #ifdef _SC_XOPEN_XPG3 |
| 5364 | {"SC_XOPEN_XPG3", _SC_XOPEN_XPG3}, |
| 5365 | #endif |
| 5366 | #ifdef _SC_XOPEN_XPG4 |
| 5367 | {"SC_XOPEN_XPG4", _SC_XOPEN_XPG4}, |
| 5368 | #endif |
| 5369 | }; |
| 5370 | |
| 5371 | static int |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 5372 | conv_sysconf_confname(PyObject *arg, int *valuep) |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 5373 | { |
| 5374 | return conv_confname(arg, valuep, posix_constants_sysconf, |
| 5375 | sizeof(posix_constants_sysconf) |
| 5376 | / sizeof(struct constdef)); |
| 5377 | } |
| 5378 | |
| 5379 | static char posix_sysconf__doc__[] = "\ |
| 5380 | sysconf(name) -> integer\n\ |
| 5381 | Return an integer-valued system configuration variable."; |
| 5382 | |
| 5383 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 5384 | posix_sysconf(PyObject *self, PyObject *args) |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 5385 | { |
| 5386 | PyObject *result = NULL; |
| 5387 | int name; |
| 5388 | |
| 5389 | if (PyArg_ParseTuple(args, "O&:sysconf", conv_sysconf_confname, &name)) { |
| 5390 | int value; |
| 5391 | |
| 5392 | errno = 0; |
| 5393 | value = sysconf(name); |
| 5394 | if (value == -1 && errno != 0) |
| 5395 | posix_error(); |
| 5396 | else |
| 5397 | result = PyInt_FromLong(value); |
| 5398 | } |
| 5399 | return result; |
| 5400 | } |
| 5401 | #endif |
| 5402 | |
| 5403 | |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 5404 | /* This code is used to ensure that the tables of configuration value names |
| 5405 | * are in sorted order as required by conv_confname(), and also to build the |
| 5406 | * the exported dictionaries that are used to publish information about the |
| 5407 | * names available on the host platform. |
| 5408 | * |
| 5409 | * Sorting the table at runtime ensures that the table is properly ordered |
| 5410 | * when used, even for platforms we're not able to test on. It also makes |
| 5411 | * it easier to add additional entries to the tables. |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 5412 | */ |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 5413 | |
| 5414 | static int |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 5415 | cmp_constdefs(const void *v1, const void *v2) |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 5416 | { |
| 5417 | const struct constdef *c1 = |
| 5418 | (const struct constdef *) v1; |
| 5419 | const struct constdef *c2 = |
| 5420 | (const struct constdef *) v2; |
| 5421 | |
| 5422 | return strcmp(c1->name, c2->name); |
| 5423 | } |
| 5424 | |
| 5425 | static int |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 5426 | setup_confname_table(struct constdef *table, size_t tablesize, |
| 5427 | char *tablename, PyObject *moddict) |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 5428 | { |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 5429 | PyObject *d = NULL; |
Barry Warsaw | 3155db3 | 2000-04-13 15:20:40 +0000 | [diff] [blame] | 5430 | size_t i; |
| 5431 | int status; |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 5432 | |
| 5433 | qsort(table, tablesize, sizeof(struct constdef), cmp_constdefs); |
| 5434 | d = PyDict_New(); |
Barry Warsaw | 3155db3 | 2000-04-13 15:20:40 +0000 | [diff] [blame] | 5435 | if (d == NULL) |
| 5436 | return -1; |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 5437 | |
Barry Warsaw | 3155db3 | 2000-04-13 15:20:40 +0000 | [diff] [blame] | 5438 | for (i=0; i < tablesize; ++i) { |
| 5439 | PyObject *o = PyInt_FromLong(table[i].value); |
| 5440 | if (o == NULL || PyDict_SetItemString(d, table[i].name, o) == -1) { |
| 5441 | Py_XDECREF(o); |
| 5442 | Py_DECREF(d); |
| 5443 | return -1; |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 5444 | } |
Barry Warsaw | 3155db3 | 2000-04-13 15:20:40 +0000 | [diff] [blame] | 5445 | Py_DECREF(o); |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 5446 | } |
Barry Warsaw | 3155db3 | 2000-04-13 15:20:40 +0000 | [diff] [blame] | 5447 | status = PyDict_SetItemString(moddict, tablename, d); |
| 5448 | Py_DECREF(d); |
| 5449 | return status; |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 5450 | } |
| 5451 | |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 5452 | /* Return -1 on failure, 0 on success. */ |
| 5453 | static int |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 5454 | setup_confname_tables(PyObject *moddict) |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 5455 | { |
| 5456 | #if defined(HAVE_FPATHCONF) || defined(HAVE_PATHCONF) |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 5457 | if (setup_confname_table(posix_constants_pathconf, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 5458 | sizeof(posix_constants_pathconf) |
| 5459 | / sizeof(struct constdef), |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 5460 | "pathconf_names", moddict)) |
| 5461 | return -1; |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 5462 | #endif |
| 5463 | #ifdef HAVE_CONFSTR |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 5464 | if (setup_confname_table(posix_constants_confstr, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 5465 | sizeof(posix_constants_confstr) |
| 5466 | / sizeof(struct constdef), |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 5467 | "confstr_names", moddict)) |
| 5468 | return -1; |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 5469 | #endif |
| 5470 | #ifdef HAVE_SYSCONF |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 5471 | if (setup_confname_table(posix_constants_sysconf, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 5472 | sizeof(posix_constants_sysconf) |
| 5473 | / sizeof(struct constdef), |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 5474 | "sysconf_names", moddict)) |
| 5475 | return -1; |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 5476 | #endif |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 5477 | return 0; |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 5478 | } |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 5479 | |
| 5480 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5481 | static char posix_abort__doc__[] = "\ |
| 5482 | abort() -> does not return!\n\ |
| 5483 | Abort the interpreter immediately. This 'dumps core' or otherwise fails\n\ |
| 5484 | in the hardest way possible on the hosting operating system."; |
| 5485 | |
| 5486 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 5487 | posix_abort(PyObject *self, PyObject *args) |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5488 | { |
| 5489 | if (!PyArg_ParseTuple(args, ":abort")) |
| 5490 | return NULL; |
| 5491 | abort(); |
| 5492 | /*NOTREACHED*/ |
| 5493 | Py_FatalError("abort() called from Python code didn't abort!"); |
| 5494 | return NULL; |
| 5495 | } |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 5496 | |
Tim Peters | f58a7aa | 2000-09-22 10:05:54 +0000 | [diff] [blame] | 5497 | #ifdef MS_WIN32 |
| 5498 | static char win32_startfile__doc__[] = "\ |
| 5499 | startfile(filepath) - Start a file with its associated application.\n\ |
| 5500 | \n\ |
| 5501 | This acts like double-clicking the file in Explorer, or giving the file\n\ |
| 5502 | name as an argument to the DOS \"start\" command: the file is opened\n\ |
| 5503 | with whatever application (if any) its extension is associated.\n\ |
| 5504 | \n\ |
| 5505 | startfile returns as soon as the associated application is launched.\n\ |
| 5506 | There is no option to wait for the application to close, and no way\n\ |
| 5507 | to retrieve the application's exit status.\n\ |
| 5508 | \n\ |
| 5509 | The filepath is relative to the current directory. If you want to use\n\ |
| 5510 | an absolute path, make sure the first character is not a slash (\"/\");\n\ |
| 5511 | the underlying Win32 ShellExecute function doesn't work if it is."; |
| 5512 | |
| 5513 | static PyObject * |
| 5514 | win32_startfile(PyObject *self, PyObject *args) |
| 5515 | { |
| 5516 | char *filepath; |
| 5517 | HINSTANCE rc; |
| 5518 | if (!PyArg_ParseTuple(args, "s:startfile", &filepath)) |
| 5519 | return NULL; |
| 5520 | Py_BEGIN_ALLOW_THREADS |
| 5521 | rc = ShellExecute((HWND)0, NULL, filepath, NULL, NULL, SW_SHOWNORMAL); |
| 5522 | Py_END_ALLOW_THREADS |
| 5523 | if (rc <= (HINSTANCE)32) |
| 5524 | return win32_error("startfile", filepath); |
| 5525 | Py_INCREF(Py_None); |
| 5526 | return Py_None; |
| 5527 | } |
| 5528 | #endif |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5529 | |
| 5530 | static PyMethodDef posix_methods[] = { |
| 5531 | {"access", posix_access, METH_VARARGS, posix_access__doc__}, |
| 5532 | #ifdef HAVE_TTYNAME |
| 5533 | {"ttyname", posix_ttyname, METH_VARARGS, posix_ttyname__doc__}, |
| 5534 | #endif |
| 5535 | {"chdir", posix_chdir, METH_VARARGS, posix_chdir__doc__}, |
| 5536 | {"chmod", posix_chmod, METH_VARARGS, posix_chmod__doc__}, |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 5537 | #ifdef HAVE_CHOWN |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5538 | {"chown", posix_chown, METH_VARARGS, posix_chown__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 5539 | #endif /* HAVE_CHOWN */ |
Martin v. Löwis | 244edc8 | 2001-10-04 22:44:26 +0000 | [diff] [blame] | 5540 | #ifdef HAVE_CHROOT |
| 5541 | {"chroot", posix_chroot, METH_VARARGS, posix_chroot__doc__}, |
| 5542 | #endif |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5543 | #ifdef HAVE_CTERMID |
| 5544 | {"ctermid", posix_ctermid, METH_VARARGS, posix_ctermid__doc__}, |
| 5545 | #endif |
Guido van Rossum | 36bc680 | 1995-06-14 22:54:23 +0000 | [diff] [blame] | 5546 | #ifdef HAVE_GETCWD |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5547 | {"getcwd", posix_getcwd, METH_VARARGS, posix_getcwd__doc__}, |
Guido van Rossum | 36bc680 | 1995-06-14 22:54:23 +0000 | [diff] [blame] | 5548 | #endif |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 5549 | #ifdef HAVE_LINK |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5550 | {"link", posix_link, METH_VARARGS, posix_link__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 5551 | #endif /* HAVE_LINK */ |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5552 | {"listdir", posix_listdir, METH_VARARGS, posix_listdir__doc__}, |
| 5553 | {"lstat", posix_lstat, METH_VARARGS, posix_lstat__doc__}, |
| 5554 | {"mkdir", posix_mkdir, METH_VARARGS, posix_mkdir__doc__}, |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 5555 | #ifdef HAVE_NICE |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5556 | {"nice", posix_nice, METH_VARARGS, posix_nice__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 5557 | #endif /* HAVE_NICE */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 5558 | #ifdef HAVE_READLINK |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5559 | {"readlink", posix_readlink, METH_VARARGS, posix_readlink__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 5560 | #endif /* HAVE_READLINK */ |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5561 | {"rename", posix_rename, METH_VARARGS, posix_rename__doc__}, |
| 5562 | {"rmdir", posix_rmdir, METH_VARARGS, posix_rmdir__doc__}, |
| 5563 | {"stat", posix_stat, METH_VARARGS, posix_stat__doc__}, |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 5564 | #ifdef HAVE_SYMLINK |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5565 | {"symlink", posix_symlink, METH_VARARGS, posix_symlink__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 5566 | #endif /* HAVE_SYMLINK */ |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 5567 | #ifdef HAVE_SYSTEM |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5568 | {"system", posix_system, METH_VARARGS, posix_system__doc__}, |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 5569 | #endif |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5570 | {"umask", posix_umask, METH_VARARGS, posix_umask__doc__}, |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 5571 | #ifdef HAVE_UNAME |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5572 | {"uname", posix_uname, METH_VARARGS, posix_uname__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 5573 | #endif /* HAVE_UNAME */ |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5574 | {"unlink", posix_unlink, METH_VARARGS, posix_unlink__doc__}, |
| 5575 | {"remove", posix_unlink, METH_VARARGS, posix_remove__doc__}, |
| 5576 | {"utime", posix_utime, METH_VARARGS, posix_utime__doc__}, |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 5577 | #ifdef HAVE_TIMES |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5578 | {"times", posix_times, METH_VARARGS, posix_times__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 5579 | #endif /* HAVE_TIMES */ |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5580 | {"_exit", posix__exit, METH_VARARGS, posix__exit__doc__}, |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 5581 | #ifdef HAVE_EXECV |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5582 | {"execv", posix_execv, METH_VARARGS, posix_execv__doc__}, |
| 5583 | {"execve", posix_execve, METH_VARARGS, posix_execve__doc__}, |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 5584 | #endif /* HAVE_EXECV */ |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 5585 | #ifdef HAVE_SPAWNV |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5586 | {"spawnv", posix_spawnv, METH_VARARGS, posix_spawnv__doc__}, |
| 5587 | {"spawnve", posix_spawnve, METH_VARARGS, posix_spawnve__doc__}, |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 5588 | #endif /* HAVE_SPAWNV */ |
Guido van Rossum | 2242f2f | 2001-04-11 20:58:20 +0000 | [diff] [blame] | 5589 | #ifdef HAVE_FORK1 |
| 5590 | {"fork1", posix_fork1, METH_VARARGS, posix_fork1__doc__}, |
| 5591 | #endif /* HAVE_FORK1 */ |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 5592 | #ifdef HAVE_FORK |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5593 | {"fork", posix_fork, METH_VARARGS, posix_fork__doc__}, |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 5594 | #endif /* HAVE_FORK */ |
Thomas Wouters | 70c21a1 | 2000-07-14 14:28:33 +0000 | [diff] [blame] | 5595 | #if defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 5596 | {"openpty", posix_openpty, METH_VARARGS, posix_openpty__doc__}, |
Thomas Wouters | 70c21a1 | 2000-07-14 14:28:33 +0000 | [diff] [blame] | 5597 | #endif /* HAVE_OPENPTY || HAVE__GETPTY */ |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 5598 | #ifdef HAVE_FORKPTY |
| 5599 | {"forkpty", posix_forkpty, METH_VARARGS, posix_forkpty__doc__}, |
| 5600 | #endif /* HAVE_FORKPTY */ |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 5601 | #ifdef HAVE_GETEGID |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5602 | {"getegid", posix_getegid, METH_VARARGS, posix_getegid__doc__}, |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 5603 | #endif /* HAVE_GETEGID */ |
| 5604 | #ifdef HAVE_GETEUID |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5605 | {"geteuid", posix_geteuid, METH_VARARGS, posix_geteuid__doc__}, |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 5606 | #endif /* HAVE_GETEUID */ |
| 5607 | #ifdef HAVE_GETGID |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5608 | {"getgid", posix_getgid, METH_VARARGS, posix_getgid__doc__}, |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 5609 | #endif /* HAVE_GETGID */ |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 5610 | #ifdef HAVE_GETGROUPS |
| 5611 | {"getgroups", posix_getgroups, METH_VARARGS, posix_getgroups__doc__}, |
| 5612 | #endif |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5613 | {"getpid", posix_getpid, METH_VARARGS, posix_getpid__doc__}, |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 5614 | #ifdef HAVE_GETPGRP |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5615 | {"getpgrp", posix_getpgrp, METH_VARARGS, posix_getpgrp__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 5616 | #endif /* HAVE_GETPGRP */ |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 5617 | #ifdef HAVE_GETPPID |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5618 | {"getppid", posix_getppid, METH_VARARGS, posix_getppid__doc__}, |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 5619 | #endif /* HAVE_GETPPID */ |
| 5620 | #ifdef HAVE_GETUID |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5621 | {"getuid", posix_getuid, METH_VARARGS, posix_getuid__doc__}, |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 5622 | #endif /* HAVE_GETUID */ |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 5623 | #ifdef HAVE_GETLOGIN |
| 5624 | {"getlogin", posix_getlogin, METH_VARARGS, posix_getlogin__doc__}, |
| 5625 | #endif |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 5626 | #ifdef HAVE_KILL |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5627 | {"kill", posix_kill, METH_VARARGS, posix_kill__doc__}, |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 5628 | #endif /* HAVE_KILL */ |
Guido van Rossum | c012547 | 1996-06-28 18:55:32 +0000 | [diff] [blame] | 5629 | #ifdef HAVE_PLOCK |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5630 | {"plock", posix_plock, METH_VARARGS, posix_plock__doc__}, |
Guido van Rossum | c012547 | 1996-06-28 18:55:32 +0000 | [diff] [blame] | 5631 | #endif /* HAVE_PLOCK */ |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 5632 | #ifdef HAVE_POPEN |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5633 | {"popen", posix_popen, METH_VARARGS, posix_popen__doc__}, |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5634 | #ifdef MS_WIN32 |
| 5635 | {"popen2", win32_popen2, METH_VARARGS}, |
| 5636 | {"popen3", win32_popen3, METH_VARARGS}, |
| 5637 | {"popen4", win32_popen4, METH_VARARGS}, |
Tim Peters | f58a7aa | 2000-09-22 10:05:54 +0000 | [diff] [blame] | 5638 | {"startfile", win32_startfile, METH_VARARGS, win32_startfile__doc__}, |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 5639 | #endif |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 5640 | #endif /* HAVE_POPEN */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 5641 | #ifdef HAVE_SETUID |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5642 | {"setuid", posix_setuid, METH_VARARGS, posix_setuid__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 5643 | #endif /* HAVE_SETUID */ |
Andrew M. Kuchling | 8d2f2b2 | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 5644 | #ifdef HAVE_SETEUID |
| 5645 | {"seteuid", posix_seteuid, METH_VARARGS, posix_seteuid__doc__}, |
| 5646 | #endif /* HAVE_SETEUID */ |
| 5647 | #ifdef HAVE_SETEGID |
| 5648 | {"setegid", posix_setegid, METH_VARARGS, posix_setegid__doc__}, |
| 5649 | #endif /* HAVE_SETEGID */ |
| 5650 | #ifdef HAVE_SETREUID |
| 5651 | {"setreuid", posix_setreuid, METH_VARARGS, posix_setreuid__doc__}, |
| 5652 | #endif /* HAVE_SETREUID */ |
| 5653 | #ifdef HAVE_SETREGID |
| 5654 | {"setregid", posix_setregid, METH_VARARGS, posix_setregid__doc__}, |
| 5655 | #endif /* HAVE_SETREGID */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 5656 | #ifdef HAVE_SETGID |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5657 | {"setgid", posix_setgid, METH_VARARGS, posix_setgid__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 5658 | #endif /* HAVE_SETGID */ |
Martin v. Löwis | 61c5edf | 2001-10-18 04:06:00 +0000 | [diff] [blame] | 5659 | #ifdef HAVE_SETGROUPS |
| 5660 | {"setgroups", posix_setgroups, METH_VARARGS, posix_setgroups__doc__}, |
| 5661 | #endif /* HAVE_SETGROUPS */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 5662 | #ifdef HAVE_SETPGRP |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5663 | {"setpgrp", posix_setpgrp, METH_VARARGS, posix_setpgrp__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 5664 | #endif /* HAVE_SETPGRP */ |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 5665 | #ifdef HAVE_WAIT |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5666 | {"wait", posix_wait, METH_VARARGS, posix_wait__doc__}, |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 5667 | #endif /* HAVE_WAIT */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 5668 | #ifdef HAVE_WAITPID |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5669 | {"waitpid", posix_waitpid, METH_VARARGS, posix_waitpid__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 5670 | #endif /* HAVE_WAITPID */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 5671 | #ifdef HAVE_SETSID |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5672 | {"setsid", posix_setsid, METH_VARARGS, posix_setsid__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 5673 | #endif /* HAVE_SETSID */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 5674 | #ifdef HAVE_SETPGID |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5675 | {"setpgid", posix_setpgid, METH_VARARGS, posix_setpgid__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 5676 | #endif /* HAVE_SETPGID */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 5677 | #ifdef HAVE_TCGETPGRP |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5678 | {"tcgetpgrp", posix_tcgetpgrp, METH_VARARGS, posix_tcgetpgrp__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 5679 | #endif /* HAVE_TCGETPGRP */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 5680 | #ifdef HAVE_TCSETPGRP |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5681 | {"tcsetpgrp", posix_tcsetpgrp, METH_VARARGS, posix_tcsetpgrp__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 5682 | #endif /* HAVE_TCSETPGRP */ |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5683 | {"open", posix_open, METH_VARARGS, posix_open__doc__}, |
| 5684 | {"close", posix_close, METH_VARARGS, posix_close__doc__}, |
| 5685 | {"dup", posix_dup, METH_VARARGS, posix_dup__doc__}, |
| 5686 | {"dup2", posix_dup2, METH_VARARGS, posix_dup2__doc__}, |
| 5687 | {"lseek", posix_lseek, METH_VARARGS, posix_lseek__doc__}, |
| 5688 | {"read", posix_read, METH_VARARGS, posix_read__doc__}, |
| 5689 | {"write", posix_write, METH_VARARGS, posix_write__doc__}, |
| 5690 | {"fstat", posix_fstat, METH_VARARGS, posix_fstat__doc__}, |
| 5691 | {"fdopen", posix_fdopen, METH_VARARGS, posix_fdopen__doc__}, |
Skip Montanaro | 1517d84 | 2000-07-19 14:34:14 +0000 | [diff] [blame] | 5692 | {"isatty", posix_isatty, METH_VARARGS, posix_isatty__doc__}, |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 5693 | #ifdef HAVE_PIPE |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5694 | {"pipe", posix_pipe, METH_VARARGS, posix_pipe__doc__}, |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 5695 | #endif |
| 5696 | #ifdef HAVE_MKFIFO |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5697 | {"mkfifo", posix_mkfifo, METH_VARARGS, posix_mkfifo__doc__}, |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 5698 | #endif |
| 5699 | #ifdef HAVE_FTRUNCATE |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5700 | {"ftruncate", posix_ftruncate, METH_VARARGS, posix_ftruncate__doc__}, |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 5701 | #endif |
Guido van Rossum | f1af3fe | 1996-07-23 19:18:10 +0000 | [diff] [blame] | 5702 | #ifdef HAVE_PUTENV |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5703 | {"putenv", posix_putenv, METH_VARARGS, posix_putenv__doc__}, |
Guido van Rossum | f1af3fe | 1996-07-23 19:18:10 +0000 | [diff] [blame] | 5704 | #endif |
Guido van Rossum | c524d95 | 2001-10-19 01:31:59 +0000 | [diff] [blame] | 5705 | #ifdef HAVE_UNSETENV |
| 5706 | {"unsetenv", posix_unsetenv, METH_VARARGS, posix_unsetenv__doc__}, |
| 5707 | #endif |
Guido van Rossum | b6a4716 | 1997-09-15 22:54:34 +0000 | [diff] [blame] | 5708 | #ifdef HAVE_STRERROR |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5709 | {"strerror", posix_strerror, METH_VARARGS, posix_strerror__doc__}, |
Guido van Rossum | b6a4716 | 1997-09-15 22:54:34 +0000 | [diff] [blame] | 5710 | #endif |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 5711 | #ifdef HAVE_FSYNC |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5712 | {"fsync", posix_fsync, METH_VARARGS, posix_fsync__doc__}, |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 5713 | #endif |
| 5714 | #ifdef HAVE_FDATASYNC |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5715 | {"fdatasync", posix_fdatasync, METH_VARARGS, posix_fdatasync__doc__}, |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 5716 | #endif |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 5717 | #ifdef HAVE_SYS_WAIT_H |
| 5718 | #ifdef WIFSTOPPED |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5719 | {"WIFSTOPPED", posix_WIFSTOPPED, METH_VARARGS, posix_WIFSTOPPED__doc__}, |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 5720 | #endif /* WIFSTOPPED */ |
| 5721 | #ifdef WIFSIGNALED |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5722 | {"WIFSIGNALED", posix_WIFSIGNALED, METH_VARARGS, posix_WIFSIGNALED__doc__}, |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 5723 | #endif /* WIFSIGNALED */ |
| 5724 | #ifdef WIFEXITED |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5725 | {"WIFEXITED", posix_WIFEXITED, METH_VARARGS, posix_WIFEXITED__doc__}, |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 5726 | #endif /* WIFEXITED */ |
| 5727 | #ifdef WEXITSTATUS |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5728 | {"WEXITSTATUS", posix_WEXITSTATUS, METH_VARARGS, posix_WEXITSTATUS__doc__}, |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 5729 | #endif /* WEXITSTATUS */ |
| 5730 | #ifdef WTERMSIG |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5731 | {"WTERMSIG", posix_WTERMSIG, METH_VARARGS, posix_WTERMSIG__doc__}, |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 5732 | #endif /* WTERMSIG */ |
| 5733 | #ifdef WSTOPSIG |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5734 | {"WSTOPSIG", posix_WSTOPSIG, METH_VARARGS, posix_WSTOPSIG__doc__}, |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 5735 | #endif /* WSTOPSIG */ |
| 5736 | #endif /* HAVE_SYS_WAIT_H */ |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 5737 | #ifdef HAVE_FSTATVFS |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5738 | {"fstatvfs", posix_fstatvfs, METH_VARARGS, posix_fstatvfs__doc__}, |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 5739 | #endif |
| 5740 | #ifdef HAVE_STATVFS |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5741 | {"statvfs", posix_statvfs, METH_VARARGS, posix_statvfs__doc__}, |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 5742 | #endif |
Guido van Rossum | e2ad633 | 2001-01-08 17:51:55 +0000 | [diff] [blame] | 5743 | #ifdef HAVE_TMPFILE |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5744 | {"tmpfile", posix_tmpfile, METH_VARARGS, posix_tmpfile__doc__}, |
| 5745 | #endif |
| 5746 | #ifdef HAVE_TEMPNAM |
| 5747 | {"tempnam", posix_tempnam, METH_VARARGS, posix_tempnam__doc__}, |
| 5748 | #endif |
| 5749 | #ifdef HAVE_TMPNAM |
| 5750 | {"tmpnam", posix_tmpnam, METH_VARARGS, posix_tmpnam__doc__}, |
| 5751 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 5752 | #ifdef HAVE_CONFSTR |
| 5753 | {"confstr", posix_confstr, METH_VARARGS, posix_confstr__doc__}, |
| 5754 | #endif |
| 5755 | #ifdef HAVE_SYSCONF |
| 5756 | {"sysconf", posix_sysconf, METH_VARARGS, posix_sysconf__doc__}, |
| 5757 | #endif |
| 5758 | #ifdef HAVE_FPATHCONF |
| 5759 | {"fpathconf", posix_fpathconf, METH_VARARGS, posix_fpathconf__doc__}, |
| 5760 | #endif |
| 5761 | #ifdef HAVE_PATHCONF |
| 5762 | {"pathconf", posix_pathconf, METH_VARARGS, posix_pathconf__doc__}, |
| 5763 | #endif |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5764 | {"abort", posix_abort, METH_VARARGS, posix_abort__doc__}, |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 5765 | #ifdef MS_WIN32 |
| 5766 | {"_getfullpathname", posix__getfullpathname, METH_VARARGS, NULL}, |
| 5767 | #endif |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 5768 | {NULL, NULL} /* Sentinel */ |
| 5769 | }; |
| 5770 | |
| 5771 | |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 5772 | static int |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 5773 | ins(PyObject *d, char *symbol, long value) |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 5774 | { |
| 5775 | PyObject* v = PyInt_FromLong(value); |
| 5776 | if (!v || PyDict_SetItemString(d, symbol, v) < 0) |
| 5777 | return -1; /* triggers fatal error */ |
| 5778 | |
| 5779 | Py_DECREF(v); |
| 5780 | return 0; |
| 5781 | } |
| 5782 | |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 5783 | #if defined(PYOS_OS2) |
| 5784 | /* Insert Platform-Specific Constant Values (Strings & Numbers) of Common Use */ |
| 5785 | static int insertvalues(PyObject *d) |
| 5786 | { |
| 5787 | APIRET rc; |
| 5788 | ULONG values[QSV_MAX+1]; |
| 5789 | PyObject *v; |
Marc-André Lemburg | d4c0a9c | 2001-11-28 11:47:00 +0000 | [diff] [blame] | 5790 | char *ver, tmp[50]; |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 5791 | |
| 5792 | Py_BEGIN_ALLOW_THREADS |
| 5793 | rc = DosQuerySysInfo(1, QSV_MAX, &values[1], sizeof(values)); |
| 5794 | Py_END_ALLOW_THREADS |
| 5795 | |
| 5796 | if (rc != NO_ERROR) { |
| 5797 | os2_error(rc); |
| 5798 | return -1; |
| 5799 | } |
| 5800 | |
| 5801 | if (ins(d, "meminstalled", values[QSV_TOTPHYSMEM])) return -1; |
| 5802 | if (ins(d, "memkernel", values[QSV_TOTRESMEM])) return -1; |
| 5803 | if (ins(d, "memvirtual", values[QSV_TOTAVAILMEM])) return -1; |
| 5804 | if (ins(d, "maxpathlen", values[QSV_MAX_PATH_LENGTH])) return -1; |
| 5805 | if (ins(d, "maxnamelen", values[QSV_MAX_COMP_LENGTH])) return -1; |
| 5806 | if (ins(d, "revision", values[QSV_VERSION_REVISION])) return -1; |
| 5807 | if (ins(d, "timeslice", values[QSV_MIN_SLICE])) return -1; |
| 5808 | |
| 5809 | switch (values[QSV_VERSION_MINOR]) { |
| 5810 | case 0: ver = "2.00"; break; |
| 5811 | case 10: ver = "2.10"; break; |
| 5812 | case 11: ver = "2.11"; break; |
| 5813 | case 30: ver = "3.00"; break; |
| 5814 | case 40: ver = "4.00"; break; |
| 5815 | case 50: ver = "5.00"; break; |
| 5816 | default: |
| 5817 | sprintf(tmp, "%d-%d", values[QSV_VERSION_MAJOR], |
| 5818 | values[QSV_VERSION_MINOR]); |
| 5819 | ver = &tmp[0]; |
| 5820 | } |
| 5821 | |
| 5822 | /* Add Indicator of the Version of the Operating System */ |
| 5823 | v = PyString_FromString(ver); |
| 5824 | if (!v || PyDict_SetItemString(d, "version", v) < 0) |
| 5825 | return -1; |
| 5826 | Py_DECREF(v); |
| 5827 | |
| 5828 | /* Add Indicator of Which Drive was Used to Boot the System */ |
| 5829 | tmp[0] = 'A' + values[QSV_BOOT_DRIVE] - 1; |
| 5830 | tmp[1] = ':'; |
| 5831 | tmp[2] = '\0'; |
| 5832 | |
| 5833 | v = PyString_FromString(tmp); |
| 5834 | if (!v || PyDict_SetItemString(d, "bootdrive", v) < 0) |
| 5835 | return -1; |
| 5836 | Py_DECREF(v); |
| 5837 | |
| 5838 | return 0; |
| 5839 | } |
| 5840 | #endif |
| 5841 | |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 5842 | static int |
Thomas Wouters | f3f33dc | 2000-07-21 06:00:07 +0000 | [diff] [blame] | 5843 | all_ins(PyObject *d) |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 5844 | { |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 5845 | #ifdef F_OK |
| 5846 | if (ins(d, "F_OK", (long)F_OK)) return -1; |
| 5847 | #endif |
| 5848 | #ifdef R_OK |
| 5849 | if (ins(d, "R_OK", (long)R_OK)) return -1; |
| 5850 | #endif |
| 5851 | #ifdef W_OK |
| 5852 | if (ins(d, "W_OK", (long)W_OK)) return -1; |
| 5853 | #endif |
| 5854 | #ifdef X_OK |
| 5855 | if (ins(d, "X_OK", (long)X_OK)) return -1; |
| 5856 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 5857 | #ifdef NGROUPS_MAX |
| 5858 | if (ins(d, "NGROUPS_MAX", (long)NGROUPS_MAX)) return -1; |
| 5859 | #endif |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 5860 | #ifdef TMP_MAX |
| 5861 | if (ins(d, "TMP_MAX", (long)TMP_MAX)) return -1; |
| 5862 | #endif |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 5863 | #ifdef WNOHANG |
| 5864 | if (ins(d, "WNOHANG", (long)WNOHANG)) return -1; |
| 5865 | #endif |
| 5866 | #ifdef O_RDONLY |
| 5867 | if (ins(d, "O_RDONLY", (long)O_RDONLY)) return -1; |
| 5868 | #endif |
| 5869 | #ifdef O_WRONLY |
| 5870 | if (ins(d, "O_WRONLY", (long)O_WRONLY)) return -1; |
| 5871 | #endif |
| 5872 | #ifdef O_RDWR |
| 5873 | if (ins(d, "O_RDWR", (long)O_RDWR)) return -1; |
| 5874 | #endif |
| 5875 | #ifdef O_NDELAY |
| 5876 | if (ins(d, "O_NDELAY", (long)O_NDELAY)) return -1; |
| 5877 | #endif |
| 5878 | #ifdef O_NONBLOCK |
| 5879 | if (ins(d, "O_NONBLOCK", (long)O_NONBLOCK)) return -1; |
| 5880 | #endif |
| 5881 | #ifdef O_APPEND |
| 5882 | if (ins(d, "O_APPEND", (long)O_APPEND)) return -1; |
| 5883 | #endif |
| 5884 | #ifdef O_DSYNC |
| 5885 | if (ins(d, "O_DSYNC", (long)O_DSYNC)) return -1; |
| 5886 | #endif |
| 5887 | #ifdef O_RSYNC |
| 5888 | if (ins(d, "O_RSYNC", (long)O_RSYNC)) return -1; |
| 5889 | #endif |
| 5890 | #ifdef O_SYNC |
| 5891 | if (ins(d, "O_SYNC", (long)O_SYNC)) return -1; |
| 5892 | #endif |
| 5893 | #ifdef O_NOCTTY |
| 5894 | if (ins(d, "O_NOCTTY", (long)O_NOCTTY)) return -1; |
| 5895 | #endif |
| 5896 | #ifdef O_CREAT |
| 5897 | if (ins(d, "O_CREAT", (long)O_CREAT)) return -1; |
| 5898 | #endif |
| 5899 | #ifdef O_EXCL |
| 5900 | if (ins(d, "O_EXCL", (long)O_EXCL)) return -1; |
| 5901 | #endif |
| 5902 | #ifdef O_TRUNC |
| 5903 | if (ins(d, "O_TRUNC", (long)O_TRUNC)) return -1; |
| 5904 | #endif |
Guido van Rossum | 98d9d09 | 1997-08-08 21:48:51 +0000 | [diff] [blame] | 5905 | #ifdef O_BINARY |
| 5906 | if (ins(d, "O_BINARY", (long)O_BINARY)) return -1; |
| 5907 | #endif |
| 5908 | #ifdef O_TEXT |
| 5909 | if (ins(d, "O_TEXT", (long)O_TEXT)) return -1; |
| 5910 | #endif |
Martin v. Löwis | 4fe3c27 | 2001-10-18 22:05:36 +0000 | [diff] [blame] | 5911 | #ifdef O_LARGEFILE |
| 5912 | if (ins(d, "O_LARGEFILE", (long)O_LARGEFILE)) return -1; |
| 5913 | #endif |
| 5914 | |
| 5915 | /* GNU extensions. */ |
| 5916 | #ifdef O_DIRECT |
| 5917 | /* Direct disk access. */ |
| 5918 | if (ins(d, "O_DIRECT", (long)O_DIRECT)) return -1; |
| 5919 | #endif |
| 5920 | #ifdef O_DIRECTORY |
| 5921 | /* Must be a directory. */ |
| 5922 | if (ins(d, "O_DIRECTORY", (long)O_DIRECTORY)) return -1; |
| 5923 | #endif |
| 5924 | #ifdef O_NOFOLLOW |
| 5925 | /* Do not follow links. */ |
| 5926 | if (ins(d, "O_NOFOLLOW", (long)O_NOFOLLOW)) return -1; |
| 5927 | #endif |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 5928 | |
Guido van Rossum | 246bc17 | 1999-02-01 23:54:31 +0000 | [diff] [blame] | 5929 | #ifdef HAVE_SPAWNV |
Guido van Rossum | 7d38529 | 1999-02-16 19:38:04 +0000 | [diff] [blame] | 5930 | if (ins(d, "P_WAIT", (long)_P_WAIT)) return -1; |
| 5931 | if (ins(d, "P_NOWAIT", (long)_P_NOWAIT)) return -1; |
| 5932 | if (ins(d, "P_OVERLAY", (long)_OLD_P_OVERLAY)) return -1; |
| 5933 | if (ins(d, "P_NOWAITO", (long)_P_NOWAITO)) return -1; |
| 5934 | if (ins(d, "P_DETACH", (long)_P_DETACH)) return -1; |
Guido van Rossum | 246bc17 | 1999-02-01 23:54:31 +0000 | [diff] [blame] | 5935 | #endif |
| 5936 | |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 5937 | #if defined(PYOS_OS2) |
| 5938 | if (insertvalues(d)) return -1; |
| 5939 | #endif |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 5940 | return 0; |
| 5941 | } |
| 5942 | |
| 5943 | |
Tim Peters | 58e0a8c | 2001-05-14 22:32:33 +0000 | [diff] [blame] | 5944 | #if (defined(_MSC_VER) || defined(__WATCOMC__) || defined(__BORLANDC__)) && !defined(__QNX__) |
Guido van Rossum | 0cb96de | 1997-10-01 04:29:29 +0000 | [diff] [blame] | 5945 | #define INITFUNC initnt |
| 5946 | #define MODNAME "nt" |
Tim Peters | 58e0a8c | 2001-05-14 22:32:33 +0000 | [diff] [blame] | 5947 | |
| 5948 | #elif defined(PYOS_OS2) |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 5949 | #define INITFUNC initos2 |
| 5950 | #define MODNAME "os2" |
Tim Peters | 58e0a8c | 2001-05-14 22:32:33 +0000 | [diff] [blame] | 5951 | |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 5952 | #else |
Guido van Rossum | 0cb96de | 1997-10-01 04:29:29 +0000 | [diff] [blame] | 5953 | #define INITFUNC initposix |
| 5954 | #define MODNAME "posix" |
| 5955 | #endif |
| 5956 | |
Guido van Rossum | 3886bb6 | 1998-12-04 18:50:17 +0000 | [diff] [blame] | 5957 | DL_EXPORT(void) |
Thomas Wouters | f3f33dc | 2000-07-21 06:00:07 +0000 | [diff] [blame] | 5958 | INITFUNC(void) |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 5959 | { |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 5960 | PyObject *m, *d, *v; |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 5961 | |
Guido van Rossum | 0cb96de | 1997-10-01 04:29:29 +0000 | [diff] [blame] | 5962 | m = Py_InitModule4(MODNAME, |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 5963 | posix_methods, |
| 5964 | posix__doc__, |
Guido van Rossum | 0cb96de | 1997-10-01 04:29:29 +0000 | [diff] [blame] | 5965 | (PyObject *)NULL, |
| 5966 | PYTHON_API_VERSION); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 5967 | d = PyModule_GetDict(m); |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 5968 | |
Guido van Rossum | 0cb96de | 1997-10-01 04:29:29 +0000 | [diff] [blame] | 5969 | /* Initialize environ dictionary */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 5970 | v = convertenviron(); |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 5971 | if (v == NULL || PyDict_SetItemString(d, "environ", v) != 0) |
Guido van Rossum | 0cb96de | 1997-10-01 04:29:29 +0000 | [diff] [blame] | 5972 | return; |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 5973 | Py_DECREF(v); |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 5974 | |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 5975 | if (all_ins(d)) |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 5976 | return; |
| 5977 | |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 5978 | if (setup_confname_tables(d)) |
| 5979 | return; |
| 5980 | |
Barry Warsaw | ca74da4 | 1999-02-09 19:31:45 +0000 | [diff] [blame] | 5981 | PyDict_SetItemString(d, "error", PyExc_OSError); |
Fred Drake | 762e206 | 1999-08-26 17:23:54 +0000 | [diff] [blame] | 5982 | |
Guido van Rossum | b3d3956 | 2000-01-31 18:41:26 +0000 | [diff] [blame] | 5983 | #ifdef HAVE_PUTENV |
Neil Schemenauer | 19030a0 | 2001-01-16 04:27:47 +0000 | [diff] [blame] | 5984 | if (posix_putenv_garbage == NULL) |
| 5985 | posix_putenv_garbage = PyDict_New(); |
Guido van Rossum | b3d3956 | 2000-01-31 18:41:26 +0000 | [diff] [blame] | 5986 | #endif |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 5987 | |
| 5988 | PyStructSequence_InitType(&StatResultType, &stat_result_desc); |
| 5989 | PyDict_SetItemString(d, "stat_result", (PyObject*) &StatResultType); |
| 5990 | |
| 5991 | PyStructSequence_InitType(&StatVFSResultType, &statvfs_result_desc); |
| 5992 | PyDict_SetItemString(d, "statvfs_result", (PyObject*) &StatResultType); |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 5993 | } |