Guido van Rossum | f70e43a | 1991-02-19 12:39:46 +0000 | [diff] [blame] | 1 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2 | /* POSIX module implementation */ |
| 3 | |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 4 | /* This file is also used for Windows NT/MS-Win and OS/2. In that case the |
| 5 | module actually calls itself 'nt' or 'os2', not 'posix', and a few |
| 6 | functions are either unimplemented or implemented differently. The source |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 7 | assumes that for Windows NT, the macro 'MS_WINDOWS' is defined independent |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 8 | of the compiler used. Different compilers define their own feature |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 9 | test macro, e.g. '__BORLANDC__' or '_MSC_VER'. For OS/2, the compiler |
| 10 | independent macro PYOS_OS2 should be defined. On OS/2 the default |
| 11 | compiler is assumed to be IBM's VisualAge C++ (VACPP). PYCC_GCC is used |
| 12 | as the compiler specific macro for the EMX port of gcc to OS/2. */ |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 13 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 14 | #ifdef __APPLE__ |
| 15 | /* |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 16 | * Step 1 of support for weak-linking a number of symbols existing on |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 17 | * OSX 10.4 and later, see the comment in the #ifdef __APPLE__ block |
| 18 | * at the end of this file for more information. |
| 19 | */ |
| 20 | # pragma weak lchown |
| 21 | # pragma weak statvfs |
| 22 | # pragma weak fstatvfs |
| 23 | |
| 24 | #endif /* __APPLE__ */ |
| 25 | |
Thomas Wouters | 68bc4f9 | 2006-03-01 01:05:10 +0000 | [diff] [blame] | 26 | #define PY_SSIZE_T_CLEAN |
| 27 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 28 | #include "Python.h" |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 29 | #ifndef MS_WINDOWS |
| 30 | #include "posixmodule.h" |
| 31 | #endif |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 32 | |
Martin v. Löwis | 79acb9e | 2002-12-06 12:48:53 +0000 | [diff] [blame] | 33 | #if defined(__VMS) |
Victor Stinner | b90db4c | 2011-04-26 22:48:24 +0200 | [diff] [blame] | 34 | # error "PEP 11: VMS is now unsupported, code will be removed in Python 3.4" |
Martin v. Löwis | 79acb9e | 2002-12-06 12:48:53 +0000 | [diff] [blame] | 35 | # include <unixio.h> |
Martin v. Löwis | 79acb9e | 2002-12-06 12:48:53 +0000 | [diff] [blame] | 36 | #endif /* defined(__VMS) */ |
| 37 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 38 | #ifdef __cplusplus |
| 39 | extern "C" { |
| 40 | #endif |
| 41 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 42 | PyDoc_STRVAR(posix__doc__, |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 43 | "This module provides access to operating system functionality that is\n\ |
| 44 | standardized by the C Standard and the POSIX standard (a thinly\n\ |
| 45 | disguised Unix interface). Refer to the library manual and\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 46 | corresponding Unix manual entries for more information on calls."); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 47 | |
Martin v. Löwis | 0073f2e | 2002-11-21 23:52:35 +0000 | [diff] [blame] | 48 | |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 49 | #if defined(PYOS_OS2) |
Victor Stinner | b90db4c | 2011-04-26 22:48:24 +0200 | [diff] [blame] | 50 | #error "PEP 11: OS/2 is now unsupported, code will be removed in Python 3.4" |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 51 | #define INCL_DOS |
| 52 | #define INCL_DOSERRORS |
| 53 | #define INCL_DOSPROCESS |
| 54 | #define INCL_NOPMAPI |
| 55 | #include <os2.h> |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 56 | #if defined(PYCC_GCC) |
| 57 | #include <ctype.h> |
| 58 | #include <io.h> |
| 59 | #include <stdio.h> |
| 60 | #include <process.h> |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 61 | #endif |
Andrew MacIntyre | da4d6cb | 2004-03-29 11:53:38 +0000 | [diff] [blame] | 62 | #include "osdefs.h" |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 63 | #endif |
| 64 | |
Ross Lagerwall | 4d076da | 2011-03-18 06:56:53 +0200 | [diff] [blame] | 65 | #ifdef HAVE_SYS_UIO_H |
| 66 | #include <sys/uio.h> |
| 67 | #endif |
| 68 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 69 | #ifdef HAVE_SYS_TYPES_H |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 70 | #include <sys/types.h> |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 71 | #endif /* HAVE_SYS_TYPES_H */ |
| 72 | |
| 73 | #ifdef HAVE_SYS_STAT_H |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 74 | #include <sys/stat.h> |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 75 | #endif /* HAVE_SYS_STAT_H */ |
Guido van Rossum | a6535fd | 2001-10-18 19:44:10 +0000 | [diff] [blame] | 76 | |
Guido van Rossum | 36bc680 | 1995-06-14 22:54:23 +0000 | [diff] [blame] | 77 | #ifdef HAVE_SYS_WAIT_H |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 78 | #include <sys/wait.h> /* For WNOHANG */ |
Guido van Rossum | 36bc680 | 1995-06-14 22:54:23 +0000 | [diff] [blame] | 79 | #endif |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 80 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 81 | #ifdef HAVE_SIGNAL_H |
Guido van Rossum | a376cc5 | 1996-12-05 23:43:35 +0000 | [diff] [blame] | 82 | #include <signal.h> |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 83 | #endif |
Guido van Rossum | a376cc5 | 1996-12-05 23:43:35 +0000 | [diff] [blame] | 84 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 85 | #ifdef HAVE_FCNTL_H |
| 86 | #include <fcntl.h> |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 87 | #endif /* HAVE_FCNTL_H */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 88 | |
Guido van Rossum | a6535fd | 2001-10-18 19:44:10 +0000 | [diff] [blame] | 89 | #ifdef HAVE_GRP_H |
| 90 | #include <grp.h> |
| 91 | #endif |
| 92 | |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 93 | #ifdef HAVE_SYSEXITS_H |
| 94 | #include <sysexits.h> |
| 95 | #endif /* HAVE_SYSEXITS_H */ |
| 96 | |
Anthony Baxter | 8a560de | 2004-10-13 15:30:56 +0000 | [diff] [blame] | 97 | #ifdef HAVE_SYS_LOADAVG_H |
| 98 | #include <sys/loadavg.h> |
| 99 | #endif |
| 100 | |
Martin v. Löwis | d1cd4d4 | 2007-08-11 14:02:14 +0000 | [diff] [blame] | 101 | #ifdef HAVE_LANGINFO_H |
| 102 | #include <langinfo.h> |
| 103 | #endif |
| 104 | |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 105 | #ifdef HAVE_SYS_SENDFILE_H |
| 106 | #include <sys/sendfile.h> |
| 107 | #endif |
| 108 | |
Benjamin Peterson | 94b580d | 2011-08-02 17:30:04 -0500 | [diff] [blame] | 109 | #ifdef HAVE_SCHED_H |
| 110 | #include <sched.h> |
| 111 | #endif |
| 112 | |
Benjamin Peterson | 2dbda07 | 2012-03-16 10:12:55 -0500 | [diff] [blame] | 113 | #if !defined(CPU_ALLOC) && defined(HAVE_SCHED_SETAFFINITY) |
Benjamin Peterson | 7b51b8d | 2012-03-14 22:28:25 -0500 | [diff] [blame] | 114 | #undef HAVE_SCHED_SETAFFINITY |
| 115 | #endif |
| 116 | |
Benjamin Peterson | 9428d53 | 2011-09-14 11:45:52 -0400 | [diff] [blame] | 117 | #if defined(HAVE_SYS_XATTR_H) && defined(__GLIBC__) |
| 118 | #define USE_XATTRS |
| 119 | #endif |
| 120 | |
| 121 | #ifdef USE_XATTRS |
Benjamin Peterson | b77fe17 | 2011-09-13 17:20:47 -0400 | [diff] [blame] | 122 | #include <sys/xattr.h> |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 123 | #endif |
| 124 | |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 125 | #if defined(__FreeBSD__) || defined(__DragonFly__) || defined(__APPLE__) |
| 126 | #ifdef HAVE_SYS_SOCKET_H |
| 127 | #include <sys/socket.h> |
| 128 | #endif |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 129 | #endif |
| 130 | |
Victor Stinner | 8b905bd | 2011-10-25 13:34:04 +0200 | [diff] [blame] | 131 | #ifdef HAVE_DLFCN_H |
| 132 | #include <dlfcn.h> |
| 133 | #endif |
| 134 | |
Antoine Pitrou | bcf2b59 | 2012-02-08 23:28:36 +0100 | [diff] [blame] | 135 | #if defined(MS_WINDOWS) |
| 136 | # define TERMSIZE_USE_CONIO |
| 137 | #elif defined(HAVE_SYS_IOCTL_H) |
| 138 | # include <sys/ioctl.h> |
| 139 | # if defined(HAVE_TERMIOS_H) |
| 140 | # include <termios.h> |
| 141 | # endif |
| 142 | # if defined(TIOCGWINSZ) |
| 143 | # define TERMSIZE_USE_IOCTL |
| 144 | # endif |
| 145 | #endif /* MS_WINDOWS */ |
| 146 | |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 147 | /* Various compilers have only certain posix functions */ |
Martin v. Löwis | 4f1cd8b | 2001-07-26 13:41:06 +0000 | [diff] [blame] | 148 | /* XXX Gosh I wish these were all moved into pyconfig.h */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 149 | #if defined(PYCC_VACPP) && defined(PYOS_OS2) |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 150 | #include <process.h> |
| 151 | #else |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 152 | #if defined(__WATCOMC__) && !defined(__QNX__) /* Watcom compiler */ |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 153 | #define HAVE_GETCWD 1 |
| 154 | #define HAVE_OPENDIR 1 |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 155 | #define HAVE_SYSTEM 1 |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 156 | #if defined(__OS2__) |
| 157 | #define HAVE_EXECV 1 |
| 158 | #define HAVE_WAIT 1 |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 159 | #endif |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 160 | #include <process.h> |
| 161 | #else |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 162 | #ifdef __BORLANDC__ /* Borland compiler */ |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 163 | #define HAVE_EXECV 1 |
| 164 | #define HAVE_GETCWD 1 |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 165 | #define HAVE_OPENDIR 1 |
| 166 | #define HAVE_PIPE 1 |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 167 | #define HAVE_SYSTEM 1 |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 168 | #define HAVE_WAIT 1 |
| 169 | #else |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 170 | #ifdef _MSC_VER /* Microsoft compiler */ |
Guido van Rossum | 8d665e6 | 1996-06-26 18:22:49 +0000 | [diff] [blame] | 171 | #define HAVE_GETCWD 1 |
Amaury Forgeot d'Arc | 4b6fdf3 | 2010-09-07 21:31:17 +0000 | [diff] [blame] | 172 | #define HAVE_GETPPID 1 |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 173 | #define HAVE_GETLOGIN 1 |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 174 | #define HAVE_SPAWNV 1 |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 175 | #define HAVE_EXECV 1 |
| 176 | #define HAVE_PIPE 1 |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 177 | #define HAVE_SYSTEM 1 |
| 178 | #define HAVE_CWAIT 1 |
| 179 | #define HAVE_FSYNC 1 |
Tim Peters | 11b2306 | 2003-04-23 02:39:17 +0000 | [diff] [blame] | 180 | #define fsync _commit |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 181 | #else |
Martin v. Löwis | 79acb9e | 2002-12-06 12:48:53 +0000 | [diff] [blame] | 182 | #if defined(PYOS_OS2) && defined(PYCC_GCC) || defined(__VMS) |
| 183 | /* Everything needed is defined in PC/os2emx/pyconfig.h or vms/pyconfig.h */ |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 184 | #else /* all other compilers */ |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 185 | /* Unix functions that the configure script doesn't check for */ |
| 186 | #define HAVE_EXECV 1 |
| 187 | #define HAVE_FORK 1 |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 188 | #if defined(__USLC__) && defined(__SCO_VERSION__) /* SCO UDK Compiler */ |
Guido van Rossum | 2242f2f | 2001-04-11 20:58:20 +0000 | [diff] [blame] | 189 | #define HAVE_FORK1 1 |
| 190 | #endif |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 191 | #define HAVE_GETCWD 1 |
| 192 | #define HAVE_GETEGID 1 |
| 193 | #define HAVE_GETEUID 1 |
| 194 | #define HAVE_GETGID 1 |
| 195 | #define HAVE_GETPPID 1 |
| 196 | #define HAVE_GETUID 1 |
| 197 | #define HAVE_KILL 1 |
| 198 | #define HAVE_OPENDIR 1 |
| 199 | #define HAVE_PIPE 1 |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 200 | #define HAVE_SYSTEM 1 |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 201 | #define HAVE_WAIT 1 |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 202 | #define HAVE_TTYNAME 1 |
Martin v. Löwis | 7a924e6 | 2003-03-05 14:15:21 +0000 | [diff] [blame] | 203 | #endif /* PYOS_OS2 && PYCC_GCC && __VMS */ |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 204 | #endif /* _MSC_VER */ |
| 205 | #endif /* __BORLANDC__ */ |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 206 | #endif /* ! __WATCOMC__ || __QNX__ */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 207 | #endif /* ! __IBMC__ */ |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 208 | |
Victor Stinner | a2f7c00 | 2012-02-08 03:36:25 +0100 | [diff] [blame] | 209 | |
| 210 | |
| 211 | |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 212 | #ifndef _MSC_VER |
Guido van Rossum | 36bc680 | 1995-06-14 22:54:23 +0000 | [diff] [blame] | 213 | |
Martin v. Löwis | 8eb92a0 | 2002-09-19 08:03:21 +0000 | [diff] [blame] | 214 | #if defined(__sgi)&&_COMPILER_VERSION>=700 |
| 215 | /* declare ctermid_r if compiling with MIPSPro 7.x in ANSI C mode |
| 216 | (default) */ |
| 217 | extern char *ctermid_r(char *); |
| 218 | #endif |
| 219 | |
Thomas Wouters | 1e0c2f4 | 2000-07-24 16:06:23 +0000 | [diff] [blame] | 220 | #ifndef HAVE_UNISTD_H |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 221 | #if defined(PYCC_VACPP) |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 222 | extern int mkdir(char *); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 223 | #else |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 224 | #if ( defined(__WATCOMC__) || defined(_MSC_VER) ) && !defined(__QNX__) |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 225 | extern int mkdir(const char *); |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 226 | #else |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 227 | extern int mkdir(const char *, mode_t); |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 228 | #endif |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 229 | #endif |
| 230 | #if defined(__IBMC__) || defined(__IBMCPP__) |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 231 | extern int chdir(char *); |
| 232 | extern int rmdir(char *); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 233 | #else |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 234 | extern int chdir(const char *); |
| 235 | extern int rmdir(const char *); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 236 | #endif |
Tim Peters | 58e0a8c | 2001-05-14 22:32:33 +0000 | [diff] [blame] | 237 | #ifdef __BORLANDC__ |
| 238 | extern int chmod(const char *, int); |
| 239 | #else |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 240 | extern int chmod(const char *, mode_t); |
Tim Peters | 58e0a8c | 2001-05-14 22:32:33 +0000 | [diff] [blame] | 241 | #endif |
Christian Heimes | 4e30a84 | 2007-11-30 22:12:06 +0000 | [diff] [blame] | 242 | /*#ifdef HAVE_FCHMOD |
| 243 | extern int fchmod(int, mode_t); |
| 244 | #endif*/ |
| 245 | /*#ifdef HAVE_LCHMOD |
| 246 | extern int lchmod(const char *, mode_t); |
| 247 | #endif*/ |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 248 | extern int chown(const char *, uid_t, gid_t); |
| 249 | extern char *getcwd(char *, int); |
| 250 | extern char *strerror(int); |
| 251 | extern int link(const char *, const char *); |
| 252 | extern int rename(const char *, const char *); |
| 253 | extern int stat(const char *, struct stat *); |
| 254 | extern int unlink(const char *); |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 255 | #ifdef HAVE_SYMLINK |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 256 | extern int symlink(const char *, const char *); |
Guido van Rossum | a38a503 | 1995-02-17 15:11:36 +0000 | [diff] [blame] | 257 | #endif /* HAVE_SYMLINK */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 258 | #ifdef HAVE_LSTAT |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 259 | extern int lstat(const char *, struct stat *); |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 260 | #endif /* HAVE_LSTAT */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 261 | #endif /* !HAVE_UNISTD_H */ |
Guido van Rossum | 36bc680 | 1995-06-14 22:54:23 +0000 | [diff] [blame] | 262 | |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 263 | #endif /* !_MSC_VER */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 264 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 265 | #ifdef HAVE_UTIME_H |
| 266 | #include <utime.h> |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 267 | #endif /* HAVE_UTIME_H */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 268 | |
Guido van Rossum | 14ed0b2 | 1994-09-29 09:50:09 +0000 | [diff] [blame] | 269 | #ifdef HAVE_SYS_UTIME_H |
| 270 | #include <sys/utime.h> |
| 271 | #define HAVE_UTIME_H /* pretend we do for the rest of this file */ |
| 272 | #endif /* HAVE_SYS_UTIME_H */ |
| 273 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 274 | #ifdef HAVE_SYS_TIMES_H |
| 275 | #include <sys/times.h> |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 276 | #endif /* HAVE_SYS_TIMES_H */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 277 | |
| 278 | #ifdef HAVE_SYS_PARAM_H |
| 279 | #include <sys/param.h> |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 280 | #endif /* HAVE_SYS_PARAM_H */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 281 | |
| 282 | #ifdef HAVE_SYS_UTSNAME_H |
| 283 | #include <sys/utsname.h> |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 284 | #endif /* HAVE_SYS_UTSNAME_H */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 285 | |
Guido van Rossum | 3bbc62e | 1995-01-02 19:30:30 +0000 | [diff] [blame] | 286 | #ifdef HAVE_DIRENT_H |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 287 | #include <dirent.h> |
Guido van Rossum | 3bbc62e | 1995-01-02 19:30:30 +0000 | [diff] [blame] | 288 | #define NAMLEN(dirent) strlen((dirent)->d_name) |
| 289 | #else |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 290 | #if defined(__WATCOMC__) && !defined(__QNX__) |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 291 | #include <direct.h> |
| 292 | #define NAMLEN(dirent) strlen((dirent)->d_name) |
| 293 | #else |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 294 | #define dirent direct |
Guido van Rossum | 3bbc62e | 1995-01-02 19:30:30 +0000 | [diff] [blame] | 295 | #define NAMLEN(dirent) (dirent)->d_namlen |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 296 | #endif |
Guido van Rossum | 3bbc62e | 1995-01-02 19:30:30 +0000 | [diff] [blame] | 297 | #ifdef HAVE_SYS_NDIR_H |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 298 | #include <sys/ndir.h> |
Guido van Rossum | 3bbc62e | 1995-01-02 19:30:30 +0000 | [diff] [blame] | 299 | #endif |
| 300 | #ifdef HAVE_SYS_DIR_H |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 301 | #include <sys/dir.h> |
Guido van Rossum | 3bbc62e | 1995-01-02 19:30:30 +0000 | [diff] [blame] | 302 | #endif |
| 303 | #ifdef HAVE_NDIR_H |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 304 | #include <ndir.h> |
Guido van Rossum | 3bbc62e | 1995-01-02 19:30:30 +0000 | [diff] [blame] | 305 | #endif |
| 306 | #endif |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 307 | |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 308 | #ifdef _MSC_VER |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 309 | #ifdef HAVE_DIRECT_H |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 310 | #include <direct.h> |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 311 | #endif |
| 312 | #ifdef HAVE_IO_H |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 313 | #include <io.h> |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 314 | #endif |
| 315 | #ifdef HAVE_PROCESS_H |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 316 | #include <process.h> |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 317 | #endif |
Raymond Hettinger | 0291c9f | 2010-08-01 21:10:35 +0000 | [diff] [blame] | 318 | #ifndef VOLUME_NAME_DOS |
Amaury Forgeot d'Arc | 844807e | 2010-08-16 22:16:51 +0000 | [diff] [blame] | 319 | #define VOLUME_NAME_DOS 0x0 |
Raymond Hettinger | 0291c9f | 2010-08-01 21:10:35 +0000 | [diff] [blame] | 320 | #endif |
| 321 | #ifndef VOLUME_NAME_NT |
Amaury Forgeot d'Arc | 844807e | 2010-08-16 22:16:51 +0000 | [diff] [blame] | 322 | #define VOLUME_NAME_NT 0x2 |
Raymond Hettinger | 0291c9f | 2010-08-01 21:10:35 +0000 | [diff] [blame] | 323 | #endif |
| 324 | #ifndef IO_REPARSE_TAG_SYMLINK |
Amaury Forgeot d'Arc | 844807e | 2010-08-16 22:16:51 +0000 | [diff] [blame] | 325 | #define IO_REPARSE_TAG_SYMLINK (0xA000000CL) |
Raymond Hettinger | 0291c9f | 2010-08-01 21:10:35 +0000 | [diff] [blame] | 326 | #endif |
Tim Peters | bc2e10e | 2002-03-03 23:17:02 +0000 | [diff] [blame] | 327 | #include "osdefs.h" |
Kristján Valur Jónsson | f64e651 | 2009-04-13 10:16:14 +0000 | [diff] [blame] | 328 | #include <malloc.h> |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 329 | #include <windows.h> |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 330 | #include <shellapi.h> /* for ShellExecute() */ |
Brian Curtin | e8e4b3b | 2010-09-23 20:04:14 +0000 | [diff] [blame] | 331 | #include <lmcons.h> /* for UNLEN */ |
Brian Curtin | 52173d4 | 2010-12-02 18:29:18 +0000 | [diff] [blame] | 332 | #ifdef SE_CREATE_SYMBOLIC_LINK_NAME /* Available starting with Vista */ |
| 333 | #define HAVE_SYMLINK |
Brian Curtin | 3b4499c | 2010-12-28 14:31:47 +0000 | [diff] [blame] | 334 | static int win32_can_symlink = 0; |
Brian Curtin | 52173d4 | 2010-12-02 18:29:18 +0000 | [diff] [blame] | 335 | #endif |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 336 | #endif /* _MSC_VER */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 337 | |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 338 | #if defined(PYCC_VACPP) && defined(PYOS_OS2) |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 339 | #include <io.h> |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 340 | #endif /* OS2 */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 341 | |
Tim Peters | bc2e10e | 2002-03-03 23:17:02 +0000 | [diff] [blame] | 342 | #ifndef MAXPATHLEN |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 343 | #if defined(PATH_MAX) && PATH_MAX > 1024 |
| 344 | #define MAXPATHLEN PATH_MAX |
| 345 | #else |
Tim Peters | bc2e10e | 2002-03-03 23:17:02 +0000 | [diff] [blame] | 346 | #define MAXPATHLEN 1024 |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 347 | #endif |
Tim Peters | bc2e10e | 2002-03-03 23:17:02 +0000 | [diff] [blame] | 348 | #endif /* MAXPATHLEN */ |
| 349 | |
Guido van Rossum | 54ecc3d | 1999-01-27 17:53:11 +0000 | [diff] [blame] | 350 | #ifdef UNION_WAIT |
| 351 | /* Emulate some macros on systems that have a union instead of macros */ |
| 352 | |
| 353 | #ifndef WIFEXITED |
| 354 | #define WIFEXITED(u_wait) (!(u_wait).w_termsig && !(u_wait).w_coredump) |
| 355 | #endif |
| 356 | |
| 357 | #ifndef WEXITSTATUS |
| 358 | #define WEXITSTATUS(u_wait) (WIFEXITED(u_wait)?((u_wait).w_retcode):-1) |
| 359 | #endif |
| 360 | |
| 361 | #ifndef WTERMSIG |
| 362 | #define WTERMSIG(u_wait) ((u_wait).w_termsig) |
| 363 | #endif |
| 364 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 365 | #define WAIT_TYPE union wait |
| 366 | #define WAIT_STATUS_INT(s) (s.w_status) |
| 367 | |
| 368 | #else /* !UNION_WAIT */ |
| 369 | #define WAIT_TYPE int |
| 370 | #define WAIT_STATUS_INT(s) (s) |
Guido van Rossum | 54ecc3d | 1999-01-27 17:53:11 +0000 | [diff] [blame] | 371 | #endif /* UNION_WAIT */ |
| 372 | |
Greg Ward | b48bc17 | 2000-03-01 21:51:56 +0000 | [diff] [blame] | 373 | /* Don't use the "_r" form if we don't need it (also, won't have a |
| 374 | prototype for it, at least on Solaris -- maybe others as well?). */ |
| 375 | #if defined(HAVE_CTERMID_R) && defined(WITH_THREAD) |
| 376 | #define USE_CTERMID_R |
| 377 | #endif |
| 378 | |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 379 | /* choose the appropriate stat and fstat functions and return structs */ |
Guido van Rossum | 64529cd | 2000-06-30 22:45:12 +0000 | [diff] [blame] | 380 | #undef STAT |
Antoine Pitrou | e47e093 | 2011-01-19 15:21:35 +0000 | [diff] [blame] | 381 | #undef FSTAT |
| 382 | #undef STRUCT_STAT |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 383 | #if defined(MS_WIN64) || defined(MS_WINDOWS) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 384 | # define STAT win32_stat |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 385 | # define LSTAT win32_lstat |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 386 | # define FSTAT win32_fstat |
| 387 | # define STRUCT_STAT struct win32_stat |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 388 | #else |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 389 | # define STAT stat |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 390 | # define LSTAT lstat |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 391 | # define FSTAT fstat |
| 392 | # define STRUCT_STAT struct stat |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 393 | #endif |
| 394 | |
Tim Peters | 11b2306 | 2003-04-23 02:39:17 +0000 | [diff] [blame] | 395 | #if defined(MAJOR_IN_MKDEV) |
Martin v. Löwis | dbe3f76 | 2002-10-10 14:27:30 +0000 | [diff] [blame] | 396 | #include <sys/mkdev.h> |
| 397 | #else |
| 398 | #if defined(MAJOR_IN_SYSMACROS) |
| 399 | #include <sys/sysmacros.h> |
| 400 | #endif |
Neal Norwitz | 3d94942 | 2002-04-20 13:46:43 +0000 | [diff] [blame] | 401 | #if defined(HAVE_MKNOD) && defined(HAVE_SYS_MKDEV_H) |
| 402 | #include <sys/mkdev.h> |
| 403 | #endif |
Martin v. Löwis | dbe3f76 | 2002-10-10 14:27:30 +0000 | [diff] [blame] | 404 | #endif |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 405 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 406 | |
| 407 | #ifdef MS_WINDOWS |
| 408 | static int |
| 409 | win32_warn_bytes_api() |
| 410 | { |
| 411 | return PyErr_WarnEx(PyExc_DeprecationWarning, |
| 412 | "The Windows bytes API has been deprecated, " |
| 413 | "use Unicode filenames instead", |
| 414 | 1); |
| 415 | } |
| 416 | #endif |
| 417 | |
| 418 | |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 419 | #ifndef MS_WINDOWS |
| 420 | PyObject * |
| 421 | _PyLong_FromUid(uid_t uid) |
| 422 | { |
| 423 | if (uid == (uid_t)-1) |
| 424 | return PyLong_FromLong(-1); |
| 425 | return PyLong_FromUnsignedLong(uid); |
| 426 | } |
| 427 | |
| 428 | PyObject * |
| 429 | _PyLong_FromGid(gid_t gid) |
| 430 | { |
| 431 | if (gid == (gid_t)-1) |
| 432 | return PyLong_FromLong(-1); |
| 433 | return PyLong_FromUnsignedLong(gid); |
| 434 | } |
| 435 | |
| 436 | int |
| 437 | _Py_Uid_Converter(PyObject *obj, void *p) |
| 438 | { |
| 439 | int overflow; |
Serhiy Storchaka | b462189 | 2013-02-10 23:28:02 +0200 | [diff] [blame] | 440 | long result; |
| 441 | if (PyFloat_Check(obj)) { |
| 442 | PyErr_SetString(PyExc_TypeError, |
| 443 | "integer argument expected, got float"); |
| 444 | return 0; |
| 445 | } |
| 446 | result = PyLong_AsLongAndOverflow(obj, &overflow); |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 447 | if (overflow < 0) |
| 448 | goto OverflowDown; |
| 449 | if (!overflow && result == -1) { |
| 450 | /* error or -1 */ |
| 451 | if (PyErr_Occurred()) |
| 452 | return 0; |
| 453 | *(uid_t *)p = (uid_t)-1; |
| 454 | } |
| 455 | else { |
| 456 | /* unsigned uid_t */ |
| 457 | unsigned long uresult; |
| 458 | if (overflow > 0) { |
| 459 | uresult = PyLong_AsUnsignedLong(obj); |
| 460 | if (PyErr_Occurred()) { |
| 461 | if (PyErr_ExceptionMatches(PyExc_OverflowError)) |
| 462 | goto OverflowUp; |
| 463 | return 0; |
| 464 | } |
| 465 | if ((uid_t)uresult == (uid_t)-1) |
| 466 | goto OverflowUp; |
| 467 | } else { |
| 468 | if (result < 0) |
| 469 | goto OverflowDown; |
| 470 | uresult = result; |
| 471 | } |
| 472 | if (sizeof(uid_t) < sizeof(long) && |
| 473 | (unsigned long)(uid_t)uresult != uresult) |
| 474 | goto OverflowUp; |
| 475 | *(uid_t *)p = (uid_t)uresult; |
| 476 | } |
| 477 | return 1; |
| 478 | |
| 479 | OverflowDown: |
| 480 | PyErr_SetString(PyExc_OverflowError, |
| 481 | "user id is less than minimum"); |
| 482 | return 0; |
| 483 | |
| 484 | OverflowUp: |
| 485 | PyErr_SetString(PyExc_OverflowError, |
| 486 | "user id is greater than maximum"); |
| 487 | return 0; |
| 488 | } |
| 489 | |
| 490 | int |
| 491 | _Py_Gid_Converter(PyObject *obj, void *p) |
| 492 | { |
| 493 | int overflow; |
Serhiy Storchaka | b462189 | 2013-02-10 23:28:02 +0200 | [diff] [blame] | 494 | long result; |
| 495 | if (PyFloat_Check(obj)) { |
| 496 | PyErr_SetString(PyExc_TypeError, |
| 497 | "integer argument expected, got float"); |
| 498 | return 0; |
| 499 | } |
| 500 | result = PyLong_AsLongAndOverflow(obj, &overflow); |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 501 | if (overflow < 0) |
| 502 | goto OverflowDown; |
| 503 | if (!overflow && result == -1) { |
| 504 | /* error or -1 */ |
| 505 | if (PyErr_Occurred()) |
| 506 | return 0; |
| 507 | *(gid_t *)p = (gid_t)-1; |
| 508 | } |
| 509 | else { |
| 510 | /* unsigned gid_t */ |
| 511 | unsigned long uresult; |
| 512 | if (overflow > 0) { |
| 513 | uresult = PyLong_AsUnsignedLong(obj); |
| 514 | if (PyErr_Occurred()) { |
| 515 | if (PyErr_ExceptionMatches(PyExc_OverflowError)) |
| 516 | goto OverflowUp; |
| 517 | return 0; |
| 518 | } |
| 519 | if ((gid_t)uresult == (gid_t)-1) |
| 520 | goto OverflowUp; |
| 521 | } else { |
| 522 | if (result < 0) |
| 523 | goto OverflowDown; |
| 524 | uresult = result; |
| 525 | } |
| 526 | if (sizeof(gid_t) < sizeof(long) && |
| 527 | (unsigned long)(gid_t)uresult != uresult) |
| 528 | goto OverflowUp; |
| 529 | *(gid_t *)p = (gid_t)uresult; |
| 530 | } |
| 531 | return 1; |
| 532 | |
| 533 | OverflowDown: |
| 534 | PyErr_SetString(PyExc_OverflowError, |
| 535 | "group id is less than minimum"); |
| 536 | return 0; |
| 537 | |
| 538 | OverflowUp: |
| 539 | PyErr_SetString(PyExc_OverflowError, |
| 540 | "group id is greater than maximum"); |
| 541 | return 0; |
| 542 | } |
| 543 | #endif /* MS_WINDOWS */ |
| 544 | |
| 545 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 546 | #ifdef AT_FDCWD |
Trent Nelson | 9a46105 | 2012-09-18 21:50:06 -0400 | [diff] [blame] | 547 | /* |
| 548 | * Why the (int) cast? Solaris 10 defines AT_FDCWD as 0xffd19553 (-3041965); |
| 549 | * without the int cast, the value gets interpreted as uint (4291925331), |
| 550 | * which doesn't play nicely with all the initializer lines in this file that |
| 551 | * look like this: |
| 552 | * int dir_fd = DEFAULT_DIR_FD; |
| 553 | */ |
| 554 | #define DEFAULT_DIR_FD (int)AT_FDCWD |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 555 | #else |
| 556 | #define DEFAULT_DIR_FD (-100) |
| 557 | #endif |
| 558 | |
| 559 | static int |
Serhiy Storchaka | a2ad5c3 | 2013-01-07 23:13:46 +0200 | [diff] [blame] | 560 | _fd_converter(PyObject *o, int *p, const char *allowed) |
| 561 | { |
| 562 | int overflow; |
| 563 | long long_value = PyLong_AsLongAndOverflow(o, &overflow); |
| 564 | if (PyFloat_Check(o) || |
| 565 | (long_value == -1 && !overflow && PyErr_Occurred())) { |
| 566 | PyErr_Clear(); |
| 567 | PyErr_Format(PyExc_TypeError, |
| 568 | "argument should be %s, not %.200s", |
| 569 | allowed, Py_TYPE(o)->tp_name); |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 570 | return 0; |
| 571 | } |
Serhiy Storchaka | a2ad5c3 | 2013-01-07 23:13:46 +0200 | [diff] [blame] | 572 | if (overflow > 0 || long_value > INT_MAX) { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 573 | PyErr_SetString(PyExc_OverflowError, |
| 574 | "signed integer is greater than maximum"); |
| 575 | return 0; |
| 576 | } |
Serhiy Storchaka | a2ad5c3 | 2013-01-07 23:13:46 +0200 | [diff] [blame] | 577 | if (overflow < 0 || long_value < INT_MIN) { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 578 | PyErr_SetString(PyExc_OverflowError, |
| 579 | "signed integer is less than minimum"); |
| 580 | return 0; |
| 581 | } |
| 582 | *p = (int)long_value; |
| 583 | return 1; |
| 584 | } |
| 585 | |
| 586 | static int |
Serhiy Storchaka | a2ad5c3 | 2013-01-07 23:13:46 +0200 | [diff] [blame] | 587 | dir_fd_converter(PyObject *o, void *p) |
| 588 | { |
| 589 | if (o == Py_None) { |
| 590 | *(int *)p = DEFAULT_DIR_FD; |
| 591 | return 1; |
| 592 | } |
| 593 | return _fd_converter(o, (int *)p, "integer"); |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 594 | } |
| 595 | |
| 596 | |
| 597 | |
| 598 | /* |
| 599 | * A PyArg_ParseTuple "converter" function |
| 600 | * that handles filesystem paths in the manner |
| 601 | * preferred by the os module. |
| 602 | * |
| 603 | * path_converter accepts (Unicode) strings and their |
| 604 | * subclasses, and bytes and their subclasses. What |
| 605 | * it does with the argument depends on the platform: |
| 606 | * |
| 607 | * * On Windows, if we get a (Unicode) string we |
| 608 | * extract the wchar_t * and return it; if we get |
| 609 | * bytes we extract the char * and return that. |
| 610 | * |
| 611 | * * On all other platforms, strings are encoded |
| 612 | * to bytes using PyUnicode_FSConverter, then we |
| 613 | * extract the char * from the bytes object and |
| 614 | * return that. |
| 615 | * |
| 616 | * path_converter also optionally accepts signed |
| 617 | * integers (representing open file descriptors) instead |
| 618 | * of path strings. |
| 619 | * |
| 620 | * Input fields: |
| 621 | * path.nullable |
| 622 | * If nonzero, the path is permitted to be None. |
| 623 | * path.allow_fd |
| 624 | * If nonzero, the path is permitted to be a file handle |
| 625 | * (a signed int) instead of a string. |
| 626 | * path.function_name |
| 627 | * If non-NULL, path_converter will use that as the name |
| 628 | * of the function in error messages. |
| 629 | * (If path.argument_name is NULL it omits the function name.) |
| 630 | * path.argument_name |
| 631 | * If non-NULL, path_converter will use that as the name |
| 632 | * of the parameter in error messages. |
| 633 | * (If path.argument_name is NULL it uses "path".) |
| 634 | * |
| 635 | * Output fields: |
| 636 | * path.wide |
| 637 | * Points to the path if it was expressed as Unicode |
| 638 | * and was not encoded. (Only used on Windows.) |
| 639 | * path.narrow |
| 640 | * Points to the path if it was expressed as bytes, |
| 641 | * or it was Unicode and was encoded to bytes. |
| 642 | * path.fd |
| 643 | * Contains a file descriptor if path.accept_fd was true |
| 644 | * and the caller provided a signed integer instead of any |
| 645 | * sort of string. |
| 646 | * |
| 647 | * WARNING: if your "path" parameter is optional, and is |
| 648 | * unspecified, path_converter will never get called. |
| 649 | * So if you set allow_fd, you *MUST* initialize path.fd = -1 |
| 650 | * yourself! |
| 651 | * path.length |
| 652 | * The length of the path in characters, if specified as |
| 653 | * a string. |
| 654 | * path.object |
| 655 | * The original object passed in. |
| 656 | * path.cleanup |
| 657 | * For internal use only. May point to a temporary object. |
| 658 | * (Pay no attention to the man behind the curtain.) |
| 659 | * |
| 660 | * At most one of path.wide or path.narrow will be non-NULL. |
| 661 | * If path was None and path.nullable was set, |
| 662 | * or if path was an integer and path.allow_fd was set, |
| 663 | * both path.wide and path.narrow will be NULL |
| 664 | * and path.length will be 0. |
Georg Brandl | f787559 | 2012-06-24 13:58:31 +0200 | [diff] [blame] | 665 | * |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 666 | * path_converter takes care to not write to the path_t |
| 667 | * unless it's successful. However it must reset the |
| 668 | * "cleanup" field each time it's called. |
| 669 | * |
| 670 | * Use as follows: |
| 671 | * path_t path; |
| 672 | * memset(&path, 0, sizeof(path)); |
| 673 | * PyArg_ParseTuple(args, "O&", path_converter, &path); |
| 674 | * // ... use values from path ... |
| 675 | * path_cleanup(&path); |
| 676 | * |
| 677 | * (Note that if PyArg_Parse fails you don't need to call |
| 678 | * path_cleanup(). However it is safe to do so.) |
| 679 | */ |
| 680 | typedef struct { |
| 681 | char *function_name; |
| 682 | char *argument_name; |
| 683 | int nullable; |
| 684 | int allow_fd; |
| 685 | wchar_t *wide; |
| 686 | char *narrow; |
| 687 | int fd; |
| 688 | Py_ssize_t length; |
| 689 | PyObject *object; |
| 690 | PyObject *cleanup; |
| 691 | } path_t; |
| 692 | |
| 693 | static void |
| 694 | path_cleanup(path_t *path) { |
| 695 | if (path->cleanup) { |
| 696 | Py_DECREF(path->cleanup); |
| 697 | path->cleanup = NULL; |
| 698 | } |
| 699 | } |
| 700 | |
| 701 | static int |
| 702 | path_converter(PyObject *o, void *p) { |
| 703 | path_t *path = (path_t *)p; |
| 704 | PyObject *unicode, *bytes; |
| 705 | Py_ssize_t length; |
| 706 | char *narrow; |
| 707 | |
| 708 | #define FORMAT_EXCEPTION(exc, fmt) \ |
| 709 | PyErr_Format(exc, "%s%s" fmt, \ |
| 710 | path->function_name ? path->function_name : "", \ |
| 711 | path->function_name ? ": " : "", \ |
| 712 | path->argument_name ? path->argument_name : "path") |
| 713 | |
| 714 | /* Py_CLEANUP_SUPPORTED support */ |
| 715 | if (o == NULL) { |
| 716 | path_cleanup(path); |
| 717 | return 1; |
| 718 | } |
| 719 | |
| 720 | /* ensure it's always safe to call path_cleanup() */ |
| 721 | path->cleanup = NULL; |
| 722 | |
| 723 | if (o == Py_None) { |
| 724 | if (!path->nullable) { |
| 725 | FORMAT_EXCEPTION(PyExc_TypeError, |
| 726 | "can't specify None for %s argument"); |
| 727 | return 0; |
| 728 | } |
| 729 | path->wide = NULL; |
| 730 | path->narrow = NULL; |
| 731 | path->length = 0; |
| 732 | path->object = o; |
| 733 | path->fd = -1; |
| 734 | return 1; |
| 735 | } |
| 736 | |
| 737 | unicode = PyUnicode_FromObject(o); |
| 738 | if (unicode) { |
| 739 | #ifdef MS_WINDOWS |
| 740 | wchar_t *wide; |
| 741 | length = PyUnicode_GET_SIZE(unicode); |
| 742 | if (length > 32767) { |
| 743 | FORMAT_EXCEPTION(PyExc_ValueError, "%s too long for Windows"); |
| 744 | Py_DECREF(unicode); |
| 745 | return 0; |
| 746 | } |
| 747 | |
| 748 | wide = PyUnicode_AsUnicode(unicode); |
| 749 | if (!wide) { |
| 750 | Py_DECREF(unicode); |
| 751 | return 0; |
| 752 | } |
| 753 | |
| 754 | path->wide = wide; |
| 755 | path->narrow = NULL; |
| 756 | path->length = length; |
| 757 | path->object = o; |
| 758 | path->fd = -1; |
| 759 | path->cleanup = unicode; |
| 760 | return Py_CLEANUP_SUPPORTED; |
| 761 | #else |
| 762 | int converted = PyUnicode_FSConverter(unicode, &bytes); |
| 763 | Py_DECREF(unicode); |
| 764 | if (!converted) |
| 765 | bytes = NULL; |
| 766 | #endif |
| 767 | } |
| 768 | else { |
| 769 | PyErr_Clear(); |
Serhiy Storchaka | a2ad5c3 | 2013-01-07 23:13:46 +0200 | [diff] [blame] | 770 | if (PyObject_CheckBuffer(o)) |
| 771 | bytes = PyBytes_FromObject(o); |
| 772 | else |
| 773 | bytes = NULL; |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 774 | if (!bytes) { |
| 775 | PyErr_Clear(); |
| 776 | if (path->allow_fd) { |
| 777 | int fd; |
Serhiy Storchaka | a2ad5c3 | 2013-01-07 23:13:46 +0200 | [diff] [blame] | 778 | int result = _fd_converter(o, &fd, |
| 779 | "string, bytes or integer"); |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 780 | if (result) { |
| 781 | path->wide = NULL; |
| 782 | path->narrow = NULL; |
| 783 | path->length = 0; |
| 784 | path->object = o; |
| 785 | path->fd = fd; |
| 786 | return result; |
| 787 | } |
| 788 | } |
| 789 | } |
| 790 | } |
| 791 | |
| 792 | if (!bytes) { |
| 793 | if (!PyErr_Occurred()) |
| 794 | FORMAT_EXCEPTION(PyExc_TypeError, "illegal type for %s parameter"); |
| 795 | return 0; |
| 796 | } |
| 797 | |
| 798 | #ifdef MS_WINDOWS |
| 799 | if (win32_warn_bytes_api()) { |
| 800 | Py_DECREF(bytes); |
| 801 | return 0; |
| 802 | } |
| 803 | #endif |
| 804 | |
| 805 | length = PyBytes_GET_SIZE(bytes); |
| 806 | #ifdef MS_WINDOWS |
| 807 | if (length > MAX_PATH) { |
| 808 | FORMAT_EXCEPTION(PyExc_ValueError, "%s too long for Windows"); |
| 809 | Py_DECREF(bytes); |
| 810 | return 0; |
| 811 | } |
| 812 | #endif |
| 813 | |
| 814 | narrow = PyBytes_AS_STRING(bytes); |
| 815 | if (length != strlen(narrow)) { |
| 816 | FORMAT_EXCEPTION(PyExc_ValueError, "embedded NUL character in %s"); |
| 817 | Py_DECREF(bytes); |
| 818 | return 0; |
| 819 | } |
| 820 | |
| 821 | path->wide = NULL; |
| 822 | path->narrow = narrow; |
| 823 | path->length = length; |
| 824 | path->object = o; |
| 825 | path->fd = -1; |
| 826 | path->cleanup = bytes; |
| 827 | return Py_CLEANUP_SUPPORTED; |
| 828 | } |
| 829 | |
| 830 | static void |
| 831 | argument_unavailable_error(char *function_name, char *argument_name) { |
| 832 | PyErr_Format(PyExc_NotImplementedError, |
| 833 | "%s%s%s unavailable on this platform", |
| 834 | (function_name != NULL) ? function_name : "", |
| 835 | (function_name != NULL) ? ": ": "", |
| 836 | argument_name); |
| 837 | } |
| 838 | |
| 839 | static int |
Serhiy Storchaka | a2ad5c3 | 2013-01-07 23:13:46 +0200 | [diff] [blame] | 840 | dir_fd_unavailable(PyObject *o, void *p) |
| 841 | { |
| 842 | int dir_fd; |
| 843 | if (!dir_fd_converter(o, &dir_fd)) |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 844 | return 0; |
Serhiy Storchaka | a2ad5c3 | 2013-01-07 23:13:46 +0200 | [diff] [blame] | 845 | if (dir_fd != DEFAULT_DIR_FD) { |
| 846 | argument_unavailable_error(NULL, "dir_fd"); |
| 847 | return 0; |
| 848 | } |
| 849 | *(int *)p = dir_fd; |
| 850 | return 1; |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 851 | } |
| 852 | |
| 853 | static int |
| 854 | fd_specified(char *function_name, int fd) { |
| 855 | if (fd == -1) |
| 856 | return 0; |
| 857 | |
| 858 | argument_unavailable_error(function_name, "fd"); |
| 859 | return 1; |
| 860 | } |
| 861 | |
| 862 | static int |
| 863 | follow_symlinks_specified(char *function_name, int follow_symlinks) { |
| 864 | if (follow_symlinks) |
| 865 | return 0; |
| 866 | |
| 867 | argument_unavailable_error(function_name, "follow_symlinks"); |
| 868 | return 1; |
| 869 | } |
| 870 | |
| 871 | static int |
| 872 | path_and_dir_fd_invalid(char *function_name, path_t *path, int dir_fd) { |
| 873 | if (!path->narrow && !path->wide && (dir_fd != DEFAULT_DIR_FD)) { |
| 874 | PyErr_Format(PyExc_ValueError, |
| 875 | "%s: can't specify dir_fd without matching path", |
| 876 | function_name); |
| 877 | return 1; |
| 878 | } |
| 879 | return 0; |
| 880 | } |
| 881 | |
| 882 | static int |
| 883 | dir_fd_and_fd_invalid(char *function_name, int dir_fd, int fd) { |
| 884 | if ((dir_fd != DEFAULT_DIR_FD) && (fd != -1)) { |
| 885 | PyErr_Format(PyExc_ValueError, |
| 886 | "%s: can't specify both dir_fd and fd", |
| 887 | function_name); |
| 888 | return 1; |
| 889 | } |
| 890 | return 0; |
| 891 | } |
| 892 | |
| 893 | static int |
| 894 | fd_and_follow_symlinks_invalid(char *function_name, int fd, |
| 895 | int follow_symlinks) { |
| 896 | if ((fd > 0) && (!follow_symlinks)) { |
| 897 | PyErr_Format(PyExc_ValueError, |
| 898 | "%s: cannot use fd and follow_symlinks together", |
| 899 | function_name); |
| 900 | return 1; |
| 901 | } |
| 902 | return 0; |
| 903 | } |
| 904 | |
| 905 | static int |
| 906 | dir_fd_and_follow_symlinks_invalid(char *function_name, int dir_fd, |
| 907 | int follow_symlinks) { |
| 908 | if ((dir_fd != DEFAULT_DIR_FD) && (!follow_symlinks)) { |
| 909 | PyErr_Format(PyExc_ValueError, |
| 910 | "%s: cannot use dir_fd and follow_symlinks together", |
| 911 | function_name); |
| 912 | return 1; |
| 913 | } |
| 914 | return 0; |
| 915 | } |
| 916 | |
Ross Lagerwall | b1e5d59 | 2011-09-19 08:30:43 +0200 | [diff] [blame] | 917 | /* A helper used by a number of POSIX-only functions */ |
| 918 | #ifndef MS_WINDOWS |
Georg Brandl | a391b11 | 2011-02-25 15:23:18 +0000 | [diff] [blame] | 919 | static int |
| 920 | _parse_off_t(PyObject* arg, void* addr) |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 921 | { |
| 922 | #if !defined(HAVE_LARGEFILE_SUPPORT) |
| 923 | *((off_t*)addr) = PyLong_AsLong(arg); |
| 924 | #else |
Antoine Pitrou | dcc20b8 | 2011-02-26 13:38:35 +0000 | [diff] [blame] | 925 | *((off_t*)addr) = PyLong_AsLongLong(arg); |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 926 | #endif |
| 927 | if (PyErr_Occurred()) |
| 928 | return 0; |
| 929 | return 1; |
| 930 | } |
Ross Lagerwall | b1e5d59 | 2011-09-19 08:30:43 +0200 | [diff] [blame] | 931 | #endif |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 932 | |
Amaury Forgeot d'Arc | 2fc224f | 2009-02-19 23:23:47 +0000 | [diff] [blame] | 933 | #if defined _MSC_VER && _MSC_VER >= 1400 |
| 934 | /* Microsoft CRT in VS2005 and higher will verify that a filehandle is |
Andrew Svetlov | 737fb89 | 2012-12-18 21:14:22 +0200 | [diff] [blame] | 935 | * valid and raise an assertion if it isn't. |
Amaury Forgeot d'Arc | 2fc224f | 2009-02-19 23:23:47 +0000 | [diff] [blame] | 936 | * Normally, an invalid fd is likely to be a C program error and therefore |
| 937 | * an assertion can be useful, but it does contradict the POSIX standard |
| 938 | * which for write(2) states: |
| 939 | * "Otherwise, -1 shall be returned and errno set to indicate the error." |
| 940 | * "[EBADF] The fildes argument is not a valid file descriptor open for |
| 941 | * writing." |
| 942 | * Furthermore, python allows the user to enter any old integer |
| 943 | * as a fd and should merely raise a python exception on error. |
| 944 | * The Microsoft CRT doesn't provide an official way to check for the |
| 945 | * validity of a file descriptor, but we can emulate its internal behaviour |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 946 | * by using the exported __pinfo data member and knowledge of the |
Amaury Forgeot d'Arc | 2fc224f | 2009-02-19 23:23:47 +0000 | [diff] [blame] | 947 | * internal structures involved. |
| 948 | * The structures below must be updated for each version of visual studio |
| 949 | * according to the file internal.h in the CRT source, until MS comes |
| 950 | * up with a less hacky way to do this. |
| 951 | * (all of this is to avoid globally modifying the CRT behaviour using |
| 952 | * _set_invalid_parameter_handler() and _CrtSetReportMode()) |
| 953 | */ |
Kristján Valur Jónsson | f64e651 | 2009-04-13 10:16:14 +0000 | [diff] [blame] | 954 | /* The actual size of the structure is determined at runtime. |
| 955 | * Only the first items must be present. |
| 956 | */ |
Amaury Forgeot d'Arc | 2fc224f | 2009-02-19 23:23:47 +0000 | [diff] [blame] | 957 | typedef struct { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 958 | intptr_t osfhnd; |
| 959 | char osfile; |
Kristján Valur Jónsson | f64e651 | 2009-04-13 10:16:14 +0000 | [diff] [blame] | 960 | } my_ioinfo; |
Amaury Forgeot d'Arc | 2fc224f | 2009-02-19 23:23:47 +0000 | [diff] [blame] | 961 | |
Kristján Valur Jónsson | f64e651 | 2009-04-13 10:16:14 +0000 | [diff] [blame] | 962 | extern __declspec(dllimport) char * __pioinfo[]; |
Amaury Forgeot d'Arc | 2fc224f | 2009-02-19 23:23:47 +0000 | [diff] [blame] | 963 | #define IOINFO_L2E 5 |
| 964 | #define IOINFO_ARRAY_ELTS (1 << IOINFO_L2E) |
| 965 | #define IOINFO_ARRAYS 64 |
| 966 | #define _NHANDLE_ (IOINFO_ARRAYS * IOINFO_ARRAY_ELTS) |
| 967 | #define FOPEN 0x01 |
| 968 | #define _NO_CONSOLE_FILENO (intptr_t)-2 |
| 969 | |
| 970 | /* This function emulates what the windows CRT does to validate file handles */ |
| 971 | int |
| 972 | _PyVerify_fd(int fd) |
| 973 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 974 | const int i1 = fd >> IOINFO_L2E; |
| 975 | const int i2 = fd & ((1 << IOINFO_L2E) - 1); |
Kristján Valur Jónsson | f64e651 | 2009-04-13 10:16:14 +0000 | [diff] [blame] | 976 | |
Antoine Pitrou | 22e4155 | 2010-08-15 18:07:50 +0000 | [diff] [blame] | 977 | static size_t sizeof_ioinfo = 0; |
Amaury Forgeot d'Arc | 2fc224f | 2009-02-19 23:23:47 +0000 | [diff] [blame] | 978 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 979 | /* Determine the actual size of the ioinfo structure, |
| 980 | * as used by the CRT loaded in memory |
| 981 | */ |
| 982 | if (sizeof_ioinfo == 0 && __pioinfo[0] != NULL) { |
| 983 | sizeof_ioinfo = _msize(__pioinfo[0]) / IOINFO_ARRAY_ELTS; |
| 984 | } |
| 985 | if (sizeof_ioinfo == 0) { |
| 986 | /* This should not happen... */ |
| 987 | goto fail; |
| 988 | } |
| 989 | |
| 990 | /* See that it isn't a special CLEAR fileno */ |
| 991 | if (fd != _NO_CONSOLE_FILENO) { |
| 992 | /* Microsoft CRT would check that 0<=fd<_nhandle but we can't do that. Instead |
| 993 | * we check pointer validity and other info |
| 994 | */ |
| 995 | if (0 <= i1 && i1 < IOINFO_ARRAYS && __pioinfo[i1] != NULL) { |
| 996 | /* finally, check that the file is open */ |
| 997 | my_ioinfo* info = (my_ioinfo*)(__pioinfo[i1] + i2 * sizeof_ioinfo); |
| 998 | if (info->osfile & FOPEN) { |
| 999 | return 1; |
| 1000 | } |
| 1001 | } |
| 1002 | } |
Kristján Valur Jónsson | f64e651 | 2009-04-13 10:16:14 +0000 | [diff] [blame] | 1003 | fail: |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1004 | errno = EBADF; |
| 1005 | return 0; |
Amaury Forgeot d'Arc | 2fc224f | 2009-02-19 23:23:47 +0000 | [diff] [blame] | 1006 | } |
| 1007 | |
| 1008 | /* the special case of checking dup2. The target fd must be in a sensible range */ |
| 1009 | static int |
| 1010 | _PyVerify_fd_dup2(int fd1, int fd2) |
| 1011 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1012 | if (!_PyVerify_fd(fd1)) |
| 1013 | return 0; |
| 1014 | if (fd2 == _NO_CONSOLE_FILENO) |
| 1015 | return 0; |
| 1016 | if ((unsigned)fd2 < _NHANDLE_) |
| 1017 | return 1; |
| 1018 | else |
| 1019 | return 0; |
Amaury Forgeot d'Arc | 2fc224f | 2009-02-19 23:23:47 +0000 | [diff] [blame] | 1020 | } |
| 1021 | #else |
| 1022 | /* dummy version. _PyVerify_fd() is already defined in fileobject.h */ |
| 1023 | #define _PyVerify_fd_dup2(A, B) (1) |
| 1024 | #endif |
| 1025 | |
Brian Curtin | fc1be6d | 2010-11-24 13:23:18 +0000 | [diff] [blame] | 1026 | #ifdef MS_WINDOWS |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1027 | /* The following structure was copied from |
| 1028 | http://msdn.microsoft.com/en-us/library/ms791514.aspx as the required |
| 1029 | include doesn't seem to be present in the Windows SDK (at least as included |
| 1030 | with Visual Studio Express). */ |
| 1031 | typedef struct _REPARSE_DATA_BUFFER { |
| 1032 | ULONG ReparseTag; |
| 1033 | USHORT ReparseDataLength; |
| 1034 | USHORT Reserved; |
| 1035 | union { |
| 1036 | struct { |
| 1037 | USHORT SubstituteNameOffset; |
| 1038 | USHORT SubstituteNameLength; |
| 1039 | USHORT PrintNameOffset; |
| 1040 | USHORT PrintNameLength; |
| 1041 | ULONG Flags; |
| 1042 | WCHAR PathBuffer[1]; |
| 1043 | } SymbolicLinkReparseBuffer; |
| 1044 | |
| 1045 | struct { |
| 1046 | USHORT SubstituteNameOffset; |
| 1047 | USHORT SubstituteNameLength; |
| 1048 | USHORT PrintNameOffset; |
| 1049 | USHORT PrintNameLength; |
| 1050 | WCHAR PathBuffer[1]; |
| 1051 | } MountPointReparseBuffer; |
| 1052 | |
| 1053 | struct { |
| 1054 | UCHAR DataBuffer[1]; |
| 1055 | } GenericReparseBuffer; |
| 1056 | }; |
| 1057 | } REPARSE_DATA_BUFFER, *PREPARSE_DATA_BUFFER; |
| 1058 | |
| 1059 | #define REPARSE_DATA_BUFFER_HEADER_SIZE FIELD_OFFSET(REPARSE_DATA_BUFFER,\ |
| 1060 | GenericReparseBuffer) |
| 1061 | #define MAXIMUM_REPARSE_DATA_BUFFER_SIZE ( 16 * 1024 ) |
| 1062 | |
| 1063 | static int |
Brian Curtin | d25aef5 | 2011-06-13 15:16:04 -0500 | [diff] [blame] | 1064 | win32_get_reparse_tag(HANDLE reparse_point_handle, ULONG *reparse_tag) |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1065 | { |
| 1066 | char target_buffer[MAXIMUM_REPARSE_DATA_BUFFER_SIZE]; |
| 1067 | REPARSE_DATA_BUFFER *rdb = (REPARSE_DATA_BUFFER *)target_buffer; |
| 1068 | DWORD n_bytes_returned; |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1069 | |
| 1070 | if (0 == DeviceIoControl( |
| 1071 | reparse_point_handle, |
| 1072 | FSCTL_GET_REPARSE_POINT, |
| 1073 | NULL, 0, /* in buffer */ |
| 1074 | target_buffer, sizeof(target_buffer), |
| 1075 | &n_bytes_returned, |
| 1076 | NULL)) /* we're not using OVERLAPPED_IO */ |
Brian Curtin | d25aef5 | 2011-06-13 15:16:04 -0500 | [diff] [blame] | 1077 | return FALSE; |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1078 | |
| 1079 | if (reparse_tag) |
| 1080 | *reparse_tag = rdb->ReparseTag; |
| 1081 | |
Brian Curtin | d25aef5 | 2011-06-13 15:16:04 -0500 | [diff] [blame] | 1082 | return TRUE; |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1083 | } |
Victor Stinner | 1ab6c2d | 2011-11-15 22:27:41 +0100 | [diff] [blame] | 1084 | |
Brian Curtin | fc1be6d | 2010-11-24 13:23:18 +0000 | [diff] [blame] | 1085 | #endif /* MS_WINDOWS */ |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1086 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1087 | /* Return a dictionary corresponding to the POSIX environment table */ |
Ronald Oussoren | 697e56d | 2013-01-25 17:57:13 +0100 | [diff] [blame] | 1088 | #if defined(WITH_NEXT_FRAMEWORK) || (defined(__APPLE__) && defined(Py_ENABLE_SHARED)) |
Jack Jansen | ea0c382 | 2002-08-01 21:57:49 +0000 | [diff] [blame] | 1089 | /* On Darwin/MacOSX a shared library or framework has no access to |
Ronald Oussoren | 697e56d | 2013-01-25 17:57:13 +0100 | [diff] [blame] | 1090 | ** environ directly, we must obtain it with _NSGetEnviron(). See also |
| 1091 | ** man environ(7). |
Jack Jansen | ea0c382 | 2002-08-01 21:57:49 +0000 | [diff] [blame] | 1092 | */ |
| 1093 | #include <crt_externs.h> |
| 1094 | static char **environ; |
| 1095 | #elif !defined(_MSC_VER) && ( !defined(__WATCOMC__) || defined(__QNX__) ) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1096 | extern char **environ; |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 1097 | #endif /* !_MSC_VER */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1098 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1099 | static PyObject * |
Thomas Wouters | f3f33dc | 2000-07-21 06:00:07 +0000 | [diff] [blame] | 1100 | convertenviron(void) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1101 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1102 | PyObject *d; |
Thomas Heller | f78f12a | 2007-11-08 19:33:05 +0000 | [diff] [blame] | 1103 | #ifdef MS_WINDOWS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1104 | wchar_t **e; |
Thomas Heller | f78f12a | 2007-11-08 19:33:05 +0000 | [diff] [blame] | 1105 | #else |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1106 | char **e; |
Thomas Heller | f78f12a | 2007-11-08 19:33:05 +0000 | [diff] [blame] | 1107 | #endif |
Martin v. Löwis | c16f3bd | 2003-05-03 09:14:54 +0000 | [diff] [blame] | 1108 | #if defined(PYOS_OS2) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1109 | APIRET rc; |
| 1110 | char buffer[1024]; /* OS/2 Provides a Documented Max of 1024 Chars */ |
| 1111 | #endif |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 1112 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1113 | d = PyDict_New(); |
| 1114 | if (d == NULL) |
| 1115 | return NULL; |
Ronald Oussoren | 697e56d | 2013-01-25 17:57:13 +0100 | [diff] [blame] | 1116 | #if defined(WITH_NEXT_FRAMEWORK) || (defined(__APPLE__) && defined(Py_ENABLE_SHARED)) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1117 | if (environ == NULL) |
| 1118 | environ = *_NSGetEnviron(); |
| 1119 | #endif |
| 1120 | #ifdef MS_WINDOWS |
| 1121 | /* _wenviron must be initialized in this way if the program is started |
| 1122 | through main() instead of wmain(). */ |
| 1123 | _wgetenv(L""); |
| 1124 | if (_wenviron == NULL) |
| 1125 | return d; |
| 1126 | /* This part ignores errors */ |
| 1127 | for (e = _wenviron; *e != NULL; e++) { |
| 1128 | PyObject *k; |
| 1129 | PyObject *v; |
| 1130 | wchar_t *p = wcschr(*e, L'='); |
| 1131 | if (p == NULL) |
| 1132 | continue; |
| 1133 | k = PyUnicode_FromWideChar(*e, (Py_ssize_t)(p-*e)); |
| 1134 | if (k == NULL) { |
| 1135 | PyErr_Clear(); |
| 1136 | continue; |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 1137 | } |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1138 | v = PyUnicode_FromWideChar(p+1, wcslen(p+1)); |
| 1139 | if (v == NULL) { |
| 1140 | PyErr_Clear(); |
| 1141 | Py_DECREF(k); |
| 1142 | continue; |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 1143 | } |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1144 | if (PyDict_GetItem(d, k) == NULL) { |
| 1145 | if (PyDict_SetItem(d, k, v) != 0) |
| 1146 | PyErr_Clear(); |
| 1147 | } |
| 1148 | Py_DECREF(k); |
| 1149 | Py_DECREF(v); |
| 1150 | } |
| 1151 | #else |
| 1152 | if (environ == NULL) |
| 1153 | return d; |
| 1154 | /* This part ignores errors */ |
| 1155 | for (e = environ; *e != NULL; e++) { |
| 1156 | PyObject *k; |
| 1157 | PyObject *v; |
| 1158 | char *p = strchr(*e, '='); |
| 1159 | if (p == NULL) |
| 1160 | continue; |
Victor Stinner | 84ae118 | 2010-05-06 22:05:07 +0000 | [diff] [blame] | 1161 | k = PyBytes_FromStringAndSize(*e, (int)(p-*e)); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1162 | if (k == NULL) { |
| 1163 | PyErr_Clear(); |
| 1164 | continue; |
| 1165 | } |
Victor Stinner | 84ae118 | 2010-05-06 22:05:07 +0000 | [diff] [blame] | 1166 | v = PyBytes_FromStringAndSize(p+1, strlen(p+1)); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1167 | if (v == NULL) { |
| 1168 | PyErr_Clear(); |
| 1169 | Py_DECREF(k); |
| 1170 | continue; |
| 1171 | } |
| 1172 | if (PyDict_GetItem(d, k) == NULL) { |
| 1173 | if (PyDict_SetItem(d, k, v) != 0) |
| 1174 | PyErr_Clear(); |
| 1175 | } |
| 1176 | Py_DECREF(k); |
| 1177 | Py_DECREF(v); |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 1178 | } |
| 1179 | #endif |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1180 | #if defined(PYOS_OS2) |
| 1181 | rc = DosQueryExtLIBPATH(buffer, BEGIN_LIBPATH); |
| 1182 | if (rc == NO_ERROR) { /* (not a type, envname is NOT 'BEGIN_LIBPATH') */ |
| 1183 | PyObject *v = PyBytes_FromString(buffer); |
| 1184 | PyDict_SetItemString(d, "BEGINLIBPATH", v); |
| 1185 | Py_DECREF(v); |
| 1186 | } |
| 1187 | rc = DosQueryExtLIBPATH(buffer, END_LIBPATH); |
| 1188 | if (rc == NO_ERROR) { /* (not a typo, envname is NOT 'END_LIBPATH') */ |
| 1189 | PyObject *v = PyBytes_FromString(buffer); |
| 1190 | PyDict_SetItemString(d, "ENDLIBPATH", v); |
| 1191 | Py_DECREF(v); |
| 1192 | } |
| 1193 | #endif |
| 1194 | return d; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1195 | } |
| 1196 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1197 | /* Set a POSIX-specific error from errno, and return NULL */ |
| 1198 | |
Barry Warsaw | d58d764 | 1998-07-23 16:14:40 +0000 | [diff] [blame] | 1199 | static PyObject * |
Thomas Wouters | f3f33dc | 2000-07-21 06:00:07 +0000 | [diff] [blame] | 1200 | posix_error(void) |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 1201 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1202 | return PyErr_SetFromErrno(PyExc_OSError); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1203 | } |
Barry Warsaw | d58d764 | 1998-07-23 16:14:40 +0000 | [diff] [blame] | 1204 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 1205 | posix_error_with_filename(char* name) |
Barry Warsaw | d58d764 | 1998-07-23 16:14:40 +0000 | [diff] [blame] | 1206 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1207 | return PyErr_SetFromErrnoWithFilename(PyExc_OSError, name); |
Barry Warsaw | d58d764 | 1998-07-23 16:14:40 +0000 | [diff] [blame] | 1208 | } |
| 1209 | |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 1210 | |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 1211 | static PyObject * |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 1212 | posix_error_with_allocated_filename(PyObject* name) |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 1213 | { |
Victor Stinner | 77ccd6d | 2010-05-08 00:36:42 +0000 | [diff] [blame] | 1214 | PyObject *name_str, *rc; |
| 1215 | name_str = PyUnicode_DecodeFSDefaultAndSize(PyBytes_AsString(name), |
| 1216 | PyBytes_GET_SIZE(name)); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1217 | Py_DECREF(name); |
Victor Stinner | 77ccd6d | 2010-05-08 00:36:42 +0000 | [diff] [blame] | 1218 | rc = PyErr_SetFromErrnoWithFilenameObject(PyExc_OSError, |
| 1219 | name_str); |
| 1220 | Py_XDECREF(name_str); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1221 | return rc; |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 1222 | } |
| 1223 | |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 1224 | #ifdef MS_WINDOWS |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 1225 | static PyObject * |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 1226 | win32_error(char* function, const char* filename) |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 1227 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1228 | /* XXX We should pass the function name along in the future. |
| 1229 | (winreg.c also wants to pass the function name.) |
| 1230 | This would however require an additional param to the |
| 1231 | Windows error object, which is non-trivial. |
| 1232 | */ |
| 1233 | errno = GetLastError(); |
| 1234 | if (filename) |
| 1235 | return PyErr_SetFromWindowsErrWithFilename(errno, filename); |
| 1236 | else |
| 1237 | return PyErr_SetFromWindowsErr(errno); |
Fredrik Lundh | ffb9c77 | 2000-07-09 14:49:51 +0000 | [diff] [blame] | 1238 | } |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 1239 | |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 1240 | static PyObject * |
Victor Stinner | eb5657a | 2011-09-30 01:44:27 +0200 | [diff] [blame] | 1241 | win32_error_unicode(char* function, wchar_t* filename) |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 1242 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1243 | /* XXX - see win32_error for comments on 'function' */ |
| 1244 | errno = GetLastError(); |
| 1245 | if (filename) |
| 1246 | return PyErr_SetFromWindowsErrWithUnicodeFilename(errno, filename); |
| 1247 | else |
| 1248 | return PyErr_SetFromWindowsErr(errno); |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 1249 | } |
| 1250 | |
Victor Stinner | eb5657a | 2011-09-30 01:44:27 +0200 | [diff] [blame] | 1251 | static PyObject * |
| 1252 | win32_error_object(char* function, PyObject* filename) |
| 1253 | { |
| 1254 | /* XXX - see win32_error for comments on 'function' */ |
| 1255 | errno = GetLastError(); |
| 1256 | if (filename) |
| 1257 | return PyErr_SetExcFromWindowsErrWithFilenameObject( |
| 1258 | PyExc_WindowsError, |
| 1259 | errno, |
| 1260 | filename); |
| 1261 | else |
| 1262 | return PyErr_SetFromWindowsErr(errno); |
| 1263 | } |
| 1264 | |
Hirokazu Yamamoto | 8223c24 | 2009-05-17 04:21:53 +0000 | [diff] [blame] | 1265 | #endif /* MS_WINDOWS */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1266 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 1267 | /* |
| 1268 | * Some functions return Win32 errors, others only ever use posix_error |
| 1269 | * (this is for backwards compatibility with exceptions) |
| 1270 | */ |
| 1271 | static PyObject * |
| 1272 | path_posix_error(char *function_name, path_t *path) |
| 1273 | { |
| 1274 | if (path->narrow) |
| 1275 | return posix_error_with_filename(path->narrow); |
| 1276 | return posix_error(); |
| 1277 | } |
| 1278 | |
| 1279 | static PyObject * |
| 1280 | path_error(char *function_name, path_t *path) |
| 1281 | { |
| 1282 | #ifdef MS_WINDOWS |
| 1283 | if (path->narrow) |
| 1284 | return win32_error(function_name, path->narrow); |
| 1285 | if (path->wide) |
| 1286 | return win32_error_unicode(function_name, path->wide); |
| 1287 | return win32_error(function_name, NULL); |
| 1288 | #else |
| 1289 | return path_posix_error(function_name, path); |
| 1290 | #endif |
| 1291 | } |
| 1292 | |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 1293 | #if defined(PYOS_OS2) |
| 1294 | /********************************************************************** |
| 1295 | * Helper Function to Trim and Format OS/2 Messages |
| 1296 | **********************************************************************/ |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1297 | static void |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 1298 | os2_formatmsg(char *msgbuf, int msglen, char *reason) |
| 1299 | { |
| 1300 | msgbuf[msglen] = '\0'; /* OS/2 Doesn't Guarantee a Terminator */ |
| 1301 | |
| 1302 | if (strlen(msgbuf) > 0) { /* If Non-Empty Msg, Trim CRLF */ |
| 1303 | char *lastc = &msgbuf[ strlen(msgbuf)-1 ]; |
| 1304 | |
Antoine Pitrou | 4de7457 | 2013-02-09 23:11:27 +0100 | [diff] [blame] | 1305 | while (lastc > msgbuf && Py_ISSPACE(Py_CHARMASK(*lastc))) |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 1306 | *lastc-- = '\0'; /* Trim Trailing Whitespace (CRLF) */ |
| 1307 | } |
| 1308 | |
| 1309 | /* Add Optional Reason Text */ |
| 1310 | if (reason) { |
| 1311 | strcat(msgbuf, " : "); |
| 1312 | strcat(msgbuf, reason); |
| 1313 | } |
| 1314 | } |
| 1315 | |
| 1316 | /********************************************************************** |
| 1317 | * Decode an OS/2 Operating System Error Code |
| 1318 | * |
| 1319 | * A convenience function to lookup an OS/2 error code and return a |
| 1320 | * text message we can use to raise a Python exception. |
| 1321 | * |
| 1322 | * Notes: |
| 1323 | * The messages for errors returned from the OS/2 kernel reside in |
| 1324 | * the file OSO001.MSG in the \OS2 directory hierarchy. |
| 1325 | * |
| 1326 | **********************************************************************/ |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1327 | static char * |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 1328 | os2_strerror(char *msgbuf, int msgbuflen, int errorcode, char *reason) |
| 1329 | { |
| 1330 | APIRET rc; |
| 1331 | ULONG msglen; |
| 1332 | |
| 1333 | /* Retrieve Kernel-Related Error Message from OSO001.MSG File */ |
| 1334 | Py_BEGIN_ALLOW_THREADS |
| 1335 | rc = DosGetMessage(NULL, 0, msgbuf, msgbuflen, |
| 1336 | errorcode, "oso001.msg", &msglen); |
| 1337 | Py_END_ALLOW_THREADS |
| 1338 | |
| 1339 | if (rc == NO_ERROR) |
| 1340 | os2_formatmsg(msgbuf, msglen, reason); |
| 1341 | else |
Tim Peters | 1ceb5fb | 2001-11-28 20:32:57 +0000 | [diff] [blame] | 1342 | PyOS_snprintf(msgbuf, msgbuflen, |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1343 | "unknown OS error #%d", errorcode); |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 1344 | |
| 1345 | return msgbuf; |
| 1346 | } |
| 1347 | |
| 1348 | /* Set an OS/2-specific error and return NULL. OS/2 kernel |
| 1349 | errors are not in a global variable e.g. 'errno' nor are |
| 1350 | they congruent with posix error numbers. */ |
| 1351 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1352 | static PyObject * |
| 1353 | os2_error(int code) |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 1354 | { |
| 1355 | char text[1024]; |
| 1356 | PyObject *v; |
| 1357 | |
| 1358 | os2_strerror(text, sizeof(text), code, ""); |
| 1359 | |
| 1360 | v = Py_BuildValue("(is)", code, text); |
| 1361 | if (v != NULL) { |
Barry Warsaw | ca74da4 | 1999-02-09 19:31:45 +0000 | [diff] [blame] | 1362 | PyErr_SetObject(PyExc_OSError, v); |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 1363 | Py_DECREF(v); |
| 1364 | } |
| 1365 | return NULL; /* Signal to Python that an Exception is Pending */ |
| 1366 | } |
| 1367 | |
| 1368 | #endif /* OS2 */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1369 | |
| 1370 | /* POSIX generic methods */ |
| 1371 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 1372 | static PyObject * |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 1373 | posix_fildes(PyObject *fdobj, int (*func)(int)) |
| 1374 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1375 | int fd; |
| 1376 | int res; |
| 1377 | fd = PyObject_AsFileDescriptor(fdobj); |
| 1378 | if (fd < 0) |
| 1379 | return NULL; |
| 1380 | if (!_PyVerify_fd(fd)) |
| 1381 | return posix_error(); |
| 1382 | Py_BEGIN_ALLOW_THREADS |
| 1383 | res = (*func)(fd); |
| 1384 | Py_END_ALLOW_THREADS |
| 1385 | if (res < 0) |
| 1386 | return posix_error(); |
| 1387 | Py_INCREF(Py_None); |
| 1388 | return Py_None; |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 1389 | } |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 1390 | |
| 1391 | static PyObject * |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1392 | posix_1str(PyObject *args, char *format, int (*func)(const char*)) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1393 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1394 | PyObject *opath1 = NULL; |
| 1395 | char *path1; |
| 1396 | int res; |
| 1397 | if (!PyArg_ParseTuple(args, format, |
| 1398 | PyUnicode_FSConverter, &opath1)) |
| 1399 | return NULL; |
| 1400 | path1 = PyBytes_AsString(opath1); |
| 1401 | Py_BEGIN_ALLOW_THREADS |
| 1402 | res = (*func)(path1); |
| 1403 | Py_END_ALLOW_THREADS |
| 1404 | if (res < 0) |
| 1405 | return posix_error_with_allocated_filename(opath1); |
| 1406 | Py_DECREF(opath1); |
| 1407 | Py_INCREF(Py_None); |
| 1408 | return Py_None; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1409 | } |
| 1410 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1411 | |
Hirokazu Yamamoto | 8223c24 | 2009-05-17 04:21:53 +0000 | [diff] [blame] | 1412 | #ifdef MS_WINDOWS |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1413 | static PyObject* |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1414 | win32_1str(PyObject* args, char* func, |
| 1415 | char* format, BOOL (__stdcall *funcA)(LPCSTR), |
| 1416 | char* wformat, BOOL (__stdcall *funcW)(LPWSTR)) |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1417 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1418 | PyObject *uni; |
Victor Stinner | 1ab6c2d | 2011-11-15 22:27:41 +0100 | [diff] [blame] | 1419 | const char *ansi; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1420 | BOOL result; |
Hirokazu Yamamoto | 892a37a | 2009-06-28 11:07:03 +0000 | [diff] [blame] | 1421 | |
Victor Stinner | eb5657a | 2011-09-30 01:44:27 +0200 | [diff] [blame] | 1422 | if (PyArg_ParseTuple(args, wformat, &uni)) |
| 1423 | { |
| 1424 | wchar_t *wstr = PyUnicode_AsUnicode(uni); |
| 1425 | if (wstr == NULL) |
| 1426 | return NULL; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1427 | Py_BEGIN_ALLOW_THREADS |
Victor Stinner | eb5657a | 2011-09-30 01:44:27 +0200 | [diff] [blame] | 1428 | result = funcW(wstr); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1429 | Py_END_ALLOW_THREADS |
| 1430 | if (!result) |
Victor Stinner | eb5657a | 2011-09-30 01:44:27 +0200 | [diff] [blame] | 1431 | return win32_error_object(func, uni); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1432 | Py_INCREF(Py_None); |
| 1433 | return Py_None; |
| 1434 | } |
Victor Stinner | eb5657a | 2011-09-30 01:44:27 +0200 | [diff] [blame] | 1435 | PyErr_Clear(); |
| 1436 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1437 | if (!PyArg_ParseTuple(args, format, &ansi)) |
| 1438 | return NULL; |
Victor Stinner | 1ab6c2d | 2011-11-15 22:27:41 +0100 | [diff] [blame] | 1439 | if (win32_warn_bytes_api()) |
| 1440 | return NULL; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1441 | Py_BEGIN_ALLOW_THREADS |
| 1442 | result = funcA(ansi); |
| 1443 | Py_END_ALLOW_THREADS |
| 1444 | if (!result) |
| 1445 | return win32_error(func, ansi); |
| 1446 | Py_INCREF(Py_None); |
| 1447 | return Py_None; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1448 | |
| 1449 | } |
| 1450 | |
| 1451 | /* This is a reimplementation of the C library's chdir function, |
| 1452 | but one that produces Win32 errors instead of DOS error codes. |
| 1453 | chdir is essentially a wrapper around SetCurrentDirectory; however, |
| 1454 | it also needs to set "magic" environment variables indicating |
| 1455 | the per-drive current directory, which are of the form =<drive>: */ |
Benjamin Peterson | 206e307 | 2008-10-19 14:07:49 +0000 | [diff] [blame] | 1456 | static BOOL __stdcall |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1457 | win32_chdir(LPCSTR path) |
| 1458 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1459 | char new_path[MAX_PATH+1]; |
| 1460 | int result; |
| 1461 | char env[4] = "=x:"; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1462 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1463 | if(!SetCurrentDirectoryA(path)) |
| 1464 | return FALSE; |
| 1465 | result = GetCurrentDirectoryA(MAX_PATH+1, new_path); |
| 1466 | if (!result) |
| 1467 | return FALSE; |
| 1468 | /* In the ANSI API, there should not be any paths longer |
| 1469 | than MAX_PATH. */ |
| 1470 | assert(result <= MAX_PATH+1); |
| 1471 | if (strncmp(new_path, "\\\\", 2) == 0 || |
| 1472 | strncmp(new_path, "//", 2) == 0) |
| 1473 | /* UNC path, nothing to do. */ |
| 1474 | return TRUE; |
| 1475 | env[1] = new_path[0]; |
| 1476 | return SetEnvironmentVariableA(env, new_path); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1477 | } |
| 1478 | |
| 1479 | /* The Unicode version differs from the ANSI version |
| 1480 | since the current directory might exceed MAX_PATH characters */ |
Benjamin Peterson | 206e307 | 2008-10-19 14:07:49 +0000 | [diff] [blame] | 1481 | static BOOL __stdcall |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1482 | win32_wchdir(LPCWSTR path) |
| 1483 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1484 | wchar_t _new_path[MAX_PATH+1], *new_path = _new_path; |
| 1485 | int result; |
| 1486 | wchar_t env[4] = L"=x:"; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1487 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1488 | if(!SetCurrentDirectoryW(path)) |
| 1489 | return FALSE; |
| 1490 | result = GetCurrentDirectoryW(MAX_PATH+1, new_path); |
| 1491 | if (!result) |
| 1492 | return FALSE; |
| 1493 | if (result > MAX_PATH+1) { |
| 1494 | new_path = malloc(result * sizeof(wchar_t)); |
| 1495 | if (!new_path) { |
| 1496 | SetLastError(ERROR_OUTOFMEMORY); |
| 1497 | return FALSE; |
| 1498 | } |
| 1499 | result = GetCurrentDirectoryW(result, new_path); |
| 1500 | if (!result) { |
| 1501 | free(new_path); |
| 1502 | return FALSE; |
| 1503 | } |
| 1504 | } |
| 1505 | if (wcsncmp(new_path, L"\\\\", 2) == 0 || |
| 1506 | wcsncmp(new_path, L"//", 2) == 0) |
| 1507 | /* UNC path, nothing to do. */ |
| 1508 | return TRUE; |
| 1509 | env[1] = new_path[0]; |
| 1510 | result = SetEnvironmentVariableW(env, new_path); |
| 1511 | if (new_path != _new_path) |
| 1512 | free(new_path); |
| 1513 | return result; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1514 | } |
| 1515 | #endif |
| 1516 | |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1517 | #ifdef MS_WINDOWS |
| 1518 | /* The CRT of Windows has a number of flaws wrt. its stat() implementation: |
| 1519 | - time stamps are restricted to second resolution |
| 1520 | - file modification times suffer from forth-and-back conversions between |
| 1521 | UTC and local time |
| 1522 | Therefore, we implement our own stat, based on the Win32 API directly. |
| 1523 | */ |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1524 | #define HAVE_STAT_NSEC 1 |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1525 | |
| 1526 | struct win32_stat{ |
| 1527 | int st_dev; |
| 1528 | __int64 st_ino; |
| 1529 | unsigned short st_mode; |
| 1530 | int st_nlink; |
| 1531 | int st_uid; |
| 1532 | int st_gid; |
| 1533 | int st_rdev; |
| 1534 | __int64 st_size; |
Amaury Forgeot d'Arc | a251a85 | 2011-01-03 00:19:11 +0000 | [diff] [blame] | 1535 | time_t st_atime; |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1536 | int st_atime_nsec; |
Amaury Forgeot d'Arc | a251a85 | 2011-01-03 00:19:11 +0000 | [diff] [blame] | 1537 | time_t st_mtime; |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1538 | int st_mtime_nsec; |
Amaury Forgeot d'Arc | a251a85 | 2011-01-03 00:19:11 +0000 | [diff] [blame] | 1539 | time_t st_ctime; |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1540 | int st_ctime_nsec; |
| 1541 | }; |
| 1542 | |
| 1543 | static __int64 secs_between_epochs = 11644473600; /* Seconds between 1.1.1601 and 1.1.1970 */ |
| 1544 | |
| 1545 | static void |
Amaury Forgeot d'Arc | a251a85 | 2011-01-03 00:19:11 +0000 | [diff] [blame] | 1546 | FILE_TIME_to_time_t_nsec(FILETIME *in_ptr, time_t *time_out, int* nsec_out) |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1547 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1548 | /* XXX endianness. Shouldn't matter, as all Windows implementations are little-endian */ |
| 1549 | /* Cannot simply cast and dereference in_ptr, |
| 1550 | since it might not be aligned properly */ |
| 1551 | __int64 in; |
| 1552 | memcpy(&in, in_ptr, sizeof(in)); |
| 1553 | *nsec_out = (int)(in % 10000000) * 100; /* FILETIME is in units of 100 nsec. */ |
Amaury Forgeot d'Arc | a251a85 | 2011-01-03 00:19:11 +0000 | [diff] [blame] | 1554 | *time_out = Py_SAFE_DOWNCAST((in / 10000000) - secs_between_epochs, __int64, time_t); |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1555 | } |
| 1556 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1557 | static void |
Amaury Forgeot d'Arc | a251a85 | 2011-01-03 00:19:11 +0000 | [diff] [blame] | 1558 | time_t_to_FILE_TIME(time_t time_in, int nsec_in, FILETIME *out_ptr) |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1559 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1560 | /* XXX endianness */ |
| 1561 | __int64 out; |
| 1562 | out = time_in + secs_between_epochs; |
| 1563 | out = out * 10000000 + nsec_in / 100; |
| 1564 | memcpy(out_ptr, &out, sizeof(out)); |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 1565 | } |
| 1566 | |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1567 | /* Below, we *know* that ugo+r is 0444 */ |
| 1568 | #if _S_IREAD != 0400 |
| 1569 | #error Unsupported C library |
| 1570 | #endif |
| 1571 | static int |
| 1572 | attributes_to_mode(DWORD attr) |
| 1573 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1574 | int m = 0; |
| 1575 | if (attr & FILE_ATTRIBUTE_DIRECTORY) |
| 1576 | m |= _S_IFDIR | 0111; /* IFEXEC for user,group,other */ |
| 1577 | else |
| 1578 | m |= _S_IFREG; |
| 1579 | if (attr & FILE_ATTRIBUTE_READONLY) |
| 1580 | m |= 0444; |
| 1581 | else |
| 1582 | m |= 0666; |
| 1583 | return m; |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1584 | } |
| 1585 | |
| 1586 | static int |
Hirokazu Yamamoto | 427d314 | 2010-12-04 10:16:05 +0000 | [diff] [blame] | 1587 | attribute_data_to_stat(BY_HANDLE_FILE_INFORMATION *info, ULONG reparse_tag, struct win32_stat *result) |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1588 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1589 | memset(result, 0, sizeof(*result)); |
| 1590 | result->st_mode = attributes_to_mode(info->dwFileAttributes); |
| 1591 | result->st_size = (((__int64)info->nFileSizeHigh)<<32) + info->nFileSizeLow; |
| 1592 | FILE_TIME_to_time_t_nsec(&info->ftCreationTime, &result->st_ctime, &result->st_ctime_nsec); |
| 1593 | FILE_TIME_to_time_t_nsec(&info->ftLastWriteTime, &result->st_mtime, &result->st_mtime_nsec); |
| 1594 | FILE_TIME_to_time_t_nsec(&info->ftLastAccessTime, &result->st_atime, &result->st_atime_nsec); |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1595 | result->st_nlink = info->nNumberOfLinks; |
Brian Curtin | 1b9df39 | 2010-11-24 20:24:31 +0000 | [diff] [blame] | 1596 | result->st_ino = (((__int64)info->nFileIndexHigh)<<32) + info->nFileIndexLow; |
Hirokazu Yamamoto | 427d314 | 2010-12-04 10:16:05 +0000 | [diff] [blame] | 1597 | if (reparse_tag == IO_REPARSE_TAG_SYMLINK) { |
| 1598 | /* first clear the S_IFMT bits */ |
| 1599 | result->st_mode ^= (result->st_mode & 0170000); |
| 1600 | /* now set the bits that make this a symlink */ |
| 1601 | result->st_mode |= 0120000; |
| 1602 | } |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1603 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1604 | return 0; |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1605 | } |
| 1606 | |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1607 | static BOOL |
Hirokazu Yamamoto | 427d314 | 2010-12-04 10:16:05 +0000 | [diff] [blame] | 1608 | attributes_from_dir(LPCSTR pszFile, BY_HANDLE_FILE_INFORMATION *info, ULONG *reparse_tag) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1609 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1610 | HANDLE hFindFile; |
| 1611 | WIN32_FIND_DATAA FileData; |
| 1612 | hFindFile = FindFirstFileA(pszFile, &FileData); |
| 1613 | if (hFindFile == INVALID_HANDLE_VALUE) |
| 1614 | return FALSE; |
| 1615 | FindClose(hFindFile); |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1616 | memset(info, 0, sizeof(*info)); |
Hirokazu Yamamoto | 427d314 | 2010-12-04 10:16:05 +0000 | [diff] [blame] | 1617 | *reparse_tag = 0; |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1618 | info->dwFileAttributes = FileData.dwFileAttributes; |
| 1619 | info->ftCreationTime = FileData.ftCreationTime; |
| 1620 | info->ftLastAccessTime = FileData.ftLastAccessTime; |
| 1621 | info->ftLastWriteTime = FileData.ftLastWriteTime; |
| 1622 | info->nFileSizeHigh = FileData.nFileSizeHigh; |
| 1623 | info->nFileSizeLow = FileData.nFileSizeLow; |
| 1624 | /* info->nNumberOfLinks = 1; */ |
Hirokazu Yamamoto | 427d314 | 2010-12-04 10:16:05 +0000 | [diff] [blame] | 1625 | if (FileData.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT) |
| 1626 | *reparse_tag = FileData.dwReserved0; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1627 | return TRUE; |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1628 | } |
| 1629 | |
| 1630 | static BOOL |
Hirokazu Yamamoto | 427d314 | 2010-12-04 10:16:05 +0000 | [diff] [blame] | 1631 | attributes_from_dir_w(LPCWSTR pszFile, BY_HANDLE_FILE_INFORMATION *info, ULONG *reparse_tag) |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1632 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1633 | HANDLE hFindFile; |
| 1634 | WIN32_FIND_DATAW FileData; |
| 1635 | hFindFile = FindFirstFileW(pszFile, &FileData); |
| 1636 | if (hFindFile == INVALID_HANDLE_VALUE) |
| 1637 | return FALSE; |
| 1638 | FindClose(hFindFile); |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1639 | memset(info, 0, sizeof(*info)); |
Hirokazu Yamamoto | 427d314 | 2010-12-04 10:16:05 +0000 | [diff] [blame] | 1640 | *reparse_tag = 0; |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1641 | info->dwFileAttributes = FileData.dwFileAttributes; |
| 1642 | info->ftCreationTime = FileData.ftCreationTime; |
| 1643 | info->ftLastAccessTime = FileData.ftLastAccessTime; |
| 1644 | info->ftLastWriteTime = FileData.ftLastWriteTime; |
| 1645 | info->nFileSizeHigh = FileData.nFileSizeHigh; |
| 1646 | info->nFileSizeLow = FileData.nFileSizeLow; |
| 1647 | /* info->nNumberOfLinks = 1; */ |
Hirokazu Yamamoto | 427d314 | 2010-12-04 10:16:05 +0000 | [diff] [blame] | 1648 | if (FileData.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT) |
| 1649 | *reparse_tag = FileData.dwReserved0; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1650 | return TRUE; |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 1651 | } |
| 1652 | |
Brian Curtin | d25aef5 | 2011-06-13 15:16:04 -0500 | [diff] [blame] | 1653 | /* Grab GetFinalPathNameByHandle dynamically from kernel32 */ |
| 1654 | static int has_GetFinalPathNameByHandle = 0; |
Brian Curtin | d25aef5 | 2011-06-13 15:16:04 -0500 | [diff] [blame] | 1655 | static DWORD (CALLBACK *Py_GetFinalPathNameByHandleW)(HANDLE, LPWSTR, DWORD, |
| 1656 | DWORD); |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1657 | static int |
Brian Curtin | d25aef5 | 2011-06-13 15:16:04 -0500 | [diff] [blame] | 1658 | check_GetFinalPathNameByHandle() |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1659 | { |
Brian Curtin | d25aef5 | 2011-06-13 15:16:04 -0500 | [diff] [blame] | 1660 | HINSTANCE hKernel32; |
Victor Stinner | 1ab6c2d | 2011-11-15 22:27:41 +0100 | [diff] [blame] | 1661 | DWORD (CALLBACK *Py_GetFinalPathNameByHandleA)(HANDLE, LPSTR, DWORD, |
| 1662 | DWORD); |
| 1663 | |
Brian Curtin | d25aef5 | 2011-06-13 15:16:04 -0500 | [diff] [blame] | 1664 | /* only recheck */ |
| 1665 | if (!has_GetFinalPathNameByHandle) |
| 1666 | { |
Martin v. Löwis | 50590f1 | 2012-01-14 17:54:09 +0100 | [diff] [blame] | 1667 | hKernel32 = GetModuleHandleW(L"KERNEL32"); |
Brian Curtin | d25aef5 | 2011-06-13 15:16:04 -0500 | [diff] [blame] | 1668 | *(FARPROC*)&Py_GetFinalPathNameByHandleA = GetProcAddress(hKernel32, |
| 1669 | "GetFinalPathNameByHandleA"); |
| 1670 | *(FARPROC*)&Py_GetFinalPathNameByHandleW = GetProcAddress(hKernel32, |
| 1671 | "GetFinalPathNameByHandleW"); |
| 1672 | has_GetFinalPathNameByHandle = Py_GetFinalPathNameByHandleA && |
| 1673 | Py_GetFinalPathNameByHandleW; |
| 1674 | } |
| 1675 | return has_GetFinalPathNameByHandle; |
| 1676 | } |
| 1677 | |
| 1678 | static BOOL |
| 1679 | get_target_path(HANDLE hdl, wchar_t **target_path) |
| 1680 | { |
| 1681 | int buf_size, result_length; |
| 1682 | wchar_t *buf; |
| 1683 | |
| 1684 | /* We have a good handle to the target, use it to determine |
| 1685 | the target path name (then we'll call lstat on it). */ |
| 1686 | buf_size = Py_GetFinalPathNameByHandleW(hdl, 0, 0, |
| 1687 | VOLUME_NAME_DOS); |
| 1688 | if(!buf_size) |
| 1689 | return FALSE; |
| 1690 | |
| 1691 | buf = (wchar_t *)malloc((buf_size+1)*sizeof(wchar_t)); |
Brian Curtin | c8be840 | 2011-06-14 09:52:50 -0500 | [diff] [blame] | 1692 | if (!buf) { |
| 1693 | SetLastError(ERROR_OUTOFMEMORY); |
| 1694 | return FALSE; |
| 1695 | } |
| 1696 | |
Brian Curtin | d25aef5 | 2011-06-13 15:16:04 -0500 | [diff] [blame] | 1697 | result_length = Py_GetFinalPathNameByHandleW(hdl, |
| 1698 | buf, buf_size, VOLUME_NAME_DOS); |
| 1699 | |
| 1700 | if(!result_length) { |
| 1701 | free(buf); |
| 1702 | return FALSE; |
| 1703 | } |
| 1704 | |
| 1705 | if(!CloseHandle(hdl)) { |
| 1706 | free(buf); |
| 1707 | return FALSE; |
| 1708 | } |
| 1709 | |
| 1710 | buf[result_length] = 0; |
| 1711 | |
| 1712 | *target_path = buf; |
| 1713 | return TRUE; |
| 1714 | } |
| 1715 | |
| 1716 | static int |
| 1717 | win32_xstat_impl_w(const wchar_t *path, struct win32_stat *result, |
| 1718 | BOOL traverse); |
| 1719 | static int |
| 1720 | win32_xstat_impl(const char *path, struct win32_stat *result, |
| 1721 | BOOL traverse) |
| 1722 | { |
Victor Stinner | 26de69d | 2011-06-17 15:15:38 +0200 | [diff] [blame] | 1723 | int code; |
Brian Curtin | d25aef5 | 2011-06-13 15:16:04 -0500 | [diff] [blame] | 1724 | HANDLE hFile, hFile2; |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1725 | BY_HANDLE_FILE_INFORMATION info; |
Hirokazu Yamamoto | 427d314 | 2010-12-04 10:16:05 +0000 | [diff] [blame] | 1726 | ULONG reparse_tag = 0; |
Victor Stinner | 26de69d | 2011-06-17 15:15:38 +0200 | [diff] [blame] | 1727 | wchar_t *target_path; |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1728 | const char *dot; |
| 1729 | |
Brian Curtin | d25aef5 | 2011-06-13 15:16:04 -0500 | [diff] [blame] | 1730 | if(!check_GetFinalPathNameByHandle()) { |
Brian Curtin | c8be840 | 2011-06-14 09:52:50 -0500 | [diff] [blame] | 1731 | /* If the OS doesn't have GetFinalPathNameByHandle, don't |
| 1732 | traverse reparse point. */ |
| 1733 | traverse = FALSE; |
Hirokazu Yamamoto | 427d314 | 2010-12-04 10:16:05 +0000 | [diff] [blame] | 1734 | } |
| 1735 | |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1736 | hFile = CreateFileA( |
| 1737 | path, |
Brian Curtin | d25aef5 | 2011-06-13 15:16:04 -0500 | [diff] [blame] | 1738 | FILE_READ_ATTRIBUTES, /* desired access */ |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1739 | 0, /* share mode */ |
| 1740 | NULL, /* security attributes */ |
| 1741 | OPEN_EXISTING, |
| 1742 | /* FILE_FLAG_BACKUP_SEMANTICS is required to open a directory */ |
Brian Curtin | d25aef5 | 2011-06-13 15:16:04 -0500 | [diff] [blame] | 1743 | /* FILE_FLAG_OPEN_REPARSE_POINT does not follow the symlink. |
| 1744 | Because of this, calls like GetFinalPathNameByHandle will return |
| 1745 | the symlink path agin and not the actual final path. */ |
| 1746 | FILE_ATTRIBUTE_NORMAL|FILE_FLAG_BACKUP_SEMANTICS| |
| 1747 | FILE_FLAG_OPEN_REPARSE_POINT, |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1748 | NULL); |
| 1749 | |
Hirokazu Yamamoto | 427d314 | 2010-12-04 10:16:05 +0000 | [diff] [blame] | 1750 | if (hFile == INVALID_HANDLE_VALUE) { |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1751 | /* Either the target doesn't exist, or we don't have access to |
| 1752 | get a handle to it. If the former, we need to return an error. |
| 1753 | If the latter, we can use attributes_from_dir. */ |
| 1754 | if (GetLastError() != ERROR_SHARING_VIOLATION) |
Hirokazu Yamamoto | 427d314 | 2010-12-04 10:16:05 +0000 | [diff] [blame] | 1755 | return -1; |
| 1756 | /* Could not get attributes on open file. Fall back to |
| 1757 | reading the directory. */ |
| 1758 | if (!attributes_from_dir(path, &info, &reparse_tag)) |
| 1759 | /* Very strange. This should not fail now */ |
| 1760 | return -1; |
| 1761 | if (info.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT) { |
| 1762 | if (traverse) { |
| 1763 | /* Should traverse, but could not open reparse point handle */ |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1764 | SetLastError(ERROR_SHARING_VIOLATION); |
Hirokazu Yamamoto | 427d314 | 2010-12-04 10:16:05 +0000 | [diff] [blame] | 1765 | return -1; |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1766 | } |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1767 | } |
Hirokazu Yamamoto | 427d314 | 2010-12-04 10:16:05 +0000 | [diff] [blame] | 1768 | } else { |
| 1769 | if (!GetFileInformationByHandle(hFile, &info)) { |
| 1770 | CloseHandle(hFile); |
Brian Curtin | d25aef5 | 2011-06-13 15:16:04 -0500 | [diff] [blame] | 1771 | return -1; |
Hirokazu Yamamoto | 427d314 | 2010-12-04 10:16:05 +0000 | [diff] [blame] | 1772 | } |
| 1773 | if (info.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT) { |
Brian Curtin | d25aef5 | 2011-06-13 15:16:04 -0500 | [diff] [blame] | 1774 | if (!win32_get_reparse_tag(hFile, &reparse_tag)) |
| 1775 | return -1; |
| 1776 | |
| 1777 | /* Close the outer open file handle now that we're about to |
| 1778 | reopen it with different flags. */ |
| 1779 | if (!CloseHandle(hFile)) |
| 1780 | return -1; |
| 1781 | |
Hirokazu Yamamoto | 427d314 | 2010-12-04 10:16:05 +0000 | [diff] [blame] | 1782 | if (traverse) { |
Brian Curtin | d25aef5 | 2011-06-13 15:16:04 -0500 | [diff] [blame] | 1783 | /* In order to call GetFinalPathNameByHandle we need to open |
| 1784 | the file without the reparse handling flag set. */ |
| 1785 | hFile2 = CreateFileA( |
| 1786 | path, FILE_READ_ATTRIBUTES, FILE_SHARE_READ, |
| 1787 | NULL, OPEN_EXISTING, |
| 1788 | FILE_ATTRIBUTE_NORMAL|FILE_FLAG_BACKUP_SEMANTICS, |
| 1789 | NULL); |
| 1790 | if (hFile2 == INVALID_HANDLE_VALUE) |
| 1791 | return -1; |
| 1792 | |
| 1793 | if (!get_target_path(hFile2, &target_path)) |
| 1794 | return -1; |
| 1795 | |
| 1796 | code = win32_xstat_impl_w(target_path, result, FALSE); |
Hirokazu Yamamoto | 427d314 | 2010-12-04 10:16:05 +0000 | [diff] [blame] | 1797 | free(target_path); |
| 1798 | return code; |
| 1799 | } |
Hirokazu Yamamoto | 7ed117a | 2010-12-07 10:24:37 +0000 | [diff] [blame] | 1800 | } else |
| 1801 | CloseHandle(hFile); |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1802 | } |
Hirokazu Yamamoto | 427d314 | 2010-12-04 10:16:05 +0000 | [diff] [blame] | 1803 | attribute_data_to_stat(&info, reparse_tag, result); |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1804 | |
| 1805 | /* Set S_IEXEC if it is an .exe, .bat, ... */ |
| 1806 | dot = strrchr(path, '.'); |
| 1807 | if (dot) { |
| 1808 | if (stricmp(dot, ".bat") == 0 || stricmp(dot, ".cmd") == 0 || |
| 1809 | stricmp(dot, ".exe") == 0 || stricmp(dot, ".com") == 0) |
| 1810 | result->st_mode |= 0111; |
| 1811 | } |
| 1812 | return 0; |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1813 | } |
| 1814 | |
| 1815 | static int |
Brian Curtin | d25aef5 | 2011-06-13 15:16:04 -0500 | [diff] [blame] | 1816 | win32_xstat_impl_w(const wchar_t *path, struct win32_stat *result, |
| 1817 | BOOL traverse) |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1818 | { |
| 1819 | int code; |
Brian Curtin | d25aef5 | 2011-06-13 15:16:04 -0500 | [diff] [blame] | 1820 | HANDLE hFile, hFile2; |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1821 | BY_HANDLE_FILE_INFORMATION info; |
Hirokazu Yamamoto | 427d314 | 2010-12-04 10:16:05 +0000 | [diff] [blame] | 1822 | ULONG reparse_tag = 0; |
Victor Stinner | 26de69d | 2011-06-17 15:15:38 +0200 | [diff] [blame] | 1823 | wchar_t *target_path; |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1824 | const wchar_t *dot; |
| 1825 | |
Brian Curtin | d25aef5 | 2011-06-13 15:16:04 -0500 | [diff] [blame] | 1826 | if(!check_GetFinalPathNameByHandle()) { |
Brian Curtin | c8be840 | 2011-06-14 09:52:50 -0500 | [diff] [blame] | 1827 | /* If the OS doesn't have GetFinalPathNameByHandle, don't |
| 1828 | traverse reparse point. */ |
| 1829 | traverse = FALSE; |
Hirokazu Yamamoto | 427d314 | 2010-12-04 10:16:05 +0000 | [diff] [blame] | 1830 | } |
| 1831 | |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1832 | hFile = CreateFileW( |
| 1833 | path, |
Brian Curtin | d25aef5 | 2011-06-13 15:16:04 -0500 | [diff] [blame] | 1834 | FILE_READ_ATTRIBUTES, /* desired access */ |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1835 | 0, /* share mode */ |
| 1836 | NULL, /* security attributes */ |
| 1837 | OPEN_EXISTING, |
| 1838 | /* FILE_FLAG_BACKUP_SEMANTICS is required to open a directory */ |
Brian Curtin | d25aef5 | 2011-06-13 15:16:04 -0500 | [diff] [blame] | 1839 | /* FILE_FLAG_OPEN_REPARSE_POINT does not follow the symlink. |
| 1840 | Because of this, calls like GetFinalPathNameByHandle will return |
| 1841 | the symlink path agin and not the actual final path. */ |
Victor Stinner | 26de69d | 2011-06-17 15:15:38 +0200 | [diff] [blame] | 1842 | FILE_ATTRIBUTE_NORMAL|FILE_FLAG_BACKUP_SEMANTICS| |
Brian Curtin | d25aef5 | 2011-06-13 15:16:04 -0500 | [diff] [blame] | 1843 | FILE_FLAG_OPEN_REPARSE_POINT, |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1844 | NULL); |
| 1845 | |
Hirokazu Yamamoto | 427d314 | 2010-12-04 10:16:05 +0000 | [diff] [blame] | 1846 | if (hFile == INVALID_HANDLE_VALUE) { |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1847 | /* Either the target doesn't exist, or we don't have access to |
| 1848 | get a handle to it. If the former, we need to return an error. |
| 1849 | If the latter, we can use attributes_from_dir. */ |
| 1850 | if (GetLastError() != ERROR_SHARING_VIOLATION) |
Hirokazu Yamamoto | 427d314 | 2010-12-04 10:16:05 +0000 | [diff] [blame] | 1851 | return -1; |
| 1852 | /* Could not get attributes on open file. Fall back to |
| 1853 | reading the directory. */ |
| 1854 | if (!attributes_from_dir_w(path, &info, &reparse_tag)) |
| 1855 | /* Very strange. This should not fail now */ |
| 1856 | return -1; |
| 1857 | if (info.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT) { |
| 1858 | if (traverse) { |
| 1859 | /* Should traverse, but could not open reparse point handle */ |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1860 | SetLastError(ERROR_SHARING_VIOLATION); |
Hirokazu Yamamoto | 427d314 | 2010-12-04 10:16:05 +0000 | [diff] [blame] | 1861 | return -1; |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1862 | } |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1863 | } |
Hirokazu Yamamoto | 427d314 | 2010-12-04 10:16:05 +0000 | [diff] [blame] | 1864 | } else { |
| 1865 | if (!GetFileInformationByHandle(hFile, &info)) { |
| 1866 | CloseHandle(hFile); |
Brian Curtin | d25aef5 | 2011-06-13 15:16:04 -0500 | [diff] [blame] | 1867 | return -1; |
Hirokazu Yamamoto | 427d314 | 2010-12-04 10:16:05 +0000 | [diff] [blame] | 1868 | } |
| 1869 | if (info.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT) { |
Brian Curtin | d25aef5 | 2011-06-13 15:16:04 -0500 | [diff] [blame] | 1870 | if (!win32_get_reparse_tag(hFile, &reparse_tag)) |
| 1871 | return -1; |
| 1872 | |
| 1873 | /* Close the outer open file handle now that we're about to |
| 1874 | reopen it with different flags. */ |
| 1875 | if (!CloseHandle(hFile)) |
| 1876 | return -1; |
| 1877 | |
Hirokazu Yamamoto | 427d314 | 2010-12-04 10:16:05 +0000 | [diff] [blame] | 1878 | if (traverse) { |
Brian Curtin | d25aef5 | 2011-06-13 15:16:04 -0500 | [diff] [blame] | 1879 | /* In order to call GetFinalPathNameByHandle we need to open |
| 1880 | the file without the reparse handling flag set. */ |
| 1881 | hFile2 = CreateFileW( |
| 1882 | path, FILE_READ_ATTRIBUTES, FILE_SHARE_READ, |
| 1883 | NULL, OPEN_EXISTING, |
| 1884 | FILE_ATTRIBUTE_NORMAL|FILE_FLAG_BACKUP_SEMANTICS, |
| 1885 | NULL); |
| 1886 | if (hFile2 == INVALID_HANDLE_VALUE) |
| 1887 | return -1; |
| 1888 | |
| 1889 | if (!get_target_path(hFile2, &target_path)) |
| 1890 | return -1; |
| 1891 | |
| 1892 | code = win32_xstat_impl_w(target_path, result, FALSE); |
Hirokazu Yamamoto | 427d314 | 2010-12-04 10:16:05 +0000 | [diff] [blame] | 1893 | free(target_path); |
| 1894 | return code; |
| 1895 | } |
Hirokazu Yamamoto | 7ed117a | 2010-12-07 10:24:37 +0000 | [diff] [blame] | 1896 | } else |
| 1897 | CloseHandle(hFile); |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1898 | } |
Hirokazu Yamamoto | 427d314 | 2010-12-04 10:16:05 +0000 | [diff] [blame] | 1899 | attribute_data_to_stat(&info, reparse_tag, result); |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1900 | |
| 1901 | /* Set S_IEXEC if it is an .exe, .bat, ... */ |
| 1902 | dot = wcsrchr(path, '.'); |
| 1903 | if (dot) { |
| 1904 | if (_wcsicmp(dot, L".bat") == 0 || _wcsicmp(dot, L".cmd") == 0 || |
| 1905 | _wcsicmp(dot, L".exe") == 0 || _wcsicmp(dot, L".com") == 0) |
| 1906 | result->st_mode |= 0111; |
| 1907 | } |
| 1908 | return 0; |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1909 | } |
| 1910 | |
| 1911 | static int |
Hirokazu Yamamoto | 427d314 | 2010-12-04 10:16:05 +0000 | [diff] [blame] | 1912 | win32_xstat(const char *path, struct win32_stat *result, BOOL traverse) |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1913 | { |
Hirokazu Yamamoto | 427d314 | 2010-12-04 10:16:05 +0000 | [diff] [blame] | 1914 | /* Protocol violation: we explicitly clear errno, instead of |
| 1915 | setting it to a POSIX error. Callers should use GetLastError. */ |
Brian Curtin | d25aef5 | 2011-06-13 15:16:04 -0500 | [diff] [blame] | 1916 | int code = win32_xstat_impl(path, result, traverse); |
Hirokazu Yamamoto | 427d314 | 2010-12-04 10:16:05 +0000 | [diff] [blame] | 1917 | errno = 0; |
| 1918 | return code; |
| 1919 | } |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1920 | |
Hirokazu Yamamoto | 427d314 | 2010-12-04 10:16:05 +0000 | [diff] [blame] | 1921 | static int |
| 1922 | win32_xstat_w(const wchar_t *path, struct win32_stat *result, BOOL traverse) |
| 1923 | { |
| 1924 | /* Protocol violation: we explicitly clear errno, instead of |
| 1925 | setting it to a POSIX error. Callers should use GetLastError. */ |
Brian Curtin | d25aef5 | 2011-06-13 15:16:04 -0500 | [diff] [blame] | 1926 | int code = win32_xstat_impl_w(path, result, traverse); |
Hirokazu Yamamoto | 427d314 | 2010-12-04 10:16:05 +0000 | [diff] [blame] | 1927 | errno = 0; |
| 1928 | return code; |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1929 | } |
Brian Curtin | d25aef5 | 2011-06-13 15:16:04 -0500 | [diff] [blame] | 1930 | /* About the following functions: win32_lstat_w, win32_stat, win32_stat_w |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 1931 | |
| 1932 | In Posix, stat automatically traverses symlinks and returns the stat |
| 1933 | structure for the target. In Windows, the equivalent GetFileAttributes by |
| 1934 | default does not traverse symlinks and instead returns attributes for |
| 1935 | the symlink. |
| 1936 | |
| 1937 | Therefore, win32_lstat will get the attributes traditionally, and |
| 1938 | win32_stat will first explicitly resolve the symlink target and then will |
| 1939 | call win32_lstat on that result. |
| 1940 | |
Ezio Melotti | 4969f70 | 2011-03-15 05:59:46 +0200 | [diff] [blame] | 1941 | The _w represent Unicode equivalents of the aforementioned ANSI functions. */ |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 1942 | |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 1943 | static int |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 1944 | win32_lstat(const char* path, struct win32_stat *result) |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1945 | { |
Hirokazu Yamamoto | 427d314 | 2010-12-04 10:16:05 +0000 | [diff] [blame] | 1946 | return win32_xstat(path, result, FALSE); |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1947 | } |
| 1948 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1949 | static int |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 1950 | win32_lstat_w(const wchar_t* path, struct win32_stat *result) |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1951 | { |
Hirokazu Yamamoto | 427d314 | 2010-12-04 10:16:05 +0000 | [diff] [blame] | 1952 | return win32_xstat_w(path, result, FALSE); |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 1953 | } |
| 1954 | |
| 1955 | static int |
| 1956 | win32_stat(const char* path, struct win32_stat *result) |
| 1957 | { |
Hirokazu Yamamoto | 427d314 | 2010-12-04 10:16:05 +0000 | [diff] [blame] | 1958 | return win32_xstat(path, result, TRUE); |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 1959 | } |
| 1960 | |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 1961 | static int |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 1962 | win32_stat_w(const wchar_t* path, struct win32_stat *result) |
| 1963 | { |
Hirokazu Yamamoto | 427d314 | 2010-12-04 10:16:05 +0000 | [diff] [blame] | 1964 | return win32_xstat_w(path, result, TRUE); |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1965 | } |
| 1966 | |
| 1967 | static int |
| 1968 | win32_fstat(int file_number, struct win32_stat *result) |
| 1969 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1970 | BY_HANDLE_FILE_INFORMATION info; |
| 1971 | HANDLE h; |
| 1972 | int type; |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1973 | |
Richard Oudkerk | 2240ac1 | 2012-07-06 12:05:32 +0100 | [diff] [blame] | 1974 | if (!_PyVerify_fd(file_number)) |
| 1975 | h = INVALID_HANDLE_VALUE; |
| 1976 | else |
| 1977 | h = (HANDLE)_get_osfhandle(file_number); |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1978 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1979 | /* Protocol violation: we explicitly clear errno, instead of |
| 1980 | setting it to a POSIX error. Callers should use GetLastError. */ |
| 1981 | errno = 0; |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1982 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1983 | if (h == INVALID_HANDLE_VALUE) { |
| 1984 | /* This is really a C library error (invalid file handle). |
| 1985 | We set the Win32 error to the closes one matching. */ |
| 1986 | SetLastError(ERROR_INVALID_HANDLE); |
| 1987 | return -1; |
| 1988 | } |
| 1989 | memset(result, 0, sizeof(*result)); |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1990 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1991 | type = GetFileType(h); |
| 1992 | if (type == FILE_TYPE_UNKNOWN) { |
| 1993 | DWORD error = GetLastError(); |
| 1994 | if (error != 0) { |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 1995 | return -1; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 1996 | } |
| 1997 | /* else: valid but unknown file */ |
| 1998 | } |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 1999 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2000 | if (type != FILE_TYPE_DISK) { |
| 2001 | if (type == FILE_TYPE_CHAR) |
| 2002 | result->st_mode = _S_IFCHR; |
| 2003 | else if (type == FILE_TYPE_PIPE) |
| 2004 | result->st_mode = _S_IFIFO; |
| 2005 | return 0; |
| 2006 | } |
| 2007 | |
| 2008 | if (!GetFileInformationByHandle(h, &info)) { |
| 2009 | return -1; |
| 2010 | } |
| 2011 | |
Hirokazu Yamamoto | 427d314 | 2010-12-04 10:16:05 +0000 | [diff] [blame] | 2012 | attribute_data_to_stat(&info, 0, result); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2013 | /* specific to fstat() */ |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2014 | result->st_ino = (((__int64)info.nFileIndexHigh)<<32) + info.nFileIndexLow; |
| 2015 | return 0; |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 2016 | } |
| 2017 | |
| 2018 | #endif /* MS_WINDOWS */ |
| 2019 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2020 | PyDoc_STRVAR(stat_result__doc__, |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 2021 | "stat_result: Result from stat, fstat, or lstat.\n\n\ |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 2022 | This object may be accessed either as a tuple of\n\ |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 2023 | (mode, ino, dev, nlink, uid, gid, size, atime, mtime, ctime)\n\ |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 2024 | or via the attributes st_mode, st_ino, st_dev, st_nlink, st_uid, and so on.\n\ |
| 2025 | \n\ |
Hye-Shik Chang | 5f937a7 | 2005-06-02 13:09:30 +0000 | [diff] [blame] | 2026 | Posix/windows: If your platform supports st_blksize, st_blocks, st_rdev,\n\ |
| 2027 | or st_flags, they are available as attributes only.\n\ |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 2028 | \n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2029 | See os.stat for more information."); |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 2030 | |
| 2031 | static PyStructSequence_Field stat_result_fields[] = { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2032 | {"st_mode", "protection bits"}, |
| 2033 | {"st_ino", "inode"}, |
| 2034 | {"st_dev", "device"}, |
| 2035 | {"st_nlink", "number of hard links"}, |
| 2036 | {"st_uid", "user ID of owner"}, |
| 2037 | {"st_gid", "group ID of owner"}, |
| 2038 | {"st_size", "total size, in bytes"}, |
| 2039 | /* The NULL is replaced with PyStructSequence_UnnamedField later. */ |
| 2040 | {NULL, "integer time of last access"}, |
| 2041 | {NULL, "integer time of last modification"}, |
| 2042 | {NULL, "integer time of last change"}, |
| 2043 | {"st_atime", "time of last access"}, |
| 2044 | {"st_mtime", "time of last modification"}, |
| 2045 | {"st_ctime", "time of last change"}, |
Larry Hastings | 6fe20b3 | 2012-04-19 15:07:49 -0700 | [diff] [blame] | 2046 | {"st_atime_ns", "time of last access in nanoseconds"}, |
| 2047 | {"st_mtime_ns", "time of last modification in nanoseconds"}, |
| 2048 | {"st_ctime_ns", "time of last change in nanoseconds"}, |
Martin v. Löwis | 60a5d72 | 2002-10-16 20:28:25 +0000 | [diff] [blame] | 2049 | #ifdef HAVE_STRUCT_STAT_ST_BLKSIZE |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2050 | {"st_blksize", "blocksize for filesystem I/O"}, |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 2051 | #endif |
Martin v. Löwis | 60a5d72 | 2002-10-16 20:28:25 +0000 | [diff] [blame] | 2052 | #ifdef HAVE_STRUCT_STAT_ST_BLOCKS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2053 | {"st_blocks", "number of blocks allocated"}, |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 2054 | #endif |
Martin v. Löwis | 60a5d72 | 2002-10-16 20:28:25 +0000 | [diff] [blame] | 2055 | #ifdef HAVE_STRUCT_STAT_ST_RDEV |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2056 | {"st_rdev", "device type (if inode device)"}, |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 2057 | #endif |
Hye-Shik Chang | 5f937a7 | 2005-06-02 13:09:30 +0000 | [diff] [blame] | 2058 | #ifdef HAVE_STRUCT_STAT_ST_FLAGS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2059 | {"st_flags", "user defined flags for file"}, |
Hye-Shik Chang | 5f937a7 | 2005-06-02 13:09:30 +0000 | [diff] [blame] | 2060 | #endif |
Martin v. Löwis | ebd9d5b | 2005-08-09 15:00:59 +0000 | [diff] [blame] | 2061 | #ifdef HAVE_STRUCT_STAT_ST_GEN |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2062 | {"st_gen", "generation number"}, |
Martin v. Löwis | ebd9d5b | 2005-08-09 15:00:59 +0000 | [diff] [blame] | 2063 | #endif |
| 2064 | #ifdef HAVE_STRUCT_STAT_ST_BIRTHTIME |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2065 | {"st_birthtime", "time of creation"}, |
Martin v. Löwis | ebd9d5b | 2005-08-09 15:00:59 +0000 | [diff] [blame] | 2066 | #endif |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2067 | {0} |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 2068 | }; |
| 2069 | |
Martin v. Löwis | 60a5d72 | 2002-10-16 20:28:25 +0000 | [diff] [blame] | 2070 | #ifdef HAVE_STRUCT_STAT_ST_BLKSIZE |
Larry Hastings | 6fe20b3 | 2012-04-19 15:07:49 -0700 | [diff] [blame] | 2071 | #define ST_BLKSIZE_IDX 16 |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 2072 | #else |
Larry Hastings | 6fe20b3 | 2012-04-19 15:07:49 -0700 | [diff] [blame] | 2073 | #define ST_BLKSIZE_IDX 15 |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 2074 | #endif |
| 2075 | |
Martin v. Löwis | 60a5d72 | 2002-10-16 20:28:25 +0000 | [diff] [blame] | 2076 | #ifdef HAVE_STRUCT_STAT_ST_BLOCKS |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 2077 | #define ST_BLOCKS_IDX (ST_BLKSIZE_IDX+1) |
| 2078 | #else |
| 2079 | #define ST_BLOCKS_IDX ST_BLKSIZE_IDX |
| 2080 | #endif |
| 2081 | |
Martin v. Löwis | 60a5d72 | 2002-10-16 20:28:25 +0000 | [diff] [blame] | 2082 | #ifdef HAVE_STRUCT_STAT_ST_RDEV |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 2083 | #define ST_RDEV_IDX (ST_BLOCKS_IDX+1) |
| 2084 | #else |
| 2085 | #define ST_RDEV_IDX ST_BLOCKS_IDX |
| 2086 | #endif |
| 2087 | |
Hye-Shik Chang | 5f937a7 | 2005-06-02 13:09:30 +0000 | [diff] [blame] | 2088 | #ifdef HAVE_STRUCT_STAT_ST_FLAGS |
| 2089 | #define ST_FLAGS_IDX (ST_RDEV_IDX+1) |
| 2090 | #else |
| 2091 | #define ST_FLAGS_IDX ST_RDEV_IDX |
| 2092 | #endif |
| 2093 | |
Martin v. Löwis | ebd9d5b | 2005-08-09 15:00:59 +0000 | [diff] [blame] | 2094 | #ifdef HAVE_STRUCT_STAT_ST_GEN |
Martin v. Löwis | f09582e | 2005-08-14 21:42:34 +0000 | [diff] [blame] | 2095 | #define ST_GEN_IDX (ST_FLAGS_IDX+1) |
Martin v. Löwis | ebd9d5b | 2005-08-09 15:00:59 +0000 | [diff] [blame] | 2096 | #else |
Martin v. Löwis | f09582e | 2005-08-14 21:42:34 +0000 | [diff] [blame] | 2097 | #define ST_GEN_IDX ST_FLAGS_IDX |
Martin v. Löwis | ebd9d5b | 2005-08-09 15:00:59 +0000 | [diff] [blame] | 2098 | #endif |
| 2099 | |
| 2100 | #ifdef HAVE_STRUCT_STAT_ST_BIRTHTIME |
| 2101 | #define ST_BIRTHTIME_IDX (ST_GEN_IDX+1) |
| 2102 | #else |
| 2103 | #define ST_BIRTHTIME_IDX ST_GEN_IDX |
| 2104 | #endif |
| 2105 | |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 2106 | static PyStructSequence_Desc stat_result_desc = { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2107 | "stat_result", /* name */ |
| 2108 | stat_result__doc__, /* doc */ |
| 2109 | stat_result_fields, |
| 2110 | 10 |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 2111 | }; |
| 2112 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2113 | PyDoc_STRVAR(statvfs_result__doc__, |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 2114 | "statvfs_result: Result from statvfs or fstatvfs.\n\n\ |
| 2115 | This object may be accessed either as a tuple of\n\ |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 2116 | (bsize, frsize, blocks, bfree, bavail, files, ffree, favail, flag, namemax),\n\ |
Guido van Rossum | a4dc73e | 2001-10-18 20:53:15 +0000 | [diff] [blame] | 2117 | 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] | 2118 | \n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2119 | See os.statvfs for more information."); |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 2120 | |
| 2121 | static PyStructSequence_Field statvfs_result_fields[] = { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2122 | {"f_bsize", }, |
| 2123 | {"f_frsize", }, |
| 2124 | {"f_blocks", }, |
| 2125 | {"f_bfree", }, |
| 2126 | {"f_bavail", }, |
| 2127 | {"f_files", }, |
| 2128 | {"f_ffree", }, |
| 2129 | {"f_favail", }, |
| 2130 | {"f_flag", }, |
| 2131 | {"f_namemax",}, |
| 2132 | {0} |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 2133 | }; |
| 2134 | |
| 2135 | static PyStructSequence_Desc statvfs_result_desc = { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2136 | "statvfs_result", /* name */ |
| 2137 | statvfs_result__doc__, /* doc */ |
| 2138 | statvfs_result_fields, |
| 2139 | 10 |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 2140 | }; |
| 2141 | |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 2142 | #if defined(HAVE_WAITID) && !defined(__APPLE__) |
| 2143 | PyDoc_STRVAR(waitid_result__doc__, |
| 2144 | "waitid_result: Result from waitid.\n\n\ |
| 2145 | This object may be accessed either as a tuple of\n\ |
| 2146 | (si_pid, si_uid, si_signo, si_status, si_code),\n\ |
| 2147 | or via the attributes si_pid, si_uid, and so on.\n\ |
| 2148 | \n\ |
| 2149 | See os.waitid for more information."); |
| 2150 | |
| 2151 | static PyStructSequence_Field waitid_result_fields[] = { |
| 2152 | {"si_pid", }, |
| 2153 | {"si_uid", }, |
| 2154 | {"si_signo", }, |
| 2155 | {"si_status", }, |
| 2156 | {"si_code", }, |
| 2157 | {0} |
| 2158 | }; |
| 2159 | |
| 2160 | static PyStructSequence_Desc waitid_result_desc = { |
| 2161 | "waitid_result", /* name */ |
| 2162 | waitid_result__doc__, /* doc */ |
| 2163 | waitid_result_fields, |
| 2164 | 5 |
| 2165 | }; |
| 2166 | static PyTypeObject WaitidResultType; |
| 2167 | #endif |
| 2168 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 2169 | static int initialized; |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 2170 | static PyTypeObject StatResultType; |
| 2171 | static PyTypeObject StatVFSResultType; |
Benjamin Peterson | bad9c2f | 2011-08-02 18:42:14 -0500 | [diff] [blame] | 2172 | #if defined(HAVE_SCHED_SETPARAM) || defined(HAVE_SCHED_SETSCHEDULER) |
Benjamin Peterson | 94b580d | 2011-08-02 17:30:04 -0500 | [diff] [blame] | 2173 | static PyTypeObject SchedParamType; |
Benjamin Peterson | bad9c2f | 2011-08-02 18:42:14 -0500 | [diff] [blame] | 2174 | #endif |
Martin v. Löwis | f607bda | 2002-10-16 18:27:39 +0000 | [diff] [blame] | 2175 | static newfunc structseq_new; |
| 2176 | |
| 2177 | static PyObject * |
| 2178 | statresult_new(PyTypeObject *type, PyObject *args, PyObject *kwds) |
| 2179 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2180 | PyStructSequence *result; |
| 2181 | int i; |
Martin v. Löwis | f607bda | 2002-10-16 18:27:39 +0000 | [diff] [blame] | 2182 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2183 | result = (PyStructSequence*)structseq_new(type, args, kwds); |
| 2184 | if (!result) |
| 2185 | return NULL; |
| 2186 | /* If we have been initialized from a tuple, |
| 2187 | st_?time might be set to None. Initialize it |
| 2188 | from the int slots. */ |
| 2189 | for (i = 7; i <= 9; i++) { |
| 2190 | if (result->ob_item[i+3] == Py_None) { |
| 2191 | Py_DECREF(Py_None); |
| 2192 | Py_INCREF(result->ob_item[i]); |
| 2193 | result->ob_item[i+3] = result->ob_item[i]; |
| 2194 | } |
| 2195 | } |
| 2196 | return (PyObject*)result; |
Martin v. Löwis | f607bda | 2002-10-16 18:27:39 +0000 | [diff] [blame] | 2197 | } |
| 2198 | |
| 2199 | |
| 2200 | |
| 2201 | /* If true, st_?time is float. */ |
Martin v. Löwis | fe33d0b | 2005-01-16 08:57:39 +0000 | [diff] [blame] | 2202 | static int _stat_float_times = 1; |
Martin v. Löwis | f607bda | 2002-10-16 18:27:39 +0000 | [diff] [blame] | 2203 | |
| 2204 | PyDoc_STRVAR(stat_float_times__doc__, |
| 2205 | "stat_float_times([newval]) -> oldval\n\n\ |
| 2206 | Determine whether os.[lf]stat represents time stamps as float objects.\n\ |
| 2207 | If newval is True, future calls to stat() return floats, if it is False,\n\ |
| 2208 | future calls return ints. \n\ |
| 2209 | If newval is omitted, return the current setting.\n"); |
| 2210 | |
| 2211 | static PyObject* |
| 2212 | stat_float_times(PyObject* self, PyObject *args) |
| 2213 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2214 | int newval = -1; |
| 2215 | if (!PyArg_ParseTuple(args, "|i:stat_float_times", &newval)) |
| 2216 | return NULL; |
Victor Stinner | 034d0aa | 2012-06-05 01:22:15 +0200 | [diff] [blame] | 2217 | if (PyErr_WarnEx(PyExc_DeprecationWarning, |
| 2218 | "stat_float_times() is deprecated", |
| 2219 | 1)) |
| 2220 | return NULL; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2221 | if (newval == -1) |
| 2222 | /* Return old value */ |
| 2223 | return PyBool_FromLong(_stat_float_times); |
| 2224 | _stat_float_times = newval; |
| 2225 | Py_INCREF(Py_None); |
| 2226 | return Py_None; |
Martin v. Löwis | f607bda | 2002-10-16 18:27:39 +0000 | [diff] [blame] | 2227 | } |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 2228 | |
Larry Hastings | 6fe20b3 | 2012-04-19 15:07:49 -0700 | [diff] [blame] | 2229 | static PyObject *billion = NULL; |
| 2230 | |
Martin v. Löwis | 94717ed | 2002-09-09 14:24:16 +0000 | [diff] [blame] | 2231 | static void |
Victor Stinner | 4195b5c | 2012-02-08 23:03:19 +0100 | [diff] [blame] | 2232 | fill_time(PyObject *v, int index, time_t sec, unsigned long nsec) |
Martin v. Löwis | 94717ed | 2002-09-09 14:24:16 +0000 | [diff] [blame] | 2233 | { |
Larry Hastings | 6fe20b3 | 2012-04-19 15:07:49 -0700 | [diff] [blame] | 2234 | PyObject *s = _PyLong_FromTime_t(sec); |
| 2235 | PyObject *ns_fractional = PyLong_FromUnsignedLong(nsec); |
| 2236 | PyObject *s_in_ns = NULL; |
| 2237 | PyObject *ns_total = NULL; |
| 2238 | PyObject *float_s = NULL; |
| 2239 | |
| 2240 | if (!(s && ns_fractional)) |
| 2241 | goto exit; |
| 2242 | |
| 2243 | s_in_ns = PyNumber_Multiply(s, billion); |
| 2244 | if (!s_in_ns) |
| 2245 | goto exit; |
| 2246 | |
| 2247 | ns_total = PyNumber_Add(s_in_ns, ns_fractional); |
| 2248 | if (!ns_total) |
| 2249 | goto exit; |
| 2250 | |
Victor Stinner | 4195b5c | 2012-02-08 23:03:19 +0100 | [diff] [blame] | 2251 | if (_stat_float_times) { |
Larry Hastings | 6fe20b3 | 2012-04-19 15:07:49 -0700 | [diff] [blame] | 2252 | float_s = PyFloat_FromDouble(sec + 1e-9*nsec); |
| 2253 | if (!float_s) |
| 2254 | goto exit; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2255 | } |
Larry Hastings | 6fe20b3 | 2012-04-19 15:07:49 -0700 | [diff] [blame] | 2256 | else { |
| 2257 | float_s = s; |
| 2258 | Py_INCREF(float_s); |
| 2259 | } |
| 2260 | |
| 2261 | PyStructSequence_SET_ITEM(v, index, s); |
| 2262 | PyStructSequence_SET_ITEM(v, index+3, float_s); |
| 2263 | PyStructSequence_SET_ITEM(v, index+6, ns_total); |
| 2264 | s = NULL; |
| 2265 | float_s = NULL; |
| 2266 | ns_total = NULL; |
| 2267 | exit: |
| 2268 | Py_XDECREF(s); |
| 2269 | Py_XDECREF(ns_fractional); |
| 2270 | Py_XDECREF(s_in_ns); |
| 2271 | Py_XDECREF(ns_total); |
| 2272 | Py_XDECREF(float_s); |
Martin v. Löwis | 94717ed | 2002-09-09 14:24:16 +0000 | [diff] [blame] | 2273 | } |
| 2274 | |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 2275 | /* pack a system stat C structure into the Python stat tuple |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 2276 | (used by posix_stat() and posix_fstat()) */ |
| 2277 | static PyObject* |
Victor Stinner | 4195b5c | 2012-02-08 23:03:19 +0100 | [diff] [blame] | 2278 | _pystat_fromstructstat(STRUCT_STAT *st) |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 2279 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2280 | unsigned long ansec, mnsec, cnsec; |
| 2281 | PyObject *v = PyStructSequence_New(&StatResultType); |
| 2282 | if (v == NULL) |
| 2283 | return NULL; |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 2284 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2285 | PyStructSequence_SET_ITEM(v, 0, PyLong_FromLong((long)st->st_mode)); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 2286 | #ifdef HAVE_LARGEFILE_SUPPORT |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2287 | PyStructSequence_SET_ITEM(v, 1, |
| 2288 | PyLong_FromLongLong((PY_LONG_LONG)st->st_ino)); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 2289 | #else |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2290 | PyStructSequence_SET_ITEM(v, 1, PyLong_FromLong((long)st->st_ino)); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 2291 | #endif |
| 2292 | #if defined(HAVE_LONG_LONG) && !defined(MS_WINDOWS) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2293 | PyStructSequence_SET_ITEM(v, 2, |
| 2294 | PyLong_FromLongLong((PY_LONG_LONG)st->st_dev)); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 2295 | #else |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2296 | PyStructSequence_SET_ITEM(v, 2, PyLong_FromLong((long)st->st_dev)); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 2297 | #endif |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2298 | PyStructSequence_SET_ITEM(v, 3, PyLong_FromLong((long)st->st_nlink)); |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 2299 | #if defined(MS_WINDOWS) |
| 2300 | PyStructSequence_SET_ITEM(v, 4, PyLong_FromLong(0)); |
| 2301 | PyStructSequence_SET_ITEM(v, 5, PyLong_FromLong(0)); |
| 2302 | #else |
| 2303 | PyStructSequence_SET_ITEM(v, 4, _PyLong_FromUid(st->st_uid)); |
| 2304 | PyStructSequence_SET_ITEM(v, 5, _PyLong_FromGid(st->st_gid)); |
| 2305 | #endif |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 2306 | #ifdef HAVE_LARGEFILE_SUPPORT |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2307 | PyStructSequence_SET_ITEM(v, 6, |
| 2308 | PyLong_FromLongLong((PY_LONG_LONG)st->st_size)); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 2309 | #else |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2310 | PyStructSequence_SET_ITEM(v, 6, PyLong_FromLong(st->st_size)); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 2311 | #endif |
Martin v. Löwis | 94717ed | 2002-09-09 14:24:16 +0000 | [diff] [blame] | 2312 | |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 2313 | #if defined(HAVE_STAT_TV_NSEC) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2314 | ansec = st->st_atim.tv_nsec; |
| 2315 | mnsec = st->st_mtim.tv_nsec; |
| 2316 | cnsec = st->st_ctim.tv_nsec; |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 2317 | #elif defined(HAVE_STAT_TV_NSEC2) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2318 | ansec = st->st_atimespec.tv_nsec; |
| 2319 | mnsec = st->st_mtimespec.tv_nsec; |
| 2320 | cnsec = st->st_ctimespec.tv_nsec; |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 2321 | #elif defined(HAVE_STAT_NSEC) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2322 | ansec = st->st_atime_nsec; |
| 2323 | mnsec = st->st_mtime_nsec; |
| 2324 | cnsec = st->st_ctime_nsec; |
Martin v. Löwis | ebd9d5b | 2005-08-09 15:00:59 +0000 | [diff] [blame] | 2325 | #else |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2326 | ansec = mnsec = cnsec = 0; |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 2327 | #endif |
Victor Stinner | 4195b5c | 2012-02-08 23:03:19 +0100 | [diff] [blame] | 2328 | fill_time(v, 7, st->st_atime, ansec); |
| 2329 | fill_time(v, 8, st->st_mtime, mnsec); |
| 2330 | fill_time(v, 9, st->st_ctime, cnsec); |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 2331 | |
Martin v. Löwis | 60a5d72 | 2002-10-16 20:28:25 +0000 | [diff] [blame] | 2332 | #ifdef HAVE_STRUCT_STAT_ST_BLKSIZE |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2333 | PyStructSequence_SET_ITEM(v, ST_BLKSIZE_IDX, |
| 2334 | PyLong_FromLong((long)st->st_blksize)); |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 2335 | #endif |
Martin v. Löwis | 60a5d72 | 2002-10-16 20:28:25 +0000 | [diff] [blame] | 2336 | #ifdef HAVE_STRUCT_STAT_ST_BLOCKS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2337 | PyStructSequence_SET_ITEM(v, ST_BLOCKS_IDX, |
| 2338 | PyLong_FromLong((long)st->st_blocks)); |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 2339 | #endif |
Martin v. Löwis | 60a5d72 | 2002-10-16 20:28:25 +0000 | [diff] [blame] | 2340 | #ifdef HAVE_STRUCT_STAT_ST_RDEV |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2341 | PyStructSequence_SET_ITEM(v, ST_RDEV_IDX, |
| 2342 | PyLong_FromLong((long)st->st_rdev)); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 2343 | #endif |
Martin v. Löwis | ebd9d5b | 2005-08-09 15:00:59 +0000 | [diff] [blame] | 2344 | #ifdef HAVE_STRUCT_STAT_ST_GEN |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2345 | PyStructSequence_SET_ITEM(v, ST_GEN_IDX, |
| 2346 | PyLong_FromLong((long)st->st_gen)); |
Martin v. Löwis | ebd9d5b | 2005-08-09 15:00:59 +0000 | [diff] [blame] | 2347 | #endif |
| 2348 | #ifdef HAVE_STRUCT_STAT_ST_BIRTHTIME |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2349 | { |
Victor Stinner | 4195b5c | 2012-02-08 23:03:19 +0100 | [diff] [blame] | 2350 | PyObject *val; |
| 2351 | unsigned long bsec,bnsec; |
| 2352 | bsec = (long)st->st_birthtime; |
Martin v. Löwis | ebd9d5b | 2005-08-09 15:00:59 +0000 | [diff] [blame] | 2353 | #ifdef HAVE_STAT_TV_NSEC2 |
Victor Stinner | 4195b5c | 2012-02-08 23:03:19 +0100 | [diff] [blame] | 2354 | bnsec = st->st_birthtimespec.tv_nsec; |
Martin v. Löwis | ebd9d5b | 2005-08-09 15:00:59 +0000 | [diff] [blame] | 2355 | #else |
Victor Stinner | 4195b5c | 2012-02-08 23:03:19 +0100 | [diff] [blame] | 2356 | bnsec = 0; |
Martin v. Löwis | ebd9d5b | 2005-08-09 15:00:59 +0000 | [diff] [blame] | 2357 | #endif |
Victor Stinner | 4195b5c | 2012-02-08 23:03:19 +0100 | [diff] [blame] | 2358 | if (_stat_float_times) { |
| 2359 | val = PyFloat_FromDouble(bsec + 1e-9*bnsec); |
| 2360 | } else { |
| 2361 | val = PyLong_FromLong((long)bsec); |
| 2362 | } |
| 2363 | PyStructSequence_SET_ITEM(v, ST_BIRTHTIME_IDX, |
| 2364 | val); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2365 | } |
Martin v. Löwis | ebd9d5b | 2005-08-09 15:00:59 +0000 | [diff] [blame] | 2366 | #endif |
Hye-Shik Chang | 5f937a7 | 2005-06-02 13:09:30 +0000 | [diff] [blame] | 2367 | #ifdef HAVE_STRUCT_STAT_ST_FLAGS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2368 | PyStructSequence_SET_ITEM(v, ST_FLAGS_IDX, |
| 2369 | PyLong_FromLong((long)st->st_flags)); |
Hye-Shik Chang | 5f937a7 | 2005-06-02 13:09:30 +0000 | [diff] [blame] | 2370 | #endif |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 2371 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2372 | if (PyErr_Occurred()) { |
| 2373 | Py_DECREF(v); |
| 2374 | return NULL; |
| 2375 | } |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 2376 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2377 | return v; |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 2378 | } |
| 2379 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2380 | /* POSIX methods */ |
| 2381 | |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 2382 | |
| 2383 | static PyObject * |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 2384 | posix_do_stat(char *function_name, path_t *path, |
| 2385 | int dir_fd, int follow_symlinks) |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 2386 | { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 2387 | STRUCT_STAT st; |
| 2388 | int result; |
| 2389 | |
| 2390 | #if !defined(MS_WINDOWS) && !defined(HAVE_FSTATAT) && !defined(HAVE_LSTAT) |
| 2391 | if (follow_symlinks_specified(function_name, follow_symlinks)) |
| 2392 | return NULL; |
| 2393 | #endif |
| 2394 | |
| 2395 | if (path_and_dir_fd_invalid("stat", path, dir_fd) || |
| 2396 | dir_fd_and_fd_invalid("stat", dir_fd, path->fd) || |
| 2397 | fd_and_follow_symlinks_invalid("stat", path->fd, follow_symlinks)) |
| 2398 | return NULL; |
| 2399 | |
| 2400 | Py_BEGIN_ALLOW_THREADS |
| 2401 | if (path->fd != -1) |
| 2402 | result = FSTAT(path->fd, &st); |
| 2403 | else |
| 2404 | #ifdef MS_WINDOWS |
| 2405 | if (path->wide) { |
| 2406 | if (follow_symlinks) |
| 2407 | result = win32_stat_w(path->wide, &st); |
| 2408 | else |
| 2409 | result = win32_lstat_w(path->wide, &st); |
| 2410 | } |
| 2411 | else |
| 2412 | #endif |
| 2413 | #if defined(HAVE_LSTAT) || defined(MS_WINDOWS) |
| 2414 | if ((!follow_symlinks) && (dir_fd == DEFAULT_DIR_FD)) |
| 2415 | result = LSTAT(path->narrow, &st); |
| 2416 | else |
| 2417 | #endif |
| 2418 | #ifdef HAVE_FSTATAT |
| 2419 | if ((dir_fd != DEFAULT_DIR_FD) || !follow_symlinks) |
| 2420 | result = fstatat(dir_fd, path->narrow, &st, |
| 2421 | follow_symlinks ? 0 : AT_SYMLINK_NOFOLLOW); |
| 2422 | else |
| 2423 | #endif |
| 2424 | result = STAT(path->narrow, &st); |
| 2425 | Py_END_ALLOW_THREADS |
| 2426 | |
| 2427 | if (result != 0) |
| 2428 | return path_error("stat", path); |
| 2429 | |
| 2430 | return _pystat_fromstructstat(&st); |
| 2431 | } |
| 2432 | |
| 2433 | PyDoc_STRVAR(posix_stat__doc__, |
| 2434 | "stat(path, *, dir_fd=None, follow_symlinks=True) -> stat result\n\n\ |
| 2435 | Perform a stat system call on the given path.\n\ |
| 2436 | \n\ |
| 2437 | path may be specified as either a string or as an open file descriptor.\n\ |
| 2438 | \n\ |
| 2439 | If dir_fd is not None, it should be a file descriptor open to a directory,\n\ |
| 2440 | and path should be relative; path will then be relative to that directory.\n\ |
| 2441 | dir_fd may not be supported on your platform; if it is unavailable, using\n\ |
| 2442 | it will raise a NotImplementedError.\n\ |
| 2443 | If follow_symlinks is False, and the last element of the path is a symbolic\n\ |
| 2444 | link, stat will examine the symbolic link itself instead of the file the\n\ |
| 2445 | link points to.\n\ |
| 2446 | It is an error to use dir_fd or follow_symlinks when specifying path as\n\ |
| 2447 | an open file descriptor."); |
| 2448 | |
| 2449 | static PyObject * |
| 2450 | posix_stat(PyObject *self, PyObject *args, PyObject *kwargs) |
| 2451 | { |
| 2452 | static char *keywords[] = {"path", "dir_fd", "follow_symlinks", NULL}; |
| 2453 | path_t path; |
| 2454 | int dir_fd = DEFAULT_DIR_FD; |
| 2455 | int follow_symlinks = 1; |
| 2456 | PyObject *return_value; |
| 2457 | |
| 2458 | memset(&path, 0, sizeof(path)); |
| 2459 | path.allow_fd = 1; |
| 2460 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&|$O&p:stat", keywords, |
| 2461 | path_converter, &path, |
| 2462 | #ifdef HAVE_FSTATAT |
| 2463 | dir_fd_converter, &dir_fd, |
| 2464 | #else |
| 2465 | dir_fd_unavailable, &dir_fd, |
| 2466 | #endif |
| 2467 | &follow_symlinks)) |
| 2468 | return NULL; |
| 2469 | return_value = posix_do_stat("stat", &path, dir_fd, follow_symlinks); |
| 2470 | path_cleanup(&path); |
| 2471 | return return_value; |
| 2472 | } |
| 2473 | |
| 2474 | PyDoc_STRVAR(posix_lstat__doc__, |
| 2475 | "lstat(path, *, dir_fd=None) -> stat result\n\n\ |
| 2476 | Like stat(), but do not follow symbolic links.\n\ |
| 2477 | Equivalent to stat(path, follow_symlinks=False)."); |
| 2478 | |
| 2479 | static PyObject * |
| 2480 | posix_lstat(PyObject *self, PyObject *args, PyObject *kwargs) |
| 2481 | { |
| 2482 | static char *keywords[] = {"path", "dir_fd", NULL}; |
| 2483 | path_t path; |
| 2484 | int dir_fd = DEFAULT_DIR_FD; |
| 2485 | int follow_symlinks = 0; |
| 2486 | PyObject *return_value; |
| 2487 | |
| 2488 | memset(&path, 0, sizeof(path)); |
| 2489 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&|$O&:lstat", keywords, |
| 2490 | path_converter, &path, |
| 2491 | #ifdef HAVE_FSTATAT |
| 2492 | dir_fd_converter, &dir_fd |
| 2493 | #else |
| 2494 | dir_fd_unavailable, &dir_fd |
| 2495 | #endif |
| 2496 | )) |
| 2497 | return NULL; |
| 2498 | return_value = posix_do_stat("stat", &path, dir_fd, follow_symlinks); |
| 2499 | path_cleanup(&path); |
| 2500 | return return_value; |
| 2501 | } |
| 2502 | |
| 2503 | PyDoc_STRVAR(posix_access__doc__, |
| 2504 | "access(path, mode, *, dir_fd=None, effective_ids=False,\ |
| 2505 | follow_symlinks=True)\n\n\ |
| 2506 | Use the real uid/gid to test for access to a path. Returns True if granted,\n\ |
| 2507 | False otherwise.\n\ |
| 2508 | \n\ |
| 2509 | If dir_fd is not None, it should be a file descriptor open to a directory,\n\ |
| 2510 | and path should be relative; path will then be relative to that directory.\n\ |
| 2511 | If effective_ids is True, access will use the effective uid/gid instead of\n\ |
| 2512 | the real uid/gid.\n\ |
| 2513 | If follow_symlinks is False, and the last element of the path is a symbolic\n\ |
| 2514 | link, access will examine the symbolic link itself instead of the file the\n\ |
| 2515 | link points to.\n\ |
| 2516 | dir_fd, effective_ids, and follow_symlinks may not be implemented\n\ |
| 2517 | on your platform. If they are unavailable, using them will raise a\n\ |
| 2518 | NotImplementedError.\n\ |
| 2519 | \n\ |
| 2520 | Note that most operations will use the effective uid/gid, therefore this\n\ |
| 2521 | routine can be used in a suid/sgid environment to test if the invoking user\n\ |
| 2522 | has the specified access to the path.\n\ |
| 2523 | The mode argument can be F_OK to test existence, or the inclusive-OR\n\ |
| 2524 | of R_OK, W_OK, and X_OK."); |
| 2525 | |
| 2526 | static PyObject * |
| 2527 | posix_access(PyObject *self, PyObject *args, PyObject *kwargs) |
| 2528 | { |
| 2529 | static char *keywords[] = {"path", "mode", "dir_fd", "effective_ids", |
| 2530 | "follow_symlinks", NULL}; |
| 2531 | path_t path; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2532 | int mode; |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 2533 | int dir_fd = DEFAULT_DIR_FD; |
| 2534 | int effective_ids = 0; |
| 2535 | int follow_symlinks = 1; |
| 2536 | PyObject *return_value = NULL; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2537 | |
Hirokazu Yamamoto | 8223c24 | 2009-05-17 04:21:53 +0000 | [diff] [blame] | 2538 | #ifdef MS_WINDOWS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2539 | DWORD attr; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 2540 | #else |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 2541 | int result; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 2542 | #endif |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 2543 | |
| 2544 | memset(&path, 0, sizeof(path)); |
| 2545 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&i|$O&pp:access", keywords, |
| 2546 | path_converter, &path, &mode, |
| 2547 | #ifdef HAVE_FACCESSAT |
| 2548 | dir_fd_converter, &dir_fd, |
| 2549 | #else |
| 2550 | dir_fd_unavailable, &dir_fd, |
| 2551 | #endif |
| 2552 | &effective_ids, &follow_symlinks)) |
| 2553 | return NULL; |
| 2554 | |
| 2555 | #ifndef HAVE_FACCESSAT |
| 2556 | if (follow_symlinks_specified("access", follow_symlinks)) |
| 2557 | goto exit; |
| 2558 | |
| 2559 | if (effective_ids) { |
| 2560 | argument_unavailable_error("access", "effective_ids"); |
| 2561 | goto exit; |
| 2562 | } |
| 2563 | #endif |
| 2564 | |
| 2565 | #ifdef MS_WINDOWS |
| 2566 | Py_BEGIN_ALLOW_THREADS |
| 2567 | if (path.wide != NULL) |
| 2568 | attr = GetFileAttributesW(path.wide); |
| 2569 | else |
| 2570 | attr = GetFileAttributesA(path.narrow); |
| 2571 | Py_END_ALLOW_THREADS |
| 2572 | |
| 2573 | /* |
Georg Brandl | f787559 | 2012-06-24 13:58:31 +0200 | [diff] [blame] | 2574 | * Access is possible if |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 2575 | * * we didn't get a -1, and |
| 2576 | * * write access wasn't requested, |
| 2577 | * * or the file isn't read-only, |
| 2578 | * * or it's a directory. |
| 2579 | * (Directories cannot be read-only on Windows.) |
| 2580 | */ |
| 2581 | return_value = PyBool_FromLong( |
| 2582 | (attr != 0xFFFFFFFF) && |
Georg Brandl | 5bb7aa9 | 2012-06-23 12:48:40 +0200 | [diff] [blame] | 2583 | (!(mode & 2) || |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 2584 | !(attr & FILE_ATTRIBUTE_READONLY) || |
| 2585 | (attr & FILE_ATTRIBUTE_DIRECTORY))); |
| 2586 | #else |
| 2587 | |
| 2588 | Py_BEGIN_ALLOW_THREADS |
| 2589 | #ifdef HAVE_FACCESSAT |
| 2590 | if ((dir_fd != DEFAULT_DIR_FD) || |
| 2591 | effective_ids || |
| 2592 | !follow_symlinks) { |
| 2593 | int flags = 0; |
| 2594 | if (!follow_symlinks) |
| 2595 | flags |= AT_SYMLINK_NOFOLLOW; |
| 2596 | if (effective_ids) |
| 2597 | flags |= AT_EACCESS; |
| 2598 | result = faccessat(dir_fd, path.narrow, mode, flags); |
| 2599 | } |
| 2600 | else |
| 2601 | #endif |
| 2602 | result = access(path.narrow, mode); |
| 2603 | Py_END_ALLOW_THREADS |
| 2604 | return_value = PyBool_FromLong(!result); |
| 2605 | #endif |
| 2606 | |
| 2607 | #ifndef HAVE_FACCESSAT |
| 2608 | exit: |
| 2609 | #endif |
| 2610 | path_cleanup(&path); |
| 2611 | return return_value; |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 2612 | } |
| 2613 | |
Guido van Rossum | d371ff1 | 1999-01-25 16:12:23 +0000 | [diff] [blame] | 2614 | #ifndef F_OK |
| 2615 | #define F_OK 0 |
| 2616 | #endif |
| 2617 | #ifndef R_OK |
| 2618 | #define R_OK 4 |
| 2619 | #endif |
| 2620 | #ifndef W_OK |
| 2621 | #define W_OK 2 |
| 2622 | #endif |
| 2623 | #ifndef X_OK |
| 2624 | #define X_OK 1 |
| 2625 | #endif |
| 2626 | |
| 2627 | #ifdef HAVE_TTYNAME |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2628 | PyDoc_STRVAR(posix_ttyname__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 2629 | "ttyname(fd) -> string\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2630 | Return the name of the terminal device connected to 'fd'."); |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 2631 | |
| 2632 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 2633 | posix_ttyname(PyObject *self, PyObject *args) |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 2634 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2635 | int id; |
| 2636 | char *ret; |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 2637 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2638 | if (!PyArg_ParseTuple(args, "i:ttyname", &id)) |
| 2639 | return NULL; |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 2640 | |
Martin v. Löwis | 79acb9e | 2002-12-06 12:48:53 +0000 | [diff] [blame] | 2641 | #if defined(__VMS) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2642 | /* file descriptor 0 only, the default input device (stdin) */ |
| 2643 | if (id == 0) { |
| 2644 | ret = ttyname(); |
| 2645 | } |
| 2646 | else { |
| 2647 | ret = NULL; |
| 2648 | } |
Martin v. Löwis | 79acb9e | 2002-12-06 12:48:53 +0000 | [diff] [blame] | 2649 | #else |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2650 | ret = ttyname(id); |
Martin v. Löwis | 79acb9e | 2002-12-06 12:48:53 +0000 | [diff] [blame] | 2651 | #endif |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2652 | if (ret == NULL) |
| 2653 | return posix_error(); |
Victor Stinner | 5fe6de8 | 2010-08-15 09:12:51 +0000 | [diff] [blame] | 2654 | return PyUnicode_DecodeFSDefault(ret); |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 2655 | } |
Guido van Rossum | d371ff1 | 1999-01-25 16:12:23 +0000 | [diff] [blame] | 2656 | #endif |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 2657 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 2658 | #ifdef HAVE_CTERMID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2659 | PyDoc_STRVAR(posix_ctermid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 2660 | "ctermid() -> string\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2661 | Return the name of the controlling terminal for this process."); |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 2662 | |
| 2663 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 2664 | posix_ctermid(PyObject *self, PyObject *noargs) |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 2665 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2666 | char *ret; |
| 2667 | char buffer[L_ctermid]; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 2668 | |
Greg Ward | b48bc17 | 2000-03-01 21:51:56 +0000 | [diff] [blame] | 2669 | #ifdef USE_CTERMID_R |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2670 | ret = ctermid_r(buffer); |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 2671 | #else |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2672 | ret = ctermid(buffer); |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 2673 | #endif |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2674 | if (ret == NULL) |
| 2675 | return posix_error(); |
Victor Stinner | 5fe6de8 | 2010-08-15 09:12:51 +0000 | [diff] [blame] | 2676 | return PyUnicode_DecodeFSDefault(buffer); |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 2677 | } |
| 2678 | #endif |
| 2679 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2680 | PyDoc_STRVAR(posix_chdir__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 2681 | "chdir(path)\n\n\ |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 2682 | Change the current working directory to the specified path.\n\ |
| 2683 | \n\ |
| 2684 | path may always be specified as a string.\n\ |
| 2685 | On some platforms, path may also be specified as an open file descriptor.\n\ |
| 2686 | If this functionality is unavailable, using it raises an exception."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2687 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2688 | static PyObject * |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 2689 | posix_chdir(PyObject *self, PyObject *args, PyObject *kwargs) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2690 | { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 2691 | path_t path; |
| 2692 | int result; |
| 2693 | PyObject *return_value = NULL; |
| 2694 | static char *keywords[] = {"path", NULL}; |
| 2695 | |
| 2696 | memset(&path, 0, sizeof(path)); |
| 2697 | #ifdef HAVE_FCHDIR |
| 2698 | path.allow_fd = 1; |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 2699 | #endif |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 2700 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&:chdir", keywords, |
| 2701 | path_converter, &path |
| 2702 | )) |
| 2703 | return NULL; |
| 2704 | |
| 2705 | Py_BEGIN_ALLOW_THREADS |
| 2706 | #ifdef MS_WINDOWS |
| 2707 | if (path.wide) |
| 2708 | result = win32_wchdir(path.wide); |
| 2709 | else |
| 2710 | result = win32_chdir(path.narrow); |
Petri Lehtinen | 5445a8c | 2012-10-23 16:12:14 +0300 | [diff] [blame] | 2711 | result = !result; /* on unix, success = 0, on windows, success = !0 */ |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 2712 | #elif defined(PYOS_OS2) && defined(PYCC_GCC) |
| 2713 | result = _chdir2(path.narrow); |
| 2714 | #else |
| 2715 | #ifdef HAVE_FCHDIR |
| 2716 | if (path.fd != -1) |
| 2717 | result = fchdir(path.fd); |
| 2718 | else |
| 2719 | #endif |
| 2720 | result = chdir(path.narrow); |
| 2721 | #endif |
| 2722 | Py_END_ALLOW_THREADS |
| 2723 | |
| 2724 | if (result) { |
| 2725 | return_value = path_error("chdir", &path); |
| 2726 | goto exit; |
| 2727 | } |
| 2728 | |
| 2729 | return_value = Py_None; |
| 2730 | Py_INCREF(Py_None); |
Georg Brandl | f787559 | 2012-06-24 13:58:31 +0200 | [diff] [blame] | 2731 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 2732 | exit: |
| 2733 | path_cleanup(&path); |
| 2734 | return return_value; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2735 | } |
| 2736 | |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 2737 | #ifdef HAVE_FCHDIR |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2738 | PyDoc_STRVAR(posix_fchdir__doc__, |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 2739 | "fchdir(fd)\n\n\ |
| 2740 | Change to the directory of the given file descriptor. fd must be\n\ |
| 2741 | opened on a directory, not a file. Equivalent to os.chdir(fd)."); |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 2742 | |
| 2743 | static PyObject * |
| 2744 | posix_fchdir(PyObject *self, PyObject *fdobj) |
| 2745 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2746 | return posix_fildes(fdobj, fchdir); |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 2747 | } |
| 2748 | #endif /* HAVE_FCHDIR */ |
| 2749 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2750 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 2751 | PyDoc_STRVAR(posix_chmod__doc__, |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 2752 | "chmod(path, mode, *, dir_fd=None, follow_symlinks=True)\n\n\ |
| 2753 | Change the access permissions of a file.\n\ |
| 2754 | \n\ |
| 2755 | path may always be specified as a string.\n\ |
| 2756 | On some platforms, path may also be specified as an open file descriptor.\n\ |
| 2757 | If this functionality is unavailable, using it raises an exception.\n\ |
| 2758 | If dir_fd is not None, it should be a file descriptor open to a directory,\n\ |
| 2759 | and path should be relative; path will then be relative to that directory.\n\ |
| 2760 | If follow_symlinks is False, and the last element of the path is a symbolic\n\ |
| 2761 | link, chmod will modify the symbolic link itself instead of the file the\n\ |
| 2762 | link points to.\n\ |
| 2763 | It is an error to use dir_fd or follow_symlinks when specifying path as\n\ |
| 2764 | an open file descriptor.\n\ |
| 2765 | dir_fd and follow_symlinks may not be implemented on your platform.\n\ |
| 2766 | If they are unavailable, using them will raise a NotImplementedError."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2767 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 2768 | static PyObject * |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 2769 | posix_chmod(PyObject *self, PyObject *args, PyObject *kwargs) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2770 | { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 2771 | path_t path; |
| 2772 | int mode; |
| 2773 | int dir_fd = DEFAULT_DIR_FD; |
| 2774 | int follow_symlinks = 1; |
| 2775 | int result; |
| 2776 | PyObject *return_value = NULL; |
| 2777 | static char *keywords[] = {"path", "mode", "dir_fd", |
| 2778 | "follow_symlinks", NULL}; |
| 2779 | |
Hirokazu Yamamoto | 8223c24 | 2009-05-17 04:21:53 +0000 | [diff] [blame] | 2780 | #ifdef MS_WINDOWS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2781 | DWORD attr; |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 2782 | #endif |
Hirokazu Yamamoto | 892a37a | 2009-06-28 11:07:03 +0000 | [diff] [blame] | 2783 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 2784 | #ifdef HAVE_FCHMODAT |
| 2785 | int fchmodat_nofollow_unsupported = 0; |
| 2786 | #endif |
| 2787 | |
| 2788 | memset(&path, 0, sizeof(path)); |
| 2789 | #ifdef HAVE_FCHMOD |
| 2790 | path.allow_fd = 1; |
| 2791 | #endif |
| 2792 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&i|$O&p:chmod", keywords, |
| 2793 | path_converter, &path, |
| 2794 | &mode, |
| 2795 | #ifdef HAVE_FCHMODAT |
| 2796 | dir_fd_converter, &dir_fd, |
| 2797 | #else |
| 2798 | dir_fd_unavailable, &dir_fd, |
| 2799 | #endif |
| 2800 | &follow_symlinks)) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2801 | return NULL; |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 2802 | |
| 2803 | #if !(defined(HAVE_FCHMODAT) || defined(HAVE_LCHMOD)) |
| 2804 | if (follow_symlinks_specified("chmod", follow_symlinks)) |
| 2805 | goto exit; |
| 2806 | #endif |
| 2807 | |
| 2808 | #ifdef MS_WINDOWS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2809 | Py_BEGIN_ALLOW_THREADS |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 2810 | if (path.wide) |
| 2811 | attr = GetFileAttributesW(path.wide); |
| 2812 | else |
| 2813 | attr = GetFileAttributesA(path.narrow); |
| 2814 | if (attr == 0xFFFFFFFF) |
| 2815 | result = 0; |
| 2816 | else { |
| 2817 | if (mode & _S_IWRITE) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2818 | attr &= ~FILE_ATTRIBUTE_READONLY; |
| 2819 | else |
| 2820 | attr |= FILE_ATTRIBUTE_READONLY; |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 2821 | if (path.wide) |
| 2822 | result = SetFileAttributesW(path.wide, attr); |
| 2823 | else |
| 2824 | result = SetFileAttributesA(path.narrow, attr); |
| 2825 | } |
| 2826 | Py_END_ALLOW_THREADS |
| 2827 | |
| 2828 | if (!result) { |
| 2829 | return_value = win32_error_object("chmod", path.object); |
| 2830 | goto exit; |
| 2831 | } |
| 2832 | #else /* MS_WINDOWS */ |
| 2833 | Py_BEGIN_ALLOW_THREADS |
| 2834 | #ifdef HAVE_FCHMOD |
| 2835 | if (path.fd != -1) |
| 2836 | result = fchmod(path.fd, mode); |
| 2837 | else |
| 2838 | #endif |
| 2839 | #ifdef HAVE_LCHMOD |
| 2840 | if ((!follow_symlinks) && (dir_fd == DEFAULT_DIR_FD)) |
| 2841 | result = lchmod(path.narrow, mode); |
| 2842 | else |
| 2843 | #endif |
| 2844 | #ifdef HAVE_FCHMODAT |
| 2845 | if ((dir_fd != DEFAULT_DIR_FD) || !follow_symlinks) { |
| 2846 | /* |
| 2847 | * fchmodat() doesn't currently support AT_SYMLINK_NOFOLLOW! |
| 2848 | * The documentation specifically shows how to use it, |
Larry Hastings | dbbc0c8 | 2012-06-22 19:50:21 -0700 | [diff] [blame] | 2849 | * and then says it isn't implemented yet. |
| 2850 | * (true on linux with glibc 2.15, and openindiana 3.x) |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 2851 | * |
| 2852 | * Once it is supported, os.chmod will automatically |
| 2853 | * support dir_fd and follow_symlinks=False. (Hopefully.) |
| 2854 | * Until then, we need to be careful what exception we raise. |
| 2855 | */ |
| 2856 | result = fchmodat(dir_fd, path.narrow, mode, |
| 2857 | follow_symlinks ? 0 : AT_SYMLINK_NOFOLLOW); |
| 2858 | /* |
| 2859 | * But wait! We can't throw the exception without allowing threads, |
| 2860 | * and we can't do that in this nested scope. (Macro trickery, sigh.) |
| 2861 | */ |
| 2862 | fchmodat_nofollow_unsupported = |
Larry Hastings | dbbc0c8 | 2012-06-22 19:50:21 -0700 | [diff] [blame] | 2863 | result && |
| 2864 | ((errno == ENOTSUP) || (errno == EOPNOTSUPP)) && |
| 2865 | !follow_symlinks; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2866 | } |
| 2867 | else |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 2868 | #endif |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 2869 | result = chmod(path.narrow, mode); |
| 2870 | Py_END_ALLOW_THREADS |
| 2871 | |
| 2872 | if (result) { |
| 2873 | #ifdef HAVE_FCHMODAT |
| 2874 | if (fchmodat_nofollow_unsupported) { |
| 2875 | if (dir_fd != DEFAULT_DIR_FD) |
| 2876 | dir_fd_and_follow_symlinks_invalid("chmod", |
| 2877 | dir_fd, follow_symlinks); |
| 2878 | else |
| 2879 | follow_symlinks_specified("chmod", follow_symlinks); |
| 2880 | } |
| 2881 | else |
| 2882 | #endif |
| 2883 | return_value = path_error("chmod", &path); |
| 2884 | goto exit; |
| 2885 | } |
| 2886 | #endif |
| 2887 | |
| 2888 | Py_INCREF(Py_None); |
| 2889 | return_value = Py_None; |
| 2890 | exit: |
| 2891 | path_cleanup(&path); |
| 2892 | return return_value; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2893 | } |
| 2894 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 2895 | |
Christian Heimes | 4e30a84 | 2007-11-30 22:12:06 +0000 | [diff] [blame] | 2896 | #ifdef HAVE_FCHMOD |
| 2897 | PyDoc_STRVAR(posix_fchmod__doc__, |
| 2898 | "fchmod(fd, mode)\n\n\ |
| 2899 | Change the access permissions of the file given by file\n\ |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 2900 | descriptor fd. Equivalent to os.chmod(fd, mode)."); |
Christian Heimes | 4e30a84 | 2007-11-30 22:12:06 +0000 | [diff] [blame] | 2901 | |
| 2902 | static PyObject * |
| 2903 | posix_fchmod(PyObject *self, PyObject *args) |
| 2904 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2905 | int fd, mode, res; |
| 2906 | if (!PyArg_ParseTuple(args, "ii:fchmod", &fd, &mode)) |
| 2907 | return NULL; |
| 2908 | Py_BEGIN_ALLOW_THREADS |
| 2909 | res = fchmod(fd, mode); |
| 2910 | Py_END_ALLOW_THREADS |
| 2911 | if (res < 0) |
| 2912 | return posix_error(); |
| 2913 | Py_RETURN_NONE; |
Christian Heimes | 4e30a84 | 2007-11-30 22:12:06 +0000 | [diff] [blame] | 2914 | } |
| 2915 | #endif /* HAVE_FCHMOD */ |
| 2916 | |
| 2917 | #ifdef HAVE_LCHMOD |
| 2918 | PyDoc_STRVAR(posix_lchmod__doc__, |
| 2919 | "lchmod(path, mode)\n\n\ |
| 2920 | Change the access permissions of a file. If path is a symlink, this\n\ |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 2921 | affects the link itself rather than the target.\n\ |
| 2922 | Equivalent to chmod(path, mode, follow_symlinks=False)."); |
Christian Heimes | 4e30a84 | 2007-11-30 22:12:06 +0000 | [diff] [blame] | 2923 | |
| 2924 | static PyObject * |
| 2925 | posix_lchmod(PyObject *self, PyObject *args) |
| 2926 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2927 | PyObject *opath; |
| 2928 | char *path; |
| 2929 | int i; |
| 2930 | int res; |
| 2931 | if (!PyArg_ParseTuple(args, "O&i:lchmod", PyUnicode_FSConverter, |
| 2932 | &opath, &i)) |
| 2933 | return NULL; |
| 2934 | path = PyBytes_AsString(opath); |
| 2935 | Py_BEGIN_ALLOW_THREADS |
| 2936 | res = lchmod(path, i); |
| 2937 | Py_END_ALLOW_THREADS |
| 2938 | if (res < 0) |
| 2939 | return posix_error_with_allocated_filename(opath); |
| 2940 | Py_DECREF(opath); |
| 2941 | Py_RETURN_NONE; |
Christian Heimes | 4e30a84 | 2007-11-30 22:12:06 +0000 | [diff] [blame] | 2942 | } |
| 2943 | #endif /* HAVE_LCHMOD */ |
| 2944 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 2945 | |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 2946 | #ifdef HAVE_CHFLAGS |
| 2947 | PyDoc_STRVAR(posix_chflags__doc__, |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 2948 | "chflags(path, flags, *, follow_symlinks=True)\n\n\ |
| 2949 | Set file flags.\n\ |
| 2950 | \n\ |
| 2951 | If follow_symlinks is False, and the last element of the path is a symbolic\n\ |
| 2952 | link, chflags will change flags on the symbolic link itself instead of the\n\ |
| 2953 | file the link points to.\n\ |
| 2954 | follow_symlinks may not be implemented on your platform. If it is\n\ |
| 2955 | unavailable, using it will raise a NotImplementedError."); |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 2956 | |
| 2957 | static PyObject * |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 2958 | posix_chflags(PyObject *self, PyObject *args, PyObject *kwargs) |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 2959 | { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 2960 | path_t path; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2961 | unsigned long flags; |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 2962 | int follow_symlinks = 1; |
| 2963 | int result; |
| 2964 | PyObject *return_value; |
| 2965 | static char *keywords[] = {"path", "flags", "follow_symlinks", NULL}; |
| 2966 | |
| 2967 | memset(&path, 0, sizeof(path)); |
| 2968 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&k|$i:chflags", keywords, |
| 2969 | path_converter, &path, |
| 2970 | &flags, &follow_symlinks)) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2971 | return NULL; |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 2972 | |
| 2973 | #ifndef HAVE_LCHFLAGS |
| 2974 | if (follow_symlinks_specified("chflags", follow_symlinks)) |
| 2975 | goto exit; |
| 2976 | #endif |
| 2977 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2978 | Py_BEGIN_ALLOW_THREADS |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 2979 | #ifdef HAVE_LCHFLAGS |
| 2980 | if (!follow_symlinks) |
| 2981 | result = lchflags(path.narrow, flags); |
| 2982 | else |
| 2983 | #endif |
| 2984 | result = chflags(path.narrow, flags); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2985 | Py_END_ALLOW_THREADS |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 2986 | |
| 2987 | if (result) { |
| 2988 | return_value = path_posix_error("chflags", &path); |
| 2989 | goto exit; |
| 2990 | } |
| 2991 | |
| 2992 | return_value = Py_None; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 2993 | Py_INCREF(Py_None); |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 2994 | |
| 2995 | exit: |
| 2996 | path_cleanup(&path); |
| 2997 | return return_value; |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 2998 | } |
| 2999 | #endif /* HAVE_CHFLAGS */ |
| 3000 | |
| 3001 | #ifdef HAVE_LCHFLAGS |
| 3002 | PyDoc_STRVAR(posix_lchflags__doc__, |
| 3003 | "lchflags(path, flags)\n\n\ |
| 3004 | Set file flags.\n\ |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3005 | This function will not follow symbolic links.\n\ |
| 3006 | Equivalent to chflags(path, flags, follow_symlinks=False)."); |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 3007 | |
| 3008 | static PyObject * |
| 3009 | posix_lchflags(PyObject *self, PyObject *args) |
| 3010 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3011 | PyObject *opath; |
| 3012 | char *path; |
| 3013 | unsigned long flags; |
| 3014 | int res; |
| 3015 | if (!PyArg_ParseTuple(args, "O&k:lchflags", |
| 3016 | PyUnicode_FSConverter, &opath, &flags)) |
| 3017 | return NULL; |
| 3018 | path = PyBytes_AsString(opath); |
| 3019 | Py_BEGIN_ALLOW_THREADS |
| 3020 | res = lchflags(path, flags); |
| 3021 | Py_END_ALLOW_THREADS |
| 3022 | if (res < 0) |
| 3023 | return posix_error_with_allocated_filename(opath); |
| 3024 | Py_DECREF(opath); |
| 3025 | Py_INCREF(Py_None); |
| 3026 | return Py_None; |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 3027 | } |
| 3028 | #endif /* HAVE_LCHFLAGS */ |
| 3029 | |
Martin v. Löwis | 244edc8 | 2001-10-04 22:44:26 +0000 | [diff] [blame] | 3030 | #ifdef HAVE_CHROOT |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3031 | PyDoc_STRVAR(posix_chroot__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 3032 | "chroot(path)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3033 | Change root directory to path."); |
Martin v. Löwis | 244edc8 | 2001-10-04 22:44:26 +0000 | [diff] [blame] | 3034 | |
| 3035 | static PyObject * |
| 3036 | posix_chroot(PyObject *self, PyObject *args) |
| 3037 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3038 | return posix_1str(args, "O&:chroot", chroot); |
Martin v. Löwis | 244edc8 | 2001-10-04 22:44:26 +0000 | [diff] [blame] | 3039 | } |
| 3040 | #endif |
| 3041 | |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 3042 | #ifdef HAVE_FSYNC |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3043 | PyDoc_STRVAR(posix_fsync__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 3044 | "fsync(fildes)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3045 | force write of file with filedescriptor to disk."); |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 3046 | |
| 3047 | static PyObject * |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 3048 | posix_fsync(PyObject *self, PyObject *fdobj) |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 3049 | { |
Stefan Krah | 0e803b3 | 2010-11-26 16:16:47 +0000 | [diff] [blame] | 3050 | return posix_fildes(fdobj, fsync); |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 3051 | } |
| 3052 | #endif /* HAVE_FSYNC */ |
| 3053 | |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 3054 | #ifdef HAVE_SYNC |
| 3055 | PyDoc_STRVAR(posix_sync__doc__, |
| 3056 | "sync()\n\n\ |
| 3057 | Force write of everything to disk."); |
| 3058 | |
| 3059 | static PyObject * |
| 3060 | posix_sync(PyObject *self, PyObject *noargs) |
| 3061 | { |
| 3062 | Py_BEGIN_ALLOW_THREADS |
| 3063 | sync(); |
| 3064 | Py_END_ALLOW_THREADS |
| 3065 | Py_RETURN_NONE; |
| 3066 | } |
| 3067 | #endif |
| 3068 | |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 3069 | #ifdef HAVE_FDATASYNC |
Guido van Rossum | ecc23b0 | 2000-09-22 16:01:05 +0000 | [diff] [blame] | 3070 | |
Guido van Rossum | 7f58e2e | 2000-09-22 17:26:14 +0000 | [diff] [blame] | 3071 | #ifdef __hpux |
Guido van Rossum | ecc23b0 | 2000-09-22 16:01:05 +0000 | [diff] [blame] | 3072 | extern int fdatasync(int); /* On HP-UX, in libc but not in unistd.h */ |
| 3073 | #endif |
| 3074 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3075 | PyDoc_STRVAR(posix_fdatasync__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 3076 | "fdatasync(fildes)\n\n\ |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 3077 | force write of file with filedescriptor to disk.\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3078 | does not force update of metadata."); |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 3079 | |
| 3080 | static PyObject * |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 3081 | posix_fdatasync(PyObject *self, PyObject *fdobj) |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 3082 | { |
Stefan Krah | 0e803b3 | 2010-11-26 16:16:47 +0000 | [diff] [blame] | 3083 | return posix_fildes(fdobj, fdatasync); |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 3084 | } |
| 3085 | #endif /* HAVE_FDATASYNC */ |
| 3086 | |
| 3087 | |
Fredrik Lundh | 1072334 | 2000-07-10 16:38:09 +0000 | [diff] [blame] | 3088 | #ifdef HAVE_CHOWN |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3089 | PyDoc_STRVAR(posix_chown__doc__, |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3090 | "chown(path, uid, gid, *, dir_fd=None, follow_symlinks=True)\n\n\ |
| 3091 | Change the owner and group id of path to the numeric uid and gid.\n\ |
| 3092 | \n\ |
| 3093 | path may always be specified as a string.\n\ |
| 3094 | On some platforms, path may also be specified as an open file descriptor.\n\ |
| 3095 | If this functionality is unavailable, using it raises an exception.\n\ |
| 3096 | If dir_fd is not None, it should be a file descriptor open to a directory,\n\ |
| 3097 | and path should be relative; path will then be relative to that directory.\n\ |
| 3098 | If follow_symlinks is False, and the last element of the path is a symbolic\n\ |
| 3099 | link, chown will modify the symbolic link itself instead of the file the\n\ |
| 3100 | link points to.\n\ |
| 3101 | It is an error to use dir_fd or follow_symlinks when specifying path as\n\ |
| 3102 | an open file descriptor.\n\ |
| 3103 | dir_fd and follow_symlinks may not be implemented on your platform.\n\ |
| 3104 | If they are unavailable, using them will raise a NotImplementedError."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3105 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3106 | static PyObject * |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3107 | posix_chown(PyObject *self, PyObject *args, PyObject *kwargs) |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3108 | { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3109 | path_t path; |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3110 | uid_t uid; |
| 3111 | gid_t gid; |
| 3112 | int dir_fd = DEFAULT_DIR_FD; |
| 3113 | int follow_symlinks = 1; |
| 3114 | int result; |
| 3115 | PyObject *return_value = NULL; |
| 3116 | static char *keywords[] = {"path", "uid", "gid", "dir_fd", |
| 3117 | "follow_symlinks", NULL}; |
| 3118 | |
| 3119 | memset(&path, 0, sizeof(path)); |
| 3120 | #ifdef HAVE_FCHOWN |
| 3121 | path.allow_fd = 1; |
| 3122 | #endif |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 3123 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&O&O&|$O&p:chown", keywords, |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3124 | path_converter, &path, |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 3125 | _Py_Uid_Converter, &uid, |
| 3126 | _Py_Gid_Converter, &gid, |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3127 | #ifdef HAVE_FCHOWNAT |
| 3128 | dir_fd_converter, &dir_fd, |
| 3129 | #else |
| 3130 | dir_fd_unavailable, &dir_fd, |
| 3131 | #endif |
| 3132 | &follow_symlinks)) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3133 | return NULL; |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3134 | |
| 3135 | #if !(defined(HAVE_LCHOWN) || defined(HAVE_FCHOWNAT)) |
| 3136 | if (follow_symlinks_specified("chown", follow_symlinks)) |
| 3137 | goto exit; |
| 3138 | #endif |
| 3139 | if (dir_fd_and_fd_invalid("chown", dir_fd, path.fd) || |
| 3140 | fd_and_follow_symlinks_invalid("chown", path.fd, follow_symlinks)) |
| 3141 | goto exit; |
| 3142 | |
| 3143 | #ifdef __APPLE__ |
| 3144 | /* |
| 3145 | * This is for Mac OS X 10.3, which doesn't have lchown. |
| 3146 | * (But we still have an lchown symbol because of weak-linking.) |
| 3147 | * It doesn't have fchownat either. So there's no possibility |
| 3148 | * of a graceful failover. |
Georg Brandl | f787559 | 2012-06-24 13:58:31 +0200 | [diff] [blame] | 3149 | */ |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3150 | if ((!follow_symlinks) && (lchown == NULL)) { |
| 3151 | follow_symlinks_specified("chown", follow_symlinks); |
| 3152 | goto exit; |
| 3153 | } |
| 3154 | #endif |
| 3155 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3156 | Py_BEGIN_ALLOW_THREADS |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3157 | #ifdef HAVE_FCHOWN |
| 3158 | if (path.fd != -1) |
| 3159 | result = fchown(path.fd, uid, gid); |
| 3160 | else |
| 3161 | #endif |
| 3162 | #ifdef HAVE_LCHOWN |
| 3163 | if ((!follow_symlinks) && (dir_fd == DEFAULT_DIR_FD)) |
| 3164 | result = lchown(path.narrow, uid, gid); |
| 3165 | else |
| 3166 | #endif |
| 3167 | #ifdef HAVE_FCHOWNAT |
| 3168 | if ((dir_fd != DEFAULT_DIR_FD) || (!follow_symlinks)) |
| 3169 | result = fchownat(dir_fd, path.narrow, uid, gid, |
| 3170 | follow_symlinks ? 0 : AT_SYMLINK_NOFOLLOW); |
| 3171 | else |
| 3172 | #endif |
| 3173 | result = chown(path.narrow, uid, gid); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3174 | Py_END_ALLOW_THREADS |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3175 | |
| 3176 | if (result) { |
| 3177 | return_value = path_posix_error("chown", &path); |
| 3178 | goto exit; |
| 3179 | } |
| 3180 | |
| 3181 | return_value = Py_None; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3182 | Py_INCREF(Py_None); |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3183 | |
| 3184 | exit: |
| 3185 | path_cleanup(&path); |
| 3186 | return return_value; |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3187 | } |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 3188 | #endif /* HAVE_CHOWN */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3189 | |
Christian Heimes | 4e30a84 | 2007-11-30 22:12:06 +0000 | [diff] [blame] | 3190 | #ifdef HAVE_FCHOWN |
| 3191 | PyDoc_STRVAR(posix_fchown__doc__, |
| 3192 | "fchown(fd, uid, gid)\n\n\ |
| 3193 | Change the owner and group id of the file given by file descriptor\n\ |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3194 | fd to the numeric uid and gid. Equivalent to os.chown(fd, uid, gid)."); |
Christian Heimes | 4e30a84 | 2007-11-30 22:12:06 +0000 | [diff] [blame] | 3195 | |
| 3196 | static PyObject * |
| 3197 | posix_fchown(PyObject *self, PyObject *args) |
| 3198 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3199 | int fd; |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 3200 | uid_t uid; |
| 3201 | gid_t gid; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3202 | int res; |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 3203 | if (!PyArg_ParseTuple(args, "iO&O&:fchown", &fd, |
| 3204 | _Py_Uid_Converter, &uid, |
| 3205 | _Py_Gid_Converter, &gid)) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3206 | return NULL; |
| 3207 | Py_BEGIN_ALLOW_THREADS |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 3208 | res = fchown(fd, uid, gid); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3209 | Py_END_ALLOW_THREADS |
| 3210 | if (res < 0) |
| 3211 | return posix_error(); |
| 3212 | Py_RETURN_NONE; |
Christian Heimes | 4e30a84 | 2007-11-30 22:12:06 +0000 | [diff] [blame] | 3213 | } |
| 3214 | #endif /* HAVE_FCHOWN */ |
| 3215 | |
Martin v. Löwis | 0cec0ff | 2002-07-28 16:33:45 +0000 | [diff] [blame] | 3216 | #ifdef HAVE_LCHOWN |
| 3217 | PyDoc_STRVAR(posix_lchown__doc__, |
| 3218 | "lchown(path, uid, gid)\n\n\ |
| 3219 | Change the owner and group id of path to the numeric uid and gid.\n\ |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3220 | This function will not follow symbolic links.\n\ |
| 3221 | Equivalent to os.chown(path, uid, gid, follow_symlinks=False)."); |
Martin v. Löwis | 0cec0ff | 2002-07-28 16:33:45 +0000 | [diff] [blame] | 3222 | |
| 3223 | static PyObject * |
| 3224 | posix_lchown(PyObject *self, PyObject *args) |
| 3225 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3226 | PyObject *opath; |
| 3227 | char *path; |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 3228 | uid_t uid; |
| 3229 | gid_t gid; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3230 | int res; |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 3231 | if (!PyArg_ParseTuple(args, "O&O&O&:lchown", |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3232 | PyUnicode_FSConverter, &opath, |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 3233 | _Py_Uid_Converter, &uid, |
| 3234 | _Py_Gid_Converter, &gid)) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3235 | return NULL; |
| 3236 | path = PyBytes_AsString(opath); |
| 3237 | Py_BEGIN_ALLOW_THREADS |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 3238 | res = lchown(path, uid, gid); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3239 | Py_END_ALLOW_THREADS |
| 3240 | if (res < 0) |
| 3241 | return posix_error_with_allocated_filename(opath); |
| 3242 | Py_DECREF(opath); |
| 3243 | Py_INCREF(Py_None); |
| 3244 | return Py_None; |
Martin v. Löwis | 0cec0ff | 2002-07-28 16:33:45 +0000 | [diff] [blame] | 3245 | } |
| 3246 | #endif /* HAVE_LCHOWN */ |
| 3247 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3248 | |
Guido van Rossum | 36bc680 | 1995-06-14 22:54:23 +0000 | [diff] [blame] | 3249 | #ifdef HAVE_GETCWD |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3250 | static PyObject * |
Guido van Rossum | f0af3e3 | 2008-10-02 18:55:37 +0000 | [diff] [blame] | 3251 | posix_getcwd(int use_bytes) |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 3252 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3253 | char buf[1026]; |
| 3254 | char *res; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 3255 | |
Hirokazu Yamamoto | 8223c24 | 2009-05-17 04:21:53 +0000 | [diff] [blame] | 3256 | #ifdef MS_WINDOWS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3257 | if (!use_bytes) { |
| 3258 | wchar_t wbuf[1026]; |
| 3259 | wchar_t *wbuf2 = wbuf; |
| 3260 | PyObject *resobj; |
| 3261 | DWORD len; |
| 3262 | Py_BEGIN_ALLOW_THREADS |
| 3263 | len = GetCurrentDirectoryW(sizeof wbuf/ sizeof wbuf[0], wbuf); |
| 3264 | /* If the buffer is large enough, len does not include the |
| 3265 | terminating \0. If the buffer is too small, len includes |
| 3266 | the space needed for the terminator. */ |
| 3267 | if (len >= sizeof wbuf/ sizeof wbuf[0]) { |
| 3268 | wbuf2 = malloc(len * sizeof(wchar_t)); |
| 3269 | if (wbuf2) |
| 3270 | len = GetCurrentDirectoryW(len, wbuf2); |
| 3271 | } |
| 3272 | Py_END_ALLOW_THREADS |
| 3273 | if (!wbuf2) { |
| 3274 | PyErr_NoMemory(); |
| 3275 | return NULL; |
| 3276 | } |
| 3277 | if (!len) { |
| 3278 | if (wbuf2 != wbuf) free(wbuf2); |
| 3279 | return win32_error("getcwdu", NULL); |
| 3280 | } |
| 3281 | resobj = PyUnicode_FromWideChar(wbuf2, len); |
| 3282 | if (wbuf2 != wbuf) free(wbuf2); |
| 3283 | return resobj; |
| 3284 | } |
Victor Stinner | f7c5ae2 | 2011-11-16 23:43:07 +0100 | [diff] [blame] | 3285 | |
| 3286 | if (win32_warn_bytes_api()) |
| 3287 | return NULL; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 3288 | #endif |
| 3289 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3290 | Py_BEGIN_ALLOW_THREADS |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 3291 | #if defined(PYOS_OS2) && defined(PYCC_GCC) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3292 | res = _getcwd2(buf, sizeof buf); |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 3293 | #else |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3294 | res = getcwd(buf, sizeof buf); |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 3295 | #endif |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3296 | Py_END_ALLOW_THREADS |
| 3297 | if (res == NULL) |
| 3298 | return posix_error(); |
| 3299 | if (use_bytes) |
| 3300 | return PyBytes_FromStringAndSize(buf, strlen(buf)); |
Victor Stinner | 97c18ab | 2010-05-07 16:34:53 +0000 | [diff] [blame] | 3301 | return PyUnicode_DecodeFSDefault(buf); |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 3302 | } |
Guido van Rossum | f0af3e3 | 2008-10-02 18:55:37 +0000 | [diff] [blame] | 3303 | |
| 3304 | PyDoc_STRVAR(posix_getcwd__doc__, |
| 3305 | "getcwd() -> path\n\n\ |
| 3306 | Return a unicode string representing the current working directory."); |
| 3307 | |
| 3308 | static PyObject * |
| 3309 | posix_getcwd_unicode(PyObject *self) |
| 3310 | { |
| 3311 | return posix_getcwd(0); |
| 3312 | } |
| 3313 | |
| 3314 | PyDoc_STRVAR(posix_getcwdb__doc__, |
| 3315 | "getcwdb() -> path\n\n\ |
| 3316 | Return a bytes string representing the current working directory."); |
| 3317 | |
| 3318 | static PyObject * |
| 3319 | posix_getcwd_bytes(PyObject *self) |
| 3320 | { |
| 3321 | return posix_getcwd(1); |
| 3322 | } |
Guido van Rossum | 36bc680 | 1995-06-14 22:54:23 +0000 | [diff] [blame] | 3323 | #endif |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 3324 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3325 | #if ((!defined(HAVE_LINK)) && defined(MS_WINDOWS)) |
| 3326 | #define HAVE_LINK 1 |
| 3327 | #endif |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3328 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3329 | #ifdef HAVE_LINK |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3330 | PyDoc_STRVAR(posix_link__doc__, |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3331 | "link(src, dst, *, src_dir_fd=None, dst_dir_fd=None, follow_symlinks=True)\n\n\ |
| 3332 | Create a hard link to a file.\n\ |
| 3333 | \n\ |
| 3334 | If either src_dir_fd or dst_dir_fd is not None, it should be a file\n\ |
| 3335 | descriptor open to a directory, and the respective path string (src or dst)\n\ |
| 3336 | should be relative; the path will then be relative to that directory.\n\ |
| 3337 | If follow_symlinks is False, and the last element of src is a symbolic\n\ |
| 3338 | link, link will create a link to the symbolic link itself instead of the\n\ |
| 3339 | file the link points to.\n\ |
| 3340 | src_dir_fd, dst_dir_fd, and follow_symlinks may not be implemented on your\n\ |
| 3341 | platform. If they are unavailable, using them will raise a\n\ |
| 3342 | NotImplementedError."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3343 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3344 | static PyObject * |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3345 | posix_link(PyObject *self, PyObject *args, PyObject *kwargs) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 3346 | { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3347 | path_t src, dst; |
| 3348 | int src_dir_fd = DEFAULT_DIR_FD; |
| 3349 | int dst_dir_fd = DEFAULT_DIR_FD; |
| 3350 | int follow_symlinks = 1; |
| 3351 | PyObject *return_value = NULL; |
| 3352 | static char *keywords[] = {"src", "dst", "src_dir_fd", "dst_dir_fd", |
| 3353 | "follow_symlinks", NULL}; |
| 3354 | #ifdef MS_WINDOWS |
| 3355 | BOOL result; |
| 3356 | #else |
| 3357 | int result; |
| 3358 | #endif |
| 3359 | |
| 3360 | memset(&src, 0, sizeof(src)); |
| 3361 | memset(&dst, 0, sizeof(dst)); |
| 3362 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&O&|O&O&p:link", keywords, |
| 3363 | path_converter, &src, |
| 3364 | path_converter, &dst, |
| 3365 | dir_fd_converter, &src_dir_fd, |
| 3366 | dir_fd_converter, &dst_dir_fd, |
| 3367 | &follow_symlinks)) |
| 3368 | return NULL; |
| 3369 | |
| 3370 | #ifndef HAVE_LINKAT |
| 3371 | if ((src_dir_fd != DEFAULT_DIR_FD) || (dst_dir_fd != DEFAULT_DIR_FD)) { |
| 3372 | argument_unavailable_error("link", "src_dir_fd and dst_dir_fd"); |
| 3373 | goto exit; |
| 3374 | } |
| 3375 | #endif |
| 3376 | |
| 3377 | if ((src.narrow && dst.wide) || (src.wide && dst.narrow)) { |
| 3378 | PyErr_SetString(PyExc_NotImplementedError, |
| 3379 | "link: src and dst must be the same type"); |
| 3380 | goto exit; |
| 3381 | } |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 3382 | |
Brian Curtin | 1b9df39 | 2010-11-24 20:24:31 +0000 | [diff] [blame] | 3383 | #ifdef MS_WINDOWS |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3384 | Py_BEGIN_ALLOW_THREADS |
| 3385 | if (src.wide) |
| 3386 | result = CreateHardLinkW(dst.wide, src.wide, NULL); |
| 3387 | else |
| 3388 | result = CreateHardLinkA(dst.narrow, src.narrow, NULL); |
| 3389 | Py_END_ALLOW_THREADS |
Brian Curtin | 1b9df39 | 2010-11-24 20:24:31 +0000 | [diff] [blame] | 3390 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3391 | if (!result) { |
| 3392 | return_value = win32_error_object("link", dst.object); |
| 3393 | goto exit; |
Brian Curtin | fc889c4 | 2010-11-28 23:59:46 +0000 | [diff] [blame] | 3394 | } |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3395 | #else |
| 3396 | Py_BEGIN_ALLOW_THREADS |
Larry Hastings | 67cbf7b | 2012-06-22 17:06:48 -0700 | [diff] [blame] | 3397 | #ifdef HAVE_LINKAT |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3398 | if ((src_dir_fd != DEFAULT_DIR_FD) || |
| 3399 | (dst_dir_fd != DEFAULT_DIR_FD) || |
| 3400 | (!follow_symlinks)) |
| 3401 | result = linkat(src_dir_fd, src.narrow, |
| 3402 | dst_dir_fd, dst.narrow, |
| 3403 | follow_symlinks ? AT_SYMLINK_FOLLOW : 0); |
| 3404 | else |
| 3405 | #endif |
| 3406 | result = link(src.narrow, dst.narrow); |
| 3407 | Py_END_ALLOW_THREADS |
Brian Curtin | fc889c4 | 2010-11-28 23:59:46 +0000 | [diff] [blame] | 3408 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3409 | if (result) { |
| 3410 | return_value = path_error("link", &dst); |
| 3411 | goto exit; |
Victor Stinner | 1ab6c2d | 2011-11-15 22:27:41 +0100 | [diff] [blame] | 3412 | } |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3413 | #endif |
| 3414 | |
| 3415 | return_value = Py_None; |
| 3416 | Py_INCREF(Py_None); |
| 3417 | |
| 3418 | exit: |
| 3419 | path_cleanup(&src); |
| 3420 | path_cleanup(&dst); |
| 3421 | return return_value; |
Brian Curtin | 1b9df39 | 2010-11-24 20:24:31 +0000 | [diff] [blame] | 3422 | } |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3423 | #endif |
| 3424 | |
Brian Curtin | 1b9df39 | 2010-11-24 20:24:31 +0000 | [diff] [blame] | 3425 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3426 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3427 | PyDoc_STRVAR(posix_listdir__doc__, |
Larry Hastings | fdaea06 | 2012-06-25 04:42:23 -0700 | [diff] [blame] | 3428 | "listdir(path='.') -> list_of_filenames\n\n\ |
| 3429 | Return a list containing the names of the files in the directory.\n\ |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3430 | The list is in arbitrary order. It does not include the special\n\ |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3431 | entries '.' and '..' even if they are present in the directory.\n\ |
| 3432 | \n\ |
Larry Hastings | fdaea06 | 2012-06-25 04:42:23 -0700 | [diff] [blame] | 3433 | path can be specified as either str or bytes. If path is bytes,\n\ |
| 3434 | the filenames returned will also be bytes; in all other circumstances\n\ |
| 3435 | the filenames returned will be str.\n\ |
| 3436 | On some platforms, path may also be specified as an open file descriptor;\n\ |
| 3437 | the file descriptor must refer to a directory.\n\ |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3438 | If this functionality is unavailable, using it raises NotImplementedError."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3439 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3440 | static PyObject * |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3441 | posix_listdir(PyObject *self, PyObject *args, PyObject *kwargs) |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3442 | { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3443 | path_t path; |
| 3444 | PyObject *list = NULL; |
| 3445 | static char *keywords[] = {"path", NULL}; |
| 3446 | int fd = -1; |
| 3447 | |
| 3448 | #if defined(MS_WINDOWS) && !defined(HAVE_OPENDIR) |
| 3449 | PyObject *v; |
| 3450 | HANDLE hFindFile = INVALID_HANDLE_VALUE; |
| 3451 | BOOL result; |
| 3452 | WIN32_FIND_DATA FileData; |
| 3453 | char namebuf[MAX_PATH+5]; /* Overallocate for \\*.*\0 */ |
| 3454 | char *bufptr = namebuf; |
| 3455 | /* only claim to have space for MAX_PATH */ |
| 3456 | Py_ssize_t len = sizeof(namebuf)-5; |
| 3457 | PyObject *po = NULL; |
| 3458 | wchar_t *wnamebuf = NULL; |
| 3459 | #elif defined(PYOS_OS2) |
| 3460 | #ifndef MAX_PATH |
| 3461 | #define MAX_PATH CCHMAXPATH |
| 3462 | #endif |
| 3463 | char *pt; |
| 3464 | PyObject *v; |
| 3465 | char namebuf[MAX_PATH+5]; |
| 3466 | HDIR hdir = 1; |
| 3467 | ULONG srchcnt = 1; |
| 3468 | FILEFINDBUF3 ep; |
| 3469 | APIRET rc; |
| 3470 | #else |
| 3471 | PyObject *v; |
| 3472 | DIR *dirp = NULL; |
| 3473 | struct dirent *ep; |
Larry Hastings | fdaea06 | 2012-06-25 04:42:23 -0700 | [diff] [blame] | 3474 | int return_str; /* if false, return bytes */ |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3475 | #endif |
| 3476 | |
| 3477 | memset(&path, 0, sizeof(path)); |
| 3478 | path.nullable = 1; |
| 3479 | #ifdef HAVE_FDOPENDIR |
| 3480 | path.allow_fd = 1; |
| 3481 | path.fd = -1; |
| 3482 | #endif |
| 3483 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|O&:listdir", keywords, |
| 3484 | path_converter, &path |
| 3485 | )) |
| 3486 | return NULL; |
| 3487 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3488 | /* XXX Should redo this putting the (now four) versions of opendir |
| 3489 | in separate files instead of having them all here... */ |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 3490 | #if defined(MS_WINDOWS) && !defined(HAVE_OPENDIR) |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3491 | if (!path.narrow) { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3492 | WIN32_FIND_DATAW wFileData; |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3493 | wchar_t *po_wchars; |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 3494 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3495 | if (!path.wide) { /* Default arg: "." */ |
Martin v. Löwis | c9e1c7d | 2010-07-23 12:16:41 +0000 | [diff] [blame] | 3496 | po_wchars = L"."; |
| 3497 | len = 1; |
| 3498 | } else { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3499 | po_wchars = path.wide; |
| 3500 | len = wcslen(path.wide); |
Martin v. Löwis | c9e1c7d | 2010-07-23 12:16:41 +0000 | [diff] [blame] | 3501 | } |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3502 | /* The +5 is so we can append "\\*.*\0" */ |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3503 | wnamebuf = malloc((len + 5) * sizeof(wchar_t)); |
| 3504 | if (!wnamebuf) { |
| 3505 | PyErr_NoMemory(); |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3506 | goto exit; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3507 | } |
Martin v. Löwis | c9e1c7d | 2010-07-23 12:16:41 +0000 | [diff] [blame] | 3508 | wcscpy(wnamebuf, po_wchars); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3509 | if (len > 0) { |
Victor Stinner | eb5657a | 2011-09-30 01:44:27 +0200 | [diff] [blame] | 3510 | wchar_t wch = wnamebuf[len-1]; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3511 | if (wch != L'/' && wch != L'\\' && wch != L':') |
| 3512 | wnamebuf[len++] = L'\\'; |
| 3513 | wcscpy(wnamebuf + len, L"*.*"); |
| 3514 | } |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3515 | if ((list = PyList_New(0)) == NULL) { |
| 3516 | goto exit; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3517 | } |
Antoine Pitrou | b73caab | 2010-08-09 23:39:31 +0000 | [diff] [blame] | 3518 | Py_BEGIN_ALLOW_THREADS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3519 | hFindFile = FindFirstFileW(wnamebuf, &wFileData); |
Antoine Pitrou | b73caab | 2010-08-09 23:39:31 +0000 | [diff] [blame] | 3520 | Py_END_ALLOW_THREADS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3521 | if (hFindFile == INVALID_HANDLE_VALUE) { |
| 3522 | int error = GetLastError(); |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3523 | if (error == ERROR_FILE_NOT_FOUND) |
| 3524 | goto exit; |
| 3525 | Py_DECREF(list); |
| 3526 | list = NULL; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3527 | win32_error_unicode("FindFirstFileW", wnamebuf); |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3528 | goto exit; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3529 | } |
| 3530 | do { |
| 3531 | /* Skip over . and .. */ |
| 3532 | if (wcscmp(wFileData.cFileName, L".") != 0 && |
| 3533 | wcscmp(wFileData.cFileName, L"..") != 0) { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3534 | v = PyUnicode_FromWideChar(wFileData.cFileName, |
| 3535 | wcslen(wFileData.cFileName)); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3536 | if (v == NULL) { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3537 | Py_DECREF(list); |
| 3538 | list = NULL; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3539 | break; |
| 3540 | } |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3541 | if (PyList_Append(list, v) != 0) { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3542 | Py_DECREF(v); |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3543 | Py_DECREF(list); |
| 3544 | list = NULL; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3545 | break; |
| 3546 | } |
| 3547 | Py_DECREF(v); |
| 3548 | } |
| 3549 | Py_BEGIN_ALLOW_THREADS |
| 3550 | result = FindNextFileW(hFindFile, &wFileData); |
| 3551 | Py_END_ALLOW_THREADS |
| 3552 | /* FindNextFile sets error to ERROR_NO_MORE_FILES if |
| 3553 | it got to the end of the directory. */ |
| 3554 | if (!result && GetLastError() != ERROR_NO_MORE_FILES) { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3555 | Py_DECREF(list); |
| 3556 | list = win32_error_unicode("FindNextFileW", wnamebuf); |
| 3557 | goto exit; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3558 | } |
| 3559 | } while (result == TRUE); |
Hirokazu Yamamoto | 892a37a | 2009-06-28 11:07:03 +0000 | [diff] [blame] | 3560 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3561 | goto exit; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3562 | } |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3563 | strcpy(namebuf, path.narrow); |
| 3564 | len = path.length; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3565 | if (len > 0) { |
| 3566 | char ch = namebuf[len-1]; |
| 3567 | if (ch != SEP && ch != ALTSEP && ch != ':') |
| 3568 | namebuf[len++] = '/'; |
| 3569 | strcpy(namebuf + len, "*.*"); |
| 3570 | } |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3571 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3572 | if ((list = PyList_New(0)) == NULL) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3573 | return NULL; |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3574 | |
Antoine Pitrou | b73caab | 2010-08-09 23:39:31 +0000 | [diff] [blame] | 3575 | Py_BEGIN_ALLOW_THREADS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3576 | hFindFile = FindFirstFile(namebuf, &FileData); |
Antoine Pitrou | b73caab | 2010-08-09 23:39:31 +0000 | [diff] [blame] | 3577 | Py_END_ALLOW_THREADS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3578 | if (hFindFile == INVALID_HANDLE_VALUE) { |
| 3579 | int error = GetLastError(); |
| 3580 | if (error == ERROR_FILE_NOT_FOUND) |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3581 | goto exit; |
| 3582 | Py_DECREF(list); |
| 3583 | list = win32_error("FindFirstFile", namebuf); |
| 3584 | goto exit; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3585 | } |
| 3586 | do { |
| 3587 | /* Skip over . and .. */ |
| 3588 | if (strcmp(FileData.cFileName, ".") != 0 && |
| 3589 | strcmp(FileData.cFileName, "..") != 0) { |
| 3590 | v = PyBytes_FromString(FileData.cFileName); |
| 3591 | if (v == NULL) { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3592 | Py_DECREF(list); |
| 3593 | list = NULL; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3594 | break; |
| 3595 | } |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3596 | if (PyList_Append(list, v) != 0) { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3597 | Py_DECREF(v); |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3598 | Py_DECREF(list); |
| 3599 | list = NULL; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3600 | break; |
| 3601 | } |
| 3602 | Py_DECREF(v); |
| 3603 | } |
| 3604 | Py_BEGIN_ALLOW_THREADS |
| 3605 | result = FindNextFile(hFindFile, &FileData); |
| 3606 | Py_END_ALLOW_THREADS |
| 3607 | /* FindNextFile sets error to ERROR_NO_MORE_FILES if |
| 3608 | it got to the end of the directory. */ |
| 3609 | if (!result && GetLastError() != ERROR_NO_MORE_FILES) { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3610 | Py_DECREF(list); |
| 3611 | list = win32_error("FindNextFile", namebuf); |
| 3612 | goto exit; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3613 | } |
| 3614 | } while (result == TRUE); |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3615 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3616 | exit: |
| 3617 | if (hFindFile != INVALID_HANDLE_VALUE) { |
| 3618 | if (FindClose(hFindFile) == FALSE) { |
| 3619 | if (list != NULL) { |
| 3620 | Py_DECREF(list); |
| 3621 | list = win32_error_object("FindClose", path.object); |
| 3622 | } |
| 3623 | } |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3624 | } |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3625 | if (wnamebuf) |
| 3626 | free(wnamebuf); |
| 3627 | path_cleanup(&path); |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 3628 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3629 | return list; |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 3630 | |
Tim Peters | 0bb44a4 | 2000-09-15 07:44:49 +0000 | [diff] [blame] | 3631 | #elif defined(PYOS_OS2) |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3632 | if (path.length >= MAX_PATH) { |
Neal Norwitz | 6c91378 | 2007-10-14 03:23:09 +0000 | [diff] [blame] | 3633 | PyErr_SetString(PyExc_ValueError, "path too long"); |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3634 | goto exit; |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 3635 | } |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3636 | strcpy(namebuf, path.narrow); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 3637 | for (pt = namebuf; *pt; pt++) |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 3638 | if (*pt == ALTSEP) |
| 3639 | *pt = SEP; |
| 3640 | if (namebuf[len-1] != SEP) |
| 3641 | namebuf[len++] = SEP; |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 3642 | strcpy(namebuf + len, "*.*"); |
| 3643 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3644 | if ((list = PyList_New(0)) == NULL) { |
| 3645 | goto exit; |
Alexandre Vassalotti | 4167ebc | 2007-10-14 02:54:41 +0000 | [diff] [blame] | 3646 | } |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 3647 | |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 3648 | rc = DosFindFirst(namebuf, /* Wildcard Pattern to Match */ |
| 3649 | &hdir, /* Handle to Use While Search Directory */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 3650 | FILE_READONLY | FILE_HIDDEN | FILE_SYSTEM | FILE_DIRECTORY, |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 3651 | &ep, sizeof(ep), /* Structure to Receive Directory Entry */ |
| 3652 | &srchcnt, /* Max and Actual Count of Entries Per Iteration */ |
| 3653 | FIL_STANDARD); /* Format of Entry (EAs or Not) */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 3654 | |
| 3655 | if (rc != NO_ERROR) { |
| 3656 | errno = ENOENT; |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3657 | Py_DECREF(list); |
| 3658 | list = posix_error_with_filename(path.narrow); |
| 3659 | goto exit; |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 3660 | } |
| 3661 | |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 3662 | if (srchcnt > 0) { /* If Directory is NOT Totally Empty, */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 3663 | do { |
| 3664 | if (ep.achName[0] == '.' |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 3665 | && (ep.achName[1] == '\0' || (ep.achName[1] == '.' && ep.achName[2] == '\0'))) |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 3666 | continue; /* Skip Over "." and ".." Names */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 3667 | |
| 3668 | strcpy(namebuf, ep.achName); |
| 3669 | |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 3670 | /* Leave Case of Name Alone -- In Native Form */ |
| 3671 | /* (Removed Forced Lowercasing Code) */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 3672 | |
Christian Heimes | 72b710a | 2008-05-26 13:28:38 +0000 | [diff] [blame] | 3673 | v = PyBytes_FromString(namebuf); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 3674 | if (v == NULL) { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3675 | Py_DECREF(list); |
| 3676 | list = NULL; |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 3677 | break; |
| 3678 | } |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3679 | if (PyList_Append(list, v) != 0) { |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 3680 | Py_DECREF(v); |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3681 | Py_DECREF(list); |
| 3682 | list = NULL; |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 3683 | break; |
| 3684 | } |
| 3685 | Py_DECREF(v); |
| 3686 | } while (DosFindNext(hdir, &ep, sizeof(ep), &srchcnt) == NO_ERROR && srchcnt > 0); |
| 3687 | } |
| 3688 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3689 | exit: |
| 3690 | path_cleanup(&path); |
| 3691 | |
| 3692 | return list; |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 3693 | #else |
Just van Rossum | 96b1c90 | 2003-03-03 17:32:15 +0000 | [diff] [blame] | 3694 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3695 | errno = 0; |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3696 | #ifdef HAVE_FDOPENDIR |
| 3697 | if (path.fd != -1) { |
| 3698 | /* closedir() closes the FD, so we duplicate it */ |
Antoine Pitrou | d3ccde8 | 2010-09-04 17:21:57 +0000 | [diff] [blame] | 3699 | Py_BEGIN_ALLOW_THREADS |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3700 | fd = dup(path.fd); |
Antoine Pitrou | d3ccde8 | 2010-09-04 17:21:57 +0000 | [diff] [blame] | 3701 | Py_END_ALLOW_THREADS |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3702 | |
| 3703 | if (fd == -1) { |
| 3704 | list = posix_error(); |
| 3705 | goto exit; |
| 3706 | } |
| 3707 | |
Larry Hastings | fdaea06 | 2012-06-25 04:42:23 -0700 | [diff] [blame] | 3708 | return_str = 1; |
| 3709 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3710 | Py_BEGIN_ALLOW_THREADS |
| 3711 | dirp = fdopendir(fd); |
| 3712 | Py_END_ALLOW_THREADS |
| 3713 | } |
| 3714 | else |
| 3715 | #endif |
| 3716 | { |
Larry Hastings | fdaea06 | 2012-06-25 04:42:23 -0700 | [diff] [blame] | 3717 | char *name; |
| 3718 | if (path.narrow) { |
| 3719 | name = path.narrow; |
| 3720 | /* only return bytes if they specified a bytes object */ |
| 3721 | return_str = !(PyBytes_Check(path.object)); |
| 3722 | } |
| 3723 | else { |
| 3724 | name = "."; |
| 3725 | return_str = 1; |
| 3726 | } |
| 3727 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3728 | Py_BEGIN_ALLOW_THREADS |
| 3729 | dirp = opendir(name); |
| 3730 | Py_END_ALLOW_THREADS |
| 3731 | } |
| 3732 | |
| 3733 | if (dirp == NULL) { |
| 3734 | list = path_error("listdir", &path); |
| 3735 | goto exit; |
| 3736 | } |
| 3737 | if ((list = PyList_New(0)) == NULL) { |
| 3738 | goto exit; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3739 | } |
| 3740 | for (;;) { |
| 3741 | errno = 0; |
| 3742 | Py_BEGIN_ALLOW_THREADS |
| 3743 | ep = readdir(dirp); |
| 3744 | Py_END_ALLOW_THREADS |
| 3745 | if (ep == NULL) { |
| 3746 | if (errno == 0) { |
| 3747 | break; |
| 3748 | } else { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3749 | Py_DECREF(list); |
| 3750 | list = path_error("listdir", &path); |
| 3751 | goto exit; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3752 | } |
| 3753 | } |
| 3754 | if (ep->d_name[0] == '.' && |
| 3755 | (NAMLEN(ep) == 1 || |
| 3756 | (ep->d_name[1] == '.' && NAMLEN(ep) == 2))) |
| 3757 | continue; |
Larry Hastings | fdaea06 | 2012-06-25 04:42:23 -0700 | [diff] [blame] | 3758 | if (return_str) |
Victor Stinner | a45598a | 2010-05-14 16:35:39 +0000 | [diff] [blame] | 3759 | v = PyUnicode_DecodeFSDefaultAndSize(ep->d_name, NAMLEN(ep)); |
| 3760 | else |
| 3761 | v = PyBytes_FromStringAndSize(ep->d_name, NAMLEN(ep)); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3762 | if (v == NULL) { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3763 | Py_CLEAR(list); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3764 | break; |
| 3765 | } |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3766 | if (PyList_Append(list, v) != 0) { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3767 | Py_DECREF(v); |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3768 | Py_CLEAR(list); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3769 | break; |
| 3770 | } |
| 3771 | Py_DECREF(v); |
| 3772 | } |
Guido van Rossum | 0ee42cd | 1991-04-08 21:01:03 +0000 | [diff] [blame] | 3773 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3774 | exit: |
| 3775 | if (dirp != NULL) { |
| 3776 | Py_BEGIN_ALLOW_THREADS |
| 3777 | if (fd > -1) |
| 3778 | rewinddir(dirp); |
| 3779 | closedir(dirp); |
| 3780 | Py_END_ALLOW_THREADS |
| 3781 | } |
| 3782 | |
| 3783 | path_cleanup(&path); |
| 3784 | |
| 3785 | return list; |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 3786 | |
Tim Peters | 0bb44a4 | 2000-09-15 07:44:49 +0000 | [diff] [blame] | 3787 | #endif /* which OS */ |
| 3788 | } /* end of posix_listdir */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 3789 | |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 3790 | #ifdef MS_WINDOWS |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 3791 | /* A helper function for abspath on win32 */ |
| 3792 | static PyObject * |
| 3793 | posix__getfullpathname(PyObject *self, PyObject *args) |
| 3794 | { |
Victor Stinner | 1ab6c2d | 2011-11-15 22:27:41 +0100 | [diff] [blame] | 3795 | const char *path; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3796 | char outbuf[MAX_PATH*2]; |
| 3797 | char *temp; |
Victor Stinner | eb5657a | 2011-09-30 01:44:27 +0200 | [diff] [blame] | 3798 | PyObject *po; |
| 3799 | |
| 3800 | if (PyArg_ParseTuple(args, "U|:_getfullpathname", &po)) |
| 3801 | { |
| 3802 | wchar_t *wpath; |
| 3803 | wchar_t woutbuf[MAX_PATH*2], *woutbufp = woutbuf; |
| 3804 | wchar_t *wtemp; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3805 | DWORD result; |
| 3806 | PyObject *v; |
Victor Stinner | eb5657a | 2011-09-30 01:44:27 +0200 | [diff] [blame] | 3807 | |
| 3808 | wpath = PyUnicode_AsUnicode(po); |
| 3809 | if (wpath == NULL) |
| 3810 | return NULL; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3811 | result = GetFullPathNameW(wpath, |
Victor Stinner | 6394188 | 2011-09-29 00:42:28 +0200 | [diff] [blame] | 3812 | Py_ARRAY_LENGTH(woutbuf), |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3813 | woutbuf, &wtemp); |
Victor Stinner | 6394188 | 2011-09-29 00:42:28 +0200 | [diff] [blame] | 3814 | if (result > Py_ARRAY_LENGTH(woutbuf)) { |
Victor Stinner | eb5657a | 2011-09-30 01:44:27 +0200 | [diff] [blame] | 3815 | woutbufp = malloc(result * sizeof(wchar_t)); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3816 | if (!woutbufp) |
| 3817 | return PyErr_NoMemory(); |
| 3818 | result = GetFullPathNameW(wpath, result, woutbufp, &wtemp); |
| 3819 | } |
| 3820 | if (result) |
Victor Stinner | 9d3b93b | 2011-11-22 02:27:30 +0100 | [diff] [blame] | 3821 | v = PyUnicode_FromWideChar(woutbufp, wcslen(woutbufp)); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3822 | else |
Victor Stinner | eb5657a | 2011-09-30 01:44:27 +0200 | [diff] [blame] | 3823 | v = win32_error_object("GetFullPathNameW", po); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3824 | if (woutbufp != woutbuf) |
| 3825 | free(woutbufp); |
| 3826 | return v; |
| 3827 | } |
| 3828 | /* Drop the argument parsing error as narrow strings |
| 3829 | are also valid. */ |
| 3830 | PyErr_Clear(); |
Victor Stinner | eb5657a | 2011-09-30 01:44:27 +0200 | [diff] [blame] | 3831 | |
Victor Stinner | 1ab6c2d | 2011-11-15 22:27:41 +0100 | [diff] [blame] | 3832 | if (!PyArg_ParseTuple (args, "y:_getfullpathname", |
| 3833 | &path)) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3834 | return NULL; |
Victor Stinner | 1ab6c2d | 2011-11-15 22:27:41 +0100 | [diff] [blame] | 3835 | if (win32_warn_bytes_api()) |
| 3836 | return NULL; |
Victor Stinner | 6394188 | 2011-09-29 00:42:28 +0200 | [diff] [blame] | 3837 | if (!GetFullPathName(path, Py_ARRAY_LENGTH(outbuf), |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3838 | outbuf, &temp)) { |
| 3839 | win32_error("GetFullPathName", path); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3840 | return NULL; |
| 3841 | } |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3842 | if (PyUnicode_Check(PyTuple_GetItem(args, 0))) { |
| 3843 | return PyUnicode_Decode(outbuf, strlen(outbuf), |
| 3844 | Py_FileSystemDefaultEncoding, NULL); |
| 3845 | } |
| 3846 | return PyBytes_FromString(outbuf); |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 3847 | } /* end of posix__getfullpathname */ |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 3848 | |
Brian Curtin | d25aef5 | 2011-06-13 15:16:04 -0500 | [diff] [blame] | 3849 | |
Brian Curtin | f5e76d0 | 2010-11-24 13:14:05 +0000 | [diff] [blame] | 3850 | |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 3851 | /* A helper function for samepath on windows */ |
| 3852 | static PyObject * |
| 3853 | posix__getfinalpathname(PyObject *self, PyObject *args) |
| 3854 | { |
| 3855 | HANDLE hFile; |
| 3856 | int buf_size; |
| 3857 | wchar_t *target_path; |
| 3858 | int result_length; |
Victor Stinner | eb5657a | 2011-09-30 01:44:27 +0200 | [diff] [blame] | 3859 | PyObject *po, *result; |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 3860 | wchar_t *path; |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 3861 | |
Victor Stinner | eb5657a | 2011-09-30 01:44:27 +0200 | [diff] [blame] | 3862 | if (!PyArg_ParseTuple(args, "U|:_getfinalpathname", &po)) |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 3863 | return NULL; |
Victor Stinner | eb5657a | 2011-09-30 01:44:27 +0200 | [diff] [blame] | 3864 | path = PyUnicode_AsUnicode(po); |
| 3865 | if (path == NULL) |
| 3866 | return NULL; |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 3867 | |
| 3868 | if(!check_GetFinalPathNameByHandle()) { |
| 3869 | /* If the OS doesn't have GetFinalPathNameByHandle, return a |
| 3870 | NotImplementedError. */ |
| 3871 | return PyErr_Format(PyExc_NotImplementedError, |
| 3872 | "GetFinalPathNameByHandle not available on this platform"); |
| 3873 | } |
| 3874 | |
| 3875 | hFile = CreateFileW( |
| 3876 | path, |
| 3877 | 0, /* desired access */ |
| 3878 | 0, /* share mode */ |
| 3879 | NULL, /* security attributes */ |
| 3880 | OPEN_EXISTING, |
| 3881 | /* FILE_FLAG_BACKUP_SEMANTICS is required to open a directory */ |
| 3882 | FILE_FLAG_BACKUP_SEMANTICS, |
| 3883 | NULL); |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 3884 | |
Victor Stinner | eb5657a | 2011-09-30 01:44:27 +0200 | [diff] [blame] | 3885 | if(hFile == INVALID_HANDLE_VALUE) |
| 3886 | return win32_error_object("CreateFileW", po); |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 3887 | |
| 3888 | /* We have a good handle to the target, use it to determine the |
| 3889 | target path name. */ |
| 3890 | buf_size = Py_GetFinalPathNameByHandleW(hFile, 0, 0, VOLUME_NAME_NT); |
| 3891 | |
| 3892 | if(!buf_size) |
Victor Stinner | eb5657a | 2011-09-30 01:44:27 +0200 | [diff] [blame] | 3893 | return win32_error_object("GetFinalPathNameByHandle", po); |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 3894 | |
| 3895 | target_path = (wchar_t *)malloc((buf_size+1)*sizeof(wchar_t)); |
| 3896 | if(!target_path) |
| 3897 | return PyErr_NoMemory(); |
| 3898 | |
| 3899 | result_length = Py_GetFinalPathNameByHandleW(hFile, target_path, |
| 3900 | buf_size, VOLUME_NAME_DOS); |
| 3901 | if(!result_length) |
Victor Stinner | eb5657a | 2011-09-30 01:44:27 +0200 | [diff] [blame] | 3902 | return win32_error_object("GetFinalPathNamyByHandle", po); |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 3903 | |
| 3904 | if(!CloseHandle(hFile)) |
Victor Stinner | eb5657a | 2011-09-30 01:44:27 +0200 | [diff] [blame] | 3905 | return win32_error_object("CloseHandle", po); |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 3906 | |
| 3907 | target_path[result_length] = 0; |
Victor Stinner | 9d3b93b | 2011-11-22 02:27:30 +0100 | [diff] [blame] | 3908 | result = PyUnicode_FromWideChar(target_path, result_length); |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 3909 | free(target_path); |
| 3910 | return result; |
| 3911 | |
| 3912 | } /* end of posix__getfinalpathname */ |
Brian Curtin | 6285774 | 2010-09-06 17:07:27 +0000 | [diff] [blame] | 3913 | |
| 3914 | static PyObject * |
| 3915 | posix__getfileinformation(PyObject *self, PyObject *args) |
| 3916 | { |
| 3917 | HANDLE hFile; |
| 3918 | BY_HANDLE_FILE_INFORMATION info; |
| 3919 | int fd; |
| 3920 | |
| 3921 | if (!PyArg_ParseTuple(args, "i:_getfileinformation", &fd)) |
| 3922 | return NULL; |
| 3923 | |
Hirokazu Yamamoto | 26253bb | 2010-12-05 04:16:47 +0000 | [diff] [blame] | 3924 | if (!_PyVerify_fd(fd)) |
| 3925 | return posix_error(); |
Brian Curtin | 6285774 | 2010-09-06 17:07:27 +0000 | [diff] [blame] | 3926 | |
| 3927 | hFile = (HANDLE)_get_osfhandle(fd); |
| 3928 | if (hFile == INVALID_HANDLE_VALUE) |
Hirokazu Yamamoto | 26253bb | 2010-12-05 04:16:47 +0000 | [diff] [blame] | 3929 | return posix_error(); |
Brian Curtin | 6285774 | 2010-09-06 17:07:27 +0000 | [diff] [blame] | 3930 | |
| 3931 | if (!GetFileInformationByHandle(hFile, &info)) |
| 3932 | return win32_error("_getfileinformation", NULL); |
| 3933 | |
| 3934 | return Py_BuildValue("iii", info.dwVolumeSerialNumber, |
| 3935 | info.nFileIndexHigh, |
| 3936 | info.nFileIndexLow); |
| 3937 | } |
Brian Curtin | 9c669cc | 2011-06-08 18:17:18 -0500 | [diff] [blame] | 3938 | |
Brian Curtin | 95d028f | 2011-06-09 09:10:38 -0500 | [diff] [blame] | 3939 | PyDoc_STRVAR(posix__isdir__doc__, |
| 3940 | "Return true if the pathname refers to an existing directory."); |
| 3941 | |
Brian Curtin | 9c669cc | 2011-06-08 18:17:18 -0500 | [diff] [blame] | 3942 | static PyObject * |
| 3943 | posix__isdir(PyObject *self, PyObject *args) |
| 3944 | { |
Victor Stinner | 1ab6c2d | 2011-11-15 22:27:41 +0100 | [diff] [blame] | 3945 | const char *path; |
Victor Stinner | eb5657a | 2011-09-30 01:44:27 +0200 | [diff] [blame] | 3946 | PyObject *po; |
Brian Curtin | 9c669cc | 2011-06-08 18:17:18 -0500 | [diff] [blame] | 3947 | DWORD attributes; |
| 3948 | |
| 3949 | if (PyArg_ParseTuple(args, "U|:_isdir", &po)) { |
Victor Stinner | eb5657a | 2011-09-30 01:44:27 +0200 | [diff] [blame] | 3950 | wchar_t *wpath = PyUnicode_AsUnicode(po); |
| 3951 | if (wpath == NULL) |
| 3952 | return NULL; |
Brian Curtin | 9c669cc | 2011-06-08 18:17:18 -0500 | [diff] [blame] | 3953 | |
| 3954 | attributes = GetFileAttributesW(wpath); |
| 3955 | if (attributes == INVALID_FILE_ATTRIBUTES) |
| 3956 | Py_RETURN_FALSE; |
| 3957 | goto check; |
| 3958 | } |
| 3959 | /* Drop the argument parsing error as narrow strings |
| 3960 | are also valid. */ |
| 3961 | PyErr_Clear(); |
| 3962 | |
Victor Stinner | 1ab6c2d | 2011-11-15 22:27:41 +0100 | [diff] [blame] | 3963 | if (!PyArg_ParseTuple(args, "y:_isdir", &path)) |
Brian Curtin | 9c669cc | 2011-06-08 18:17:18 -0500 | [diff] [blame] | 3964 | return NULL; |
Victor Stinner | 1ab6c2d | 2011-11-15 22:27:41 +0100 | [diff] [blame] | 3965 | if (win32_warn_bytes_api()) |
| 3966 | return NULL; |
Brian Curtin | 9c669cc | 2011-06-08 18:17:18 -0500 | [diff] [blame] | 3967 | attributes = GetFileAttributesA(path); |
| 3968 | if (attributes == INVALID_FILE_ATTRIBUTES) |
| 3969 | Py_RETURN_FALSE; |
| 3970 | |
| 3971 | check: |
| 3972 | if (attributes & FILE_ATTRIBUTE_DIRECTORY) |
| 3973 | Py_RETURN_TRUE; |
| 3974 | else |
| 3975 | Py_RETURN_FALSE; |
| 3976 | } |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 3977 | #endif /* MS_WINDOWS */ |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 3978 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 3979 | PyDoc_STRVAR(posix_mkdir__doc__, |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3980 | "mkdir(path, mode=0o777, *, dir_fd=None)\n\n\ |
| 3981 | Create a directory.\n\ |
| 3982 | \n\ |
| 3983 | If dir_fd is not None, it should be a file descriptor open to a directory,\n\ |
| 3984 | and path should be relative; path will then be relative to that directory.\n\ |
| 3985 | dir_fd may not be implemented on your platform.\n\ |
| 3986 | If it is unavailable, using it will raise a NotImplementedError.\n\ |
| 3987 | \n\ |
| 3988 | The mode argument is ignored on Windows."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 3989 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 3990 | static PyObject * |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3991 | posix_mkdir(PyObject *self, PyObject *args, PyObject *kwargs) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 3992 | { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3993 | path_t path; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 3994 | int mode = 0777; |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 3995 | int dir_fd = DEFAULT_DIR_FD; |
| 3996 | static char *keywords[] = {"path", "mode", "dir_fd", NULL}; |
| 3997 | PyObject *return_value = NULL; |
| 3998 | int result; |
| 3999 | |
| 4000 | memset(&path, 0, sizeof(path)); |
| 4001 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&|i$O&:mkdir", keywords, |
| 4002 | path_converter, &path, &mode, |
| 4003 | #ifdef HAVE_MKDIRAT |
| 4004 | dir_fd_converter, &dir_fd |
| 4005 | #else |
| 4006 | dir_fd_unavailable, &dir_fd |
| 4007 | #endif |
| 4008 | )) |
| 4009 | return NULL; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 4010 | |
Hirokazu Yamamoto | 8223c24 | 2009-05-17 04:21:53 +0000 | [diff] [blame] | 4011 | #ifdef MS_WINDOWS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 4012 | Py_BEGIN_ALLOW_THREADS |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4013 | if (path.wide) |
| 4014 | result = CreateDirectoryW(path.wide, NULL); |
| 4015 | else |
| 4016 | result = CreateDirectoryA(path.narrow, NULL); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 4017 | Py_END_ALLOW_THREADS |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 4018 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4019 | if (!result) { |
| 4020 | return_value = win32_error_object("mkdir", path.object); |
| 4021 | goto exit; |
| 4022 | } |
| 4023 | #else |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 4024 | Py_BEGIN_ALLOW_THREADS |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4025 | #if HAVE_MKDIRAT |
| 4026 | if (dir_fd != DEFAULT_DIR_FD) |
| 4027 | result = mkdirat(dir_fd, path.narrow, mode); |
| 4028 | else |
| 4029 | #endif |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 4030 | #if ( defined(__WATCOMC__) || defined(PYCC_VACPP) ) && !defined(__QNX__) |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4031 | result = mkdir(path.narrow); |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 4032 | #else |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4033 | result = mkdir(path.narrow, mode); |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 4034 | #endif |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 4035 | Py_END_ALLOW_THREADS |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4036 | if (result < 0) { |
| 4037 | return_value = path_error("mkdir", &path); |
| 4038 | goto exit; |
| 4039 | } |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 4040 | #endif |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4041 | return_value = Py_None; |
| 4042 | Py_INCREF(Py_None); |
| 4043 | exit: |
| 4044 | path_cleanup(&path); |
| 4045 | return return_value; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 4046 | } |
| 4047 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 4048 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 4049 | /* sys/resource.h is needed for at least: wait3(), wait4(), broken nice. */ |
| 4050 | #if defined(HAVE_SYS_RESOURCE_H) |
Thomas Wouters | e38b2f1 | 2001-07-11 22:35:31 +0000 | [diff] [blame] | 4051 | #include <sys/resource.h> |
| 4052 | #endif |
Thomas Wouters | e38b2f1 | 2001-07-11 22:35:31 +0000 | [diff] [blame] | 4053 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 4054 | |
| 4055 | #ifdef HAVE_NICE |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 4056 | PyDoc_STRVAR(posix_nice__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 4057 | "nice(inc) -> new_priority\n\n\ |
| 4058 | Decrease the priority of process by inc and return the new priority."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 4059 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 4060 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 4061 | posix_nice(PyObject *self, PyObject *args) |
Guido van Rossum | 775f4da | 1993-01-09 17:18:52 +0000 | [diff] [blame] | 4062 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 4063 | int increment, value; |
Guido van Rossum | 775f4da | 1993-01-09 17:18:52 +0000 | [diff] [blame] | 4064 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 4065 | if (!PyArg_ParseTuple(args, "i:nice", &increment)) |
| 4066 | return NULL; |
Thomas Wouters | c2c12dc | 2001-07-11 14:45:34 +0000 | [diff] [blame] | 4067 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 4068 | /* There are two flavours of 'nice': one that returns the new |
| 4069 | priority (as required by almost all standards out there) and the |
| 4070 | Linux/FreeBSD/BSDI one, which returns '0' on success and advices |
| 4071 | the use of getpriority() to get the new priority. |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 4072 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 4073 | If we are of the nice family that returns the new priority, we |
| 4074 | need to clear errno before the call, and check if errno is filled |
| 4075 | before calling posix_error() on a returnvalue of -1, because the |
| 4076 | -1 may be the actual new priority! */ |
Thomas Wouters | c2c12dc | 2001-07-11 14:45:34 +0000 | [diff] [blame] | 4077 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 4078 | errno = 0; |
| 4079 | value = nice(increment); |
Thomas Wouters | e38b2f1 | 2001-07-11 22:35:31 +0000 | [diff] [blame] | 4080 | #if defined(HAVE_BROKEN_NICE) && defined(HAVE_GETPRIORITY) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 4081 | if (value == 0) |
| 4082 | value = getpriority(PRIO_PROCESS, 0); |
Thomas Wouters | c2c12dc | 2001-07-11 14:45:34 +0000 | [diff] [blame] | 4083 | #endif |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 4084 | if (value == -1 && errno != 0) |
| 4085 | /* either nice() or getpriority() returned an error */ |
| 4086 | return posix_error(); |
| 4087 | return PyLong_FromLong((long) value); |
Guido van Rossum | 775f4da | 1993-01-09 17:18:52 +0000 | [diff] [blame] | 4088 | } |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 4089 | #endif /* HAVE_NICE */ |
Guido van Rossum | 1ff6cb4 | 1991-04-08 20:59:13 +0000 | [diff] [blame] | 4090 | |
Giampaolo Rodolà | 18e8bcb | 2011-02-25 20:57:54 +0000 | [diff] [blame] | 4091 | |
| 4092 | #ifdef HAVE_GETPRIORITY |
| 4093 | PyDoc_STRVAR(posix_getpriority__doc__, |
| 4094 | "getpriority(which, who) -> current_priority\n\n\ |
| 4095 | Get program scheduling priority."); |
| 4096 | |
| 4097 | static PyObject * |
| 4098 | posix_getpriority(PyObject *self, PyObject *args) |
| 4099 | { |
| 4100 | int which, who, retval; |
| 4101 | |
| 4102 | if (!PyArg_ParseTuple(args, "ii", &which, &who)) |
| 4103 | return NULL; |
| 4104 | errno = 0; |
Giampaolo Rodolà | 18e8bcb | 2011-02-25 20:57:54 +0000 | [diff] [blame] | 4105 | retval = getpriority(which, who); |
Giampaolo Rodolà | 18e8bcb | 2011-02-25 20:57:54 +0000 | [diff] [blame] | 4106 | if (errno != 0) |
| 4107 | return posix_error(); |
| 4108 | return PyLong_FromLong((long)retval); |
| 4109 | } |
| 4110 | #endif /* HAVE_GETPRIORITY */ |
| 4111 | |
| 4112 | |
| 4113 | #ifdef HAVE_SETPRIORITY |
| 4114 | PyDoc_STRVAR(posix_setpriority__doc__, |
| 4115 | "setpriority(which, who, prio) -> None\n\n\ |
| 4116 | Set program scheduling priority."); |
| 4117 | |
| 4118 | static PyObject * |
| 4119 | posix_setpriority(PyObject *self, PyObject *args) |
| 4120 | { |
| 4121 | int which, who, prio, retval; |
| 4122 | |
| 4123 | if (!PyArg_ParseTuple(args, "iii", &which, &who, &prio)) |
| 4124 | return NULL; |
Giampaolo Rodolà | 18e8bcb | 2011-02-25 20:57:54 +0000 | [diff] [blame] | 4125 | retval = setpriority(which, who, prio); |
Giampaolo Rodolà | 18e8bcb | 2011-02-25 20:57:54 +0000 | [diff] [blame] | 4126 | if (retval == -1) |
| 4127 | return posix_error(); |
| 4128 | Py_RETURN_NONE; |
| 4129 | } |
| 4130 | #endif /* HAVE_SETPRIORITY */ |
| 4131 | |
| 4132 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 4133 | static PyObject * |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4134 | internal_rename(PyObject *args, PyObject *kwargs, int is_replace) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 4135 | { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4136 | char *function_name = is_replace ? "replace" : "rename"; |
| 4137 | path_t src; |
| 4138 | path_t dst; |
| 4139 | int src_dir_fd = DEFAULT_DIR_FD; |
| 4140 | int dst_dir_fd = DEFAULT_DIR_FD; |
| 4141 | int dir_fd_specified; |
| 4142 | PyObject *return_value = NULL; |
| 4143 | char format[24]; |
| 4144 | static char *keywords[] = {"src", "dst", "src_dir_fd", "dst_dir_fd", NULL}; |
| 4145 | |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 4146 | #ifdef MS_WINDOWS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 4147 | BOOL result; |
Antoine Pitrou | f3b2d88 | 2012-01-30 22:08:52 +0100 | [diff] [blame] | 4148 | int flags = is_replace ? MOVEFILE_REPLACE_EXISTING : 0; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 4149 | #else |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4150 | int result; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 4151 | #endif |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4152 | |
| 4153 | memset(&src, 0, sizeof(src)); |
| 4154 | memset(&dst, 0, sizeof(dst)); |
| 4155 | strcpy(format, "O&O&|$O&O&:"); |
| 4156 | strcat(format, function_name); |
| 4157 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, format, keywords, |
| 4158 | path_converter, &src, |
| 4159 | path_converter, &dst, |
| 4160 | dir_fd_converter, &src_dir_fd, |
| 4161 | dir_fd_converter, &dst_dir_fd)) |
| 4162 | return NULL; |
| 4163 | |
| 4164 | dir_fd_specified = (src_dir_fd != DEFAULT_DIR_FD) || |
| 4165 | (dst_dir_fd != DEFAULT_DIR_FD); |
| 4166 | #ifndef HAVE_RENAMEAT |
| 4167 | if (dir_fd_specified) { |
| 4168 | argument_unavailable_error(function_name, "src_dir_fd and dst_dir_fd"); |
| 4169 | goto exit; |
| 4170 | } |
| 4171 | #endif |
| 4172 | |
| 4173 | if ((src.narrow && dst.wide) || (src.wide && dst.narrow)) { |
| 4174 | PyErr_Format(PyExc_ValueError, |
| 4175 | "%s: src and dst must be the same type", function_name); |
| 4176 | goto exit; |
| 4177 | } |
| 4178 | |
| 4179 | #ifdef MS_WINDOWS |
| 4180 | Py_BEGIN_ALLOW_THREADS |
| 4181 | if (src.wide) |
| 4182 | result = MoveFileExW(src.wide, dst.wide, flags); |
| 4183 | else |
| 4184 | result = MoveFileExA(src.narrow, dst.narrow, flags); |
| 4185 | Py_END_ALLOW_THREADS |
| 4186 | |
| 4187 | if (!result) { |
| 4188 | return_value = win32_error_object(function_name, dst.object); |
| 4189 | goto exit; |
| 4190 | } |
| 4191 | |
| 4192 | #else |
| 4193 | Py_BEGIN_ALLOW_THREADS |
| 4194 | #ifdef HAVE_RENAMEAT |
| 4195 | if (dir_fd_specified) |
| 4196 | result = renameat(src_dir_fd, src.narrow, dst_dir_fd, dst.narrow); |
| 4197 | else |
| 4198 | #endif |
| 4199 | result = rename(src.narrow, dst.narrow); |
| 4200 | Py_END_ALLOW_THREADS |
| 4201 | |
| 4202 | if (result) { |
| 4203 | return_value = path_error(function_name, &dst); |
| 4204 | goto exit; |
| 4205 | } |
| 4206 | #endif |
| 4207 | |
| 4208 | Py_INCREF(Py_None); |
| 4209 | return_value = Py_None; |
| 4210 | exit: |
| 4211 | path_cleanup(&src); |
| 4212 | path_cleanup(&dst); |
| 4213 | return return_value; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 4214 | } |
| 4215 | |
Antoine Pitrou | f3b2d88 | 2012-01-30 22:08:52 +0100 | [diff] [blame] | 4216 | PyDoc_STRVAR(posix_rename__doc__, |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4217 | "rename(src, dst, *, src_dir_fd=None, dst_dir_fd=None)\n\n\ |
| 4218 | Rename a file or directory.\n\ |
| 4219 | \n\ |
| 4220 | If either src_dir_fd or dst_dir_fd is not None, it should be a file\n\ |
| 4221 | descriptor open to a directory, and the respective path string (src or dst)\n\ |
| 4222 | should be relative; the path will then be relative to that directory.\n\ |
| 4223 | src_dir_fd and dst_dir_fd, may not be implemented on your platform.\n\ |
| 4224 | If they are unavailable, using them will raise a NotImplementedError."); |
Antoine Pitrou | f3b2d88 | 2012-01-30 22:08:52 +0100 | [diff] [blame] | 4225 | |
| 4226 | static PyObject * |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4227 | posix_rename(PyObject *self, PyObject *args, PyObject *kwargs) |
Antoine Pitrou | f3b2d88 | 2012-01-30 22:08:52 +0100 | [diff] [blame] | 4228 | { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4229 | return internal_rename(args, kwargs, 0); |
Antoine Pitrou | f3b2d88 | 2012-01-30 22:08:52 +0100 | [diff] [blame] | 4230 | } |
| 4231 | |
| 4232 | PyDoc_STRVAR(posix_replace__doc__, |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4233 | "replace(src, dst, *, src_dir_fd=None, dst_dir_fd=None)\n\n\ |
| 4234 | Rename a file or directory, overwriting the destination.\n\ |
| 4235 | \n\ |
| 4236 | If either src_dir_fd or dst_dir_fd is not None, it should be a file\n\ |
| 4237 | descriptor open to a directory, and the respective path string (src or dst)\n\ |
| 4238 | should be relative; the path will then be relative to that directory.\n\ |
| 4239 | src_dir_fd and dst_dir_fd, may not be implemented on your platform.\n\ |
| 4240 | If they are unavailable, using them will raise a NotImplementedError."); |
Antoine Pitrou | f3b2d88 | 2012-01-30 22:08:52 +0100 | [diff] [blame] | 4241 | |
| 4242 | static PyObject * |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4243 | posix_replace(PyObject *self, PyObject *args, PyObject *kwargs) |
Antoine Pitrou | f3b2d88 | 2012-01-30 22:08:52 +0100 | [diff] [blame] | 4244 | { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4245 | return internal_rename(args, kwargs, 1); |
Antoine Pitrou | f3b2d88 | 2012-01-30 22:08:52 +0100 | [diff] [blame] | 4246 | } |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 4247 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 4248 | PyDoc_STRVAR(posix_rmdir__doc__, |
Larry Hastings | b698d8e | 2012-06-23 16:55:07 -0700 | [diff] [blame] | 4249 | "rmdir(path, *, dir_fd=None)\n\n\ |
| 4250 | Remove a directory.\n\ |
| 4251 | \n\ |
| 4252 | If dir_fd is not None, it should be a file descriptor open to a directory,\n\ |
| 4253 | and path should be relative; path will then be relative to that directory.\n\ |
| 4254 | dir_fd may not be implemented on your platform.\n\ |
| 4255 | If it is unavailable, using it will raise a NotImplementedError."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 4256 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 4257 | static PyObject * |
Larry Hastings | b698d8e | 2012-06-23 16:55:07 -0700 | [diff] [blame] | 4258 | posix_rmdir(PyObject *self, PyObject *args, PyObject *kwargs) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 4259 | { |
Larry Hastings | b698d8e | 2012-06-23 16:55:07 -0700 | [diff] [blame] | 4260 | path_t path; |
| 4261 | int dir_fd = DEFAULT_DIR_FD; |
| 4262 | static char *keywords[] = {"path", "dir_fd", NULL}; |
| 4263 | int result; |
| 4264 | PyObject *return_value = NULL; |
| 4265 | |
| 4266 | memset(&path, 0, sizeof(path)); |
| 4267 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&|$O&:rmdir", keywords, |
| 4268 | path_converter, &path, |
| 4269 | #ifdef HAVE_UNLINKAT |
| 4270 | dir_fd_converter, &dir_fd |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 4271 | #else |
Larry Hastings | b698d8e | 2012-06-23 16:55:07 -0700 | [diff] [blame] | 4272 | dir_fd_unavailable, &dir_fd |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 4273 | #endif |
Larry Hastings | b698d8e | 2012-06-23 16:55:07 -0700 | [diff] [blame] | 4274 | )) |
| 4275 | return NULL; |
| 4276 | |
| 4277 | Py_BEGIN_ALLOW_THREADS |
| 4278 | #ifdef MS_WINDOWS |
| 4279 | if (path.wide) |
| 4280 | result = RemoveDirectoryW(path.wide); |
| 4281 | else |
| 4282 | result = RemoveDirectoryA(path.narrow); |
| 4283 | result = !result; /* Windows, success=1, UNIX, success=0 */ |
| 4284 | #else |
| 4285 | #ifdef HAVE_UNLINKAT |
| 4286 | if (dir_fd != DEFAULT_DIR_FD) |
| 4287 | result = unlinkat(dir_fd, path.narrow, AT_REMOVEDIR); |
| 4288 | else |
| 4289 | #endif |
| 4290 | result = rmdir(path.narrow); |
| 4291 | #endif |
| 4292 | Py_END_ALLOW_THREADS |
| 4293 | |
| 4294 | if (result) { |
| 4295 | return_value = path_error("rmdir", &path); |
| 4296 | goto exit; |
| 4297 | } |
| 4298 | |
| 4299 | return_value = Py_None; |
| 4300 | Py_INCREF(Py_None); |
| 4301 | |
| 4302 | exit: |
| 4303 | path_cleanup(&path); |
| 4304 | return return_value; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 4305 | } |
| 4306 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 4307 | |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 4308 | #ifdef HAVE_SYSTEM |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 4309 | PyDoc_STRVAR(posix_system__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 4310 | "system(command) -> exit_status\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 4311 | Execute the command (a string) in a subshell."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 4312 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 4313 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 4314 | posix_system(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 4315 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 4316 | long sts; |
Amaury Forgeot d'Arc | 90ebd3e | 2007-11-20 01:52:14 +0000 | [diff] [blame] | 4317 | #ifdef MS_WINDOWS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 4318 | wchar_t *command; |
| 4319 | if (!PyArg_ParseTuple(args, "u:system", &command)) |
| 4320 | return NULL; |
Victor Stinner | cfa7278 | 2010-04-16 11:45:13 +0000 | [diff] [blame] | 4321 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 4322 | Py_BEGIN_ALLOW_THREADS |
| 4323 | sts = _wsystem(command); |
| 4324 | Py_END_ALLOW_THREADS |
Victor Stinner | cfa7278 | 2010-04-16 11:45:13 +0000 | [diff] [blame] | 4325 | #else |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 4326 | PyObject *command_obj; |
| 4327 | char *command; |
| 4328 | if (!PyArg_ParseTuple(args, "O&:system", |
| 4329 | PyUnicode_FSConverter, &command_obj)) |
| 4330 | return NULL; |
Victor Stinner | cfa7278 | 2010-04-16 11:45:13 +0000 | [diff] [blame] | 4331 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 4332 | command = PyBytes_AsString(command_obj); |
| 4333 | Py_BEGIN_ALLOW_THREADS |
| 4334 | sts = system(command); |
| 4335 | Py_END_ALLOW_THREADS |
| 4336 | Py_DECREF(command_obj); |
Victor Stinner | cfa7278 | 2010-04-16 11:45:13 +0000 | [diff] [blame] | 4337 | #endif |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 4338 | return PyLong_FromLong(sts); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 4339 | } |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 4340 | #endif |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 4341 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 4342 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 4343 | PyDoc_STRVAR(posix_umask__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 4344 | "umask(new_mask) -> old_mask\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 4345 | Set the current numeric umask and return the previous umask."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 4346 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 4347 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 4348 | posix_umask(PyObject *self, PyObject *args) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 4349 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 4350 | int i; |
| 4351 | if (!PyArg_ParseTuple(args, "i:umask", &i)) |
| 4352 | return NULL; |
| 4353 | i = (int)umask(i); |
| 4354 | if (i < 0) |
| 4355 | return posix_error(); |
| 4356 | return PyLong_FromLong((long)i); |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 4357 | } |
| 4358 | |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 4359 | #ifdef MS_WINDOWS |
| 4360 | |
| 4361 | /* override the default DeleteFileW behavior so that directory |
| 4362 | symlinks can be removed with this function, the same as with |
| 4363 | Unix symlinks */ |
| 4364 | BOOL WINAPI Py_DeleteFileW(LPCWSTR lpFileName) |
| 4365 | { |
| 4366 | WIN32_FILE_ATTRIBUTE_DATA info; |
| 4367 | WIN32_FIND_DATAW find_data; |
| 4368 | HANDLE find_data_handle; |
| 4369 | int is_directory = 0; |
| 4370 | int is_link = 0; |
| 4371 | |
| 4372 | if (GetFileAttributesExW(lpFileName, GetFileExInfoStandard, &info)) { |
| 4373 | is_directory = info.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY; |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 4374 | |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 4375 | /* Get WIN32_FIND_DATA structure for the path to determine if |
| 4376 | it is a symlink */ |
| 4377 | if(is_directory && |
| 4378 | info.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT) { |
| 4379 | find_data_handle = FindFirstFileW(lpFileName, &find_data); |
| 4380 | |
| 4381 | if(find_data_handle != INVALID_HANDLE_VALUE) { |
| 4382 | is_link = find_data.dwReserved0 == IO_REPARSE_TAG_SYMLINK; |
| 4383 | FindClose(find_data_handle); |
| 4384 | } |
| 4385 | } |
| 4386 | } |
| 4387 | |
| 4388 | if (is_directory && is_link) |
| 4389 | return RemoveDirectoryW(lpFileName); |
| 4390 | |
| 4391 | return DeleteFileW(lpFileName); |
| 4392 | } |
| 4393 | #endif /* MS_WINDOWS */ |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 4394 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 4395 | PyDoc_STRVAR(posix_unlink__doc__, |
Larry Hastings | b698d8e | 2012-06-23 16:55:07 -0700 | [diff] [blame] | 4396 | "unlink(path, *, dir_fd=None)\n\n\ |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4397 | Remove a file (same as remove()).\n\ |
| 4398 | \n\ |
| 4399 | If dir_fd is not None, it should be a file descriptor open to a directory,\n\ |
| 4400 | and path should be relative; path will then be relative to that directory.\n\ |
| 4401 | dir_fd may not be implemented on your platform.\n\ |
Larry Hastings | b698d8e | 2012-06-23 16:55:07 -0700 | [diff] [blame] | 4402 | If it is unavailable, using it will raise a NotImplementedError."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 4403 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 4404 | PyDoc_STRVAR(posix_remove__doc__, |
Larry Hastings | b698d8e | 2012-06-23 16:55:07 -0700 | [diff] [blame] | 4405 | "remove(path, *, dir_fd=None)\n\n\ |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4406 | Remove a file (same as unlink()).\n\ |
| 4407 | \n\ |
| 4408 | If dir_fd is not None, it should be a file descriptor open to a directory,\n\ |
| 4409 | and path should be relative; path will then be relative to that directory.\n\ |
| 4410 | dir_fd may not be implemented on your platform.\n\ |
Larry Hastings | b698d8e | 2012-06-23 16:55:07 -0700 | [diff] [blame] | 4411 | If it is unavailable, using it will raise a NotImplementedError."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 4412 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 4413 | static PyObject * |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4414 | posix_unlink(PyObject *self, PyObject *args, PyObject *kwargs) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 4415 | { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4416 | path_t path; |
| 4417 | int dir_fd = DEFAULT_DIR_FD; |
Larry Hastings | b698d8e | 2012-06-23 16:55:07 -0700 | [diff] [blame] | 4418 | static char *keywords[] = {"path", "dir_fd", NULL}; |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4419 | int result; |
| 4420 | PyObject *return_value = NULL; |
| 4421 | |
| 4422 | memset(&path, 0, sizeof(path)); |
Larry Hastings | b698d8e | 2012-06-23 16:55:07 -0700 | [diff] [blame] | 4423 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&|$O&:unlink", keywords, |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4424 | path_converter, &path, |
| 4425 | #ifdef HAVE_UNLINKAT |
Larry Hastings | b698d8e | 2012-06-23 16:55:07 -0700 | [diff] [blame] | 4426 | dir_fd_converter, &dir_fd |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 4427 | #else |
Larry Hastings | b698d8e | 2012-06-23 16:55:07 -0700 | [diff] [blame] | 4428 | dir_fd_unavailable, &dir_fd |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 4429 | #endif |
Larry Hastings | b698d8e | 2012-06-23 16:55:07 -0700 | [diff] [blame] | 4430 | )) |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4431 | return NULL; |
| 4432 | |
| 4433 | Py_BEGIN_ALLOW_THREADS |
| 4434 | #ifdef MS_WINDOWS |
Larry Hastings | b698d8e | 2012-06-23 16:55:07 -0700 | [diff] [blame] | 4435 | if (path.wide) |
| 4436 | result = Py_DeleteFileW(path.wide); |
| 4437 | else |
| 4438 | result = DeleteFileA(path.narrow); |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4439 | result = !result; /* Windows, success=1, UNIX, success=0 */ |
| 4440 | #else |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4441 | #ifdef HAVE_UNLINKAT |
| 4442 | if (dir_fd != DEFAULT_DIR_FD) |
Larry Hastings | b698d8e | 2012-06-23 16:55:07 -0700 | [diff] [blame] | 4443 | result = unlinkat(dir_fd, path.narrow, 0); |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4444 | else |
| 4445 | #endif /* HAVE_UNLINKAT */ |
| 4446 | result = unlink(path.narrow); |
| 4447 | #endif |
| 4448 | Py_END_ALLOW_THREADS |
| 4449 | |
| 4450 | if (result) { |
| 4451 | return_value = path_error("unlink", &path); |
| 4452 | goto exit; |
| 4453 | } |
| 4454 | |
| 4455 | return_value = Py_None; |
| 4456 | Py_INCREF(Py_None); |
| 4457 | |
| 4458 | exit: |
| 4459 | path_cleanup(&path); |
| 4460 | return return_value; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 4461 | } |
| 4462 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 4463 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 4464 | PyDoc_STRVAR(posix_uname__doc__, |
Larry Hastings | 605a62d | 2012-06-24 04:33:36 -0700 | [diff] [blame] | 4465 | "uname() -> uname_result\n\n\ |
| 4466 | Return an object identifying the current operating system.\n\ |
| 4467 | The object behaves like a named tuple with the following fields:\n\ |
| 4468 | (sysname, nodename, release, version, machine)"); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 4469 | |
Larry Hastings | 605a62d | 2012-06-24 04:33:36 -0700 | [diff] [blame] | 4470 | static PyStructSequence_Field uname_result_fields[] = { |
| 4471 | {"sysname", "operating system name"}, |
| 4472 | {"nodename", "name of machine on network (implementation-defined)"}, |
| 4473 | {"release", "operating system release"}, |
| 4474 | {"version", "operating system version"}, |
| 4475 | {"machine", "hardware identifier"}, |
| 4476 | {NULL} |
| 4477 | }; |
| 4478 | |
| 4479 | PyDoc_STRVAR(uname_result__doc__, |
| 4480 | "uname_result: Result from os.uname().\n\n\ |
| 4481 | This object may be accessed either as a tuple of\n\ |
| 4482 | (sysname, nodename, release, version, machine),\n\ |
| 4483 | or via the attributes sysname, nodename, release, version, and machine.\n\ |
| 4484 | \n\ |
| 4485 | See os.uname for more information."); |
| 4486 | |
| 4487 | static PyStructSequence_Desc uname_result_desc = { |
| 4488 | "uname_result", /* name */ |
| 4489 | uname_result__doc__, /* doc */ |
| 4490 | uname_result_fields, |
| 4491 | 5 |
| 4492 | }; |
| 4493 | |
| 4494 | static PyTypeObject UnameResultType; |
| 4495 | |
| 4496 | |
| 4497 | #ifdef HAVE_UNAME |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 4498 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 4499 | posix_uname(PyObject *self, PyObject *noargs) |
Guido van Rossum | c39de5f | 1992-02-05 11:15:54 +0000 | [diff] [blame] | 4500 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 4501 | struct utsname u; |
| 4502 | int res; |
Larry Hastings | 605a62d | 2012-06-24 04:33:36 -0700 | [diff] [blame] | 4503 | PyObject *value; |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 4504 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 4505 | Py_BEGIN_ALLOW_THREADS |
| 4506 | res = uname(&u); |
| 4507 | Py_END_ALLOW_THREADS |
| 4508 | if (res < 0) |
| 4509 | return posix_error(); |
Larry Hastings | 605a62d | 2012-06-24 04:33:36 -0700 | [diff] [blame] | 4510 | |
| 4511 | value = PyStructSequence_New(&UnameResultType); |
| 4512 | if (value == NULL) |
| 4513 | return NULL; |
| 4514 | |
| 4515 | #define SET(i, field) \ |
| 4516 | { \ |
Victor Stinner | a534fc4 | 2013-06-03 22:07:27 +0200 | [diff] [blame] | 4517 | PyObject *o = PyUnicode_DecodeFSDefault(field); \ |
Larry Hastings | 605a62d | 2012-06-24 04:33:36 -0700 | [diff] [blame] | 4518 | if (!o) { \ |
| 4519 | Py_DECREF(value); \ |
| 4520 | return NULL; \ |
| 4521 | } \ |
| 4522 | PyStructSequence_SET_ITEM(value, i, o); \ |
| 4523 | } \ |
| 4524 | |
| 4525 | SET(0, u.sysname); |
| 4526 | SET(1, u.nodename); |
| 4527 | SET(2, u.release); |
| 4528 | SET(3, u.version); |
| 4529 | SET(4, u.machine); |
| 4530 | |
| 4531 | #undef SET |
| 4532 | |
| 4533 | return value; |
Guido van Rossum | c39de5f | 1992-02-05 11:15:54 +0000 | [diff] [blame] | 4534 | } |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 4535 | #endif /* HAVE_UNAME */ |
Guido van Rossum | 1ff6cb4 | 1991-04-08 20:59:13 +0000 | [diff] [blame] | 4536 | |
Larry Hastings | 9e3e70b | 2011-09-08 19:29:07 -0700 | [diff] [blame] | 4537 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4538 | PyDoc_STRVAR(posix_utime__doc__, |
| 4539 | "utime(path, times=None, *, ns=None, dir_fd=None, follow_symlinks=True)\n\ |
| 4540 | Set the access and modified time of path.\n\ |
| 4541 | \n\ |
| 4542 | path may always be specified as a string.\n\ |
| 4543 | On some platforms, path may also be specified as an open file descriptor.\n\ |
| 4544 | If this functionality is unavailable, using it raises an exception.\n\ |
| 4545 | \n\ |
| 4546 | If times is not None, it must be a tuple (atime, mtime);\n\ |
| 4547 | atime and mtime should be expressed as float seconds since the epoch.\n\ |
| 4548 | If ns is not None, it must be a tuple (atime_ns, mtime_ns);\n\ |
| 4549 | atime_ns and mtime_ns should be expressed as integer nanoseconds\n\ |
| 4550 | since the epoch.\n\ |
| 4551 | If both times and ns are None, utime uses the current time.\n\ |
| 4552 | Specifying tuples for both times and ns is an error.\n\ |
| 4553 | \n\ |
| 4554 | If dir_fd is not None, it should be a file descriptor open to a directory,\n\ |
| 4555 | and path should be relative; path will then be relative to that directory.\n\ |
| 4556 | If follow_symlinks is False, and the last element of the path is a symbolic\n\ |
| 4557 | link, utime will modify the symbolic link itself instead of the file the\n\ |
| 4558 | link points to.\n\ |
| 4559 | It is an error to use dir_fd or follow_symlinks when specifying path\n\ |
| 4560 | as an open file descriptor.\n\ |
| 4561 | dir_fd and follow_symlinks may not be available on your platform.\n\ |
| 4562 | If they are unavailable, using them will raise a NotImplementedError."); |
| 4563 | |
| 4564 | typedef struct { |
| 4565 | int now; |
| 4566 | time_t atime_s; |
| 4567 | long atime_ns; |
| 4568 | time_t mtime_s; |
| 4569 | long mtime_ns; |
| 4570 | } utime_t; |
| 4571 | |
| 4572 | /* |
| 4573 | * these macros assume that "utime" is a pointer to a utime_t |
| 4574 | * they also intentionally leak the declaration of a pointer named "time" |
| 4575 | */ |
| 4576 | #define UTIME_TO_TIMESPEC \ |
| 4577 | struct timespec ts[2]; \ |
| 4578 | struct timespec *time; \ |
| 4579 | if (utime->now) \ |
| 4580 | time = NULL; \ |
| 4581 | else { \ |
| 4582 | ts[0].tv_sec = utime->atime_s; \ |
| 4583 | ts[0].tv_nsec = utime->atime_ns; \ |
| 4584 | ts[1].tv_sec = utime->mtime_s; \ |
| 4585 | ts[1].tv_nsec = utime->mtime_ns; \ |
| 4586 | time = ts; \ |
| 4587 | } \ |
| 4588 | |
| 4589 | #define UTIME_TO_TIMEVAL \ |
| 4590 | struct timeval tv[2]; \ |
| 4591 | struct timeval *time; \ |
| 4592 | if (utime->now) \ |
| 4593 | time = NULL; \ |
| 4594 | else { \ |
| 4595 | tv[0].tv_sec = utime->atime_s; \ |
| 4596 | tv[0].tv_usec = utime->atime_ns / 1000; \ |
| 4597 | tv[1].tv_sec = utime->mtime_s; \ |
| 4598 | tv[1].tv_usec = utime->mtime_ns / 1000; \ |
| 4599 | time = tv; \ |
| 4600 | } \ |
| 4601 | |
| 4602 | #define UTIME_TO_UTIMBUF \ |
| 4603 | struct utimbuf u[2]; \ |
| 4604 | struct utimbuf *time; \ |
| 4605 | if (utime->now) \ |
| 4606 | time = NULL; \ |
| 4607 | else { \ |
| 4608 | u.actime = utime->atime_s; \ |
| 4609 | u.modtime = utime->mtime_s; \ |
| 4610 | time = u; \ |
| 4611 | } |
| 4612 | |
| 4613 | #define UTIME_TO_TIME_T \ |
| 4614 | time_t timet[2]; \ |
| 4615 | struct timet time; \ |
| 4616 | if (utime->now) \ |
| 4617 | time = NULL; \ |
| 4618 | else { \ |
| 4619 | timet[0] = utime->atime_s; \ |
| 4620 | timet[1] = utime->mtime_s; \ |
| 4621 | time = &timet; \ |
| 4622 | } \ |
| 4623 | |
| 4624 | |
| 4625 | #define UTIME_HAVE_DIR_FD (defined(HAVE_FUTIMESAT) || defined(HAVE_UTIMENSAT)) |
| 4626 | |
| 4627 | #if UTIME_HAVE_DIR_FD |
| 4628 | |
| 4629 | static int |
| 4630 | utime_dir_fd(utime_t *utime, int dir_fd, char *path, int follow_symlinks) |
| 4631 | { |
| 4632 | #ifdef HAVE_UTIMENSAT |
| 4633 | int flags = follow_symlinks ? 0 : AT_SYMLINK_NOFOLLOW; |
| 4634 | UTIME_TO_TIMESPEC; |
| 4635 | return utimensat(dir_fd, path, time, flags); |
| 4636 | #elif defined(HAVE_FUTIMESAT) |
| 4637 | UTIME_TO_TIMEVAL; |
| 4638 | /* |
| 4639 | * follow_symlinks will never be false here; |
| 4640 | * we only allow !follow_symlinks and dir_fd together |
| 4641 | * if we have utimensat() |
| 4642 | */ |
| 4643 | assert(follow_symlinks); |
| 4644 | return futimesat(dir_fd, path, time); |
| 4645 | #endif |
| 4646 | } |
| 4647 | |
| 4648 | #endif |
| 4649 | |
| 4650 | #define UTIME_HAVE_FD (defined(HAVE_FUTIMES) || defined(HAVE_FUTIMENS)) |
| 4651 | |
| 4652 | #if UTIME_HAVE_FD |
| 4653 | |
| 4654 | static int |
| 4655 | utime_fd(utime_t *utime, int fd) |
| 4656 | { |
| 4657 | #ifdef HAVE_FUTIMENS |
| 4658 | UTIME_TO_TIMESPEC; |
| 4659 | return futimens(fd, time); |
| 4660 | #else |
| 4661 | UTIME_TO_TIMEVAL; |
| 4662 | return futimes(fd, time); |
| 4663 | #endif |
| 4664 | } |
| 4665 | |
| 4666 | #endif |
| 4667 | |
| 4668 | |
| 4669 | #define UTIME_HAVE_NOFOLLOW_SYMLINKS \ |
| 4670 | (defined(HAVE_UTIMENSAT) || defined(HAVE_LUTIMES)) |
| 4671 | |
| 4672 | #if UTIME_HAVE_NOFOLLOW_SYMLINKS |
| 4673 | |
| 4674 | static int |
| 4675 | utime_nofollow_symlinks(utime_t *utime, char *path) |
| 4676 | { |
| 4677 | #ifdef HAVE_UTIMENSAT |
| 4678 | UTIME_TO_TIMESPEC; |
| 4679 | return utimensat(DEFAULT_DIR_FD, path, time, AT_SYMLINK_NOFOLLOW); |
| 4680 | #else |
| 4681 | UTIME_TO_TIMEVAL; |
| 4682 | return lutimes(path, time); |
| 4683 | #endif |
| 4684 | } |
| 4685 | |
| 4686 | #endif |
| 4687 | |
| 4688 | #ifndef MS_WINDOWS |
| 4689 | |
| 4690 | static int |
| 4691 | utime_default(utime_t *utime, char *path) |
| 4692 | { |
| 4693 | #ifdef HAVE_UTIMENSAT |
| 4694 | UTIME_TO_TIMESPEC; |
| 4695 | return utimensat(DEFAULT_DIR_FD, path, time, 0); |
| 4696 | #elif defined(HAVE_UTIMES) |
| 4697 | UTIME_TO_TIMEVAL; |
| 4698 | return utimes(path, time); |
| 4699 | #elif defined(HAVE_UTIME_H) |
| 4700 | UTIME_TO_UTIMBUF; |
| 4701 | return utime(path, time); |
| 4702 | #else |
| 4703 | UTIME_TO_TIME_T; |
| 4704 | return utime(path, time); |
| 4705 | #endif |
| 4706 | } |
| 4707 | |
| 4708 | #endif |
| 4709 | |
Larry Hastings | 76ad59b | 2012-05-03 00:30:07 -0700 | [diff] [blame] | 4710 | static int |
| 4711 | split_py_long_to_s_and_ns(PyObject *py_long, time_t *s, long *ns) |
| 4712 | { |
| 4713 | int result = 0; |
Benjamin Peterson | fbd85a0 | 2012-05-04 11:06:09 -0400 | [diff] [blame] | 4714 | PyObject *divmod; |
Larry Hastings | 76ad59b | 2012-05-03 00:30:07 -0700 | [diff] [blame] | 4715 | divmod = PyNumber_Divmod(py_long, billion); |
| 4716 | if (!divmod) |
| 4717 | goto exit; |
| 4718 | *s = _PyLong_AsTime_t(PyTuple_GET_ITEM(divmod, 0)); |
| 4719 | if ((*s == -1) && PyErr_Occurred()) |
| 4720 | goto exit; |
| 4721 | *ns = PyLong_AsLong(PyTuple_GET_ITEM(divmod, 1)); |
Benjamin Peterson | 35a8f0d | 2012-05-04 01:10:59 -0400 | [diff] [blame] | 4722 | if ((*ns == -1) && PyErr_Occurred()) |
Larry Hastings | 76ad59b | 2012-05-03 00:30:07 -0700 | [diff] [blame] | 4723 | goto exit; |
| 4724 | |
| 4725 | result = 1; |
| 4726 | exit: |
| 4727 | Py_XDECREF(divmod); |
| 4728 | return result; |
| 4729 | } |
| 4730 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4731 | static PyObject * |
| 4732 | posix_utime(PyObject *self, PyObject *args, PyObject *kwargs) |
Larry Hastings | 76ad59b | 2012-05-03 00:30:07 -0700 | [diff] [blame] | 4733 | { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4734 | path_t path; |
Larry Hastings | 76ad59b | 2012-05-03 00:30:07 -0700 | [diff] [blame] | 4735 | PyObject *times = NULL; |
| 4736 | PyObject *ns = NULL; |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4737 | int dir_fd = DEFAULT_DIR_FD; |
| 4738 | int follow_symlinks = 1; |
| 4739 | char *keywords[] = {"path", "times", "ns", "dir_fd", |
| 4740 | "follow_symlinks", NULL}; |
Larry Hastings | 76ad59b | 2012-05-03 00:30:07 -0700 | [diff] [blame] | 4741 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4742 | utime_t utime; |
Larry Hastings | 76ad59b | 2012-05-03 00:30:07 -0700 | [diff] [blame] | 4743 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4744 | #ifdef MS_WINDOWS |
| 4745 | HANDLE hFile; |
| 4746 | FILETIME atime, mtime; |
| 4747 | #else |
| 4748 | int result; |
| 4749 | #endif |
Larry Hastings | 76ad59b | 2012-05-03 00:30:07 -0700 | [diff] [blame] | 4750 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4751 | PyObject *return_value = NULL; |
Larry Hastings | 76ad59b | 2012-05-03 00:30:07 -0700 | [diff] [blame] | 4752 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4753 | memset(&path, 0, sizeof(path)); |
| 4754 | #if UTIME_HAVE_FD |
| 4755 | path.allow_fd = 1; |
| 4756 | #endif |
| 4757 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, |
| 4758 | "O&|O$OO&p:utime", keywords, |
| 4759 | path_converter, &path, |
| 4760 | ×, &ns, |
| 4761 | #if UTIME_HAVE_DIR_FD |
| 4762 | dir_fd_converter, &dir_fd, |
| 4763 | #else |
| 4764 | dir_fd_unavailable, &dir_fd, |
| 4765 | #endif |
| 4766 | &follow_symlinks |
| 4767 | )) |
| 4768 | return NULL; |
Larry Hastings | 76ad59b | 2012-05-03 00:30:07 -0700 | [diff] [blame] | 4769 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4770 | if (times && (times != Py_None) && ns) { |
| 4771 | PyErr_SetString(PyExc_ValueError, |
| 4772 | "utime: you may specify either 'times'" |
| 4773 | " or 'ns' but not both"); |
| 4774 | goto exit; |
Larry Hastings | 76ad59b | 2012-05-03 00:30:07 -0700 | [diff] [blame] | 4775 | } |
| 4776 | |
| 4777 | if (times && (times != Py_None)) { |
Antoine Pitrou | cf8a1e5 | 2013-04-17 22:06:44 +0200 | [diff] [blame] | 4778 | time_t a_sec, m_sec; |
| 4779 | long a_nsec, m_nsec; |
Larry Hastings | 76ad59b | 2012-05-03 00:30:07 -0700 | [diff] [blame] | 4780 | if (!PyTuple_CheckExact(times) || (PyTuple_Size(times) != 2)) { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4781 | PyErr_SetString(PyExc_TypeError, |
| 4782 | "utime: 'times' must be either" |
| 4783 | " a tuple of two ints or None"); |
| 4784 | goto exit; |
Larry Hastings | 76ad59b | 2012-05-03 00:30:07 -0700 | [diff] [blame] | 4785 | } |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4786 | utime.now = 0; |
Benjamin Peterson | b399ab2 | 2012-05-04 01:31:13 -0400 | [diff] [blame] | 4787 | if (_PyTime_ObjectToTimespec(PyTuple_GET_ITEM(times, 0), |
Antoine Pitrou | cf8a1e5 | 2013-04-17 22:06:44 +0200 | [diff] [blame] | 4788 | &a_sec, &a_nsec) == -1 || |
Benjamin Peterson | b399ab2 | 2012-05-04 01:31:13 -0400 | [diff] [blame] | 4789 | _PyTime_ObjectToTimespec(PyTuple_GET_ITEM(times, 1), |
Antoine Pitrou | cf8a1e5 | 2013-04-17 22:06:44 +0200 | [diff] [blame] | 4790 | &m_sec, &m_nsec) == -1) { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4791 | goto exit; |
Larry Hastings | b333640 | 2012-05-04 02:31:57 -0700 | [diff] [blame] | 4792 | } |
Antoine Pitrou | cf8a1e5 | 2013-04-17 22:06:44 +0200 | [diff] [blame] | 4793 | utime.atime_s = a_sec; |
| 4794 | utime.atime_ns = a_nsec; |
| 4795 | utime.mtime_s = m_sec; |
| 4796 | utime.mtime_ns = m_nsec; |
Larry Hastings | 76ad59b | 2012-05-03 00:30:07 -0700 | [diff] [blame] | 4797 | } |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4798 | else if (ns) { |
Larry Hastings | 76ad59b | 2012-05-03 00:30:07 -0700 | [diff] [blame] | 4799 | if (!PyTuple_CheckExact(ns) || (PyTuple_Size(ns) != 2)) { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4800 | PyErr_SetString(PyExc_TypeError, |
| 4801 | "utime: 'ns' must be a tuple of two ints"); |
| 4802 | goto exit; |
Larry Hastings | 76ad59b | 2012-05-03 00:30:07 -0700 | [diff] [blame] | 4803 | } |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4804 | utime.now = 0; |
Benjamin Peterson | b399ab2 | 2012-05-04 01:31:13 -0400 | [diff] [blame] | 4805 | if (!split_py_long_to_s_and_ns(PyTuple_GET_ITEM(ns, 0), |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4806 | &utime.atime_s, &utime.atime_ns) || |
Benjamin Peterson | b399ab2 | 2012-05-04 01:31:13 -0400 | [diff] [blame] | 4807 | !split_py_long_to_s_and_ns(PyTuple_GET_ITEM(ns, 1), |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4808 | &utime.mtime_s, &utime.mtime_ns)) { |
| 4809 | goto exit; |
Larry Hastings | b333640 | 2012-05-04 02:31:57 -0700 | [diff] [blame] | 4810 | } |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4811 | } |
| 4812 | else { |
| 4813 | /* times and ns are both None/unspecified. use "now". */ |
| 4814 | utime.now = 1; |
Larry Hastings | 76ad59b | 2012-05-03 00:30:07 -0700 | [diff] [blame] | 4815 | } |
| 4816 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4817 | #if !UTIME_HAVE_NOFOLLOW_SYMLINKS |
| 4818 | if (follow_symlinks_specified("utime", follow_symlinks)) |
| 4819 | goto exit; |
| 4820 | #endif |
Benjamin Peterson | b399ab2 | 2012-05-04 01:31:13 -0400 | [diff] [blame] | 4821 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4822 | if (path_and_dir_fd_invalid("utime", &path, dir_fd) || |
| 4823 | dir_fd_and_fd_invalid("utime", dir_fd, path.fd) || |
| 4824 | fd_and_follow_symlinks_invalid("utime", path.fd, follow_symlinks)) |
| 4825 | goto exit; |
Larry Hastings | 76ad59b | 2012-05-03 00:30:07 -0700 | [diff] [blame] | 4826 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4827 | #if !defined(HAVE_UTIMENSAT) |
| 4828 | if ((dir_fd != DEFAULT_DIR_FD) && (!follow_symlinks)) { |
Georg Brandl | 969288e | 2012-06-26 09:25:44 +0200 | [diff] [blame] | 4829 | PyErr_SetString(PyExc_ValueError, |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4830 | "utime: cannot use dir_fd and follow_symlinks " |
| 4831 | "together on this platform"); |
| 4832 | goto exit; |
| 4833 | } |
| 4834 | #endif |
Larry Hastings | 76ad59b | 2012-05-03 00:30:07 -0700 | [diff] [blame] | 4835 | |
Hirokazu Yamamoto | 8223c24 | 2009-05-17 04:21:53 +0000 | [diff] [blame] | 4836 | #ifdef MS_WINDOWS |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4837 | Py_BEGIN_ALLOW_THREADS |
| 4838 | if (path.wide) |
| 4839 | hFile = CreateFileW(path.wide, FILE_WRITE_ATTRIBUTES, 0, |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 4840 | NULL, OPEN_EXISTING, |
| 4841 | FILE_FLAG_BACKUP_SEMANTICS, NULL); |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4842 | else |
| 4843 | hFile = CreateFileA(path.narrow, FILE_WRITE_ATTRIBUTES, 0, |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 4844 | NULL, OPEN_EXISTING, |
| 4845 | FILE_FLAG_BACKUP_SEMANTICS, NULL); |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4846 | Py_END_ALLOW_THREADS |
| 4847 | if (hFile == INVALID_HANDLE_VALUE) { |
| 4848 | win32_error_object("utime", path.object); |
| 4849 | goto exit; |
Larry Hastings | b333640 | 2012-05-04 02:31:57 -0700 | [diff] [blame] | 4850 | } |
| 4851 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4852 | if (utime.now) { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 4853 | SYSTEMTIME now; |
| 4854 | GetSystemTime(&now); |
| 4855 | if (!SystemTimeToFileTime(&now, &mtime) || |
| 4856 | !SystemTimeToFileTime(&now, &atime)) { |
| 4857 | win32_error("utime", NULL); |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4858 | goto exit; |
Stefan Krah | 0e803b3 | 2010-11-26 16:16:47 +0000 | [diff] [blame] | 4859 | } |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 4860 | } |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 4861 | else { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4862 | time_t_to_FILE_TIME(utime.atime_s, utime.atime_ns, &atime); |
| 4863 | time_t_to_FILE_TIME(utime.mtime_s, utime.mtime_ns, &mtime); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 4864 | } |
| 4865 | if (!SetFileTime(hFile, NULL, &atime, &mtime)) { |
| 4866 | /* Avoid putting the file name into the error here, |
| 4867 | as that may confuse the user into believing that |
| 4868 | something is wrong with the file, when it also |
| 4869 | could be the time stamp that gives a problem. */ |
| 4870 | win32_error("utime", NULL); |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4871 | goto exit; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 4872 | } |
Hirokazu Yamamoto | 8223c24 | 2009-05-17 04:21:53 +0000 | [diff] [blame] | 4873 | #else /* MS_WINDOWS */ |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4874 | Py_BEGIN_ALLOW_THREADS |
Guido van Rossum | 1ff6cb4 | 1991-04-08 20:59:13 +0000 | [diff] [blame] | 4875 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4876 | #if UTIME_HAVE_NOFOLLOW_SYMLINKS |
| 4877 | if ((!follow_symlinks) && (dir_fd == DEFAULT_DIR_FD)) |
| 4878 | result = utime_nofollow_symlinks(&utime, path.narrow); |
| 4879 | else |
Larry Hastings | 9e3e70b | 2011-09-08 19:29:07 -0700 | [diff] [blame] | 4880 | #endif |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4881 | |
| 4882 | #if UTIME_HAVE_DIR_FD |
| 4883 | if ((dir_fd != DEFAULT_DIR_FD) || (!follow_symlinks)) |
| 4884 | result = utime_dir_fd(&utime, dir_fd, path.narrow, follow_symlinks); |
| 4885 | else |
| 4886 | #endif |
| 4887 | |
| 4888 | #if UTIME_HAVE_FD |
| 4889 | if (path.fd != -1) |
| 4890 | result = utime_fd(&utime, path.fd); |
| 4891 | else |
| 4892 | #endif |
| 4893 | |
| 4894 | result = utime_default(&utime, path.narrow); |
| 4895 | |
| 4896 | Py_END_ALLOW_THREADS |
| 4897 | |
| 4898 | if (result < 0) { |
| 4899 | /* see previous comment about not putting filename in error here */ |
| 4900 | return_value = posix_error(); |
| 4901 | goto exit; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 4902 | } |
Larry Hastings | 76ad59b | 2012-05-03 00:30:07 -0700 | [diff] [blame] | 4903 | |
Hirokazu Yamamoto | 8223c24 | 2009-05-17 04:21:53 +0000 | [diff] [blame] | 4904 | #endif /* MS_WINDOWS */ |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 4905 | |
| 4906 | Py_INCREF(Py_None); |
| 4907 | return_value = Py_None; |
| 4908 | |
| 4909 | exit: |
| 4910 | path_cleanup(&path); |
| 4911 | #ifdef MS_WINDOWS |
| 4912 | if (hFile != INVALID_HANDLE_VALUE) |
| 4913 | CloseHandle(hFile); |
| 4914 | #endif |
| 4915 | return return_value; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 4916 | } |
| 4917 | |
Guido van Rossum | 3b06619 | 1991-06-04 19:40:25 +0000 | [diff] [blame] | 4918 | /* Process operations */ |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 4919 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 4920 | PyDoc_STRVAR(posix__exit__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 4921 | "_exit(status)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 4922 | Exit to the system with specified status, without normal exit processing."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 4923 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 4924 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 4925 | posix__exit(PyObject *self, PyObject *args) |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 4926 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 4927 | int sts; |
| 4928 | if (!PyArg_ParseTuple(args, "i:_exit", &sts)) |
| 4929 | return NULL; |
| 4930 | _exit(sts); |
| 4931 | return NULL; /* Make gcc -Wall happy */ |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 4932 | } |
| 4933 | |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 4934 | #if defined(HAVE_EXECV) || defined(HAVE_SPAWNV) |
| 4935 | static void |
Martin v. Löwis | 725507b | 2006-03-07 12:08:51 +0000 | [diff] [blame] | 4936 | free_string_array(char **array, Py_ssize_t count) |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 4937 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 4938 | Py_ssize_t i; |
| 4939 | for (i = 0; i < count; i++) |
| 4940 | PyMem_Free(array[i]); |
| 4941 | PyMem_DEL(array); |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 4942 | } |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 4943 | |
Antoine Pitrou | 69f7114 | 2009-05-24 21:25:49 +0000 | [diff] [blame] | 4944 | static |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 4945 | int fsconvert_strdup(PyObject *o, char**out) |
| 4946 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 4947 | PyObject *bytes; |
| 4948 | Py_ssize_t size; |
| 4949 | if (!PyUnicode_FSConverter(o, &bytes)) |
| 4950 | return 0; |
| 4951 | size = PyBytes_GET_SIZE(bytes); |
| 4952 | *out = PyMem_Malloc(size+1); |
| 4953 | if (!*out) |
| 4954 | return 0; |
| 4955 | memcpy(*out, PyBytes_AsString(bytes), size+1); |
| 4956 | Py_DECREF(bytes); |
| 4957 | return 1; |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 4958 | } |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 4959 | #endif |
| 4960 | |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 4961 | #if defined(HAVE_EXECV) || defined (HAVE_FEXECVE) |
Victor Stinner | 13bb71c | 2010-04-23 21:41:56 +0000 | [diff] [blame] | 4962 | static char** |
| 4963 | parse_envlist(PyObject* env, Py_ssize_t *envc_ptr) |
| 4964 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 4965 | char **envlist; |
| 4966 | Py_ssize_t i, pos, envc; |
| 4967 | PyObject *keys=NULL, *vals=NULL; |
| 4968 | PyObject *key, *val, *key2, *val2; |
| 4969 | char *p, *k, *v; |
| 4970 | size_t len; |
Victor Stinner | 13bb71c | 2010-04-23 21:41:56 +0000 | [diff] [blame] | 4971 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 4972 | i = PyMapping_Size(env); |
| 4973 | if (i < 0) |
| 4974 | return NULL; |
| 4975 | envlist = PyMem_NEW(char *, i + 1); |
| 4976 | if (envlist == NULL) { |
| 4977 | PyErr_NoMemory(); |
| 4978 | return NULL; |
| 4979 | } |
| 4980 | envc = 0; |
| 4981 | keys = PyMapping_Keys(env); |
| 4982 | vals = PyMapping_Values(env); |
| 4983 | if (!keys || !vals) |
| 4984 | goto error; |
| 4985 | if (!PyList_Check(keys) || !PyList_Check(vals)) { |
| 4986 | PyErr_Format(PyExc_TypeError, |
| 4987 | "env.keys() or env.values() is not a list"); |
| 4988 | goto error; |
| 4989 | } |
Victor Stinner | 13bb71c | 2010-04-23 21:41:56 +0000 | [diff] [blame] | 4990 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 4991 | for (pos = 0; pos < i; pos++) { |
| 4992 | key = PyList_GetItem(keys, pos); |
| 4993 | val = PyList_GetItem(vals, pos); |
| 4994 | if (!key || !val) |
| 4995 | goto error; |
Victor Stinner | 13bb71c | 2010-04-23 21:41:56 +0000 | [diff] [blame] | 4996 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 4997 | if (PyUnicode_FSConverter(key, &key2) == 0) |
| 4998 | goto error; |
| 4999 | if (PyUnicode_FSConverter(val, &val2) == 0) { |
| 5000 | Py_DECREF(key2); |
| 5001 | goto error; |
| 5002 | } |
Victor Stinner | 13bb71c | 2010-04-23 21:41:56 +0000 | [diff] [blame] | 5003 | |
| 5004 | #if defined(PYOS_OS2) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5005 | /* Omit Pseudo-Env Vars that Would Confuse Programs if Passed On */ |
| 5006 | if (stricmp(k, "BEGINLIBPATH") != 0 && stricmp(k, "ENDLIBPATH") != 0) { |
Victor Stinner | 13bb71c | 2010-04-23 21:41:56 +0000 | [diff] [blame] | 5007 | #endif |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5008 | k = PyBytes_AsString(key2); |
| 5009 | v = PyBytes_AsString(val2); |
| 5010 | len = PyBytes_GET_SIZE(key2) + PyBytes_GET_SIZE(val2) + 2; |
Victor Stinner | 13bb71c | 2010-04-23 21:41:56 +0000 | [diff] [blame] | 5011 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5012 | p = PyMem_NEW(char, len); |
| 5013 | if (p == NULL) { |
| 5014 | PyErr_NoMemory(); |
| 5015 | Py_DECREF(key2); |
| 5016 | Py_DECREF(val2); |
| 5017 | goto error; |
| 5018 | } |
| 5019 | PyOS_snprintf(p, len, "%s=%s", k, v); |
| 5020 | envlist[envc++] = p; |
| 5021 | Py_DECREF(key2); |
| 5022 | Py_DECREF(val2); |
Victor Stinner | 13bb71c | 2010-04-23 21:41:56 +0000 | [diff] [blame] | 5023 | #if defined(PYOS_OS2) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5024 | } |
Victor Stinner | 13bb71c | 2010-04-23 21:41:56 +0000 | [diff] [blame] | 5025 | #endif |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5026 | } |
| 5027 | Py_DECREF(vals); |
| 5028 | Py_DECREF(keys); |
Victor Stinner | 13bb71c | 2010-04-23 21:41:56 +0000 | [diff] [blame] | 5029 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5030 | envlist[envc] = 0; |
| 5031 | *envc_ptr = envc; |
| 5032 | return envlist; |
Victor Stinner | 13bb71c | 2010-04-23 21:41:56 +0000 | [diff] [blame] | 5033 | |
| 5034 | error: |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5035 | Py_XDECREF(keys); |
| 5036 | Py_XDECREF(vals); |
| 5037 | while (--envc >= 0) |
| 5038 | PyMem_DEL(envlist[envc]); |
| 5039 | PyMem_DEL(envlist); |
| 5040 | return NULL; |
Victor Stinner | 13bb71c | 2010-04-23 21:41:56 +0000 | [diff] [blame] | 5041 | } |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 5042 | |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 5043 | static char** |
| 5044 | parse_arglist(PyObject* argv, Py_ssize_t *argc) |
| 5045 | { |
| 5046 | int i; |
| 5047 | char **argvlist = PyMem_NEW(char *, *argc+1); |
| 5048 | if (argvlist == NULL) { |
| 5049 | PyErr_NoMemory(); |
| 5050 | return NULL; |
| 5051 | } |
| 5052 | for (i = 0; i < *argc; i++) { |
Ross Lagerwall | 9ad63e0 | 2011-03-19 09:11:14 +0200 | [diff] [blame] | 5053 | PyObject* item = PySequence_ITEM(argv, i); |
| 5054 | if (item == NULL) |
| 5055 | goto fail; |
| 5056 | if (!fsconvert_strdup(item, &argvlist[i])) { |
| 5057 | Py_DECREF(item); |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 5058 | goto fail; |
| 5059 | } |
Ross Lagerwall | 9ad63e0 | 2011-03-19 09:11:14 +0200 | [diff] [blame] | 5060 | Py_DECREF(item); |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 5061 | } |
| 5062 | argvlist[*argc] = NULL; |
| 5063 | return argvlist; |
| 5064 | fail: |
Ross Lagerwall | 9ad63e0 | 2011-03-19 09:11:14 +0200 | [diff] [blame] | 5065 | *argc = i; |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 5066 | free_string_array(argvlist, *argc); |
| 5067 | return NULL; |
| 5068 | } |
| 5069 | #endif |
| 5070 | |
| 5071 | #ifdef HAVE_EXECV |
| 5072 | PyDoc_STRVAR(posix_execv__doc__, |
| 5073 | "execv(path, args)\n\n\ |
| 5074 | Execute an executable path with arguments, replacing current process.\n\ |
| 5075 | \n\ |
| 5076 | path: path of executable file\n\ |
| 5077 | args: tuple or list of strings"); |
| 5078 | |
| 5079 | static PyObject * |
| 5080 | posix_execv(PyObject *self, PyObject *args) |
| 5081 | { |
| 5082 | PyObject *opath; |
| 5083 | char *path; |
| 5084 | PyObject *argv; |
| 5085 | char **argvlist; |
| 5086 | Py_ssize_t argc; |
| 5087 | |
| 5088 | /* execv has two arguments: (path, argv), where |
| 5089 | argv is a list or tuple of strings. */ |
| 5090 | |
| 5091 | if (!PyArg_ParseTuple(args, "O&O:execv", |
| 5092 | PyUnicode_FSConverter, |
| 5093 | &opath, &argv)) |
| 5094 | return NULL; |
| 5095 | path = PyBytes_AsString(opath); |
| 5096 | if (!PyList_Check(argv) && !PyTuple_Check(argv)) { |
| 5097 | PyErr_SetString(PyExc_TypeError, |
| 5098 | "execv() arg 2 must be a tuple or list"); |
| 5099 | Py_DECREF(opath); |
| 5100 | return NULL; |
| 5101 | } |
| 5102 | argc = PySequence_Size(argv); |
| 5103 | if (argc < 1) { |
| 5104 | PyErr_SetString(PyExc_ValueError, "execv() arg 2 must not be empty"); |
| 5105 | Py_DECREF(opath); |
| 5106 | return NULL; |
| 5107 | } |
| 5108 | |
| 5109 | argvlist = parse_arglist(argv, &argc); |
| 5110 | if (argvlist == NULL) { |
| 5111 | Py_DECREF(opath); |
| 5112 | return NULL; |
| 5113 | } |
| 5114 | |
| 5115 | execv(path, argvlist); |
| 5116 | |
| 5117 | /* If we get here it's definitely an error */ |
| 5118 | |
| 5119 | free_string_array(argvlist, argc); |
| 5120 | Py_DECREF(opath); |
| 5121 | return posix_error(); |
| 5122 | } |
| 5123 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5124 | PyDoc_STRVAR(posix_execve__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 5125 | "execve(path, args, env)\n\n\ |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 5126 | Execute a path with arguments and environment, replacing current process.\n\ |
| 5127 | \n\ |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5128 | path: path of executable file\n\ |
| 5129 | args: tuple or list of arguments\n\ |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 5130 | env: dictionary of strings mapping to strings\n\ |
| 5131 | \n\ |
| 5132 | On some platforms, you may specify an open file descriptor for path;\n\ |
| 5133 | execve will execute the program the file descriptor is open to.\n\ |
| 5134 | If this functionality is unavailable, using it raises NotImplementedError."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 5135 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 5136 | static PyObject * |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 5137 | posix_execve(PyObject *self, PyObject *args, PyObject *kwargs) |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 5138 | { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 5139 | path_t path; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5140 | PyObject *argv, *env; |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 5141 | char **argvlist = NULL; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5142 | char **envlist; |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 5143 | Py_ssize_t argc, envc; |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 5144 | static char *keywords[] = {"path", "argv", "environment", NULL}; |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 5145 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5146 | /* execve has three arguments: (path, argv, env), where |
| 5147 | argv is a list or tuple of strings and env is a dictionary |
| 5148 | like posix.environ. */ |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 5149 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 5150 | memset(&path, 0, sizeof(path)); |
| 5151 | #ifdef HAVE_FEXECVE |
| 5152 | path.allow_fd = 1; |
| 5153 | #endif |
| 5154 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&OO:execve", keywords, |
| 5155 | path_converter, &path, |
| 5156 | &argv, &env |
| 5157 | )) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5158 | return NULL; |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 5159 | |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 5160 | if (!PyList_Check(argv) && !PyTuple_Check(argv)) { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5161 | PyErr_SetString(PyExc_TypeError, |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 5162 | "execve: argv must be a tuple or list"); |
| 5163 | goto fail; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5164 | } |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 5165 | argc = PySequence_Size(argv); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5166 | if (!PyMapping_Check(env)) { |
| 5167 | PyErr_SetString(PyExc_TypeError, |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 5168 | "execve: environment must be a mapping object"); |
| 5169 | goto fail; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5170 | } |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 5171 | |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 5172 | argvlist = parse_arglist(argv, &argc); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5173 | if (argvlist == NULL) { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 5174 | goto fail; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5175 | } |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 5176 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5177 | envlist = parse_envlist(env, &envc); |
| 5178 | if (envlist == NULL) |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 5179 | goto fail; |
| 5180 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 5181 | #ifdef HAVE_FEXECVE |
| 5182 | if (path.fd > -1) |
| 5183 | fexecve(path.fd, argvlist, envlist); |
| 5184 | else |
| 5185 | #endif |
| 5186 | execve(path.narrow, argvlist, envlist); |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 5187 | |
| 5188 | /* If we get here it's definitely an error */ |
| 5189 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 5190 | path_posix_error("execve", &path); |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 5191 | |
| 5192 | while (--envc >= 0) |
| 5193 | PyMem_DEL(envlist[envc]); |
| 5194 | PyMem_DEL(envlist); |
| 5195 | fail: |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 5196 | if (argvlist) |
| 5197 | free_string_array(argvlist, argc); |
| 5198 | path_cleanup(&path); |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 5199 | return NULL; |
| 5200 | } |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 5201 | #endif /* HAVE_EXECV */ |
| 5202 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 5203 | |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 5204 | #ifdef HAVE_SPAWNV |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5205 | PyDoc_STRVAR(posix_spawnv__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 5206 | "spawnv(mode, path, args)\n\n\ |
Tim Peters | 25059d3 | 2001-12-07 20:35:43 +0000 | [diff] [blame] | 5207 | Execute the program 'path' in a new process.\n\ |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 5208 | \n\ |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5209 | mode: mode of process creation\n\ |
| 5210 | path: path of executable file\n\ |
| 5211 | args: tuple or list of strings"); |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 5212 | |
| 5213 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 5214 | posix_spawnv(PyObject *self, PyObject *args) |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 5215 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5216 | PyObject *opath; |
| 5217 | char *path; |
| 5218 | PyObject *argv; |
| 5219 | char **argvlist; |
| 5220 | int mode, i; |
| 5221 | Py_ssize_t argc; |
| 5222 | Py_intptr_t spawnval; |
| 5223 | PyObject *(*getitem)(PyObject *, Py_ssize_t); |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 5224 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5225 | /* spawnv has three arguments: (mode, path, argv), where |
| 5226 | argv is a list or tuple of strings. */ |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 5227 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5228 | if (!PyArg_ParseTuple(args, "iO&O:spawnv", &mode, |
| 5229 | PyUnicode_FSConverter, |
| 5230 | &opath, &argv)) |
| 5231 | return NULL; |
| 5232 | path = PyBytes_AsString(opath); |
| 5233 | if (PyList_Check(argv)) { |
| 5234 | argc = PyList_Size(argv); |
| 5235 | getitem = PyList_GetItem; |
| 5236 | } |
| 5237 | else if (PyTuple_Check(argv)) { |
| 5238 | argc = PyTuple_Size(argv); |
| 5239 | getitem = PyTuple_GetItem; |
| 5240 | } |
| 5241 | else { |
| 5242 | PyErr_SetString(PyExc_TypeError, |
| 5243 | "spawnv() arg 2 must be a tuple or list"); |
| 5244 | Py_DECREF(opath); |
| 5245 | return NULL; |
| 5246 | } |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 5247 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5248 | argvlist = PyMem_NEW(char *, argc+1); |
| 5249 | if (argvlist == NULL) { |
| 5250 | Py_DECREF(opath); |
| 5251 | return PyErr_NoMemory(); |
| 5252 | } |
| 5253 | for (i = 0; i < argc; i++) { |
| 5254 | if (!fsconvert_strdup((*getitem)(argv, i), |
| 5255 | &argvlist[i])) { |
| 5256 | free_string_array(argvlist, i); |
| 5257 | PyErr_SetString( |
| 5258 | PyExc_TypeError, |
| 5259 | "spawnv() arg 2 must contain only strings"); |
| 5260 | Py_DECREF(opath); |
| 5261 | return NULL; |
| 5262 | } |
| 5263 | } |
| 5264 | argvlist[argc] = NULL; |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 5265 | |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 5266 | #if defined(PYOS_OS2) && defined(PYCC_GCC) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5267 | Py_BEGIN_ALLOW_THREADS |
| 5268 | spawnval = spawnv(mode, path, argvlist); |
| 5269 | Py_END_ALLOW_THREADS |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 5270 | #else |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5271 | if (mode == _OLD_P_OVERLAY) |
| 5272 | mode = _P_OVERLAY; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 5273 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5274 | Py_BEGIN_ALLOW_THREADS |
| 5275 | spawnval = _spawnv(mode, path, argvlist); |
| 5276 | Py_END_ALLOW_THREADS |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 5277 | #endif |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 5278 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5279 | free_string_array(argvlist, argc); |
| 5280 | Py_DECREF(opath); |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 5281 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5282 | if (spawnval == -1) |
| 5283 | return posix_error(); |
| 5284 | else |
Fredrik Lundh | e25cfd8 | 2000-07-09 13:10:40 +0000 | [diff] [blame] | 5285 | #if SIZEOF_LONG == SIZEOF_VOID_P |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5286 | return Py_BuildValue("l", (long) spawnval); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 5287 | #else |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5288 | return Py_BuildValue("L", (PY_LONG_LONG) spawnval); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 5289 | #endif |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 5290 | } |
| 5291 | |
| 5292 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5293 | PyDoc_STRVAR(posix_spawnve__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 5294 | "spawnve(mode, path, args, env)\n\n\ |
Tim Peters | 25059d3 | 2001-12-07 20:35:43 +0000 | [diff] [blame] | 5295 | Execute the program 'path' in a new process.\n\ |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 5296 | \n\ |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5297 | mode: mode of process creation\n\ |
| 5298 | path: path of executable file\n\ |
| 5299 | args: tuple or list of arguments\n\ |
| 5300 | env: dictionary of strings mapping to strings"); |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 5301 | |
| 5302 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 5303 | posix_spawnve(PyObject *self, PyObject *args) |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 5304 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5305 | PyObject *opath; |
| 5306 | char *path; |
| 5307 | PyObject *argv, *env; |
| 5308 | char **argvlist; |
| 5309 | char **envlist; |
| 5310 | PyObject *res = NULL; |
Antoine Pitrou | 22e4155 | 2010-08-15 18:07:50 +0000 | [diff] [blame] | 5311 | int mode; |
| 5312 | Py_ssize_t argc, i, envc; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5313 | Py_intptr_t spawnval; |
| 5314 | PyObject *(*getitem)(PyObject *, Py_ssize_t); |
| 5315 | Py_ssize_t lastarg = 0; |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 5316 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5317 | /* spawnve has four arguments: (mode, path, argv, env), where |
| 5318 | argv is a list or tuple of strings and env is a dictionary |
| 5319 | like posix.environ. */ |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 5320 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5321 | if (!PyArg_ParseTuple(args, "iO&OO:spawnve", &mode, |
| 5322 | PyUnicode_FSConverter, |
| 5323 | &opath, &argv, &env)) |
| 5324 | return NULL; |
| 5325 | path = PyBytes_AsString(opath); |
| 5326 | if (PyList_Check(argv)) { |
| 5327 | argc = PyList_Size(argv); |
| 5328 | getitem = PyList_GetItem; |
| 5329 | } |
| 5330 | else if (PyTuple_Check(argv)) { |
| 5331 | argc = PyTuple_Size(argv); |
| 5332 | getitem = PyTuple_GetItem; |
| 5333 | } |
| 5334 | else { |
| 5335 | PyErr_SetString(PyExc_TypeError, |
| 5336 | "spawnve() arg 2 must be a tuple or list"); |
| 5337 | goto fail_0; |
| 5338 | } |
| 5339 | if (!PyMapping_Check(env)) { |
| 5340 | PyErr_SetString(PyExc_TypeError, |
| 5341 | "spawnve() arg 3 must be a mapping object"); |
| 5342 | goto fail_0; |
| 5343 | } |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 5344 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5345 | argvlist = PyMem_NEW(char *, argc+1); |
| 5346 | if (argvlist == NULL) { |
| 5347 | PyErr_NoMemory(); |
| 5348 | goto fail_0; |
| 5349 | } |
| 5350 | for (i = 0; i < argc; i++) { |
| 5351 | if (!fsconvert_strdup((*getitem)(argv, i), |
| 5352 | &argvlist[i])) |
| 5353 | { |
| 5354 | lastarg = i; |
| 5355 | goto fail_1; |
| 5356 | } |
| 5357 | } |
| 5358 | lastarg = argc; |
| 5359 | argvlist[argc] = NULL; |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 5360 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5361 | envlist = parse_envlist(env, &envc); |
| 5362 | if (envlist == NULL) |
| 5363 | goto fail_1; |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 5364 | |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 5365 | #if defined(PYOS_OS2) && defined(PYCC_GCC) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5366 | Py_BEGIN_ALLOW_THREADS |
| 5367 | spawnval = spawnve(mode, path, argvlist, envlist); |
| 5368 | Py_END_ALLOW_THREADS |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 5369 | #else |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5370 | if (mode == _OLD_P_OVERLAY) |
| 5371 | mode = _P_OVERLAY; |
Tim Peters | 25059d3 | 2001-12-07 20:35:43 +0000 | [diff] [blame] | 5372 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5373 | Py_BEGIN_ALLOW_THREADS |
| 5374 | spawnval = _spawnve(mode, path, argvlist, envlist); |
| 5375 | Py_END_ALLOW_THREADS |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 5376 | #endif |
Tim Peters | 25059d3 | 2001-12-07 20:35:43 +0000 | [diff] [blame] | 5377 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5378 | if (spawnval == -1) |
| 5379 | (void) posix_error(); |
| 5380 | else |
Fredrik Lundh | e25cfd8 | 2000-07-09 13:10:40 +0000 | [diff] [blame] | 5381 | #if SIZEOF_LONG == SIZEOF_VOID_P |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5382 | res = Py_BuildValue("l", (long) spawnval); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 5383 | #else |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5384 | res = Py_BuildValue("L", (PY_LONG_LONG) spawnval); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 5385 | #endif |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 5386 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5387 | while (--envc >= 0) |
| 5388 | PyMem_DEL(envlist[envc]); |
| 5389 | PyMem_DEL(envlist); |
Guido van Rossum | 0847c5c | 2002-12-13 18:36:22 +0000 | [diff] [blame] | 5390 | fail_1: |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5391 | free_string_array(argvlist, lastarg); |
Martin v. Löwis | 114619e | 2002-10-07 06:44:21 +0000 | [diff] [blame] | 5392 | fail_0: |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5393 | Py_DECREF(opath); |
| 5394 | return res; |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 5395 | } |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 5396 | |
| 5397 | /* OS/2 supports spawnvp & spawnvpe natively */ |
| 5398 | #if defined(PYOS_OS2) |
| 5399 | PyDoc_STRVAR(posix_spawnvp__doc__, |
| 5400 | "spawnvp(mode, file, args)\n\n\ |
| 5401 | Execute the program 'file' in a new process, using the environment\n\ |
| 5402 | search path to find the file.\n\ |
| 5403 | \n\ |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5404 | mode: mode of process creation\n\ |
| 5405 | file: executable file name\n\ |
| 5406 | args: tuple or list of strings"); |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 5407 | |
| 5408 | static PyObject * |
| 5409 | posix_spawnvp(PyObject *self, PyObject *args) |
| 5410 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5411 | PyObject *opath; |
| 5412 | char *path; |
| 5413 | PyObject *argv; |
| 5414 | char **argvlist; |
| 5415 | int mode, i, argc; |
| 5416 | Py_intptr_t spawnval; |
| 5417 | PyObject *(*getitem)(PyObject *, Py_ssize_t); |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 5418 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5419 | /* spawnvp has three arguments: (mode, path, argv), where |
| 5420 | argv is a list or tuple of strings. */ |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 5421 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5422 | if (!PyArg_ParseTuple(args, "iO&O:spawnvp", &mode, |
| 5423 | PyUnicode_FSConverter, |
| 5424 | &opath, &argv)) |
| 5425 | return NULL; |
| 5426 | path = PyBytes_AsString(opath); |
| 5427 | if (PyList_Check(argv)) { |
| 5428 | argc = PyList_Size(argv); |
| 5429 | getitem = PyList_GetItem; |
| 5430 | } |
| 5431 | else if (PyTuple_Check(argv)) { |
| 5432 | argc = PyTuple_Size(argv); |
| 5433 | getitem = PyTuple_GetItem; |
| 5434 | } |
| 5435 | else { |
| 5436 | PyErr_SetString(PyExc_TypeError, |
| 5437 | "spawnvp() arg 2 must be a tuple or list"); |
| 5438 | Py_DECREF(opath); |
| 5439 | return NULL; |
| 5440 | } |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 5441 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5442 | argvlist = PyMem_NEW(char *, argc+1); |
| 5443 | if (argvlist == NULL) { |
| 5444 | Py_DECREF(opath); |
| 5445 | return PyErr_NoMemory(); |
| 5446 | } |
| 5447 | for (i = 0; i < argc; i++) { |
| 5448 | if (!fsconvert_strdup((*getitem)(argv, i), |
| 5449 | &argvlist[i])) { |
| 5450 | free_string_array(argvlist, i); |
| 5451 | PyErr_SetString( |
| 5452 | PyExc_TypeError, |
| 5453 | "spawnvp() arg 2 must contain only strings"); |
| 5454 | Py_DECREF(opath); |
| 5455 | return NULL; |
| 5456 | } |
| 5457 | } |
| 5458 | argvlist[argc] = NULL; |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 5459 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5460 | Py_BEGIN_ALLOW_THREADS |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 5461 | #if defined(PYCC_GCC) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5462 | spawnval = spawnvp(mode, path, argvlist); |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 5463 | #else |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5464 | spawnval = _spawnvp(mode, path, argvlist); |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 5465 | #endif |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5466 | Py_END_ALLOW_THREADS |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 5467 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5468 | free_string_array(argvlist, argc); |
| 5469 | Py_DECREF(opath); |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 5470 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5471 | if (spawnval == -1) |
| 5472 | return posix_error(); |
| 5473 | else |
| 5474 | return Py_BuildValue("l", (long) spawnval); |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 5475 | } |
| 5476 | |
| 5477 | |
| 5478 | PyDoc_STRVAR(posix_spawnvpe__doc__, |
| 5479 | "spawnvpe(mode, file, args, env)\n\n\ |
| 5480 | Execute the program 'file' in a new process, using the environment\n\ |
| 5481 | search path to find the file.\n\ |
| 5482 | \n\ |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5483 | mode: mode of process creation\n\ |
| 5484 | file: executable file name\n\ |
| 5485 | args: tuple or list of arguments\n\ |
| 5486 | env: dictionary of strings mapping to strings"); |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 5487 | |
| 5488 | static PyObject * |
| 5489 | posix_spawnvpe(PyObject *self, PyObject *args) |
| 5490 | { |
Ross Lagerwall | dcfde5a | 2011-11-04 07:09:14 +0200 | [diff] [blame] | 5491 | PyObject *opath; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5492 | char *path; |
| 5493 | PyObject *argv, *env; |
| 5494 | char **argvlist; |
| 5495 | char **envlist; |
| 5496 | PyObject *res=NULL; |
Antoine Pitrou | 22e4155 | 2010-08-15 18:07:50 +0000 | [diff] [blame] | 5497 | int mode; |
| 5498 | Py_ssize_t argc, i, envc; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5499 | Py_intptr_t spawnval; |
| 5500 | PyObject *(*getitem)(PyObject *, Py_ssize_t); |
| 5501 | int lastarg = 0; |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 5502 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5503 | /* spawnvpe has four arguments: (mode, path, argv, env), where |
| 5504 | argv is a list or tuple of strings and env is a dictionary |
| 5505 | like posix.environ. */ |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 5506 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5507 | if (!PyArg_ParseTuple(args, "ietOO:spawnvpe", &mode, |
| 5508 | PyUnicode_FSConverter, |
| 5509 | &opath, &argv, &env)) |
| 5510 | return NULL; |
| 5511 | path = PyBytes_AsString(opath); |
| 5512 | if (PyList_Check(argv)) { |
| 5513 | argc = PyList_Size(argv); |
| 5514 | getitem = PyList_GetItem; |
| 5515 | } |
| 5516 | else if (PyTuple_Check(argv)) { |
| 5517 | argc = PyTuple_Size(argv); |
| 5518 | getitem = PyTuple_GetItem; |
| 5519 | } |
| 5520 | else { |
| 5521 | PyErr_SetString(PyExc_TypeError, |
| 5522 | "spawnvpe() arg 2 must be a tuple or list"); |
| 5523 | goto fail_0; |
| 5524 | } |
| 5525 | if (!PyMapping_Check(env)) { |
| 5526 | PyErr_SetString(PyExc_TypeError, |
| 5527 | "spawnvpe() arg 3 must be a mapping object"); |
| 5528 | goto fail_0; |
| 5529 | } |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 5530 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5531 | argvlist = PyMem_NEW(char *, argc+1); |
| 5532 | if (argvlist == NULL) { |
| 5533 | PyErr_NoMemory(); |
| 5534 | goto fail_0; |
| 5535 | } |
| 5536 | for (i = 0; i < argc; i++) { |
| 5537 | if (!fsconvert_strdup((*getitem)(argv, i), |
| 5538 | &argvlist[i])) |
| 5539 | { |
| 5540 | lastarg = i; |
| 5541 | goto fail_1; |
| 5542 | } |
| 5543 | } |
| 5544 | lastarg = argc; |
| 5545 | argvlist[argc] = NULL; |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 5546 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5547 | envlist = parse_envlist(env, &envc); |
| 5548 | if (envlist == NULL) |
| 5549 | goto fail_1; |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 5550 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5551 | Py_BEGIN_ALLOW_THREADS |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 5552 | #if defined(PYCC_GCC) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5553 | spawnval = spawnvpe(mode, path, argvlist, envlist); |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 5554 | #else |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5555 | spawnval = _spawnvpe(mode, path, argvlist, envlist); |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 5556 | #endif |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5557 | Py_END_ALLOW_THREADS |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 5558 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5559 | if (spawnval == -1) |
| 5560 | (void) posix_error(); |
| 5561 | else |
| 5562 | res = Py_BuildValue("l", (long) spawnval); |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 5563 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5564 | while (--envc >= 0) |
| 5565 | PyMem_DEL(envlist[envc]); |
| 5566 | PyMem_DEL(envlist); |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 5567 | fail_1: |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5568 | free_string_array(argvlist, lastarg); |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 5569 | fail_0: |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5570 | Py_DECREF(opath); |
| 5571 | return res; |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 5572 | } |
| 5573 | #endif /* PYOS_OS2 */ |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 5574 | #endif /* HAVE_SPAWNV */ |
| 5575 | |
| 5576 | |
Guido van Rossum | 2242f2f | 2001-04-11 20:58:20 +0000 | [diff] [blame] | 5577 | #ifdef HAVE_FORK1 |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5578 | PyDoc_STRVAR(posix_fork1__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 5579 | "fork1() -> pid\n\n\ |
Guido van Rossum | 2242f2f | 2001-04-11 20:58:20 +0000 | [diff] [blame] | 5580 | Fork a child process with a single multiplexed (i.e., not bound) thread.\n\ |
| 5581 | \n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5582 | Return 0 to child process and PID of child to parent process."); |
Guido van Rossum | 2242f2f | 2001-04-11 20:58:20 +0000 | [diff] [blame] | 5583 | |
| 5584 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 5585 | posix_fork1(PyObject *self, PyObject *noargs) |
Guido van Rossum | 2242f2f | 2001-04-11 20:58:20 +0000 | [diff] [blame] | 5586 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5587 | pid_t pid; |
| 5588 | int result = 0; |
| 5589 | _PyImport_AcquireLock(); |
| 5590 | pid = fork1(); |
| 5591 | if (pid == 0) { |
| 5592 | /* child: this clobbers and resets the import lock. */ |
| 5593 | PyOS_AfterFork(); |
| 5594 | } else { |
| 5595 | /* parent: release the import lock. */ |
| 5596 | result = _PyImport_ReleaseLock(); |
| 5597 | } |
| 5598 | if (pid == -1) |
| 5599 | return posix_error(); |
| 5600 | if (result < 0) { |
| 5601 | /* Don't clobber the OSError if the fork failed. */ |
| 5602 | PyErr_SetString(PyExc_RuntimeError, |
| 5603 | "not holding the import lock"); |
| 5604 | return NULL; |
| 5605 | } |
| 5606 | return PyLong_FromPid(pid); |
Guido van Rossum | 2242f2f | 2001-04-11 20:58:20 +0000 | [diff] [blame] | 5607 | } |
| 5608 | #endif |
| 5609 | |
| 5610 | |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 5611 | #ifdef HAVE_FORK |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5612 | PyDoc_STRVAR(posix_fork__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 5613 | "fork() -> pid\n\n\ |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 5614 | Fork a child process.\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 5615 | Return 0 to child process and PID of child to parent process."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 5616 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 5617 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 5618 | posix_fork(PyObject *self, PyObject *noargs) |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 5619 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 5620 | pid_t pid; |
| 5621 | int result = 0; |
| 5622 | _PyImport_AcquireLock(); |
| 5623 | pid = fork(); |
| 5624 | if (pid == 0) { |
| 5625 | /* child: this clobbers and resets the import lock. */ |
| 5626 | PyOS_AfterFork(); |
| 5627 | } else { |
| 5628 | /* parent: release the import lock. */ |
| 5629 | result = _PyImport_ReleaseLock(); |
| 5630 | } |
| 5631 | if (pid == -1) |
| 5632 | return posix_error(); |
| 5633 | if (result < 0) { |
| 5634 | /* Don't clobber the OSError if the fork failed. */ |
| 5635 | PyErr_SetString(PyExc_RuntimeError, |
| 5636 | "not holding the import lock"); |
| 5637 | return NULL; |
| 5638 | } |
| 5639 | return PyLong_FromPid(pid); |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 5640 | } |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 5641 | #endif |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 5642 | |
Benjamin Peterson | 94b580d | 2011-08-02 17:30:04 -0500 | [diff] [blame] | 5643 | #ifdef HAVE_SCHED_H |
| 5644 | |
Charles-François Natali | ea0d5fc | 2011-09-06 19:03:35 +0200 | [diff] [blame] | 5645 | #ifdef HAVE_SCHED_GET_PRIORITY_MAX |
| 5646 | |
Benjamin Peterson | 94b580d | 2011-08-02 17:30:04 -0500 | [diff] [blame] | 5647 | PyDoc_STRVAR(posix_sched_get_priority_max__doc__, |
| 5648 | "sched_get_priority_max(policy)\n\n\ |
| 5649 | Get the maximum scheduling priority for *policy*."); |
| 5650 | |
| 5651 | static PyObject * |
| 5652 | posix_sched_get_priority_max(PyObject *self, PyObject *args) |
| 5653 | { |
| 5654 | int policy, max; |
| 5655 | |
| 5656 | if (!PyArg_ParseTuple(args, "i:sched_get_priority_max", &policy)) |
| 5657 | return NULL; |
| 5658 | max = sched_get_priority_max(policy); |
| 5659 | if (max < 0) |
| 5660 | return posix_error(); |
| 5661 | return PyLong_FromLong(max); |
| 5662 | } |
| 5663 | |
| 5664 | PyDoc_STRVAR(posix_sched_get_priority_min__doc__, |
| 5665 | "sched_get_priority_min(policy)\n\n\ |
| 5666 | Get the minimum scheduling priority for *policy*."); |
| 5667 | |
| 5668 | static PyObject * |
| 5669 | posix_sched_get_priority_min(PyObject *self, PyObject *args) |
| 5670 | { |
| 5671 | int policy, min; |
| 5672 | |
| 5673 | if (!PyArg_ParseTuple(args, "i:sched_get_priority_min", &policy)) |
| 5674 | return NULL; |
| 5675 | min = sched_get_priority_min(policy); |
| 5676 | if (min < 0) |
| 5677 | return posix_error(); |
| 5678 | return PyLong_FromLong(min); |
| 5679 | } |
| 5680 | |
Charles-François Natali | ea0d5fc | 2011-09-06 19:03:35 +0200 | [diff] [blame] | 5681 | #endif /* HAVE_SCHED_GET_PRIORITY_MAX */ |
| 5682 | |
Benjamin Peterson | c5fce4d | 2011-08-02 18:07:32 -0500 | [diff] [blame] | 5683 | #ifdef HAVE_SCHED_SETSCHEDULER |
| 5684 | |
Benjamin Peterson | 94b580d | 2011-08-02 17:30:04 -0500 | [diff] [blame] | 5685 | PyDoc_STRVAR(posix_sched_getscheduler__doc__, |
| 5686 | "sched_getscheduler(pid)\n\n\ |
| 5687 | Get the scheduling policy for the process with a PID of *pid*.\n\ |
| 5688 | Passing a PID of 0 returns the scheduling policy for the calling process."); |
| 5689 | |
| 5690 | static PyObject * |
| 5691 | posix_sched_getscheduler(PyObject *self, PyObject *args) |
| 5692 | { |
| 5693 | pid_t pid; |
| 5694 | int policy; |
| 5695 | |
| 5696 | if (!PyArg_ParseTuple(args, _Py_PARSE_PID ":sched_getscheduler", &pid)) |
| 5697 | return NULL; |
| 5698 | policy = sched_getscheduler(pid); |
| 5699 | if (policy < 0) |
| 5700 | return posix_error(); |
| 5701 | return PyLong_FromLong(policy); |
| 5702 | } |
| 5703 | |
Benjamin Peterson | c5fce4d | 2011-08-02 18:07:32 -0500 | [diff] [blame] | 5704 | #endif |
| 5705 | |
| 5706 | #if defined(HAVE_SCHED_SETSCHEDULER) || defined(HAVE_SCHED_SETPARAM) |
| 5707 | |
Benjamin Peterson | 94b580d | 2011-08-02 17:30:04 -0500 | [diff] [blame] | 5708 | static PyObject * |
| 5709 | sched_param_new(PyTypeObject *type, PyObject *args, PyObject *kwargs) |
| 5710 | { |
| 5711 | PyObject *res, *priority; |
Benjamin Peterson | 4e36d5a | 2011-08-02 19:56:11 -0500 | [diff] [blame] | 5712 | static char *kwlist[] = {"sched_priority", NULL}; |
Benjamin Peterson | 94b580d | 2011-08-02 17:30:04 -0500 | [diff] [blame] | 5713 | |
| 5714 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O:sched_param", kwlist, &priority)) |
| 5715 | return NULL; |
| 5716 | res = PyStructSequence_New(type); |
| 5717 | if (!res) |
| 5718 | return NULL; |
| 5719 | Py_INCREF(priority); |
| 5720 | PyStructSequence_SET_ITEM(res, 0, priority); |
| 5721 | return res; |
| 5722 | } |
| 5723 | |
| 5724 | PyDoc_STRVAR(sched_param__doc__, |
| 5725 | "sched_param(sched_priority): A scheduling parameter.\n\n\ |
| 5726 | Current has only one field: sched_priority"); |
| 5727 | |
| 5728 | static PyStructSequence_Field sched_param_fields[] = { |
| 5729 | {"sched_priority", "the scheduling priority"}, |
| 5730 | {0} |
| 5731 | }; |
| 5732 | |
| 5733 | static PyStructSequence_Desc sched_param_desc = { |
| 5734 | "sched_param", /* name */ |
| 5735 | sched_param__doc__, /* doc */ |
| 5736 | sched_param_fields, |
| 5737 | 1 |
| 5738 | }; |
| 5739 | |
| 5740 | static int |
| 5741 | convert_sched_param(PyObject *param, struct sched_param *res) |
| 5742 | { |
| 5743 | long priority; |
| 5744 | |
| 5745 | if (Py_TYPE(param) != &SchedParamType) { |
| 5746 | PyErr_SetString(PyExc_TypeError, "must have a sched_param object"); |
| 5747 | return 0; |
| 5748 | } |
| 5749 | priority = PyLong_AsLong(PyStructSequence_GET_ITEM(param, 0)); |
| 5750 | if (priority == -1 && PyErr_Occurred()) |
| 5751 | return 0; |
| 5752 | if (priority > INT_MAX || priority < INT_MIN) { |
| 5753 | PyErr_SetString(PyExc_OverflowError, "sched_priority out of range"); |
| 5754 | return 0; |
| 5755 | } |
| 5756 | res->sched_priority = Py_SAFE_DOWNCAST(priority, long, int); |
| 5757 | return 1; |
| 5758 | } |
| 5759 | |
Benjamin Peterson | c5fce4d | 2011-08-02 18:07:32 -0500 | [diff] [blame] | 5760 | #endif |
| 5761 | |
| 5762 | #ifdef HAVE_SCHED_SETSCHEDULER |
| 5763 | |
Benjamin Peterson | 94b580d | 2011-08-02 17:30:04 -0500 | [diff] [blame] | 5764 | PyDoc_STRVAR(posix_sched_setscheduler__doc__, |
| 5765 | "sched_setscheduler(pid, policy, param)\n\n\ |
| 5766 | Set the scheduling policy, *policy*, for *pid*.\n\ |
| 5767 | If *pid* is 0, the calling process is changed.\n\ |
| 5768 | *param* is an instance of sched_param."); |
| 5769 | |
| 5770 | static PyObject * |
| 5771 | posix_sched_setscheduler(PyObject *self, PyObject *args) |
| 5772 | { |
| 5773 | pid_t pid; |
| 5774 | int policy; |
| 5775 | struct sched_param param; |
| 5776 | |
| 5777 | if (!PyArg_ParseTuple(args, _Py_PARSE_PID "iO&:sched_setscheduler", |
| 5778 | &pid, &policy, &convert_sched_param, ¶m)) |
| 5779 | return NULL; |
Jesus Cea | 9c82227 | 2011-09-10 01:40:52 +0200 | [diff] [blame] | 5780 | |
| 5781 | /* |
Jesus Cea | 54b0149 | 2011-09-10 01:53:19 +0200 | [diff] [blame] | 5782 | ** sched_setscheduler() returns 0 in Linux, but the previous |
| 5783 | ** scheduling policy under Solaris/Illumos, and others. |
| 5784 | ** On error, -1 is returned in all Operating Systems. |
Jesus Cea | 9c82227 | 2011-09-10 01:40:52 +0200 | [diff] [blame] | 5785 | */ |
| 5786 | if (sched_setscheduler(pid, policy, ¶m) == -1) |
Benjamin Peterson | 94b580d | 2011-08-02 17:30:04 -0500 | [diff] [blame] | 5787 | return posix_error(); |
| 5788 | Py_RETURN_NONE; |
| 5789 | } |
| 5790 | |
Benjamin Peterson | c5fce4d | 2011-08-02 18:07:32 -0500 | [diff] [blame] | 5791 | #endif |
| 5792 | |
| 5793 | #ifdef HAVE_SCHED_SETPARAM |
| 5794 | |
Benjamin Peterson | 94b580d | 2011-08-02 17:30:04 -0500 | [diff] [blame] | 5795 | PyDoc_STRVAR(posix_sched_getparam__doc__, |
| 5796 | "sched_getparam(pid) -> sched_param\n\n\ |
| 5797 | Returns scheduling parameters for the process with *pid* as an instance of the\n\ |
| 5798 | sched_param class. A PID of 0 means the calling process."); |
| 5799 | |
| 5800 | static PyObject * |
| 5801 | posix_sched_getparam(PyObject *self, PyObject *args) |
| 5802 | { |
| 5803 | pid_t pid; |
| 5804 | struct sched_param param; |
| 5805 | PyObject *res, *priority; |
| 5806 | |
| 5807 | if (!PyArg_ParseTuple(args, _Py_PARSE_PID ":sched_getparam", &pid)) |
| 5808 | return NULL; |
| 5809 | if (sched_getparam(pid, ¶m)) |
| 5810 | return posix_error(); |
| 5811 | res = PyStructSequence_New(&SchedParamType); |
| 5812 | if (!res) |
| 5813 | return NULL; |
| 5814 | priority = PyLong_FromLong(param.sched_priority); |
| 5815 | if (!priority) { |
| 5816 | Py_DECREF(res); |
| 5817 | return NULL; |
| 5818 | } |
| 5819 | PyStructSequence_SET_ITEM(res, 0, priority); |
| 5820 | return res; |
| 5821 | } |
| 5822 | |
| 5823 | PyDoc_STRVAR(posix_sched_setparam__doc__, |
| 5824 | "sched_setparam(pid, param)\n\n\ |
| 5825 | Set scheduling parameters for a process with PID *pid*.\n\ |
| 5826 | A PID of 0 means the calling process."); |
| 5827 | |
| 5828 | static PyObject * |
| 5829 | posix_sched_setparam(PyObject *self, PyObject *args) |
| 5830 | { |
| 5831 | pid_t pid; |
| 5832 | struct sched_param param; |
| 5833 | |
| 5834 | if (!PyArg_ParseTuple(args, _Py_PARSE_PID "O&:sched_setparam", |
| 5835 | &pid, &convert_sched_param, ¶m)) |
| 5836 | return NULL; |
| 5837 | if (sched_setparam(pid, ¶m)) |
| 5838 | return posix_error(); |
| 5839 | Py_RETURN_NONE; |
| 5840 | } |
| 5841 | |
Benjamin Peterson | c5fce4d | 2011-08-02 18:07:32 -0500 | [diff] [blame] | 5842 | #endif |
| 5843 | |
| 5844 | #ifdef HAVE_SCHED_RR_GET_INTERVAL |
| 5845 | |
Benjamin Peterson | 94b580d | 2011-08-02 17:30:04 -0500 | [diff] [blame] | 5846 | PyDoc_STRVAR(posix_sched_rr_get_interval__doc__, |
| 5847 | "sched_rr_get_interval(pid) -> float\n\n\ |
| 5848 | Return the round-robin quantum for the process with PID *pid* in seconds."); |
| 5849 | |
| 5850 | static PyObject * |
| 5851 | posix_sched_rr_get_interval(PyObject *self, PyObject *args) |
| 5852 | { |
| 5853 | pid_t pid; |
| 5854 | struct timespec interval; |
| 5855 | |
| 5856 | if (!PyArg_ParseTuple(args, _Py_PARSE_PID ":sched_rr_get_interval", &pid)) |
| 5857 | return NULL; |
| 5858 | if (sched_rr_get_interval(pid, &interval)) |
| 5859 | return posix_error(); |
| 5860 | return PyFloat_FromDouble((double)interval.tv_sec + 1e-9*interval.tv_nsec); |
| 5861 | } |
| 5862 | |
Benjamin Peterson | c5fce4d | 2011-08-02 18:07:32 -0500 | [diff] [blame] | 5863 | #endif |
| 5864 | |
Benjamin Peterson | 94b580d | 2011-08-02 17:30:04 -0500 | [diff] [blame] | 5865 | PyDoc_STRVAR(posix_sched_yield__doc__, |
| 5866 | "sched_yield()\n\n\ |
| 5867 | Voluntarily relinquish the CPU."); |
| 5868 | |
| 5869 | static PyObject * |
| 5870 | posix_sched_yield(PyObject *self, PyObject *noargs) |
| 5871 | { |
| 5872 | if (sched_yield()) |
| 5873 | return posix_error(); |
| 5874 | Py_RETURN_NONE; |
| 5875 | } |
| 5876 | |
Benjamin Peterson | 2740af8 | 2011-08-02 17:41:34 -0500 | [diff] [blame] | 5877 | #ifdef HAVE_SCHED_SETAFFINITY |
| 5878 | |
Antoine Pitrou | 8486987 | 2012-08-04 16:16:35 +0200 | [diff] [blame] | 5879 | /* The minimum number of CPUs allocated in a cpu_set_t */ |
| 5880 | static const int NCPUS_START = sizeof(unsigned long) * CHAR_BIT; |
Benjamin Peterson | 94b580d | 2011-08-02 17:30:04 -0500 | [diff] [blame] | 5881 | |
| 5882 | PyDoc_STRVAR(posix_sched_setaffinity__doc__, |
| 5883 | "sched_setaffinity(pid, cpu_set)\n\n\ |
| 5884 | Set the affinity of the process with PID *pid* to *cpu_set*."); |
| 5885 | |
| 5886 | static PyObject * |
| 5887 | posix_sched_setaffinity(PyObject *self, PyObject *args) |
| 5888 | { |
| 5889 | pid_t pid; |
Antoine Pitrou | 8486987 | 2012-08-04 16:16:35 +0200 | [diff] [blame] | 5890 | int ncpus; |
| 5891 | size_t setsize; |
| 5892 | cpu_set_t *mask = NULL; |
| 5893 | PyObject *iterable, *iterator = NULL, *item; |
Benjamin Peterson | 94b580d | 2011-08-02 17:30:04 -0500 | [diff] [blame] | 5894 | |
Antoine Pitrou | 8486987 | 2012-08-04 16:16:35 +0200 | [diff] [blame] | 5895 | if (!PyArg_ParseTuple(args, _Py_PARSE_PID "O:sched_setaffinity", |
| 5896 | &pid, &iterable)) |
Benjamin Peterson | 94b580d | 2011-08-02 17:30:04 -0500 | [diff] [blame] | 5897 | return NULL; |
Antoine Pitrou | 8486987 | 2012-08-04 16:16:35 +0200 | [diff] [blame] | 5898 | |
| 5899 | iterator = PyObject_GetIter(iterable); |
| 5900 | if (iterator == NULL) |
| 5901 | return NULL; |
| 5902 | |
| 5903 | ncpus = NCPUS_START; |
| 5904 | setsize = CPU_ALLOC_SIZE(ncpus); |
| 5905 | mask = CPU_ALLOC(ncpus); |
| 5906 | if (mask == NULL) { |
| 5907 | PyErr_NoMemory(); |
| 5908 | goto error; |
| 5909 | } |
| 5910 | CPU_ZERO_S(setsize, mask); |
| 5911 | |
| 5912 | while ((item = PyIter_Next(iterator))) { |
| 5913 | long cpu; |
| 5914 | if (!PyLong_Check(item)) { |
| 5915 | PyErr_Format(PyExc_TypeError, |
| 5916 | "expected an iterator of ints, " |
| 5917 | "but iterator yielded %R", |
| 5918 | Py_TYPE(item)); |
| 5919 | Py_DECREF(item); |
| 5920 | goto error; |
| 5921 | } |
| 5922 | cpu = PyLong_AsLong(item); |
| 5923 | Py_DECREF(item); |
| 5924 | if (cpu < 0) { |
| 5925 | if (!PyErr_Occurred()) |
| 5926 | PyErr_SetString(PyExc_ValueError, "negative CPU number"); |
| 5927 | goto error; |
| 5928 | } |
| 5929 | if (cpu > INT_MAX - 1) { |
| 5930 | PyErr_SetString(PyExc_OverflowError, "CPU number too large"); |
| 5931 | goto error; |
| 5932 | } |
| 5933 | if (cpu >= ncpus) { |
| 5934 | /* Grow CPU mask to fit the CPU number */ |
| 5935 | int newncpus = ncpus; |
| 5936 | cpu_set_t *newmask; |
| 5937 | size_t newsetsize; |
| 5938 | while (newncpus <= cpu) { |
| 5939 | if (newncpus > INT_MAX / 2) |
| 5940 | newncpus = cpu + 1; |
| 5941 | else |
| 5942 | newncpus = newncpus * 2; |
| 5943 | } |
| 5944 | newmask = CPU_ALLOC(newncpus); |
| 5945 | if (newmask == NULL) { |
| 5946 | PyErr_NoMemory(); |
| 5947 | goto error; |
| 5948 | } |
| 5949 | newsetsize = CPU_ALLOC_SIZE(newncpus); |
| 5950 | CPU_ZERO_S(newsetsize, newmask); |
| 5951 | memcpy(newmask, mask, setsize); |
| 5952 | CPU_FREE(mask); |
| 5953 | setsize = newsetsize; |
| 5954 | mask = newmask; |
| 5955 | ncpus = newncpus; |
| 5956 | } |
| 5957 | CPU_SET_S(cpu, setsize, mask); |
| 5958 | } |
| 5959 | Py_CLEAR(iterator); |
| 5960 | |
| 5961 | if (sched_setaffinity(pid, setsize, mask)) { |
| 5962 | posix_error(); |
| 5963 | goto error; |
| 5964 | } |
| 5965 | CPU_FREE(mask); |
Benjamin Peterson | 94b580d | 2011-08-02 17:30:04 -0500 | [diff] [blame] | 5966 | Py_RETURN_NONE; |
Antoine Pitrou | 8486987 | 2012-08-04 16:16:35 +0200 | [diff] [blame] | 5967 | |
| 5968 | error: |
| 5969 | if (mask) |
| 5970 | CPU_FREE(mask); |
| 5971 | Py_XDECREF(iterator); |
| 5972 | return NULL; |
Benjamin Peterson | 94b580d | 2011-08-02 17:30:04 -0500 | [diff] [blame] | 5973 | } |
| 5974 | |
| 5975 | PyDoc_STRVAR(posix_sched_getaffinity__doc__, |
| 5976 | "sched_getaffinity(pid, ncpus) -> cpu_set\n\n\ |
| 5977 | Return the affinity of the process with PID *pid*.\n\ |
| 5978 | The returned cpu_set will be of size *ncpus*."); |
| 5979 | |
| 5980 | static PyObject * |
| 5981 | posix_sched_getaffinity(PyObject *self, PyObject *args) |
| 5982 | { |
| 5983 | pid_t pid; |
Antoine Pitrou | 8486987 | 2012-08-04 16:16:35 +0200 | [diff] [blame] | 5984 | int cpu, ncpus, count; |
| 5985 | size_t setsize; |
| 5986 | cpu_set_t *mask = NULL; |
| 5987 | PyObject *res = NULL; |
Benjamin Peterson | 94b580d | 2011-08-02 17:30:04 -0500 | [diff] [blame] | 5988 | |
Antoine Pitrou | 8486987 | 2012-08-04 16:16:35 +0200 | [diff] [blame] | 5989 | if (!PyArg_ParseTuple(args, _Py_PARSE_PID ":sched_getaffinity", |
| 5990 | &pid)) |
Benjamin Peterson | 94b580d | 2011-08-02 17:30:04 -0500 | [diff] [blame] | 5991 | return NULL; |
Antoine Pitrou | 8486987 | 2012-08-04 16:16:35 +0200 | [diff] [blame] | 5992 | |
| 5993 | ncpus = NCPUS_START; |
| 5994 | while (1) { |
| 5995 | setsize = CPU_ALLOC_SIZE(ncpus); |
| 5996 | mask = CPU_ALLOC(ncpus); |
| 5997 | if (mask == NULL) |
| 5998 | return PyErr_NoMemory(); |
| 5999 | if (sched_getaffinity(pid, setsize, mask) == 0) |
| 6000 | break; |
| 6001 | CPU_FREE(mask); |
| 6002 | if (errno != EINVAL) |
| 6003 | return posix_error(); |
| 6004 | if (ncpus > INT_MAX / 2) { |
| 6005 | PyErr_SetString(PyExc_OverflowError, "could not allocate " |
| 6006 | "a large enough CPU set"); |
| 6007 | return NULL; |
| 6008 | } |
| 6009 | ncpus = ncpus * 2; |
Benjamin Peterson | 94b580d | 2011-08-02 17:30:04 -0500 | [diff] [blame] | 6010 | } |
Antoine Pitrou | 8486987 | 2012-08-04 16:16:35 +0200 | [diff] [blame] | 6011 | |
| 6012 | res = PySet_New(NULL); |
| 6013 | if (res == NULL) |
| 6014 | goto error; |
| 6015 | for (cpu = 0, count = CPU_COUNT_S(setsize, mask); count; cpu++) { |
| 6016 | if (CPU_ISSET_S(cpu, setsize, mask)) { |
| 6017 | PyObject *cpu_num = PyLong_FromLong(cpu); |
| 6018 | --count; |
| 6019 | if (cpu_num == NULL) |
| 6020 | goto error; |
| 6021 | if (PySet_Add(res, cpu_num)) { |
| 6022 | Py_DECREF(cpu_num); |
| 6023 | goto error; |
| 6024 | } |
| 6025 | Py_DECREF(cpu_num); |
| 6026 | } |
| 6027 | } |
| 6028 | CPU_FREE(mask); |
| 6029 | return res; |
| 6030 | |
| 6031 | error: |
| 6032 | if (mask) |
| 6033 | CPU_FREE(mask); |
| 6034 | Py_XDECREF(res); |
| 6035 | return NULL; |
Benjamin Peterson | 94b580d | 2011-08-02 17:30:04 -0500 | [diff] [blame] | 6036 | } |
| 6037 | |
Benjamin Peterson | 2740af8 | 2011-08-02 17:41:34 -0500 | [diff] [blame] | 6038 | #endif /* HAVE_SCHED_SETAFFINITY */ |
| 6039 | |
Benjamin Peterson | 94b580d | 2011-08-02 17:30:04 -0500 | [diff] [blame] | 6040 | #endif /* HAVE_SCHED_H */ |
| 6041 | |
Neal Norwitz | b59798b | 2003-03-21 01:43:31 +0000 | [diff] [blame] | 6042 | /* AIX uses /dev/ptc but is otherwise the same as /dev/ptmx */ |
Neal Norwitz | 2deaddb | 2003-03-21 03:08:31 +0000 | [diff] [blame] | 6043 | /* IRIX has both /dev/ptc and /dev/ptmx, use ptmx */ |
| 6044 | #if defined(HAVE_DEV_PTC) && !defined(HAVE_DEV_PTMX) |
Neal Norwitz | b59798b | 2003-03-21 01:43:31 +0000 | [diff] [blame] | 6045 | #define DEV_PTY_FILE "/dev/ptc" |
| 6046 | #define HAVE_DEV_PTMX |
| 6047 | #else |
| 6048 | #define DEV_PTY_FILE "/dev/ptmx" |
| 6049 | #endif |
| 6050 | |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 6051 | #if defined(HAVE_OPENPTY) || defined(HAVE_FORKPTY) || defined(HAVE_DEV_PTMX) |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 6052 | #ifdef HAVE_PTY_H |
| 6053 | #include <pty.h> |
| 6054 | #else |
| 6055 | #ifdef HAVE_LIBUTIL_H |
| 6056 | #include <libutil.h> |
Ronald Oussoren | 755740f | 2010-02-07 19:56:39 +0000 | [diff] [blame] | 6057 | #else |
| 6058 | #ifdef HAVE_UTIL_H |
| 6059 | #include <util.h> |
| 6060 | #endif /* HAVE_UTIL_H */ |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 6061 | #endif /* HAVE_LIBUTIL_H */ |
| 6062 | #endif /* HAVE_PTY_H */ |
Martin v. Löwis | 14e73b1 | 2003-01-01 09:51:12 +0000 | [diff] [blame] | 6063 | #ifdef HAVE_STROPTS_H |
| 6064 | #include <stropts.h> |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 6065 | #endif |
| 6066 | #endif /* defined(HAVE_OPENPTY) || defined(HAVE_FORKPTY) || defined(HAVE_DEV_PTMX */ |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 6067 | |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 6068 | #if defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX) |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6069 | PyDoc_STRVAR(posix_openpty__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6070 | "openpty() -> (master_fd, slave_fd)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6071 | Open a pseudo-terminal, returning open fd's for both master and slave end.\n"); |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 6072 | |
| 6073 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 6074 | posix_openpty(PyObject *self, PyObject *noargs) |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 6075 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6076 | int master_fd, slave_fd; |
Thomas Wouters | 70c21a1 | 2000-07-14 14:28:33 +0000 | [diff] [blame] | 6077 | #ifndef HAVE_OPENPTY |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6078 | char * slave_name; |
Thomas Wouters | 70c21a1 | 2000-07-14 14:28:33 +0000 | [diff] [blame] | 6079 | #endif |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 6080 | #if defined(HAVE_DEV_PTMX) && !defined(HAVE_OPENPTY) && !defined(HAVE__GETPTY) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6081 | PyOS_sighandler_t sig_saved; |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 6082 | #ifdef sun |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6083 | extern char *ptsname(int fildes); |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 6084 | #endif |
| 6085 | #endif |
Thomas Wouters | 70c21a1 | 2000-07-14 14:28:33 +0000 | [diff] [blame] | 6086 | |
Thomas Wouters | 70c21a1 | 2000-07-14 14:28:33 +0000 | [diff] [blame] | 6087 | #ifdef HAVE_OPENPTY |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6088 | if (openpty(&master_fd, &slave_fd, NULL, NULL, NULL) != 0) |
| 6089 | return posix_error(); |
Neal Norwitz | b59798b | 2003-03-21 01:43:31 +0000 | [diff] [blame] | 6090 | #elif defined(HAVE__GETPTY) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6091 | slave_name = _getpty(&master_fd, O_RDWR, 0666, 0); |
| 6092 | if (slave_name == NULL) |
| 6093 | return posix_error(); |
Thomas Wouters | 70c21a1 | 2000-07-14 14:28:33 +0000 | [diff] [blame] | 6094 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6095 | slave_fd = open(slave_name, O_RDWR); |
| 6096 | if (slave_fd < 0) |
| 6097 | return posix_error(); |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 6098 | #else |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6099 | master_fd = open(DEV_PTY_FILE, O_RDWR | O_NOCTTY); /* open master */ |
| 6100 | if (master_fd < 0) |
| 6101 | return posix_error(); |
| 6102 | sig_saved = PyOS_setsig(SIGCHLD, SIG_DFL); |
| 6103 | /* change permission of slave */ |
| 6104 | if (grantpt(master_fd) < 0) { |
| 6105 | PyOS_setsig(SIGCHLD, sig_saved); |
| 6106 | return posix_error(); |
| 6107 | } |
| 6108 | /* unlock slave */ |
| 6109 | if (unlockpt(master_fd) < 0) { |
| 6110 | PyOS_setsig(SIGCHLD, sig_saved); |
| 6111 | return posix_error(); |
| 6112 | } |
| 6113 | PyOS_setsig(SIGCHLD, sig_saved); |
| 6114 | slave_name = ptsname(master_fd); /* get name of slave */ |
| 6115 | if (slave_name == NULL) |
| 6116 | return posix_error(); |
| 6117 | slave_fd = open(slave_name, O_RDWR | O_NOCTTY); /* open slave */ |
| 6118 | if (slave_fd < 0) |
| 6119 | return posix_error(); |
Neal Norwitz | b59798b | 2003-03-21 01:43:31 +0000 | [diff] [blame] | 6120 | #if !defined(__CYGWIN__) && !defined(HAVE_DEV_PTC) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6121 | ioctl(slave_fd, I_PUSH, "ptem"); /* push ptem */ |
| 6122 | ioctl(slave_fd, I_PUSH, "ldterm"); /* push ldterm */ |
Neal Norwitz | 6700e47 | 2002-12-31 16:16:07 +0000 | [diff] [blame] | 6123 | #ifndef __hpux |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6124 | ioctl(slave_fd, I_PUSH, "ttcompat"); /* push ttcompat */ |
Neal Norwitz | 6700e47 | 2002-12-31 16:16:07 +0000 | [diff] [blame] | 6125 | #endif /* __hpux */ |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 6126 | #endif /* HAVE_CYGWIN */ |
Thomas Wouters | 1e0c2f4 | 2000-07-24 16:06:23 +0000 | [diff] [blame] | 6127 | #endif /* HAVE_OPENPTY */ |
Thomas Wouters | 70c21a1 | 2000-07-14 14:28:33 +0000 | [diff] [blame] | 6128 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6129 | return Py_BuildValue("(ii)", master_fd, slave_fd); |
Thomas Wouters | 70c21a1 | 2000-07-14 14:28:33 +0000 | [diff] [blame] | 6130 | |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 6131 | } |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 6132 | #endif /* defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX) */ |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 6133 | |
| 6134 | #ifdef HAVE_FORKPTY |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6135 | PyDoc_STRVAR(posix_forkpty__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6136 | "forkpty() -> (pid, master_fd)\n\n\ |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 6137 | Fork a new process with a new pseudo-terminal as controlling tty.\n\n\ |
| 6138 | Like fork(), return 0 as pid to child process, and PID of child to parent.\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6139 | To both, return fd of newly opened pseudo-terminal.\n"); |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 6140 | |
| 6141 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 6142 | posix_forkpty(PyObject *self, PyObject *noargs) |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 6143 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6144 | int master_fd = -1, result = 0; |
| 6145 | pid_t pid; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 6146 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6147 | _PyImport_AcquireLock(); |
| 6148 | pid = forkpty(&master_fd, NULL, NULL, NULL); |
| 6149 | if (pid == 0) { |
| 6150 | /* child: this clobbers and resets the import lock. */ |
| 6151 | PyOS_AfterFork(); |
| 6152 | } else { |
| 6153 | /* parent: release the import lock. */ |
| 6154 | result = _PyImport_ReleaseLock(); |
| 6155 | } |
| 6156 | if (pid == -1) |
| 6157 | return posix_error(); |
| 6158 | if (result < 0) { |
| 6159 | /* Don't clobber the OSError if the fork failed. */ |
| 6160 | PyErr_SetString(PyExc_RuntimeError, |
| 6161 | "not holding the import lock"); |
| 6162 | return NULL; |
| 6163 | } |
| 6164 | return Py_BuildValue("(Ni)", PyLong_FromPid(pid), master_fd); |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 6165 | } |
| 6166 | #endif |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6167 | |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 6168 | |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 6169 | #ifdef HAVE_GETEGID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6170 | PyDoc_STRVAR(posix_getegid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6171 | "getegid() -> egid\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6172 | Return the current process's effective group id."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6173 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6174 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 6175 | posix_getegid(PyObject *self, PyObject *noargs) |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 6176 | { |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 6177 | return _PyLong_FromGid(getegid()); |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 6178 | } |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 6179 | #endif |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 6180 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6181 | |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 6182 | #ifdef HAVE_GETEUID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6183 | PyDoc_STRVAR(posix_geteuid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6184 | "geteuid() -> euid\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6185 | Return the current process's effective user id."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6186 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6187 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 6188 | posix_geteuid(PyObject *self, PyObject *noargs) |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 6189 | { |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 6190 | return _PyLong_FromUid(geteuid()); |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 6191 | } |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 6192 | #endif |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 6193 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6194 | |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 6195 | #ifdef HAVE_GETGID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6196 | PyDoc_STRVAR(posix_getgid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6197 | "getgid() -> gid\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6198 | Return the current process's group id."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6199 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6200 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 6201 | posix_getgid(PyObject *self, PyObject *noargs) |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 6202 | { |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 6203 | return _PyLong_FromGid(getgid()); |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 6204 | } |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 6205 | #endif |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 6206 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6207 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6208 | PyDoc_STRVAR(posix_getpid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6209 | "getpid() -> pid\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6210 | Return the current process id"); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6211 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6212 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 6213 | posix_getpid(PyObject *self, PyObject *noargs) |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 6214 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6215 | return PyLong_FromPid(getpid()); |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 6216 | } |
| 6217 | |
Ross Lagerwall | b0ae53d | 2011-06-10 07:30:30 +0200 | [diff] [blame] | 6218 | #ifdef HAVE_GETGROUPLIST |
| 6219 | PyDoc_STRVAR(posix_getgrouplist__doc__, |
| 6220 | "getgrouplist(user, group) -> list of groups to which a user belongs\n\n\ |
| 6221 | Returns a list of groups to which a user belongs.\n\n\ |
| 6222 | user: username to lookup\n\ |
| 6223 | group: base group id of the user"); |
| 6224 | |
| 6225 | static PyObject * |
| 6226 | posix_getgrouplist(PyObject *self, PyObject *args) |
| 6227 | { |
| 6228 | #ifdef NGROUPS_MAX |
| 6229 | #define MAX_GROUPS NGROUPS_MAX |
| 6230 | #else |
| 6231 | /* defined to be 16 on Solaris7, so this should be a small number */ |
| 6232 | #define MAX_GROUPS 64 |
| 6233 | #endif |
| 6234 | |
| 6235 | const char *user; |
| 6236 | int i, ngroups; |
| 6237 | PyObject *list; |
| 6238 | #ifdef __APPLE__ |
| 6239 | int *groups, basegid; |
| 6240 | #else |
| 6241 | gid_t *groups, basegid; |
| 6242 | #endif |
| 6243 | ngroups = MAX_GROUPS; |
| 6244 | |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 6245 | #ifdef __APPLE__ |
| 6246 | if (!PyArg_ParseTuple(args, "si:getgrouplist", &user, &basegid)) |
Ross Lagerwall | b0ae53d | 2011-06-10 07:30:30 +0200 | [diff] [blame] | 6247 | return NULL; |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 6248 | #else |
| 6249 | if (!PyArg_ParseTuple(args, "sO&:getgrouplist", &user, |
| 6250 | _Py_Gid_Converter, &basegid)) |
| 6251 | return NULL; |
| 6252 | #endif |
Ross Lagerwall | b0ae53d | 2011-06-10 07:30:30 +0200 | [diff] [blame] | 6253 | |
| 6254 | #ifdef __APPLE__ |
| 6255 | groups = PyMem_Malloc(ngroups * sizeof(int)); |
| 6256 | #else |
| 6257 | groups = PyMem_Malloc(ngroups * sizeof(gid_t)); |
| 6258 | #endif |
| 6259 | if (groups == NULL) |
| 6260 | return PyErr_NoMemory(); |
| 6261 | |
| 6262 | if (getgrouplist(user, basegid, groups, &ngroups) == -1) { |
| 6263 | PyMem_Del(groups); |
| 6264 | return posix_error(); |
| 6265 | } |
| 6266 | |
| 6267 | list = PyList_New(ngroups); |
| 6268 | if (list == NULL) { |
| 6269 | PyMem_Del(groups); |
| 6270 | return NULL; |
| 6271 | } |
| 6272 | |
| 6273 | for (i = 0; i < ngroups; i++) { |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 6274 | #ifdef __APPLE__ |
Ross Lagerwall | b0ae53d | 2011-06-10 07:30:30 +0200 | [diff] [blame] | 6275 | PyObject *o = PyLong_FromUnsignedLong((unsigned long)groups[i]); |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 6276 | #else |
| 6277 | PyObject *o = _PyLong_FromGid(groups[i]); |
| 6278 | #endif |
Ross Lagerwall | b0ae53d | 2011-06-10 07:30:30 +0200 | [diff] [blame] | 6279 | if (o == NULL) { |
| 6280 | Py_DECREF(list); |
| 6281 | PyMem_Del(groups); |
| 6282 | return NULL; |
| 6283 | } |
| 6284 | PyList_SET_ITEM(list, i, o); |
| 6285 | } |
| 6286 | |
| 6287 | PyMem_Del(groups); |
| 6288 | |
| 6289 | return list; |
| 6290 | } |
| 6291 | #endif |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6292 | |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 6293 | #ifdef HAVE_GETGROUPS |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6294 | PyDoc_STRVAR(posix_getgroups__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6295 | "getgroups() -> list of group IDs\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6296 | Return list of supplemental group IDs for the process."); |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 6297 | |
| 6298 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 6299 | posix_getgroups(PyObject *self, PyObject *noargs) |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 6300 | { |
| 6301 | PyObject *result = NULL; |
| 6302 | |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 6303 | #ifdef NGROUPS_MAX |
| 6304 | #define MAX_GROUPS NGROUPS_MAX |
| 6305 | #else |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6306 | /* defined to be 16 on Solaris7, so this should be a small number */ |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 6307 | #define MAX_GROUPS 64 |
| 6308 | #endif |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6309 | gid_t grouplist[MAX_GROUPS]; |
Ronald Oussoren | b6ee4f5 | 2010-07-23 13:53:51 +0000 | [diff] [blame] | 6310 | |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 6311 | /* On MacOSX getgroups(2) can return more than MAX_GROUPS results |
Ronald Oussoren | b6ee4f5 | 2010-07-23 13:53:51 +0000 | [diff] [blame] | 6312 | * This is a helper variable to store the intermediate result when |
| 6313 | * that happens. |
| 6314 | * |
| 6315 | * To keep the code readable the OSX behaviour is unconditional, |
| 6316 | * according to the POSIX spec this should be safe on all unix-y |
| 6317 | * systems. |
| 6318 | */ |
| 6319 | gid_t* alt_grouplist = grouplist; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6320 | int n; |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 6321 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6322 | n = getgroups(MAX_GROUPS, grouplist); |
Ronald Oussoren | b6ee4f5 | 2010-07-23 13:53:51 +0000 | [diff] [blame] | 6323 | if (n < 0) { |
| 6324 | if (errno == EINVAL) { |
| 6325 | n = getgroups(0, NULL); |
| 6326 | if (n == -1) { |
| 6327 | return posix_error(); |
| 6328 | } |
| 6329 | if (n == 0) { |
| 6330 | /* Avoid malloc(0) */ |
| 6331 | alt_grouplist = grouplist; |
| 6332 | } else { |
| 6333 | alt_grouplist = PyMem_Malloc(n * sizeof(gid_t)); |
| 6334 | if (alt_grouplist == NULL) { |
| 6335 | errno = EINVAL; |
| 6336 | return posix_error(); |
| 6337 | } |
| 6338 | n = getgroups(n, alt_grouplist); |
| 6339 | if (n == -1) { |
| 6340 | PyMem_Free(alt_grouplist); |
| 6341 | return posix_error(); |
| 6342 | } |
| 6343 | } |
| 6344 | } else { |
| 6345 | return posix_error(); |
| 6346 | } |
| 6347 | } |
| 6348 | result = PyList_New(n); |
| 6349 | if (result != NULL) { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6350 | int i; |
| 6351 | for (i = 0; i < n; ++i) { |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 6352 | PyObject *o = _PyLong_FromGid(alt_grouplist[i]); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6353 | if (o == NULL) { |
Stefan Krah | 0e803b3 | 2010-11-26 16:16:47 +0000 | [diff] [blame] | 6354 | Py_DECREF(result); |
| 6355 | result = NULL; |
| 6356 | break; |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 6357 | } |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6358 | PyList_SET_ITEM(result, i, o); |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 6359 | } |
Ronald Oussoren | b6ee4f5 | 2010-07-23 13:53:51 +0000 | [diff] [blame] | 6360 | } |
| 6361 | |
| 6362 | if (alt_grouplist != grouplist) { |
| 6363 | PyMem_Free(alt_grouplist); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6364 | } |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 6365 | |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 6366 | return result; |
| 6367 | } |
| 6368 | #endif |
| 6369 | |
Antoine Pitrou | b7572f0 | 2009-12-02 20:46:48 +0000 | [diff] [blame] | 6370 | #ifdef HAVE_INITGROUPS |
| 6371 | PyDoc_STRVAR(posix_initgroups__doc__, |
| 6372 | "initgroups(username, gid) -> None\n\n\ |
| 6373 | Call the system initgroups() to initialize the group access list with all of\n\ |
| 6374 | the groups of which the specified username is a member, plus the specified\n\ |
| 6375 | group id."); |
| 6376 | |
| 6377 | static PyObject * |
| 6378 | posix_initgroups(PyObject *self, PyObject *args) |
| 6379 | { |
Victor Stinner | 61ec5dc | 2010-08-15 09:22:44 +0000 | [diff] [blame] | 6380 | PyObject *oname; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6381 | char *username; |
Victor Stinner | 61ec5dc | 2010-08-15 09:22:44 +0000 | [diff] [blame] | 6382 | int res; |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 6383 | #ifdef __APPLE__ |
| 6384 | int gid; |
| 6385 | #else |
| 6386 | gid_t gid; |
| 6387 | #endif |
Antoine Pitrou | b7572f0 | 2009-12-02 20:46:48 +0000 | [diff] [blame] | 6388 | |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 6389 | #ifdef __APPLE__ |
| 6390 | if (!PyArg_ParseTuple(args, "O&i:initgroups", |
| 6391 | PyUnicode_FSConverter, &oname, |
| 6392 | &gid)) |
| 6393 | #else |
| 6394 | if (!PyArg_ParseTuple(args, "O&O&:initgroups", |
| 6395 | PyUnicode_FSConverter, &oname, |
| 6396 | _Py_Gid_Converter, &gid)) |
| 6397 | #endif |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6398 | return NULL; |
Victor Stinner | 61ec5dc | 2010-08-15 09:22:44 +0000 | [diff] [blame] | 6399 | username = PyBytes_AS_STRING(oname); |
Antoine Pitrou | b7572f0 | 2009-12-02 20:46:48 +0000 | [diff] [blame] | 6400 | |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 6401 | res = initgroups(username, gid); |
Victor Stinner | 61ec5dc | 2010-08-15 09:22:44 +0000 | [diff] [blame] | 6402 | Py_DECREF(oname); |
| 6403 | if (res == -1) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6404 | return PyErr_SetFromErrno(PyExc_OSError); |
Antoine Pitrou | b7572f0 | 2009-12-02 20:46:48 +0000 | [diff] [blame] | 6405 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6406 | Py_INCREF(Py_None); |
| 6407 | return Py_None; |
Antoine Pitrou | b7572f0 | 2009-12-02 20:46:48 +0000 | [diff] [blame] | 6408 | } |
| 6409 | #endif |
| 6410 | |
Martin v. Löwis | 606edc1 | 2002-06-13 21:09:11 +0000 | [diff] [blame] | 6411 | #ifdef HAVE_GETPGID |
Neal Norwitz | 0c2c17c | 2002-06-13 21:22:11 +0000 | [diff] [blame] | 6412 | PyDoc_STRVAR(posix_getpgid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6413 | "getpgid(pid) -> pgid\n\n\ |
Neal Norwitz | 0c2c17c | 2002-06-13 21:22:11 +0000 | [diff] [blame] | 6414 | Call the system call getpgid()."); |
Martin v. Löwis | 606edc1 | 2002-06-13 21:09:11 +0000 | [diff] [blame] | 6415 | |
| 6416 | static PyObject * |
| 6417 | posix_getpgid(PyObject *self, PyObject *args) |
| 6418 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6419 | pid_t pid, pgid; |
| 6420 | if (!PyArg_ParseTuple(args, _Py_PARSE_PID ":getpgid", &pid)) |
| 6421 | return NULL; |
| 6422 | pgid = getpgid(pid); |
| 6423 | if (pgid < 0) |
| 6424 | return posix_error(); |
| 6425 | return PyLong_FromPid(pgid); |
Martin v. Löwis | 606edc1 | 2002-06-13 21:09:11 +0000 | [diff] [blame] | 6426 | } |
| 6427 | #endif /* HAVE_GETPGID */ |
| 6428 | |
| 6429 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 6430 | #ifdef HAVE_GETPGRP |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6431 | PyDoc_STRVAR(posix_getpgrp__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6432 | "getpgrp() -> pgrp\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6433 | Return the current process group id."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6434 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6435 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 6436 | posix_getpgrp(PyObject *self, PyObject *noargs) |
Guido van Rossum | 0481447 | 1991-06-04 20:23:49 +0000 | [diff] [blame] | 6437 | { |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 6438 | #ifdef GETPGRP_HAVE_ARG |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6439 | return PyLong_FromPid(getpgrp(0)); |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 6440 | #else /* GETPGRP_HAVE_ARG */ |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6441 | return PyLong_FromPid(getpgrp()); |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 6442 | #endif /* GETPGRP_HAVE_ARG */ |
Guido van Rossum | 0481447 | 1991-06-04 20:23:49 +0000 | [diff] [blame] | 6443 | } |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 6444 | #endif /* HAVE_GETPGRP */ |
Guido van Rossum | 0481447 | 1991-06-04 20:23:49 +0000 | [diff] [blame] | 6445 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6446 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 6447 | #ifdef HAVE_SETPGRP |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6448 | PyDoc_STRVAR(posix_setpgrp__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6449 | "setpgrp()\n\n\ |
Senthil Kumaran | 684760a | 2010-06-17 16:48:06 +0000 | [diff] [blame] | 6450 | Make this process the process group leader."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6451 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6452 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 6453 | posix_setpgrp(PyObject *self, PyObject *noargs) |
Guido van Rossum | c2670a0 | 1992-09-13 20:07:29 +0000 | [diff] [blame] | 6454 | { |
Guido van Rossum | 6493389 | 1994-10-20 21:56:42 +0000 | [diff] [blame] | 6455 | #ifdef SETPGRP_HAVE_ARG |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6456 | if (setpgrp(0, 0) < 0) |
Guido van Rossum | 6493389 | 1994-10-20 21:56:42 +0000 | [diff] [blame] | 6457 | #else /* SETPGRP_HAVE_ARG */ |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6458 | if (setpgrp() < 0) |
Guido van Rossum | 6493389 | 1994-10-20 21:56:42 +0000 | [diff] [blame] | 6459 | #endif /* SETPGRP_HAVE_ARG */ |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6460 | return posix_error(); |
| 6461 | Py_INCREF(Py_None); |
| 6462 | return Py_None; |
Guido van Rossum | c2670a0 | 1992-09-13 20:07:29 +0000 | [diff] [blame] | 6463 | } |
| 6464 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 6465 | #endif /* HAVE_SETPGRP */ |
| 6466 | |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 6467 | #ifdef HAVE_GETPPID |
Amaury Forgeot d'Arc | 4b6fdf3 | 2010-09-07 21:31:17 +0000 | [diff] [blame] | 6468 | |
| 6469 | #ifdef MS_WINDOWS |
| 6470 | #include <tlhelp32.h> |
| 6471 | |
| 6472 | static PyObject* |
| 6473 | win32_getppid() |
| 6474 | { |
| 6475 | HANDLE snapshot; |
| 6476 | pid_t mypid; |
| 6477 | PyObject* result = NULL; |
| 6478 | BOOL have_record; |
| 6479 | PROCESSENTRY32 pe; |
| 6480 | |
| 6481 | mypid = getpid(); /* This function never fails */ |
| 6482 | |
| 6483 | snapshot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0); |
| 6484 | if (snapshot == INVALID_HANDLE_VALUE) |
| 6485 | return PyErr_SetFromWindowsErr(GetLastError()); |
| 6486 | |
| 6487 | pe.dwSize = sizeof(pe); |
| 6488 | have_record = Process32First(snapshot, &pe); |
| 6489 | while (have_record) { |
| 6490 | if (mypid == (pid_t)pe.th32ProcessID) { |
| 6491 | /* We could cache the ulong value in a static variable. */ |
| 6492 | result = PyLong_FromPid((pid_t)pe.th32ParentProcessID); |
| 6493 | break; |
| 6494 | } |
| 6495 | |
| 6496 | have_record = Process32Next(snapshot, &pe); |
| 6497 | } |
| 6498 | |
| 6499 | /* If our loop exits and our pid was not found (result will be NULL) |
| 6500 | * then GetLastError will return ERROR_NO_MORE_FILES. This is an |
| 6501 | * error anyway, so let's raise it. */ |
| 6502 | if (!result) |
| 6503 | result = PyErr_SetFromWindowsErr(GetLastError()); |
| 6504 | |
| 6505 | CloseHandle(snapshot); |
| 6506 | |
| 6507 | return result; |
| 6508 | } |
| 6509 | #endif /*MS_WINDOWS*/ |
| 6510 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6511 | PyDoc_STRVAR(posix_getppid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6512 | "getppid() -> ppid\n\n\ |
Amaury Forgeot d'Arc | 4b6fdf3 | 2010-09-07 21:31:17 +0000 | [diff] [blame] | 6513 | Return the parent's process id. If the parent process has already exited,\n\ |
| 6514 | Windows machines will still return its id; others systems will return the id\n\ |
| 6515 | of the 'init' process (1)."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6516 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6517 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 6518 | posix_getppid(PyObject *self, PyObject *noargs) |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 6519 | { |
Amaury Forgeot d'Arc | 4b6fdf3 | 2010-09-07 21:31:17 +0000 | [diff] [blame] | 6520 | #ifdef MS_WINDOWS |
| 6521 | return win32_getppid(); |
| 6522 | #else |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6523 | return PyLong_FromPid(getppid()); |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 6524 | #endif |
Amaury Forgeot d'Arc | 4b6fdf3 | 2010-09-07 21:31:17 +0000 | [diff] [blame] | 6525 | } |
| 6526 | #endif /* HAVE_GETPPID */ |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 6527 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6528 | |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 6529 | #ifdef HAVE_GETLOGIN |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6530 | PyDoc_STRVAR(posix_getlogin__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6531 | "getlogin() -> string\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6532 | Return the actual login name."); |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 6533 | |
| 6534 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 6535 | posix_getlogin(PyObject *self, PyObject *noargs) |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 6536 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6537 | PyObject *result = NULL; |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 6538 | #ifdef MS_WINDOWS |
Brian Curtin | e8e4b3b | 2010-09-23 20:04:14 +0000 | [diff] [blame] | 6539 | wchar_t user_name[UNLEN + 1]; |
Victor Stinner | 6394188 | 2011-09-29 00:42:28 +0200 | [diff] [blame] | 6540 | DWORD num_chars = Py_ARRAY_LENGTH(user_name); |
Brian Curtin | e8e4b3b | 2010-09-23 20:04:14 +0000 | [diff] [blame] | 6541 | |
| 6542 | if (GetUserNameW(user_name, &num_chars)) { |
| 6543 | /* num_chars is the number of unicode chars plus null terminator */ |
| 6544 | result = PyUnicode_FromWideChar(user_name, num_chars - 1); |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 6545 | } |
| 6546 | else |
Brian Curtin | e8e4b3b | 2010-09-23 20:04:14 +0000 | [diff] [blame] | 6547 | result = PyErr_SetFromWindowsErr(GetLastError()); |
| 6548 | #else |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6549 | char *name; |
| 6550 | int old_errno = errno; |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 6551 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6552 | errno = 0; |
| 6553 | name = getlogin(); |
| 6554 | if (name == NULL) { |
| 6555 | if (errno) |
Victor Stinner | e039ffe | 2010-08-15 09:33:08 +0000 | [diff] [blame] | 6556 | posix_error(); |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 6557 | else |
Victor Stinner | e039ffe | 2010-08-15 09:33:08 +0000 | [diff] [blame] | 6558 | PyErr_SetString(PyExc_OSError, "unable to determine login name"); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6559 | } |
| 6560 | else |
Victor Stinner | e039ffe | 2010-08-15 09:33:08 +0000 | [diff] [blame] | 6561 | result = PyUnicode_DecodeFSDefault(name); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6562 | errno = old_errno; |
Brian Curtin | e8e4b3b | 2010-09-23 20:04:14 +0000 | [diff] [blame] | 6563 | #endif |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 6564 | return result; |
| 6565 | } |
Brian Curtin | e8e4b3b | 2010-09-23 20:04:14 +0000 | [diff] [blame] | 6566 | #endif /* HAVE_GETLOGIN */ |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 6567 | |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 6568 | #ifdef HAVE_GETUID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6569 | PyDoc_STRVAR(posix_getuid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6570 | "getuid() -> uid\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6571 | Return the current process's user id."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6572 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6573 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 6574 | posix_getuid(PyObject *self, PyObject *noargs) |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 6575 | { |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 6576 | return _PyLong_FromUid(getuid()); |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 6577 | } |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 6578 | #endif |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 6579 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6580 | |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 6581 | #ifdef HAVE_KILL |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6582 | PyDoc_STRVAR(posix_kill__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6583 | "kill(pid, sig)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6584 | Kill a process with a signal."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6585 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6586 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6587 | posix_kill(PyObject *self, PyObject *args) |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 6588 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6589 | pid_t pid; |
| 6590 | int sig; |
| 6591 | if (!PyArg_ParseTuple(args, _Py_PARSE_PID "i:kill", &pid, &sig)) |
| 6592 | return NULL; |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 6593 | #if defined(PYOS_OS2) && !defined(PYCC_GCC) |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 6594 | if (sig == XCPT_SIGNAL_INTR || sig == XCPT_SIGNAL_BREAK) { |
| 6595 | APIRET rc; |
| 6596 | if ((rc = DosSendSignalException(pid, sig)) != NO_ERROR) |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 6597 | return os2_error(rc); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 6598 | |
| 6599 | } else if (sig == XCPT_SIGNAL_KILLPROC) { |
| 6600 | APIRET rc; |
| 6601 | if ((rc = DosKillProcess(DKP_PROCESS, pid)) != NO_ERROR) |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 6602 | return os2_error(rc); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 6603 | |
| 6604 | } else |
Guido van Rossum | c5a0f53 | 1997-12-02 20:36:02 +0000 | [diff] [blame] | 6605 | return NULL; /* Unrecognized Signal Requested */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 6606 | #else |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6607 | if (kill(pid, sig) == -1) |
| 6608 | return posix_error(); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 6609 | #endif |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6610 | Py_INCREF(Py_None); |
| 6611 | return Py_None; |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 6612 | } |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 6613 | #endif |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 6614 | |
Martin v. Löwis | b2c92f4 | 2002-02-16 23:35:41 +0000 | [diff] [blame] | 6615 | #ifdef HAVE_KILLPG |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6616 | PyDoc_STRVAR(posix_killpg__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6617 | "killpg(pgid, sig)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6618 | Kill a process group with a signal."); |
Martin v. Löwis | b2c92f4 | 2002-02-16 23:35:41 +0000 | [diff] [blame] | 6619 | |
| 6620 | static PyObject * |
| 6621 | posix_killpg(PyObject *self, PyObject *args) |
| 6622 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6623 | int sig; |
| 6624 | pid_t pgid; |
| 6625 | /* XXX some man pages make the `pgid` parameter an int, others |
| 6626 | a pid_t. Since getpgrp() returns a pid_t, we assume killpg should |
| 6627 | take the same type. Moreover, pid_t is always at least as wide as |
| 6628 | int (else compilation of this module fails), which is safe. */ |
| 6629 | if (!PyArg_ParseTuple(args, _Py_PARSE_PID "i:killpg", &pgid, &sig)) |
| 6630 | return NULL; |
| 6631 | if (killpg(pgid, sig) == -1) |
| 6632 | return posix_error(); |
| 6633 | Py_INCREF(Py_None); |
| 6634 | return Py_None; |
Martin v. Löwis | b2c92f4 | 2002-02-16 23:35:41 +0000 | [diff] [blame] | 6635 | } |
| 6636 | #endif |
| 6637 | |
Brian Curtin | eb24d74 | 2010-04-12 17:16:38 +0000 | [diff] [blame] | 6638 | #ifdef MS_WINDOWS |
| 6639 | PyDoc_STRVAR(win32_kill__doc__, |
| 6640 | "kill(pid, sig)\n\n\ |
| 6641 | Kill a process with a signal."); |
| 6642 | |
| 6643 | static PyObject * |
| 6644 | win32_kill(PyObject *self, PyObject *args) |
| 6645 | { |
Amaury Forgeot d'Arc | 0a589c9 | 2010-05-15 20:35:12 +0000 | [diff] [blame] | 6646 | PyObject *result; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6647 | DWORD pid, sig, err; |
| 6648 | HANDLE handle; |
Brian Curtin | eb24d74 | 2010-04-12 17:16:38 +0000 | [diff] [blame] | 6649 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6650 | if (!PyArg_ParseTuple(args, "kk:kill", &pid, &sig)) |
| 6651 | return NULL; |
Brian Curtin | eb24d74 | 2010-04-12 17:16:38 +0000 | [diff] [blame] | 6652 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6653 | /* Console processes which share a common console can be sent CTRL+C or |
| 6654 | CTRL+BREAK events, provided they handle said events. */ |
| 6655 | if (sig == CTRL_C_EVENT || sig == CTRL_BREAK_EVENT) { |
| 6656 | if (GenerateConsoleCtrlEvent(sig, pid) == 0) { |
| 6657 | err = GetLastError(); |
| 6658 | PyErr_SetFromWindowsErr(err); |
| 6659 | } |
| 6660 | else |
| 6661 | Py_RETURN_NONE; |
| 6662 | } |
Brian Curtin | eb24d74 | 2010-04-12 17:16:38 +0000 | [diff] [blame] | 6663 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6664 | /* If the signal is outside of what GenerateConsoleCtrlEvent can use, |
| 6665 | attempt to open and terminate the process. */ |
| 6666 | handle = OpenProcess(PROCESS_ALL_ACCESS, FALSE, pid); |
| 6667 | if (handle == NULL) { |
| 6668 | err = GetLastError(); |
| 6669 | return PyErr_SetFromWindowsErr(err); |
| 6670 | } |
Brian Curtin | eb24d74 | 2010-04-12 17:16:38 +0000 | [diff] [blame] | 6671 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6672 | if (TerminateProcess(handle, sig) == 0) { |
| 6673 | err = GetLastError(); |
| 6674 | result = PyErr_SetFromWindowsErr(err); |
| 6675 | } else { |
| 6676 | Py_INCREF(Py_None); |
| 6677 | result = Py_None; |
| 6678 | } |
Brian Curtin | eb24d74 | 2010-04-12 17:16:38 +0000 | [diff] [blame] | 6679 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6680 | CloseHandle(handle); |
| 6681 | return result; |
Brian Curtin | eb24d74 | 2010-04-12 17:16:38 +0000 | [diff] [blame] | 6682 | } |
| 6683 | #endif /* MS_WINDOWS */ |
| 6684 | |
Guido van Rossum | c012547 | 1996-06-28 18:55:32 +0000 | [diff] [blame] | 6685 | #ifdef HAVE_PLOCK |
| 6686 | |
| 6687 | #ifdef HAVE_SYS_LOCK_H |
| 6688 | #include <sys/lock.h> |
| 6689 | #endif |
| 6690 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6691 | PyDoc_STRVAR(posix_plock__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6692 | "plock(op)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6693 | Lock program segments into memory."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6694 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6695 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6696 | posix_plock(PyObject *self, PyObject *args) |
Guido van Rossum | c012547 | 1996-06-28 18:55:32 +0000 | [diff] [blame] | 6697 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6698 | int op; |
| 6699 | if (!PyArg_ParseTuple(args, "i:plock", &op)) |
| 6700 | return NULL; |
| 6701 | if (plock(op) == -1) |
| 6702 | return posix_error(); |
| 6703 | Py_INCREF(Py_None); |
| 6704 | return Py_None; |
Guido van Rossum | c012547 | 1996-06-28 18:55:32 +0000 | [diff] [blame] | 6705 | } |
| 6706 | #endif |
| 6707 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 6708 | #ifdef HAVE_SETUID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6709 | PyDoc_STRVAR(posix_setuid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6710 | "setuid(uid)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6711 | Set the current process's user id."); |
| 6712 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6713 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6714 | posix_setuid(PyObject *self, PyObject *args) |
Guido van Rossum | a3d78fb | 1993-11-10 09:23:53 +0000 | [diff] [blame] | 6715 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6716 | uid_t uid; |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 6717 | if (!PyArg_ParseTuple(args, "O&:setuid", _Py_Uid_Converter, &uid)) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6718 | return NULL; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6719 | if (setuid(uid) < 0) |
| 6720 | return posix_error(); |
| 6721 | Py_INCREF(Py_None); |
| 6722 | return Py_None; |
Guido van Rossum | a3d78fb | 1993-11-10 09:23:53 +0000 | [diff] [blame] | 6723 | } |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 6724 | #endif /* HAVE_SETUID */ |
Guido van Rossum | a3d78fb | 1993-11-10 09:23:53 +0000 | [diff] [blame] | 6725 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6726 | |
Andrew M. Kuchling | 8d2f2b2d | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 6727 | #ifdef HAVE_SETEUID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6728 | PyDoc_STRVAR(posix_seteuid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6729 | "seteuid(uid)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6730 | Set the current process's effective user id."); |
| 6731 | |
Andrew M. Kuchling | 8d2f2b2d | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 6732 | static PyObject * |
| 6733 | posix_seteuid (PyObject *self, PyObject *args) |
| 6734 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6735 | uid_t euid; |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 6736 | if (!PyArg_ParseTuple(args, "O&:seteuid", _Py_Uid_Converter, &euid)) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6737 | return NULL; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6738 | if (seteuid(euid) < 0) { |
| 6739 | return posix_error(); |
| 6740 | } else { |
| 6741 | Py_INCREF(Py_None); |
| 6742 | return Py_None; |
| 6743 | } |
Andrew M. Kuchling | 8d2f2b2d | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 6744 | } |
| 6745 | #endif /* HAVE_SETEUID */ |
| 6746 | |
| 6747 | #ifdef HAVE_SETEGID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6748 | PyDoc_STRVAR(posix_setegid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6749 | "setegid(gid)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6750 | Set the current process's effective group id."); |
| 6751 | |
Andrew M. Kuchling | 8d2f2b2d | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 6752 | static PyObject * |
| 6753 | posix_setegid (PyObject *self, PyObject *args) |
| 6754 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6755 | gid_t egid; |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 6756 | if (!PyArg_ParseTuple(args, "O&:setegid", _Py_Gid_Converter, &egid)) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6757 | return NULL; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6758 | if (setegid(egid) < 0) { |
| 6759 | return posix_error(); |
| 6760 | } else { |
| 6761 | Py_INCREF(Py_None); |
| 6762 | return Py_None; |
| 6763 | } |
Andrew M. Kuchling | 8d2f2b2d | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 6764 | } |
| 6765 | #endif /* HAVE_SETEGID */ |
| 6766 | |
| 6767 | #ifdef HAVE_SETREUID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6768 | PyDoc_STRVAR(posix_setreuid__doc__, |
Neal Norwitz | 94f1d71 | 2004-02-16 01:26:34 +0000 | [diff] [blame] | 6769 | "setreuid(ruid, euid)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6770 | Set the current process's real and effective user ids."); |
| 6771 | |
Andrew M. Kuchling | 8d2f2b2d | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 6772 | static PyObject * |
| 6773 | posix_setreuid (PyObject *self, PyObject *args) |
| 6774 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6775 | uid_t ruid, euid; |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 6776 | if (!PyArg_ParseTuple(args, "O&O&:setreuid", |
| 6777 | _Py_Uid_Converter, &ruid, |
| 6778 | _Py_Uid_Converter, &euid)) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6779 | return NULL; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6780 | if (setreuid(ruid, euid) < 0) { |
| 6781 | return posix_error(); |
| 6782 | } else { |
| 6783 | Py_INCREF(Py_None); |
| 6784 | return Py_None; |
| 6785 | } |
Andrew M. Kuchling | 8d2f2b2d | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 6786 | } |
| 6787 | #endif /* HAVE_SETREUID */ |
| 6788 | |
| 6789 | #ifdef HAVE_SETREGID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6790 | PyDoc_STRVAR(posix_setregid__doc__, |
Neal Norwitz | 94f1d71 | 2004-02-16 01:26:34 +0000 | [diff] [blame] | 6791 | "setregid(rgid, egid)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6792 | Set the current process's real and effective group ids."); |
| 6793 | |
Andrew M. Kuchling | 8d2f2b2d | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 6794 | static PyObject * |
| 6795 | posix_setregid (PyObject *self, PyObject *args) |
| 6796 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6797 | gid_t rgid, egid; |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 6798 | if (!PyArg_ParseTuple(args, "O&O&:setregid", |
| 6799 | _Py_Gid_Converter, &rgid, |
| 6800 | _Py_Gid_Converter, &egid)) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6801 | return NULL; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6802 | if (setregid(rgid, egid) < 0) { |
| 6803 | return posix_error(); |
| 6804 | } else { |
| 6805 | Py_INCREF(Py_None); |
| 6806 | return Py_None; |
| 6807 | } |
Andrew M. Kuchling | 8d2f2b2d | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 6808 | } |
| 6809 | #endif /* HAVE_SETREGID */ |
| 6810 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 6811 | #ifdef HAVE_SETGID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6812 | PyDoc_STRVAR(posix_setgid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6813 | "setgid(gid)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6814 | Set the current process's group id."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6815 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 6816 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 6817 | posix_setgid(PyObject *self, PyObject *args) |
Guido van Rossum | a3d78fb | 1993-11-10 09:23:53 +0000 | [diff] [blame] | 6818 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6819 | gid_t gid; |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 6820 | if (!PyArg_ParseTuple(args, "O&:setgid", _Py_Gid_Converter, &gid)) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6821 | return NULL; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6822 | if (setgid(gid) < 0) |
| 6823 | return posix_error(); |
| 6824 | Py_INCREF(Py_None); |
| 6825 | return Py_None; |
Guido van Rossum | a3d78fb | 1993-11-10 09:23:53 +0000 | [diff] [blame] | 6826 | } |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 6827 | #endif /* HAVE_SETGID */ |
Guido van Rossum | a3d78fb | 1993-11-10 09:23:53 +0000 | [diff] [blame] | 6828 | |
Martin v. Löwis | 61c5edf | 2001-10-18 04:06:00 +0000 | [diff] [blame] | 6829 | #ifdef HAVE_SETGROUPS |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6830 | PyDoc_STRVAR(posix_setgroups__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 6831 | "setgroups(list)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 6832 | Set the groups of the current process to list."); |
Martin v. Löwis | 61c5edf | 2001-10-18 04:06:00 +0000 | [diff] [blame] | 6833 | |
| 6834 | static PyObject * |
Thomas Wouters | 4d70c3d | 2006-06-08 14:42:34 +0000 | [diff] [blame] | 6835 | posix_setgroups(PyObject *self, PyObject *groups) |
Martin v. Löwis | 61c5edf | 2001-10-18 04:06:00 +0000 | [diff] [blame] | 6836 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6837 | int i, len; |
| 6838 | gid_t grouplist[MAX_GROUPS]; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 6839 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6840 | if (!PySequence_Check(groups)) { |
| 6841 | PyErr_SetString(PyExc_TypeError, "setgroups argument must be a sequence"); |
| 6842 | return NULL; |
| 6843 | } |
| 6844 | len = PySequence_Size(groups); |
| 6845 | if (len > MAX_GROUPS) { |
| 6846 | PyErr_SetString(PyExc_ValueError, "too many groups"); |
| 6847 | return NULL; |
| 6848 | } |
| 6849 | for(i = 0; i < len; i++) { |
| 6850 | PyObject *elem; |
| 6851 | elem = PySequence_GetItem(groups, i); |
| 6852 | if (!elem) |
| 6853 | return NULL; |
| 6854 | if (!PyLong_Check(elem)) { |
| 6855 | PyErr_SetString(PyExc_TypeError, |
| 6856 | "groups must be integers"); |
| 6857 | Py_DECREF(elem); |
| 6858 | return NULL; |
| 6859 | } else { |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 6860 | if (!_Py_Gid_Converter(elem, &grouplist[i])) { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6861 | Py_DECREF(elem); |
| 6862 | return NULL; |
| 6863 | } |
| 6864 | } |
| 6865 | Py_DECREF(elem); |
| 6866 | } |
Martin v. Löwis | 61c5edf | 2001-10-18 04:06:00 +0000 | [diff] [blame] | 6867 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6868 | if (setgroups(len, grouplist) < 0) |
| 6869 | return posix_error(); |
| 6870 | Py_INCREF(Py_None); |
| 6871 | return Py_None; |
Martin v. Löwis | 61c5edf | 2001-10-18 04:06:00 +0000 | [diff] [blame] | 6872 | } |
| 6873 | #endif /* HAVE_SETGROUPS */ |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 6874 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 6875 | #if defined(HAVE_WAIT3) || defined(HAVE_WAIT4) |
| 6876 | static PyObject * |
Victor Stinner | 4195b5c | 2012-02-08 23:03:19 +0100 | [diff] [blame] | 6877 | wait_helper(pid_t pid, int status, struct rusage *ru) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 6878 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6879 | PyObject *result; |
| 6880 | static PyObject *struct_rusage; |
Martin v. Löwis | bd928fe | 2011-10-14 10:20:37 +0200 | [diff] [blame] | 6881 | _Py_IDENTIFIER(struct_rusage); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 6882 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6883 | if (pid == -1) |
| 6884 | return posix_error(); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 6885 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6886 | if (struct_rusage == NULL) { |
| 6887 | PyObject *m = PyImport_ImportModuleNoBlock("resource"); |
| 6888 | if (m == NULL) |
| 6889 | return NULL; |
Martin v. Löwis | 1ee1b6f | 2011-10-10 18:11:30 +0200 | [diff] [blame] | 6890 | struct_rusage = _PyObject_GetAttrId(m, &PyId_struct_rusage); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6891 | Py_DECREF(m); |
| 6892 | if (struct_rusage == NULL) |
| 6893 | return NULL; |
| 6894 | } |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 6895 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6896 | /* XXX(nnorwitz): Copied (w/mods) from resource.c, there should be only one. */ |
| 6897 | result = PyStructSequence_New((PyTypeObject*) struct_rusage); |
| 6898 | if (!result) |
| 6899 | return NULL; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 6900 | |
| 6901 | #ifndef doubletime |
| 6902 | #define doubletime(TV) ((double)(TV).tv_sec + (TV).tv_usec * 0.000001) |
| 6903 | #endif |
| 6904 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6905 | PyStructSequence_SET_ITEM(result, 0, |
Victor Stinner | 4195b5c | 2012-02-08 23:03:19 +0100 | [diff] [blame] | 6906 | PyFloat_FromDouble(doubletime(ru->ru_utime))); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6907 | PyStructSequence_SET_ITEM(result, 1, |
Victor Stinner | 4195b5c | 2012-02-08 23:03:19 +0100 | [diff] [blame] | 6908 | PyFloat_FromDouble(doubletime(ru->ru_stime))); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 6909 | #define SET_INT(result, index, value)\ |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6910 | PyStructSequence_SET_ITEM(result, index, PyLong_FromLong(value)) |
| 6911 | SET_INT(result, 2, ru->ru_maxrss); |
| 6912 | SET_INT(result, 3, ru->ru_ixrss); |
| 6913 | SET_INT(result, 4, ru->ru_idrss); |
| 6914 | SET_INT(result, 5, ru->ru_isrss); |
| 6915 | SET_INT(result, 6, ru->ru_minflt); |
| 6916 | SET_INT(result, 7, ru->ru_majflt); |
| 6917 | SET_INT(result, 8, ru->ru_nswap); |
| 6918 | SET_INT(result, 9, ru->ru_inblock); |
| 6919 | SET_INT(result, 10, ru->ru_oublock); |
| 6920 | SET_INT(result, 11, ru->ru_msgsnd); |
| 6921 | SET_INT(result, 12, ru->ru_msgrcv); |
| 6922 | SET_INT(result, 13, ru->ru_nsignals); |
| 6923 | SET_INT(result, 14, ru->ru_nvcsw); |
| 6924 | SET_INT(result, 15, ru->ru_nivcsw); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 6925 | #undef SET_INT |
| 6926 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6927 | if (PyErr_Occurred()) { |
| 6928 | Py_DECREF(result); |
| 6929 | return NULL; |
| 6930 | } |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 6931 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6932 | return Py_BuildValue("NiN", PyLong_FromPid(pid), status, result); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 6933 | } |
| 6934 | #endif /* HAVE_WAIT3 || HAVE_WAIT4 */ |
| 6935 | |
| 6936 | #ifdef HAVE_WAIT3 |
| 6937 | PyDoc_STRVAR(posix_wait3__doc__, |
Victor Stinner | 4195b5c | 2012-02-08 23:03:19 +0100 | [diff] [blame] | 6938 | "wait3(options) -> (pid, status, rusage)\n\n\ |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 6939 | Wait for completion of a child process."); |
| 6940 | |
| 6941 | static PyObject * |
Victor Stinner | 4195b5c | 2012-02-08 23:03:19 +0100 | [diff] [blame] | 6942 | posix_wait3(PyObject *self, PyObject *args) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 6943 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6944 | pid_t pid; |
| 6945 | int options; |
| 6946 | struct rusage ru; |
| 6947 | WAIT_TYPE status; |
| 6948 | WAIT_STATUS_INT(status) = 0; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 6949 | |
Victor Stinner | 4195b5c | 2012-02-08 23:03:19 +0100 | [diff] [blame] | 6950 | if (!PyArg_ParseTuple(args, "i:wait3", &options)) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6951 | return NULL; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 6952 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6953 | Py_BEGIN_ALLOW_THREADS |
| 6954 | pid = wait3(&status, options, &ru); |
| 6955 | Py_END_ALLOW_THREADS |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 6956 | |
Victor Stinner | 4195b5c | 2012-02-08 23:03:19 +0100 | [diff] [blame] | 6957 | return wait_helper(pid, WAIT_STATUS_INT(status), &ru); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 6958 | } |
| 6959 | #endif /* HAVE_WAIT3 */ |
| 6960 | |
| 6961 | #ifdef HAVE_WAIT4 |
| 6962 | PyDoc_STRVAR(posix_wait4__doc__, |
Victor Stinner | 4195b5c | 2012-02-08 23:03:19 +0100 | [diff] [blame] | 6963 | "wait4(pid, options) -> (pid, status, rusage)\n\n\ |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 6964 | Wait for completion of a given child process."); |
| 6965 | |
| 6966 | static PyObject * |
Victor Stinner | 4195b5c | 2012-02-08 23:03:19 +0100 | [diff] [blame] | 6967 | posix_wait4(PyObject *self, PyObject *args) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 6968 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6969 | pid_t pid; |
| 6970 | int options; |
| 6971 | struct rusage ru; |
| 6972 | WAIT_TYPE status; |
| 6973 | WAIT_STATUS_INT(status) = 0; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 6974 | |
Victor Stinner | 4195b5c | 2012-02-08 23:03:19 +0100 | [diff] [blame] | 6975 | if (!PyArg_ParseTuple(args, _Py_PARSE_PID "i:wait4", &pid, &options)) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6976 | return NULL; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 6977 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 6978 | Py_BEGIN_ALLOW_THREADS |
| 6979 | pid = wait4(pid, &status, options, &ru); |
| 6980 | Py_END_ALLOW_THREADS |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 6981 | |
Victor Stinner | 4195b5c | 2012-02-08 23:03:19 +0100 | [diff] [blame] | 6982 | return wait_helper(pid, WAIT_STATUS_INT(status), &ru); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 6983 | } |
| 6984 | #endif /* HAVE_WAIT4 */ |
| 6985 | |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 6986 | #if defined(HAVE_WAITID) && !defined(__APPLE__) |
| 6987 | PyDoc_STRVAR(posix_waitid__doc__, |
| 6988 | "waitid(idtype, id, options) -> waitid_result\n\n\ |
| 6989 | Wait for the completion of one or more child processes.\n\n\ |
| 6990 | idtype can be P_PID, P_PGID or P_ALL.\n\ |
| 6991 | id specifies the pid to wait on.\n\ |
| 6992 | options is constructed from the ORing of one or more of WEXITED, WSTOPPED\n\ |
| 6993 | or WCONTINUED and additionally may be ORed with WNOHANG or WNOWAIT.\n\ |
| 6994 | Returns either waitid_result or None if WNOHANG is specified and there are\n\ |
| 6995 | no children in a waitable state."); |
| 6996 | |
| 6997 | static PyObject * |
| 6998 | posix_waitid(PyObject *self, PyObject *args) |
| 6999 | { |
| 7000 | PyObject *result; |
| 7001 | idtype_t idtype; |
| 7002 | id_t id; |
| 7003 | int options, res; |
| 7004 | siginfo_t si; |
| 7005 | si.si_pid = 0; |
| 7006 | if (!PyArg_ParseTuple(args, "i" _Py_PARSE_PID "i:waitid", &idtype, &id, &options)) |
| 7007 | return NULL; |
| 7008 | Py_BEGIN_ALLOW_THREADS |
| 7009 | res = waitid(idtype, id, &si, options); |
| 7010 | Py_END_ALLOW_THREADS |
| 7011 | if (res == -1) |
| 7012 | return posix_error(); |
| 7013 | |
| 7014 | if (si.si_pid == 0) |
| 7015 | Py_RETURN_NONE; |
| 7016 | |
| 7017 | result = PyStructSequence_New(&WaitidResultType); |
| 7018 | if (!result) |
| 7019 | return NULL; |
| 7020 | |
| 7021 | PyStructSequence_SET_ITEM(result, 0, PyLong_FromPid(si.si_pid)); |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 7022 | PyStructSequence_SET_ITEM(result, 1, _PyLong_FromUid(si.si_uid)); |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 7023 | PyStructSequence_SET_ITEM(result, 2, PyLong_FromLong((long)(si.si_signo))); |
| 7024 | PyStructSequence_SET_ITEM(result, 3, PyLong_FromLong((long)(si.si_status))); |
| 7025 | PyStructSequence_SET_ITEM(result, 4, PyLong_FromLong((long)(si.si_code))); |
| 7026 | if (PyErr_Occurred()) { |
| 7027 | Py_DECREF(result); |
| 7028 | return NULL; |
| 7029 | } |
| 7030 | |
| 7031 | return result; |
| 7032 | } |
| 7033 | #endif |
| 7034 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 7035 | #ifdef HAVE_WAITPID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7036 | PyDoc_STRVAR(posix_waitpid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 7037 | "waitpid(pid, options) -> (pid, status)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7038 | Wait for completion of a given child process."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 7039 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 7040 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 7041 | posix_waitpid(PyObject *self, PyObject *args) |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 7042 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7043 | pid_t pid; |
| 7044 | int options; |
| 7045 | WAIT_TYPE status; |
| 7046 | WAIT_STATUS_INT(status) = 0; |
Guido van Rossum | 54ecc3d | 1999-01-27 17:53:11 +0000 | [diff] [blame] | 7047 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7048 | if (!PyArg_ParseTuple(args, _Py_PARSE_PID "i:waitpid", &pid, &options)) |
| 7049 | return NULL; |
| 7050 | Py_BEGIN_ALLOW_THREADS |
| 7051 | pid = waitpid(pid, &status, options); |
| 7052 | Py_END_ALLOW_THREADS |
| 7053 | if (pid == -1) |
| 7054 | return posix_error(); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 7055 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7056 | return Py_BuildValue("Ni", PyLong_FromPid(pid), WAIT_STATUS_INT(status)); |
Guido van Rossum | 21803b8 | 1992-08-09 12:55:27 +0000 | [diff] [blame] | 7057 | } |
| 7058 | |
Tim Peters | ab034fa | 2002-02-01 11:27:43 +0000 | [diff] [blame] | 7059 | #elif defined(HAVE_CWAIT) |
| 7060 | |
| 7061 | /* MS C has a variant of waitpid() that's usable for most purposes. */ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7062 | PyDoc_STRVAR(posix_waitpid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 7063 | "waitpid(pid, options) -> (pid, status << 8)\n\n" |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7064 | "Wait for completion of a given process. options is ignored on Windows."); |
Tim Peters | ab034fa | 2002-02-01 11:27:43 +0000 | [diff] [blame] | 7065 | |
| 7066 | static PyObject * |
| 7067 | posix_waitpid(PyObject *self, PyObject *args) |
| 7068 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7069 | Py_intptr_t pid; |
| 7070 | int status, options; |
Tim Peters | ab034fa | 2002-02-01 11:27:43 +0000 | [diff] [blame] | 7071 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7072 | if (!PyArg_ParseTuple(args, _Py_PARSE_PID "i:waitpid", &pid, &options)) |
| 7073 | return NULL; |
| 7074 | Py_BEGIN_ALLOW_THREADS |
| 7075 | pid = _cwait(&status, pid, options); |
| 7076 | Py_END_ALLOW_THREADS |
| 7077 | if (pid == -1) |
| 7078 | return posix_error(); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 7079 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7080 | /* shift the status left a byte so this is more like the POSIX waitpid */ |
| 7081 | return Py_BuildValue("Ni", PyLong_FromPid(pid), status << 8); |
Tim Peters | ab034fa | 2002-02-01 11:27:43 +0000 | [diff] [blame] | 7082 | } |
| 7083 | #endif /* HAVE_WAITPID || HAVE_CWAIT */ |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 7084 | |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 7085 | #ifdef HAVE_WAIT |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7086 | PyDoc_STRVAR(posix_wait__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 7087 | "wait() -> (pid, status)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7088 | Wait for completion of a child process."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 7089 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 7090 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 7091 | posix_wait(PyObject *self, PyObject *noargs) |
Guido van Rossum | 21803b8 | 1992-08-09 12:55:27 +0000 | [diff] [blame] | 7092 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7093 | pid_t pid; |
| 7094 | WAIT_TYPE status; |
| 7095 | WAIT_STATUS_INT(status) = 0; |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 7096 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7097 | Py_BEGIN_ALLOW_THREADS |
| 7098 | pid = wait(&status); |
| 7099 | Py_END_ALLOW_THREADS |
| 7100 | if (pid == -1) |
| 7101 | return posix_error(); |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 7102 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7103 | return Py_BuildValue("Ni", PyLong_FromPid(pid), WAIT_STATUS_INT(status)); |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 7104 | } |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 7105 | #endif |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 7106 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 7107 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 7108 | #if defined(HAVE_READLINK) || defined(MS_WINDOWS) |
| 7109 | PyDoc_STRVAR(readlink__doc__, |
| 7110 | "readlink(path, *, dir_fd=None) -> path\n\n\ |
| 7111 | Return a string representing the path to which the symbolic link points.\n\ |
| 7112 | \n\ |
| 7113 | If dir_fd is not None, it should be a file descriptor open to a directory,\n\ |
| 7114 | and path should be relative; path will then be relative to that directory.\n\ |
| 7115 | dir_fd may not be implemented on your platform.\n\ |
| 7116 | If it is unavailable, using it will raise a NotImplementedError."); |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 7117 | #endif |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 7118 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 7119 | #ifdef HAVE_READLINK |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 7120 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 7121 | static PyObject * |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 7122 | posix_readlink(PyObject *self, PyObject *args, PyObject *kwargs) |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 7123 | { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 7124 | path_t path; |
| 7125 | int dir_fd = DEFAULT_DIR_FD; |
| 7126 | char buffer[MAXPATHLEN]; |
| 7127 | ssize_t length; |
| 7128 | PyObject *return_value = NULL; |
| 7129 | static char *keywords[] = {"path", "dir_fd", NULL}; |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 7130 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 7131 | memset(&path, 0, sizeof(path)); |
| 7132 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&|$O&:readlink", keywords, |
| 7133 | path_converter, &path, |
| 7134 | #ifdef HAVE_READLINKAT |
| 7135 | dir_fd_converter, &dir_fd |
| 7136 | #else |
| 7137 | dir_fd_unavailable, &dir_fd |
| 7138 | #endif |
| 7139 | )) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7140 | return NULL; |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 7141 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7142 | Py_BEGIN_ALLOW_THREADS |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 7143 | #ifdef HAVE_READLINKAT |
| 7144 | if (dir_fd != DEFAULT_DIR_FD) |
| 7145 | length = readlinkat(dir_fd, path.narrow, buffer, sizeof(buffer)); |
Victor Stinner | a45598a | 2010-05-14 16:35:39 +0000 | [diff] [blame] | 7146 | else |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 7147 | #endif |
| 7148 | length = readlink(path.narrow, buffer, sizeof(buffer)); |
| 7149 | Py_END_ALLOW_THREADS |
| 7150 | |
| 7151 | if (length < 0) { |
| 7152 | return_value = path_posix_error("readlink", &path); |
| 7153 | goto exit; |
| 7154 | } |
| 7155 | |
| 7156 | if (PyUnicode_Check(path.object)) |
| 7157 | return_value = PyUnicode_DecodeFSDefaultAndSize(buffer, length); |
| 7158 | else |
| 7159 | return_value = PyBytes_FromStringAndSize(buffer, length); |
| 7160 | exit: |
| 7161 | path_cleanup(&path); |
| 7162 | return return_value; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 7163 | } |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 7164 | |
| 7165 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 7166 | #endif /* HAVE_READLINK */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 7167 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 7168 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 7169 | #ifdef HAVE_SYMLINK |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7170 | PyDoc_STRVAR(posix_symlink__doc__, |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 7171 | "symlink(src, dst, target_is_directory=False, *, dir_fd=None)\n\n\ |
| 7172 | Create a symbolic link pointing to src named dst.\n\n\ |
| 7173 | target_is_directory is required on Windows if the target is to be\n\ |
| 7174 | interpreted as a directory. (On Windows, symlink requires\n\ |
| 7175 | Windows 6.0 or greater, and raises a NotImplementedError otherwise.)\n\ |
| 7176 | target_is_directory is ignored on non-Windows platforms.\n\ |
| 7177 | \n\ |
| 7178 | If dir_fd is not None, it should be a file descriptor open to a directory,\n\ |
| 7179 | and path should be relative; path will then be relative to that directory.\n\ |
| 7180 | dir_fd may not be implemented on your platform.\n\ |
| 7181 | If it is unavailable, using it will raise a NotImplementedError."); |
| 7182 | |
| 7183 | #if defined(MS_WINDOWS) |
| 7184 | |
| 7185 | /* Grab CreateSymbolicLinkW dynamically from kernel32 */ |
| 7186 | static DWORD (CALLBACK *Py_CreateSymbolicLinkW)(LPWSTR, LPWSTR, DWORD) = NULL; |
| 7187 | static DWORD (CALLBACK *Py_CreateSymbolicLinkA)(LPSTR, LPSTR, DWORD) = NULL; |
| 7188 | static int |
| 7189 | check_CreateSymbolicLink() |
| 7190 | { |
| 7191 | HINSTANCE hKernel32; |
| 7192 | /* only recheck */ |
| 7193 | if (Py_CreateSymbolicLinkW && Py_CreateSymbolicLinkA) |
| 7194 | return 1; |
| 7195 | hKernel32 = GetModuleHandleW(L"KERNEL32"); |
| 7196 | *(FARPROC*)&Py_CreateSymbolicLinkW = GetProcAddress(hKernel32, |
| 7197 | "CreateSymbolicLinkW"); |
| 7198 | *(FARPROC*)&Py_CreateSymbolicLinkA = GetProcAddress(hKernel32, |
| 7199 | "CreateSymbolicLinkA"); |
| 7200 | return (Py_CreateSymbolicLinkW && Py_CreateSymbolicLinkA); |
| 7201 | } |
| 7202 | |
Jason R. Coombs | 3a09286 | 2013-05-27 23:21:28 -0400 | [diff] [blame] | 7203 | void _dirnameW(WCHAR *path) { |
| 7204 | /* Remove the last portion of the path */ |
| 7205 | |
| 7206 | WCHAR *ptr; |
| 7207 | |
| 7208 | /* walk the path from the end until a backslash is encountered */ |
| 7209 | for(ptr = path + wcslen(path); ptr != path; ptr--) |
| 7210 | { |
| 7211 | if(*ptr == *L"\\" || *ptr == *L"/") { |
| 7212 | break; |
| 7213 | } |
| 7214 | } |
| 7215 | *ptr = 0; |
| 7216 | } |
| 7217 | |
| 7218 | void _dirnameA(char *path) { |
| 7219 | /* Remove the last portion of the path */ |
| 7220 | |
| 7221 | char *ptr; |
| 7222 | |
| 7223 | /* walk the path from the end until a backslash is encountered */ |
| 7224 | for(ptr = path + strlen(path); ptr != path; ptr--) |
| 7225 | { |
| 7226 | if(*ptr == '\\' || *ptr == '/') { |
| 7227 | break; |
| 7228 | } |
| 7229 | } |
| 7230 | *ptr = 0; |
| 7231 | } |
| 7232 | |
| 7233 | int _is_absW(WCHAR *path) { |
| 7234 | /* Is this path absolute? */ |
| 7235 | |
| 7236 | return path[0] == L'\\' || path[0] == L'/' || path[1] == L':'; |
| 7237 | |
| 7238 | } |
| 7239 | |
| 7240 | int _is_absA(char *path) { |
| 7241 | /* Is this path absolute? */ |
| 7242 | |
| 7243 | return path[0] == '\\' || path[0] == '/' || path[1] == ':'; |
| 7244 | |
| 7245 | } |
| 7246 | |
| 7247 | void _joinW(WCHAR *dest_path, const WCHAR *root, const WCHAR *rest) { |
| 7248 | /* join root and rest with a backslash */ |
| 7249 | int root_len; |
| 7250 | |
| 7251 | if(_is_absW(rest)) { |
| 7252 | wcscpy(dest_path, rest); |
| 7253 | return; |
| 7254 | } |
| 7255 | |
| 7256 | root_len = wcslen(root); |
| 7257 | |
| 7258 | wcscpy(dest_path, root); |
| 7259 | if(root_len) { |
| 7260 | dest_path[root_len] = *L"\\"; |
| 7261 | root_len += 1; |
| 7262 | } |
| 7263 | wcscpy(dest_path+root_len, rest); |
| 7264 | } |
| 7265 | |
| 7266 | void _joinA(char *dest_path, const char *root, const char *rest) { |
| 7267 | /* join root and rest with a backslash */ |
| 7268 | int root_len; |
| 7269 | |
| 7270 | if(_is_absA(rest)) { |
| 7271 | strcpy(dest_path, rest); |
| 7272 | return; |
| 7273 | } |
| 7274 | |
| 7275 | root_len = strlen(root); |
| 7276 | |
| 7277 | strcpy(dest_path, root); |
| 7278 | if(root_len) { |
| 7279 | dest_path[root_len] = '\\'; |
| 7280 | root_len += 1; |
| 7281 | } |
| 7282 | strcpy(dest_path+root_len, rest); |
| 7283 | } |
| 7284 | |
| 7285 | int _check_dirW(WCHAR *src, WCHAR *dest) |
| 7286 | { |
| 7287 | /* Return True if the path at src relative to dest is a directory */ |
| 7288 | WIN32_FILE_ATTRIBUTE_DATA src_info; |
| 7289 | WCHAR dest_parent[MAX_PATH]; |
| 7290 | WCHAR src_resolved[MAX_PATH] = L""; |
| 7291 | |
| 7292 | /* dest_parent = os.path.dirname(dest) */ |
| 7293 | wcscpy(dest_parent, dest); |
| 7294 | _dirnameW(dest_parent); |
| 7295 | /* src_resolved = os.path.join(dest_parent, src) */ |
| 7296 | _joinW(src_resolved, dest_parent, src); |
| 7297 | return ( |
| 7298 | GetFileAttributesExW(src_resolved, GetFileExInfoStandard, &src_info) |
| 7299 | && src_info.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY |
| 7300 | ); |
| 7301 | } |
| 7302 | |
| 7303 | int _check_dirA(char *src, char *dest) |
| 7304 | { |
| 7305 | /* Return True if the path at src relative to dest is a directory */ |
| 7306 | WIN32_FILE_ATTRIBUTE_DATA src_info; |
| 7307 | char dest_parent[MAX_PATH]; |
| 7308 | char src_resolved[MAX_PATH] = ""; |
| 7309 | |
| 7310 | /* dest_parent = os.path.dirname(dest) */ |
| 7311 | strcpy(dest_parent, dest); |
| 7312 | _dirnameW(dest_parent); |
| 7313 | /* src_resolved = os.path.join(dest_parent, src) */ |
| 7314 | _joinW(src_resolved, dest_parent, src); |
| 7315 | return ( |
| 7316 | GetFileAttributesExA(src_resolved, GetFileExInfoStandard, &src_info) |
| 7317 | && src_info.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY |
| 7318 | ); |
| 7319 | } |
| 7320 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 7321 | #endif |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 7322 | |
Guido van Rossum | bfaf3d6 | 1997-12-29 20:02:27 +0000 | [diff] [blame] | 7323 | static PyObject * |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 7324 | posix_symlink(PyObject *self, PyObject *args, PyObject *kwargs) |
Guido van Rossum | bfaf3d6 | 1997-12-29 20:02:27 +0000 | [diff] [blame] | 7325 | { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 7326 | path_t src; |
| 7327 | path_t dst; |
| 7328 | int dir_fd = DEFAULT_DIR_FD; |
| 7329 | int target_is_directory = 0; |
| 7330 | static char *keywords[] = {"src", "dst", "target_is_directory", |
| 7331 | "dir_fd", NULL}; |
| 7332 | PyObject *return_value; |
| 7333 | #ifdef MS_WINDOWS |
| 7334 | DWORD result; |
| 7335 | #else |
| 7336 | int result; |
| 7337 | #endif |
| 7338 | |
| 7339 | memset(&src, 0, sizeof(src)); |
| 7340 | src.argument_name = "src"; |
| 7341 | memset(&dst, 0, sizeof(dst)); |
| 7342 | dst.argument_name = "dst"; |
| 7343 | |
| 7344 | #ifdef MS_WINDOWS |
| 7345 | if (!check_CreateSymbolicLink()) { |
| 7346 | PyErr_SetString(PyExc_NotImplementedError, |
| 7347 | "CreateSymbolicLink functions not found"); |
Petri Lehtinen | 5445a8c | 2012-10-23 16:12:14 +0300 | [diff] [blame] | 7348 | return NULL; |
| 7349 | } |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 7350 | if (!win32_can_symlink) { |
| 7351 | PyErr_SetString(PyExc_OSError, "symbolic link privilege not held"); |
Petri Lehtinen | 5445a8c | 2012-10-23 16:12:14 +0300 | [diff] [blame] | 7352 | return NULL; |
| 7353 | } |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 7354 | #endif |
| 7355 | |
| 7356 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&O&|i$O&:symlink", |
| 7357 | keywords, |
| 7358 | path_converter, &src, |
| 7359 | path_converter, &dst, |
| 7360 | &target_is_directory, |
| 7361 | #ifdef HAVE_SYMLINKAT |
| 7362 | dir_fd_converter, &dir_fd |
| 7363 | #else |
| 7364 | dir_fd_unavailable, &dir_fd |
| 7365 | #endif |
| 7366 | )) |
| 7367 | return NULL; |
| 7368 | |
| 7369 | if ((src.narrow && dst.wide) || (src.wide && dst.narrow)) { |
| 7370 | PyErr_SetString(PyExc_ValueError, |
| 7371 | "symlink: src and dst must be the same type"); |
| 7372 | return_value = NULL; |
| 7373 | goto exit; |
| 7374 | } |
| 7375 | |
| 7376 | #ifdef MS_WINDOWS |
Jason R. Coombs | 3a09286 | 2013-05-27 23:21:28 -0400 | [diff] [blame] | 7377 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 7378 | Py_BEGIN_ALLOW_THREADS |
Jason R. Coombs | 3a09286 | 2013-05-27 23:21:28 -0400 | [diff] [blame] | 7379 | if (dst.wide) { |
| 7380 | /* if src is a directory, ensure target_is_directory==1 */ |
| 7381 | target_is_directory |= _check_dirW(src.wide, dst.wide); |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 7382 | result = Py_CreateSymbolicLinkW(dst.wide, src.wide, |
| 7383 | target_is_directory); |
Jason R. Coombs | 3a09286 | 2013-05-27 23:21:28 -0400 | [diff] [blame] | 7384 | } |
| 7385 | else { |
| 7386 | /* if src is a directory, ensure target_is_directory==1 */ |
| 7387 | target_is_directory |= _check_dirA(src.narrow, dst.narrow); |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 7388 | result = Py_CreateSymbolicLinkA(dst.narrow, src.narrow, |
| 7389 | target_is_directory); |
Jason R. Coombs | 3a09286 | 2013-05-27 23:21:28 -0400 | [diff] [blame] | 7390 | } |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 7391 | Py_END_ALLOW_THREADS |
| 7392 | |
| 7393 | if (!result) { |
| 7394 | return_value = win32_error_object("symlink", src.object); |
| 7395 | goto exit; |
| 7396 | } |
| 7397 | |
| 7398 | #else |
| 7399 | |
| 7400 | Py_BEGIN_ALLOW_THREADS |
| 7401 | #if HAVE_SYMLINKAT |
| 7402 | if (dir_fd != DEFAULT_DIR_FD) |
| 7403 | result = symlinkat(src.narrow, dir_fd, dst.narrow); |
| 7404 | else |
| 7405 | #endif |
| 7406 | result = symlink(src.narrow, dst.narrow); |
| 7407 | Py_END_ALLOW_THREADS |
| 7408 | |
| 7409 | if (result) { |
| 7410 | return_value = path_error("symlink", &dst); |
| 7411 | goto exit; |
| 7412 | } |
| 7413 | #endif |
| 7414 | |
| 7415 | return_value = Py_None; |
| 7416 | Py_INCREF(Py_None); |
| 7417 | goto exit; /* silence "unused label" warning */ |
| 7418 | exit: |
| 7419 | path_cleanup(&src); |
| 7420 | path_cleanup(&dst); |
| 7421 | return return_value; |
Guido van Rossum | bfaf3d6 | 1997-12-29 20:02:27 +0000 | [diff] [blame] | 7422 | } |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 7423 | |
Guido van Rossum | bfaf3d6 | 1997-12-29 20:02:27 +0000 | [diff] [blame] | 7424 | #endif /* HAVE_SYMLINK */ |
| 7425 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 7426 | |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 7427 | #if !defined(HAVE_READLINK) && defined(MS_WINDOWS) |
| 7428 | |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 7429 | static PyObject * |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 7430 | win_readlink(PyObject *self, PyObject *args, PyObject *kwargs) |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 7431 | { |
| 7432 | wchar_t *path; |
| 7433 | DWORD n_bytes_returned; |
| 7434 | DWORD io_result; |
Victor Stinner | eb5657a | 2011-09-30 01:44:27 +0200 | [diff] [blame] | 7435 | PyObject *po, *result; |
Petri Lehtinen | 5445a8c | 2012-10-23 16:12:14 +0300 | [diff] [blame] | 7436 | int dir_fd; |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 7437 | HANDLE reparse_point_handle; |
| 7438 | |
| 7439 | char target_buffer[MAXIMUM_REPARSE_DATA_BUFFER_SIZE]; |
| 7440 | REPARSE_DATA_BUFFER *rdb = (REPARSE_DATA_BUFFER *)target_buffer; |
| 7441 | wchar_t *print_name; |
| 7442 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 7443 | static char *keywords[] = {"path", "dir_fd", NULL}; |
| 7444 | |
| 7445 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "U|$O&:readlink", keywords, |
| 7446 | &po, |
| 7447 | dir_fd_unavailable, &dir_fd |
| 7448 | )) |
Victor Stinner | eb5657a | 2011-09-30 01:44:27 +0200 | [diff] [blame] | 7449 | return NULL; |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 7450 | |
Victor Stinner | eb5657a | 2011-09-30 01:44:27 +0200 | [diff] [blame] | 7451 | path = PyUnicode_AsUnicode(po); |
| 7452 | if (path == NULL) |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 7453 | return NULL; |
| 7454 | |
| 7455 | /* First get a handle to the reparse point */ |
| 7456 | Py_BEGIN_ALLOW_THREADS |
| 7457 | reparse_point_handle = CreateFileW( |
| 7458 | path, |
| 7459 | 0, |
| 7460 | 0, |
| 7461 | 0, |
| 7462 | OPEN_EXISTING, |
| 7463 | FILE_FLAG_OPEN_REPARSE_POINT|FILE_FLAG_BACKUP_SEMANTICS, |
| 7464 | 0); |
| 7465 | Py_END_ALLOW_THREADS |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 7466 | |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 7467 | if (reparse_point_handle==INVALID_HANDLE_VALUE) |
Victor Stinner | eb5657a | 2011-09-30 01:44:27 +0200 | [diff] [blame] | 7468 | return win32_error_object("readlink", po); |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 7469 | |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 7470 | Py_BEGIN_ALLOW_THREADS |
| 7471 | /* New call DeviceIoControl to read the reparse point */ |
| 7472 | io_result = DeviceIoControl( |
| 7473 | reparse_point_handle, |
| 7474 | FSCTL_GET_REPARSE_POINT, |
| 7475 | 0, 0, /* in buffer */ |
| 7476 | target_buffer, sizeof(target_buffer), |
| 7477 | &n_bytes_returned, |
| 7478 | 0 /* we're not using OVERLAPPED_IO */ |
| 7479 | ); |
| 7480 | CloseHandle(reparse_point_handle); |
| 7481 | Py_END_ALLOW_THREADS |
| 7482 | |
| 7483 | if (io_result==0) |
Victor Stinner | eb5657a | 2011-09-30 01:44:27 +0200 | [diff] [blame] | 7484 | return win32_error_object("readlink", po); |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 7485 | |
| 7486 | if (rdb->ReparseTag != IO_REPARSE_TAG_SYMLINK) |
| 7487 | { |
| 7488 | PyErr_SetString(PyExc_ValueError, |
| 7489 | "not a symbolic link"); |
| 7490 | return NULL; |
| 7491 | } |
Brian Curtin | 74e4561 | 2010-07-09 15:58:59 +0000 | [diff] [blame] | 7492 | print_name = rdb->SymbolicLinkReparseBuffer.PathBuffer + |
| 7493 | rdb->SymbolicLinkReparseBuffer.PrintNameOffset; |
| 7494 | |
| 7495 | result = PyUnicode_FromWideChar(print_name, |
| 7496 | rdb->SymbolicLinkReparseBuffer.PrintNameLength/2); |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 7497 | return result; |
| 7498 | } |
| 7499 | |
| 7500 | #endif /* !defined(HAVE_READLINK) && defined(MS_WINDOWS) */ |
| 7501 | |
Guido van Rossum | bfaf3d6 | 1997-12-29 20:02:27 +0000 | [diff] [blame] | 7502 | |
Larry Hastings | 605a62d | 2012-06-24 04:33:36 -0700 | [diff] [blame] | 7503 | static PyStructSequence_Field times_result_fields[] = { |
| 7504 | {"user", "user time"}, |
| 7505 | {"system", "system time"}, |
| 7506 | {"children_user", "user time of children"}, |
| 7507 | {"children_system", "system time of children"}, |
| 7508 | {"elapsed", "elapsed time since an arbitrary point in the past"}, |
| 7509 | {NULL} |
| 7510 | }; |
| 7511 | |
| 7512 | PyDoc_STRVAR(times_result__doc__, |
| 7513 | "times_result: Result from os.times().\n\n\ |
| 7514 | This object may be accessed either as a tuple of\n\ |
| 7515 | (user, system, children_user, children_system, elapsed),\n\ |
| 7516 | or via the attributes user, system, children_user, children_system,\n\ |
| 7517 | and elapsed.\n\ |
| 7518 | \n\ |
| 7519 | See os.times for more information."); |
| 7520 | |
| 7521 | static PyStructSequence_Desc times_result_desc = { |
| 7522 | "times_result", /* name */ |
| 7523 | times_result__doc__, /* doc */ |
| 7524 | times_result_fields, |
| 7525 | 5 |
| 7526 | }; |
| 7527 | |
| 7528 | static PyTypeObject TimesResultType; |
| 7529 | |
Antoine Pitrou | f3923e9 | 2012-07-24 21:23:53 +0200 | [diff] [blame] | 7530 | #ifdef MS_WINDOWS |
| 7531 | #define HAVE_TIMES /* mandatory, for the method table */ |
| 7532 | #endif |
Larry Hastings | 605a62d | 2012-06-24 04:33:36 -0700 | [diff] [blame] | 7533 | |
Antoine Pitrou | f3923e9 | 2012-07-24 21:23:53 +0200 | [diff] [blame] | 7534 | #ifdef HAVE_TIMES |
Larry Hastings | 605a62d | 2012-06-24 04:33:36 -0700 | [diff] [blame] | 7535 | |
| 7536 | static PyObject * |
| 7537 | build_times_result(double user, double system, |
| 7538 | double children_user, double children_system, |
| 7539 | double elapsed) |
| 7540 | { |
| 7541 | PyObject *value = PyStructSequence_New(&TimesResultType); |
| 7542 | if (value == NULL) |
| 7543 | return NULL; |
| 7544 | |
| 7545 | #define SET(i, field) \ |
| 7546 | { \ |
| 7547 | PyObject *o = PyFloat_FromDouble(field); \ |
| 7548 | if (!o) { \ |
| 7549 | Py_DECREF(value); \ |
| 7550 | return NULL; \ |
| 7551 | } \ |
| 7552 | PyStructSequence_SET_ITEM(value, i, o); \ |
| 7553 | } \ |
| 7554 | |
| 7555 | SET(0, user); |
| 7556 | SET(1, system); |
| 7557 | SET(2, children_user); |
| 7558 | SET(3, children_system); |
| 7559 | SET(4, elapsed); |
| 7560 | |
| 7561 | #undef SET |
| 7562 | |
| 7563 | return value; |
| 7564 | } |
| 7565 | |
| 7566 | PyDoc_STRVAR(posix_times__doc__, |
| 7567 | "times() -> times_result\n\n\ |
| 7568 | Return an object containing floating point numbers indicating process\n\ |
| 7569 | times. The object behaves like a named tuple with these fields:\n\ |
| 7570 | (utime, stime, cutime, cstime, elapsed_time)"); |
| 7571 | |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 7572 | #if defined(PYCC_VACPP) && defined(PYOS_OS2) |
| 7573 | static long |
Thomas Wouters | f3f33dc | 2000-07-21 06:00:07 +0000 | [diff] [blame] | 7574 | system_uptime(void) |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 7575 | { |
| 7576 | ULONG value = 0; |
| 7577 | |
| 7578 | Py_BEGIN_ALLOW_THREADS |
| 7579 | DosQuerySysInfo(QSV_MS_COUNT, QSV_MS_COUNT, &value, sizeof(value)); |
| 7580 | Py_END_ALLOW_THREADS |
| 7581 | |
| 7582 | return value; |
| 7583 | } |
| 7584 | |
| 7585 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 7586 | posix_times(PyObject *self, PyObject *noargs) |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 7587 | { |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 7588 | /* Currently Only Uptime is Provided -- Others Later */ |
Larry Hastings | 605a62d | 2012-06-24 04:33:36 -0700 | [diff] [blame] | 7589 | return build_times_result( |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7590 | (double)0 /* t.tms_utime / HZ */, |
| 7591 | (double)0 /* t.tms_stime / HZ */, |
| 7592 | (double)0 /* t.tms_cutime / HZ */, |
| 7593 | (double)0 /* t.tms_cstime / HZ */, |
| 7594 | (double)system_uptime() / 1000); |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 7595 | } |
Larry Hastings | 605a62d | 2012-06-24 04:33:36 -0700 | [diff] [blame] | 7596 | #elif defined(MS_WINDOWS) |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 7597 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 7598 | posix_times(PyObject *self, PyObject *noargs) |
Guido van Rossum | 14ed0b2 | 1994-09-29 09:50:09 +0000 | [diff] [blame] | 7599 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7600 | FILETIME create, exit, kernel, user; |
| 7601 | HANDLE hProc; |
| 7602 | hProc = GetCurrentProcess(); |
| 7603 | GetProcessTimes(hProc, &create, &exit, &kernel, &user); |
| 7604 | /* The fields of a FILETIME structure are the hi and lo part |
| 7605 | of a 64-bit value expressed in 100 nanosecond units. |
| 7606 | 1e7 is one second in such units; 1e-7 the inverse. |
| 7607 | 429.4967296 is 2**32 / 1e7 or 2**32 * 1e-7. |
| 7608 | */ |
Larry Hastings | 605a62d | 2012-06-24 04:33:36 -0700 | [diff] [blame] | 7609 | return build_times_result( |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7610 | (double)(user.dwHighDateTime*429.4967296 + |
| 7611 | user.dwLowDateTime*1e-7), |
| 7612 | (double)(kernel.dwHighDateTime*429.4967296 + |
| 7613 | kernel.dwLowDateTime*1e-7), |
| 7614 | (double)0, |
| 7615 | (double)0, |
| 7616 | (double)0); |
Guido van Rossum | 14ed0b2 | 1994-09-29 09:50:09 +0000 | [diff] [blame] | 7617 | } |
Antoine Pitrou | f3923e9 | 2012-07-24 21:23:53 +0200 | [diff] [blame] | 7618 | #else /* Neither Windows nor OS/2 */ |
| 7619 | #define NEED_TICKS_PER_SECOND |
| 7620 | static long ticks_per_second = -1; |
| 7621 | static PyObject * |
| 7622 | posix_times(PyObject *self, PyObject *noargs) |
| 7623 | { |
| 7624 | struct tms t; |
| 7625 | clock_t c; |
| 7626 | errno = 0; |
| 7627 | c = times(&t); |
| 7628 | if (c == (clock_t) -1) |
| 7629 | return posix_error(); |
| 7630 | return build_times_result( |
| 7631 | (double)t.tms_utime / ticks_per_second, |
| 7632 | (double)t.tms_stime / ticks_per_second, |
| 7633 | (double)t.tms_cutime / ticks_per_second, |
| 7634 | (double)t.tms_cstime / ticks_per_second, |
| 7635 | (double)c / ticks_per_second); |
| 7636 | } |
Guido van Rossum | bfaf3d6 | 1997-12-29 20:02:27 +0000 | [diff] [blame] | 7637 | #endif |
Guido van Rossum | 22db57e | 1992-04-05 14:25:30 +0000 | [diff] [blame] | 7638 | |
Antoine Pitrou | f3923e9 | 2012-07-24 21:23:53 +0200 | [diff] [blame] | 7639 | #endif /* HAVE_TIMES */ |
| 7640 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 7641 | |
Martin v. Löwis | 49ee14d | 2003-11-10 06:35:36 +0000 | [diff] [blame] | 7642 | #ifdef HAVE_GETSID |
| 7643 | PyDoc_STRVAR(posix_getsid__doc__, |
| 7644 | "getsid(pid) -> sid\n\n\ |
| 7645 | Call the system call getsid()."); |
| 7646 | |
| 7647 | static PyObject * |
| 7648 | posix_getsid(PyObject *self, PyObject *args) |
| 7649 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7650 | pid_t pid; |
| 7651 | int sid; |
| 7652 | if (!PyArg_ParseTuple(args, _Py_PARSE_PID ":getsid", &pid)) |
| 7653 | return NULL; |
| 7654 | sid = getsid(pid); |
| 7655 | if (sid < 0) |
| 7656 | return posix_error(); |
| 7657 | return PyLong_FromLong((long)sid); |
Martin v. Löwis | 49ee14d | 2003-11-10 06:35:36 +0000 | [diff] [blame] | 7658 | } |
| 7659 | #endif /* HAVE_GETSID */ |
| 7660 | |
| 7661 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 7662 | #ifdef HAVE_SETSID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7663 | PyDoc_STRVAR(posix_setsid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 7664 | "setsid()\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7665 | Call the system call setsid()."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 7666 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 7667 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 7668 | posix_setsid(PyObject *self, PyObject *noargs) |
Guido van Rossum | c2670a0 | 1992-09-13 20:07:29 +0000 | [diff] [blame] | 7669 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7670 | if (setsid() < 0) |
| 7671 | return posix_error(); |
| 7672 | Py_INCREF(Py_None); |
| 7673 | return Py_None; |
Guido van Rossum | c2670a0 | 1992-09-13 20:07:29 +0000 | [diff] [blame] | 7674 | } |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 7675 | #endif /* HAVE_SETSID */ |
Guido van Rossum | c2670a0 | 1992-09-13 20:07:29 +0000 | [diff] [blame] | 7676 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 7677 | #ifdef HAVE_SETPGID |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7678 | PyDoc_STRVAR(posix_setpgid__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 7679 | "setpgid(pid, pgrp)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7680 | Call the system call setpgid()."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 7681 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 7682 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 7683 | posix_setpgid(PyObject *self, PyObject *args) |
Guido van Rossum | c2670a0 | 1992-09-13 20:07:29 +0000 | [diff] [blame] | 7684 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7685 | pid_t pid; |
| 7686 | int pgrp; |
| 7687 | if (!PyArg_ParseTuple(args, _Py_PARSE_PID "i:setpgid", &pid, &pgrp)) |
| 7688 | return NULL; |
| 7689 | if (setpgid(pid, pgrp) < 0) |
| 7690 | return posix_error(); |
| 7691 | Py_INCREF(Py_None); |
| 7692 | return Py_None; |
Guido van Rossum | c2670a0 | 1992-09-13 20:07:29 +0000 | [diff] [blame] | 7693 | } |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 7694 | #endif /* HAVE_SETPGID */ |
Guido van Rossum | c2670a0 | 1992-09-13 20:07:29 +0000 | [diff] [blame] | 7695 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 7696 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 7697 | #ifdef HAVE_TCGETPGRP |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7698 | PyDoc_STRVAR(posix_tcgetpgrp__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 7699 | "tcgetpgrp(fd) -> pgid\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7700 | Return the process group associated with the terminal given by a fd."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 7701 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 7702 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 7703 | posix_tcgetpgrp(PyObject *self, PyObject *args) |
Guido van Rossum | 7066dd7 | 1992-09-17 17:54:56 +0000 | [diff] [blame] | 7704 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7705 | int fd; |
| 7706 | pid_t pgid; |
| 7707 | if (!PyArg_ParseTuple(args, "i:tcgetpgrp", &fd)) |
| 7708 | return NULL; |
| 7709 | pgid = tcgetpgrp(fd); |
| 7710 | if (pgid < 0) |
| 7711 | return posix_error(); |
| 7712 | return PyLong_FromPid(pgid); |
Guido van Rossum | 7066dd7 | 1992-09-17 17:54:56 +0000 | [diff] [blame] | 7713 | } |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 7714 | #endif /* HAVE_TCGETPGRP */ |
Guido van Rossum | 7066dd7 | 1992-09-17 17:54:56 +0000 | [diff] [blame] | 7715 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 7716 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 7717 | #ifdef HAVE_TCSETPGRP |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7718 | PyDoc_STRVAR(posix_tcsetpgrp__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 7719 | "tcsetpgrp(fd, pgid)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7720 | Set the process group associated with the terminal given by a fd."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 7721 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 7722 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 7723 | posix_tcsetpgrp(PyObject *self, PyObject *args) |
Guido van Rossum | 7066dd7 | 1992-09-17 17:54:56 +0000 | [diff] [blame] | 7724 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7725 | int fd; |
| 7726 | pid_t pgid; |
| 7727 | if (!PyArg_ParseTuple(args, "i" _Py_PARSE_PID ":tcsetpgrp", &fd, &pgid)) |
| 7728 | return NULL; |
| 7729 | if (tcsetpgrp(fd, pgid) < 0) |
| 7730 | return posix_error(); |
| 7731 | Py_INCREF(Py_None); |
| 7732 | return Py_None; |
Guido van Rossum | 7066dd7 | 1992-09-17 17:54:56 +0000 | [diff] [blame] | 7733 | } |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 7734 | #endif /* HAVE_TCSETPGRP */ |
Guido van Rossum | 22db57e | 1992-04-05 14:25:30 +0000 | [diff] [blame] | 7735 | |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 7736 | /* Functions acting on file descriptors */ |
| 7737 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7738 | PyDoc_STRVAR(posix_open__doc__, |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 7739 | "open(path, flags, mode=0o777, *, dir_fd=None)\n\n\ |
| 7740 | Open a file for low level IO. Returns a file handle (integer).\n\ |
| 7741 | \n\ |
| 7742 | If dir_fd is not None, it should be a file descriptor open to a directory,\n\ |
| 7743 | and path should be relative; path will then be relative to that directory.\n\ |
| 7744 | dir_fd may not be implemented on your platform.\n\ |
| 7745 | If it is unavailable, using it will raise a NotImplementedError."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 7746 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 7747 | static PyObject * |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 7748 | posix_open(PyObject *self, PyObject *args, PyObject *kwargs) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 7749 | { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 7750 | path_t path; |
| 7751 | int flags; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7752 | int mode = 0777; |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 7753 | int dir_fd = DEFAULT_DIR_FD; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7754 | int fd; |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 7755 | PyObject *return_value = NULL; |
| 7756 | static char *keywords[] = {"path", "flags", "mode", "dir_fd", NULL}; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 7757 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 7758 | memset(&path, 0, sizeof(path)); |
| 7759 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&i|i$O&:open", keywords, |
| 7760 | path_converter, &path, |
| 7761 | &flags, &mode, |
| 7762 | #ifdef HAVE_OPENAT |
| 7763 | dir_fd_converter, &dir_fd |
| 7764 | #else |
| 7765 | dir_fd_unavailable, &dir_fd |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 7766 | #endif |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 7767 | )) |
| 7768 | return NULL; |
Mark Hammond | c2e85bd | 2002-10-03 05:10:39 +0000 | [diff] [blame] | 7769 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7770 | Py_BEGIN_ALLOW_THREADS |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 7771 | #ifdef MS_WINDOWS |
| 7772 | if (path.wide) |
| 7773 | fd = _wopen(path.wide, flags, mode); |
| 7774 | else |
| 7775 | #endif |
| 7776 | #ifdef HAVE_OPENAT |
| 7777 | if (dir_fd != DEFAULT_DIR_FD) |
| 7778 | fd = openat(dir_fd, path.narrow, flags, mode); |
| 7779 | else |
| 7780 | #endif |
| 7781 | fd = open(path.narrow, flags, mode); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7782 | Py_END_ALLOW_THREADS |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 7783 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 7784 | if (fd == -1) { |
| 7785 | #ifdef MS_WINDOWS |
| 7786 | /* force use of posix_error here for exact backwards compatibility */ |
| 7787 | if (path.wide) |
| 7788 | return_value = posix_error(); |
| 7789 | else |
| 7790 | #endif |
| 7791 | return_value = path_error("open", &path); |
| 7792 | goto exit; |
| 7793 | } |
| 7794 | |
| 7795 | return_value = PyLong_FromLong((long)fd); |
| 7796 | |
| 7797 | exit: |
| 7798 | path_cleanup(&path); |
| 7799 | return return_value; |
| 7800 | } |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 7801 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7802 | PyDoc_STRVAR(posix_close__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 7803 | "close(fd)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7804 | Close a file descriptor (for low level IO)."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 7805 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 7806 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 7807 | posix_close(PyObject *self, PyObject *args) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 7808 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7809 | int fd, res; |
| 7810 | if (!PyArg_ParseTuple(args, "i:close", &fd)) |
| 7811 | return NULL; |
| 7812 | if (!_PyVerify_fd(fd)) |
| 7813 | return posix_error(); |
| 7814 | Py_BEGIN_ALLOW_THREADS |
| 7815 | res = close(fd); |
| 7816 | Py_END_ALLOW_THREADS |
| 7817 | if (res < 0) |
| 7818 | return posix_error(); |
| 7819 | Py_INCREF(Py_None); |
| 7820 | return Py_None; |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 7821 | } |
| 7822 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 7823 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7824 | PyDoc_STRVAR(posix_closerange__doc__, |
Christian Heimes | fdab48e | 2008-01-20 09:06:41 +0000 | [diff] [blame] | 7825 | "closerange(fd_low, fd_high)\n\n\ |
| 7826 | Closes all file descriptors in [fd_low, fd_high), ignoring errors."); |
| 7827 | |
| 7828 | static PyObject * |
| 7829 | posix_closerange(PyObject *self, PyObject *args) |
| 7830 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7831 | int fd_from, fd_to, i; |
| 7832 | if (!PyArg_ParseTuple(args, "ii:closerange", &fd_from, &fd_to)) |
| 7833 | return NULL; |
| 7834 | Py_BEGIN_ALLOW_THREADS |
| 7835 | for (i = fd_from; i < fd_to; i++) |
| 7836 | if (_PyVerify_fd(i)) |
| 7837 | close(i); |
| 7838 | Py_END_ALLOW_THREADS |
| 7839 | Py_RETURN_NONE; |
Christian Heimes | fdab48e | 2008-01-20 09:06:41 +0000 | [diff] [blame] | 7840 | } |
| 7841 | |
| 7842 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7843 | PyDoc_STRVAR(posix_dup__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 7844 | "dup(fd) -> fd2\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7845 | Return a duplicate of a file descriptor."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 7846 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 7847 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 7848 | posix_dup(PyObject *self, PyObject *args) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 7849 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7850 | int fd; |
| 7851 | if (!PyArg_ParseTuple(args, "i:dup", &fd)) |
| 7852 | return NULL; |
| 7853 | if (!_PyVerify_fd(fd)) |
| 7854 | return posix_error(); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7855 | fd = dup(fd); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7856 | if (fd < 0) |
| 7857 | return posix_error(); |
| 7858 | return PyLong_FromLong((long)fd); |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 7859 | } |
| 7860 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 7861 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7862 | PyDoc_STRVAR(posix_dup2__doc__, |
Andrew M. Kuchling | 8135fd5 | 2004-01-16 13:18:42 +0000 | [diff] [blame] | 7863 | "dup2(old_fd, new_fd)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7864 | Duplicate file descriptor."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 7865 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 7866 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 7867 | posix_dup2(PyObject *self, PyObject *args) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 7868 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7869 | int fd, fd2, res; |
| 7870 | if (!PyArg_ParseTuple(args, "ii:dup2", &fd, &fd2)) |
| 7871 | return NULL; |
| 7872 | if (!_PyVerify_fd_dup2(fd, fd2)) |
| 7873 | return posix_error(); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7874 | res = dup2(fd, fd2); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7875 | if (res < 0) |
| 7876 | return posix_error(); |
| 7877 | Py_INCREF(Py_None); |
| 7878 | return Py_None; |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 7879 | } |
| 7880 | |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 7881 | #ifdef HAVE_LOCKF |
| 7882 | PyDoc_STRVAR(posix_lockf__doc__, |
| 7883 | "lockf(fd, cmd, len)\n\n\ |
| 7884 | Apply, test or remove a POSIX lock on an open file descriptor.\n\n\ |
| 7885 | fd is an open file descriptor.\n\ |
| 7886 | cmd specifies the command to use - one of F_LOCK, F_TLOCK, F_ULOCK or\n\ |
| 7887 | F_TEST.\n\ |
| 7888 | len specifies the section of the file to lock."); |
| 7889 | |
| 7890 | static PyObject * |
| 7891 | posix_lockf(PyObject *self, PyObject *args) |
| 7892 | { |
| 7893 | int fd, cmd, res; |
| 7894 | off_t len; |
| 7895 | if (!PyArg_ParseTuple(args, "iiO&:lockf", |
| 7896 | &fd, &cmd, _parse_off_t, &len)) |
| 7897 | return NULL; |
| 7898 | |
| 7899 | Py_BEGIN_ALLOW_THREADS |
| 7900 | res = lockf(fd, cmd, len); |
| 7901 | Py_END_ALLOW_THREADS |
| 7902 | |
| 7903 | if (res < 0) |
| 7904 | return posix_error(); |
| 7905 | |
| 7906 | Py_RETURN_NONE; |
| 7907 | } |
| 7908 | #endif |
| 7909 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 7910 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7911 | PyDoc_STRVAR(posix_lseek__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 7912 | "lseek(fd, pos, how) -> newpos\n\n\ |
Victor Stinner | e83f899 | 2011-12-17 23:15:09 +0100 | [diff] [blame] | 7913 | Set the current position of a file descriptor.\n\ |
| 7914 | Return the new cursor position in bytes, starting from the beginning."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 7915 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 7916 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 7917 | posix_lseek(PyObject *self, PyObject *args) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 7918 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7919 | int fd, how; |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 7920 | #if defined(MS_WIN64) || defined(MS_WINDOWS) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7921 | PY_LONG_LONG pos, res; |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 7922 | #else |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7923 | off_t pos, res; |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 7924 | #endif |
Ross Lagerwall | 8e74967 | 2011-03-17 21:54:07 +0200 | [diff] [blame] | 7925 | PyObject *posobj; |
| 7926 | if (!PyArg_ParseTuple(args, "iOi:lseek", &fd, &posobj, &how)) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7927 | return NULL; |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 7928 | #ifdef SEEK_SET |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7929 | /* Turn 0, 1, 2 into SEEK_{SET,CUR,END} */ |
| 7930 | switch (how) { |
| 7931 | case 0: how = SEEK_SET; break; |
| 7932 | case 1: how = SEEK_CUR; break; |
| 7933 | case 2: how = SEEK_END; break; |
| 7934 | } |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 7935 | #endif /* SEEK_END */ |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 7936 | |
Ross Lagerwall | 8e74967 | 2011-03-17 21:54:07 +0200 | [diff] [blame] | 7937 | #if !defined(HAVE_LARGEFILE_SUPPORT) |
| 7938 | pos = PyLong_AsLong(posobj); |
| 7939 | #else |
| 7940 | pos = PyLong_AsLongLong(posobj); |
| 7941 | #endif |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7942 | if (PyErr_Occurred()) |
| 7943 | return NULL; |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 7944 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7945 | if (!_PyVerify_fd(fd)) |
| 7946 | return posix_error(); |
| 7947 | Py_BEGIN_ALLOW_THREADS |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 7948 | #if defined(MS_WIN64) || defined(MS_WINDOWS) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7949 | res = _lseeki64(fd, pos, how); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 7950 | #else |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7951 | res = lseek(fd, pos, how); |
Fred Drake | 699f352 | 2000-06-29 21:12:41 +0000 | [diff] [blame] | 7952 | #endif |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7953 | Py_END_ALLOW_THREADS |
| 7954 | if (res < 0) |
| 7955 | return posix_error(); |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 7956 | |
| 7957 | #if !defined(HAVE_LARGEFILE_SUPPORT) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7958 | return PyLong_FromLong(res); |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 7959 | #else |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7960 | return PyLong_FromLongLong(res); |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 7961 | #endif |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 7962 | } |
| 7963 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 7964 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7965 | PyDoc_STRVAR(posix_read__doc__, |
Benjamin Peterson | 3b08a29 | 2013-05-24 14:35:57 -0700 | [diff] [blame] | 7966 | "read(fd, buffersize) -> bytes\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 7967 | Read a file descriptor."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 7968 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 7969 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 7970 | posix_read(PyObject *self, PyObject *args) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 7971 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7972 | int fd, size; |
| 7973 | Py_ssize_t n; |
| 7974 | PyObject *buffer; |
| 7975 | if (!PyArg_ParseTuple(args, "ii:read", &fd, &size)) |
| 7976 | return NULL; |
| 7977 | if (size < 0) { |
| 7978 | errno = EINVAL; |
| 7979 | return posix_error(); |
| 7980 | } |
| 7981 | buffer = PyBytes_FromStringAndSize((char *)NULL, size); |
| 7982 | if (buffer == NULL) |
| 7983 | return NULL; |
Stefan Krah | 9943926 | 2010-11-26 12:58:05 +0000 | [diff] [blame] | 7984 | if (!_PyVerify_fd(fd)) { |
| 7985 | Py_DECREF(buffer); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7986 | return posix_error(); |
Stefan Krah | 9943926 | 2010-11-26 12:58:05 +0000 | [diff] [blame] | 7987 | } |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 7988 | Py_BEGIN_ALLOW_THREADS |
| 7989 | n = read(fd, PyBytes_AS_STRING(buffer), size); |
| 7990 | Py_END_ALLOW_THREADS |
| 7991 | if (n < 0) { |
| 7992 | Py_DECREF(buffer); |
| 7993 | return posix_error(); |
| 7994 | } |
| 7995 | if (n != size) |
| 7996 | _PyBytes_Resize(&buffer, n); |
| 7997 | return buffer; |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 7998 | } |
| 7999 | |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 8000 | #if (defined(HAVE_SENDFILE) && (defined(__FreeBSD__) || defined(__DragonFly__) \ |
| 8001 | || defined(__APPLE__))) || defined(HAVE_READV) || defined(HAVE_WRITEV) |
Giampaolo Rodolà | acdad9a | 2011-03-03 16:10:51 +0000 | [diff] [blame] | 8002 | static Py_ssize_t |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 8003 | iov_setup(struct iovec **iov, Py_buffer **buf, PyObject *seq, int cnt, int type) |
| 8004 | { |
| 8005 | int i, j; |
Giampaolo Rodolà | acdad9a | 2011-03-03 16:10:51 +0000 | [diff] [blame] | 8006 | Py_ssize_t blen, total = 0; |
| 8007 | |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 8008 | *iov = PyMem_New(struct iovec, cnt); |
| 8009 | if (*iov == NULL) { |
| 8010 | PyErr_NoMemory(); |
Giampaolo Rodolà | acdad9a | 2011-03-03 16:10:51 +0000 | [diff] [blame] | 8011 | return total; |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 8012 | } |
Giampaolo Rodolà | acdad9a | 2011-03-03 16:10:51 +0000 | [diff] [blame] | 8013 | |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 8014 | *buf = PyMem_New(Py_buffer, cnt); |
| 8015 | if (*buf == NULL) { |
| 8016 | PyMem_Del(*iov); |
| 8017 | PyErr_NoMemory(); |
Giampaolo Rodolà | acdad9a | 2011-03-03 16:10:51 +0000 | [diff] [blame] | 8018 | return total; |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 8019 | } |
| 8020 | |
| 8021 | for (i = 0; i < cnt; i++) { |
Ross Lagerwall | 9ad63e0 | 2011-03-19 09:11:14 +0200 | [diff] [blame] | 8022 | PyObject *item = PySequence_GetItem(seq, i); |
| 8023 | if (item == NULL) |
| 8024 | goto fail; |
| 8025 | if (PyObject_GetBuffer(item, &(*buf)[i], type) == -1) { |
| 8026 | Py_DECREF(item); |
| 8027 | goto fail; |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 8028 | } |
Ross Lagerwall | 9ad63e0 | 2011-03-19 09:11:14 +0200 | [diff] [blame] | 8029 | Py_DECREF(item); |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 8030 | (*iov)[i].iov_base = (*buf)[i].buf; |
Giampaolo Rodolà | acdad9a | 2011-03-03 16:10:51 +0000 | [diff] [blame] | 8031 | blen = (*buf)[i].len; |
| 8032 | (*iov)[i].iov_len = blen; |
| 8033 | total += blen; |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 8034 | } |
Giampaolo Rodolà | acdad9a | 2011-03-03 16:10:51 +0000 | [diff] [blame] | 8035 | return total; |
Ross Lagerwall | 9ad63e0 | 2011-03-19 09:11:14 +0200 | [diff] [blame] | 8036 | |
| 8037 | fail: |
| 8038 | PyMem_Del(*iov); |
| 8039 | for (j = 0; j < i; j++) { |
| 8040 | PyBuffer_Release(&(*buf)[j]); |
| 8041 | } |
| 8042 | PyMem_Del(*buf); |
| 8043 | return 0; |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 8044 | } |
| 8045 | |
| 8046 | static void |
| 8047 | iov_cleanup(struct iovec *iov, Py_buffer *buf, int cnt) |
| 8048 | { |
| 8049 | int i; |
| 8050 | PyMem_Del(iov); |
| 8051 | for (i = 0; i < cnt; i++) { |
| 8052 | PyBuffer_Release(&buf[i]); |
| 8053 | } |
| 8054 | PyMem_Del(buf); |
| 8055 | } |
| 8056 | #endif |
| 8057 | |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 8058 | #ifdef HAVE_READV |
| 8059 | PyDoc_STRVAR(posix_readv__doc__, |
| 8060 | "readv(fd, buffers) -> bytesread\n\n\ |
| 8061 | Read from a file descriptor into a number of writable buffers. buffers\n\ |
| 8062 | is an arbitrary sequence of writable buffers.\n\ |
| 8063 | Returns the total number of bytes read."); |
| 8064 | |
| 8065 | static PyObject * |
| 8066 | posix_readv(PyObject *self, PyObject *args) |
| 8067 | { |
| 8068 | int fd, cnt; |
| 8069 | Py_ssize_t n; |
| 8070 | PyObject *seq; |
| 8071 | struct iovec *iov; |
| 8072 | Py_buffer *buf; |
| 8073 | |
| 8074 | if (!PyArg_ParseTuple(args, "iO:readv", &fd, &seq)) |
| 8075 | return NULL; |
| 8076 | if (!PySequence_Check(seq)) { |
| 8077 | PyErr_SetString(PyExc_TypeError, |
| 8078 | "readv() arg 2 must be a sequence"); |
| 8079 | return NULL; |
| 8080 | } |
| 8081 | cnt = PySequence_Size(seq); |
| 8082 | |
| 8083 | if (!iov_setup(&iov, &buf, seq, cnt, PyBUF_WRITABLE)) |
| 8084 | return NULL; |
| 8085 | |
| 8086 | Py_BEGIN_ALLOW_THREADS |
| 8087 | n = readv(fd, iov, cnt); |
| 8088 | Py_END_ALLOW_THREADS |
| 8089 | |
| 8090 | iov_cleanup(iov, buf, cnt); |
| 8091 | return PyLong_FromSsize_t(n); |
| 8092 | } |
| 8093 | #endif |
| 8094 | |
| 8095 | #ifdef HAVE_PREAD |
| 8096 | PyDoc_STRVAR(posix_pread__doc__, |
| 8097 | "pread(fd, buffersize, offset) -> string\n\n\ |
| 8098 | Read from a file descriptor, fd, at a position of offset. It will read up\n\ |
| 8099 | to buffersize number of bytes. The file offset remains unchanged."); |
| 8100 | |
| 8101 | static PyObject * |
| 8102 | posix_pread(PyObject *self, PyObject *args) |
| 8103 | { |
| 8104 | int fd, size; |
| 8105 | off_t offset; |
| 8106 | Py_ssize_t n; |
| 8107 | PyObject *buffer; |
| 8108 | if (!PyArg_ParseTuple(args, "iiO&:pread", &fd, &size, _parse_off_t, &offset)) |
| 8109 | return NULL; |
| 8110 | |
| 8111 | if (size < 0) { |
| 8112 | errno = EINVAL; |
| 8113 | return posix_error(); |
| 8114 | } |
| 8115 | buffer = PyBytes_FromStringAndSize((char *)NULL, size); |
| 8116 | if (buffer == NULL) |
| 8117 | return NULL; |
| 8118 | if (!_PyVerify_fd(fd)) { |
| 8119 | Py_DECREF(buffer); |
| 8120 | return posix_error(); |
| 8121 | } |
| 8122 | Py_BEGIN_ALLOW_THREADS |
| 8123 | n = pread(fd, PyBytes_AS_STRING(buffer), size, offset); |
| 8124 | Py_END_ALLOW_THREADS |
| 8125 | if (n < 0) { |
| 8126 | Py_DECREF(buffer); |
| 8127 | return posix_error(); |
| 8128 | } |
| 8129 | if (n != size) |
| 8130 | _PyBytes_Resize(&buffer, n); |
| 8131 | return buffer; |
| 8132 | } |
| 8133 | #endif |
| 8134 | |
| 8135 | PyDoc_STRVAR(posix_write__doc__, |
Benjamin Peterson | 3b08a29 | 2013-05-24 14:35:57 -0700 | [diff] [blame] | 8136 | "write(fd, data) -> byteswritten\n\n\ |
| 8137 | Write bytes to a file descriptor."); |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 8138 | |
| 8139 | static PyObject * |
| 8140 | posix_write(PyObject *self, PyObject *args) |
| 8141 | { |
| 8142 | Py_buffer pbuf; |
| 8143 | int fd; |
| 8144 | Py_ssize_t size, len; |
| 8145 | |
| 8146 | if (!PyArg_ParseTuple(args, "iy*:write", &fd, &pbuf)) |
| 8147 | return NULL; |
| 8148 | if (!_PyVerify_fd(fd)) { |
| 8149 | PyBuffer_Release(&pbuf); |
| 8150 | return posix_error(); |
| 8151 | } |
| 8152 | len = pbuf.len; |
| 8153 | Py_BEGIN_ALLOW_THREADS |
| 8154 | #if defined(MS_WIN64) || defined(MS_WINDOWS) |
| 8155 | if (len > INT_MAX) |
| 8156 | len = INT_MAX; |
| 8157 | size = write(fd, pbuf.buf, (int)len); |
| 8158 | #else |
| 8159 | size = write(fd, pbuf.buf, len); |
| 8160 | #endif |
| 8161 | Py_END_ALLOW_THREADS |
| 8162 | PyBuffer_Release(&pbuf); |
| 8163 | if (size < 0) |
| 8164 | return posix_error(); |
| 8165 | return PyLong_FromSsize_t(size); |
| 8166 | } |
| 8167 | |
| 8168 | #ifdef HAVE_SENDFILE |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 8169 | PyDoc_STRVAR(posix_sendfile__doc__, |
| 8170 | "sendfile(out, in, offset, nbytes) -> byteswritten\n\ |
| 8171 | sendfile(out, in, offset, nbytes, headers=None, trailers=None, flags=0)\n\ |
| 8172 | -> byteswritten\n\ |
| 8173 | Copy nbytes bytes from file descriptor in to file descriptor out."); |
| 8174 | |
| 8175 | static PyObject * |
| 8176 | posix_sendfile(PyObject *self, PyObject *args, PyObject *kwdict) |
| 8177 | { |
| 8178 | int in, out; |
| 8179 | Py_ssize_t ret; |
| 8180 | off_t offset; |
| 8181 | |
| 8182 | #if defined(__FreeBSD__) || defined(__DragonFly__) || defined(__APPLE__) |
| 8183 | #ifndef __APPLE__ |
| 8184 | Py_ssize_t len; |
| 8185 | #endif |
| 8186 | PyObject *headers = NULL, *trailers = NULL; |
| 8187 | Py_buffer *hbuf, *tbuf; |
| 8188 | off_t sbytes; |
| 8189 | struct sf_hdtr sf; |
| 8190 | int flags = 0; |
| 8191 | sf.headers = NULL; |
| 8192 | sf.trailers = NULL; |
Benjamin Peterson | d8a43b4 | 2011-02-26 21:35:16 +0000 | [diff] [blame] | 8193 | static char *keywords[] = {"out", "in", |
| 8194 | "offset", "count", |
| 8195 | "headers", "trailers", "flags", NULL}; |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 8196 | |
| 8197 | #ifdef __APPLE__ |
| 8198 | if (!PyArg_ParseTupleAndKeywords(args, kwdict, "iiO&O&|OOi:sendfile", |
Georg Brandl | a391b11 | 2011-02-25 15:23:18 +0000 | [diff] [blame] | 8199 | keywords, &out, &in, _parse_off_t, &offset, _parse_off_t, &sbytes, |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 8200 | #else |
| 8201 | if (!PyArg_ParseTupleAndKeywords(args, kwdict, "iiO&n|OOi:sendfile", |
Georg Brandl | a391b11 | 2011-02-25 15:23:18 +0000 | [diff] [blame] | 8202 | keywords, &out, &in, _parse_off_t, &offset, &len, |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 8203 | #endif |
| 8204 | &headers, &trailers, &flags)) |
| 8205 | return NULL; |
| 8206 | if (headers != NULL) { |
| 8207 | if (!PySequence_Check(headers)) { |
| 8208 | PyErr_SetString(PyExc_TypeError, |
| 8209 | "sendfile() headers must be a sequence or None"); |
| 8210 | return NULL; |
| 8211 | } else { |
Giampaolo Rodolà | acdad9a | 2011-03-03 16:10:51 +0000 | [diff] [blame] | 8212 | Py_ssize_t i = 0; /* Avoid uninitialized warning */ |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 8213 | sf.hdr_cnt = PySequence_Size(headers); |
Giampaolo Rodolà | acdad9a | 2011-03-03 16:10:51 +0000 | [diff] [blame] | 8214 | if (sf.hdr_cnt > 0 && |
| 8215 | !(i = iov_setup(&(sf.headers), &hbuf, |
| 8216 | headers, sf.hdr_cnt, PyBUF_SIMPLE))) |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 8217 | return NULL; |
Giampaolo Rodolà | acdad9a | 2011-03-03 16:10:51 +0000 | [diff] [blame] | 8218 | #ifdef __APPLE__ |
| 8219 | sbytes += i; |
| 8220 | #endif |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 8221 | } |
| 8222 | } |
| 8223 | if (trailers != NULL) { |
| 8224 | if (!PySequence_Check(trailers)) { |
| 8225 | PyErr_SetString(PyExc_TypeError, |
| 8226 | "sendfile() trailers must be a sequence or None"); |
| 8227 | return NULL; |
| 8228 | } else { |
Giampaolo Rodolà | acdad9a | 2011-03-03 16:10:51 +0000 | [diff] [blame] | 8229 | Py_ssize_t i = 0; /* Avoid uninitialized warning */ |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 8230 | sf.trl_cnt = PySequence_Size(trailers); |
Giampaolo Rodolà | acdad9a | 2011-03-03 16:10:51 +0000 | [diff] [blame] | 8231 | if (sf.trl_cnt > 0 && |
| 8232 | !(i = iov_setup(&(sf.trailers), &tbuf, |
| 8233 | trailers, sf.trl_cnt, PyBUF_SIMPLE))) |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 8234 | return NULL; |
Giampaolo Rodolà | acdad9a | 2011-03-03 16:10:51 +0000 | [diff] [blame] | 8235 | #ifdef __APPLE__ |
| 8236 | sbytes += i; |
| 8237 | #endif |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 8238 | } |
| 8239 | } |
| 8240 | |
| 8241 | Py_BEGIN_ALLOW_THREADS |
| 8242 | #ifdef __APPLE__ |
| 8243 | ret = sendfile(in, out, offset, &sbytes, &sf, flags); |
| 8244 | #else |
| 8245 | ret = sendfile(in, out, offset, len, &sf, &sbytes, flags); |
| 8246 | #endif |
| 8247 | Py_END_ALLOW_THREADS |
| 8248 | |
| 8249 | if (sf.headers != NULL) |
| 8250 | iov_cleanup(sf.headers, hbuf, sf.hdr_cnt); |
| 8251 | if (sf.trailers != NULL) |
| 8252 | iov_cleanup(sf.trailers, tbuf, sf.trl_cnt); |
| 8253 | |
| 8254 | if (ret < 0) { |
| 8255 | if ((errno == EAGAIN) || (errno == EBUSY)) { |
| 8256 | if (sbytes != 0) { |
| 8257 | // some data has been sent |
| 8258 | goto done; |
| 8259 | } |
| 8260 | else { |
| 8261 | // no data has been sent; upper application is supposed |
| 8262 | // to retry on EAGAIN or EBUSY |
| 8263 | return posix_error(); |
| 8264 | } |
| 8265 | } |
| 8266 | return posix_error(); |
| 8267 | } |
| 8268 | goto done; |
| 8269 | |
| 8270 | done: |
| 8271 | #if !defined(HAVE_LARGEFILE_SUPPORT) |
| 8272 | return Py_BuildValue("l", sbytes); |
| 8273 | #else |
| 8274 | return Py_BuildValue("L", sbytes); |
| 8275 | #endif |
| 8276 | |
| 8277 | #else |
| 8278 | Py_ssize_t count; |
| 8279 | PyObject *offobj; |
| 8280 | static char *keywords[] = {"out", "in", |
| 8281 | "offset", "count", NULL}; |
| 8282 | if (!PyArg_ParseTupleAndKeywords(args, kwdict, "iiOn:sendfile", |
| 8283 | keywords, &out, &in, &offobj, &count)) |
| 8284 | return NULL; |
| 8285 | #ifdef linux |
| 8286 | if (offobj == Py_None) { |
| 8287 | Py_BEGIN_ALLOW_THREADS |
| 8288 | ret = sendfile(out, in, NULL, count); |
| 8289 | Py_END_ALLOW_THREADS |
| 8290 | if (ret < 0) |
| 8291 | return posix_error(); |
Giampaolo Rodola' | ff1a735 | 2011-04-19 09:47:16 +0200 | [diff] [blame] | 8292 | return Py_BuildValue("n", ret); |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 8293 | } |
| 8294 | #endif |
Antoine Pitrou | dcc20b8 | 2011-02-26 13:38:35 +0000 | [diff] [blame] | 8295 | if (!_parse_off_t(offobj, &offset)) |
| 8296 | return NULL; |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 8297 | Py_BEGIN_ALLOW_THREADS |
| 8298 | ret = sendfile(out, in, &offset, count); |
| 8299 | Py_END_ALLOW_THREADS |
| 8300 | if (ret < 0) |
| 8301 | return posix_error(); |
| 8302 | return Py_BuildValue("n", ret); |
| 8303 | #endif |
| 8304 | } |
| 8305 | #endif |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 8306 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 8307 | PyDoc_STRVAR(posix_fstat__doc__, |
Victor Stinner | 4195b5c | 2012-02-08 23:03:19 +0100 | [diff] [blame] | 8308 | "fstat(fd) -> stat result\n\n\ |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 8309 | Like stat(), but for an open file descriptor.\n\ |
| 8310 | Equivalent to stat(fd=fd)."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 8311 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 8312 | static PyObject * |
Victor Stinner | 4195b5c | 2012-02-08 23:03:19 +0100 | [diff] [blame] | 8313 | posix_fstat(PyObject *self, PyObject *args) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 8314 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8315 | int fd; |
| 8316 | STRUCT_STAT st; |
| 8317 | int res; |
Victor Stinner | 4195b5c | 2012-02-08 23:03:19 +0100 | [diff] [blame] | 8318 | if (!PyArg_ParseTuple(args, "i:fstat", &fd)) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8319 | return NULL; |
Martin v. Löwis | 7a924e6 | 2003-03-05 14:15:21 +0000 | [diff] [blame] | 8320 | #ifdef __VMS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8321 | /* on OpenVMS we must ensure that all bytes are written to the file */ |
| 8322 | fsync(fd); |
Martin v. Löwis | 7a924e6 | 2003-03-05 14:15:21 +0000 | [diff] [blame] | 8323 | #endif |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8324 | Py_BEGIN_ALLOW_THREADS |
| 8325 | res = FSTAT(fd, &st); |
| 8326 | Py_END_ALLOW_THREADS |
| 8327 | if (res != 0) { |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 8328 | #ifdef MS_WINDOWS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8329 | return win32_error("fstat", NULL); |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 8330 | #else |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8331 | return posix_error(); |
Martin v. Löwis | 1469466 | 2006-02-03 12:54:16 +0000 | [diff] [blame] | 8332 | #endif |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8333 | } |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 8334 | |
Victor Stinner | 4195b5c | 2012-02-08 23:03:19 +0100 | [diff] [blame] | 8335 | return _pystat_fromstructstat(&st); |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 8336 | } |
| 8337 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 8338 | PyDoc_STRVAR(posix_isatty__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 8339 | "isatty(fd) -> bool\n\n\ |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 8340 | Return True if the file descriptor 'fd' is an open file descriptor\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 8341 | connected to the slave end of a terminal."); |
Skip Montanaro | 1517d84 | 2000-07-19 14:34:14 +0000 | [diff] [blame] | 8342 | |
| 8343 | static PyObject * |
Thomas Wouters | 616607a | 2000-07-19 14:45:40 +0000 | [diff] [blame] | 8344 | posix_isatty(PyObject *self, PyObject *args) |
Skip Montanaro | 1517d84 | 2000-07-19 14:34:14 +0000 | [diff] [blame] | 8345 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8346 | int fd; |
| 8347 | if (!PyArg_ParseTuple(args, "i:isatty", &fd)) |
| 8348 | return NULL; |
| 8349 | if (!_PyVerify_fd(fd)) |
| 8350 | return PyBool_FromLong(0); |
| 8351 | return PyBool_FromLong(isatty(fd)); |
Skip Montanaro | 1517d84 | 2000-07-19 14:34:14 +0000 | [diff] [blame] | 8352 | } |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 8353 | |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 8354 | #ifdef HAVE_PIPE |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 8355 | PyDoc_STRVAR(posix_pipe__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 8356 | "pipe() -> (read_end, write_end)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 8357 | Create a pipe."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 8358 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 8359 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 8360 | posix_pipe(PyObject *self, PyObject *noargs) |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 8361 | { |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 8362 | #if defined(PYOS_OS2) |
| 8363 | HFILE read, write; |
| 8364 | APIRET rc; |
| 8365 | |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 8366 | rc = DosCreatePipe( &read, &write, 4096); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 8367 | if (rc != NO_ERROR) |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 8368 | return os2_error(rc); |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 8369 | |
| 8370 | return Py_BuildValue("(ii)", read, write); |
| 8371 | #else |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 8372 | #if !defined(MS_WINDOWS) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8373 | int fds[2]; |
| 8374 | int res; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8375 | res = pipe(fds); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8376 | if (res != 0) |
| 8377 | return posix_error(); |
| 8378 | return Py_BuildValue("(ii)", fds[0], fds[1]); |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 8379 | #else /* MS_WINDOWS */ |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8380 | HANDLE read, write; |
| 8381 | int read_fd, write_fd; |
| 8382 | BOOL ok; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8383 | ok = CreatePipe(&read, &write, NULL, 0); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8384 | if (!ok) |
| 8385 | return win32_error("CreatePipe", NULL); |
| 8386 | read_fd = _open_osfhandle((Py_intptr_t)read, 0); |
| 8387 | write_fd = _open_osfhandle((Py_intptr_t)write, 1); |
| 8388 | return Py_BuildValue("(ii)", read_fd, write_fd); |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 8389 | #endif /* MS_WINDOWS */ |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 8390 | #endif |
Guido van Rossum | 687dd13 | 1993-05-17 08:34:16 +0000 | [diff] [blame] | 8391 | } |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 8392 | #endif /* HAVE_PIPE */ |
| 8393 | |
Charles-François Natali | daafdd5 | 2011-05-29 20:07:40 +0200 | [diff] [blame] | 8394 | #ifdef HAVE_PIPE2 |
| 8395 | PyDoc_STRVAR(posix_pipe2__doc__, |
Charles-François Natali | 368f34b | 2011-06-06 19:49:47 +0200 | [diff] [blame] | 8396 | "pipe2(flags) -> (read_end, write_end)\n\n\ |
| 8397 | Create a pipe with flags set atomically.\n\ |
| 8398 | flags can be constructed by ORing together one or more of these values:\n\ |
| 8399 | O_NONBLOCK, O_CLOEXEC.\n\ |
Charles-François Natali | daafdd5 | 2011-05-29 20:07:40 +0200 | [diff] [blame] | 8400 | "); |
| 8401 | |
| 8402 | static PyObject * |
Charles-François Natali | 368f34b | 2011-06-06 19:49:47 +0200 | [diff] [blame] | 8403 | posix_pipe2(PyObject *self, PyObject *arg) |
Charles-François Natali | daafdd5 | 2011-05-29 20:07:40 +0200 | [diff] [blame] | 8404 | { |
Charles-François Natali | 368f34b | 2011-06-06 19:49:47 +0200 | [diff] [blame] | 8405 | int flags; |
Charles-François Natali | daafdd5 | 2011-05-29 20:07:40 +0200 | [diff] [blame] | 8406 | int fds[2]; |
| 8407 | int res; |
| 8408 | |
Serhiy Storchaka | 9101e23 | 2013-01-19 12:41:45 +0200 | [diff] [blame] | 8409 | flags = _PyLong_AsInt(arg); |
Charles-François Natali | 368f34b | 2011-06-06 19:49:47 +0200 | [diff] [blame] | 8410 | if (flags == -1 && PyErr_Occurred()) |
Charles-François Natali | daafdd5 | 2011-05-29 20:07:40 +0200 | [diff] [blame] | 8411 | return NULL; |
| 8412 | |
| 8413 | res = pipe2(fds, flags); |
| 8414 | if (res != 0) |
| 8415 | return posix_error(); |
| 8416 | return Py_BuildValue("(ii)", fds[0], fds[1]); |
| 8417 | } |
| 8418 | #endif /* HAVE_PIPE2 */ |
| 8419 | |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 8420 | #ifdef HAVE_WRITEV |
| 8421 | PyDoc_STRVAR(posix_writev__doc__, |
| 8422 | "writev(fd, buffers) -> byteswritten\n\n\ |
| 8423 | Write the contents of buffers to a file descriptor, where buffers is an\n\ |
| 8424 | arbitrary sequence of buffers.\n\ |
| 8425 | Returns the total bytes written."); |
| 8426 | |
| 8427 | static PyObject * |
| 8428 | posix_writev(PyObject *self, PyObject *args) |
| 8429 | { |
| 8430 | int fd, cnt; |
| 8431 | Py_ssize_t res; |
| 8432 | PyObject *seq; |
| 8433 | struct iovec *iov; |
| 8434 | Py_buffer *buf; |
| 8435 | if (!PyArg_ParseTuple(args, "iO:writev", &fd, &seq)) |
| 8436 | return NULL; |
| 8437 | if (!PySequence_Check(seq)) { |
| 8438 | PyErr_SetString(PyExc_TypeError, |
| 8439 | "writev() arg 2 must be a sequence"); |
| 8440 | return NULL; |
| 8441 | } |
| 8442 | cnt = PySequence_Size(seq); |
| 8443 | |
| 8444 | if (!iov_setup(&iov, &buf, seq, cnt, PyBUF_SIMPLE)) { |
| 8445 | return NULL; |
| 8446 | } |
| 8447 | |
| 8448 | Py_BEGIN_ALLOW_THREADS |
| 8449 | res = writev(fd, iov, cnt); |
| 8450 | Py_END_ALLOW_THREADS |
| 8451 | |
| 8452 | iov_cleanup(iov, buf, cnt); |
| 8453 | return PyLong_FromSsize_t(res); |
| 8454 | } |
| 8455 | #endif |
| 8456 | |
| 8457 | #ifdef HAVE_PWRITE |
| 8458 | PyDoc_STRVAR(posix_pwrite__doc__, |
| 8459 | "pwrite(fd, string, offset) -> byteswritten\n\n\ |
| 8460 | Write string to a file descriptor, fd, from offset, leaving the file\n\ |
| 8461 | offset unchanged."); |
| 8462 | |
| 8463 | static PyObject * |
| 8464 | posix_pwrite(PyObject *self, PyObject *args) |
| 8465 | { |
| 8466 | Py_buffer pbuf; |
| 8467 | int fd; |
| 8468 | off_t offset; |
| 8469 | Py_ssize_t size; |
| 8470 | |
| 8471 | if (!PyArg_ParseTuple(args, "iy*O&:pwrite", &fd, &pbuf, _parse_off_t, &offset)) |
| 8472 | return NULL; |
| 8473 | |
| 8474 | if (!_PyVerify_fd(fd)) { |
| 8475 | PyBuffer_Release(&pbuf); |
| 8476 | return posix_error(); |
| 8477 | } |
| 8478 | Py_BEGIN_ALLOW_THREADS |
| 8479 | size = pwrite(fd, pbuf.buf, (size_t)pbuf.len, offset); |
| 8480 | Py_END_ALLOW_THREADS |
| 8481 | PyBuffer_Release(&pbuf); |
| 8482 | if (size < 0) |
| 8483 | return posix_error(); |
| 8484 | return PyLong_FromSsize_t(size); |
| 8485 | } |
| 8486 | #endif |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 8487 | |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 8488 | #ifdef HAVE_MKFIFO |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 8489 | PyDoc_STRVAR(posix_mkfifo__doc__, |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 8490 | "mkfifo(path, mode=0o666, *, dir_fd=None)\n\n\ |
| 8491 | Create a FIFO (a POSIX named pipe).\n\ |
| 8492 | \n\ |
| 8493 | If dir_fd is not None, it should be a file descriptor open to a directory,\n\ |
| 8494 | and path should be relative; path will then be relative to that directory.\n\ |
| 8495 | dir_fd may not be implemented on your platform.\n\ |
| 8496 | If it is unavailable, using it will raise a NotImplementedError."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 8497 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 8498 | static PyObject * |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 8499 | posix_mkfifo(PyObject *self, PyObject *args, PyObject *kwargs) |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 8500 | { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 8501 | path_t path; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8502 | int mode = 0666; |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 8503 | int dir_fd = DEFAULT_DIR_FD; |
| 8504 | int result; |
| 8505 | PyObject *return_value = NULL; |
| 8506 | static char *keywords[] = {"path", "mode", "dir_fd", NULL}; |
| 8507 | |
| 8508 | memset(&path, 0, sizeof(path)); |
| 8509 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&|i$O&:mkfifo", keywords, |
| 8510 | path_converter, &path, |
| 8511 | &mode, |
| 8512 | #ifdef HAVE_MKFIFOAT |
| 8513 | dir_fd_converter, &dir_fd |
| 8514 | #else |
| 8515 | dir_fd_unavailable, &dir_fd |
| 8516 | #endif |
| 8517 | )) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8518 | return NULL; |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 8519 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8520 | Py_BEGIN_ALLOW_THREADS |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 8521 | #ifdef HAVE_MKFIFOAT |
| 8522 | if (dir_fd != DEFAULT_DIR_FD) |
| 8523 | result = mkfifoat(dir_fd, path.narrow, mode); |
| 8524 | else |
| 8525 | #endif |
| 8526 | result = mkfifo(path.narrow, mode); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8527 | Py_END_ALLOW_THREADS |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 8528 | |
| 8529 | if (result < 0) { |
| 8530 | return_value = posix_error(); |
| 8531 | goto exit; |
| 8532 | } |
| 8533 | |
| 8534 | return_value = Py_None; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8535 | Py_INCREF(Py_None); |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 8536 | |
| 8537 | exit: |
| 8538 | path_cleanup(&path); |
| 8539 | return return_value; |
Martin v. Löwis | 06a83e9 | 2002-04-14 10:19:44 +0000 | [diff] [blame] | 8540 | } |
| 8541 | #endif |
| 8542 | |
Neal Norwitz | 1169011 | 2002-07-30 01:08:28 +0000 | [diff] [blame] | 8543 | #if defined(HAVE_MKNOD) && defined(HAVE_MAKEDEV) |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 8544 | PyDoc_STRVAR(posix_mknod__doc__, |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 8545 | "mknod(filename, mode=0o600, device=0, *, dir_fd=None)\n\n\ |
Martin v. Löwis | 06a83e9 | 2002-04-14 10:19:44 +0000 | [diff] [blame] | 8546 | Create a filesystem node (file, device special file or named pipe)\n\ |
| 8547 | named filename. mode specifies both the permissions to use and the\n\ |
| 8548 | type of node to be created, being combined (bitwise OR) with one of\n\ |
| 8549 | S_IFREG, S_IFCHR, S_IFBLK, and S_IFIFO. For S_IFCHR and S_IFBLK,\n\ |
Martin v. Löwis | dbe3f76 | 2002-10-10 14:27:30 +0000 | [diff] [blame] | 8550 | device defines the newly created device special file (probably using\n\ |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 8551 | os.makedev()), otherwise it is ignored.\n\ |
| 8552 | \n\ |
| 8553 | If dir_fd is not None, it should be a file descriptor open to a directory,\n\ |
| 8554 | and path should be relative; path will then be relative to that directory.\n\ |
| 8555 | dir_fd may not be implemented on your platform.\n\ |
| 8556 | If it is unavailable, using it will raise a NotImplementedError."); |
Martin v. Löwis | 06a83e9 | 2002-04-14 10:19:44 +0000 | [diff] [blame] | 8557 | |
| 8558 | |
| 8559 | static PyObject * |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 8560 | posix_mknod(PyObject *self, PyObject *args, PyObject *kwargs) |
Martin v. Löwis | 06a83e9 | 2002-04-14 10:19:44 +0000 | [diff] [blame] | 8561 | { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 8562 | path_t path; |
| 8563 | int mode = 0666; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8564 | int device = 0; |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 8565 | int dir_fd = DEFAULT_DIR_FD; |
| 8566 | int result; |
| 8567 | PyObject *return_value = NULL; |
| 8568 | static char *keywords[] = {"path", "mode", "device", "dir_fd", NULL}; |
| 8569 | |
| 8570 | memset(&path, 0, sizeof(path)); |
| 8571 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&|ii$O&:mknod", keywords, |
| 8572 | path_converter, &path, |
| 8573 | &mode, &device, |
| 8574 | #ifdef HAVE_MKNODAT |
| 8575 | dir_fd_converter, &dir_fd |
| 8576 | #else |
| 8577 | dir_fd_unavailable, &dir_fd |
| 8578 | #endif |
| 8579 | )) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8580 | return NULL; |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 8581 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8582 | Py_BEGIN_ALLOW_THREADS |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 8583 | #ifdef HAVE_MKNODAT |
| 8584 | if (dir_fd != DEFAULT_DIR_FD) |
| 8585 | result = mknodat(dir_fd, path.narrow, mode, device); |
| 8586 | else |
| 8587 | #endif |
| 8588 | result = mknod(path.narrow, mode, device); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8589 | Py_END_ALLOW_THREADS |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 8590 | |
| 8591 | if (result < 0) { |
| 8592 | return_value = posix_error(); |
| 8593 | goto exit; |
| 8594 | } |
| 8595 | |
| 8596 | return_value = Py_None; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8597 | Py_INCREF(Py_None); |
Georg Brandl | f787559 | 2012-06-24 13:58:31 +0200 | [diff] [blame] | 8598 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 8599 | exit: |
| 8600 | path_cleanup(&path); |
| 8601 | return return_value; |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 8602 | } |
| 8603 | #endif |
| 8604 | |
Martin v. Löwis | dbe3f76 | 2002-10-10 14:27:30 +0000 | [diff] [blame] | 8605 | #ifdef HAVE_DEVICE_MACROS |
| 8606 | PyDoc_STRVAR(posix_major__doc__, |
| 8607 | "major(device) -> major number\n\ |
| 8608 | Extracts a device major number from a raw device number."); |
| 8609 | |
| 8610 | static PyObject * |
| 8611 | posix_major(PyObject *self, PyObject *args) |
| 8612 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8613 | int device; |
| 8614 | if (!PyArg_ParseTuple(args, "i:major", &device)) |
| 8615 | return NULL; |
| 8616 | return PyLong_FromLong((long)major(device)); |
Martin v. Löwis | dbe3f76 | 2002-10-10 14:27:30 +0000 | [diff] [blame] | 8617 | } |
| 8618 | |
| 8619 | PyDoc_STRVAR(posix_minor__doc__, |
| 8620 | "minor(device) -> minor number\n\ |
| 8621 | Extracts a device minor number from a raw device number."); |
| 8622 | |
| 8623 | static PyObject * |
| 8624 | posix_minor(PyObject *self, PyObject *args) |
| 8625 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8626 | int device; |
| 8627 | if (!PyArg_ParseTuple(args, "i:minor", &device)) |
| 8628 | return NULL; |
| 8629 | return PyLong_FromLong((long)minor(device)); |
Martin v. Löwis | dbe3f76 | 2002-10-10 14:27:30 +0000 | [diff] [blame] | 8630 | } |
| 8631 | |
| 8632 | PyDoc_STRVAR(posix_makedev__doc__, |
| 8633 | "makedev(major, minor) -> device number\n\ |
| 8634 | Composes a raw device number from the major and minor device numbers."); |
| 8635 | |
| 8636 | static PyObject * |
| 8637 | posix_makedev(PyObject *self, PyObject *args) |
| 8638 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8639 | int major, minor; |
| 8640 | if (!PyArg_ParseTuple(args, "ii:makedev", &major, &minor)) |
| 8641 | return NULL; |
| 8642 | return PyLong_FromLong((long)makedev(major, minor)); |
Martin v. Löwis | dbe3f76 | 2002-10-10 14:27:30 +0000 | [diff] [blame] | 8643 | } |
| 8644 | #endif /* device macros */ |
| 8645 | |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 8646 | |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 8647 | #ifdef HAVE_FTRUNCATE |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 8648 | PyDoc_STRVAR(posix_ftruncate__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 8649 | "ftruncate(fd, length)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 8650 | Truncate a file to a specified length."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 8651 | |
Barry Warsaw | 53699e9 | 1996-12-10 23:23:01 +0000 | [diff] [blame] | 8652 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 8653 | posix_ftruncate(PyObject *self, PyObject *args) |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 8654 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8655 | int fd; |
| 8656 | off_t length; |
| 8657 | int res; |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 8658 | |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 8659 | if (!PyArg_ParseTuple(args, "iO&:ftruncate", &fd, _parse_off_t, &length)) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8660 | return NULL; |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 8661 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8662 | Py_BEGIN_ALLOW_THREADS |
| 8663 | res = ftruncate(fd, length); |
| 8664 | Py_END_ALLOW_THREADS |
| 8665 | if (res < 0) |
| 8666 | return posix_error(); |
| 8667 | Py_INCREF(Py_None); |
| 8668 | return Py_None; |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 8669 | } |
| 8670 | #endif |
Guido van Rossum | 22db57e | 1992-04-05 14:25:30 +0000 | [diff] [blame] | 8671 | |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 8672 | #ifdef HAVE_TRUNCATE |
| 8673 | PyDoc_STRVAR(posix_truncate__doc__, |
| 8674 | "truncate(path, length)\n\n\ |
Georg Brandl | 306336b | 2012-06-24 12:55:33 +0200 | [diff] [blame] | 8675 | Truncate the file given by path to length bytes.\n\ |
| 8676 | On some platforms, path may also be specified as an open file descriptor.\n\ |
| 8677 | If this functionality is unavailable, using it raises an exception."); |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 8678 | |
| 8679 | static PyObject * |
Georg Brandl | 306336b | 2012-06-24 12:55:33 +0200 | [diff] [blame] | 8680 | posix_truncate(PyObject *self, PyObject *args, PyObject *kwargs) |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 8681 | { |
Georg Brandl | 306336b | 2012-06-24 12:55:33 +0200 | [diff] [blame] | 8682 | path_t path; |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 8683 | off_t length; |
| 8684 | int res; |
Georg Brandl | 306336b | 2012-06-24 12:55:33 +0200 | [diff] [blame] | 8685 | PyObject *result = NULL; |
| 8686 | static char *keywords[] = {"path", "length", NULL}; |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 8687 | |
Georg Brandl | 306336b | 2012-06-24 12:55:33 +0200 | [diff] [blame] | 8688 | memset(&path, 0, sizeof(path)); |
| 8689 | #ifdef HAVE_FTRUNCATE |
| 8690 | path.allow_fd = 1; |
| 8691 | #endif |
| 8692 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&O&:truncate", keywords, |
| 8693 | path_converter, &path, |
| 8694 | _parse_off_t, &length)) |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 8695 | return NULL; |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 8696 | |
| 8697 | Py_BEGIN_ALLOW_THREADS |
Georg Brandl | 306336b | 2012-06-24 12:55:33 +0200 | [diff] [blame] | 8698 | #ifdef HAVE_FTRUNCATE |
| 8699 | if (path.fd != -1) |
| 8700 | res = ftruncate(path.fd, length); |
| 8701 | else |
| 8702 | #endif |
| 8703 | res = truncate(path.narrow, length); |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 8704 | Py_END_ALLOW_THREADS |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 8705 | if (res < 0) |
Georg Brandl | 306336b | 2012-06-24 12:55:33 +0200 | [diff] [blame] | 8706 | result = path_posix_error("truncate", &path); |
| 8707 | else { |
| 8708 | Py_INCREF(Py_None); |
| 8709 | result = Py_None; |
| 8710 | } |
| 8711 | path_cleanup(&path); |
| 8712 | return result; |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 8713 | } |
| 8714 | #endif |
| 8715 | |
| 8716 | #ifdef HAVE_POSIX_FALLOCATE |
| 8717 | PyDoc_STRVAR(posix_posix_fallocate__doc__, |
| 8718 | "posix_fallocate(fd, offset, len)\n\n\ |
| 8719 | Ensures that enough disk space is allocated for the file specified by fd\n\ |
| 8720 | starting from offset and continuing for len bytes."); |
| 8721 | |
| 8722 | static PyObject * |
| 8723 | posix_posix_fallocate(PyObject *self, PyObject *args) |
| 8724 | { |
| 8725 | off_t len, offset; |
| 8726 | int res, fd; |
| 8727 | |
| 8728 | if (!PyArg_ParseTuple(args, "iO&O&:posix_fallocate", |
| 8729 | &fd, _parse_off_t, &offset, _parse_off_t, &len)) |
| 8730 | return NULL; |
| 8731 | |
| 8732 | Py_BEGIN_ALLOW_THREADS |
| 8733 | res = posix_fallocate(fd, offset, len); |
| 8734 | Py_END_ALLOW_THREADS |
| 8735 | if (res != 0) { |
| 8736 | errno = res; |
| 8737 | return posix_error(); |
| 8738 | } |
| 8739 | Py_RETURN_NONE; |
| 8740 | } |
| 8741 | #endif |
| 8742 | |
| 8743 | #ifdef HAVE_POSIX_FADVISE |
| 8744 | PyDoc_STRVAR(posix_posix_fadvise__doc__, |
| 8745 | "posix_fadvise(fd, offset, len, advice)\n\n\ |
| 8746 | Announces an intention to access data in a specific pattern thus allowing\n\ |
| 8747 | the kernel to make optimizations.\n\ |
| 8748 | The advice applies to the region of the file specified by fd starting at\n\ |
| 8749 | offset and continuing for len bytes.\n\ |
| 8750 | advice is one of POSIX_FADV_NORMAL, POSIX_FADV_SEQUENTIAL,\n\ |
| 8751 | POSIX_FADV_RANDOM, POSIX_FADV_NOREUSE, POSIX_FADV_WILLNEED or\n\ |
| 8752 | POSIX_FADV_DONTNEED."); |
| 8753 | |
| 8754 | static PyObject * |
| 8755 | posix_posix_fadvise(PyObject *self, PyObject *args) |
| 8756 | { |
| 8757 | off_t len, offset; |
| 8758 | int res, fd, advice; |
| 8759 | |
| 8760 | if (!PyArg_ParseTuple(args, "iO&O&i:posix_fadvise", |
| 8761 | &fd, _parse_off_t, &offset, _parse_off_t, &len, &advice)) |
| 8762 | return NULL; |
| 8763 | |
| 8764 | Py_BEGIN_ALLOW_THREADS |
| 8765 | res = posix_fadvise(fd, offset, len, advice); |
| 8766 | Py_END_ALLOW_THREADS |
| 8767 | if (res != 0) { |
| 8768 | errno = res; |
| 8769 | return posix_error(); |
| 8770 | } |
| 8771 | Py_RETURN_NONE; |
| 8772 | } |
| 8773 | #endif |
| 8774 | |
Guido van Rossum | f1af3fe | 1996-07-23 19:18:10 +0000 | [diff] [blame] | 8775 | #ifdef HAVE_PUTENV |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 8776 | PyDoc_STRVAR(posix_putenv__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 8777 | "putenv(key, value)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 8778 | Change or add an environment variable."); |
Guido van Rossum | ec4f4ac | 1997-06-02 22:20:51 +0000 | [diff] [blame] | 8779 | |
Fred Drake | 762e206 | 1999-08-26 17:23:54 +0000 | [diff] [blame] | 8780 | /* Save putenv() parameters as values here, so we can collect them when they |
| 8781 | * get re-set with another call for the same key. */ |
| 8782 | static PyObject *posix_putenv_garbage; |
| 8783 | |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 8784 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 8785 | posix_putenv(PyObject *self, PyObject *args) |
Guido van Rossum | f1af3fe | 1996-07-23 19:18:10 +0000 | [diff] [blame] | 8786 | { |
Victor Stinner | 84ae118 | 2010-05-06 22:05:07 +0000 | [diff] [blame] | 8787 | PyObject *newstr = NULL; |
Thomas Heller | f78f12a | 2007-11-08 19:33:05 +0000 | [diff] [blame] | 8788 | #ifdef MS_WINDOWS |
Victor Stinner | 6517095 | 2011-11-22 22:16:17 +0100 | [diff] [blame] | 8789 | PyObject *os1, *os2; |
Guido van Rossum | f1af3fe | 1996-07-23 19:18:10 +0000 | [diff] [blame] | 8790 | wchar_t *newenv; |
Victor Stinner | 6517095 | 2011-11-22 22:16:17 +0100 | [diff] [blame] | 8791 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8792 | if (!PyArg_ParseTuple(args, |
Victor Stinner | 9d3b93b | 2011-11-22 02:27:30 +0100 | [diff] [blame] | 8793 | "UU:putenv", |
Victor Stinner | 6517095 | 2011-11-22 22:16:17 +0100 | [diff] [blame] | 8794 | &os1, &os2)) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8795 | return NULL; |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 8796 | |
Victor Stinner | 6517095 | 2011-11-22 22:16:17 +0100 | [diff] [blame] | 8797 | newstr = PyUnicode_FromFormat("%U=%U", os1, os2); |
Victor Stinner | 84ae118 | 2010-05-06 22:05:07 +0000 | [diff] [blame] | 8798 | if (newstr == NULL) { |
| 8799 | PyErr_NoMemory(); |
| 8800 | goto error; |
| 8801 | } |
Victor Stinner | 6517095 | 2011-11-22 22:16:17 +0100 | [diff] [blame] | 8802 | if (_MAX_ENV < PyUnicode_GET_LENGTH(newstr)) { |
| 8803 | PyErr_Format(PyExc_ValueError, |
| 8804 | "the environment variable is longer than %u characters", |
| 8805 | _MAX_ENV); |
| 8806 | goto error; |
| 8807 | } |
| 8808 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8809 | newenv = PyUnicode_AsUnicode(newstr); |
Victor Stinner | eb5657a | 2011-09-30 01:44:27 +0200 | [diff] [blame] | 8810 | if (newenv == NULL) |
| 8811 | goto error; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8812 | if (_wputenv(newenv)) { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8813 | posix_error(); |
Victor Stinner | 84ae118 | 2010-05-06 22:05:07 +0000 | [diff] [blame] | 8814 | goto error; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8815 | } |
Thomas Heller | f78f12a | 2007-11-08 19:33:05 +0000 | [diff] [blame] | 8816 | #else |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 8817 | PyObject *os1, *os2; |
| 8818 | char *s1, *s2; |
| 8819 | char *newenv; |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 8820 | |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 8821 | if (!PyArg_ParseTuple(args, |
| 8822 | "O&O&:putenv", |
| 8823 | PyUnicode_FSConverter, &os1, |
| 8824 | PyUnicode_FSConverter, &os2)) |
| 8825 | return NULL; |
| 8826 | s1 = PyBytes_AsString(os1); |
| 8827 | s2 = PyBytes_AsString(os2); |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 8828 | |
Victor Stinner | 6517095 | 2011-11-22 22:16:17 +0100 | [diff] [blame] | 8829 | newstr = PyBytes_FromFormat("%s=%s", s1, s2); |
Victor Stinner | 9d3b93b | 2011-11-22 02:27:30 +0100 | [diff] [blame] | 8830 | if (newstr == NULL) { |
| 8831 | PyErr_NoMemory(); |
| 8832 | goto error; |
| 8833 | } |
| 8834 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8835 | newenv = PyBytes_AS_STRING(newstr); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8836 | if (putenv(newenv)) { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8837 | posix_error(); |
Victor Stinner | 84ae118 | 2010-05-06 22:05:07 +0000 | [diff] [blame] | 8838 | goto error; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8839 | } |
Thomas Heller | f78f12a | 2007-11-08 19:33:05 +0000 | [diff] [blame] | 8840 | #endif |
Victor Stinner | 84ae118 | 2010-05-06 22:05:07 +0000 | [diff] [blame] | 8841 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8842 | /* Install the first arg and newstr in posix_putenv_garbage; |
| 8843 | * this will cause previous value to be collected. This has to |
| 8844 | * happen after the real putenv() call because the old value |
| 8845 | * was still accessible until then. */ |
Victor Stinner | 6517095 | 2011-11-22 22:16:17 +0100 | [diff] [blame] | 8846 | if (PyDict_SetItem(posix_putenv_garbage, os1, newstr)) { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8847 | /* really not much we can do; just leak */ |
| 8848 | PyErr_Clear(); |
| 8849 | } |
| 8850 | else { |
| 8851 | Py_DECREF(newstr); |
| 8852 | } |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 8853 | |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 8854 | #ifndef MS_WINDOWS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8855 | Py_DECREF(os1); |
| 8856 | Py_DECREF(os2); |
Martin v. Löwis | 011e842 | 2009-05-05 04:43:17 +0000 | [diff] [blame] | 8857 | #endif |
Victor Stinner | 84ae118 | 2010-05-06 22:05:07 +0000 | [diff] [blame] | 8858 | Py_RETURN_NONE; |
| 8859 | |
| 8860 | error: |
| 8861 | #ifndef MS_WINDOWS |
| 8862 | Py_DECREF(os1); |
| 8863 | Py_DECREF(os2); |
| 8864 | #endif |
| 8865 | Py_XDECREF(newstr); |
| 8866 | return NULL; |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 8867 | } |
Guido van Rossum | b6a4716 | 1997-09-15 22:54:34 +0000 | [diff] [blame] | 8868 | #endif /* putenv */ |
| 8869 | |
Guido van Rossum | c524d95 | 2001-10-19 01:31:59 +0000 | [diff] [blame] | 8870 | #ifdef HAVE_UNSETENV |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 8871 | PyDoc_STRVAR(posix_unsetenv__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 8872 | "unsetenv(key)\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 8873 | Delete an environment variable."); |
Guido van Rossum | c524d95 | 2001-10-19 01:31:59 +0000 | [diff] [blame] | 8874 | |
| 8875 | static PyObject * |
| 8876 | posix_unsetenv(PyObject *self, PyObject *args) |
| 8877 | { |
Victor Stinner | 6517095 | 2011-11-22 22:16:17 +0100 | [diff] [blame] | 8878 | PyObject *name; |
Victor Stinner | 984890f | 2011-11-24 13:53:38 +0100 | [diff] [blame] | 8879 | #ifndef HAVE_BROKEN_UNSETENV |
Victor Stinner | 60b385e | 2011-11-22 22:01:28 +0100 | [diff] [blame] | 8880 | int err; |
Victor Stinner | 984890f | 2011-11-24 13:53:38 +0100 | [diff] [blame] | 8881 | #endif |
Victor Stinner | 84ae118 | 2010-05-06 22:05:07 +0000 | [diff] [blame] | 8882 | |
| 8883 | if (!PyArg_ParseTuple(args, "O&:unsetenv", |
Guido van Rossum | c524d95 | 2001-10-19 01:31:59 +0000 | [diff] [blame] | 8884 | |
Victor Stinner | 6517095 | 2011-11-22 22:16:17 +0100 | [diff] [blame] | 8885 | PyUnicode_FSConverter, &name)) |
Guido van Rossum | c524d95 | 2001-10-19 01:31:59 +0000 | [diff] [blame] | 8886 | return NULL; |
Guido van Rossum | c524d95 | 2001-10-19 01:31:59 +0000 | [diff] [blame] | 8887 | |
Victor Stinner | 984890f | 2011-11-24 13:53:38 +0100 | [diff] [blame] | 8888 | #ifdef HAVE_BROKEN_UNSETENV |
| 8889 | unsetenv(PyBytes_AS_STRING(name)); |
| 8890 | #else |
Victor Stinner | 6517095 | 2011-11-22 22:16:17 +0100 | [diff] [blame] | 8891 | err = unsetenv(PyBytes_AS_STRING(name)); |
Benjamin Peterson | 4bb867d | 2011-11-22 23:12:49 -0600 | [diff] [blame] | 8892 | if (err) { |
Benjamin Peterson | e8eb0e8 | 2011-11-22 23:14:47 -0600 | [diff] [blame] | 8893 | Py_DECREF(name); |
Victor Stinner | 60b385e | 2011-11-22 22:01:28 +0100 | [diff] [blame] | 8894 | return posix_error(); |
Benjamin Peterson | 4bb867d | 2011-11-22 23:12:49 -0600 | [diff] [blame] | 8895 | } |
Victor Stinner | 984890f | 2011-11-24 13:53:38 +0100 | [diff] [blame] | 8896 | #endif |
Guido van Rossum | c524d95 | 2001-10-19 01:31:59 +0000 | [diff] [blame] | 8897 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8898 | /* Remove the key from posix_putenv_garbage; |
| 8899 | * this will cause it to be collected. This has to |
| 8900 | * happen after the real unsetenv() call because the |
| 8901 | * old value was still accessible until then. |
| 8902 | */ |
Victor Stinner | 6517095 | 2011-11-22 22:16:17 +0100 | [diff] [blame] | 8903 | if (PyDict_DelItem(posix_putenv_garbage, name)) { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8904 | /* really not much we can do; just leak */ |
| 8905 | PyErr_Clear(); |
| 8906 | } |
Victor Stinner | 6517095 | 2011-11-22 22:16:17 +0100 | [diff] [blame] | 8907 | Py_DECREF(name); |
Victor Stinner | 84ae118 | 2010-05-06 22:05:07 +0000 | [diff] [blame] | 8908 | Py_RETURN_NONE; |
Guido van Rossum | c524d95 | 2001-10-19 01:31:59 +0000 | [diff] [blame] | 8909 | } |
| 8910 | #endif /* unsetenv */ |
| 8911 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 8912 | PyDoc_STRVAR(posix_strerror__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 8913 | "strerror(code) -> string\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 8914 | Translate an error code to a message string."); |
Guido van Rossum | b6a4716 | 1997-09-15 22:54:34 +0000 | [diff] [blame] | 8915 | |
Guido van Rossum | f68d8e5 | 2001-04-14 17:55:09 +0000 | [diff] [blame] | 8916 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 8917 | posix_strerror(PyObject *self, PyObject *args) |
Guido van Rossum | b6a4716 | 1997-09-15 22:54:34 +0000 | [diff] [blame] | 8918 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8919 | int code; |
| 8920 | char *message; |
| 8921 | if (!PyArg_ParseTuple(args, "i:strerror", &code)) |
| 8922 | return NULL; |
| 8923 | message = strerror(code); |
| 8924 | if (message == NULL) { |
| 8925 | PyErr_SetString(PyExc_ValueError, |
| 8926 | "strerror() argument out of range"); |
| 8927 | return NULL; |
| 8928 | } |
Victor Stinner | 1b57967 | 2011-12-17 05:47:23 +0100 | [diff] [blame] | 8929 | return PyUnicode_DecodeLocale(message, "surrogateescape"); |
Guido van Rossum | b6a4716 | 1997-09-15 22:54:34 +0000 | [diff] [blame] | 8930 | } |
Guido van Rossum | b6a4716 | 1997-09-15 22:54:34 +0000 | [diff] [blame] | 8931 | |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 8932 | |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 8933 | #ifdef HAVE_SYS_WAIT_H |
| 8934 | |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 8935 | #ifdef WCOREDUMP |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 8936 | PyDoc_STRVAR(posix_WCOREDUMP__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 8937 | "WCOREDUMP(status) -> bool\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 8938 | Return True if the process returning 'status' was dumped to a core file."); |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 8939 | |
| 8940 | static PyObject * |
| 8941 | posix_WCOREDUMP(PyObject *self, PyObject *args) |
| 8942 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8943 | WAIT_TYPE status; |
| 8944 | WAIT_STATUS_INT(status) = 0; |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 8945 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8946 | if (!PyArg_ParseTuple(args, "i:WCOREDUMP", &WAIT_STATUS_INT(status))) |
| 8947 | return NULL; |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 8948 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8949 | return PyBool_FromLong(WCOREDUMP(status)); |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 8950 | } |
| 8951 | #endif /* WCOREDUMP */ |
| 8952 | |
| 8953 | #ifdef WIFCONTINUED |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 8954 | PyDoc_STRVAR(posix_WIFCONTINUED__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 8955 | "WIFCONTINUED(status) -> bool\n\n\ |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 8956 | Return True if the process returning 'status' was continued from a\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 8957 | job control stop."); |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 8958 | |
| 8959 | static PyObject * |
Martin v. Löwis | 2b41b0d | 2002-05-04 13:13:41 +0000 | [diff] [blame] | 8960 | posix_WIFCONTINUED(PyObject *self, PyObject *args) |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 8961 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8962 | WAIT_TYPE status; |
| 8963 | WAIT_STATUS_INT(status) = 0; |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 8964 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8965 | if (!PyArg_ParseTuple(args, "i:WCONTINUED", &WAIT_STATUS_INT(status))) |
| 8966 | return NULL; |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 8967 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8968 | return PyBool_FromLong(WIFCONTINUED(status)); |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 8969 | } |
| 8970 | #endif /* WIFCONTINUED */ |
| 8971 | |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 8972 | #ifdef WIFSTOPPED |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 8973 | PyDoc_STRVAR(posix_WIFSTOPPED__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 8974 | "WIFSTOPPED(status) -> bool\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 8975 | Return True if the process returning 'status' was stopped."); |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 8976 | |
| 8977 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 8978 | posix_WIFSTOPPED(PyObject *self, PyObject *args) |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 8979 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8980 | WAIT_TYPE status; |
| 8981 | WAIT_STATUS_INT(status) = 0; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 8982 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8983 | if (!PyArg_ParseTuple(args, "i:WIFSTOPPED", &WAIT_STATUS_INT(status))) |
| 8984 | return NULL; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 8985 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8986 | return PyBool_FromLong(WIFSTOPPED(status)); |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 8987 | } |
| 8988 | #endif /* WIFSTOPPED */ |
| 8989 | |
| 8990 | #ifdef WIFSIGNALED |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 8991 | PyDoc_STRVAR(posix_WIFSIGNALED__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 8992 | "WIFSIGNALED(status) -> bool\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 8993 | 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] | 8994 | |
| 8995 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 8996 | posix_WIFSIGNALED(PyObject *self, PyObject *args) |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 8997 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 8998 | WAIT_TYPE status; |
| 8999 | WAIT_STATUS_INT(status) = 0; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 9000 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9001 | if (!PyArg_ParseTuple(args, "i:WIFSIGNALED", &WAIT_STATUS_INT(status))) |
| 9002 | return NULL; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 9003 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9004 | return PyBool_FromLong(WIFSIGNALED(status)); |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 9005 | } |
| 9006 | #endif /* WIFSIGNALED */ |
| 9007 | |
| 9008 | #ifdef WIFEXITED |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 9009 | PyDoc_STRVAR(posix_WIFEXITED__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 9010 | "WIFEXITED(status) -> bool\n\n\ |
Fred Drake | 7e3535c | 1999-02-02 16:37:11 +0000 | [diff] [blame] | 9011 | Return true if the process returning 'status' exited using the exit()\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 9012 | system call."); |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 9013 | |
| 9014 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 9015 | posix_WIFEXITED(PyObject *self, PyObject *args) |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 9016 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9017 | WAIT_TYPE status; |
| 9018 | WAIT_STATUS_INT(status) = 0; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 9019 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9020 | if (!PyArg_ParseTuple(args, "i:WIFEXITED", &WAIT_STATUS_INT(status))) |
| 9021 | return NULL; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 9022 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9023 | return PyBool_FromLong(WIFEXITED(status)); |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 9024 | } |
| 9025 | #endif /* WIFEXITED */ |
| 9026 | |
Guido van Rossum | 54ecc3d | 1999-01-27 17:53:11 +0000 | [diff] [blame] | 9027 | #ifdef WEXITSTATUS |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 9028 | PyDoc_STRVAR(posix_WEXITSTATUS__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 9029 | "WEXITSTATUS(status) -> integer\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 9030 | Return the process return code from 'status'."); |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 9031 | |
| 9032 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 9033 | posix_WEXITSTATUS(PyObject *self, PyObject *args) |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 9034 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9035 | WAIT_TYPE status; |
| 9036 | WAIT_STATUS_INT(status) = 0; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 9037 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9038 | if (!PyArg_ParseTuple(args, "i:WEXITSTATUS", &WAIT_STATUS_INT(status))) |
| 9039 | return NULL; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 9040 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9041 | return Py_BuildValue("i", WEXITSTATUS(status)); |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 9042 | } |
| 9043 | #endif /* WEXITSTATUS */ |
| 9044 | |
| 9045 | #ifdef WTERMSIG |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 9046 | PyDoc_STRVAR(posix_WTERMSIG__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 9047 | "WTERMSIG(status) -> integer\n\n\ |
Fred Drake | 7e3535c | 1999-02-02 16:37:11 +0000 | [diff] [blame] | 9048 | Return the signal that terminated the process that provided the 'status'\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 9049 | value."); |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 9050 | |
| 9051 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 9052 | posix_WTERMSIG(PyObject *self, PyObject *args) |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 9053 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9054 | WAIT_TYPE status; |
| 9055 | WAIT_STATUS_INT(status) = 0; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 9056 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9057 | if (!PyArg_ParseTuple(args, "i:WTERMSIG", &WAIT_STATUS_INT(status))) |
| 9058 | return NULL; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 9059 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9060 | return Py_BuildValue("i", WTERMSIG(status)); |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 9061 | } |
| 9062 | #endif /* WTERMSIG */ |
| 9063 | |
| 9064 | #ifdef WSTOPSIG |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 9065 | PyDoc_STRVAR(posix_WSTOPSIG__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 9066 | "WSTOPSIG(status) -> integer\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 9067 | Return the signal that stopped the process that provided\n\ |
| 9068 | the 'status' value."); |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 9069 | |
| 9070 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 9071 | posix_WSTOPSIG(PyObject *self, PyObject *args) |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 9072 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9073 | WAIT_TYPE status; |
| 9074 | WAIT_STATUS_INT(status) = 0; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 9075 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9076 | if (!PyArg_ParseTuple(args, "i:WSTOPSIG", &WAIT_STATUS_INT(status))) |
| 9077 | return NULL; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 9078 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9079 | return Py_BuildValue("i", WSTOPSIG(status)); |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 9080 | } |
| 9081 | #endif /* WSTOPSIG */ |
| 9082 | |
| 9083 | #endif /* HAVE_SYS_WAIT_H */ |
| 9084 | |
| 9085 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 9086 | #if defined(HAVE_FSTATVFS) && defined(HAVE_SYS_STATVFS_H) |
Guido van Rossum | d5753e1 | 1999-10-19 13:29:23 +0000 | [diff] [blame] | 9087 | #ifdef _SCO_DS |
| 9088 | /* SCO OpenServer 5.0 and later requires _SVID3 before it reveals the |
| 9089 | needed definitions in sys/statvfs.h */ |
| 9090 | #define _SVID3 |
| 9091 | #endif |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 9092 | #include <sys/statvfs.h> |
| 9093 | |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 9094 | static PyObject* |
| 9095 | _pystatvfs_fromstructstatvfs(struct statvfs st) { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9096 | PyObject *v = PyStructSequence_New(&StatVFSResultType); |
| 9097 | if (v == NULL) |
| 9098 | return NULL; |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 9099 | |
| 9100 | #if !defined(HAVE_LARGEFILE_SUPPORT) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9101 | PyStructSequence_SET_ITEM(v, 0, PyLong_FromLong((long) st.f_bsize)); |
| 9102 | PyStructSequence_SET_ITEM(v, 1, PyLong_FromLong((long) st.f_frsize)); |
| 9103 | PyStructSequence_SET_ITEM(v, 2, PyLong_FromLong((long) st.f_blocks)); |
| 9104 | PyStructSequence_SET_ITEM(v, 3, PyLong_FromLong((long) st.f_bfree)); |
| 9105 | PyStructSequence_SET_ITEM(v, 4, PyLong_FromLong((long) st.f_bavail)); |
| 9106 | PyStructSequence_SET_ITEM(v, 5, PyLong_FromLong((long) st.f_files)); |
| 9107 | PyStructSequence_SET_ITEM(v, 6, PyLong_FromLong((long) st.f_ffree)); |
| 9108 | PyStructSequence_SET_ITEM(v, 7, PyLong_FromLong((long) st.f_favail)); |
| 9109 | PyStructSequence_SET_ITEM(v, 8, PyLong_FromLong((long) st.f_flag)); |
| 9110 | PyStructSequence_SET_ITEM(v, 9, PyLong_FromLong((long) st.f_namemax)); |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 9111 | #else |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9112 | PyStructSequence_SET_ITEM(v, 0, PyLong_FromLong((long) st.f_bsize)); |
| 9113 | PyStructSequence_SET_ITEM(v, 1, PyLong_FromLong((long) st.f_frsize)); |
| 9114 | PyStructSequence_SET_ITEM(v, 2, |
| 9115 | PyLong_FromLongLong((PY_LONG_LONG) st.f_blocks)); |
| 9116 | PyStructSequence_SET_ITEM(v, 3, |
| 9117 | PyLong_FromLongLong((PY_LONG_LONG) st.f_bfree)); |
| 9118 | PyStructSequence_SET_ITEM(v, 4, |
| 9119 | PyLong_FromLongLong((PY_LONG_LONG) st.f_bavail)); |
| 9120 | PyStructSequence_SET_ITEM(v, 5, |
| 9121 | PyLong_FromLongLong((PY_LONG_LONG) st.f_files)); |
| 9122 | PyStructSequence_SET_ITEM(v, 6, |
| 9123 | PyLong_FromLongLong((PY_LONG_LONG) st.f_ffree)); |
| 9124 | PyStructSequence_SET_ITEM(v, 7, |
| 9125 | PyLong_FromLongLong((PY_LONG_LONG) st.f_favail)); |
| 9126 | PyStructSequence_SET_ITEM(v, 8, PyLong_FromLong((long) st.f_flag)); |
| 9127 | PyStructSequence_SET_ITEM(v, 9, PyLong_FromLong((long) st.f_namemax)); |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 9128 | #endif |
| 9129 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9130 | return v; |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 9131 | } |
| 9132 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 9133 | PyDoc_STRVAR(posix_fstatvfs__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 9134 | "fstatvfs(fd) -> statvfs result\n\n\ |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 9135 | Perform an fstatvfs system call on the given fd.\n\ |
| 9136 | Equivalent to statvfs(fd)."); |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 9137 | |
| 9138 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 9139 | posix_fstatvfs(PyObject *self, PyObject *args) |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 9140 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9141 | int fd, res; |
| 9142 | struct statvfs st; |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 9143 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9144 | if (!PyArg_ParseTuple(args, "i:fstatvfs", &fd)) |
| 9145 | return NULL; |
| 9146 | Py_BEGIN_ALLOW_THREADS |
| 9147 | res = fstatvfs(fd, &st); |
| 9148 | Py_END_ALLOW_THREADS |
| 9149 | if (res != 0) |
| 9150 | return posix_error(); |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 9151 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9152 | return _pystatvfs_fromstructstatvfs(st); |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 9153 | } |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 9154 | #endif /* HAVE_FSTATVFS && HAVE_SYS_STATVFS_H */ |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 9155 | |
| 9156 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 9157 | #if defined(HAVE_STATVFS) && defined(HAVE_SYS_STATVFS_H) |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 9158 | #include <sys/statvfs.h> |
| 9159 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 9160 | PyDoc_STRVAR(posix_statvfs__doc__, |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 9161 | "statvfs(path)\n\n\ |
| 9162 | Perform a statvfs system call on the given path.\n\ |
| 9163 | \n\ |
| 9164 | path may always be specified as a string.\n\ |
| 9165 | On some platforms, path may also be specified as an open file descriptor.\n\ |
| 9166 | If this functionality is unavailable, using it raises an exception."); |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 9167 | |
| 9168 | static PyObject * |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 9169 | posix_statvfs(PyObject *self, PyObject *args, PyObject *kwargs) |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 9170 | { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 9171 | static char *keywords[] = {"path", NULL}; |
| 9172 | path_t path; |
| 9173 | int result; |
| 9174 | PyObject *return_value = NULL; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9175 | struct statvfs st; |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 9176 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 9177 | memset(&path, 0, sizeof(path)); |
| 9178 | #ifdef HAVE_FSTATVFS |
| 9179 | path.allow_fd = 1; |
| 9180 | #endif |
| 9181 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&:statvfs", keywords, |
| 9182 | path_converter, &path |
| 9183 | )) |
| 9184 | return NULL; |
| 9185 | |
| 9186 | Py_BEGIN_ALLOW_THREADS |
| 9187 | #ifdef HAVE_FSTATVFS |
| 9188 | if (path.fd != -1) { |
| 9189 | #ifdef __APPLE__ |
| 9190 | /* handle weak-linking on Mac OS X 10.3 */ |
| 9191 | if (fstatvfs == NULL) { |
| 9192 | fd_specified("statvfs", path.fd); |
| 9193 | goto exit; |
| 9194 | } |
| 9195 | #endif |
| 9196 | result = fstatvfs(path.fd, &st); |
| 9197 | } |
| 9198 | else |
| 9199 | #endif |
| 9200 | result = statvfs(path.narrow, &st); |
| 9201 | Py_END_ALLOW_THREADS |
| 9202 | |
| 9203 | if (result) { |
| 9204 | return_value = path_posix_error("statvfs", &path); |
| 9205 | goto exit; |
| 9206 | } |
| 9207 | |
| 9208 | return_value = _pystatvfs_fromstructstatvfs(st); |
| 9209 | |
| 9210 | exit: |
| 9211 | path_cleanup(&path); |
| 9212 | return return_value; |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 9213 | } |
| 9214 | #endif /* HAVE_STATVFS */ |
| 9215 | |
Giampaolo Rodola' | 210e7ca | 2011-07-01 13:55:36 +0200 | [diff] [blame] | 9216 | #ifdef MS_WINDOWS |
| 9217 | PyDoc_STRVAR(win32__getdiskusage__doc__, |
| 9218 | "_getdiskusage(path) -> (total, free)\n\n\ |
| 9219 | Return disk usage statistics about the given path as (total, free) tuple."); |
| 9220 | |
| 9221 | static PyObject * |
| 9222 | win32__getdiskusage(PyObject *self, PyObject *args) |
| 9223 | { |
| 9224 | BOOL retval; |
| 9225 | ULARGE_INTEGER _, total, free; |
Victor Stinner | 6139c1b | 2011-11-09 22:14:14 +0100 | [diff] [blame] | 9226 | const wchar_t *path; |
Giampaolo Rodola' | 210e7ca | 2011-07-01 13:55:36 +0200 | [diff] [blame] | 9227 | |
Victor Stinner | 6139c1b | 2011-11-09 22:14:14 +0100 | [diff] [blame] | 9228 | if (! PyArg_ParseTuple(args, "u", &path)) |
Giampaolo Rodola' | 210e7ca | 2011-07-01 13:55:36 +0200 | [diff] [blame] | 9229 | return NULL; |
| 9230 | |
| 9231 | Py_BEGIN_ALLOW_THREADS |
Victor Stinner | 6139c1b | 2011-11-09 22:14:14 +0100 | [diff] [blame] | 9232 | retval = GetDiskFreeSpaceExW(path, &_, &total, &free); |
Giampaolo Rodola' | 210e7ca | 2011-07-01 13:55:36 +0200 | [diff] [blame] | 9233 | Py_END_ALLOW_THREADS |
| 9234 | if (retval == 0) |
| 9235 | return PyErr_SetFromWindowsErr(0); |
| 9236 | |
| 9237 | return Py_BuildValue("(LL)", total.QuadPart, free.QuadPart); |
| 9238 | } |
| 9239 | #endif |
| 9240 | |
| 9241 | |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9242 | /* This is used for fpathconf(), pathconf(), confstr() and sysconf(). |
| 9243 | * It maps strings representing configuration variable names to |
| 9244 | * integer values, allowing those functions to be called with the |
Thomas Wouters | 7e47402 | 2000-07-16 12:04:32 +0000 | [diff] [blame] | 9245 | * magic names instead of polluting the module's namespace with tons of |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 9246 | * rarely-used constants. There are three separate tables that use |
| 9247 | * these definitions. |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 9248 | * |
| 9249 | * This code is always included, even if none of the interfaces that |
| 9250 | * need it are included. The #if hackery needed to avoid it would be |
| 9251 | * sufficiently pervasive that it's not worth the loss of readability. |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9252 | */ |
| 9253 | struct constdef { |
| 9254 | char *name; |
| 9255 | long value; |
| 9256 | }; |
| 9257 | |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 9258 | static int |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 9259 | conv_confname(PyObject *arg, int *valuep, struct constdef *table, |
Guido van Rossum | 7d5baac | 2007-08-27 23:24:46 +0000 | [diff] [blame] | 9260 | size_t tablesize) |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 9261 | { |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 9262 | if (PyLong_Check(arg)) { |
Stefan Krah | 0e803b3 | 2010-11-26 16:16:47 +0000 | [diff] [blame] | 9263 | *valuep = PyLong_AS_LONG(arg); |
| 9264 | return 1; |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 9265 | } |
Guido van Rossum | bce56a6 | 2007-05-10 18:04:33 +0000 | [diff] [blame] | 9266 | else { |
Stefan Krah | 0e803b3 | 2010-11-26 16:16:47 +0000 | [diff] [blame] | 9267 | /* look up the value in the table using a binary search */ |
| 9268 | size_t lo = 0; |
| 9269 | size_t mid; |
| 9270 | size_t hi = tablesize; |
| 9271 | int cmp; |
| 9272 | const char *confname; |
| 9273 | if (!PyUnicode_Check(arg)) { |
| 9274 | PyErr_SetString(PyExc_TypeError, |
| 9275 | "configuration names must be strings or integers"); |
| 9276 | return 0; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9277 | } |
Stefan Krah | 0e803b3 | 2010-11-26 16:16:47 +0000 | [diff] [blame] | 9278 | confname = _PyUnicode_AsString(arg); |
| 9279 | if (confname == NULL) |
| 9280 | return 0; |
| 9281 | while (lo < hi) { |
| 9282 | mid = (lo + hi) / 2; |
| 9283 | cmp = strcmp(confname, table[mid].name); |
| 9284 | if (cmp < 0) |
| 9285 | hi = mid; |
| 9286 | else if (cmp > 0) |
| 9287 | lo = mid + 1; |
| 9288 | else { |
| 9289 | *valuep = table[mid].value; |
| 9290 | return 1; |
| 9291 | } |
| 9292 | } |
| 9293 | PyErr_SetString(PyExc_ValueError, "unrecognized configuration name"); |
| 9294 | return 0; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9295 | } |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 9296 | } |
| 9297 | |
| 9298 | |
| 9299 | #if defined(HAVE_FPATHCONF) || defined(HAVE_PATHCONF) |
| 9300 | static struct constdef posix_constants_pathconf[] = { |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9301 | #ifdef _PC_ABI_AIO_XFER_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9302 | {"PC_ABI_AIO_XFER_MAX", _PC_ABI_AIO_XFER_MAX}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9303 | #endif |
| 9304 | #ifdef _PC_ABI_ASYNC_IO |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9305 | {"PC_ABI_ASYNC_IO", _PC_ABI_ASYNC_IO}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9306 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9307 | #ifdef _PC_ASYNC_IO |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9308 | {"PC_ASYNC_IO", _PC_ASYNC_IO}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9309 | #endif |
| 9310 | #ifdef _PC_CHOWN_RESTRICTED |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9311 | {"PC_CHOWN_RESTRICTED", _PC_CHOWN_RESTRICTED}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9312 | #endif |
| 9313 | #ifdef _PC_FILESIZEBITS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9314 | {"PC_FILESIZEBITS", _PC_FILESIZEBITS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9315 | #endif |
| 9316 | #ifdef _PC_LAST |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9317 | {"PC_LAST", _PC_LAST}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9318 | #endif |
| 9319 | #ifdef _PC_LINK_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9320 | {"PC_LINK_MAX", _PC_LINK_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9321 | #endif |
| 9322 | #ifdef _PC_MAX_CANON |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9323 | {"PC_MAX_CANON", _PC_MAX_CANON}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9324 | #endif |
| 9325 | #ifdef _PC_MAX_INPUT |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9326 | {"PC_MAX_INPUT", _PC_MAX_INPUT}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9327 | #endif |
| 9328 | #ifdef _PC_NAME_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9329 | {"PC_NAME_MAX", _PC_NAME_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9330 | #endif |
| 9331 | #ifdef _PC_NO_TRUNC |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9332 | {"PC_NO_TRUNC", _PC_NO_TRUNC}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9333 | #endif |
| 9334 | #ifdef _PC_PATH_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9335 | {"PC_PATH_MAX", _PC_PATH_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9336 | #endif |
| 9337 | #ifdef _PC_PIPE_BUF |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9338 | {"PC_PIPE_BUF", _PC_PIPE_BUF}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9339 | #endif |
| 9340 | #ifdef _PC_PRIO_IO |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9341 | {"PC_PRIO_IO", _PC_PRIO_IO}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9342 | #endif |
| 9343 | #ifdef _PC_SOCK_MAXBUF |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9344 | {"PC_SOCK_MAXBUF", _PC_SOCK_MAXBUF}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9345 | #endif |
| 9346 | #ifdef _PC_SYNC_IO |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9347 | {"PC_SYNC_IO", _PC_SYNC_IO}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9348 | #endif |
| 9349 | #ifdef _PC_VDISABLE |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9350 | {"PC_VDISABLE", _PC_VDISABLE}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9351 | #endif |
Jesus Cea | 7e9065c | 2010-10-25 13:02:04 +0000 | [diff] [blame] | 9352 | #ifdef _PC_ACL_ENABLED |
| 9353 | {"PC_ACL_ENABLED", _PC_ACL_ENABLED}, |
| 9354 | #endif |
| 9355 | #ifdef _PC_MIN_HOLE_SIZE |
| 9356 | {"PC_MIN_HOLE_SIZE", _PC_MIN_HOLE_SIZE}, |
| 9357 | #endif |
| 9358 | #ifdef _PC_ALLOC_SIZE_MIN |
| 9359 | {"PC_ALLOC_SIZE_MIN", _PC_ALLOC_SIZE_MIN}, |
| 9360 | #endif |
| 9361 | #ifdef _PC_REC_INCR_XFER_SIZE |
| 9362 | {"PC_REC_INCR_XFER_SIZE", _PC_REC_INCR_XFER_SIZE}, |
| 9363 | #endif |
| 9364 | #ifdef _PC_REC_MAX_XFER_SIZE |
| 9365 | {"PC_REC_MAX_XFER_SIZE", _PC_REC_MAX_XFER_SIZE}, |
| 9366 | #endif |
| 9367 | #ifdef _PC_REC_MIN_XFER_SIZE |
| 9368 | {"PC_REC_MIN_XFER_SIZE", _PC_REC_MIN_XFER_SIZE}, |
| 9369 | #endif |
| 9370 | #ifdef _PC_REC_XFER_ALIGN |
| 9371 | {"PC_REC_XFER_ALIGN", _PC_REC_XFER_ALIGN}, |
| 9372 | #endif |
| 9373 | #ifdef _PC_SYMLINK_MAX |
| 9374 | {"PC_SYMLINK_MAX", _PC_SYMLINK_MAX}, |
| 9375 | #endif |
| 9376 | #ifdef _PC_XATTR_ENABLED |
| 9377 | {"PC_XATTR_ENABLED", _PC_XATTR_ENABLED}, |
| 9378 | #endif |
| 9379 | #ifdef _PC_XATTR_EXISTS |
| 9380 | {"PC_XATTR_EXISTS", _PC_XATTR_EXISTS}, |
| 9381 | #endif |
| 9382 | #ifdef _PC_TIMESTAMP_RESOLUTION |
| 9383 | {"PC_TIMESTAMP_RESOLUTION", _PC_TIMESTAMP_RESOLUTION}, |
| 9384 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9385 | }; |
| 9386 | |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9387 | static int |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 9388 | conv_path_confname(PyObject *arg, int *valuep) |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9389 | { |
| 9390 | return conv_confname(arg, valuep, posix_constants_pathconf, |
| 9391 | sizeof(posix_constants_pathconf) |
| 9392 | / sizeof(struct constdef)); |
| 9393 | } |
| 9394 | #endif |
| 9395 | |
| 9396 | #ifdef HAVE_FPATHCONF |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 9397 | PyDoc_STRVAR(posix_fpathconf__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 9398 | "fpathconf(fd, name) -> integer\n\n\ |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9399 | Return the configuration limit name for the file descriptor fd.\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 9400 | If there is no limit, return -1."); |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9401 | |
| 9402 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 9403 | posix_fpathconf(PyObject *self, PyObject *args) |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9404 | { |
| 9405 | PyObject *result = NULL; |
| 9406 | int name, fd; |
| 9407 | |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 9408 | if (PyArg_ParseTuple(args, "iO&:fpathconf", &fd, |
| 9409 | conv_path_confname, &name)) { |
Stefan Krah | 0e803b3 | 2010-11-26 16:16:47 +0000 | [diff] [blame] | 9410 | long limit; |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9411 | |
Stefan Krah | 0e803b3 | 2010-11-26 16:16:47 +0000 | [diff] [blame] | 9412 | errno = 0; |
| 9413 | limit = fpathconf(fd, name); |
| 9414 | if (limit == -1 && errno != 0) |
| 9415 | posix_error(); |
| 9416 | else |
| 9417 | result = PyLong_FromLong(limit); |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9418 | } |
| 9419 | return result; |
| 9420 | } |
| 9421 | #endif |
| 9422 | |
| 9423 | |
| 9424 | #ifdef HAVE_PATHCONF |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 9425 | PyDoc_STRVAR(posix_pathconf__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 9426 | "pathconf(path, name) -> integer\n\n\ |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9427 | Return the configuration limit name for the file or directory path.\n\ |
Georg Brandl | 306336b | 2012-06-24 12:55:33 +0200 | [diff] [blame] | 9428 | If there is no limit, return -1.\n\ |
| 9429 | On some platforms, path may also be specified as an open file descriptor.\n\ |
| 9430 | If this functionality is unavailable, using it raises an exception."); |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9431 | |
| 9432 | static PyObject * |
Georg Brandl | 306336b | 2012-06-24 12:55:33 +0200 | [diff] [blame] | 9433 | posix_pathconf(PyObject *self, PyObject *args, PyObject *kwargs) |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9434 | { |
Georg Brandl | 306336b | 2012-06-24 12:55:33 +0200 | [diff] [blame] | 9435 | path_t path; |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9436 | PyObject *result = NULL; |
| 9437 | int name; |
Georg Brandl | 306336b | 2012-06-24 12:55:33 +0200 | [diff] [blame] | 9438 | static char *keywords[] = {"path", "name", NULL}; |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9439 | |
Georg Brandl | 306336b | 2012-06-24 12:55:33 +0200 | [diff] [blame] | 9440 | memset(&path, 0, sizeof(path)); |
| 9441 | #ifdef HAVE_FPATHCONF |
| 9442 | path.allow_fd = 1; |
| 9443 | #endif |
| 9444 | if (PyArg_ParseTupleAndKeywords(args, kwargs, "O&O&:pathconf", keywords, |
| 9445 | path_converter, &path, |
| 9446 | conv_path_confname, &name)) { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9447 | long limit; |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9448 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9449 | errno = 0; |
Georg Brandl | 306336b | 2012-06-24 12:55:33 +0200 | [diff] [blame] | 9450 | #ifdef HAVE_FPATHCONF |
| 9451 | if (path.fd != -1) |
| 9452 | limit = fpathconf(path.fd, name); |
| 9453 | else |
| 9454 | #endif |
| 9455 | limit = pathconf(path.narrow, name); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9456 | if (limit == -1 && errno != 0) { |
| 9457 | if (errno == EINVAL) |
Stefan Krah | 9943926 | 2010-11-26 12:58:05 +0000 | [diff] [blame] | 9458 | /* could be a path or name problem */ |
| 9459 | posix_error(); |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9460 | else |
Georg Brandl | 306336b | 2012-06-24 12:55:33 +0200 | [diff] [blame] | 9461 | result = path_posix_error("pathconf", &path); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9462 | } |
| 9463 | else |
| 9464 | result = PyLong_FromLong(limit); |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9465 | } |
Georg Brandl | 306336b | 2012-06-24 12:55:33 +0200 | [diff] [blame] | 9466 | path_cleanup(&path); |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9467 | return result; |
| 9468 | } |
| 9469 | #endif |
| 9470 | |
| 9471 | #ifdef HAVE_CONFSTR |
| 9472 | static struct constdef posix_constants_confstr[] = { |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9473 | #ifdef _CS_ARCHITECTURE |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9474 | {"CS_ARCHITECTURE", _CS_ARCHITECTURE}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9475 | #endif |
Mark Dickinson | 876d7c8 | 2010-04-16 12:47:52 +0000 | [diff] [blame] | 9476 | #ifdef _CS_GNU_LIBC_VERSION |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9477 | {"CS_GNU_LIBC_VERSION", _CS_GNU_LIBC_VERSION}, |
Mark Dickinson | 876d7c8 | 2010-04-16 12:47:52 +0000 | [diff] [blame] | 9478 | #endif |
| 9479 | #ifdef _CS_GNU_LIBPTHREAD_VERSION |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9480 | {"CS_GNU_LIBPTHREAD_VERSION", _CS_GNU_LIBPTHREAD_VERSION}, |
Mark Dickinson | 876d7c8 | 2010-04-16 12:47:52 +0000 | [diff] [blame] | 9481 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9482 | #ifdef _CS_HOSTNAME |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9483 | {"CS_HOSTNAME", _CS_HOSTNAME}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9484 | #endif |
| 9485 | #ifdef _CS_HW_PROVIDER |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9486 | {"CS_HW_PROVIDER", _CS_HW_PROVIDER}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9487 | #endif |
| 9488 | #ifdef _CS_HW_SERIAL |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9489 | {"CS_HW_SERIAL", _CS_HW_SERIAL}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9490 | #endif |
| 9491 | #ifdef _CS_INITTAB_NAME |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9492 | {"CS_INITTAB_NAME", _CS_INITTAB_NAME}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9493 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9494 | #ifdef _CS_LFS64_CFLAGS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9495 | {"CS_LFS64_CFLAGS", _CS_LFS64_CFLAGS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9496 | #endif |
| 9497 | #ifdef _CS_LFS64_LDFLAGS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9498 | {"CS_LFS64_LDFLAGS", _CS_LFS64_LDFLAGS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9499 | #endif |
| 9500 | #ifdef _CS_LFS64_LIBS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9501 | {"CS_LFS64_LIBS", _CS_LFS64_LIBS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9502 | #endif |
| 9503 | #ifdef _CS_LFS64_LINTFLAGS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9504 | {"CS_LFS64_LINTFLAGS", _CS_LFS64_LINTFLAGS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9505 | #endif |
| 9506 | #ifdef _CS_LFS_CFLAGS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9507 | {"CS_LFS_CFLAGS", _CS_LFS_CFLAGS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9508 | #endif |
| 9509 | #ifdef _CS_LFS_LDFLAGS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9510 | {"CS_LFS_LDFLAGS", _CS_LFS_LDFLAGS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9511 | #endif |
| 9512 | #ifdef _CS_LFS_LIBS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9513 | {"CS_LFS_LIBS", _CS_LFS_LIBS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9514 | #endif |
| 9515 | #ifdef _CS_LFS_LINTFLAGS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9516 | {"CS_LFS_LINTFLAGS", _CS_LFS_LINTFLAGS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9517 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9518 | #ifdef _CS_MACHINE |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9519 | {"CS_MACHINE", _CS_MACHINE}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9520 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9521 | #ifdef _CS_PATH |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9522 | {"CS_PATH", _CS_PATH}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9523 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9524 | #ifdef _CS_RELEASE |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9525 | {"CS_RELEASE", _CS_RELEASE}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9526 | #endif |
| 9527 | #ifdef _CS_SRPC_DOMAIN |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9528 | {"CS_SRPC_DOMAIN", _CS_SRPC_DOMAIN}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9529 | #endif |
| 9530 | #ifdef _CS_SYSNAME |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9531 | {"CS_SYSNAME", _CS_SYSNAME}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9532 | #endif |
| 9533 | #ifdef _CS_VERSION |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9534 | {"CS_VERSION", _CS_VERSION}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9535 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9536 | #ifdef _CS_XBS5_ILP32_OFF32_CFLAGS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9537 | {"CS_XBS5_ILP32_OFF32_CFLAGS", _CS_XBS5_ILP32_OFF32_CFLAGS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9538 | #endif |
| 9539 | #ifdef _CS_XBS5_ILP32_OFF32_LDFLAGS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9540 | {"CS_XBS5_ILP32_OFF32_LDFLAGS", _CS_XBS5_ILP32_OFF32_LDFLAGS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9541 | #endif |
| 9542 | #ifdef _CS_XBS5_ILP32_OFF32_LIBS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9543 | {"CS_XBS5_ILP32_OFF32_LIBS", _CS_XBS5_ILP32_OFF32_LIBS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9544 | #endif |
| 9545 | #ifdef _CS_XBS5_ILP32_OFF32_LINTFLAGS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9546 | {"CS_XBS5_ILP32_OFF32_LINTFLAGS", _CS_XBS5_ILP32_OFF32_LINTFLAGS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9547 | #endif |
| 9548 | #ifdef _CS_XBS5_ILP32_OFFBIG_CFLAGS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9549 | {"CS_XBS5_ILP32_OFFBIG_CFLAGS", _CS_XBS5_ILP32_OFFBIG_CFLAGS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9550 | #endif |
| 9551 | #ifdef _CS_XBS5_ILP32_OFFBIG_LDFLAGS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9552 | {"CS_XBS5_ILP32_OFFBIG_LDFLAGS", _CS_XBS5_ILP32_OFFBIG_LDFLAGS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9553 | #endif |
| 9554 | #ifdef _CS_XBS5_ILP32_OFFBIG_LIBS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9555 | {"CS_XBS5_ILP32_OFFBIG_LIBS", _CS_XBS5_ILP32_OFFBIG_LIBS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9556 | #endif |
| 9557 | #ifdef _CS_XBS5_ILP32_OFFBIG_LINTFLAGS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9558 | {"CS_XBS5_ILP32_OFFBIG_LINTFLAGS", _CS_XBS5_ILP32_OFFBIG_LINTFLAGS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9559 | #endif |
| 9560 | #ifdef _CS_XBS5_LP64_OFF64_CFLAGS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9561 | {"CS_XBS5_LP64_OFF64_CFLAGS", _CS_XBS5_LP64_OFF64_CFLAGS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9562 | #endif |
| 9563 | #ifdef _CS_XBS5_LP64_OFF64_LDFLAGS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9564 | {"CS_XBS5_LP64_OFF64_LDFLAGS", _CS_XBS5_LP64_OFF64_LDFLAGS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9565 | #endif |
| 9566 | #ifdef _CS_XBS5_LP64_OFF64_LIBS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9567 | {"CS_XBS5_LP64_OFF64_LIBS", _CS_XBS5_LP64_OFF64_LIBS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9568 | #endif |
| 9569 | #ifdef _CS_XBS5_LP64_OFF64_LINTFLAGS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9570 | {"CS_XBS5_LP64_OFF64_LINTFLAGS", _CS_XBS5_LP64_OFF64_LINTFLAGS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9571 | #endif |
| 9572 | #ifdef _CS_XBS5_LPBIG_OFFBIG_CFLAGS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9573 | {"CS_XBS5_LPBIG_OFFBIG_CFLAGS", _CS_XBS5_LPBIG_OFFBIG_CFLAGS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9574 | #endif |
| 9575 | #ifdef _CS_XBS5_LPBIG_OFFBIG_LDFLAGS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9576 | {"CS_XBS5_LPBIG_OFFBIG_LDFLAGS", _CS_XBS5_LPBIG_OFFBIG_LDFLAGS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9577 | #endif |
| 9578 | #ifdef _CS_XBS5_LPBIG_OFFBIG_LIBS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9579 | {"CS_XBS5_LPBIG_OFFBIG_LIBS", _CS_XBS5_LPBIG_OFFBIG_LIBS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9580 | #endif |
| 9581 | #ifdef _CS_XBS5_LPBIG_OFFBIG_LINTFLAGS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9582 | {"CS_XBS5_LPBIG_OFFBIG_LINTFLAGS", _CS_XBS5_LPBIG_OFFBIG_LINTFLAGS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9583 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9584 | #ifdef _MIPS_CS_AVAIL_PROCESSORS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9585 | {"MIPS_CS_AVAIL_PROCESSORS", _MIPS_CS_AVAIL_PROCESSORS}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9586 | #endif |
| 9587 | #ifdef _MIPS_CS_BASE |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9588 | {"MIPS_CS_BASE", _MIPS_CS_BASE}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9589 | #endif |
| 9590 | #ifdef _MIPS_CS_HOSTID |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9591 | {"MIPS_CS_HOSTID", _MIPS_CS_HOSTID}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9592 | #endif |
| 9593 | #ifdef _MIPS_CS_HW_NAME |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9594 | {"MIPS_CS_HW_NAME", _MIPS_CS_HW_NAME}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9595 | #endif |
| 9596 | #ifdef _MIPS_CS_NUM_PROCESSORS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9597 | {"MIPS_CS_NUM_PROCESSORS", _MIPS_CS_NUM_PROCESSORS}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9598 | #endif |
| 9599 | #ifdef _MIPS_CS_OSREL_MAJ |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9600 | {"MIPS_CS_OSREL_MAJ", _MIPS_CS_OSREL_MAJ}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9601 | #endif |
| 9602 | #ifdef _MIPS_CS_OSREL_MIN |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9603 | {"MIPS_CS_OSREL_MIN", _MIPS_CS_OSREL_MIN}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9604 | #endif |
| 9605 | #ifdef _MIPS_CS_OSREL_PATCH |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9606 | {"MIPS_CS_OSREL_PATCH", _MIPS_CS_OSREL_PATCH}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9607 | #endif |
| 9608 | #ifdef _MIPS_CS_OS_NAME |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9609 | {"MIPS_CS_OS_NAME", _MIPS_CS_OS_NAME}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9610 | #endif |
| 9611 | #ifdef _MIPS_CS_OS_PROVIDER |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9612 | {"MIPS_CS_OS_PROVIDER", _MIPS_CS_OS_PROVIDER}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9613 | #endif |
| 9614 | #ifdef _MIPS_CS_PROCESSORS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9615 | {"MIPS_CS_PROCESSORS", _MIPS_CS_PROCESSORS}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9616 | #endif |
| 9617 | #ifdef _MIPS_CS_SERIAL |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9618 | {"MIPS_CS_SERIAL", _MIPS_CS_SERIAL}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9619 | #endif |
| 9620 | #ifdef _MIPS_CS_VENDOR |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9621 | {"MIPS_CS_VENDOR", _MIPS_CS_VENDOR}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9622 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9623 | }; |
| 9624 | |
| 9625 | static int |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 9626 | conv_confstr_confname(PyObject *arg, int *valuep) |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9627 | { |
| 9628 | return conv_confname(arg, valuep, posix_constants_confstr, |
| 9629 | sizeof(posix_constants_confstr) |
| 9630 | / sizeof(struct constdef)); |
| 9631 | } |
| 9632 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 9633 | PyDoc_STRVAR(posix_confstr__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 9634 | "confstr(name) -> string\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 9635 | Return a string-valued system configuration variable."); |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9636 | |
| 9637 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 9638 | posix_confstr(PyObject *self, PyObject *args) |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9639 | { |
| 9640 | PyObject *result = NULL; |
| 9641 | int name; |
Victor Stinner | cb04352 | 2010-09-10 23:49:04 +0000 | [diff] [blame] | 9642 | char buffer[255]; |
Stefan Krah | 9943926 | 2010-11-26 12:58:05 +0000 | [diff] [blame] | 9643 | int len; |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9644 | |
Victor Stinner | cb04352 | 2010-09-10 23:49:04 +0000 | [diff] [blame] | 9645 | if (!PyArg_ParseTuple(args, "O&:confstr", conv_confstr_confname, &name)) |
| 9646 | return NULL; |
| 9647 | |
| 9648 | errno = 0; |
| 9649 | len = confstr(name, buffer, sizeof(buffer)); |
| 9650 | if (len == 0) { |
| 9651 | if (errno) { |
| 9652 | posix_error(); |
| 9653 | return NULL; |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9654 | } |
| 9655 | else { |
Victor Stinner | cb04352 | 2010-09-10 23:49:04 +0000 | [diff] [blame] | 9656 | Py_RETURN_NONE; |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9657 | } |
| 9658 | } |
Victor Stinner | cb04352 | 2010-09-10 23:49:04 +0000 | [diff] [blame] | 9659 | |
| 9660 | if ((unsigned int)len >= sizeof(buffer)) { |
| 9661 | char *buf = PyMem_Malloc(len); |
| 9662 | if (buf == NULL) |
| 9663 | return PyErr_NoMemory(); |
| 9664 | confstr(name, buf, len); |
| 9665 | result = PyUnicode_DecodeFSDefaultAndSize(buf, len-1); |
| 9666 | PyMem_Free(buf); |
| 9667 | } |
| 9668 | else |
| 9669 | result = PyUnicode_DecodeFSDefaultAndSize(buffer, len-1); |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9670 | return result; |
| 9671 | } |
| 9672 | #endif |
| 9673 | |
| 9674 | |
| 9675 | #ifdef HAVE_SYSCONF |
| 9676 | static struct constdef posix_constants_sysconf[] = { |
| 9677 | #ifdef _SC_2_CHAR_TERM |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9678 | {"SC_2_CHAR_TERM", _SC_2_CHAR_TERM}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9679 | #endif |
| 9680 | #ifdef _SC_2_C_BIND |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9681 | {"SC_2_C_BIND", _SC_2_C_BIND}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9682 | #endif |
| 9683 | #ifdef _SC_2_C_DEV |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9684 | {"SC_2_C_DEV", _SC_2_C_DEV}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9685 | #endif |
| 9686 | #ifdef _SC_2_C_VERSION |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9687 | {"SC_2_C_VERSION", _SC_2_C_VERSION}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9688 | #endif |
| 9689 | #ifdef _SC_2_FORT_DEV |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9690 | {"SC_2_FORT_DEV", _SC_2_FORT_DEV}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9691 | #endif |
| 9692 | #ifdef _SC_2_FORT_RUN |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9693 | {"SC_2_FORT_RUN", _SC_2_FORT_RUN}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9694 | #endif |
| 9695 | #ifdef _SC_2_LOCALEDEF |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9696 | {"SC_2_LOCALEDEF", _SC_2_LOCALEDEF}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9697 | #endif |
| 9698 | #ifdef _SC_2_SW_DEV |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9699 | {"SC_2_SW_DEV", _SC_2_SW_DEV}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9700 | #endif |
| 9701 | #ifdef _SC_2_UPE |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9702 | {"SC_2_UPE", _SC_2_UPE}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9703 | #endif |
| 9704 | #ifdef _SC_2_VERSION |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9705 | {"SC_2_VERSION", _SC_2_VERSION}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9706 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9707 | #ifdef _SC_ABI_ASYNCHRONOUS_IO |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9708 | {"SC_ABI_ASYNCHRONOUS_IO", _SC_ABI_ASYNCHRONOUS_IO}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9709 | #endif |
| 9710 | #ifdef _SC_ACL |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9711 | {"SC_ACL", _SC_ACL}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9712 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9713 | #ifdef _SC_AIO_LISTIO_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9714 | {"SC_AIO_LISTIO_MAX", _SC_AIO_LISTIO_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9715 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9716 | #ifdef _SC_AIO_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9717 | {"SC_AIO_MAX", _SC_AIO_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9718 | #endif |
| 9719 | #ifdef _SC_AIO_PRIO_DELTA_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9720 | {"SC_AIO_PRIO_DELTA_MAX", _SC_AIO_PRIO_DELTA_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9721 | #endif |
| 9722 | #ifdef _SC_ARG_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9723 | {"SC_ARG_MAX", _SC_ARG_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9724 | #endif |
| 9725 | #ifdef _SC_ASYNCHRONOUS_IO |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9726 | {"SC_ASYNCHRONOUS_IO", _SC_ASYNCHRONOUS_IO}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9727 | #endif |
| 9728 | #ifdef _SC_ATEXIT_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9729 | {"SC_ATEXIT_MAX", _SC_ATEXIT_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9730 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9731 | #ifdef _SC_AUDIT |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9732 | {"SC_AUDIT", _SC_AUDIT}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9733 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9734 | #ifdef _SC_AVPHYS_PAGES |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9735 | {"SC_AVPHYS_PAGES", _SC_AVPHYS_PAGES}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9736 | #endif |
| 9737 | #ifdef _SC_BC_BASE_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9738 | {"SC_BC_BASE_MAX", _SC_BC_BASE_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9739 | #endif |
| 9740 | #ifdef _SC_BC_DIM_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9741 | {"SC_BC_DIM_MAX", _SC_BC_DIM_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9742 | #endif |
| 9743 | #ifdef _SC_BC_SCALE_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9744 | {"SC_BC_SCALE_MAX", _SC_BC_SCALE_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9745 | #endif |
| 9746 | #ifdef _SC_BC_STRING_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9747 | {"SC_BC_STRING_MAX", _SC_BC_STRING_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9748 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9749 | #ifdef _SC_CAP |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9750 | {"SC_CAP", _SC_CAP}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9751 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9752 | #ifdef _SC_CHARCLASS_NAME_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9753 | {"SC_CHARCLASS_NAME_MAX", _SC_CHARCLASS_NAME_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9754 | #endif |
| 9755 | #ifdef _SC_CHAR_BIT |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9756 | {"SC_CHAR_BIT", _SC_CHAR_BIT}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9757 | #endif |
| 9758 | #ifdef _SC_CHAR_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9759 | {"SC_CHAR_MAX", _SC_CHAR_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9760 | #endif |
| 9761 | #ifdef _SC_CHAR_MIN |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9762 | {"SC_CHAR_MIN", _SC_CHAR_MIN}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9763 | #endif |
| 9764 | #ifdef _SC_CHILD_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9765 | {"SC_CHILD_MAX", _SC_CHILD_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9766 | #endif |
| 9767 | #ifdef _SC_CLK_TCK |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9768 | {"SC_CLK_TCK", _SC_CLK_TCK}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9769 | #endif |
| 9770 | #ifdef _SC_COHER_BLKSZ |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9771 | {"SC_COHER_BLKSZ", _SC_COHER_BLKSZ}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9772 | #endif |
| 9773 | #ifdef _SC_COLL_WEIGHTS_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9774 | {"SC_COLL_WEIGHTS_MAX", _SC_COLL_WEIGHTS_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9775 | #endif |
| 9776 | #ifdef _SC_DCACHE_ASSOC |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9777 | {"SC_DCACHE_ASSOC", _SC_DCACHE_ASSOC}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9778 | #endif |
| 9779 | #ifdef _SC_DCACHE_BLKSZ |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9780 | {"SC_DCACHE_BLKSZ", _SC_DCACHE_BLKSZ}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9781 | #endif |
| 9782 | #ifdef _SC_DCACHE_LINESZ |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9783 | {"SC_DCACHE_LINESZ", _SC_DCACHE_LINESZ}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9784 | #endif |
| 9785 | #ifdef _SC_DCACHE_SZ |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9786 | {"SC_DCACHE_SZ", _SC_DCACHE_SZ}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9787 | #endif |
| 9788 | #ifdef _SC_DCACHE_TBLKSZ |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9789 | {"SC_DCACHE_TBLKSZ", _SC_DCACHE_TBLKSZ}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9790 | #endif |
| 9791 | #ifdef _SC_DELAYTIMER_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9792 | {"SC_DELAYTIMER_MAX", _SC_DELAYTIMER_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9793 | #endif |
| 9794 | #ifdef _SC_EQUIV_CLASS_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9795 | {"SC_EQUIV_CLASS_MAX", _SC_EQUIV_CLASS_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9796 | #endif |
| 9797 | #ifdef _SC_EXPR_NEST_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9798 | {"SC_EXPR_NEST_MAX", _SC_EXPR_NEST_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9799 | #endif |
| 9800 | #ifdef _SC_FSYNC |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9801 | {"SC_FSYNC", _SC_FSYNC}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9802 | #endif |
| 9803 | #ifdef _SC_GETGR_R_SIZE_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9804 | {"SC_GETGR_R_SIZE_MAX", _SC_GETGR_R_SIZE_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9805 | #endif |
| 9806 | #ifdef _SC_GETPW_R_SIZE_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9807 | {"SC_GETPW_R_SIZE_MAX", _SC_GETPW_R_SIZE_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9808 | #endif |
| 9809 | #ifdef _SC_ICACHE_ASSOC |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9810 | {"SC_ICACHE_ASSOC", _SC_ICACHE_ASSOC}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9811 | #endif |
| 9812 | #ifdef _SC_ICACHE_BLKSZ |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9813 | {"SC_ICACHE_BLKSZ", _SC_ICACHE_BLKSZ}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9814 | #endif |
| 9815 | #ifdef _SC_ICACHE_LINESZ |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9816 | {"SC_ICACHE_LINESZ", _SC_ICACHE_LINESZ}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9817 | #endif |
| 9818 | #ifdef _SC_ICACHE_SZ |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9819 | {"SC_ICACHE_SZ", _SC_ICACHE_SZ}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9820 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9821 | #ifdef _SC_INF |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9822 | {"SC_INF", _SC_INF}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9823 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9824 | #ifdef _SC_INT_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9825 | {"SC_INT_MAX", _SC_INT_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9826 | #endif |
| 9827 | #ifdef _SC_INT_MIN |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9828 | {"SC_INT_MIN", _SC_INT_MIN}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9829 | #endif |
| 9830 | #ifdef _SC_IOV_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9831 | {"SC_IOV_MAX", _SC_IOV_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9832 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9833 | #ifdef _SC_IP_SECOPTS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9834 | {"SC_IP_SECOPTS", _SC_IP_SECOPTS}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9835 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9836 | #ifdef _SC_JOB_CONTROL |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9837 | {"SC_JOB_CONTROL", _SC_JOB_CONTROL}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9838 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9839 | #ifdef _SC_KERN_POINTERS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9840 | {"SC_KERN_POINTERS", _SC_KERN_POINTERS}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9841 | #endif |
| 9842 | #ifdef _SC_KERN_SIM |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9843 | {"SC_KERN_SIM", _SC_KERN_SIM}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9844 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9845 | #ifdef _SC_LINE_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9846 | {"SC_LINE_MAX", _SC_LINE_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9847 | #endif |
| 9848 | #ifdef _SC_LOGIN_NAME_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9849 | {"SC_LOGIN_NAME_MAX", _SC_LOGIN_NAME_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9850 | #endif |
| 9851 | #ifdef _SC_LOGNAME_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9852 | {"SC_LOGNAME_MAX", _SC_LOGNAME_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9853 | #endif |
| 9854 | #ifdef _SC_LONG_BIT |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9855 | {"SC_LONG_BIT", _SC_LONG_BIT}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9856 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9857 | #ifdef _SC_MAC |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9858 | {"SC_MAC", _SC_MAC}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9859 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9860 | #ifdef _SC_MAPPED_FILES |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9861 | {"SC_MAPPED_FILES", _SC_MAPPED_FILES}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9862 | #endif |
| 9863 | #ifdef _SC_MAXPID |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9864 | {"SC_MAXPID", _SC_MAXPID}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9865 | #endif |
| 9866 | #ifdef _SC_MB_LEN_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9867 | {"SC_MB_LEN_MAX", _SC_MB_LEN_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9868 | #endif |
| 9869 | #ifdef _SC_MEMLOCK |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9870 | {"SC_MEMLOCK", _SC_MEMLOCK}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9871 | #endif |
| 9872 | #ifdef _SC_MEMLOCK_RANGE |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9873 | {"SC_MEMLOCK_RANGE", _SC_MEMLOCK_RANGE}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9874 | #endif |
| 9875 | #ifdef _SC_MEMORY_PROTECTION |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9876 | {"SC_MEMORY_PROTECTION", _SC_MEMORY_PROTECTION}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9877 | #endif |
| 9878 | #ifdef _SC_MESSAGE_PASSING |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9879 | {"SC_MESSAGE_PASSING", _SC_MESSAGE_PASSING}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9880 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9881 | #ifdef _SC_MMAP_FIXED_ALIGNMENT |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9882 | {"SC_MMAP_FIXED_ALIGNMENT", _SC_MMAP_FIXED_ALIGNMENT}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9883 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9884 | #ifdef _SC_MQ_OPEN_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9885 | {"SC_MQ_OPEN_MAX", _SC_MQ_OPEN_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9886 | #endif |
| 9887 | #ifdef _SC_MQ_PRIO_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9888 | {"SC_MQ_PRIO_MAX", _SC_MQ_PRIO_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9889 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9890 | #ifdef _SC_NACLS_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9891 | {"SC_NACLS_MAX", _SC_NACLS_MAX}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9892 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9893 | #ifdef _SC_NGROUPS_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9894 | {"SC_NGROUPS_MAX", _SC_NGROUPS_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9895 | #endif |
| 9896 | #ifdef _SC_NL_ARGMAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9897 | {"SC_NL_ARGMAX", _SC_NL_ARGMAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9898 | #endif |
| 9899 | #ifdef _SC_NL_LANGMAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9900 | {"SC_NL_LANGMAX", _SC_NL_LANGMAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9901 | #endif |
| 9902 | #ifdef _SC_NL_MSGMAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9903 | {"SC_NL_MSGMAX", _SC_NL_MSGMAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9904 | #endif |
| 9905 | #ifdef _SC_NL_NMAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9906 | {"SC_NL_NMAX", _SC_NL_NMAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9907 | #endif |
| 9908 | #ifdef _SC_NL_SETMAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9909 | {"SC_NL_SETMAX", _SC_NL_SETMAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9910 | #endif |
| 9911 | #ifdef _SC_NL_TEXTMAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9912 | {"SC_NL_TEXTMAX", _SC_NL_TEXTMAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9913 | #endif |
| 9914 | #ifdef _SC_NPROCESSORS_CONF |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9915 | {"SC_NPROCESSORS_CONF", _SC_NPROCESSORS_CONF}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9916 | #endif |
| 9917 | #ifdef _SC_NPROCESSORS_ONLN |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9918 | {"SC_NPROCESSORS_ONLN", _SC_NPROCESSORS_ONLN}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9919 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9920 | #ifdef _SC_NPROC_CONF |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9921 | {"SC_NPROC_CONF", _SC_NPROC_CONF}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9922 | #endif |
| 9923 | #ifdef _SC_NPROC_ONLN |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9924 | {"SC_NPROC_ONLN", _SC_NPROC_ONLN}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 9925 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9926 | #ifdef _SC_NZERO |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9927 | {"SC_NZERO", _SC_NZERO}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9928 | #endif |
| 9929 | #ifdef _SC_OPEN_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9930 | {"SC_OPEN_MAX", _SC_OPEN_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9931 | #endif |
| 9932 | #ifdef _SC_PAGESIZE |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9933 | {"SC_PAGESIZE", _SC_PAGESIZE}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9934 | #endif |
| 9935 | #ifdef _SC_PAGE_SIZE |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9936 | {"SC_PAGE_SIZE", _SC_PAGE_SIZE}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9937 | #endif |
| 9938 | #ifdef _SC_PASS_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9939 | {"SC_PASS_MAX", _SC_PASS_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9940 | #endif |
| 9941 | #ifdef _SC_PHYS_PAGES |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9942 | {"SC_PHYS_PAGES", _SC_PHYS_PAGES}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9943 | #endif |
| 9944 | #ifdef _SC_PII |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9945 | {"SC_PII", _SC_PII}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9946 | #endif |
| 9947 | #ifdef _SC_PII_INTERNET |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9948 | {"SC_PII_INTERNET", _SC_PII_INTERNET}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9949 | #endif |
| 9950 | #ifdef _SC_PII_INTERNET_DGRAM |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9951 | {"SC_PII_INTERNET_DGRAM", _SC_PII_INTERNET_DGRAM}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9952 | #endif |
| 9953 | #ifdef _SC_PII_INTERNET_STREAM |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9954 | {"SC_PII_INTERNET_STREAM", _SC_PII_INTERNET_STREAM}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9955 | #endif |
| 9956 | #ifdef _SC_PII_OSI |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9957 | {"SC_PII_OSI", _SC_PII_OSI}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9958 | #endif |
| 9959 | #ifdef _SC_PII_OSI_CLTS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9960 | {"SC_PII_OSI_CLTS", _SC_PII_OSI_CLTS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9961 | #endif |
| 9962 | #ifdef _SC_PII_OSI_COTS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9963 | {"SC_PII_OSI_COTS", _SC_PII_OSI_COTS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9964 | #endif |
| 9965 | #ifdef _SC_PII_OSI_M |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9966 | {"SC_PII_OSI_M", _SC_PII_OSI_M}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9967 | #endif |
| 9968 | #ifdef _SC_PII_SOCKET |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9969 | {"SC_PII_SOCKET", _SC_PII_SOCKET}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9970 | #endif |
| 9971 | #ifdef _SC_PII_XTI |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9972 | {"SC_PII_XTI", _SC_PII_XTI}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9973 | #endif |
| 9974 | #ifdef _SC_POLL |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9975 | {"SC_POLL", _SC_POLL}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9976 | #endif |
| 9977 | #ifdef _SC_PRIORITIZED_IO |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9978 | {"SC_PRIORITIZED_IO", _SC_PRIORITIZED_IO}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9979 | #endif |
| 9980 | #ifdef _SC_PRIORITY_SCHEDULING |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9981 | {"SC_PRIORITY_SCHEDULING", _SC_PRIORITY_SCHEDULING}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9982 | #endif |
| 9983 | #ifdef _SC_REALTIME_SIGNALS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9984 | {"SC_REALTIME_SIGNALS", _SC_REALTIME_SIGNALS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9985 | #endif |
| 9986 | #ifdef _SC_RE_DUP_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9987 | {"SC_RE_DUP_MAX", _SC_RE_DUP_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9988 | #endif |
| 9989 | #ifdef _SC_RTSIG_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9990 | {"SC_RTSIG_MAX", _SC_RTSIG_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9991 | #endif |
| 9992 | #ifdef _SC_SAVED_IDS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9993 | {"SC_SAVED_IDS", _SC_SAVED_IDS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9994 | #endif |
| 9995 | #ifdef _SC_SCHAR_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9996 | {"SC_SCHAR_MAX", _SC_SCHAR_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 9997 | #endif |
| 9998 | #ifdef _SC_SCHAR_MIN |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 9999 | {"SC_SCHAR_MIN", _SC_SCHAR_MIN}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10000 | #endif |
| 10001 | #ifdef _SC_SELECT |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10002 | {"SC_SELECT", _SC_SELECT}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10003 | #endif |
| 10004 | #ifdef _SC_SEMAPHORES |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10005 | {"SC_SEMAPHORES", _SC_SEMAPHORES}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10006 | #endif |
| 10007 | #ifdef _SC_SEM_NSEMS_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10008 | {"SC_SEM_NSEMS_MAX", _SC_SEM_NSEMS_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10009 | #endif |
| 10010 | #ifdef _SC_SEM_VALUE_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10011 | {"SC_SEM_VALUE_MAX", _SC_SEM_VALUE_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10012 | #endif |
| 10013 | #ifdef _SC_SHARED_MEMORY_OBJECTS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10014 | {"SC_SHARED_MEMORY_OBJECTS", _SC_SHARED_MEMORY_OBJECTS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10015 | #endif |
| 10016 | #ifdef _SC_SHRT_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10017 | {"SC_SHRT_MAX", _SC_SHRT_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10018 | #endif |
| 10019 | #ifdef _SC_SHRT_MIN |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10020 | {"SC_SHRT_MIN", _SC_SHRT_MIN}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10021 | #endif |
| 10022 | #ifdef _SC_SIGQUEUE_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10023 | {"SC_SIGQUEUE_MAX", _SC_SIGQUEUE_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10024 | #endif |
| 10025 | #ifdef _SC_SIGRT_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10026 | {"SC_SIGRT_MAX", _SC_SIGRT_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10027 | #endif |
| 10028 | #ifdef _SC_SIGRT_MIN |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10029 | {"SC_SIGRT_MIN", _SC_SIGRT_MIN}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10030 | #endif |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 10031 | #ifdef _SC_SOFTPOWER |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10032 | {"SC_SOFTPOWER", _SC_SOFTPOWER}, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 10033 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10034 | #ifdef _SC_SPLIT_CACHE |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10035 | {"SC_SPLIT_CACHE", _SC_SPLIT_CACHE}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10036 | #endif |
| 10037 | #ifdef _SC_SSIZE_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10038 | {"SC_SSIZE_MAX", _SC_SSIZE_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10039 | #endif |
| 10040 | #ifdef _SC_STACK_PROT |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10041 | {"SC_STACK_PROT", _SC_STACK_PROT}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10042 | #endif |
| 10043 | #ifdef _SC_STREAM_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10044 | {"SC_STREAM_MAX", _SC_STREAM_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10045 | #endif |
| 10046 | #ifdef _SC_SYNCHRONIZED_IO |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10047 | {"SC_SYNCHRONIZED_IO", _SC_SYNCHRONIZED_IO}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10048 | #endif |
| 10049 | #ifdef _SC_THREADS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10050 | {"SC_THREADS", _SC_THREADS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10051 | #endif |
| 10052 | #ifdef _SC_THREAD_ATTR_STACKADDR |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10053 | {"SC_THREAD_ATTR_STACKADDR", _SC_THREAD_ATTR_STACKADDR}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10054 | #endif |
| 10055 | #ifdef _SC_THREAD_ATTR_STACKSIZE |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10056 | {"SC_THREAD_ATTR_STACKSIZE", _SC_THREAD_ATTR_STACKSIZE}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10057 | #endif |
| 10058 | #ifdef _SC_THREAD_DESTRUCTOR_ITERATIONS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10059 | {"SC_THREAD_DESTRUCTOR_ITERATIONS", _SC_THREAD_DESTRUCTOR_ITERATIONS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10060 | #endif |
| 10061 | #ifdef _SC_THREAD_KEYS_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10062 | {"SC_THREAD_KEYS_MAX", _SC_THREAD_KEYS_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10063 | #endif |
| 10064 | #ifdef _SC_THREAD_PRIORITY_SCHEDULING |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10065 | {"SC_THREAD_PRIORITY_SCHEDULING", _SC_THREAD_PRIORITY_SCHEDULING}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10066 | #endif |
| 10067 | #ifdef _SC_THREAD_PRIO_INHERIT |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10068 | {"SC_THREAD_PRIO_INHERIT", _SC_THREAD_PRIO_INHERIT}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10069 | #endif |
| 10070 | #ifdef _SC_THREAD_PRIO_PROTECT |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10071 | {"SC_THREAD_PRIO_PROTECT", _SC_THREAD_PRIO_PROTECT}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10072 | #endif |
| 10073 | #ifdef _SC_THREAD_PROCESS_SHARED |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10074 | {"SC_THREAD_PROCESS_SHARED", _SC_THREAD_PROCESS_SHARED}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10075 | #endif |
| 10076 | #ifdef _SC_THREAD_SAFE_FUNCTIONS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10077 | {"SC_THREAD_SAFE_FUNCTIONS", _SC_THREAD_SAFE_FUNCTIONS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10078 | #endif |
| 10079 | #ifdef _SC_THREAD_STACK_MIN |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10080 | {"SC_THREAD_STACK_MIN", _SC_THREAD_STACK_MIN}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10081 | #endif |
| 10082 | #ifdef _SC_THREAD_THREADS_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10083 | {"SC_THREAD_THREADS_MAX", _SC_THREAD_THREADS_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10084 | #endif |
| 10085 | #ifdef _SC_TIMERS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10086 | {"SC_TIMERS", _SC_TIMERS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10087 | #endif |
| 10088 | #ifdef _SC_TIMER_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10089 | {"SC_TIMER_MAX", _SC_TIMER_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10090 | #endif |
| 10091 | #ifdef _SC_TTY_NAME_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10092 | {"SC_TTY_NAME_MAX", _SC_TTY_NAME_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10093 | #endif |
| 10094 | #ifdef _SC_TZNAME_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10095 | {"SC_TZNAME_MAX", _SC_TZNAME_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10096 | #endif |
| 10097 | #ifdef _SC_T_IOV_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10098 | {"SC_T_IOV_MAX", _SC_T_IOV_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10099 | #endif |
| 10100 | #ifdef _SC_UCHAR_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10101 | {"SC_UCHAR_MAX", _SC_UCHAR_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10102 | #endif |
| 10103 | #ifdef _SC_UINT_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10104 | {"SC_UINT_MAX", _SC_UINT_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10105 | #endif |
| 10106 | #ifdef _SC_UIO_MAXIOV |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10107 | {"SC_UIO_MAXIOV", _SC_UIO_MAXIOV}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10108 | #endif |
| 10109 | #ifdef _SC_ULONG_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10110 | {"SC_ULONG_MAX", _SC_ULONG_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10111 | #endif |
| 10112 | #ifdef _SC_USHRT_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10113 | {"SC_USHRT_MAX", _SC_USHRT_MAX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10114 | #endif |
| 10115 | #ifdef _SC_VERSION |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10116 | {"SC_VERSION", _SC_VERSION}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10117 | #endif |
| 10118 | #ifdef _SC_WORD_BIT |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10119 | {"SC_WORD_BIT", _SC_WORD_BIT}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10120 | #endif |
| 10121 | #ifdef _SC_XBS5_ILP32_OFF32 |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10122 | {"SC_XBS5_ILP32_OFF32", _SC_XBS5_ILP32_OFF32}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10123 | #endif |
| 10124 | #ifdef _SC_XBS5_ILP32_OFFBIG |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10125 | {"SC_XBS5_ILP32_OFFBIG", _SC_XBS5_ILP32_OFFBIG}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10126 | #endif |
| 10127 | #ifdef _SC_XBS5_LP64_OFF64 |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10128 | {"SC_XBS5_LP64_OFF64", _SC_XBS5_LP64_OFF64}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10129 | #endif |
| 10130 | #ifdef _SC_XBS5_LPBIG_OFFBIG |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10131 | {"SC_XBS5_LPBIG_OFFBIG", _SC_XBS5_LPBIG_OFFBIG}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10132 | #endif |
| 10133 | #ifdef _SC_XOPEN_CRYPT |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10134 | {"SC_XOPEN_CRYPT", _SC_XOPEN_CRYPT}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10135 | #endif |
| 10136 | #ifdef _SC_XOPEN_ENH_I18N |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10137 | {"SC_XOPEN_ENH_I18N", _SC_XOPEN_ENH_I18N}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10138 | #endif |
| 10139 | #ifdef _SC_XOPEN_LEGACY |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10140 | {"SC_XOPEN_LEGACY", _SC_XOPEN_LEGACY}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10141 | #endif |
| 10142 | #ifdef _SC_XOPEN_REALTIME |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10143 | {"SC_XOPEN_REALTIME", _SC_XOPEN_REALTIME}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10144 | #endif |
| 10145 | #ifdef _SC_XOPEN_REALTIME_THREADS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10146 | {"SC_XOPEN_REALTIME_THREADS", _SC_XOPEN_REALTIME_THREADS}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10147 | #endif |
| 10148 | #ifdef _SC_XOPEN_SHM |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10149 | {"SC_XOPEN_SHM", _SC_XOPEN_SHM}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10150 | #endif |
| 10151 | #ifdef _SC_XOPEN_UNIX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10152 | {"SC_XOPEN_UNIX", _SC_XOPEN_UNIX}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10153 | #endif |
| 10154 | #ifdef _SC_XOPEN_VERSION |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10155 | {"SC_XOPEN_VERSION", _SC_XOPEN_VERSION}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10156 | #endif |
| 10157 | #ifdef _SC_XOPEN_XCU_VERSION |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10158 | {"SC_XOPEN_XCU_VERSION", _SC_XOPEN_XCU_VERSION}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10159 | #endif |
| 10160 | #ifdef _SC_XOPEN_XPG2 |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10161 | {"SC_XOPEN_XPG2", _SC_XOPEN_XPG2}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10162 | #endif |
| 10163 | #ifdef _SC_XOPEN_XPG3 |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10164 | {"SC_XOPEN_XPG3", _SC_XOPEN_XPG3}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10165 | #endif |
| 10166 | #ifdef _SC_XOPEN_XPG4 |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10167 | {"SC_XOPEN_XPG4", _SC_XOPEN_XPG4}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10168 | #endif |
| 10169 | }; |
| 10170 | |
| 10171 | static int |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 10172 | conv_sysconf_confname(PyObject *arg, int *valuep) |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10173 | { |
| 10174 | return conv_confname(arg, valuep, posix_constants_sysconf, |
| 10175 | sizeof(posix_constants_sysconf) |
| 10176 | / sizeof(struct constdef)); |
| 10177 | } |
| 10178 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 10179 | PyDoc_STRVAR(posix_sysconf__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 10180 | "sysconf(name) -> integer\n\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 10181 | Return an integer-valued system configuration variable."); |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10182 | |
| 10183 | static PyObject * |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 10184 | posix_sysconf(PyObject *self, PyObject *args) |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10185 | { |
| 10186 | PyObject *result = NULL; |
| 10187 | int name; |
| 10188 | |
| 10189 | if (PyArg_ParseTuple(args, "O&:sysconf", conv_sysconf_confname, &name)) { |
| 10190 | int value; |
| 10191 | |
| 10192 | errno = 0; |
| 10193 | value = sysconf(name); |
| 10194 | if (value == -1 && errno != 0) |
| 10195 | posix_error(); |
| 10196 | else |
Christian Heimes | 217cfd1 | 2007-12-02 14:31:20 +0000 | [diff] [blame] | 10197 | result = PyLong_FromLong(value); |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 10198 | } |
| 10199 | return result; |
| 10200 | } |
| 10201 | #endif |
| 10202 | |
| 10203 | |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 10204 | /* This code is used to ensure that the tables of configuration value names |
| 10205 | * are in sorted order as required by conv_confname(), and also to build the |
| 10206 | * the exported dictionaries that are used to publish information about the |
| 10207 | * names available on the host platform. |
| 10208 | * |
| 10209 | * Sorting the table at runtime ensures that the table is properly ordered |
| 10210 | * when used, even for platforms we're not able to test on. It also makes |
| 10211 | * it easier to add additional entries to the tables. |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 10212 | */ |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 10213 | |
| 10214 | static int |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 10215 | cmp_constdefs(const void *v1, const void *v2) |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 10216 | { |
| 10217 | const struct constdef *c1 = |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10218 | (const struct constdef *) v1; |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 10219 | const struct constdef *c2 = |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10220 | (const struct constdef *) v2; |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 10221 | |
| 10222 | return strcmp(c1->name, c2->name); |
| 10223 | } |
| 10224 | |
| 10225 | static int |
Fredrik Lundh | ff7df9d | 2000-07-08 22:48:53 +0000 | [diff] [blame] | 10226 | setup_confname_table(struct constdef *table, size_t tablesize, |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10227 | char *tablename, PyObject *module) |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 10228 | { |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 10229 | PyObject *d = NULL; |
Barry Warsaw | 3155db3 | 2000-04-13 15:20:40 +0000 | [diff] [blame] | 10230 | size_t i; |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 10231 | |
| 10232 | qsort(table, tablesize, sizeof(struct constdef), cmp_constdefs); |
| 10233 | d = PyDict_New(); |
Barry Warsaw | 3155db3 | 2000-04-13 15:20:40 +0000 | [diff] [blame] | 10234 | if (d == NULL) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10235 | return -1; |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 10236 | |
Barry Warsaw | 3155db3 | 2000-04-13 15:20:40 +0000 | [diff] [blame] | 10237 | for (i=0; i < tablesize; ++i) { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10238 | PyObject *o = PyLong_FromLong(table[i].value); |
| 10239 | if (o == NULL || PyDict_SetItemString(d, table[i].name, o) == -1) { |
| 10240 | Py_XDECREF(o); |
| 10241 | Py_DECREF(d); |
| 10242 | return -1; |
| 10243 | } |
| 10244 | Py_DECREF(o); |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 10245 | } |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 10246 | return PyModule_AddObject(module, tablename, d); |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 10247 | } |
| 10248 | |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 10249 | /* Return -1 on failure, 0 on success. */ |
| 10250 | static int |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 10251 | setup_confname_tables(PyObject *module) |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 10252 | { |
| 10253 | #if defined(HAVE_FPATHCONF) || defined(HAVE_PATHCONF) |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 10254 | if (setup_confname_table(posix_constants_pathconf, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 10255 | sizeof(posix_constants_pathconf) |
| 10256 | / sizeof(struct constdef), |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 10257 | "pathconf_names", module)) |
Stefan Krah | 0e803b3 | 2010-11-26 16:16:47 +0000 | [diff] [blame] | 10258 | return -1; |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 10259 | #endif |
| 10260 | #ifdef HAVE_CONFSTR |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 10261 | if (setup_confname_table(posix_constants_confstr, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 10262 | sizeof(posix_constants_confstr) |
| 10263 | / sizeof(struct constdef), |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 10264 | "confstr_names", module)) |
Stefan Krah | 0e803b3 | 2010-11-26 16:16:47 +0000 | [diff] [blame] | 10265 | return -1; |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 10266 | #endif |
| 10267 | #ifdef HAVE_SYSCONF |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 10268 | if (setup_confname_table(posix_constants_sysconf, |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 10269 | sizeof(posix_constants_sysconf) |
| 10270 | / sizeof(struct constdef), |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 10271 | "sysconf_names", module)) |
Stefan Krah | 0e803b3 | 2010-11-26 16:16:47 +0000 | [diff] [blame] | 10272 | return -1; |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 10273 | #endif |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 10274 | return 0; |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 10275 | } |
Fred Drake | d86ed29 | 1999-12-15 15:34:33 +0000 | [diff] [blame] | 10276 | |
| 10277 | |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 10278 | PyDoc_STRVAR(posix_abort__doc__, |
Fred Drake | f7ce04d | 2002-06-20 18:31:21 +0000 | [diff] [blame] | 10279 | "abort() -> does not return!\n\n\ |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 10280 | Abort the interpreter immediately. This 'dumps core' or otherwise fails\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 10281 | in the hardest way possible on the hosting operating system."); |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 10282 | |
| 10283 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 10284 | posix_abort(PyObject *self, PyObject *noargs) |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 10285 | { |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 10286 | abort(); |
| 10287 | /*NOTREACHED*/ |
| 10288 | Py_FatalError("abort() called from Python code didn't abort!"); |
| 10289 | return NULL; |
| 10290 | } |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 10291 | |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 10292 | #ifdef MS_WINDOWS |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 10293 | PyDoc_STRVAR(win32_startfile__doc__, |
Georg Brandl | f4f4415 | 2006-02-18 22:29:33 +0000 | [diff] [blame] | 10294 | "startfile(filepath [, operation]) - Start a file with its associated\n\ |
| 10295 | application.\n\ |
Tim Peters | f58a7aa | 2000-09-22 10:05:54 +0000 | [diff] [blame] | 10296 | \n\ |
Georg Brandl | f4f4415 | 2006-02-18 22:29:33 +0000 | [diff] [blame] | 10297 | When \"operation\" is not specified or \"open\", this acts like\n\ |
| 10298 | double-clicking the file in Explorer, or giving the file name as an\n\ |
| 10299 | argument to the DOS \"start\" command: the file is opened with whatever\n\ |
| 10300 | application (if any) its extension is associated.\n\ |
| 10301 | When another \"operation\" is given, it specifies what should be done with\n\ |
| 10302 | the file. A typical operation is \"print\".\n\ |
Tim Peters | f58a7aa | 2000-09-22 10:05:54 +0000 | [diff] [blame] | 10303 | \n\ |
| 10304 | startfile returns as soon as the associated application is launched.\n\ |
| 10305 | There is no option to wait for the application to close, and no way\n\ |
| 10306 | to retrieve the application's exit status.\n\ |
| 10307 | \n\ |
| 10308 | The filepath is relative to the current directory. If you want to use\n\ |
| 10309 | an absolute path, make sure the first character is not a slash (\"/\");\n\ |
Martin v. Löwis | 14f8b4c | 2002-06-13 20:33:02 +0000 | [diff] [blame] | 10310 | the underlying Win32 ShellExecute function doesn't work if it is."); |
Tim Peters | f58a7aa | 2000-09-22 10:05:54 +0000 | [diff] [blame] | 10311 | |
| 10312 | static PyObject * |
| 10313 | win32_startfile(PyObject *self, PyObject *args) |
| 10314 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10315 | PyObject *ofilepath; |
| 10316 | char *filepath; |
| 10317 | char *operation = NULL; |
Victor Stinner | eb5657a | 2011-09-30 01:44:27 +0200 | [diff] [blame] | 10318 | wchar_t *wpath, *woperation; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10319 | HINSTANCE rc; |
Hirokazu Yamamoto | 8223c24 | 2009-05-17 04:21:53 +0000 | [diff] [blame] | 10320 | |
Victor Stinner | eb5657a | 2011-09-30 01:44:27 +0200 | [diff] [blame] | 10321 | PyObject *unipath, *uoperation = NULL; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10322 | if (!PyArg_ParseTuple(args, "U|s:startfile", |
| 10323 | &unipath, &operation)) { |
| 10324 | PyErr_Clear(); |
| 10325 | goto normal; |
| 10326 | } |
Hirokazu Yamamoto | 892a37a | 2009-06-28 11:07:03 +0000 | [diff] [blame] | 10327 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10328 | if (operation) { |
Victor Stinner | eb5657a | 2011-09-30 01:44:27 +0200 | [diff] [blame] | 10329 | uoperation = PyUnicode_DecodeASCII(operation, |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10330 | strlen(operation), NULL); |
Victor Stinner | eb5657a | 2011-09-30 01:44:27 +0200 | [diff] [blame] | 10331 | if (!uoperation) { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10332 | PyErr_Clear(); |
| 10333 | operation = NULL; |
| 10334 | goto normal; |
| 10335 | } |
| 10336 | } |
Hirokazu Yamamoto | 892a37a | 2009-06-28 11:07:03 +0000 | [diff] [blame] | 10337 | |
Victor Stinner | eb5657a | 2011-09-30 01:44:27 +0200 | [diff] [blame] | 10338 | wpath = PyUnicode_AsUnicode(unipath); |
| 10339 | if (wpath == NULL) |
| 10340 | goto normal; |
| 10341 | if (uoperation) { |
| 10342 | woperation = PyUnicode_AsUnicode(uoperation); |
| 10343 | if (woperation == NULL) |
| 10344 | goto normal; |
| 10345 | } |
| 10346 | else |
| 10347 | woperation = NULL; |
| 10348 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10349 | Py_BEGIN_ALLOW_THREADS |
Victor Stinner | eb5657a | 2011-09-30 01:44:27 +0200 | [diff] [blame] | 10350 | rc = ShellExecuteW((HWND)0, woperation, wpath, |
| 10351 | NULL, NULL, SW_SHOWNORMAL); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10352 | Py_END_ALLOW_THREADS |
| 10353 | |
Victor Stinner | eb5657a | 2011-09-30 01:44:27 +0200 | [diff] [blame] | 10354 | Py_XDECREF(uoperation); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10355 | if (rc <= (HINSTANCE)32) { |
Victor Stinner | eb5657a | 2011-09-30 01:44:27 +0200 | [diff] [blame] | 10356 | win32_error_object("startfile", unipath); |
| 10357 | return NULL; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10358 | } |
| 10359 | Py_INCREF(Py_None); |
| 10360 | return Py_None; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 10361 | |
| 10362 | normal: |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10363 | if (!PyArg_ParseTuple(args, "O&|s:startfile", |
| 10364 | PyUnicode_FSConverter, &ofilepath, |
| 10365 | &operation)) |
| 10366 | return NULL; |
Victor Stinner | 1ab6c2d | 2011-11-15 22:27:41 +0100 | [diff] [blame] | 10367 | if (win32_warn_bytes_api()) { |
| 10368 | Py_DECREF(ofilepath); |
| 10369 | return NULL; |
| 10370 | } |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10371 | filepath = PyBytes_AsString(ofilepath); |
| 10372 | Py_BEGIN_ALLOW_THREADS |
| 10373 | rc = ShellExecute((HWND)0, operation, filepath, |
| 10374 | NULL, NULL, SW_SHOWNORMAL); |
| 10375 | Py_END_ALLOW_THREADS |
| 10376 | if (rc <= (HINSTANCE)32) { |
| 10377 | PyObject *errval = win32_error("startfile", filepath); |
| 10378 | Py_DECREF(ofilepath); |
| 10379 | return errval; |
| 10380 | } |
| 10381 | Py_DECREF(ofilepath); |
| 10382 | Py_INCREF(Py_None); |
| 10383 | return Py_None; |
Tim Peters | f58a7aa | 2000-09-22 10:05:54 +0000 | [diff] [blame] | 10384 | } |
| 10385 | #endif |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 10386 | |
Martin v. Löwis | 438b534 | 2002-12-27 10:16:42 +0000 | [diff] [blame] | 10387 | #ifdef HAVE_GETLOADAVG |
| 10388 | PyDoc_STRVAR(posix_getloadavg__doc__, |
| 10389 | "getloadavg() -> (float, float, float)\n\n\ |
| 10390 | Return the number of processes in the system run queue averaged over\n\ |
| 10391 | the last 1, 5, and 15 minutes or raises OSError if the load average\n\ |
| 10392 | was unobtainable"); |
| 10393 | |
| 10394 | static PyObject * |
Neal Norwitz | e241ce8 | 2003-02-17 18:17:05 +0000 | [diff] [blame] | 10395 | posix_getloadavg(PyObject *self, PyObject *noargs) |
Martin v. Löwis | 438b534 | 2002-12-27 10:16:42 +0000 | [diff] [blame] | 10396 | { |
| 10397 | double loadavg[3]; |
Martin v. Löwis | 438b534 | 2002-12-27 10:16:42 +0000 | [diff] [blame] | 10398 | if (getloadavg(loadavg, 3)!=3) { |
Stefan Krah | 0e803b3 | 2010-11-26 16:16:47 +0000 | [diff] [blame] | 10399 | PyErr_SetString(PyExc_OSError, "Load averages are unobtainable"); |
| 10400 | return NULL; |
Martin v. Löwis | 438b534 | 2002-12-27 10:16:42 +0000 | [diff] [blame] | 10401 | } else |
Stefan Krah | 0e803b3 | 2010-11-26 16:16:47 +0000 | [diff] [blame] | 10402 | return Py_BuildValue("ddd", loadavg[0], loadavg[1], loadavg[2]); |
Martin v. Löwis | 438b534 | 2002-12-27 10:16:42 +0000 | [diff] [blame] | 10403 | } |
| 10404 | #endif |
| 10405 | |
Martin v. Löwis | d1cd4d4 | 2007-08-11 14:02:14 +0000 | [diff] [blame] | 10406 | PyDoc_STRVAR(device_encoding__doc__, |
| 10407 | "device_encoding(fd) -> str\n\n\ |
| 10408 | Return a string describing the encoding of the device\n\ |
| 10409 | if the output is a terminal; else return None."); |
| 10410 | |
| 10411 | static PyObject * |
| 10412 | device_encoding(PyObject *self, PyObject *args) |
| 10413 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10414 | int fd; |
Brett Cannon | efb00c0 | 2012-02-29 18:31:31 -0500 | [diff] [blame] | 10415 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10416 | if (!PyArg_ParseTuple(args, "i:device_encoding", &fd)) |
| 10417 | return NULL; |
Brett Cannon | efb00c0 | 2012-02-29 18:31:31 -0500 | [diff] [blame] | 10418 | |
| 10419 | return _Py_device_encoding(fd); |
Martin v. Löwis | d1cd4d4 | 2007-08-11 14:02:14 +0000 | [diff] [blame] | 10420 | } |
| 10421 | |
Martin v. Löwis | 7aed61a | 2009-11-27 14:09:49 +0000 | [diff] [blame] | 10422 | #ifdef HAVE_SETRESUID |
| 10423 | PyDoc_STRVAR(posix_setresuid__doc__, |
| 10424 | "setresuid(ruid, euid, suid)\n\n\ |
| 10425 | Set the current process's real, effective, and saved user ids."); |
| 10426 | |
| 10427 | static PyObject* |
| 10428 | posix_setresuid (PyObject *self, PyObject *args) |
| 10429 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10430 | /* We assume uid_t is no larger than a long. */ |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 10431 | uid_t ruid, euid, suid; |
| 10432 | if (!PyArg_ParseTuple(args, "O&O&O&:setresuid", |
| 10433 | _Py_Uid_Converter, &ruid, |
| 10434 | _Py_Uid_Converter, &euid, |
| 10435 | _Py_Uid_Converter, &suid)) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10436 | return NULL; |
| 10437 | if (setresuid(ruid, euid, suid) < 0) |
| 10438 | return posix_error(); |
| 10439 | Py_RETURN_NONE; |
Martin v. Löwis | 7aed61a | 2009-11-27 14:09:49 +0000 | [diff] [blame] | 10440 | } |
| 10441 | #endif |
| 10442 | |
| 10443 | #ifdef HAVE_SETRESGID |
| 10444 | PyDoc_STRVAR(posix_setresgid__doc__, |
| 10445 | "setresgid(rgid, egid, sgid)\n\n\ |
| 10446 | Set the current process's real, effective, and saved group ids."); |
| 10447 | |
| 10448 | static PyObject* |
| 10449 | posix_setresgid (PyObject *self, PyObject *args) |
| 10450 | { |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 10451 | gid_t rgid, egid, sgid; |
| 10452 | if (!PyArg_ParseTuple(args, "O&O&O&:setresgid", |
| 10453 | _Py_Gid_Converter, &rgid, |
| 10454 | _Py_Gid_Converter, &egid, |
| 10455 | _Py_Gid_Converter, &sgid)) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10456 | return NULL; |
| 10457 | if (setresgid(rgid, egid, sgid) < 0) |
| 10458 | return posix_error(); |
| 10459 | Py_RETURN_NONE; |
Martin v. Löwis | 7aed61a | 2009-11-27 14:09:49 +0000 | [diff] [blame] | 10460 | } |
| 10461 | #endif |
| 10462 | |
| 10463 | #ifdef HAVE_GETRESUID |
| 10464 | PyDoc_STRVAR(posix_getresuid__doc__, |
| 10465 | "getresuid() -> (ruid, euid, suid)\n\n\ |
| 10466 | Get tuple of the current process's real, effective, and saved user ids."); |
| 10467 | |
| 10468 | static PyObject* |
| 10469 | posix_getresuid (PyObject *self, PyObject *noargs) |
| 10470 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10471 | uid_t ruid, euid, suid; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10472 | if (getresuid(&ruid, &euid, &suid) < 0) |
| 10473 | return posix_error(); |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 10474 | return Py_BuildValue("(NNN)", _PyLong_FromUid(ruid), |
| 10475 | _PyLong_FromUid(euid), |
| 10476 | _PyLong_FromUid(suid)); |
Martin v. Löwis | 7aed61a | 2009-11-27 14:09:49 +0000 | [diff] [blame] | 10477 | } |
| 10478 | #endif |
| 10479 | |
| 10480 | #ifdef HAVE_GETRESGID |
| 10481 | PyDoc_STRVAR(posix_getresgid__doc__, |
| 10482 | "getresgid() -> (rgid, egid, sgid)\n\n\ |
Georg Brandl | a9b51d2 | 2010-09-05 17:07:12 +0000 | [diff] [blame] | 10483 | Get tuple of the current process's real, effective, and saved group ids."); |
Martin v. Löwis | 7aed61a | 2009-11-27 14:09:49 +0000 | [diff] [blame] | 10484 | |
| 10485 | static PyObject* |
| 10486 | posix_getresgid (PyObject *self, PyObject *noargs) |
| 10487 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10488 | uid_t rgid, egid, sgid; |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10489 | if (getresgid(&rgid, &egid, &sgid) < 0) |
| 10490 | return posix_error(); |
Serhiy Storchaka | 7cf5599 | 2013-02-10 21:56:49 +0200 | [diff] [blame] | 10491 | return Py_BuildValue("(NNN)", _PyLong_FromGid(rgid), |
| 10492 | _PyLong_FromGid(egid), |
| 10493 | _PyLong_FromGid(sgid)); |
Martin v. Löwis | 7aed61a | 2009-11-27 14:09:49 +0000 | [diff] [blame] | 10494 | } |
| 10495 | #endif |
| 10496 | |
Benjamin Peterson | 9428d53 | 2011-09-14 11:45:52 -0400 | [diff] [blame] | 10497 | #ifdef USE_XATTRS |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10498 | |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10499 | PyDoc_STRVAR(posix_getxattr__doc__, |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10500 | "getxattr(path, attribute, *, follow_symlinks=True) -> value\n\n\ |
| 10501 | Return the value of extended attribute attribute on path.\n\ |
| 10502 | \n\ |
| 10503 | path may be either a string or an open file descriptor.\n\ |
| 10504 | If follow_symlinks is False, and the last element of the path is a symbolic\n\ |
| 10505 | link, getxattr will examine the symbolic link itself instead of the file\n\ |
| 10506 | the link points to."); |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10507 | |
| 10508 | static PyObject * |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10509 | posix_getxattr(PyObject *self, PyObject *args, PyObject *kwargs) |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10510 | { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10511 | path_t path; |
| 10512 | path_t attribute; |
| 10513 | int follow_symlinks = 1; |
| 10514 | PyObject *buffer = NULL; |
| 10515 | int i; |
| 10516 | static char *keywords[] = {"path", "attribute", "follow_symlinks", NULL}; |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10517 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10518 | memset(&path, 0, sizeof(path)); |
| 10519 | memset(&attribute, 0, sizeof(attribute)); |
| 10520 | path.allow_fd = 1; |
| 10521 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&O&|$p:getxattr", keywords, |
| 10522 | path_converter, &path, |
| 10523 | path_converter, &attribute, |
| 10524 | &follow_symlinks)) |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10525 | return NULL; |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10526 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10527 | if (fd_and_follow_symlinks_invalid("getxattr", path.fd, follow_symlinks)) |
| 10528 | goto exit; |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10529 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10530 | for (i = 0; ; i++) { |
| 10531 | void *ptr; |
| 10532 | ssize_t result; |
| 10533 | static Py_ssize_t buffer_sizes[] = {128, XATTR_SIZE_MAX, 0}; |
| 10534 | Py_ssize_t buffer_size = buffer_sizes[i]; |
| 10535 | if (!buffer_size) { |
| 10536 | path_error("getxattr", &path); |
| 10537 | goto exit; |
| 10538 | } |
| 10539 | buffer = PyBytes_FromStringAndSize(NULL, buffer_size); |
| 10540 | if (!buffer) |
| 10541 | goto exit; |
| 10542 | ptr = PyBytes_AS_STRING(buffer); |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10543 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10544 | Py_BEGIN_ALLOW_THREADS; |
| 10545 | if (path.fd >= 0) |
| 10546 | result = fgetxattr(path.fd, attribute.narrow, ptr, buffer_size); |
| 10547 | else if (follow_symlinks) |
| 10548 | result = getxattr(path.narrow, attribute.narrow, ptr, buffer_size); |
| 10549 | else |
| 10550 | result = lgetxattr(path.narrow, attribute.narrow, ptr, buffer_size); |
| 10551 | Py_END_ALLOW_THREADS; |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10552 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10553 | if (result < 0) { |
| 10554 | Py_DECREF(buffer); |
| 10555 | buffer = NULL; |
| 10556 | if (errno == ERANGE) |
| 10557 | continue; |
| 10558 | path_error("getxattr", &path); |
| 10559 | goto exit; |
| 10560 | } |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10561 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10562 | if (result != buffer_size) { |
| 10563 | /* Can only shrink. */ |
| 10564 | _PyBytes_Resize(&buffer, result); |
| 10565 | } |
| 10566 | break; |
| 10567 | } |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10568 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10569 | exit: |
| 10570 | path_cleanup(&path); |
| 10571 | path_cleanup(&attribute); |
| 10572 | return buffer; |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10573 | } |
| 10574 | |
| 10575 | PyDoc_STRVAR(posix_setxattr__doc__, |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10576 | "setxattr(path, attribute, value, flags=0, *, follow_symlinks=True)\n\n\ |
| 10577 | Set extended attribute attribute on path to value.\n\ |
| 10578 | path may be either a string or an open file descriptor.\n\ |
| 10579 | If follow_symlinks is False, and the last element of the path is a symbolic\n\ |
| 10580 | link, setxattr will modify the symbolic link itself instead of the file\n\ |
| 10581 | the link points to."); |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10582 | |
| 10583 | static PyObject * |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10584 | posix_setxattr(PyObject *self, PyObject *args, PyObject *kwargs) |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10585 | { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10586 | path_t path; |
| 10587 | path_t attribute; |
| 10588 | Py_buffer value; |
| 10589 | int flags = 0; |
| 10590 | int follow_symlinks = 1; |
| 10591 | int result; |
| 10592 | PyObject *return_value = NULL; |
| 10593 | static char *keywords[] = {"path", "attribute", "value", |
| 10594 | "flags", "follow_symlinks", NULL}; |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10595 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10596 | memset(&path, 0, sizeof(path)); |
| 10597 | path.allow_fd = 1; |
| 10598 | memset(&attribute, 0, sizeof(attribute)); |
| 10599 | memset(&value, 0, sizeof(value)); |
| 10600 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&O&y*|i$p:setxattr", |
| 10601 | keywords, |
| 10602 | path_converter, &path, |
| 10603 | path_converter, &attribute, |
| 10604 | &value, &flags, |
| 10605 | &follow_symlinks)) |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10606 | return NULL; |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10607 | |
| 10608 | if (fd_and_follow_symlinks_invalid("setxattr", path.fd, follow_symlinks)) |
| 10609 | goto exit; |
| 10610 | |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10611 | Py_BEGIN_ALLOW_THREADS; |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10612 | if (path.fd > -1) |
| 10613 | result = fsetxattr(path.fd, attribute.narrow, |
| 10614 | value.buf, value.len, flags); |
| 10615 | else if (follow_symlinks) |
| 10616 | result = setxattr(path.narrow, attribute.narrow, |
| 10617 | value.buf, value.len, flags); |
| 10618 | else |
| 10619 | result = lsetxattr(path.narrow, attribute.narrow, |
| 10620 | value.buf, value.len, flags); |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10621 | Py_END_ALLOW_THREADS; |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10622 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10623 | if (result) { |
| 10624 | return_value = path_error("setxattr", &path); |
| 10625 | goto exit; |
| 10626 | } |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10627 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10628 | return_value = Py_None; |
| 10629 | Py_INCREF(return_value); |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10630 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10631 | exit: |
| 10632 | path_cleanup(&path); |
| 10633 | path_cleanup(&attribute); |
| 10634 | PyBuffer_Release(&value); |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10635 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10636 | return return_value; |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10637 | } |
| 10638 | |
| 10639 | PyDoc_STRVAR(posix_removexattr__doc__, |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10640 | "removexattr(path, attribute, *, follow_symlinks=True)\n\n\ |
| 10641 | Remove extended attribute attribute on path.\n\ |
| 10642 | path may be either a string or an open file descriptor.\n\ |
| 10643 | If follow_symlinks is False, and the last element of the path is a symbolic\n\ |
| 10644 | link, removexattr will modify the symbolic link itself instead of the file\n\ |
| 10645 | the link points to."); |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10646 | |
| 10647 | static PyObject * |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10648 | posix_removexattr(PyObject *self, PyObject *args, PyObject *kwargs) |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10649 | { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10650 | path_t path; |
| 10651 | path_t attribute; |
| 10652 | int follow_symlinks = 1; |
| 10653 | int result; |
| 10654 | PyObject *return_value = NULL; |
| 10655 | static char *keywords[] = {"path", "attribute", "follow_symlinks", NULL}; |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10656 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10657 | memset(&path, 0, sizeof(path)); |
| 10658 | memset(&attribute, 0, sizeof(attribute)); |
| 10659 | path.allow_fd = 1; |
| 10660 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O&O&|$p:removexattr", |
| 10661 | keywords, |
| 10662 | path_converter, &path, |
| 10663 | path_converter, &attribute, |
| 10664 | &follow_symlinks)) |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10665 | return NULL; |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10666 | |
| 10667 | if (fd_and_follow_symlinks_invalid("removexattr", path.fd, follow_symlinks)) |
| 10668 | goto exit; |
| 10669 | |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10670 | Py_BEGIN_ALLOW_THREADS; |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10671 | if (path.fd > -1) |
| 10672 | result = fremovexattr(path.fd, attribute.narrow); |
| 10673 | else if (follow_symlinks) |
| 10674 | result = removexattr(path.narrow, attribute.narrow); |
| 10675 | else |
| 10676 | result = lremovexattr(path.narrow, attribute.narrow); |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10677 | Py_END_ALLOW_THREADS; |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10678 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10679 | if (result) { |
| 10680 | return_value = path_error("removexattr", &path); |
| 10681 | goto exit; |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10682 | } |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10683 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10684 | return_value = Py_None; |
| 10685 | Py_INCREF(return_value); |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10686 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10687 | exit: |
| 10688 | path_cleanup(&path); |
| 10689 | path_cleanup(&attribute); |
| 10690 | |
| 10691 | return return_value; |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10692 | } |
| 10693 | |
| 10694 | PyDoc_STRVAR(posix_listxattr__doc__, |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10695 | "listxattr(path='.', *, follow_symlinks=True)\n\n\ |
| 10696 | Return a list of extended attributes on path.\n\ |
| 10697 | \n\ |
| 10698 | path may be either None, a string, or an open file descriptor.\n\ |
| 10699 | if path is None, listxattr will examine the current directory.\n\ |
| 10700 | If follow_symlinks is False, and the last element of the path is a symbolic\n\ |
| 10701 | link, listxattr will examine the symbolic link itself instead of the file\n\ |
| 10702 | the link points to."); |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10703 | |
| 10704 | static PyObject * |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10705 | posix_listxattr(PyObject *self, PyObject *args, PyObject *kwargs) |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10706 | { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10707 | path_t path; |
| 10708 | int follow_symlinks = 1; |
| 10709 | Py_ssize_t i; |
| 10710 | PyObject *result = NULL; |
| 10711 | char *buffer = NULL; |
| 10712 | char *name; |
| 10713 | static char *keywords[] = {"path", "follow_symlinks", NULL}; |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10714 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10715 | memset(&path, 0, sizeof(path)); |
| 10716 | path.allow_fd = 1; |
| 10717 | path.fd = -1; |
| 10718 | if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|O&$p:listxattr", keywords, |
| 10719 | path_converter, &path, |
| 10720 | &follow_symlinks)) |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10721 | return NULL; |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10722 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10723 | if (fd_and_follow_symlinks_invalid("listxattr", path.fd, follow_symlinks)) |
| 10724 | goto exit; |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10725 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10726 | name = path.narrow ? path.narrow : "."; |
| 10727 | for (i = 0; ; i++) { |
| 10728 | char *start, *trace, *end; |
| 10729 | ssize_t length; |
| 10730 | static Py_ssize_t buffer_sizes[] = { 256, XATTR_LIST_MAX, 0 }; |
| 10731 | Py_ssize_t buffer_size = buffer_sizes[i]; |
| 10732 | if (!buffer_size) { |
Christian Heimes | 3b9493b | 2012-09-23 16:11:15 +0200 | [diff] [blame] | 10733 | /* ERANGE */ |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10734 | path_error("listxattr", &path); |
| 10735 | break; |
| 10736 | } |
| 10737 | buffer = PyMem_MALLOC(buffer_size); |
| 10738 | if (!buffer) { |
| 10739 | PyErr_NoMemory(); |
| 10740 | break; |
| 10741 | } |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10742 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10743 | Py_BEGIN_ALLOW_THREADS; |
| 10744 | if (path.fd > -1) |
| 10745 | length = flistxattr(path.fd, buffer, buffer_size); |
| 10746 | else if (follow_symlinks) |
| 10747 | length = listxattr(name, buffer, buffer_size); |
| 10748 | else |
| 10749 | length = llistxattr(name, buffer, buffer_size); |
| 10750 | Py_END_ALLOW_THREADS; |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10751 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10752 | if (length < 0) { |
Antoine Pitrou | 7f98739 | 2013-05-13 19:46:29 +0200 | [diff] [blame] | 10753 | if (errno == ERANGE) { |
| 10754 | PyMem_FREE(buffer); |
Benjamin Peterson | dedac52 | 2013-05-13 19:55:40 -0500 | [diff] [blame] | 10755 | buffer = NULL; |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10756 | continue; |
Antoine Pitrou | 7f98739 | 2013-05-13 19:46:29 +0200 | [diff] [blame] | 10757 | } |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10758 | path_error("listxattr", &path); |
| 10759 | break; |
| 10760 | } |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10761 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10762 | result = PyList_New(0); |
| 10763 | if (!result) { |
| 10764 | goto exit; |
| 10765 | } |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10766 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10767 | end = buffer + length; |
| 10768 | for (trace = start = buffer; trace != end; trace++) { |
| 10769 | if (!*trace) { |
| 10770 | int error; |
| 10771 | PyObject *attribute = PyUnicode_DecodeFSDefaultAndSize(start, |
| 10772 | trace - start); |
| 10773 | if (!attribute) { |
| 10774 | Py_DECREF(result); |
| 10775 | result = NULL; |
| 10776 | goto exit; |
| 10777 | } |
| 10778 | error = PyList_Append(result, attribute); |
| 10779 | Py_DECREF(attribute); |
| 10780 | if (error) { |
| 10781 | Py_DECREF(result); |
| 10782 | result = NULL; |
| 10783 | goto exit; |
| 10784 | } |
| 10785 | start = trace + 1; |
| 10786 | } |
| 10787 | } |
| 10788 | break; |
| 10789 | } |
| 10790 | exit: |
| 10791 | path_cleanup(&path); |
| 10792 | if (buffer) |
| 10793 | PyMem_FREE(buffer); |
| 10794 | return result; |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10795 | } |
| 10796 | |
Benjamin Peterson | 9428d53 | 2011-09-14 11:45:52 -0400 | [diff] [blame] | 10797 | #endif /* USE_XATTRS */ |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 10798 | |
Antoine Pitrou | bcf2b59 | 2012-02-08 23:28:36 +0100 | [diff] [blame] | 10799 | |
Georg Brandl | 2fb477c | 2012-02-21 00:33:36 +0100 | [diff] [blame] | 10800 | PyDoc_STRVAR(posix_urandom__doc__, |
| 10801 | "urandom(n) -> str\n\n\ |
| 10802 | Return n random bytes suitable for cryptographic use."); |
| 10803 | |
| 10804 | static PyObject * |
| 10805 | posix_urandom(PyObject *self, PyObject *args) |
| 10806 | { |
| 10807 | Py_ssize_t size; |
| 10808 | PyObject *result; |
| 10809 | int ret; |
| 10810 | |
| 10811 | /* Read arguments */ |
| 10812 | if (!PyArg_ParseTuple(args, "n:urandom", &size)) |
| 10813 | return NULL; |
| 10814 | if (size < 0) |
| 10815 | return PyErr_Format(PyExc_ValueError, |
| 10816 | "negative argument not allowed"); |
| 10817 | result = PyBytes_FromStringAndSize(NULL, size); |
| 10818 | if (result == NULL) |
| 10819 | return NULL; |
| 10820 | |
| 10821 | ret = _PyOS_URandom(PyBytes_AS_STRING(result), |
| 10822 | PyBytes_GET_SIZE(result)); |
| 10823 | if (ret == -1) { |
| 10824 | Py_DECREF(result); |
| 10825 | return NULL; |
| 10826 | } |
| 10827 | return result; |
| 10828 | } |
| 10829 | |
Antoine Pitrou | bcf2b59 | 2012-02-08 23:28:36 +0100 | [diff] [blame] | 10830 | /* Terminal size querying */ |
| 10831 | |
| 10832 | static PyTypeObject TerminalSizeType; |
| 10833 | |
| 10834 | PyDoc_STRVAR(TerminalSize_docstring, |
| 10835 | "A tuple of (columns, lines) for holding terminal window size"); |
| 10836 | |
| 10837 | static PyStructSequence_Field TerminalSize_fields[] = { |
| 10838 | {"columns", "width of the terminal window in characters"}, |
| 10839 | {"lines", "height of the terminal window in characters"}, |
| 10840 | {NULL, NULL} |
| 10841 | }; |
| 10842 | |
| 10843 | static PyStructSequence_Desc TerminalSize_desc = { |
| 10844 | "os.terminal_size", |
| 10845 | TerminalSize_docstring, |
| 10846 | TerminalSize_fields, |
| 10847 | 2, |
| 10848 | }; |
| 10849 | |
| 10850 | #if defined(TERMSIZE_USE_CONIO) || defined(TERMSIZE_USE_IOCTL) |
| 10851 | PyDoc_STRVAR(termsize__doc__, |
| 10852 | "Return the size of the terminal window as (columns, lines).\n" \ |
| 10853 | "\n" \ |
| 10854 | "The optional argument fd (default standard output) specifies\n" \ |
| 10855 | "which file descriptor should be queried.\n" \ |
| 10856 | "\n" \ |
| 10857 | "If the file descriptor is not connected to a terminal, an OSError\n" \ |
| 10858 | "is thrown.\n" \ |
| 10859 | "\n" \ |
| 10860 | "This function will only be defined if an implementation is\n" \ |
| 10861 | "available for this system.\n" \ |
| 10862 | "\n" \ |
| 10863 | "shutil.get_terminal_size is the high-level function which should \n" \ |
| 10864 | "normally be used, os.get_terminal_size is the low-level implementation."); |
| 10865 | |
| 10866 | static PyObject* |
| 10867 | get_terminal_size(PyObject *self, PyObject *args) |
| 10868 | { |
| 10869 | int columns, lines; |
| 10870 | PyObject *termsize; |
| 10871 | |
| 10872 | int fd = fileno(stdout); |
| 10873 | /* Under some conditions stdout may not be connected and |
| 10874 | * fileno(stdout) may point to an invalid file descriptor. For example |
| 10875 | * GUI apps don't have valid standard streams by default. |
| 10876 | * |
| 10877 | * If this happens, and the optional fd argument is not present, |
| 10878 | * the ioctl below will fail returning EBADF. This is what we want. |
| 10879 | */ |
| 10880 | |
| 10881 | if (!PyArg_ParseTuple(args, "|i", &fd)) |
| 10882 | return NULL; |
| 10883 | |
| 10884 | #ifdef TERMSIZE_USE_IOCTL |
| 10885 | { |
| 10886 | struct winsize w; |
| 10887 | if (ioctl(fd, TIOCGWINSZ, &w)) |
| 10888 | return PyErr_SetFromErrno(PyExc_OSError); |
| 10889 | columns = w.ws_col; |
| 10890 | lines = w.ws_row; |
| 10891 | } |
| 10892 | #endif /* TERMSIZE_USE_IOCTL */ |
| 10893 | |
| 10894 | #ifdef TERMSIZE_USE_CONIO |
| 10895 | { |
| 10896 | DWORD nhandle; |
| 10897 | HANDLE handle; |
| 10898 | CONSOLE_SCREEN_BUFFER_INFO csbi; |
| 10899 | switch (fd) { |
| 10900 | case 0: nhandle = STD_INPUT_HANDLE; |
| 10901 | break; |
| 10902 | case 1: nhandle = STD_OUTPUT_HANDLE; |
| 10903 | break; |
| 10904 | case 2: nhandle = STD_ERROR_HANDLE; |
| 10905 | break; |
| 10906 | default: |
| 10907 | return PyErr_Format(PyExc_ValueError, "bad file descriptor"); |
| 10908 | } |
| 10909 | handle = GetStdHandle(nhandle); |
| 10910 | if (handle == NULL) |
| 10911 | return PyErr_Format(PyExc_OSError, "handle cannot be retrieved"); |
| 10912 | if (handle == INVALID_HANDLE_VALUE) |
| 10913 | return PyErr_SetFromWindowsErr(0); |
| 10914 | |
| 10915 | if (!GetConsoleScreenBufferInfo(handle, &csbi)) |
| 10916 | return PyErr_SetFromWindowsErr(0); |
| 10917 | |
| 10918 | columns = csbi.srWindow.Right - csbi.srWindow.Left + 1; |
| 10919 | lines = csbi.srWindow.Bottom - csbi.srWindow.Top + 1; |
| 10920 | } |
| 10921 | #endif /* TERMSIZE_USE_CONIO */ |
| 10922 | |
| 10923 | termsize = PyStructSequence_New(&TerminalSizeType); |
| 10924 | if (termsize == NULL) |
| 10925 | return NULL; |
| 10926 | PyStructSequence_SET_ITEM(termsize, 0, PyLong_FromLong(columns)); |
| 10927 | PyStructSequence_SET_ITEM(termsize, 1, PyLong_FromLong(lines)); |
| 10928 | if (PyErr_Occurred()) { |
| 10929 | Py_DECREF(termsize); |
| 10930 | return NULL; |
| 10931 | } |
| 10932 | return termsize; |
| 10933 | } |
| 10934 | #endif /* defined(TERMSIZE_USE_CONIO) || defined(TERMSIZE_USE_IOCTL) */ |
| 10935 | |
| 10936 | |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 10937 | static PyMethodDef posix_methods[] = { |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10938 | {"access", (PyCFunction)posix_access, |
| 10939 | METH_VARARGS | METH_KEYWORDS, |
| 10940 | posix_access__doc__}, |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 10941 | #ifdef HAVE_TTYNAME |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10942 | {"ttyname", posix_ttyname, METH_VARARGS, posix_ttyname__doc__}, |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 10943 | #endif |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10944 | {"chdir", (PyCFunction)posix_chdir, |
| 10945 | METH_VARARGS | METH_KEYWORDS, |
| 10946 | posix_chdir__doc__}, |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 10947 | #ifdef HAVE_CHFLAGS |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10948 | {"chflags", (PyCFunction)posix_chflags, |
| 10949 | METH_VARARGS | METH_KEYWORDS, |
| 10950 | posix_chflags__doc__}, |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 10951 | #endif /* HAVE_CHFLAGS */ |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10952 | {"chmod", (PyCFunction)posix_chmod, |
| 10953 | METH_VARARGS | METH_KEYWORDS, |
| 10954 | posix_chmod__doc__}, |
Christian Heimes | 4e30a84 | 2007-11-30 22:12:06 +0000 | [diff] [blame] | 10955 | #ifdef HAVE_FCHMOD |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10956 | {"fchmod", posix_fchmod, METH_VARARGS, posix_fchmod__doc__}, |
Christian Heimes | 4e30a84 | 2007-11-30 22:12:06 +0000 | [diff] [blame] | 10957 | #endif /* HAVE_FCHMOD */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 10958 | #ifdef HAVE_CHOWN |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10959 | {"chown", (PyCFunction)posix_chown, |
| 10960 | METH_VARARGS | METH_KEYWORDS, |
| 10961 | posix_chown__doc__}, |
Guido van Rossum | c39de5f | 1992-02-05 11:15:54 +0000 | [diff] [blame] | 10962 | #endif /* HAVE_CHOWN */ |
Christian Heimes | 4e30a84 | 2007-11-30 22:12:06 +0000 | [diff] [blame] | 10963 | #ifdef HAVE_LCHMOD |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10964 | {"lchmod", posix_lchmod, METH_VARARGS, posix_lchmod__doc__}, |
Christian Heimes | 4e30a84 | 2007-11-30 22:12:06 +0000 | [diff] [blame] | 10965 | #endif /* HAVE_LCHMOD */ |
| 10966 | #ifdef HAVE_FCHOWN |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10967 | {"fchown", posix_fchown, METH_VARARGS, posix_fchown__doc__}, |
Christian Heimes | 4e30a84 | 2007-11-30 22:12:06 +0000 | [diff] [blame] | 10968 | #endif /* HAVE_FCHOWN */ |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 10969 | #ifdef HAVE_LCHFLAGS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10970 | {"lchflags", posix_lchflags, METH_VARARGS, posix_lchflags__doc__}, |
Thomas Wouters | cf297e4 | 2007-02-23 15:07:44 +0000 | [diff] [blame] | 10971 | #endif /* HAVE_LCHFLAGS */ |
Martin v. Löwis | 0cec0ff | 2002-07-28 16:33:45 +0000 | [diff] [blame] | 10972 | #ifdef HAVE_LCHOWN |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10973 | {"lchown", posix_lchown, METH_VARARGS, posix_lchown__doc__}, |
Martin v. Löwis | 0cec0ff | 2002-07-28 16:33:45 +0000 | [diff] [blame] | 10974 | #endif /* HAVE_LCHOWN */ |
Martin v. Löwis | 244edc8 | 2001-10-04 22:44:26 +0000 | [diff] [blame] | 10975 | #ifdef HAVE_CHROOT |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10976 | {"chroot", posix_chroot, METH_VARARGS, posix_chroot__doc__}, |
Martin v. Löwis | 244edc8 | 2001-10-04 22:44:26 +0000 | [diff] [blame] | 10977 | #endif |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 10978 | #ifdef HAVE_CTERMID |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10979 | {"ctermid", posix_ctermid, METH_NOARGS, posix_ctermid__doc__}, |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 10980 | #endif |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 10981 | #ifdef HAVE_GETCWD |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 10982 | {"getcwd", (PyCFunction)posix_getcwd_unicode, |
| 10983 | METH_NOARGS, posix_getcwd__doc__}, |
| 10984 | {"getcwdb", (PyCFunction)posix_getcwd_bytes, |
| 10985 | METH_NOARGS, posix_getcwdb__doc__}, |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 10986 | #endif |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10987 | #if defined(HAVE_LINK) || defined(MS_WINDOWS) |
| 10988 | {"link", (PyCFunction)posix_link, |
| 10989 | METH_VARARGS | METH_KEYWORDS, |
| 10990 | posix_link__doc__}, |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 10991 | #endif /* HAVE_LINK */ |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 10992 | {"listdir", (PyCFunction)posix_listdir, |
| 10993 | METH_VARARGS | METH_KEYWORDS, |
| 10994 | posix_listdir__doc__}, |
| 10995 | {"lstat", (PyCFunction)posix_lstat, |
| 10996 | METH_VARARGS | METH_KEYWORDS, |
| 10997 | posix_lstat__doc__}, |
| 10998 | {"mkdir", (PyCFunction)posix_mkdir, |
| 10999 | METH_VARARGS | METH_KEYWORDS, |
| 11000 | posix_mkdir__doc__}, |
Guido van Rossum | c39de5f | 1992-02-05 11:15:54 +0000 | [diff] [blame] | 11001 | #ifdef HAVE_NICE |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11002 | {"nice", posix_nice, METH_VARARGS, posix_nice__doc__}, |
Guido van Rossum | 775f4da | 1993-01-09 17:18:52 +0000 | [diff] [blame] | 11003 | #endif /* HAVE_NICE */ |
Giampaolo Rodolà | 18e8bcb | 2011-02-25 20:57:54 +0000 | [diff] [blame] | 11004 | #ifdef HAVE_GETPRIORITY |
| 11005 | {"getpriority", posix_getpriority, METH_VARARGS, posix_getpriority__doc__}, |
| 11006 | #endif /* HAVE_GETPRIORITY */ |
| 11007 | #ifdef HAVE_SETPRIORITY |
| 11008 | {"setpriority", posix_setpriority, METH_VARARGS, posix_setpriority__doc__}, |
| 11009 | #endif /* HAVE_SETPRIORITY */ |
Guido van Rossum | c39de5f | 1992-02-05 11:15:54 +0000 | [diff] [blame] | 11010 | #ifdef HAVE_READLINK |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 11011 | {"readlink", (PyCFunction)posix_readlink, |
| 11012 | METH_VARARGS | METH_KEYWORDS, |
| 11013 | readlink__doc__}, |
Guido van Rossum | c39de5f | 1992-02-05 11:15:54 +0000 | [diff] [blame] | 11014 | #endif /* HAVE_READLINK */ |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 11015 | #if !defined(HAVE_READLINK) && defined(MS_WINDOWS) |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 11016 | {"readlink", (PyCFunction)win_readlink, |
| 11017 | METH_VARARGS | METH_KEYWORDS, |
| 11018 | readlink__doc__}, |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 11019 | #endif /* !defined(HAVE_READLINK) && defined(MS_WINDOWS) */ |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 11020 | {"rename", (PyCFunction)posix_rename, |
| 11021 | METH_VARARGS | METH_KEYWORDS, |
| 11022 | posix_rename__doc__}, |
| 11023 | {"replace", (PyCFunction)posix_replace, |
| 11024 | METH_VARARGS | METH_KEYWORDS, |
| 11025 | posix_replace__doc__}, |
Larry Hastings | b698d8e | 2012-06-23 16:55:07 -0700 | [diff] [blame] | 11026 | {"rmdir", (PyCFunction)posix_rmdir, |
| 11027 | METH_VARARGS | METH_KEYWORDS, |
| 11028 | posix_rmdir__doc__}, |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 11029 | {"stat", (PyCFunction)posix_stat, |
| 11030 | METH_VARARGS | METH_KEYWORDS, |
| 11031 | posix_stat__doc__}, |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11032 | {"stat_float_times", stat_float_times, METH_VARARGS, stat_float_times__doc__}, |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 11033 | #if defined(HAVE_SYMLINK) |
| 11034 | {"symlink", (PyCFunction)posix_symlink, |
| 11035 | METH_VARARGS | METH_KEYWORDS, |
| 11036 | posix_symlink__doc__}, |
Guido van Rossum | c39de5f | 1992-02-05 11:15:54 +0000 | [diff] [blame] | 11037 | #endif /* HAVE_SYMLINK */ |
Guido van Rossum | 85e3b01 | 1991-06-03 12:42:10 +0000 | [diff] [blame] | 11038 | #ifdef HAVE_SYSTEM |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11039 | {"system", posix_system, METH_VARARGS, posix_system__doc__}, |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 11040 | #endif |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11041 | {"umask", posix_umask, METH_VARARGS, posix_umask__doc__}, |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 11042 | #ifdef HAVE_UNAME |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11043 | {"uname", posix_uname, METH_NOARGS, posix_uname__doc__}, |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 11044 | #endif /* HAVE_UNAME */ |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 11045 | {"unlink", (PyCFunction)posix_unlink, |
| 11046 | METH_VARARGS | METH_KEYWORDS, |
| 11047 | posix_unlink__doc__}, |
| 11048 | {"remove", (PyCFunction)posix_unlink, |
| 11049 | METH_VARARGS | METH_KEYWORDS, |
| 11050 | posix_remove__doc__}, |
Larry Hastings | 76ad59b | 2012-05-03 00:30:07 -0700 | [diff] [blame] | 11051 | {"utime", (PyCFunction)posix_utime, |
| 11052 | METH_VARARGS | METH_KEYWORDS, posix_utime__doc__}, |
Guido van Rossum | 0ee42cd | 1991-04-08 21:01:03 +0000 | [diff] [blame] | 11053 | #ifdef HAVE_TIMES |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11054 | {"times", posix_times, METH_NOARGS, posix_times__doc__}, |
Guido van Rossum | 3b06619 | 1991-06-04 19:40:25 +0000 | [diff] [blame] | 11055 | #endif /* HAVE_TIMES */ |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11056 | {"_exit", posix__exit, METH_VARARGS, posix__exit__doc__}, |
Guido van Rossum | 3b06619 | 1991-06-04 19:40:25 +0000 | [diff] [blame] | 11057 | #ifdef HAVE_EXECV |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11058 | {"execv", posix_execv, METH_VARARGS, posix_execv__doc__}, |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 11059 | {"execve", (PyCFunction)posix_execve, |
| 11060 | METH_VARARGS | METH_KEYWORDS, |
| 11061 | posix_execve__doc__}, |
Guido van Rossum | 3b06619 | 1991-06-04 19:40:25 +0000 | [diff] [blame] | 11062 | #endif /* HAVE_EXECV */ |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 11063 | #ifdef HAVE_SPAWNV |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11064 | {"spawnv", posix_spawnv, METH_VARARGS, posix_spawnv__doc__}, |
| 11065 | {"spawnve", posix_spawnve, METH_VARARGS, posix_spawnve__doc__}, |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 11066 | #if defined(PYOS_OS2) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11067 | {"spawnvp", posix_spawnvp, METH_VARARGS, posix_spawnvp__doc__}, |
| 11068 | {"spawnvpe", posix_spawnvpe, METH_VARARGS, posix_spawnvpe__doc__}, |
Andrew MacIntyre | 69e18c9 | 2004-04-04 07:11:43 +0000 | [diff] [blame] | 11069 | #endif /* PYOS_OS2 */ |
Guido van Rossum | a106568 | 1999-01-25 23:20:23 +0000 | [diff] [blame] | 11070 | #endif /* HAVE_SPAWNV */ |
Guido van Rossum | 2242f2f | 2001-04-11 20:58:20 +0000 | [diff] [blame] | 11071 | #ifdef HAVE_FORK1 |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11072 | {"fork1", posix_fork1, METH_NOARGS, posix_fork1__doc__}, |
Guido van Rossum | 2242f2f | 2001-04-11 20:58:20 +0000 | [diff] [blame] | 11073 | #endif /* HAVE_FORK1 */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 11074 | #ifdef HAVE_FORK |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11075 | {"fork", posix_fork, METH_NOARGS, posix_fork__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 11076 | #endif /* HAVE_FORK */ |
Benjamin Peterson | 94b580d | 2011-08-02 17:30:04 -0500 | [diff] [blame] | 11077 | #ifdef HAVE_SCHED_H |
Charles-François Natali | ea0d5fc | 2011-09-06 19:03:35 +0200 | [diff] [blame] | 11078 | #ifdef HAVE_SCHED_GET_PRIORITY_MAX |
Benjamin Peterson | 94b580d | 2011-08-02 17:30:04 -0500 | [diff] [blame] | 11079 | {"sched_get_priority_max", posix_sched_get_priority_max, METH_VARARGS, posix_sched_get_priority_max__doc__}, |
| 11080 | {"sched_get_priority_min", posix_sched_get_priority_min, METH_VARARGS, posix_sched_get_priority_min__doc__}, |
Charles-François Natali | ea0d5fc | 2011-09-06 19:03:35 +0200 | [diff] [blame] | 11081 | #endif |
Benjamin Peterson | c5fce4d | 2011-08-02 18:07:32 -0500 | [diff] [blame] | 11082 | #ifdef HAVE_SCHED_SETPARAM |
Benjamin Peterson | 94b580d | 2011-08-02 17:30:04 -0500 | [diff] [blame] | 11083 | {"sched_getparam", posix_sched_getparam, METH_VARARGS, posix_sched_getparam__doc__}, |
Benjamin Peterson | c5fce4d | 2011-08-02 18:07:32 -0500 | [diff] [blame] | 11084 | #endif |
| 11085 | #ifdef HAVE_SCHED_SETSCHEDULER |
Benjamin Peterson | 94b580d | 2011-08-02 17:30:04 -0500 | [diff] [blame] | 11086 | {"sched_getscheduler", posix_sched_getscheduler, METH_VARARGS, posix_sched_getscheduler__doc__}, |
Benjamin Peterson | c5fce4d | 2011-08-02 18:07:32 -0500 | [diff] [blame] | 11087 | #endif |
| 11088 | #ifdef HAVE_SCHED_RR_GET_INTERVAL |
Benjamin Peterson | 94b580d | 2011-08-02 17:30:04 -0500 | [diff] [blame] | 11089 | {"sched_rr_get_interval", posix_sched_rr_get_interval, METH_VARARGS, posix_sched_rr_get_interval__doc__}, |
Benjamin Peterson | c5fce4d | 2011-08-02 18:07:32 -0500 | [diff] [blame] | 11090 | #endif |
| 11091 | #ifdef HAVE_SCHED_SETPARAM |
Benjamin Peterson | 94b580d | 2011-08-02 17:30:04 -0500 | [diff] [blame] | 11092 | {"sched_setparam", posix_sched_setparam, METH_VARARGS, posix_sched_setparam__doc__}, |
Benjamin Peterson | c5fce4d | 2011-08-02 18:07:32 -0500 | [diff] [blame] | 11093 | #endif |
| 11094 | #ifdef HAVE_SCHED_SETSCHEDULER |
Benjamin Peterson | 94b580d | 2011-08-02 17:30:04 -0500 | [diff] [blame] | 11095 | {"sched_setscheduler", posix_sched_setscheduler, METH_VARARGS, posix_sched_setscheduler__doc__}, |
Benjamin Peterson | c5fce4d | 2011-08-02 18:07:32 -0500 | [diff] [blame] | 11096 | #endif |
Benjamin Peterson | 94b580d | 2011-08-02 17:30:04 -0500 | [diff] [blame] | 11097 | {"sched_yield", posix_sched_yield, METH_NOARGS, posix_sched_yield__doc__}, |
Benjamin Peterson | 2740af8 | 2011-08-02 17:41:34 -0500 | [diff] [blame] | 11098 | #ifdef HAVE_SCHED_SETAFFINITY |
Benjamin Peterson | 94b580d | 2011-08-02 17:30:04 -0500 | [diff] [blame] | 11099 | {"sched_setaffinity", posix_sched_setaffinity, METH_VARARGS, posix_sched_setaffinity__doc__}, |
| 11100 | {"sched_getaffinity", posix_sched_getaffinity, METH_VARARGS, posix_sched_getaffinity__doc__}, |
| 11101 | #endif |
Charles-François Natali | ea0d5fc | 2011-09-06 19:03:35 +0200 | [diff] [blame] | 11102 | #endif /* HAVE_SCHED_H */ |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 11103 | #if defined(HAVE_OPENPTY) || defined(HAVE__GETPTY) || defined(HAVE_DEV_PTMX) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11104 | {"openpty", posix_openpty, METH_NOARGS, posix_openpty__doc__}, |
Martin v. Löwis | 24a880b | 2002-12-31 12:55:15 +0000 | [diff] [blame] | 11105 | #endif /* HAVE_OPENPTY || HAVE__GETPTY || HAVE_DEV_PTMX */ |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 11106 | #ifdef HAVE_FORKPTY |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11107 | {"forkpty", posix_forkpty, METH_NOARGS, posix_forkpty__doc__}, |
Fred Drake | 8cef4cf | 2000-06-28 16:40:38 +0000 | [diff] [blame] | 11108 | #endif /* HAVE_FORKPTY */ |
Guido van Rossum | 3b06619 | 1991-06-04 19:40:25 +0000 | [diff] [blame] | 11109 | #ifdef HAVE_GETEGID |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11110 | {"getegid", posix_getegid, METH_NOARGS, posix_getegid__doc__}, |
Guido van Rossum | c6dcc9f | 1993-11-05 10:15:19 +0000 | [diff] [blame] | 11111 | #endif /* HAVE_GETEGID */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 11112 | #ifdef HAVE_GETEUID |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11113 | {"geteuid", posix_geteuid, METH_NOARGS, posix_geteuid__doc__}, |
Guido van Rossum | 46003ff | 1992-05-15 11:05:24 +0000 | [diff] [blame] | 11114 | #endif /* HAVE_GETEUID */ |
| 11115 | #ifdef HAVE_GETGID |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11116 | {"getgid", posix_getgid, METH_NOARGS, posix_getgid__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 11117 | #endif /* HAVE_GETGID */ |
Ross Lagerwall | b0ae53d | 2011-06-10 07:30:30 +0200 | [diff] [blame] | 11118 | #ifdef HAVE_GETGROUPLIST |
| 11119 | {"getgrouplist", posix_getgrouplist, METH_VARARGS, posix_getgrouplist__doc__}, |
| 11120 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 11121 | #ifdef HAVE_GETGROUPS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11122 | {"getgroups", posix_getgroups, METH_NOARGS, posix_getgroups__doc__}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 11123 | #endif |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11124 | {"getpid", posix_getpid, METH_NOARGS, posix_getpid__doc__}, |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 11125 | #ifdef HAVE_GETPGRP |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11126 | {"getpgrp", posix_getpgrp, METH_NOARGS, posix_getpgrp__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 11127 | #endif /* HAVE_GETPGRP */ |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 11128 | #ifdef HAVE_GETPPID |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11129 | {"getppid", posix_getppid, METH_NOARGS, posix_getppid__doc__}, |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 11130 | #endif /* HAVE_GETPPID */ |
| 11131 | #ifdef HAVE_GETUID |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11132 | {"getuid", posix_getuid, METH_NOARGS, posix_getuid__doc__}, |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 11133 | #endif /* HAVE_GETUID */ |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 11134 | #ifdef HAVE_GETLOGIN |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11135 | {"getlogin", posix_getlogin, METH_NOARGS, posix_getlogin__doc__}, |
Fred Drake | 12c6e2d | 1999-12-14 21:25:03 +0000 | [diff] [blame] | 11136 | #endif |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 11137 | #ifdef HAVE_KILL |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11138 | {"kill", posix_kill, METH_VARARGS, posix_kill__doc__}, |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 11139 | #endif /* HAVE_KILL */ |
Martin v. Löwis | b2c92f4 | 2002-02-16 23:35:41 +0000 | [diff] [blame] | 11140 | #ifdef HAVE_KILLPG |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11141 | {"killpg", posix_killpg, METH_VARARGS, posix_killpg__doc__}, |
Martin v. Löwis | b2c92f4 | 2002-02-16 23:35:41 +0000 | [diff] [blame] | 11142 | #endif /* HAVE_KILLPG */ |
Guido van Rossum | c012547 | 1996-06-28 18:55:32 +0000 | [diff] [blame] | 11143 | #ifdef HAVE_PLOCK |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11144 | {"plock", posix_plock, METH_VARARGS, posix_plock__doc__}, |
Guido van Rossum | c012547 | 1996-06-28 18:55:32 +0000 | [diff] [blame] | 11145 | #endif /* HAVE_PLOCK */ |
Thomas Heller | 8b7a957 | 2007-08-31 06:44:36 +0000 | [diff] [blame] | 11146 | #ifdef MS_WINDOWS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11147 | {"startfile", win32_startfile, METH_VARARGS, win32_startfile__doc__}, |
| 11148 | {"kill", win32_kill, METH_VARARGS, win32_kill__doc__}, |
Thomas Heller | 8b7a957 | 2007-08-31 06:44:36 +0000 | [diff] [blame] | 11149 | #endif |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 11150 | #ifdef HAVE_SETUID |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11151 | {"setuid", posix_setuid, METH_VARARGS, posix_setuid__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 11152 | #endif /* HAVE_SETUID */ |
Andrew M. Kuchling | 8d2f2b2d | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 11153 | #ifdef HAVE_SETEUID |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11154 | {"seteuid", posix_seteuid, METH_VARARGS, posix_seteuid__doc__}, |
Andrew M. Kuchling | 8d2f2b2d | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 11155 | #endif /* HAVE_SETEUID */ |
| 11156 | #ifdef HAVE_SETEGID |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11157 | {"setegid", posix_setegid, METH_VARARGS, posix_setegid__doc__}, |
Andrew M. Kuchling | 8d2f2b2d | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 11158 | #endif /* HAVE_SETEGID */ |
| 11159 | #ifdef HAVE_SETREUID |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11160 | {"setreuid", posix_setreuid, METH_VARARGS, posix_setreuid__doc__}, |
Andrew M. Kuchling | 8d2f2b2d | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 11161 | #endif /* HAVE_SETREUID */ |
| 11162 | #ifdef HAVE_SETREGID |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11163 | {"setregid", posix_setregid, METH_VARARGS, posix_setregid__doc__}, |
Andrew M. Kuchling | 8d2f2b2d | 2000-07-13 01:26:58 +0000 | [diff] [blame] | 11164 | #endif /* HAVE_SETREGID */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 11165 | #ifdef HAVE_SETGID |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11166 | {"setgid", posix_setgid, METH_VARARGS, posix_setgid__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 11167 | #endif /* HAVE_SETGID */ |
Martin v. Löwis | 61c5edf | 2001-10-18 04:06:00 +0000 | [diff] [blame] | 11168 | #ifdef HAVE_SETGROUPS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11169 | {"setgroups", posix_setgroups, METH_O, posix_setgroups__doc__}, |
Martin v. Löwis | 61c5edf | 2001-10-18 04:06:00 +0000 | [diff] [blame] | 11170 | #endif /* HAVE_SETGROUPS */ |
Antoine Pitrou | b7572f0 | 2009-12-02 20:46:48 +0000 | [diff] [blame] | 11171 | #ifdef HAVE_INITGROUPS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11172 | {"initgroups", posix_initgroups, METH_VARARGS, posix_initgroups__doc__}, |
Antoine Pitrou | b7572f0 | 2009-12-02 20:46:48 +0000 | [diff] [blame] | 11173 | #endif /* HAVE_INITGROUPS */ |
Martin v. Löwis | 606edc1 | 2002-06-13 21:09:11 +0000 | [diff] [blame] | 11174 | #ifdef HAVE_GETPGID |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11175 | {"getpgid", posix_getpgid, METH_VARARGS, posix_getpgid__doc__}, |
Martin v. Löwis | 606edc1 | 2002-06-13 21:09:11 +0000 | [diff] [blame] | 11176 | #endif /* HAVE_GETPGID */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 11177 | #ifdef HAVE_SETPGRP |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11178 | {"setpgrp", posix_setpgrp, METH_NOARGS, posix_setpgrp__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 11179 | #endif /* HAVE_SETPGRP */ |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 11180 | #ifdef HAVE_WAIT |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11181 | {"wait", posix_wait, METH_NOARGS, posix_wait__doc__}, |
Guido van Rossum | ad0ee83 | 1995-03-01 10:34:45 +0000 | [diff] [blame] | 11182 | #endif /* HAVE_WAIT */ |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 11183 | #ifdef HAVE_WAIT3 |
Victor Stinner | 4195b5c | 2012-02-08 23:03:19 +0100 | [diff] [blame] | 11184 | {"wait3", posix_wait3, METH_VARARGS, posix_wait3__doc__}, |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 11185 | #endif /* HAVE_WAIT3 */ |
| 11186 | #ifdef HAVE_WAIT4 |
Victor Stinner | 4195b5c | 2012-02-08 23:03:19 +0100 | [diff] [blame] | 11187 | {"wait4", posix_wait4, METH_VARARGS, posix_wait4__doc__}, |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 11188 | #endif /* HAVE_WAIT4 */ |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 11189 | #if defined(HAVE_WAITID) && !defined(__APPLE__) |
| 11190 | {"waitid", posix_waitid, METH_VARARGS, posix_waitid__doc__}, |
| 11191 | #endif |
Tim Peters | ab034fa | 2002-02-01 11:27:43 +0000 | [diff] [blame] | 11192 | #if defined(HAVE_WAITPID) || defined(HAVE_CWAIT) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11193 | {"waitpid", posix_waitpid, METH_VARARGS, posix_waitpid__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 11194 | #endif /* HAVE_WAITPID */ |
Martin v. Löwis | 49ee14d | 2003-11-10 06:35:36 +0000 | [diff] [blame] | 11195 | #ifdef HAVE_GETSID |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11196 | {"getsid", posix_getsid, METH_VARARGS, posix_getsid__doc__}, |
Martin v. Löwis | 49ee14d | 2003-11-10 06:35:36 +0000 | [diff] [blame] | 11197 | #endif /* HAVE_GETSID */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 11198 | #ifdef HAVE_SETSID |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11199 | {"setsid", posix_setsid, METH_NOARGS, posix_setsid__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 11200 | #endif /* HAVE_SETSID */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 11201 | #ifdef HAVE_SETPGID |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11202 | {"setpgid", posix_setpgid, METH_VARARGS, posix_setpgid__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 11203 | #endif /* HAVE_SETPGID */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 11204 | #ifdef HAVE_TCGETPGRP |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11205 | {"tcgetpgrp", posix_tcgetpgrp, METH_VARARGS, posix_tcgetpgrp__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 11206 | #endif /* HAVE_TCGETPGRP */ |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 11207 | #ifdef HAVE_TCSETPGRP |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11208 | {"tcsetpgrp", posix_tcsetpgrp, METH_VARARGS, posix_tcsetpgrp__doc__}, |
Guido van Rossum | 6a3eb5f | 1994-08-18 15:42:46 +0000 | [diff] [blame] | 11209 | #endif /* HAVE_TCSETPGRP */ |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 11210 | {"open", (PyCFunction)posix_open,\ |
| 11211 | METH_VARARGS | METH_KEYWORDS, |
| 11212 | posix_open__doc__}, |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11213 | {"close", posix_close, METH_VARARGS, posix_close__doc__}, |
| 11214 | {"closerange", posix_closerange, METH_VARARGS, posix_closerange__doc__}, |
| 11215 | {"device_encoding", device_encoding, METH_VARARGS, device_encoding__doc__}, |
| 11216 | {"dup", posix_dup, METH_VARARGS, posix_dup__doc__}, |
| 11217 | {"dup2", posix_dup2, METH_VARARGS, posix_dup2__doc__}, |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 11218 | #ifdef HAVE_LOCKF |
| 11219 | {"lockf", posix_lockf, METH_VARARGS, posix_lockf__doc__}, |
| 11220 | #endif |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11221 | {"lseek", posix_lseek, METH_VARARGS, posix_lseek__doc__}, |
| 11222 | {"read", posix_read, METH_VARARGS, posix_read__doc__}, |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 11223 | #ifdef HAVE_READV |
| 11224 | {"readv", posix_readv, METH_VARARGS, posix_readv__doc__}, |
| 11225 | #endif |
| 11226 | #ifdef HAVE_PREAD |
| 11227 | {"pread", posix_pread, METH_VARARGS, posix_pread__doc__}, |
| 11228 | #endif |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11229 | {"write", posix_write, METH_VARARGS, posix_write__doc__}, |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 11230 | #ifdef HAVE_WRITEV |
| 11231 | {"writev", posix_writev, METH_VARARGS, posix_writev__doc__}, |
| 11232 | #endif |
| 11233 | #ifdef HAVE_PWRITE |
| 11234 | {"pwrite", posix_pwrite, METH_VARARGS, posix_pwrite__doc__}, |
| 11235 | #endif |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 11236 | #ifdef HAVE_SENDFILE |
| 11237 | {"sendfile", (PyCFunction)posix_sendfile, METH_VARARGS | METH_KEYWORDS, |
| 11238 | posix_sendfile__doc__}, |
| 11239 | #endif |
Victor Stinner | 4195b5c | 2012-02-08 23:03:19 +0100 | [diff] [blame] | 11240 | {"fstat", posix_fstat, METH_VARARGS, posix_fstat__doc__}, |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11241 | {"isatty", posix_isatty, METH_VARARGS, posix_isatty__doc__}, |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 11242 | #ifdef HAVE_PIPE |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11243 | {"pipe", posix_pipe, METH_NOARGS, posix_pipe__doc__}, |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 11244 | #endif |
Charles-François Natali | daafdd5 | 2011-05-29 20:07:40 +0200 | [diff] [blame] | 11245 | #ifdef HAVE_PIPE2 |
Charles-François Natali | 368f34b | 2011-06-06 19:49:47 +0200 | [diff] [blame] | 11246 | {"pipe2", posix_pipe2, METH_O, posix_pipe2__doc__}, |
Charles-François Natali | daafdd5 | 2011-05-29 20:07:40 +0200 | [diff] [blame] | 11247 | #endif |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 11248 | #ifdef HAVE_MKFIFO |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 11249 | {"mkfifo", (PyCFunction)posix_mkfifo, |
| 11250 | METH_VARARGS | METH_KEYWORDS, |
| 11251 | posix_mkfifo__doc__}, |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 11252 | #endif |
Neal Norwitz | 1169011 | 2002-07-30 01:08:28 +0000 | [diff] [blame] | 11253 | #if defined(HAVE_MKNOD) && defined(HAVE_MAKEDEV) |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 11254 | {"mknod", (PyCFunction)posix_mknod, |
| 11255 | METH_VARARGS | METH_KEYWORDS, |
| 11256 | posix_mknod__doc__}, |
Martin v. Löwis | 06a83e9 | 2002-04-14 10:19:44 +0000 | [diff] [blame] | 11257 | #endif |
Martin v. Löwis | dbe3f76 | 2002-10-10 14:27:30 +0000 | [diff] [blame] | 11258 | #ifdef HAVE_DEVICE_MACROS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11259 | {"major", posix_major, METH_VARARGS, posix_major__doc__}, |
| 11260 | {"minor", posix_minor, METH_VARARGS, posix_minor__doc__}, |
| 11261 | {"makedev", posix_makedev, METH_VARARGS, posix_makedev__doc__}, |
Martin v. Löwis | dbe3f76 | 2002-10-10 14:27:30 +0000 | [diff] [blame] | 11262 | #endif |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 11263 | #ifdef HAVE_FTRUNCATE |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11264 | {"ftruncate", posix_ftruncate, METH_VARARGS, posix_ftruncate__doc__}, |
Guido van Rossum | a4916fa | 1996-05-23 22:58:55 +0000 | [diff] [blame] | 11265 | #endif |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 11266 | #ifdef HAVE_TRUNCATE |
Georg Brandl | 306336b | 2012-06-24 12:55:33 +0200 | [diff] [blame] | 11267 | {"truncate", (PyCFunction)posix_truncate, |
| 11268 | METH_VARARGS | METH_KEYWORDS, |
| 11269 | posix_truncate__doc__}, |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 11270 | #endif |
| 11271 | #ifdef HAVE_POSIX_FALLOCATE |
| 11272 | {"posix_fallocate", posix_posix_fallocate, METH_VARARGS, posix_posix_fallocate__doc__}, |
| 11273 | #endif |
| 11274 | #ifdef HAVE_POSIX_FADVISE |
| 11275 | {"posix_fadvise", posix_posix_fadvise, METH_VARARGS, posix_posix_fadvise__doc__}, |
| 11276 | #endif |
Guido van Rossum | f1af3fe | 1996-07-23 19:18:10 +0000 | [diff] [blame] | 11277 | #ifdef HAVE_PUTENV |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11278 | {"putenv", posix_putenv, METH_VARARGS, posix_putenv__doc__}, |
Guido van Rossum | f1af3fe | 1996-07-23 19:18:10 +0000 | [diff] [blame] | 11279 | #endif |
Guido van Rossum | c524d95 | 2001-10-19 01:31:59 +0000 | [diff] [blame] | 11280 | #ifdef HAVE_UNSETENV |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11281 | {"unsetenv", posix_unsetenv, METH_VARARGS, posix_unsetenv__doc__}, |
Guido van Rossum | c524d95 | 2001-10-19 01:31:59 +0000 | [diff] [blame] | 11282 | #endif |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11283 | {"strerror", posix_strerror, METH_VARARGS, posix_strerror__doc__}, |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 11284 | #ifdef HAVE_FCHDIR |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11285 | {"fchdir", posix_fchdir, METH_O, posix_fchdir__doc__}, |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 11286 | #endif |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 11287 | #ifdef HAVE_FSYNC |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11288 | {"fsync", posix_fsync, METH_O, posix_fsync__doc__}, |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 11289 | #endif |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 11290 | #ifdef HAVE_SYNC |
| 11291 | {"sync", posix_sync, METH_NOARGS, posix_sync__doc__}, |
| 11292 | #endif |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 11293 | #ifdef HAVE_FDATASYNC |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11294 | {"fdatasync", posix_fdatasync, METH_O, posix_fdatasync__doc__}, |
Guido van Rossum | 21142a0 | 1999-01-08 21:05:37 +0000 | [diff] [blame] | 11295 | #endif |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 11296 | #ifdef HAVE_SYS_WAIT_H |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 11297 | #ifdef WCOREDUMP |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11298 | {"WCOREDUMP", posix_WCOREDUMP, METH_VARARGS, posix_WCOREDUMP__doc__}, |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 11299 | #endif /* WCOREDUMP */ |
Martin v. Löwis | 2b41b0d | 2002-05-04 13:13:41 +0000 | [diff] [blame] | 11300 | #ifdef WIFCONTINUED |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11301 | {"WIFCONTINUED",posix_WIFCONTINUED, METH_VARARGS, posix_WIFCONTINUED__doc__}, |
Martin v. Löwis | 2b41b0d | 2002-05-04 13:13:41 +0000 | [diff] [blame] | 11302 | #endif /* WIFCONTINUED */ |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 11303 | #ifdef WIFSTOPPED |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11304 | {"WIFSTOPPED", posix_WIFSTOPPED, METH_VARARGS, posix_WIFSTOPPED__doc__}, |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 11305 | #endif /* WIFSTOPPED */ |
| 11306 | #ifdef WIFSIGNALED |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11307 | {"WIFSIGNALED", posix_WIFSIGNALED, METH_VARARGS, posix_WIFSIGNALED__doc__}, |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 11308 | #endif /* WIFSIGNALED */ |
| 11309 | #ifdef WIFEXITED |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11310 | {"WIFEXITED", posix_WIFEXITED, METH_VARARGS, posix_WIFEXITED__doc__}, |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 11311 | #endif /* WIFEXITED */ |
| 11312 | #ifdef WEXITSTATUS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11313 | {"WEXITSTATUS", posix_WEXITSTATUS, METH_VARARGS, posix_WEXITSTATUS__doc__}, |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 11314 | #endif /* WEXITSTATUS */ |
| 11315 | #ifdef WTERMSIG |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11316 | {"WTERMSIG", posix_WTERMSIG, METH_VARARGS, posix_WTERMSIG__doc__}, |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 11317 | #endif /* WTERMSIG */ |
| 11318 | #ifdef WSTOPSIG |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11319 | {"WSTOPSIG", posix_WSTOPSIG, METH_VARARGS, posix_WSTOPSIG__doc__}, |
Guido van Rossum | c964179 | 1998-08-04 15:26:23 +0000 | [diff] [blame] | 11320 | #endif /* WSTOPSIG */ |
| 11321 | #endif /* HAVE_SYS_WAIT_H */ |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 11322 | #if defined(HAVE_FSTATVFS) && defined(HAVE_SYS_STATVFS_H) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11323 | {"fstatvfs", posix_fstatvfs, METH_VARARGS, posix_fstatvfs__doc__}, |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 11324 | #endif |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 11325 | #if defined(HAVE_STATVFS) && defined(HAVE_SYS_STATVFS_H) |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 11326 | {"statvfs", (PyCFunction)posix_statvfs, |
| 11327 | METH_VARARGS | METH_KEYWORDS, |
| 11328 | posix_statvfs__doc__}, |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 11329 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 11330 | #ifdef HAVE_CONFSTR |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11331 | {"confstr", posix_confstr, METH_VARARGS, posix_confstr__doc__}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 11332 | #endif |
| 11333 | #ifdef HAVE_SYSCONF |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11334 | {"sysconf", posix_sysconf, METH_VARARGS, posix_sysconf__doc__}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 11335 | #endif |
| 11336 | #ifdef HAVE_FPATHCONF |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11337 | {"fpathconf", posix_fpathconf, METH_VARARGS, posix_fpathconf__doc__}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 11338 | #endif |
| 11339 | #ifdef HAVE_PATHCONF |
Georg Brandl | 306336b | 2012-06-24 12:55:33 +0200 | [diff] [blame] | 11340 | {"pathconf", (PyCFunction)posix_pathconf, |
| 11341 | METH_VARARGS | METH_KEYWORDS, |
| 11342 | posix_pathconf__doc__}, |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 11343 | #endif |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11344 | {"abort", posix_abort, METH_NOARGS, posix_abort__doc__}, |
Martin v. Löwis | 6238d2b | 2002-06-30 15:26:10 +0000 | [diff] [blame] | 11345 | #ifdef MS_WINDOWS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11346 | {"_getfullpathname", posix__getfullpathname, METH_VARARGS, NULL}, |
Brian Curtin | d40e6f7 | 2010-07-08 21:39:08 +0000 | [diff] [blame] | 11347 | {"_getfinalpathname", posix__getfinalpathname, METH_VARARGS, NULL}, |
Brian Curtin | 6285774 | 2010-09-06 17:07:27 +0000 | [diff] [blame] | 11348 | {"_getfileinformation", posix__getfileinformation, METH_VARARGS, NULL}, |
Brian Curtin | 95d028f | 2011-06-09 09:10:38 -0500 | [diff] [blame] | 11349 | {"_isdir", posix__isdir, METH_VARARGS, posix__isdir__doc__}, |
Giampaolo Rodola' | 210e7ca | 2011-07-01 13:55:36 +0200 | [diff] [blame] | 11350 | {"_getdiskusage", win32__getdiskusage, METH_VARARGS, win32__getdiskusage__doc__}, |
Mark Hammond | ef8b654 | 2001-05-13 08:04:26 +0000 | [diff] [blame] | 11351 | #endif |
Martin v. Löwis | 438b534 | 2002-12-27 10:16:42 +0000 | [diff] [blame] | 11352 | #ifdef HAVE_GETLOADAVG |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11353 | {"getloadavg", posix_getloadavg, METH_NOARGS, posix_getloadavg__doc__}, |
Martin v. Löwis | 438b534 | 2002-12-27 10:16:42 +0000 | [diff] [blame] | 11354 | #endif |
Georg Brandl | 2daf6ae | 2012-02-20 19:54:16 +0100 | [diff] [blame] | 11355 | {"urandom", posix_urandom, METH_VARARGS, posix_urandom__doc__}, |
Martin v. Löwis | 7aed61a | 2009-11-27 14:09:49 +0000 | [diff] [blame] | 11356 | #ifdef HAVE_SETRESUID |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11357 | {"setresuid", posix_setresuid, METH_VARARGS, posix_setresuid__doc__}, |
Martin v. Löwis | 7aed61a | 2009-11-27 14:09:49 +0000 | [diff] [blame] | 11358 | #endif |
| 11359 | #ifdef HAVE_SETRESGID |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11360 | {"setresgid", posix_setresgid, METH_VARARGS, posix_setresgid__doc__}, |
Martin v. Löwis | 7aed61a | 2009-11-27 14:09:49 +0000 | [diff] [blame] | 11361 | #endif |
| 11362 | #ifdef HAVE_GETRESUID |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11363 | {"getresuid", posix_getresuid, METH_NOARGS, posix_getresuid__doc__}, |
Martin v. Löwis | 7aed61a | 2009-11-27 14:09:49 +0000 | [diff] [blame] | 11364 | #endif |
| 11365 | #ifdef HAVE_GETRESGID |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11366 | {"getresgid", posix_getresgid, METH_NOARGS, posix_getresgid__doc__}, |
Martin v. Löwis | 7aed61a | 2009-11-27 14:09:49 +0000 | [diff] [blame] | 11367 | #endif |
| 11368 | |
Benjamin Peterson | 9428d53 | 2011-09-14 11:45:52 -0400 | [diff] [blame] | 11369 | #ifdef USE_XATTRS |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 11370 | {"setxattr", (PyCFunction)posix_setxattr, |
| 11371 | METH_VARARGS | METH_KEYWORDS, |
| 11372 | posix_setxattr__doc__}, |
| 11373 | {"getxattr", (PyCFunction)posix_getxattr, |
| 11374 | METH_VARARGS | METH_KEYWORDS, |
| 11375 | posix_getxattr__doc__}, |
| 11376 | {"removexattr", (PyCFunction)posix_removexattr, |
| 11377 | METH_VARARGS | METH_KEYWORDS, |
| 11378 | posix_removexattr__doc__}, |
| 11379 | {"listxattr", (PyCFunction)posix_listxattr, |
| 11380 | METH_VARARGS | METH_KEYWORDS, |
| 11381 | posix_listxattr__doc__}, |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 11382 | #endif |
Antoine Pitrou | bcf2b59 | 2012-02-08 23:28:36 +0100 | [diff] [blame] | 11383 | #if defined(TERMSIZE_USE_CONIO) || defined(TERMSIZE_USE_IOCTL) |
| 11384 | {"get_terminal_size", get_terminal_size, METH_VARARGS, termsize__doc__}, |
| 11385 | #endif |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11386 | {NULL, NULL} /* Sentinel */ |
Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 11387 | }; |
| 11388 | |
| 11389 | |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 11390 | static int |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 11391 | ins(PyObject *module, char *symbol, long value) |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 11392 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11393 | return PyModule_AddIntConstant(module, symbol, value); |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 11394 | } |
| 11395 | |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 11396 | #if defined(PYOS_OS2) |
| 11397 | /* Insert Platform-Specific Constant Values (Strings & Numbers) of Common Use */ |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 11398 | static int insertvalues(PyObject *module) |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 11399 | { |
| 11400 | APIRET rc; |
| 11401 | ULONG values[QSV_MAX+1]; |
| 11402 | PyObject *v; |
Marc-André Lemburg | d4c0a9c | 2001-11-28 11:47:00 +0000 | [diff] [blame] | 11403 | char *ver, tmp[50]; |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 11404 | |
| 11405 | Py_BEGIN_ALLOW_THREADS |
Andrew MacIntyre | 75e0145 | 2003-04-21 14:19:51 +0000 | [diff] [blame] | 11406 | rc = DosQuerySysInfo(1L, QSV_MAX, &values[1], sizeof(ULONG) * QSV_MAX); |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 11407 | Py_END_ALLOW_THREADS |
| 11408 | |
| 11409 | if (rc != NO_ERROR) { |
| 11410 | os2_error(rc); |
| 11411 | return -1; |
| 11412 | } |
| 11413 | |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 11414 | if (ins(module, "meminstalled", values[QSV_TOTPHYSMEM])) return -1; |
| 11415 | if (ins(module, "memkernel", values[QSV_TOTRESMEM])) return -1; |
| 11416 | if (ins(module, "memvirtual", values[QSV_TOTAVAILMEM])) return -1; |
| 11417 | if (ins(module, "maxpathlen", values[QSV_MAX_PATH_LENGTH])) return -1; |
| 11418 | if (ins(module, "maxnamelen", values[QSV_MAX_COMP_LENGTH])) return -1; |
| 11419 | if (ins(module, "revision", values[QSV_VERSION_REVISION])) return -1; |
| 11420 | if (ins(module, "timeslice", values[QSV_MIN_SLICE])) return -1; |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 11421 | |
| 11422 | switch (values[QSV_VERSION_MINOR]) { |
| 11423 | case 0: ver = "2.00"; break; |
| 11424 | case 10: ver = "2.10"; break; |
| 11425 | case 11: ver = "2.11"; break; |
| 11426 | case 30: ver = "3.00"; break; |
| 11427 | case 40: ver = "4.00"; break; |
| 11428 | case 50: ver = "5.00"; break; |
| 11429 | default: |
Tim Peters | 885d457 | 2001-11-28 20:27:42 +0000 | [diff] [blame] | 11430 | PyOS_snprintf(tmp, sizeof(tmp), |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11431 | "%d-%d", values[QSV_VERSION_MAJOR], |
Tim Peters | 885d457 | 2001-11-28 20:27:42 +0000 | [diff] [blame] | 11432 | values[QSV_VERSION_MINOR]); |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 11433 | ver = &tmp[0]; |
| 11434 | } |
| 11435 | |
| 11436 | /* Add Indicator of the Version of the Operating System */ |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 11437 | if (PyModule_AddStringConstant(module, "version", tmp) < 0) |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 11438 | return -1; |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 11439 | |
| 11440 | /* Add Indicator of Which Drive was Used to Boot the System */ |
| 11441 | tmp[0] = 'A' + values[QSV_BOOT_DRIVE] - 1; |
| 11442 | tmp[1] = ':'; |
| 11443 | tmp[2] = '\0'; |
| 11444 | |
Fred Drake | 4d1e64b | 2002-04-15 19:40:07 +0000 | [diff] [blame] | 11445 | return PyModule_AddStringConstant(module, "bootdrive", tmp); |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 11446 | } |
| 11447 | #endif |
| 11448 | |
Brian Curtin | 52173d4 | 2010-12-02 18:29:18 +0000 | [diff] [blame] | 11449 | #if defined(HAVE_SYMLINK) && defined(MS_WINDOWS) |
Brian Curtin | 3b4499c | 2010-12-28 14:31:47 +0000 | [diff] [blame] | 11450 | static int |
Brian Curtin | 52173d4 | 2010-12-02 18:29:18 +0000 | [diff] [blame] | 11451 | enable_symlink() |
| 11452 | { |
| 11453 | HANDLE tok; |
| 11454 | TOKEN_PRIVILEGES tok_priv; |
| 11455 | LUID luid; |
| 11456 | int meth_idx = 0; |
| 11457 | |
| 11458 | if (!OpenProcessToken(GetCurrentProcess(), TOKEN_ALL_ACCESS, &tok)) |
Brian Curtin | 3b4499c | 2010-12-28 14:31:47 +0000 | [diff] [blame] | 11459 | return 0; |
Brian Curtin | 52173d4 | 2010-12-02 18:29:18 +0000 | [diff] [blame] | 11460 | |
| 11461 | if (!LookupPrivilegeValue(NULL, SE_CREATE_SYMBOLIC_LINK_NAME, &luid)) |
Brian Curtin | 3b4499c | 2010-12-28 14:31:47 +0000 | [diff] [blame] | 11462 | return 0; |
Brian Curtin | 52173d4 | 2010-12-02 18:29:18 +0000 | [diff] [blame] | 11463 | |
| 11464 | tok_priv.PrivilegeCount = 1; |
| 11465 | tok_priv.Privileges[0].Luid = luid; |
| 11466 | tok_priv.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED; |
| 11467 | |
| 11468 | if (!AdjustTokenPrivileges(tok, FALSE, &tok_priv, |
| 11469 | sizeof(TOKEN_PRIVILEGES), |
| 11470 | (PTOKEN_PRIVILEGES) NULL, (PDWORD) NULL)) |
Brian Curtin | 3b4499c | 2010-12-28 14:31:47 +0000 | [diff] [blame] | 11471 | return 0; |
Brian Curtin | 52173d4 | 2010-12-02 18:29:18 +0000 | [diff] [blame] | 11472 | |
Brian Curtin | 3b4499c | 2010-12-28 14:31:47 +0000 | [diff] [blame] | 11473 | /* ERROR_NOT_ALL_ASSIGNED returned when the privilege can't be assigned. */ |
| 11474 | return GetLastError() == ERROR_NOT_ALL_ASSIGNED ? 0 : 1; |
Brian Curtin | 52173d4 | 2010-12-02 18:29:18 +0000 | [diff] [blame] | 11475 | } |
| 11476 | #endif /* defined(HAVE_SYMLINK) && defined(MS_WINDOWS) */ |
| 11477 | |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 11478 | static int |
Thomas Wouters | f3f33dc | 2000-07-21 06:00:07 +0000 | [diff] [blame] | 11479 | all_ins(PyObject *d) |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 11480 | { |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 11481 | #ifdef F_OK |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11482 | if (ins(d, "F_OK", (long)F_OK)) return -1; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 11483 | #endif |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 11484 | #ifdef R_OK |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11485 | if (ins(d, "R_OK", (long)R_OK)) return -1; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 11486 | #endif |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 11487 | #ifdef W_OK |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11488 | if (ins(d, "W_OK", (long)W_OK)) return -1; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 11489 | #endif |
Guido van Rossum | 94f6f72 | 1999-01-06 18:42:14 +0000 | [diff] [blame] | 11490 | #ifdef X_OK |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11491 | if (ins(d, "X_OK", (long)X_OK)) return -1; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 11492 | #endif |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 11493 | #ifdef NGROUPS_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11494 | if (ins(d, "NGROUPS_MAX", (long)NGROUPS_MAX)) return -1; |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 11495 | #endif |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 11496 | #ifdef TMP_MAX |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11497 | if (ins(d, "TMP_MAX", (long)TMP_MAX)) return -1; |
Fred Drake | 5ab8eaf | 1999-12-09 21:13:07 +0000 | [diff] [blame] | 11498 | #endif |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 11499 | #ifdef WCONTINUED |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11500 | if (ins(d, "WCONTINUED", (long)WCONTINUED)) return -1; |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 11501 | #endif |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 11502 | #ifdef WNOHANG |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11503 | if (ins(d, "WNOHANG", (long)WNOHANG)) return -1; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 11504 | #endif |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 11505 | #ifdef WUNTRACED |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11506 | if (ins(d, "WUNTRACED", (long)WUNTRACED)) return -1; |
Fred Drake | 106c1a0 | 2002-04-23 15:58:02 +0000 | [diff] [blame] | 11507 | #endif |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 11508 | #ifdef O_RDONLY |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11509 | if (ins(d, "O_RDONLY", (long)O_RDONLY)) return -1; |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 11510 | #endif |
| 11511 | #ifdef O_WRONLY |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11512 | if (ins(d, "O_WRONLY", (long)O_WRONLY)) return -1; |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 11513 | #endif |
| 11514 | #ifdef O_RDWR |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11515 | if (ins(d, "O_RDWR", (long)O_RDWR)) return -1; |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 11516 | #endif |
| 11517 | #ifdef O_NDELAY |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11518 | if (ins(d, "O_NDELAY", (long)O_NDELAY)) return -1; |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 11519 | #endif |
| 11520 | #ifdef O_NONBLOCK |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11521 | if (ins(d, "O_NONBLOCK", (long)O_NONBLOCK)) return -1; |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 11522 | #endif |
| 11523 | #ifdef O_APPEND |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11524 | if (ins(d, "O_APPEND", (long)O_APPEND)) return -1; |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 11525 | #endif |
| 11526 | #ifdef O_DSYNC |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11527 | if (ins(d, "O_DSYNC", (long)O_DSYNC)) return -1; |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 11528 | #endif |
| 11529 | #ifdef O_RSYNC |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11530 | if (ins(d, "O_RSYNC", (long)O_RSYNC)) return -1; |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 11531 | #endif |
| 11532 | #ifdef O_SYNC |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11533 | if (ins(d, "O_SYNC", (long)O_SYNC)) return -1; |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 11534 | #endif |
| 11535 | #ifdef O_NOCTTY |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11536 | if (ins(d, "O_NOCTTY", (long)O_NOCTTY)) return -1; |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 11537 | #endif |
| 11538 | #ifdef O_CREAT |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11539 | if (ins(d, "O_CREAT", (long)O_CREAT)) return -1; |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 11540 | #endif |
| 11541 | #ifdef O_EXCL |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11542 | if (ins(d, "O_EXCL", (long)O_EXCL)) return -1; |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 11543 | #endif |
| 11544 | #ifdef O_TRUNC |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11545 | if (ins(d, "O_TRUNC", (long)O_TRUNC)) return -1; |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 11546 | #endif |
Guido van Rossum | 98d9d09 | 1997-08-08 21:48:51 +0000 | [diff] [blame] | 11547 | #ifdef O_BINARY |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11548 | if (ins(d, "O_BINARY", (long)O_BINARY)) return -1; |
Guido van Rossum | 98d9d09 | 1997-08-08 21:48:51 +0000 | [diff] [blame] | 11549 | #endif |
| 11550 | #ifdef O_TEXT |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11551 | if (ins(d, "O_TEXT", (long)O_TEXT)) return -1; |
Guido van Rossum | 98d9d09 | 1997-08-08 21:48:51 +0000 | [diff] [blame] | 11552 | #endif |
Jesus Cea | 1d642d2 | 2012-04-24 20:59:17 +0200 | [diff] [blame] | 11553 | #ifdef O_XATTR |
| 11554 | if (ins(d, "O_XATTR", (long)O_XATTR)) return -1; |
| 11555 | #endif |
Martin v. Löwis | 4fe3c27 | 2001-10-18 22:05:36 +0000 | [diff] [blame] | 11556 | #ifdef O_LARGEFILE |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11557 | if (ins(d, "O_LARGEFILE", (long)O_LARGEFILE)) return -1; |
Martin v. Löwis | 4fe3c27 | 2001-10-18 22:05:36 +0000 | [diff] [blame] | 11558 | #endif |
Skip Montanaro | 5ff1492 | 2005-05-16 02:42:22 +0000 | [diff] [blame] | 11559 | #ifdef O_SHLOCK |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11560 | if (ins(d, "O_SHLOCK", (long)O_SHLOCK)) return -1; |
Skip Montanaro | 5ff1492 | 2005-05-16 02:42:22 +0000 | [diff] [blame] | 11561 | #endif |
| 11562 | #ifdef O_EXLOCK |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11563 | if (ins(d, "O_EXLOCK", (long)O_EXLOCK)) return -1; |
Skip Montanaro | 5ff1492 | 2005-05-16 02:42:22 +0000 | [diff] [blame] | 11564 | #endif |
Jesus Cea | cf38120 | 2012-04-24 20:44:40 +0200 | [diff] [blame] | 11565 | #ifdef O_EXEC |
| 11566 | if (ins(d, "O_EXEC", (long)O_EXEC)) return -1; |
| 11567 | #endif |
| 11568 | #ifdef O_SEARCH |
| 11569 | if (ins(d, "O_SEARCH", (long)O_SEARCH)) return -1; |
| 11570 | #endif |
| 11571 | #ifdef O_TTY_INIT |
| 11572 | if (ins(d, "O_TTY_INIT", (long)O_TTY_INIT)) return -1; |
| 11573 | #endif |
Giampaolo Rodolà | 18e8bcb | 2011-02-25 20:57:54 +0000 | [diff] [blame] | 11574 | #ifdef PRIO_PROCESS |
| 11575 | if (ins(d, "PRIO_PROCESS", (long)PRIO_PROCESS)) return -1; |
| 11576 | #endif |
| 11577 | #ifdef PRIO_PGRP |
| 11578 | if (ins(d, "PRIO_PGRP", (long)PRIO_PGRP)) return -1; |
| 11579 | #endif |
| 11580 | #ifdef PRIO_USER |
| 11581 | if (ins(d, "PRIO_USER", (long)PRIO_USER)) return -1; |
| 11582 | #endif |
Charles-François Natali | 1e045b1 | 2011-05-22 20:42:32 +0200 | [diff] [blame] | 11583 | #ifdef O_CLOEXEC |
| 11584 | if (ins(d, "O_CLOEXEC", (long)O_CLOEXEC)) return -1; |
| 11585 | #endif |
Jesus Cea | 1d642d2 | 2012-04-24 20:59:17 +0200 | [diff] [blame] | 11586 | #ifdef O_ACCMODE |
| 11587 | if (ins(d, "O_ACCMODE", (long)O_ACCMODE)) return -1; |
| 11588 | #endif |
Giampaolo Rodolà | 18e8bcb | 2011-02-25 20:57:54 +0000 | [diff] [blame] | 11589 | |
Martin v. Löwis | 4fe3c27 | 2001-10-18 22:05:36 +0000 | [diff] [blame] | 11590 | |
Jesus Cea | 9436361 | 2012-06-22 18:32:07 +0200 | [diff] [blame] | 11591 | #ifdef SEEK_HOLE |
| 11592 | if (ins(d, "SEEK_HOLE", (long)SEEK_HOLE)) return -1; |
| 11593 | #endif |
| 11594 | #ifdef SEEK_DATA |
| 11595 | if (ins(d, "SEEK_DATA", (long)SEEK_DATA)) return -1; |
| 11596 | #endif |
| 11597 | |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 11598 | /* MS Windows */ |
| 11599 | #ifdef O_NOINHERIT |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11600 | /* Don't inherit in child processes. */ |
| 11601 | if (ins(d, "O_NOINHERIT", (long)O_NOINHERIT)) return -1; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 11602 | #endif |
| 11603 | #ifdef _O_SHORT_LIVED |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11604 | /* Optimize for short life (keep in memory). */ |
| 11605 | /* MS forgot to define this one with a non-underscore form too. */ |
| 11606 | if (ins(d, "O_SHORT_LIVED", (long)_O_SHORT_LIVED)) return -1; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 11607 | #endif |
| 11608 | #ifdef O_TEMPORARY |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11609 | /* Automatically delete when last handle is closed. */ |
| 11610 | if (ins(d, "O_TEMPORARY", (long)O_TEMPORARY)) return -1; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 11611 | #endif |
| 11612 | #ifdef O_RANDOM |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11613 | /* Optimize for random access. */ |
| 11614 | if (ins(d, "O_RANDOM", (long)O_RANDOM)) return -1; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 11615 | #endif |
| 11616 | #ifdef O_SEQUENTIAL |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11617 | /* Optimize for sequential access. */ |
| 11618 | if (ins(d, "O_SEQUENTIAL", (long)O_SEQUENTIAL)) return -1; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 11619 | #endif |
| 11620 | |
Martin v. Löwis | 4fe3c27 | 2001-10-18 22:05:36 +0000 | [diff] [blame] | 11621 | /* GNU extensions. */ |
Alexandre Vassalotti | bee3253 | 2008-05-16 18:15:12 +0000 | [diff] [blame] | 11622 | #ifdef O_ASYNC |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11623 | /* Send a SIGIO signal whenever input or output |
| 11624 | becomes available on file descriptor */ |
| 11625 | if (ins(d, "O_ASYNC", (long)O_ASYNC)) return -1; |
Alexandre Vassalotti | bee3253 | 2008-05-16 18:15:12 +0000 | [diff] [blame] | 11626 | #endif |
Martin v. Löwis | 4fe3c27 | 2001-10-18 22:05:36 +0000 | [diff] [blame] | 11627 | #ifdef O_DIRECT |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11628 | /* Direct disk access. */ |
| 11629 | if (ins(d, "O_DIRECT", (long)O_DIRECT)) return -1; |
Martin v. Löwis | 4fe3c27 | 2001-10-18 22:05:36 +0000 | [diff] [blame] | 11630 | #endif |
| 11631 | #ifdef O_DIRECTORY |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11632 | /* Must be a directory. */ |
| 11633 | if (ins(d, "O_DIRECTORY", (long)O_DIRECTORY)) return -1; |
Martin v. Löwis | 4fe3c27 | 2001-10-18 22:05:36 +0000 | [diff] [blame] | 11634 | #endif |
| 11635 | #ifdef O_NOFOLLOW |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11636 | /* Do not follow links. */ |
| 11637 | if (ins(d, "O_NOFOLLOW", (long)O_NOFOLLOW)) return -1; |
Martin v. Löwis | 4fe3c27 | 2001-10-18 22:05:36 +0000 | [diff] [blame] | 11638 | #endif |
Jesus Cea | 1d642d2 | 2012-04-24 20:59:17 +0200 | [diff] [blame] | 11639 | #ifdef O_NOLINKS |
| 11640 | /* Fails if link count of the named file is greater than 1 */ |
| 11641 | if (ins(d, "O_NOLINKS", (long)O_NOLINKS)) return -1; |
| 11642 | #endif |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 11643 | #ifdef O_NOATIME |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11644 | /* Do not update the access time. */ |
| 11645 | if (ins(d, "O_NOATIME", (long)O_NOATIME)) return -1; |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 11646 | #endif |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 11647 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11648 | /* These come from sysexits.h */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 11649 | #ifdef EX_OK |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11650 | if (ins(d, "EX_OK", (long)EX_OK)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 11651 | #endif /* EX_OK */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 11652 | #ifdef EX_USAGE |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11653 | if (ins(d, "EX_USAGE", (long)EX_USAGE)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 11654 | #endif /* EX_USAGE */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 11655 | #ifdef EX_DATAERR |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11656 | if (ins(d, "EX_DATAERR", (long)EX_DATAERR)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 11657 | #endif /* EX_DATAERR */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 11658 | #ifdef EX_NOINPUT |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11659 | if (ins(d, "EX_NOINPUT", (long)EX_NOINPUT)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 11660 | #endif /* EX_NOINPUT */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 11661 | #ifdef EX_NOUSER |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11662 | if (ins(d, "EX_NOUSER", (long)EX_NOUSER)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 11663 | #endif /* EX_NOUSER */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 11664 | #ifdef EX_NOHOST |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11665 | if (ins(d, "EX_NOHOST", (long)EX_NOHOST)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 11666 | #endif /* EX_NOHOST */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 11667 | #ifdef EX_UNAVAILABLE |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11668 | if (ins(d, "EX_UNAVAILABLE", (long)EX_UNAVAILABLE)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 11669 | #endif /* EX_UNAVAILABLE */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 11670 | #ifdef EX_SOFTWARE |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11671 | if (ins(d, "EX_SOFTWARE", (long)EX_SOFTWARE)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 11672 | #endif /* EX_SOFTWARE */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 11673 | #ifdef EX_OSERR |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11674 | if (ins(d, "EX_OSERR", (long)EX_OSERR)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 11675 | #endif /* EX_OSERR */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 11676 | #ifdef EX_OSFILE |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11677 | if (ins(d, "EX_OSFILE", (long)EX_OSFILE)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 11678 | #endif /* EX_OSFILE */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 11679 | #ifdef EX_CANTCREAT |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11680 | if (ins(d, "EX_CANTCREAT", (long)EX_CANTCREAT)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 11681 | #endif /* EX_CANTCREAT */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 11682 | #ifdef EX_IOERR |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11683 | if (ins(d, "EX_IOERR", (long)EX_IOERR)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 11684 | #endif /* EX_IOERR */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 11685 | #ifdef EX_TEMPFAIL |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11686 | if (ins(d, "EX_TEMPFAIL", (long)EX_TEMPFAIL)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 11687 | #endif /* EX_TEMPFAIL */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 11688 | #ifdef EX_PROTOCOL |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11689 | if (ins(d, "EX_PROTOCOL", (long)EX_PROTOCOL)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 11690 | #endif /* EX_PROTOCOL */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 11691 | #ifdef EX_NOPERM |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11692 | if (ins(d, "EX_NOPERM", (long)EX_NOPERM)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 11693 | #endif /* EX_NOPERM */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 11694 | #ifdef EX_CONFIG |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11695 | if (ins(d, "EX_CONFIG", (long)EX_CONFIG)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 11696 | #endif /* EX_CONFIG */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 11697 | #ifdef EX_NOTFOUND |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11698 | if (ins(d, "EX_NOTFOUND", (long)EX_NOTFOUND)) return -1; |
Neal Norwitz | 8e914d9 | 2003-01-10 15:29:16 +0000 | [diff] [blame] | 11699 | #endif /* EX_NOTFOUND */ |
Barry Warsaw | 5676bd1 | 2003-01-07 20:57:09 +0000 | [diff] [blame] | 11700 | |
Amaury Forgeot d'Arc | 66d00ad | 2010-09-10 18:11:45 +0000 | [diff] [blame] | 11701 | /* statvfs */ |
Andrew M. Kuchling | 4ea04a3 | 2010-08-18 22:30:34 +0000 | [diff] [blame] | 11702 | #ifdef ST_RDONLY |
Amaury Forgeot d'Arc | 66d00ad | 2010-09-10 18:11:45 +0000 | [diff] [blame] | 11703 | if (ins(d, "ST_RDONLY", (long)ST_RDONLY)) return -1; |
Andrew M. Kuchling | 4ea04a3 | 2010-08-18 22:30:34 +0000 | [diff] [blame] | 11704 | #endif /* ST_RDONLY */ |
| 11705 | #ifdef ST_NOSUID |
Amaury Forgeot d'Arc | 66d00ad | 2010-09-10 18:11:45 +0000 | [diff] [blame] | 11706 | if (ins(d, "ST_NOSUID", (long)ST_NOSUID)) return -1; |
Andrew M. Kuchling | 4ea04a3 | 2010-08-18 22:30:34 +0000 | [diff] [blame] | 11707 | #endif /* ST_NOSUID */ |
| 11708 | |
Giampaolo Rodolà | c9c2c8b | 2011-02-25 14:39:16 +0000 | [diff] [blame] | 11709 | /* FreeBSD sendfile() constants */ |
| 11710 | #ifdef SF_NODISKIO |
| 11711 | if (ins(d, "SF_NODISKIO", (long)SF_NODISKIO)) return -1; |
| 11712 | #endif |
| 11713 | #ifdef SF_MNOWAIT |
| 11714 | if (ins(d, "SF_MNOWAIT", (long)SF_MNOWAIT)) return -1; |
| 11715 | #endif |
| 11716 | #ifdef SF_SYNC |
| 11717 | if (ins(d, "SF_SYNC", (long)SF_SYNC)) return -1; |
| 11718 | #endif |
| 11719 | |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 11720 | /* constants for posix_fadvise */ |
| 11721 | #ifdef POSIX_FADV_NORMAL |
| 11722 | if (ins(d, "POSIX_FADV_NORMAL", (long)POSIX_FADV_NORMAL)) return -1; |
| 11723 | #endif |
| 11724 | #ifdef POSIX_FADV_SEQUENTIAL |
| 11725 | if (ins(d, "POSIX_FADV_SEQUENTIAL", (long)POSIX_FADV_SEQUENTIAL)) return -1; |
| 11726 | #endif |
| 11727 | #ifdef POSIX_FADV_RANDOM |
| 11728 | if (ins(d, "POSIX_FADV_RANDOM", (long)POSIX_FADV_RANDOM)) return -1; |
| 11729 | #endif |
| 11730 | #ifdef POSIX_FADV_NOREUSE |
| 11731 | if (ins(d, "POSIX_FADV_NOREUSE", (long)POSIX_FADV_NOREUSE)) return -1; |
| 11732 | #endif |
| 11733 | #ifdef POSIX_FADV_WILLNEED |
| 11734 | if (ins(d, "POSIX_FADV_WILLNEED", (long)POSIX_FADV_WILLNEED)) return -1; |
| 11735 | #endif |
| 11736 | #ifdef POSIX_FADV_DONTNEED |
| 11737 | if (ins(d, "POSIX_FADV_DONTNEED", (long)POSIX_FADV_DONTNEED)) return -1; |
| 11738 | #endif |
| 11739 | |
| 11740 | /* constants for waitid */ |
| 11741 | #if defined(HAVE_SYS_WAIT_H) && defined(HAVE_WAITID) |
| 11742 | if (ins(d, "P_PID", (long)P_PID)) return -1; |
| 11743 | if (ins(d, "P_PGID", (long)P_PGID)) return -1; |
| 11744 | if (ins(d, "P_ALL", (long)P_ALL)) return -1; |
| 11745 | #endif |
| 11746 | #ifdef WEXITED |
| 11747 | if (ins(d, "WEXITED", (long)WEXITED)) return -1; |
| 11748 | #endif |
| 11749 | #ifdef WNOWAIT |
| 11750 | if (ins(d, "WNOWAIT", (long)WNOWAIT)) return -1; |
| 11751 | #endif |
| 11752 | #ifdef WSTOPPED |
| 11753 | if (ins(d, "WSTOPPED", (long)WSTOPPED)) return -1; |
| 11754 | #endif |
| 11755 | #ifdef CLD_EXITED |
| 11756 | if (ins(d, "CLD_EXITED", (long)CLD_EXITED)) return -1; |
| 11757 | #endif |
| 11758 | #ifdef CLD_DUMPED |
| 11759 | if (ins(d, "CLD_DUMPED", (long)CLD_DUMPED)) return -1; |
| 11760 | #endif |
| 11761 | #ifdef CLD_TRAPPED |
| 11762 | if (ins(d, "CLD_TRAPPED", (long)CLD_TRAPPED)) return -1; |
| 11763 | #endif |
| 11764 | #ifdef CLD_CONTINUED |
| 11765 | if (ins(d, "CLD_CONTINUED", (long)CLD_CONTINUED)) return -1; |
| 11766 | #endif |
| 11767 | |
| 11768 | /* constants for lockf */ |
| 11769 | #ifdef F_LOCK |
| 11770 | if (ins(d, "F_LOCK", (long)F_LOCK)) return -1; |
| 11771 | #endif |
| 11772 | #ifdef F_TLOCK |
| 11773 | if (ins(d, "F_TLOCK", (long)F_TLOCK)) return -1; |
| 11774 | #endif |
| 11775 | #ifdef F_ULOCK |
| 11776 | if (ins(d, "F_ULOCK", (long)F_ULOCK)) return -1; |
| 11777 | #endif |
| 11778 | #ifdef F_TEST |
| 11779 | if (ins(d, "F_TEST", (long)F_TEST)) return -1; |
| 11780 | #endif |
| 11781 | |
Guido van Rossum | 246bc17 | 1999-02-01 23:54:31 +0000 | [diff] [blame] | 11782 | #ifdef HAVE_SPAWNV |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 11783 | #if defined(PYOS_OS2) && defined(PYCC_GCC) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11784 | if (ins(d, "P_WAIT", (long)P_WAIT)) return -1; |
| 11785 | if (ins(d, "P_NOWAIT", (long)P_NOWAIT)) return -1; |
| 11786 | if (ins(d, "P_OVERLAY", (long)P_OVERLAY)) return -1; |
| 11787 | if (ins(d, "P_DEBUG", (long)P_DEBUG)) return -1; |
| 11788 | if (ins(d, "P_SESSION", (long)P_SESSION)) return -1; |
| 11789 | if (ins(d, "P_DETACH", (long)P_DETACH)) return -1; |
| 11790 | if (ins(d, "P_PM", (long)P_PM)) return -1; |
| 11791 | if (ins(d, "P_DEFAULT", (long)P_DEFAULT)) return -1; |
| 11792 | if (ins(d, "P_MINIMIZE", (long)P_MINIMIZE)) return -1; |
| 11793 | if (ins(d, "P_MAXIMIZE", (long)P_MAXIMIZE)) return -1; |
| 11794 | if (ins(d, "P_FULLSCREEN", (long)P_FULLSCREEN)) return -1; |
| 11795 | if (ins(d, "P_WINDOWED", (long)P_WINDOWED)) return -1; |
| 11796 | if (ins(d, "P_FOREGROUND", (long)P_FOREGROUND)) return -1; |
| 11797 | if (ins(d, "P_BACKGROUND", (long)P_BACKGROUND)) return -1; |
| 11798 | if (ins(d, "P_NOCLOSE", (long)P_NOCLOSE)) return -1; |
| 11799 | if (ins(d, "P_NOSESSION", (long)P_NOSESSION)) return -1; |
| 11800 | if (ins(d, "P_QUOTE", (long)P_QUOTE)) return -1; |
| 11801 | if (ins(d, "P_TILDE", (long)P_TILDE)) return -1; |
| 11802 | if (ins(d, "P_UNRELATED", (long)P_UNRELATED)) return -1; |
| 11803 | if (ins(d, "P_DEBUGDESC", (long)P_DEBUGDESC)) return -1; |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 11804 | #else |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11805 | if (ins(d, "P_WAIT", (long)_P_WAIT)) return -1; |
| 11806 | if (ins(d, "P_NOWAIT", (long)_P_NOWAIT)) return -1; |
| 11807 | if (ins(d, "P_OVERLAY", (long)_OLD_P_OVERLAY)) return -1; |
| 11808 | if (ins(d, "P_NOWAITO", (long)_P_NOWAITO)) return -1; |
| 11809 | if (ins(d, "P_DETACH", (long)_P_DETACH)) return -1; |
Guido van Rossum | 246bc17 | 1999-02-01 23:54:31 +0000 | [diff] [blame] | 11810 | #endif |
Andrew MacIntyre | 6c73af2 | 2002-03-03 03:07:07 +0000 | [diff] [blame] | 11811 | #endif |
Guido van Rossum | 246bc17 | 1999-02-01 23:54:31 +0000 | [diff] [blame] | 11812 | |
Benjamin Peterson | 94b580d | 2011-08-02 17:30:04 -0500 | [diff] [blame] | 11813 | #ifdef HAVE_SCHED_H |
Jesus Cea | f2cb4e8 | 2011-09-09 23:55:42 +0200 | [diff] [blame] | 11814 | if (ins(d, "SCHED_OTHER", (long)SCHED_OTHER)) return -1; |
Benjamin Peterson | 94b580d | 2011-08-02 17:30:04 -0500 | [diff] [blame] | 11815 | if (ins(d, "SCHED_FIFO", (long)SCHED_FIFO)) return -1; |
| 11816 | if (ins(d, "SCHED_RR", (long)SCHED_RR)) return -1; |
| 11817 | #ifdef SCHED_SPORADIC |
| 11818 | if (ins(d, "SCHED_SPORADIC", (long)SCHED_SPORADIC) return -1; |
| 11819 | #endif |
Benjamin Peterson | 94b580d | 2011-08-02 17:30:04 -0500 | [diff] [blame] | 11820 | #ifdef SCHED_BATCH |
| 11821 | if (ins(d, "SCHED_BATCH", (long)SCHED_BATCH)) return -1; |
| 11822 | #endif |
| 11823 | #ifdef SCHED_IDLE |
| 11824 | if (ins(d, "SCHED_IDLE", (long)SCHED_IDLE)) return -1; |
| 11825 | #endif |
| 11826 | #ifdef SCHED_RESET_ON_FORK |
| 11827 | if (ins(d, "SCHED_RESET_ON_FORK", (long)SCHED_RESET_ON_FORK)) return -1; |
| 11828 | #endif |
Jesus Cea | f2cb4e8 | 2011-09-09 23:55:42 +0200 | [diff] [blame] | 11829 | #ifdef SCHED_SYS |
| 11830 | if (ins(d, "SCHED_SYS", (long)SCHED_SYS)) return -1; |
| 11831 | #endif |
| 11832 | #ifdef SCHED_IA |
| 11833 | if (ins(d, "SCHED_IA", (long)SCHED_IA)) return -1; |
| 11834 | #endif |
| 11835 | #ifdef SCHED_FSS |
| 11836 | if (ins(d, "SCHED_FSS", (long)SCHED_FSS)) return -1; |
| 11837 | #endif |
| 11838 | #ifdef SCHED_FX |
| 11839 | if (ins(d, "SCHED_FX", (long)SCHED_FSS)) return -1; |
| 11840 | #endif |
Benjamin Peterson | 94b580d | 2011-08-02 17:30:04 -0500 | [diff] [blame] | 11841 | #endif |
| 11842 | |
Benjamin Peterson | 9428d53 | 2011-09-14 11:45:52 -0400 | [diff] [blame] | 11843 | #ifdef USE_XATTRS |
Benjamin Peterson | 799bd80 | 2011-08-31 22:15:17 -0400 | [diff] [blame] | 11844 | if (ins(d, "XATTR_CREATE", (long)XATTR_CREATE)) return -1; |
| 11845 | if (ins(d, "XATTR_REPLACE", (long)XATTR_REPLACE)) return -1; |
| 11846 | if (ins(d, "XATTR_SIZE_MAX", (long)XATTR_SIZE_MAX)) return -1; |
| 11847 | #endif |
| 11848 | |
Victor Stinner | 8b905bd | 2011-10-25 13:34:04 +0200 | [diff] [blame] | 11849 | #ifdef RTLD_LAZY |
| 11850 | if (PyModule_AddIntMacro(d, RTLD_LAZY)) return -1; |
| 11851 | #endif |
| 11852 | #ifdef RTLD_NOW |
| 11853 | if (PyModule_AddIntMacro(d, RTLD_NOW)) return -1; |
| 11854 | #endif |
| 11855 | #ifdef RTLD_GLOBAL |
| 11856 | if (PyModule_AddIntMacro(d, RTLD_GLOBAL)) return -1; |
| 11857 | #endif |
| 11858 | #ifdef RTLD_LOCAL |
| 11859 | if (PyModule_AddIntMacro(d, RTLD_LOCAL)) return -1; |
| 11860 | #endif |
| 11861 | #ifdef RTLD_NODELETE |
| 11862 | if (PyModule_AddIntMacro(d, RTLD_NODELETE)) return -1; |
| 11863 | #endif |
| 11864 | #ifdef RTLD_NOLOAD |
| 11865 | if (PyModule_AddIntMacro(d, RTLD_NOLOAD)) return -1; |
| 11866 | #endif |
| 11867 | #ifdef RTLD_DEEPBIND |
| 11868 | if (PyModule_AddIntMacro(d, RTLD_DEEPBIND)) return -1; |
| 11869 | #endif |
| 11870 | |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 11871 | #if defined(PYOS_OS2) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11872 | if (insertvalues(d)) return -1; |
Guido van Rossum | d48f252 | 1997-12-05 22:19:34 +0000 | [diff] [blame] | 11873 | #endif |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11874 | return 0; |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 11875 | } |
| 11876 | |
| 11877 | |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 11878 | #if (defined(_MSC_VER) || defined(__WATCOMC__) || defined(__BORLANDC__)) && !defined(__QNX__) |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 11879 | #define INITFUNC PyInit_nt |
Guido van Rossum | 0cb96de | 1997-10-01 04:29:29 +0000 | [diff] [blame] | 11880 | #define MODNAME "nt" |
Tim Peters | 58e0a8c | 2001-05-14 22:32:33 +0000 | [diff] [blame] | 11881 | |
| 11882 | #elif defined(PYOS_OS2) |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 11883 | #define INITFUNC PyInit_os2 |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 11884 | #define MODNAME "os2" |
Tim Peters | 58e0a8c | 2001-05-14 22:32:33 +0000 | [diff] [blame] | 11885 | |
Guido van Rossum | 8e9ebfd | 1997-11-22 21:53:48 +0000 | [diff] [blame] | 11886 | #else |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 11887 | #define INITFUNC PyInit_posix |
Guido van Rossum | 0cb96de | 1997-10-01 04:29:29 +0000 | [diff] [blame] | 11888 | #define MODNAME "posix" |
| 11889 | #endif |
| 11890 | |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 11891 | static struct PyModuleDef posixmodule = { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 11892 | PyModuleDef_HEAD_INIT, |
| 11893 | MODNAME, |
| 11894 | posix__doc__, |
| 11895 | -1, |
| 11896 | posix_methods, |
| 11897 | NULL, |
| 11898 | NULL, |
| 11899 | NULL, |
| 11900 | NULL |
Martin v. Löwis | 1a21451 | 2008-06-11 05:26:20 +0000 | [diff] [blame] | 11901 | }; |
| 11902 | |
| 11903 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 11904 | static char *have_functions[] = { |
| 11905 | |
| 11906 | #ifdef HAVE_FACCESSAT |
| 11907 | "HAVE_FACCESSAT", |
| 11908 | #endif |
| 11909 | |
| 11910 | #ifdef HAVE_FCHDIR |
| 11911 | "HAVE_FCHDIR", |
| 11912 | #endif |
| 11913 | |
| 11914 | #ifdef HAVE_FCHMOD |
| 11915 | "HAVE_FCHMOD", |
| 11916 | #endif |
| 11917 | |
| 11918 | #ifdef HAVE_FCHMODAT |
| 11919 | "HAVE_FCHMODAT", |
| 11920 | #endif |
| 11921 | |
| 11922 | #ifdef HAVE_FCHOWN |
| 11923 | "HAVE_FCHOWN", |
| 11924 | #endif |
| 11925 | |
| 11926 | #ifdef HAVE_FEXECVE |
| 11927 | "HAVE_FEXECVE", |
| 11928 | #endif |
| 11929 | |
| 11930 | #ifdef HAVE_FDOPENDIR |
| 11931 | "HAVE_FDOPENDIR", |
| 11932 | #endif |
| 11933 | |
Georg Brandl | 306336b | 2012-06-24 12:55:33 +0200 | [diff] [blame] | 11934 | #ifdef HAVE_FPATHCONF |
| 11935 | "HAVE_FPATHCONF", |
| 11936 | #endif |
| 11937 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 11938 | #ifdef HAVE_FSTATAT |
| 11939 | "HAVE_FSTATAT", |
| 11940 | #endif |
| 11941 | |
| 11942 | #ifdef HAVE_FSTATVFS |
| 11943 | "HAVE_FSTATVFS", |
| 11944 | #endif |
| 11945 | |
Georg Brandl | 306336b | 2012-06-24 12:55:33 +0200 | [diff] [blame] | 11946 | #ifdef HAVE_FTRUNCATE |
| 11947 | "HAVE_FTRUNCATE", |
| 11948 | #endif |
| 11949 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 11950 | #ifdef HAVE_FUTIMENS |
| 11951 | "HAVE_FUTIMENS", |
| 11952 | #endif |
| 11953 | |
| 11954 | #ifdef HAVE_FUTIMES |
| 11955 | "HAVE_FUTIMES", |
| 11956 | #endif |
| 11957 | |
| 11958 | #ifdef HAVE_FUTIMESAT |
| 11959 | "HAVE_FUTIMESAT", |
| 11960 | #endif |
| 11961 | |
| 11962 | #ifdef HAVE_LINKAT |
| 11963 | "HAVE_LINKAT", |
| 11964 | #endif |
| 11965 | |
| 11966 | #ifdef HAVE_LCHFLAGS |
| 11967 | "HAVE_LCHFLAGS", |
| 11968 | #endif |
| 11969 | |
| 11970 | #ifdef HAVE_LCHMOD |
| 11971 | "HAVE_LCHMOD", |
| 11972 | #endif |
| 11973 | |
| 11974 | #ifdef HAVE_LCHOWN |
| 11975 | "HAVE_LCHOWN", |
| 11976 | #endif |
| 11977 | |
| 11978 | #ifdef HAVE_LSTAT |
| 11979 | "HAVE_LSTAT", |
| 11980 | #endif |
| 11981 | |
| 11982 | #ifdef HAVE_LUTIMES |
| 11983 | "HAVE_LUTIMES", |
| 11984 | #endif |
| 11985 | |
| 11986 | #ifdef HAVE_MKDIRAT |
| 11987 | "HAVE_MKDIRAT", |
| 11988 | #endif |
| 11989 | |
| 11990 | #ifdef HAVE_MKFIFOAT |
| 11991 | "HAVE_MKFIFOAT", |
| 11992 | #endif |
| 11993 | |
| 11994 | #ifdef HAVE_MKNODAT |
| 11995 | "HAVE_MKNODAT", |
| 11996 | #endif |
| 11997 | |
| 11998 | #ifdef HAVE_OPENAT |
| 11999 | "HAVE_OPENAT", |
| 12000 | #endif |
| 12001 | |
| 12002 | #ifdef HAVE_READLINKAT |
| 12003 | "HAVE_READLINKAT", |
| 12004 | #endif |
| 12005 | |
| 12006 | #ifdef HAVE_RENAMEAT |
| 12007 | "HAVE_RENAMEAT", |
| 12008 | #endif |
| 12009 | |
| 12010 | #ifdef HAVE_SYMLINKAT |
| 12011 | "HAVE_SYMLINKAT", |
| 12012 | #endif |
| 12013 | |
| 12014 | #ifdef HAVE_UNLINKAT |
| 12015 | "HAVE_UNLINKAT", |
| 12016 | #endif |
| 12017 | |
| 12018 | #ifdef HAVE_UTIMENSAT |
| 12019 | "HAVE_UTIMENSAT", |
| 12020 | #endif |
| 12021 | |
| 12022 | #ifdef MS_WINDOWS |
| 12023 | "MS_WINDOWS", |
| 12024 | #endif |
| 12025 | |
| 12026 | NULL |
| 12027 | }; |
| 12028 | |
| 12029 | |
Mark Hammond | fe51c6d | 2002-08-02 02:27:13 +0000 | [diff] [blame] | 12030 | PyMODINIT_FUNC |
Thomas Wouters | f3f33dc | 2000-07-21 06:00:07 +0000 | [diff] [blame] | 12031 | INITFUNC(void) |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 12032 | { |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 12033 | PyObject *m, *v; |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 12034 | PyObject *list; |
| 12035 | char **trace; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 12036 | |
Brian Curtin | 52173d4 | 2010-12-02 18:29:18 +0000 | [diff] [blame] | 12037 | #if defined(HAVE_SYMLINK) && defined(MS_WINDOWS) |
Brian Curtin | 3b4499c | 2010-12-28 14:31:47 +0000 | [diff] [blame] | 12038 | win32_can_symlink = enable_symlink(); |
Brian Curtin | 52173d4 | 2010-12-02 18:29:18 +0000 | [diff] [blame] | 12039 | #endif |
| 12040 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 12041 | m = PyModule_Create(&posixmodule); |
| 12042 | if (m == NULL) |
| 12043 | return NULL; |
Tim Peters | 5aa9160 | 2002-01-30 05:46:57 +0000 | [diff] [blame] | 12044 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 12045 | /* Initialize environ dictionary */ |
| 12046 | v = convertenviron(); |
| 12047 | Py_XINCREF(v); |
| 12048 | if (v == NULL || PyModule_AddObject(m, "environ", v) != 0) |
| 12049 | return NULL; |
| 12050 | Py_DECREF(v); |
Fred Drake | c968092 | 1999-12-13 16:37:25 +0000 | [diff] [blame] | 12051 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 12052 | if (all_ins(m)) |
| 12053 | return NULL; |
Barry Warsaw | 4a34209 | 1996-12-19 23:50:02 +0000 | [diff] [blame] | 12054 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 12055 | if (setup_confname_tables(m)) |
| 12056 | return NULL; |
Fred Drake | bec628d | 1999-12-15 18:31:10 +0000 | [diff] [blame] | 12057 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 12058 | Py_INCREF(PyExc_OSError); |
| 12059 | PyModule_AddObject(m, "error", PyExc_OSError); |
Fred Drake | 762e206 | 1999-08-26 17:23:54 +0000 | [diff] [blame] | 12060 | |
Guido van Rossum | b3d3956 | 2000-01-31 18:41:26 +0000 | [diff] [blame] | 12061 | #ifdef HAVE_PUTENV |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 12062 | if (posix_putenv_garbage == NULL) |
| 12063 | posix_putenv_garbage = PyDict_New(); |
Guido van Rossum | b3d3956 | 2000-01-31 18:41:26 +0000 | [diff] [blame] | 12064 | #endif |
Guido van Rossum | 98bf58f | 2001-10-18 20:34:25 +0000 | [diff] [blame] | 12065 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 12066 | if (!initialized) { |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 12067 | #if defined(HAVE_WAITID) && !defined(__APPLE__) |
| 12068 | waitid_result_desc.name = MODNAME ".waitid_result"; |
| 12069 | PyStructSequence_InitType(&WaitidResultType, &waitid_result_desc); |
| 12070 | #endif |
| 12071 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 12072 | stat_result_desc.name = MODNAME ".stat_result"; |
| 12073 | stat_result_desc.fields[7].name = PyStructSequence_UnnamedField; |
| 12074 | stat_result_desc.fields[8].name = PyStructSequence_UnnamedField; |
| 12075 | stat_result_desc.fields[9].name = PyStructSequence_UnnamedField; |
| 12076 | PyStructSequence_InitType(&StatResultType, &stat_result_desc); |
| 12077 | structseq_new = StatResultType.tp_new; |
| 12078 | StatResultType.tp_new = statresult_new; |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 12079 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 12080 | statvfs_result_desc.name = MODNAME ".statvfs_result"; |
| 12081 | PyStructSequence_InitType(&StatVFSResultType, &statvfs_result_desc); |
Martin v. Löwis | 05bfe1f | 2008-12-29 18:21:47 +0000 | [diff] [blame] | 12082 | #ifdef NEED_TICKS_PER_SECOND |
| 12083 | # if defined(HAVE_SYSCONF) && defined(_SC_CLK_TCK) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 12084 | ticks_per_second = sysconf(_SC_CLK_TCK); |
Martin v. Löwis | 05bfe1f | 2008-12-29 18:21:47 +0000 | [diff] [blame] | 12085 | # elif defined(HZ) |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 12086 | ticks_per_second = HZ; |
Martin v. Löwis | 05bfe1f | 2008-12-29 18:21:47 +0000 | [diff] [blame] | 12087 | # else |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 12088 | ticks_per_second = 60; /* magic fallback value; may be bogus */ |
Martin v. Löwis | 05bfe1f | 2008-12-29 18:21:47 +0000 | [diff] [blame] | 12089 | # endif |
| 12090 | #endif |
Benjamin Peterson | 94b580d | 2011-08-02 17:30:04 -0500 | [diff] [blame] | 12091 | |
Benjamin Peterson | 0163c9a | 2011-08-02 18:11:38 -0500 | [diff] [blame] | 12092 | #if defined(HAVE_SCHED_SETPARAM) || defined(HAVE_SCHED_SETSCHEDULER) |
Benjamin Peterson | 94b580d | 2011-08-02 17:30:04 -0500 | [diff] [blame] | 12093 | sched_param_desc.name = MODNAME ".sched_param"; |
| 12094 | PyStructSequence_InitType(&SchedParamType, &sched_param_desc); |
| 12095 | SchedParamType.tp_new = sched_param_new; |
| 12096 | #endif |
Antoine Pitrou | bcf2b59 | 2012-02-08 23:28:36 +0100 | [diff] [blame] | 12097 | |
| 12098 | /* initialize TerminalSize_info */ |
| 12099 | PyStructSequence_InitType(&TerminalSizeType, &TerminalSize_desc); |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 12100 | } |
Ross Lagerwall | 7807c35 | 2011-03-17 20:20:30 +0200 | [diff] [blame] | 12101 | #if defined(HAVE_WAITID) && !defined(__APPLE__) |
| 12102 | Py_INCREF((PyObject*) &WaitidResultType); |
| 12103 | PyModule_AddObject(m, "waitid_result", (PyObject*) &WaitidResultType); |
| 12104 | #endif |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 12105 | Py_INCREF((PyObject*) &StatResultType); |
| 12106 | PyModule_AddObject(m, "stat_result", (PyObject*) &StatResultType); |
| 12107 | Py_INCREF((PyObject*) &StatVFSResultType); |
| 12108 | PyModule_AddObject(m, "statvfs_result", |
| 12109 | (PyObject*) &StatVFSResultType); |
Benjamin Peterson | e3298dd | 2011-08-02 18:40:46 -0500 | [diff] [blame] | 12110 | |
| 12111 | #if defined(HAVE_SCHED_SETPARAM) || defined(HAVE_SCHED_SETSCHEDULER) |
Benjamin Peterson | 94b580d | 2011-08-02 17:30:04 -0500 | [diff] [blame] | 12112 | Py_INCREF(&SchedParamType); |
| 12113 | PyModule_AddObject(m, "sched_param", (PyObject *)&SchedParamType); |
Benjamin Peterson | e3298dd | 2011-08-02 18:40:46 -0500 | [diff] [blame] | 12114 | #endif |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12115 | |
Larry Hastings | 605a62d | 2012-06-24 04:33:36 -0700 | [diff] [blame] | 12116 | times_result_desc.name = MODNAME ".times_result"; |
| 12117 | PyStructSequence_InitType(&TimesResultType, ×_result_desc); |
| 12118 | PyModule_AddObject(m, "times_result", (PyObject *)&TimesResultType); |
| 12119 | |
| 12120 | uname_result_desc.name = MODNAME ".uname_result"; |
| 12121 | PyStructSequence_InitType(&UnameResultType, &uname_result_desc); |
| 12122 | PyModule_AddObject(m, "uname_result", (PyObject *)&UnameResultType); |
| 12123 | |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12124 | #ifdef __APPLE__ |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 12125 | /* |
| 12126 | * Step 2 of weak-linking support on Mac OS X. |
| 12127 | * |
| 12128 | * The code below removes functions that are not available on the |
| 12129 | * currently active platform. |
| 12130 | * |
| 12131 | * This block allow one to use a python binary that was build on |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 12132 | * OSX 10.4 on OSX 10.3, without losing access to new APIs on |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 12133 | * OSX 10.4. |
| 12134 | */ |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12135 | #ifdef HAVE_FSTATVFS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 12136 | if (fstatvfs == NULL) { |
| 12137 | if (PyObject_DelAttrString(m, "fstatvfs") == -1) { |
| 12138 | return NULL; |
| 12139 | } |
| 12140 | } |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12141 | #endif /* HAVE_FSTATVFS */ |
| 12142 | |
| 12143 | #ifdef HAVE_STATVFS |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 12144 | if (statvfs == NULL) { |
| 12145 | if (PyObject_DelAttrString(m, "statvfs") == -1) { |
| 12146 | return NULL; |
| 12147 | } |
| 12148 | } |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12149 | #endif /* HAVE_STATVFS */ |
| 12150 | |
| 12151 | # ifdef HAVE_LCHOWN |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 12152 | if (lchown == NULL) { |
| 12153 | if (PyObject_DelAttrString(m, "lchown") == -1) { |
| 12154 | return NULL; |
| 12155 | } |
| 12156 | } |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12157 | #endif /* HAVE_LCHOWN */ |
| 12158 | |
| 12159 | |
| 12160 | #endif /* __APPLE__ */ |
Antoine Pitrou | bcf2b59 | 2012-02-08 23:28:36 +0100 | [diff] [blame] | 12161 | |
Antoine Pitrou | 9d20e0e | 2012-09-12 18:01:36 +0200 | [diff] [blame] | 12162 | Py_INCREF(&TerminalSizeType); |
Antoine Pitrou | bcf2b59 | 2012-02-08 23:28:36 +0100 | [diff] [blame] | 12163 | PyModule_AddObject(m, "terminal_size", (PyObject*) &TerminalSizeType); |
| 12164 | |
Larry Hastings | 6fe20b3 | 2012-04-19 15:07:49 -0700 | [diff] [blame] | 12165 | billion = PyLong_FromLong(1000000000); |
| 12166 | if (!billion) |
| 12167 | return NULL; |
| 12168 | |
Larry Hastings | 9cf065c | 2012-06-22 16:30:09 -0700 | [diff] [blame] | 12169 | /* suppress "function not used" warnings */ |
| 12170 | { |
| 12171 | int ignored; |
| 12172 | fd_specified("", -1); |
| 12173 | follow_symlinks_specified("", 1); |
| 12174 | dir_fd_and_follow_symlinks_invalid("chmod", DEFAULT_DIR_FD, 1); |
| 12175 | dir_fd_converter(Py_None, &ignored); |
| 12176 | dir_fd_unavailable(Py_None, &ignored); |
| 12177 | } |
| 12178 | |
| 12179 | /* |
| 12180 | * provide list of locally available functions |
| 12181 | * so os.py can populate support_* lists |
| 12182 | */ |
| 12183 | list = PyList_New(0); |
| 12184 | if (!list) |
| 12185 | return NULL; |
| 12186 | for (trace = have_functions; *trace; trace++) { |
| 12187 | PyObject *unicode = PyUnicode_DecodeASCII(*trace, strlen(*trace), NULL); |
| 12188 | if (!unicode) |
| 12189 | return NULL; |
| 12190 | if (PyList_Append(list, unicode)) |
| 12191 | return NULL; |
| 12192 | Py_DECREF(unicode); |
| 12193 | } |
| 12194 | PyModule_AddObject(m, "_have_functions", list); |
| 12195 | |
| 12196 | initialized = 1; |
| 12197 | |
Victor Stinner | 8c62be8 | 2010-05-06 00:08:46 +0000 | [diff] [blame] | 12198 | return m; |
Thomas Wouters | 477c8d5 | 2006-05-27 19:21:47 +0000 | [diff] [blame] | 12199 | |
Guido van Rossum | b6775db | 1994-08-01 11:34:53 +0000 | [diff] [blame] | 12200 | } |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 12201 | |
| 12202 | #ifdef __cplusplus |
| 12203 | } |
| 12204 | #endif |