Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1 | #include "Python.h" |
Stefan Krah | 6df5cae | 2012-11-12 20:14:36 +0100 | [diff] [blame] | 2 | #include "osdefs.h" |
Stefan Krah | 6c01e38 | 2014-01-20 15:31:08 +0100 | [diff] [blame] | 3 | #include <locale.h> |
| 4 | |
Victor Stinner | b306d75 | 2010-10-07 22:09:40 +0000 | [diff] [blame] | 5 | #ifdef MS_WINDOWS |
Steve Dower | d81431f | 2015-03-06 14:47:02 -0800 | [diff] [blame] | 6 | # include <malloc.h> |
Victor Stinner | b306d75 | 2010-10-07 22:09:40 +0000 | [diff] [blame] | 7 | # include <windows.h> |
Steve Dower | 8fc8980 | 2015-04-12 00:26:27 -0400 | [diff] [blame] | 8 | extern int winerror_to_errno(int); |
Victor Stinner | b306d75 | 2010-10-07 22:09:40 +0000 | [diff] [blame] | 9 | #endif |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 10 | |
Brett Cannon | efb00c0 | 2012-02-29 18:31:31 -0500 | [diff] [blame] | 11 | #ifdef HAVE_LANGINFO_H |
| 12 | #include <langinfo.h> |
| 13 | #endif |
| 14 | |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 15 | #ifdef HAVE_SYS_IOCTL_H |
| 16 | #include <sys/ioctl.h> |
| 17 | #endif |
| 18 | |
| 19 | #ifdef HAVE_FCNTL_H |
| 20 | #include <fcntl.h> |
| 21 | #endif /* HAVE_FCNTL_H */ |
| 22 | |
Victor Stinner | e262377 | 2012-11-12 23:04:02 +0100 | [diff] [blame] | 23 | #ifdef __APPLE__ |
| 24 | extern wchar_t* _Py_DecodeUTF8_surrogateescape(const char *s, Py_ssize_t size); |
| 25 | #endif |
| 26 | |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 27 | #ifdef O_CLOEXEC |
Victor Stinner | b034eee | 2013-09-07 10:36:04 +0200 | [diff] [blame] | 28 | /* Does open() support the O_CLOEXEC flag? Possible values: |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 29 | |
| 30 | -1: unknown |
| 31 | 0: open() ignores O_CLOEXEC flag, ex: Linux kernel older than 2.6.23 |
| 32 | 1: open() supports O_CLOEXEC flag, close-on-exec is set |
| 33 | |
Victor Stinner | a555cfc | 2015-03-18 00:22:14 +0100 | [diff] [blame] | 34 | The flag is used by _Py_open(), _Py_open_noraise(), io.FileIO |
| 35 | and os.open(). */ |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 36 | int _Py_open_cloexec_works = -1; |
| 37 | #endif |
| 38 | |
Brett Cannon | efb00c0 | 2012-02-29 18:31:31 -0500 | [diff] [blame] | 39 | PyObject * |
| 40 | _Py_device_encoding(int fd) |
| 41 | { |
Victor Stinner | 14b9b11 | 2013-06-25 00:37:25 +0200 | [diff] [blame] | 42 | #if defined(MS_WINDOWS) |
Brett Cannon | efb00c0 | 2012-02-29 18:31:31 -0500 | [diff] [blame] | 43 | UINT cp; |
| 44 | #endif |
Steve Dower | 8fc8980 | 2015-04-12 00:26:27 -0400 | [diff] [blame] | 45 | int valid; |
| 46 | _Py_BEGIN_SUPPRESS_IPH |
| 47 | valid = _PyVerify_fd(fd) && isatty(fd); |
| 48 | _Py_END_SUPPRESS_IPH |
| 49 | if (!valid) |
Brett Cannon | efb00c0 | 2012-02-29 18:31:31 -0500 | [diff] [blame] | 50 | Py_RETURN_NONE; |
Steve Dower | 8fc8980 | 2015-04-12 00:26:27 -0400 | [diff] [blame] | 51 | |
Victor Stinner | 14b9b11 | 2013-06-25 00:37:25 +0200 | [diff] [blame] | 52 | #if defined(MS_WINDOWS) |
Brett Cannon | efb00c0 | 2012-02-29 18:31:31 -0500 | [diff] [blame] | 53 | if (fd == 0) |
| 54 | cp = GetConsoleCP(); |
| 55 | else if (fd == 1 || fd == 2) |
| 56 | cp = GetConsoleOutputCP(); |
| 57 | else |
| 58 | cp = 0; |
| 59 | /* GetConsoleCP() and GetConsoleOutputCP() return 0 if the application |
| 60 | has no console */ |
| 61 | if (cp != 0) |
| 62 | return PyUnicode_FromFormat("cp%u", (unsigned int)cp); |
| 63 | #elif defined(CODESET) |
| 64 | { |
| 65 | char *codeset = nl_langinfo(CODESET); |
| 66 | if (codeset != NULL && codeset[0] != 0) |
| 67 | return PyUnicode_FromString(codeset); |
| 68 | } |
| 69 | #endif |
| 70 | Py_RETURN_NONE; |
| 71 | } |
| 72 | |
Victor Stinner | d45c7f8 | 2012-12-04 01:34:47 +0100 | [diff] [blame] | 73 | #if !defined(__APPLE__) && !defined(MS_WINDOWS) |
| 74 | extern int _Py_normalize_encoding(const char *, char *, size_t); |
| 75 | |
| 76 | /* Workaround FreeBSD and OpenIndiana locale encoding issue with the C locale. |
| 77 | On these operating systems, nl_langinfo(CODESET) announces an alias of the |
| 78 | ASCII encoding, whereas mbstowcs() and wcstombs() functions use the |
| 79 | ISO-8859-1 encoding. The problem is that os.fsencode() and os.fsdecode() use |
| 80 | locale.getpreferredencoding() codec. For example, if command line arguments |
| 81 | are decoded by mbstowcs() and encoded back by os.fsencode(), we get a |
| 82 | UnicodeEncodeError instead of retrieving the original byte string. |
| 83 | |
| 84 | The workaround is enabled if setlocale(LC_CTYPE, NULL) returns "C", |
| 85 | nl_langinfo(CODESET) announces "ascii" (or an alias to ASCII), and at least |
| 86 | one byte in range 0x80-0xff can be decoded from the locale encoding. The |
| 87 | workaround is also enabled on error, for example if getting the locale |
| 88 | failed. |
| 89 | |
Philip Jenvey | 215c49a | 2013-01-15 13:24:12 -0800 | [diff] [blame] | 90 | Values of force_ascii: |
Victor Stinner | d45c7f8 | 2012-12-04 01:34:47 +0100 | [diff] [blame] | 91 | |
Victor Stinner | f6a271a | 2014-08-01 12:28:48 +0200 | [diff] [blame] | 92 | 1: the workaround is used: Py_EncodeLocale() uses |
| 93 | encode_ascii_surrogateescape() and Py_DecodeLocale() uses |
Victor Stinner | d45c7f8 | 2012-12-04 01:34:47 +0100 | [diff] [blame] | 94 | decode_ascii_surrogateescape() |
Victor Stinner | f6a271a | 2014-08-01 12:28:48 +0200 | [diff] [blame] | 95 | 0: the workaround is not used: Py_EncodeLocale() uses wcstombs() and |
| 96 | Py_DecodeLocale() uses mbstowcs() |
Victor Stinner | d45c7f8 | 2012-12-04 01:34:47 +0100 | [diff] [blame] | 97 | -1: unknown, need to call check_force_ascii() to get the value |
| 98 | */ |
| 99 | static int force_ascii = -1; |
| 100 | |
| 101 | static int |
| 102 | check_force_ascii(void) |
| 103 | { |
| 104 | char *loc; |
| 105 | #if defined(HAVE_LANGINFO_H) && defined(CODESET) |
| 106 | char *codeset, **alias; |
| 107 | char encoding[100]; |
| 108 | int is_ascii; |
| 109 | unsigned int i; |
| 110 | char* ascii_aliases[] = { |
| 111 | "ascii", |
| 112 | "646", |
| 113 | "ansi-x3.4-1968", |
| 114 | "ansi-x3-4-1968", |
| 115 | "ansi-x3.4-1986", |
| 116 | "cp367", |
| 117 | "csascii", |
| 118 | "ibm367", |
| 119 | "iso646-us", |
| 120 | "iso-646.irv-1991", |
| 121 | "iso-ir-6", |
| 122 | "us", |
| 123 | "us-ascii", |
| 124 | NULL |
| 125 | }; |
| 126 | #endif |
| 127 | |
| 128 | loc = setlocale(LC_CTYPE, NULL); |
| 129 | if (loc == NULL) |
| 130 | goto error; |
| 131 | if (strcmp(loc, "C") != 0) { |
| 132 | /* the LC_CTYPE locale is different than C */ |
| 133 | return 0; |
| 134 | } |
| 135 | |
| 136 | #if defined(HAVE_LANGINFO_H) && defined(CODESET) |
| 137 | codeset = nl_langinfo(CODESET); |
| 138 | if (!codeset || codeset[0] == '\0') { |
| 139 | /* CODESET is not set or empty */ |
| 140 | goto error; |
| 141 | } |
| 142 | if (!_Py_normalize_encoding(codeset, encoding, sizeof(encoding))) |
| 143 | goto error; |
| 144 | |
| 145 | is_ascii = 0; |
| 146 | for (alias=ascii_aliases; *alias != NULL; alias++) { |
| 147 | if (strcmp(encoding, *alias) == 0) { |
| 148 | is_ascii = 1; |
| 149 | break; |
| 150 | } |
| 151 | } |
| 152 | if (!is_ascii) { |
| 153 | /* nl_langinfo(CODESET) is not "ascii" or an alias of ASCII */ |
| 154 | return 0; |
| 155 | } |
| 156 | |
| 157 | for (i=0x80; i<0xff; i++) { |
| 158 | unsigned char ch; |
| 159 | wchar_t wch; |
| 160 | size_t res; |
| 161 | |
| 162 | ch = (unsigned char)i; |
| 163 | res = mbstowcs(&wch, (char*)&ch, 1); |
| 164 | if (res != (size_t)-1) { |
| 165 | /* decoding a non-ASCII character from the locale encoding succeed: |
| 166 | the locale encoding is not ASCII, force ASCII */ |
| 167 | return 1; |
| 168 | } |
| 169 | } |
| 170 | /* None of the bytes in the range 0x80-0xff can be decoded from the locale |
| 171 | encoding: the locale encoding is really ASCII */ |
| 172 | return 0; |
| 173 | #else |
| 174 | /* nl_langinfo(CODESET) is not available: always force ASCII */ |
| 175 | return 1; |
| 176 | #endif |
| 177 | |
| 178 | error: |
| 179 | /* if an error occured, force the ASCII encoding */ |
| 180 | return 1; |
| 181 | } |
| 182 | |
| 183 | static char* |
| 184 | encode_ascii_surrogateescape(const wchar_t *text, size_t *error_pos) |
| 185 | { |
| 186 | char *result = NULL, *out; |
| 187 | size_t len, i; |
| 188 | wchar_t ch; |
| 189 | |
| 190 | if (error_pos != NULL) |
| 191 | *error_pos = (size_t)-1; |
| 192 | |
| 193 | len = wcslen(text); |
| 194 | |
| 195 | result = PyMem_Malloc(len + 1); /* +1 for NUL byte */ |
| 196 | if (result == NULL) |
| 197 | return NULL; |
| 198 | |
| 199 | out = result; |
| 200 | for (i=0; i<len; i++) { |
| 201 | ch = text[i]; |
| 202 | |
| 203 | if (ch <= 0x7f) { |
| 204 | /* ASCII character */ |
| 205 | *out++ = (char)ch; |
| 206 | } |
| 207 | else if (0xdc80 <= ch && ch <= 0xdcff) { |
| 208 | /* UTF-8b surrogate */ |
| 209 | *out++ = (char)(ch - 0xdc00); |
| 210 | } |
| 211 | else { |
| 212 | if (error_pos != NULL) |
| 213 | *error_pos = i; |
| 214 | PyMem_Free(result); |
| 215 | return NULL; |
| 216 | } |
| 217 | } |
| 218 | *out = '\0'; |
| 219 | return result; |
| 220 | } |
| 221 | #endif /* !defined(__APPLE__) && !defined(MS_WINDOWS) */ |
| 222 | |
| 223 | #if !defined(__APPLE__) && (!defined(MS_WINDOWS) || !defined(HAVE_MBRTOWC)) |
| 224 | static wchar_t* |
| 225 | decode_ascii_surrogateescape(const char *arg, size_t *size) |
| 226 | { |
| 227 | wchar_t *res; |
| 228 | unsigned char *in; |
| 229 | wchar_t *out; |
Benjamin Peterson | f18bf6f | 2015-01-04 16:03:17 -0600 | [diff] [blame] | 230 | size_t argsize = strlen(arg) + 1; |
Victor Stinner | d45c7f8 | 2012-12-04 01:34:47 +0100 | [diff] [blame] | 231 | |
Benjamin Peterson | f18bf6f | 2015-01-04 16:03:17 -0600 | [diff] [blame] | 232 | if (argsize > PY_SSIZE_T_MAX/sizeof(wchar_t)) |
| 233 | return NULL; |
Benjamin Peterson | 10ecaa2 | 2015-01-04 16:05:39 -0600 | [diff] [blame] | 234 | res = PyMem_RawMalloc(argsize*sizeof(wchar_t)); |
Victor Stinner | d45c7f8 | 2012-12-04 01:34:47 +0100 | [diff] [blame] | 235 | if (!res) |
| 236 | return NULL; |
| 237 | |
| 238 | in = (unsigned char*)arg; |
| 239 | out = res; |
| 240 | while(*in) |
| 241 | if(*in < 128) |
| 242 | *out++ = *in++; |
| 243 | else |
| 244 | *out++ = 0xdc00 + *in++; |
| 245 | *out = 0; |
| 246 | if (size != NULL) |
| 247 | *size = out - res; |
| 248 | return res; |
| 249 | } |
| 250 | #endif |
| 251 | |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 252 | |
| 253 | /* Decode a byte string from the locale encoding with the |
Victor Stinner | f6a271a | 2014-08-01 12:28:48 +0200 | [diff] [blame] | 254 | surrogateescape error handler: undecodable bytes are decoded as characters |
| 255 | in range U+DC80..U+DCFF. If a byte sequence can be decoded as a surrogate |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 256 | character, escape the bytes using the surrogateescape error handler instead |
| 257 | of decoding them. |
| 258 | |
Victor Stinner | f6a271a | 2014-08-01 12:28:48 +0200 | [diff] [blame] | 259 | Return a pointer to a newly allocated wide character string, use |
| 260 | PyMem_RawFree() to free the memory. If size is not NULL, write the number of |
| 261 | wide characters excluding the null character into *size |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 262 | |
Victor Stinner | f6a271a | 2014-08-01 12:28:48 +0200 | [diff] [blame] | 263 | Return NULL on decoding error or memory allocation error. If *size* is not |
| 264 | NULL, *size is set to (size_t)-1 on memory error or set to (size_t)-2 on |
| 265 | decoding error. |
Victor Stinner | 19de4c3 | 2010-11-08 23:30:46 +0000 | [diff] [blame] | 266 | |
Victor Stinner | f6a271a | 2014-08-01 12:28:48 +0200 | [diff] [blame] | 267 | Decoding errors should never happen, unless there is a bug in the C |
| 268 | library. |
| 269 | |
| 270 | Use the Py_EncodeLocale() function to encode the character string back to a |
| 271 | byte string. */ |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 272 | wchar_t* |
Victor Stinner | f6a271a | 2014-08-01 12:28:48 +0200 | [diff] [blame] | 273 | Py_DecodeLocale(const char* arg, size_t *size) |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 274 | { |
Victor Stinner | e262377 | 2012-11-12 23:04:02 +0100 | [diff] [blame] | 275 | #ifdef __APPLE__ |
| 276 | wchar_t *wstr; |
| 277 | wstr = _Py_DecodeUTF8_surrogateescape(arg, strlen(arg)); |
Victor Stinner | 0d92c4f | 2012-11-12 23:32:21 +0100 | [diff] [blame] | 278 | if (size != NULL) { |
| 279 | if (wstr != NULL) |
| 280 | *size = wcslen(wstr); |
| 281 | else |
| 282 | *size = (size_t)-1; |
| 283 | } |
Victor Stinner | e262377 | 2012-11-12 23:04:02 +0100 | [diff] [blame] | 284 | return wstr; |
| 285 | #else |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 286 | wchar_t *res; |
Victor Stinner | d45c7f8 | 2012-12-04 01:34:47 +0100 | [diff] [blame] | 287 | size_t argsize; |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 288 | size_t count; |
Victor Stinner | 313f10c | 2013-05-07 23:48:56 +0200 | [diff] [blame] | 289 | #ifdef HAVE_MBRTOWC |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 290 | unsigned char *in; |
| 291 | wchar_t *out; |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 292 | mbstate_t mbs; |
| 293 | #endif |
Victor Stinner | d45c7f8 | 2012-12-04 01:34:47 +0100 | [diff] [blame] | 294 | |
| 295 | #ifndef MS_WINDOWS |
| 296 | if (force_ascii == -1) |
| 297 | force_ascii = check_force_ascii(); |
| 298 | |
| 299 | if (force_ascii) { |
| 300 | /* force ASCII encoding to workaround mbstowcs() issue */ |
| 301 | res = decode_ascii_surrogateescape(arg, size); |
| 302 | if (res == NULL) |
| 303 | goto oom; |
| 304 | return res; |
| 305 | } |
| 306 | #endif |
| 307 | |
| 308 | #ifdef HAVE_BROKEN_MBSTOWCS |
| 309 | /* Some platforms have a broken implementation of |
| 310 | * mbstowcs which does not count the characters that |
| 311 | * would result from conversion. Use an upper bound. |
| 312 | */ |
| 313 | argsize = strlen(arg); |
| 314 | #else |
| 315 | argsize = mbstowcs(NULL, arg, 0); |
| 316 | #endif |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 317 | if (argsize != (size_t)-1) { |
Benjamin Peterson | f18bf6f | 2015-01-04 16:03:17 -0600 | [diff] [blame] | 318 | if (argsize == PY_SSIZE_T_MAX) |
| 319 | goto oom; |
| 320 | argsize += 1; |
| 321 | if (argsize > PY_SSIZE_T_MAX/sizeof(wchar_t)) |
| 322 | goto oom; |
Benjamin Peterson | 10ecaa2 | 2015-01-04 16:05:39 -0600 | [diff] [blame] | 323 | res = (wchar_t *)PyMem_RawMalloc(argsize*sizeof(wchar_t)); |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 324 | if (!res) |
| 325 | goto oom; |
Benjamin Peterson | f18bf6f | 2015-01-04 16:03:17 -0600 | [diff] [blame] | 326 | count = mbstowcs(res, arg, argsize); |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 327 | if (count != (size_t)-1) { |
| 328 | wchar_t *tmp; |
| 329 | /* Only use the result if it contains no |
| 330 | surrogate characters. */ |
| 331 | for (tmp = res; *tmp != 0 && |
Victor Stinner | 76df43d | 2012-10-30 01:42:39 +0100 | [diff] [blame] | 332 | !Py_UNICODE_IS_SURROGATE(*tmp); tmp++) |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 333 | ; |
Victor Stinner | 168e117 | 2010-10-16 23:16:16 +0000 | [diff] [blame] | 334 | if (*tmp == 0) { |
| 335 | if (size != NULL) |
| 336 | *size = count; |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 337 | return res; |
Victor Stinner | 168e117 | 2010-10-16 23:16:16 +0000 | [diff] [blame] | 338 | } |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 339 | } |
Victor Stinner | 1a7425f | 2013-07-07 16:25:15 +0200 | [diff] [blame] | 340 | PyMem_RawFree(res); |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 341 | } |
| 342 | /* Conversion failed. Fall back to escaping with surrogateescape. */ |
| 343 | #ifdef HAVE_MBRTOWC |
| 344 | /* Try conversion with mbrtwoc (C99), and escape non-decodable bytes. */ |
| 345 | |
| 346 | /* Overallocate; as multi-byte characters are in the argument, the |
| 347 | actual output could use less memory. */ |
| 348 | argsize = strlen(arg) + 1; |
Benjamin Peterson | f18bf6f | 2015-01-04 16:03:17 -0600 | [diff] [blame] | 349 | if (argsize > PY_SSIZE_T_MAX/sizeof(wchar_t)) |
| 350 | goto oom; |
Victor Stinner | 1a7425f | 2013-07-07 16:25:15 +0200 | [diff] [blame] | 351 | res = (wchar_t*)PyMem_RawMalloc(argsize*sizeof(wchar_t)); |
Victor Stinner | 19de4c3 | 2010-11-08 23:30:46 +0000 | [diff] [blame] | 352 | if (!res) |
| 353 | goto oom; |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 354 | in = (unsigned char*)arg; |
| 355 | out = res; |
| 356 | memset(&mbs, 0, sizeof mbs); |
| 357 | while (argsize) { |
| 358 | size_t converted = mbrtowc(out, (char*)in, argsize, &mbs); |
| 359 | if (converted == 0) |
| 360 | /* Reached end of string; null char stored. */ |
| 361 | break; |
| 362 | if (converted == (size_t)-2) { |
| 363 | /* Incomplete character. This should never happen, |
| 364 | since we provide everything that we have - |
| 365 | unless there is a bug in the C library, or I |
| 366 | misunderstood how mbrtowc works. */ |
Victor Stinner | 1a7425f | 2013-07-07 16:25:15 +0200 | [diff] [blame] | 367 | PyMem_RawFree(res); |
Victor Stinner | af02e1c | 2011-12-16 23:56:01 +0100 | [diff] [blame] | 368 | if (size != NULL) |
| 369 | *size = (size_t)-2; |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 370 | return NULL; |
| 371 | } |
| 372 | if (converted == (size_t)-1) { |
| 373 | /* Conversion error. Escape as UTF-8b, and start over |
| 374 | in the initial shift state. */ |
| 375 | *out++ = 0xdc00 + *in++; |
| 376 | argsize--; |
| 377 | memset(&mbs, 0, sizeof mbs); |
| 378 | continue; |
| 379 | } |
Victor Stinner | 76df43d | 2012-10-30 01:42:39 +0100 | [diff] [blame] | 380 | if (Py_UNICODE_IS_SURROGATE(*out)) { |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 381 | /* Surrogate character. Escape the original |
| 382 | byte sequence with surrogateescape. */ |
| 383 | argsize -= converted; |
| 384 | while (converted--) |
| 385 | *out++ = 0xdc00 + *in++; |
| 386 | continue; |
| 387 | } |
| 388 | /* successfully converted some bytes */ |
| 389 | in += converted; |
| 390 | argsize -= converted; |
| 391 | out++; |
| 392 | } |
Victor Stinner | d45c7f8 | 2012-12-04 01:34:47 +0100 | [diff] [blame] | 393 | if (size != NULL) |
| 394 | *size = out - res; |
Victor Stinner | e262377 | 2012-11-12 23:04:02 +0100 | [diff] [blame] | 395 | #else /* HAVE_MBRTOWC */ |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 396 | /* Cannot use C locale for escaping; manually escape as if charset |
| 397 | is ASCII (i.e. escape all bytes > 128. This will still roundtrip |
| 398 | correctly in the locale's charset, which must be an ASCII superset. */ |
Victor Stinner | d45c7f8 | 2012-12-04 01:34:47 +0100 | [diff] [blame] | 399 | res = decode_ascii_surrogateescape(arg, size); |
| 400 | if (res == NULL) |
Victor Stinner | af02e1c | 2011-12-16 23:56:01 +0100 | [diff] [blame] | 401 | goto oom; |
Victor Stinner | e262377 | 2012-11-12 23:04:02 +0100 | [diff] [blame] | 402 | #endif /* HAVE_MBRTOWC */ |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 403 | return res; |
| 404 | oom: |
Victor Stinner | af02e1c | 2011-12-16 23:56:01 +0100 | [diff] [blame] | 405 | if (size != NULL) |
| 406 | *size = (size_t)-1; |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 407 | return NULL; |
Victor Stinner | e262377 | 2012-11-12 23:04:02 +0100 | [diff] [blame] | 408 | #endif /* __APPLE__ */ |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 409 | } |
| 410 | |
Victor Stinner | f6a271a | 2014-08-01 12:28:48 +0200 | [diff] [blame] | 411 | /* Encode a wide character string to the locale encoding with the |
| 412 | surrogateescape error handler: surrogate characters in the range |
| 413 | U+DC80..U+DCFF are converted to bytes 0x80..0xFF. |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 414 | |
Victor Stinner | f6a271a | 2014-08-01 12:28:48 +0200 | [diff] [blame] | 415 | Return a pointer to a newly allocated byte string, use PyMem_Free() to free |
| 416 | the memory. Return NULL on encoding or memory allocation error. |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 417 | |
Victor Stinner | f6a271a | 2014-08-01 12:28:48 +0200 | [diff] [blame] | 418 | If error_pos is not NULL, *error_pos is set to the index of the invalid |
| 419 | character on encoding error, or set to (size_t)-1 otherwise. |
Victor Stinner | 2f02a51 | 2010-11-08 22:43:46 +0000 | [diff] [blame] | 420 | |
Victor Stinner | f6a271a | 2014-08-01 12:28:48 +0200 | [diff] [blame] | 421 | Use the Py_DecodeLocale() function to decode the bytes string back to a wide |
| 422 | character string. */ |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 423 | char* |
Victor Stinner | f6a271a | 2014-08-01 12:28:48 +0200 | [diff] [blame] | 424 | Py_EncodeLocale(const wchar_t *text, size_t *error_pos) |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 425 | { |
Victor Stinner | e262377 | 2012-11-12 23:04:02 +0100 | [diff] [blame] | 426 | #ifdef __APPLE__ |
| 427 | Py_ssize_t len; |
| 428 | PyObject *unicode, *bytes = NULL; |
| 429 | char *cpath; |
| 430 | |
| 431 | unicode = PyUnicode_FromWideChar(text, wcslen(text)); |
Victor Stinner | 0d92c4f | 2012-11-12 23:32:21 +0100 | [diff] [blame] | 432 | if (unicode == NULL) |
Victor Stinner | e262377 | 2012-11-12 23:04:02 +0100 | [diff] [blame] | 433 | return NULL; |
Victor Stinner | e262377 | 2012-11-12 23:04:02 +0100 | [diff] [blame] | 434 | |
| 435 | bytes = _PyUnicode_AsUTF8String(unicode, "surrogateescape"); |
| 436 | Py_DECREF(unicode); |
| 437 | if (bytes == NULL) { |
| 438 | PyErr_Clear(); |
Victor Stinner | 0d92c4f | 2012-11-12 23:32:21 +0100 | [diff] [blame] | 439 | if (error_pos != NULL) |
| 440 | *error_pos = (size_t)-1; |
Victor Stinner | e262377 | 2012-11-12 23:04:02 +0100 | [diff] [blame] | 441 | return NULL; |
| 442 | } |
| 443 | |
| 444 | len = PyBytes_GET_SIZE(bytes); |
| 445 | cpath = PyMem_Malloc(len+1); |
| 446 | if (cpath == NULL) { |
Victor Stinner | 0d92c4f | 2012-11-12 23:32:21 +0100 | [diff] [blame] | 447 | PyErr_Clear(); |
Victor Stinner | e262377 | 2012-11-12 23:04:02 +0100 | [diff] [blame] | 448 | Py_DECREF(bytes); |
Victor Stinner | 0d92c4f | 2012-11-12 23:32:21 +0100 | [diff] [blame] | 449 | if (error_pos != NULL) |
| 450 | *error_pos = (size_t)-1; |
Victor Stinner | e262377 | 2012-11-12 23:04:02 +0100 | [diff] [blame] | 451 | return NULL; |
| 452 | } |
| 453 | memcpy(cpath, PyBytes_AsString(bytes), len + 1); |
| 454 | Py_DECREF(bytes); |
| 455 | return cpath; |
| 456 | #else /* __APPLE__ */ |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 457 | const size_t len = wcslen(text); |
| 458 | char *result = NULL, *bytes = NULL; |
| 459 | size_t i, size, converted; |
| 460 | wchar_t c, buf[2]; |
| 461 | |
Victor Stinner | d45c7f8 | 2012-12-04 01:34:47 +0100 | [diff] [blame] | 462 | #ifndef MS_WINDOWS |
| 463 | if (force_ascii == -1) |
| 464 | force_ascii = check_force_ascii(); |
| 465 | |
| 466 | if (force_ascii) |
| 467 | return encode_ascii_surrogateescape(text, error_pos); |
| 468 | #endif |
| 469 | |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 470 | /* The function works in two steps: |
| 471 | 1. compute the length of the output buffer in bytes (size) |
| 472 | 2. outputs the bytes */ |
| 473 | size = 0; |
| 474 | buf[1] = 0; |
| 475 | while (1) { |
| 476 | for (i=0; i < len; i++) { |
| 477 | c = text[i]; |
| 478 | if (c >= 0xdc80 && c <= 0xdcff) { |
| 479 | /* UTF-8b surrogate */ |
| 480 | if (bytes != NULL) { |
| 481 | *bytes++ = c - 0xdc00; |
| 482 | size--; |
| 483 | } |
| 484 | else |
| 485 | size++; |
| 486 | continue; |
| 487 | } |
| 488 | else { |
| 489 | buf[0] = c; |
| 490 | if (bytes != NULL) |
| 491 | converted = wcstombs(bytes, buf, size); |
| 492 | else |
| 493 | converted = wcstombs(NULL, buf, 0); |
| 494 | if (converted == (size_t)-1) { |
| 495 | if (result != NULL) |
| 496 | PyMem_Free(result); |
Victor Stinner | 2f02a51 | 2010-11-08 22:43:46 +0000 | [diff] [blame] | 497 | if (error_pos != NULL) |
| 498 | *error_pos = i; |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 499 | return NULL; |
| 500 | } |
| 501 | if (bytes != NULL) { |
| 502 | bytes += converted; |
| 503 | size -= converted; |
| 504 | } |
| 505 | else |
| 506 | size += converted; |
| 507 | } |
| 508 | } |
| 509 | if (result != NULL) { |
Victor Stinner | d45c7f8 | 2012-12-04 01:34:47 +0100 | [diff] [blame] | 510 | *bytes = '\0'; |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 511 | break; |
| 512 | } |
| 513 | |
| 514 | size += 1; /* nul byte at the end */ |
| 515 | result = PyMem_Malloc(size); |
Victor Stinner | 0d92c4f | 2012-11-12 23:32:21 +0100 | [diff] [blame] | 516 | if (result == NULL) { |
| 517 | if (error_pos != NULL) |
| 518 | *error_pos = (size_t)-1; |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 519 | return NULL; |
Victor Stinner | 0d92c4f | 2012-11-12 23:32:21 +0100 | [diff] [blame] | 520 | } |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 521 | bytes = result; |
| 522 | } |
| 523 | return result; |
Victor Stinner | e262377 | 2012-11-12 23:04:02 +0100 | [diff] [blame] | 524 | #endif /* __APPLE__ */ |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 525 | } |
| 526 | |
Victor Stinner | 6672d0c | 2010-10-07 22:53:43 +0000 | [diff] [blame] | 527 | |
Steve Dower | f2f373f | 2015-02-21 08:44:05 -0800 | [diff] [blame] | 528 | #ifdef MS_WINDOWS |
| 529 | static __int64 secs_between_epochs = 11644473600; /* Seconds between 1.1.1601 and 1.1.1970 */ |
| 530 | |
| 531 | static void |
| 532 | FILE_TIME_to_time_t_nsec(FILETIME *in_ptr, time_t *time_out, int* nsec_out) |
| 533 | { |
| 534 | /* XXX endianness. Shouldn't matter, as all Windows implementations are little-endian */ |
| 535 | /* Cannot simply cast and dereference in_ptr, |
| 536 | since it might not be aligned properly */ |
| 537 | __int64 in; |
| 538 | memcpy(&in, in_ptr, sizeof(in)); |
| 539 | *nsec_out = (int)(in % 10000000) * 100; /* FILETIME is in units of 100 nsec. */ |
| 540 | *time_out = Py_SAFE_DOWNCAST((in / 10000000) - secs_between_epochs, __int64, time_t); |
| 541 | } |
| 542 | |
| 543 | void |
Steve Dower | bf1f376 | 2015-02-21 15:26:02 -0800 | [diff] [blame] | 544 | _Py_time_t_to_FILE_TIME(time_t time_in, int nsec_in, FILETIME *out_ptr) |
Steve Dower | f2f373f | 2015-02-21 08:44:05 -0800 | [diff] [blame] | 545 | { |
| 546 | /* XXX endianness */ |
| 547 | __int64 out; |
| 548 | out = time_in + secs_between_epochs; |
| 549 | out = out * 10000000 + nsec_in / 100; |
| 550 | memcpy(out_ptr, &out, sizeof(out)); |
| 551 | } |
| 552 | |
| 553 | /* Below, we *know* that ugo+r is 0444 */ |
| 554 | #if _S_IREAD != 0400 |
| 555 | #error Unsupported C library |
| 556 | #endif |
| 557 | static int |
| 558 | attributes_to_mode(DWORD attr) |
| 559 | { |
| 560 | int m = 0; |
| 561 | if (attr & FILE_ATTRIBUTE_DIRECTORY) |
| 562 | m |= _S_IFDIR | 0111; /* IFEXEC for user,group,other */ |
| 563 | else |
| 564 | m |= _S_IFREG; |
| 565 | if (attr & FILE_ATTRIBUTE_READONLY) |
| 566 | m |= 0444; |
| 567 | else |
| 568 | m |= 0666; |
| 569 | return m; |
| 570 | } |
| 571 | |
Steve Dower | bf1f376 | 2015-02-21 15:26:02 -0800 | [diff] [blame] | 572 | void |
Victor Stinner | e134a7f | 2015-03-30 10:09:31 +0200 | [diff] [blame] | 573 | _Py_attribute_data_to_stat(BY_HANDLE_FILE_INFORMATION *info, ULONG reparse_tag, |
| 574 | struct _Py_stat_struct *result) |
Steve Dower | f2f373f | 2015-02-21 08:44:05 -0800 | [diff] [blame] | 575 | { |
| 576 | memset(result, 0, sizeof(*result)); |
| 577 | result->st_mode = attributes_to_mode(info->dwFileAttributes); |
| 578 | result->st_size = (((__int64)info->nFileSizeHigh)<<32) + info->nFileSizeLow; |
| 579 | result->st_dev = info->dwVolumeSerialNumber; |
| 580 | result->st_rdev = result->st_dev; |
| 581 | FILE_TIME_to_time_t_nsec(&info->ftCreationTime, &result->st_ctime, &result->st_ctime_nsec); |
| 582 | FILE_TIME_to_time_t_nsec(&info->ftLastWriteTime, &result->st_mtime, &result->st_mtime_nsec); |
| 583 | FILE_TIME_to_time_t_nsec(&info->ftLastAccessTime, &result->st_atime, &result->st_atime_nsec); |
| 584 | result->st_nlink = info->nNumberOfLinks; |
| 585 | result->st_ino = (((__int64)info->nFileIndexHigh)<<32) + info->nFileIndexLow; |
| 586 | if (reparse_tag == IO_REPARSE_TAG_SYMLINK) { |
| 587 | /* first clear the S_IFMT bits */ |
| 588 | result->st_mode ^= (result->st_mode & S_IFMT); |
| 589 | /* now set the bits that make this a symlink */ |
| 590 | result->st_mode |= S_IFLNK; |
| 591 | } |
| 592 | result->st_file_attributes = info->dwFileAttributes; |
Steve Dower | f2f373f | 2015-02-21 08:44:05 -0800 | [diff] [blame] | 593 | } |
| 594 | #endif |
| 595 | |
| 596 | /* Return information about a file. |
| 597 | |
| 598 | On POSIX, use fstat(). |
| 599 | |
| 600 | On Windows, use GetFileType() and GetFileInformationByHandle() which support |
| 601 | files larger than 2 GB. fstat() may fail with EOVERFLOW on files larger |
| 602 | than 2 GB because the file size type is an signed 32-bit integer: see issue |
| 603 | #23152. |
Victor Stinner | e134a7f | 2015-03-30 10:09:31 +0200 | [diff] [blame] | 604 | |
| 605 | On Windows, set the last Windows error and return nonzero on error. On |
| 606 | POSIX, set errno and return nonzero on error. Fill status and return 0 on |
| 607 | success. */ |
Steve Dower | f2f373f | 2015-02-21 08:44:05 -0800 | [diff] [blame] | 608 | int |
Victor Stinner | e134a7f | 2015-03-30 10:09:31 +0200 | [diff] [blame] | 609 | _Py_fstat_noraise(int fd, struct _Py_stat_struct *status) |
Steve Dower | f2f373f | 2015-02-21 08:44:05 -0800 | [diff] [blame] | 610 | { |
| 611 | #ifdef MS_WINDOWS |
| 612 | BY_HANDLE_FILE_INFORMATION info; |
| 613 | HANDLE h; |
| 614 | int type; |
| 615 | |
| 616 | if (!_PyVerify_fd(fd)) |
| 617 | h = INVALID_HANDLE_VALUE; |
Steve Dower | 8fc8980 | 2015-04-12 00:26:27 -0400 | [diff] [blame] | 618 | else { |
| 619 | _Py_BEGIN_SUPPRESS_IPH |
Steve Dower | f2f373f | 2015-02-21 08:44:05 -0800 | [diff] [blame] | 620 | h = (HANDLE)_get_osfhandle(fd); |
Steve Dower | 8fc8980 | 2015-04-12 00:26:27 -0400 | [diff] [blame] | 621 | _Py_END_SUPPRESS_IPH |
| 622 | } |
Steve Dower | f2f373f | 2015-02-21 08:44:05 -0800 | [diff] [blame] | 623 | |
| 624 | if (h == INVALID_HANDLE_VALUE) { |
Steve Dower | 8fc8980 | 2015-04-12 00:26:27 -0400 | [diff] [blame] | 625 | /* errno is already set by _get_osfhandle, but we also set |
| 626 | the Win32 error for callers who expect that */ |
Steve Dower | 8acde7d | 2015-03-07 18:14:07 -0800 | [diff] [blame] | 627 | SetLastError(ERROR_INVALID_HANDLE); |
Steve Dower | f2f373f | 2015-02-21 08:44:05 -0800 | [diff] [blame] | 628 | return -1; |
| 629 | } |
Victor Stinner | e134a7f | 2015-03-30 10:09:31 +0200 | [diff] [blame] | 630 | memset(status, 0, sizeof(*status)); |
Steve Dower | f2f373f | 2015-02-21 08:44:05 -0800 | [diff] [blame] | 631 | |
| 632 | type = GetFileType(h); |
| 633 | if (type == FILE_TYPE_UNKNOWN) { |
| 634 | DWORD error = GetLastError(); |
Steve Dower | 8fc8980 | 2015-04-12 00:26:27 -0400 | [diff] [blame] | 635 | if (error != 0) { |
| 636 | errno = winerror_to_errno(error); |
Steve Dower | f2f373f | 2015-02-21 08:44:05 -0800 | [diff] [blame] | 637 | return -1; |
Steve Dower | 8fc8980 | 2015-04-12 00:26:27 -0400 | [diff] [blame] | 638 | } |
Steve Dower | f2f373f | 2015-02-21 08:44:05 -0800 | [diff] [blame] | 639 | /* else: valid but unknown file */ |
| 640 | } |
| 641 | |
| 642 | if (type != FILE_TYPE_DISK) { |
| 643 | if (type == FILE_TYPE_CHAR) |
Victor Stinner | e134a7f | 2015-03-30 10:09:31 +0200 | [diff] [blame] | 644 | status->st_mode = _S_IFCHR; |
Steve Dower | f2f373f | 2015-02-21 08:44:05 -0800 | [diff] [blame] | 645 | else if (type == FILE_TYPE_PIPE) |
Victor Stinner | e134a7f | 2015-03-30 10:09:31 +0200 | [diff] [blame] | 646 | status->st_mode = _S_IFIFO; |
Steve Dower | f2f373f | 2015-02-21 08:44:05 -0800 | [diff] [blame] | 647 | return 0; |
| 648 | } |
| 649 | |
| 650 | if (!GetFileInformationByHandle(h, &info)) { |
Steve Dower | 8fc8980 | 2015-04-12 00:26:27 -0400 | [diff] [blame] | 651 | /* The Win32 error is already set, but we also set errno for |
| 652 | callers who expect it */ |
| 653 | errno = winerror_to_errno(GetLastError()); |
Steve Dower | f2f373f | 2015-02-21 08:44:05 -0800 | [diff] [blame] | 654 | return -1; |
| 655 | } |
| 656 | |
Victor Stinner | e134a7f | 2015-03-30 10:09:31 +0200 | [diff] [blame] | 657 | _Py_attribute_data_to_stat(&info, 0, status); |
Steve Dower | f2f373f | 2015-02-21 08:44:05 -0800 | [diff] [blame] | 658 | /* specific to fstat() */ |
Victor Stinner | e134a7f | 2015-03-30 10:09:31 +0200 | [diff] [blame] | 659 | status->st_ino = (((__int64)info.nFileIndexHigh)<<32) + info.nFileIndexLow; |
Steve Dower | f2f373f | 2015-02-21 08:44:05 -0800 | [diff] [blame] | 660 | return 0; |
| 661 | #else |
Victor Stinner | e134a7f | 2015-03-30 10:09:31 +0200 | [diff] [blame] | 662 | return fstat(fd, status); |
Steve Dower | f2f373f | 2015-02-21 08:44:05 -0800 | [diff] [blame] | 663 | #endif |
| 664 | } |
Steve Dower | f2f373f | 2015-02-21 08:44:05 -0800 | [diff] [blame] | 665 | |
Victor Stinner | e134a7f | 2015-03-30 10:09:31 +0200 | [diff] [blame] | 666 | /* Return information about a file. |
| 667 | |
| 668 | On POSIX, use fstat(). |
| 669 | |
| 670 | On Windows, use GetFileType() and GetFileInformationByHandle() which support |
| 671 | files larger than 2 GB. fstat() may fail with EOVERFLOW on files larger |
| 672 | than 2 GB because the file size type is an signed 32-bit integer: see issue |
| 673 | #23152. |
| 674 | |
| 675 | Raise an exception and return -1 on error. On Windows, set the last Windows |
| 676 | error on error. On POSIX, set errno on error. Fill status and return 0 on |
| 677 | success. |
| 678 | |
Victor Stinner | 6f4fae8 | 2015-04-01 18:34:32 +0200 | [diff] [blame] | 679 | Release the GIL to call GetFileType() and GetFileInformationByHandle(), or |
| 680 | to call fstat(). The caller must hold the GIL. */ |
Victor Stinner | e134a7f | 2015-03-30 10:09:31 +0200 | [diff] [blame] | 681 | int |
| 682 | _Py_fstat(int fd, struct _Py_stat_struct *status) |
| 683 | { |
| 684 | int res; |
| 685 | |
| 686 | Py_BEGIN_ALLOW_THREADS |
| 687 | res = _Py_fstat_noraise(fd, status); |
| 688 | Py_END_ALLOW_THREADS |
| 689 | |
| 690 | if (res != 0) { |
| 691 | #ifdef MS_WINDOWS |
| 692 | PyErr_SetFromWindowsErr(0); |
| 693 | #else |
| 694 | PyErr_SetFromErrno(PyExc_OSError); |
| 695 | #endif |
| 696 | return -1; |
| 697 | } |
| 698 | return 0; |
| 699 | } |
Steve Dower | f2f373f | 2015-02-21 08:44:05 -0800 | [diff] [blame] | 700 | |
Victor Stinner | 6672d0c | 2010-10-07 22:53:43 +0000 | [diff] [blame] | 701 | /* Call _wstat() on Windows, or encode the path to the filesystem encoding and |
| 702 | call stat() otherwise. Only fill st_mode attribute on Windows. |
| 703 | |
Victor Stinner | bd0850b | 2011-12-18 20:47:30 +0100 | [diff] [blame] | 704 | Return 0 on success, -1 on _wstat() / stat() error, -2 if an exception was |
| 705 | raised. */ |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 706 | |
| 707 | int |
Victor Stinner | a4a7595 | 2010-10-07 22:23:10 +0000 | [diff] [blame] | 708 | _Py_stat(PyObject *path, struct stat *statbuf) |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 709 | { |
| 710 | #ifdef MS_WINDOWS |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 711 | int err; |
| 712 | struct _stat wstatbuf; |
Victor Stinner | ee587ea | 2011-11-17 00:51:38 +0100 | [diff] [blame] | 713 | wchar_t *wpath; |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 714 | |
Victor Stinner | ee587ea | 2011-11-17 00:51:38 +0100 | [diff] [blame] | 715 | wpath = PyUnicode_AsUnicode(path); |
| 716 | if (wpath == NULL) |
Victor Stinner | bd0850b | 2011-12-18 20:47:30 +0100 | [diff] [blame] | 717 | return -2; |
Victor Stinner | ee587ea | 2011-11-17 00:51:38 +0100 | [diff] [blame] | 718 | err = _wstat(wpath, &wstatbuf); |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 719 | if (!err) |
| 720 | statbuf->st_mode = wstatbuf.st_mode; |
| 721 | return err; |
| 722 | #else |
| 723 | int ret; |
Victor Stinner | a4a7595 | 2010-10-07 22:23:10 +0000 | [diff] [blame] | 724 | PyObject *bytes = PyUnicode_EncodeFSDefault(path); |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 725 | if (bytes == NULL) |
Victor Stinner | bd0850b | 2011-12-18 20:47:30 +0100 | [diff] [blame] | 726 | return -2; |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 727 | ret = stat(PyBytes_AS_STRING(bytes), statbuf); |
| 728 | Py_DECREF(bytes); |
| 729 | return ret; |
| 730 | #endif |
| 731 | } |
| 732 | |
Victor Stinner | d45c7f8 | 2012-12-04 01:34:47 +0100 | [diff] [blame] | 733 | |
Antoine Pitrou | 409b538 | 2013-10-12 22:41:17 +0200 | [diff] [blame] | 734 | static int |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 735 | get_inheritable(int fd, int raise) |
| 736 | { |
| 737 | #ifdef MS_WINDOWS |
| 738 | HANDLE handle; |
| 739 | DWORD flags; |
Victor Stinner | 6672d0c | 2010-10-07 22:53:43 +0000 | [diff] [blame] | 740 | |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 741 | if (!_PyVerify_fd(fd)) { |
| 742 | if (raise) |
| 743 | PyErr_SetFromErrno(PyExc_OSError); |
| 744 | return -1; |
| 745 | } |
| 746 | |
Steve Dower | 8fc8980 | 2015-04-12 00:26:27 -0400 | [diff] [blame] | 747 | _Py_BEGIN_SUPPRESS_IPH |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 748 | handle = (HANDLE)_get_osfhandle(fd); |
Steve Dower | 8fc8980 | 2015-04-12 00:26:27 -0400 | [diff] [blame] | 749 | _Py_END_SUPPRESS_IPH |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 750 | if (handle == INVALID_HANDLE_VALUE) { |
| 751 | if (raise) |
Steve Dower | 41e7244 | 2015-03-14 11:38:27 -0700 | [diff] [blame] | 752 | PyErr_SetFromErrno(PyExc_OSError); |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 753 | return -1; |
| 754 | } |
| 755 | |
| 756 | if (!GetHandleInformation(handle, &flags)) { |
| 757 | if (raise) |
| 758 | PyErr_SetFromWindowsErr(0); |
| 759 | return -1; |
| 760 | } |
| 761 | |
| 762 | return (flags & HANDLE_FLAG_INHERIT); |
| 763 | #else |
| 764 | int flags; |
| 765 | |
| 766 | flags = fcntl(fd, F_GETFD, 0); |
| 767 | if (flags == -1) { |
| 768 | if (raise) |
| 769 | PyErr_SetFromErrno(PyExc_OSError); |
| 770 | return -1; |
| 771 | } |
| 772 | return !(flags & FD_CLOEXEC); |
| 773 | #endif |
| 774 | } |
| 775 | |
| 776 | /* Get the inheritable flag of the specified file descriptor. |
Victor Stinner | b034eee | 2013-09-07 10:36:04 +0200 | [diff] [blame] | 777 | Return 1 if the file descriptor can be inherited, 0 if it cannot, |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 778 | raise an exception and return -1 on error. */ |
| 779 | int |
| 780 | _Py_get_inheritable(int fd) |
| 781 | { |
| 782 | return get_inheritable(fd, 1); |
| 783 | } |
| 784 | |
| 785 | static int |
| 786 | set_inheritable(int fd, int inheritable, int raise, int *atomic_flag_works) |
| 787 | { |
| 788 | #ifdef MS_WINDOWS |
| 789 | HANDLE handle; |
| 790 | DWORD flags; |
Victor Stinner | 282124b | 2014-09-02 11:41:04 +0200 | [diff] [blame] | 791 | #else |
| 792 | #if defined(HAVE_SYS_IOCTL_H) && defined(FIOCLEX) && defined(FIONCLEX) |
| 793 | static int ioctl_works = -1; |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 794 | int request; |
| 795 | int err; |
Victor Stinner | 282124b | 2014-09-02 11:41:04 +0200 | [diff] [blame] | 796 | #endif |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 797 | int flags; |
| 798 | int res; |
| 799 | #endif |
| 800 | |
| 801 | /* atomic_flag_works can only be used to make the file descriptor |
| 802 | non-inheritable */ |
| 803 | assert(!(atomic_flag_works != NULL && inheritable)); |
| 804 | |
| 805 | if (atomic_flag_works != NULL && !inheritable) { |
| 806 | if (*atomic_flag_works == -1) { |
Steve Dower | 41e7244 | 2015-03-14 11:38:27 -0700 | [diff] [blame] | 807 | int isInheritable = get_inheritable(fd, raise); |
| 808 | if (isInheritable == -1) |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 809 | return -1; |
Steve Dower | 41e7244 | 2015-03-14 11:38:27 -0700 | [diff] [blame] | 810 | *atomic_flag_works = !isInheritable; |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 811 | } |
| 812 | |
| 813 | if (*atomic_flag_works) |
| 814 | return 0; |
| 815 | } |
| 816 | |
| 817 | #ifdef MS_WINDOWS |
| 818 | if (!_PyVerify_fd(fd)) { |
| 819 | if (raise) |
| 820 | PyErr_SetFromErrno(PyExc_OSError); |
| 821 | return -1; |
| 822 | } |
| 823 | |
Steve Dower | 8fc8980 | 2015-04-12 00:26:27 -0400 | [diff] [blame] | 824 | _Py_BEGIN_SUPPRESS_IPH |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 825 | handle = (HANDLE)_get_osfhandle(fd); |
Steve Dower | 8fc8980 | 2015-04-12 00:26:27 -0400 | [diff] [blame] | 826 | _Py_END_SUPPRESS_IPH |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 827 | if (handle == INVALID_HANDLE_VALUE) { |
| 828 | if (raise) |
Steve Dower | 41e7244 | 2015-03-14 11:38:27 -0700 | [diff] [blame] | 829 | PyErr_SetFromErrno(PyExc_OSError); |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 830 | return -1; |
| 831 | } |
| 832 | |
| 833 | if (inheritable) |
| 834 | flags = HANDLE_FLAG_INHERIT; |
| 835 | else |
| 836 | flags = 0; |
| 837 | if (!SetHandleInformation(handle, HANDLE_FLAG_INHERIT, flags)) { |
| 838 | if (raise) |
| 839 | PyErr_SetFromWindowsErr(0); |
| 840 | return -1; |
| 841 | } |
| 842 | return 0; |
| 843 | |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 844 | #else |
Victor Stinner | 282124b | 2014-09-02 11:41:04 +0200 | [diff] [blame] | 845 | |
| 846 | #if defined(HAVE_SYS_IOCTL_H) && defined(FIOCLEX) && defined(FIONCLEX) |
| 847 | if (ioctl_works != 0) { |
| 848 | /* fast-path: ioctl() only requires one syscall */ |
| 849 | if (inheritable) |
| 850 | request = FIONCLEX; |
| 851 | else |
| 852 | request = FIOCLEX; |
| 853 | err = ioctl(fd, request, NULL); |
| 854 | if (!err) { |
| 855 | ioctl_works = 1; |
| 856 | return 0; |
| 857 | } |
| 858 | |
| 859 | if (errno != ENOTTY) { |
| 860 | if (raise) |
| 861 | PyErr_SetFromErrno(PyExc_OSError); |
| 862 | return -1; |
| 863 | } |
| 864 | else { |
| 865 | /* Issue #22258: Here, ENOTTY means "Inappropriate ioctl for |
| 866 | device". The ioctl is declared but not supported by the kernel. |
| 867 | Remember that ioctl() doesn't work. It is the case on |
| 868 | Illumos-based OS for example. */ |
| 869 | ioctl_works = 0; |
| 870 | } |
| 871 | /* fallback to fcntl() if ioctl() does not work */ |
| 872 | } |
| 873 | #endif |
| 874 | |
| 875 | /* slow-path: fcntl() requires two syscalls */ |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 876 | flags = fcntl(fd, F_GETFD); |
| 877 | if (flags < 0) { |
| 878 | if (raise) |
| 879 | PyErr_SetFromErrno(PyExc_OSError); |
| 880 | return -1; |
| 881 | } |
| 882 | |
| 883 | if (inheritable) |
| 884 | flags &= ~FD_CLOEXEC; |
| 885 | else |
| 886 | flags |= FD_CLOEXEC; |
| 887 | res = fcntl(fd, F_SETFD, flags); |
| 888 | if (res < 0) { |
| 889 | if (raise) |
| 890 | PyErr_SetFromErrno(PyExc_OSError); |
| 891 | return -1; |
| 892 | } |
| 893 | return 0; |
| 894 | #endif |
| 895 | } |
| 896 | |
| 897 | /* Make the file descriptor non-inheritable. |
Victor Stinner | b034eee | 2013-09-07 10:36:04 +0200 | [diff] [blame] | 898 | Return 0 on success, set errno and return -1 on error. */ |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 899 | static int |
| 900 | make_non_inheritable(int fd) |
| 901 | { |
| 902 | return set_inheritable(fd, 0, 0, NULL); |
| 903 | } |
| 904 | |
| 905 | /* Set the inheritable flag of the specified file descriptor. |
| 906 | On success: return 0, on error: raise an exception if raise is nonzero |
| 907 | and return -1. |
| 908 | |
| 909 | If atomic_flag_works is not NULL: |
| 910 | |
| 911 | * if *atomic_flag_works==-1, check if the inheritable is set on the file |
| 912 | descriptor: if yes, set *atomic_flag_works to 1, otherwise set to 0 and |
| 913 | set the inheritable flag |
| 914 | * if *atomic_flag_works==1: do nothing |
| 915 | * if *atomic_flag_works==0: set inheritable flag to False |
| 916 | |
| 917 | Set atomic_flag_works to NULL if no atomic flag was used to create the |
| 918 | file descriptor. |
| 919 | |
| 920 | atomic_flag_works can only be used to make a file descriptor |
| 921 | non-inheritable: atomic_flag_works must be NULL if inheritable=1. */ |
| 922 | int |
| 923 | _Py_set_inheritable(int fd, int inheritable, int *atomic_flag_works) |
| 924 | { |
| 925 | return set_inheritable(fd, inheritable, 1, atomic_flag_works); |
| 926 | } |
| 927 | |
Victor Stinner | a555cfc | 2015-03-18 00:22:14 +0100 | [diff] [blame] | 928 | static int |
| 929 | _Py_open_impl(const char *pathname, int flags, int gil_held) |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 930 | { |
| 931 | int fd; |
Victor Stinner | a47fc5c | 2015-03-18 09:52:54 +0100 | [diff] [blame] | 932 | int async_err = 0; |
Victor Stinner | a555cfc | 2015-03-18 00:22:14 +0100 | [diff] [blame] | 933 | #ifndef MS_WINDOWS |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 934 | int *atomic_flag_works; |
Victor Stinner | a555cfc | 2015-03-18 00:22:14 +0100 | [diff] [blame] | 935 | #endif |
| 936 | |
| 937 | #ifdef MS_WINDOWS |
| 938 | flags |= O_NOINHERIT; |
| 939 | #elif defined(O_CLOEXEC) |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 940 | atomic_flag_works = &_Py_open_cloexec_works; |
| 941 | flags |= O_CLOEXEC; |
| 942 | #else |
| 943 | atomic_flag_works = NULL; |
| 944 | #endif |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 945 | |
Victor Stinner | a555cfc | 2015-03-18 00:22:14 +0100 | [diff] [blame] | 946 | if (gil_held) { |
Victor Stinner | a47fc5c | 2015-03-18 09:52:54 +0100 | [diff] [blame] | 947 | do { |
| 948 | Py_BEGIN_ALLOW_THREADS |
| 949 | fd = open(pathname, flags); |
| 950 | Py_END_ALLOW_THREADS |
| 951 | } while (fd < 0 |
| 952 | && errno == EINTR && !(async_err = PyErr_CheckSignals())); |
| 953 | if (async_err) |
| 954 | return -1; |
Victor Stinner | a555cfc | 2015-03-18 00:22:14 +0100 | [diff] [blame] | 955 | if (fd < 0) { |
| 956 | PyErr_SetFromErrnoWithFilename(PyExc_OSError, pathname); |
| 957 | return -1; |
| 958 | } |
| 959 | } |
| 960 | else { |
| 961 | fd = open(pathname, flags); |
| 962 | if (fd < 0) |
| 963 | return -1; |
| 964 | } |
| 965 | |
| 966 | #ifndef MS_WINDOWS |
| 967 | if (set_inheritable(fd, 0, gil_held, atomic_flag_works) < 0) { |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 968 | close(fd); |
| 969 | return -1; |
| 970 | } |
Victor Stinner | a555cfc | 2015-03-18 00:22:14 +0100 | [diff] [blame] | 971 | #endif |
| 972 | |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 973 | return fd; |
| 974 | } |
| 975 | |
Victor Stinner | a555cfc | 2015-03-18 00:22:14 +0100 | [diff] [blame] | 976 | /* Open a file with the specified flags (wrapper to open() function). |
| 977 | Return a file descriptor on success. Raise an exception and return -1 on |
| 978 | error. |
| 979 | |
| 980 | The file descriptor is created non-inheritable. |
| 981 | |
Victor Stinner | a47fc5c | 2015-03-18 09:52:54 +0100 | [diff] [blame] | 982 | When interrupted by a signal (open() fails with EINTR), retry the syscall, |
| 983 | except if the Python signal handler raises an exception. |
| 984 | |
Victor Stinner | 6f4fae8 | 2015-04-01 18:34:32 +0200 | [diff] [blame] | 985 | Release the GIL to call open(). The caller must hold the GIL. */ |
Victor Stinner | a555cfc | 2015-03-18 00:22:14 +0100 | [diff] [blame] | 986 | int |
| 987 | _Py_open(const char *pathname, int flags) |
| 988 | { |
Victor Stinner | bc5b80b | 2015-10-11 09:54:42 +0200 | [diff] [blame] | 989 | #ifdef WITH_THREAD |
Victor Stinner | a555cfc | 2015-03-18 00:22:14 +0100 | [diff] [blame] | 990 | /* _Py_open() must be called with the GIL held. */ |
| 991 | assert(PyGILState_Check()); |
Victor Stinner | bc5b80b | 2015-10-11 09:54:42 +0200 | [diff] [blame] | 992 | #endif |
Victor Stinner | a555cfc | 2015-03-18 00:22:14 +0100 | [diff] [blame] | 993 | return _Py_open_impl(pathname, flags, 1); |
| 994 | } |
| 995 | |
| 996 | /* Open a file with the specified flags (wrapper to open() function). |
| 997 | Return a file descriptor on success. Set errno and return -1 on error. |
| 998 | |
Victor Stinner | a47fc5c | 2015-03-18 09:52:54 +0100 | [diff] [blame] | 999 | The file descriptor is created non-inheritable. |
| 1000 | |
| 1001 | If interrupted by a signal, fail with EINTR. */ |
Victor Stinner | a555cfc | 2015-03-18 00:22:14 +0100 | [diff] [blame] | 1002 | int |
| 1003 | _Py_open_noraise(const char *pathname, int flags) |
| 1004 | { |
| 1005 | return _Py_open_impl(pathname, flags, 0); |
| 1006 | } |
| 1007 | |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 1008 | /* Open a file. Use _wfopen() on Windows, encode the path to the locale |
Victor Stinner | e42ccd2 | 2015-03-18 01:39:23 +0100 | [diff] [blame] | 1009 | encoding and use fopen() otherwise. |
| 1010 | |
Victor Stinner | a47fc5c | 2015-03-18 09:52:54 +0100 | [diff] [blame] | 1011 | The file descriptor is created non-inheritable. |
| 1012 | |
| 1013 | If interrupted by a signal, fail with EINTR. */ |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1014 | FILE * |
| 1015 | _Py_wfopen(const wchar_t *path, const wchar_t *mode) |
| 1016 | { |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1017 | FILE *f; |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 1018 | #ifndef MS_WINDOWS |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1019 | char *cpath; |
| 1020 | char cmode[10]; |
| 1021 | size_t r; |
| 1022 | r = wcstombs(cmode, mode, 10); |
| 1023 | if (r == (size_t)-1 || r >= 10) { |
| 1024 | errno = EINVAL; |
| 1025 | return NULL; |
| 1026 | } |
Victor Stinner | f6a271a | 2014-08-01 12:28:48 +0200 | [diff] [blame] | 1027 | cpath = Py_EncodeLocale(path, NULL); |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1028 | if (cpath == NULL) |
| 1029 | return NULL; |
| 1030 | f = fopen(cpath, cmode); |
| 1031 | PyMem_Free(cpath); |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1032 | #else |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 1033 | f = _wfopen(path, mode); |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1034 | #endif |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 1035 | if (f == NULL) |
| 1036 | return NULL; |
| 1037 | if (make_non_inheritable(fileno(f)) < 0) { |
| 1038 | fclose(f); |
| 1039 | return NULL; |
| 1040 | } |
| 1041 | return f; |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1042 | } |
| 1043 | |
Victor Stinner | e42ccd2 | 2015-03-18 01:39:23 +0100 | [diff] [blame] | 1044 | /* Wrapper to fopen(). |
| 1045 | |
Victor Stinner | a47fc5c | 2015-03-18 09:52:54 +0100 | [diff] [blame] | 1046 | The file descriptor is created non-inheritable. |
| 1047 | |
| 1048 | If interrupted by a signal, fail with EINTR. */ |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 1049 | FILE* |
| 1050 | _Py_fopen(const char *pathname, const char *mode) |
| 1051 | { |
| 1052 | FILE *f = fopen(pathname, mode); |
| 1053 | if (f == NULL) |
| 1054 | return NULL; |
| 1055 | if (make_non_inheritable(fileno(f)) < 0) { |
| 1056 | fclose(f); |
| 1057 | return NULL; |
| 1058 | } |
| 1059 | return f; |
| 1060 | } |
| 1061 | |
| 1062 | /* Open a file. Call _wfopen() on Windows, or encode the path to the filesystem |
Victor Stinner | e42ccd2 | 2015-03-18 01:39:23 +0100 | [diff] [blame] | 1063 | encoding and call fopen() otherwise. |
Victor Stinner | 6672d0c | 2010-10-07 22:53:43 +0000 | [diff] [blame] | 1064 | |
Victor Stinner | e42ccd2 | 2015-03-18 01:39:23 +0100 | [diff] [blame] | 1065 | Return the new file object on success. Raise an exception and return NULL |
| 1066 | on error. |
| 1067 | |
| 1068 | The file descriptor is created non-inheritable. |
| 1069 | |
Victor Stinner | a47fc5c | 2015-03-18 09:52:54 +0100 | [diff] [blame] | 1070 | When interrupted by a signal (open() fails with EINTR), retry the syscall, |
| 1071 | except if the Python signal handler raises an exception. |
| 1072 | |
Victor Stinner | 6f4fae8 | 2015-04-01 18:34:32 +0200 | [diff] [blame] | 1073 | Release the GIL to call _wfopen() or fopen(). The caller must hold |
| 1074 | the GIL. */ |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1075 | FILE* |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 1076 | _Py_fopen_obj(PyObject *path, const char *mode) |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1077 | { |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 1078 | FILE *f; |
Victor Stinner | a47fc5c | 2015-03-18 09:52:54 +0100 | [diff] [blame] | 1079 | int async_err = 0; |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1080 | #ifdef MS_WINDOWS |
Victor Stinner | ee587ea | 2011-11-17 00:51:38 +0100 | [diff] [blame] | 1081 | wchar_t *wpath; |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1082 | wchar_t wmode[10]; |
| 1083 | int usize; |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1084 | |
Victor Stinner | bc5b80b | 2015-10-11 09:54:42 +0200 | [diff] [blame] | 1085 | #ifdef WITH_THREAD |
Victor Stinner | e42ccd2 | 2015-03-18 01:39:23 +0100 | [diff] [blame] | 1086 | assert(PyGILState_Check()); |
Victor Stinner | bc5b80b | 2015-10-11 09:54:42 +0200 | [diff] [blame] | 1087 | #endif |
Victor Stinner | e42ccd2 | 2015-03-18 01:39:23 +0100 | [diff] [blame] | 1088 | |
Antoine Pitrou | 0e576f1 | 2011-12-22 10:03:38 +0100 | [diff] [blame] | 1089 | if (!PyUnicode_Check(path)) { |
| 1090 | PyErr_Format(PyExc_TypeError, |
| 1091 | "str file path expected under Windows, got %R", |
| 1092 | Py_TYPE(path)); |
| 1093 | return NULL; |
| 1094 | } |
Victor Stinner | ee587ea | 2011-11-17 00:51:38 +0100 | [diff] [blame] | 1095 | wpath = PyUnicode_AsUnicode(path); |
| 1096 | if (wpath == NULL) |
| 1097 | return NULL; |
| 1098 | |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1099 | usize = MultiByteToWideChar(CP_ACP, 0, mode, -1, wmode, sizeof(wmode)); |
Victor Stinner | e42ccd2 | 2015-03-18 01:39:23 +0100 | [diff] [blame] | 1100 | if (usize == 0) { |
| 1101 | PyErr_SetFromWindowsErr(0); |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1102 | return NULL; |
Victor Stinner | e42ccd2 | 2015-03-18 01:39:23 +0100 | [diff] [blame] | 1103 | } |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1104 | |
Victor Stinner | a47fc5c | 2015-03-18 09:52:54 +0100 | [diff] [blame] | 1105 | do { |
| 1106 | Py_BEGIN_ALLOW_THREADS |
| 1107 | f = _wfopen(wpath, wmode); |
| 1108 | Py_END_ALLOW_THREADS |
| 1109 | } while (f == NULL |
| 1110 | && errno == EINTR && !(async_err = PyErr_CheckSignals())); |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1111 | #else |
Antoine Pitrou | 2b1cc89 | 2011-12-19 18:19:06 +0100 | [diff] [blame] | 1112 | PyObject *bytes; |
Victor Stinner | e42ccd2 | 2015-03-18 01:39:23 +0100 | [diff] [blame] | 1113 | char *path_bytes; |
| 1114 | |
Victor Stinner | bc5b80b | 2015-10-11 09:54:42 +0200 | [diff] [blame] | 1115 | #ifdef WITH_THREAD |
Victor Stinner | e42ccd2 | 2015-03-18 01:39:23 +0100 | [diff] [blame] | 1116 | assert(PyGILState_Check()); |
Victor Stinner | bc5b80b | 2015-10-11 09:54:42 +0200 | [diff] [blame] | 1117 | #endif |
Victor Stinner | e42ccd2 | 2015-03-18 01:39:23 +0100 | [diff] [blame] | 1118 | |
Antoine Pitrou | 2b1cc89 | 2011-12-19 18:19:06 +0100 | [diff] [blame] | 1119 | if (!PyUnicode_FSConverter(path, &bytes)) |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1120 | return NULL; |
Victor Stinner | e42ccd2 | 2015-03-18 01:39:23 +0100 | [diff] [blame] | 1121 | path_bytes = PyBytes_AS_STRING(bytes); |
| 1122 | |
Victor Stinner | a47fc5c | 2015-03-18 09:52:54 +0100 | [diff] [blame] | 1123 | do { |
| 1124 | Py_BEGIN_ALLOW_THREADS |
| 1125 | f = fopen(path_bytes, mode); |
| 1126 | Py_END_ALLOW_THREADS |
| 1127 | } while (f == NULL |
| 1128 | && errno == EINTR && !(async_err = PyErr_CheckSignals())); |
Victor Stinner | e42ccd2 | 2015-03-18 01:39:23 +0100 | [diff] [blame] | 1129 | |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1130 | Py_DECREF(bytes); |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1131 | #endif |
Victor Stinner | a47fc5c | 2015-03-18 09:52:54 +0100 | [diff] [blame] | 1132 | if (async_err) |
| 1133 | return NULL; |
| 1134 | |
Victor Stinner | e42ccd2 | 2015-03-18 01:39:23 +0100 | [diff] [blame] | 1135 | if (f == NULL) { |
| 1136 | PyErr_SetFromErrnoWithFilenameObject(PyExc_OSError, path); |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 1137 | return NULL; |
Victor Stinner | e42ccd2 | 2015-03-18 01:39:23 +0100 | [diff] [blame] | 1138 | } |
| 1139 | |
| 1140 | if (set_inheritable(fileno(f), 0, 1, NULL) < 0) { |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 1141 | fclose(f); |
| 1142 | return NULL; |
| 1143 | } |
| 1144 | return f; |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1145 | } |
| 1146 | |
Victor Stinner | 66aab0c | 2015-03-19 22:53:20 +0100 | [diff] [blame] | 1147 | /* Read count bytes from fd into buf. |
Victor Stinner | 82c3e45 | 2015-04-01 18:34:45 +0200 | [diff] [blame] | 1148 | |
| 1149 | On success, return the number of read bytes, it can be lower than count. |
| 1150 | If the current file offset is at or past the end of file, no bytes are read, |
| 1151 | and read() returns zero. |
| 1152 | |
| 1153 | On error, raise an exception, set errno and return -1. |
| 1154 | |
| 1155 | When interrupted by a signal (read() fails with EINTR), retry the syscall. |
| 1156 | If the Python signal handler raises an exception, the function returns -1 |
| 1157 | (the syscall is not retried). |
| 1158 | |
| 1159 | Release the GIL to call read(). The caller must hold the GIL. */ |
Victor Stinner | 66aab0c | 2015-03-19 22:53:20 +0100 | [diff] [blame] | 1160 | Py_ssize_t |
| 1161 | _Py_read(int fd, void *buf, size_t count) |
| 1162 | { |
| 1163 | Py_ssize_t n; |
Victor Stinner | a3c0202 | 2015-03-20 11:58:18 +0100 | [diff] [blame] | 1164 | int err; |
Victor Stinner | 66aab0c | 2015-03-19 22:53:20 +0100 | [diff] [blame] | 1165 | int async_err = 0; |
| 1166 | |
| 1167 | /* _Py_read() must not be called with an exception set, otherwise the |
| 1168 | * caller may think that read() was interrupted by a signal and the signal |
| 1169 | * handler raised an exception. */ |
| 1170 | assert(!PyErr_Occurred()); |
| 1171 | |
Victor Stinner | c1cf4f7 | 2015-03-19 23:53:04 +0100 | [diff] [blame] | 1172 | if (!_PyVerify_fd(fd)) { |
Victor Stinner | a3c0202 | 2015-03-20 11:58:18 +0100 | [diff] [blame] | 1173 | /* save/restore errno because PyErr_SetFromErrno() can modify it */ |
| 1174 | err = errno; |
Victor Stinner | 66aab0c | 2015-03-19 22:53:20 +0100 | [diff] [blame] | 1175 | PyErr_SetFromErrno(PyExc_OSError); |
Victor Stinner | a3c0202 | 2015-03-20 11:58:18 +0100 | [diff] [blame] | 1176 | errno = err; |
Victor Stinner | 66aab0c | 2015-03-19 22:53:20 +0100 | [diff] [blame] | 1177 | return -1; |
| 1178 | } |
| 1179 | |
| 1180 | #ifdef MS_WINDOWS |
| 1181 | if (count > INT_MAX) { |
| 1182 | /* On Windows, the count parameter of read() is an int */ |
| 1183 | count = INT_MAX; |
| 1184 | } |
| 1185 | #else |
| 1186 | if (count > PY_SSIZE_T_MAX) { |
| 1187 | /* if count is greater than PY_SSIZE_T_MAX, |
| 1188 | * read() result is undefined */ |
| 1189 | count = PY_SSIZE_T_MAX; |
| 1190 | } |
| 1191 | #endif |
| 1192 | |
Steve Dower | 8fc8980 | 2015-04-12 00:26:27 -0400 | [diff] [blame] | 1193 | _Py_BEGIN_SUPPRESS_IPH |
Victor Stinner | 66aab0c | 2015-03-19 22:53:20 +0100 | [diff] [blame] | 1194 | do { |
| 1195 | Py_BEGIN_ALLOW_THREADS |
| 1196 | errno = 0; |
| 1197 | #ifdef MS_WINDOWS |
| 1198 | n = read(fd, buf, (int)count); |
| 1199 | #else |
| 1200 | n = read(fd, buf, count); |
| 1201 | #endif |
Victor Stinner | a3c0202 | 2015-03-20 11:58:18 +0100 | [diff] [blame] | 1202 | /* save/restore errno because PyErr_CheckSignals() |
| 1203 | * and PyErr_SetFromErrno() can modify it */ |
| 1204 | err = errno; |
Victor Stinner | 66aab0c | 2015-03-19 22:53:20 +0100 | [diff] [blame] | 1205 | Py_END_ALLOW_THREADS |
Victor Stinner | a3c0202 | 2015-03-20 11:58:18 +0100 | [diff] [blame] | 1206 | } while (n < 0 && err == EINTR && |
Victor Stinner | 66aab0c | 2015-03-19 22:53:20 +0100 | [diff] [blame] | 1207 | !(async_err = PyErr_CheckSignals())); |
Steve Dower | 8fc8980 | 2015-04-12 00:26:27 -0400 | [diff] [blame] | 1208 | _Py_END_SUPPRESS_IPH |
Victor Stinner | 66aab0c | 2015-03-19 22:53:20 +0100 | [diff] [blame] | 1209 | |
| 1210 | if (async_err) { |
| 1211 | /* read() was interrupted by a signal (failed with EINTR) |
| 1212 | * and the Python signal handler raised an exception */ |
Victor Stinner | a3c0202 | 2015-03-20 11:58:18 +0100 | [diff] [blame] | 1213 | errno = err; |
| 1214 | assert(errno == EINTR && PyErr_Occurred()); |
Victor Stinner | 66aab0c | 2015-03-19 22:53:20 +0100 | [diff] [blame] | 1215 | return -1; |
| 1216 | } |
| 1217 | if (n < 0) { |
Victor Stinner | 66aab0c | 2015-03-19 22:53:20 +0100 | [diff] [blame] | 1218 | PyErr_SetFromErrno(PyExc_OSError); |
Victor Stinner | a3c0202 | 2015-03-20 11:58:18 +0100 | [diff] [blame] | 1219 | errno = err; |
Victor Stinner | 66aab0c | 2015-03-19 22:53:20 +0100 | [diff] [blame] | 1220 | return -1; |
| 1221 | } |
| 1222 | |
| 1223 | return n; |
| 1224 | } |
| 1225 | |
Victor Stinner | 82c3e45 | 2015-04-01 18:34:45 +0200 | [diff] [blame] | 1226 | static Py_ssize_t |
| 1227 | _Py_write_impl(int fd, const void *buf, size_t count, int gil_held) |
Victor Stinner | 66aab0c | 2015-03-19 22:53:20 +0100 | [diff] [blame] | 1228 | { |
| 1229 | Py_ssize_t n; |
Victor Stinner | a3c0202 | 2015-03-20 11:58:18 +0100 | [diff] [blame] | 1230 | int err; |
Victor Stinner | 66aab0c | 2015-03-19 22:53:20 +0100 | [diff] [blame] | 1231 | int async_err = 0; |
| 1232 | |
Victor Stinner | 66aab0c | 2015-03-19 22:53:20 +0100 | [diff] [blame] | 1233 | if (!_PyVerify_fd(fd)) { |
Victor Stinner | 82c3e45 | 2015-04-01 18:34:45 +0200 | [diff] [blame] | 1234 | if (gil_held) { |
| 1235 | /* save/restore errno because PyErr_SetFromErrno() can modify it */ |
| 1236 | err = errno; |
| 1237 | PyErr_SetFromErrno(PyExc_OSError); |
| 1238 | errno = err; |
| 1239 | } |
Victor Stinner | 66aab0c | 2015-03-19 22:53:20 +0100 | [diff] [blame] | 1240 | return -1; |
| 1241 | } |
| 1242 | |
Steve Dower | 8fc8980 | 2015-04-12 00:26:27 -0400 | [diff] [blame] | 1243 | _Py_BEGIN_SUPPRESS_IPH |
Victor Stinner | 66aab0c | 2015-03-19 22:53:20 +0100 | [diff] [blame] | 1244 | #ifdef MS_WINDOWS |
| 1245 | if (count > 32767 && isatty(fd)) { |
| 1246 | /* Issue #11395: the Windows console returns an error (12: not |
| 1247 | enough space error) on writing into stdout if stdout mode is |
| 1248 | binary and the length is greater than 66,000 bytes (or less, |
| 1249 | depending on heap usage). */ |
| 1250 | count = 32767; |
| 1251 | } |
| 1252 | else if (count > INT_MAX) |
| 1253 | count = INT_MAX; |
| 1254 | #else |
| 1255 | if (count > PY_SSIZE_T_MAX) { |
| 1256 | /* write() should truncate count to PY_SSIZE_T_MAX, but it's safer |
| 1257 | * to do it ourself to have a portable behaviour. */ |
| 1258 | count = PY_SSIZE_T_MAX; |
| 1259 | } |
| 1260 | #endif |
| 1261 | |
Victor Stinner | 82c3e45 | 2015-04-01 18:34:45 +0200 | [diff] [blame] | 1262 | if (gil_held) { |
| 1263 | do { |
| 1264 | Py_BEGIN_ALLOW_THREADS |
| 1265 | errno = 0; |
Victor Stinner | 66aab0c | 2015-03-19 22:53:20 +0100 | [diff] [blame] | 1266 | #ifdef MS_WINDOWS |
Victor Stinner | 82c3e45 | 2015-04-01 18:34:45 +0200 | [diff] [blame] | 1267 | n = write(fd, buf, (int)count); |
Victor Stinner | 66aab0c | 2015-03-19 22:53:20 +0100 | [diff] [blame] | 1268 | #else |
Victor Stinner | 82c3e45 | 2015-04-01 18:34:45 +0200 | [diff] [blame] | 1269 | n = write(fd, buf, count); |
Victor Stinner | 66aab0c | 2015-03-19 22:53:20 +0100 | [diff] [blame] | 1270 | #endif |
Victor Stinner | 82c3e45 | 2015-04-01 18:34:45 +0200 | [diff] [blame] | 1271 | /* save/restore errno because PyErr_CheckSignals() |
| 1272 | * and PyErr_SetFromErrno() can modify it */ |
| 1273 | err = errno; |
| 1274 | Py_END_ALLOW_THREADS |
| 1275 | } while (n < 0 && err == EINTR && |
| 1276 | !(async_err = PyErr_CheckSignals())); |
| 1277 | } |
| 1278 | else { |
| 1279 | do { |
| 1280 | errno = 0; |
| 1281 | #ifdef MS_WINDOWS |
| 1282 | n = write(fd, buf, (int)count); |
| 1283 | #else |
| 1284 | n = write(fd, buf, count); |
| 1285 | #endif |
| 1286 | err = errno; |
| 1287 | } while (n < 0 && err == EINTR); |
| 1288 | } |
Steve Dower | 8fc8980 | 2015-04-12 00:26:27 -0400 | [diff] [blame] | 1289 | _Py_END_SUPPRESS_IPH |
Victor Stinner | 66aab0c | 2015-03-19 22:53:20 +0100 | [diff] [blame] | 1290 | |
| 1291 | if (async_err) { |
| 1292 | /* write() was interrupted by a signal (failed with EINTR) |
Victor Stinner | 82c3e45 | 2015-04-01 18:34:45 +0200 | [diff] [blame] | 1293 | and the Python signal handler raised an exception (if gil_held is |
| 1294 | nonzero). */ |
Victor Stinner | a3c0202 | 2015-03-20 11:58:18 +0100 | [diff] [blame] | 1295 | errno = err; |
Victor Stinner | 82c3e45 | 2015-04-01 18:34:45 +0200 | [diff] [blame] | 1296 | assert(errno == EINTR && (!gil_held || PyErr_Occurred())); |
Victor Stinner | 66aab0c | 2015-03-19 22:53:20 +0100 | [diff] [blame] | 1297 | return -1; |
| 1298 | } |
| 1299 | if (n < 0) { |
Victor Stinner | 82c3e45 | 2015-04-01 18:34:45 +0200 | [diff] [blame] | 1300 | if (gil_held) |
| 1301 | PyErr_SetFromErrno(PyExc_OSError); |
Victor Stinner | a3c0202 | 2015-03-20 11:58:18 +0100 | [diff] [blame] | 1302 | errno = err; |
Victor Stinner | 66aab0c | 2015-03-19 22:53:20 +0100 | [diff] [blame] | 1303 | return -1; |
| 1304 | } |
| 1305 | |
| 1306 | return n; |
| 1307 | } |
| 1308 | |
Victor Stinner | 82c3e45 | 2015-04-01 18:34:45 +0200 | [diff] [blame] | 1309 | /* Write count bytes of buf into fd. |
| 1310 | |
| 1311 | On success, return the number of written bytes, it can be lower than count |
| 1312 | including 0. On error, raise an exception, set errno and return -1. |
| 1313 | |
| 1314 | When interrupted by a signal (write() fails with EINTR), retry the syscall. |
| 1315 | If the Python signal handler raises an exception, the function returns -1 |
| 1316 | (the syscall is not retried). |
| 1317 | |
| 1318 | Release the GIL to call write(). The caller must hold the GIL. */ |
| 1319 | Py_ssize_t |
| 1320 | _Py_write(int fd, const void *buf, size_t count) |
| 1321 | { |
| 1322 | /* _Py_write() must not be called with an exception set, otherwise the |
| 1323 | * caller may think that write() was interrupted by a signal and the signal |
| 1324 | * handler raised an exception. */ |
| 1325 | assert(!PyErr_Occurred()); |
| 1326 | |
| 1327 | return _Py_write_impl(fd, buf, count, 1); |
| 1328 | } |
| 1329 | |
| 1330 | /* Write count bytes of buf into fd. |
| 1331 | * |
| 1332 | * On success, return the number of written bytes, it can be lower than count |
| 1333 | * including 0. On error, set errno and return -1. |
| 1334 | * |
| 1335 | * When interrupted by a signal (write() fails with EINTR), retry the syscall |
| 1336 | * without calling the Python signal handler. */ |
| 1337 | Py_ssize_t |
| 1338 | _Py_write_noraise(int fd, const void *buf, size_t count) |
| 1339 | { |
| 1340 | return _Py_write_impl(fd, buf, count, 0); |
| 1341 | } |
| 1342 | |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1343 | #ifdef HAVE_READLINK |
Victor Stinner | 6672d0c | 2010-10-07 22:53:43 +0000 | [diff] [blame] | 1344 | |
| 1345 | /* Read value of symbolic link. Encode the path to the locale encoding, decode |
Victor Stinner | af02e1c | 2011-12-16 23:56:01 +0100 | [diff] [blame] | 1346 | the result from the locale encoding. Return -1 on error. */ |
Victor Stinner | 6672d0c | 2010-10-07 22:53:43 +0000 | [diff] [blame] | 1347 | |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1348 | int |
| 1349 | _Py_wreadlink(const wchar_t *path, wchar_t *buf, size_t bufsiz) |
| 1350 | { |
| 1351 | char *cpath; |
Victor Stinner | b11d6cb | 2013-11-15 18:14:11 +0100 | [diff] [blame] | 1352 | char cbuf[MAXPATHLEN]; |
Victor Stinner | 3f711f4 | 2010-10-16 22:47:37 +0000 | [diff] [blame] | 1353 | wchar_t *wbuf; |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1354 | int res; |
| 1355 | size_t r1; |
| 1356 | |
Victor Stinner | f6a271a | 2014-08-01 12:28:48 +0200 | [diff] [blame] | 1357 | cpath = Py_EncodeLocale(path, NULL); |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1358 | if (cpath == NULL) { |
| 1359 | errno = EINVAL; |
| 1360 | return -1; |
| 1361 | } |
Victor Stinner | b11d6cb | 2013-11-15 18:14:11 +0100 | [diff] [blame] | 1362 | res = (int)readlink(cpath, cbuf, Py_ARRAY_LENGTH(cbuf)); |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1363 | PyMem_Free(cpath); |
| 1364 | if (res == -1) |
| 1365 | return -1; |
Victor Stinner | b11d6cb | 2013-11-15 18:14:11 +0100 | [diff] [blame] | 1366 | if (res == Py_ARRAY_LENGTH(cbuf)) { |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1367 | errno = EINVAL; |
| 1368 | return -1; |
| 1369 | } |
| 1370 | cbuf[res] = '\0'; /* buf will be null terminated */ |
Victor Stinner | f6a271a | 2014-08-01 12:28:48 +0200 | [diff] [blame] | 1371 | wbuf = Py_DecodeLocale(cbuf, &r1); |
Victor Stinner | 350147b | 2010-10-16 22:52:09 +0000 | [diff] [blame] | 1372 | if (wbuf == NULL) { |
| 1373 | errno = EINVAL; |
| 1374 | return -1; |
| 1375 | } |
Victor Stinner | 3f711f4 | 2010-10-16 22:47:37 +0000 | [diff] [blame] | 1376 | if (bufsiz <= r1) { |
Victor Stinner | 1a7425f | 2013-07-07 16:25:15 +0200 | [diff] [blame] | 1377 | PyMem_RawFree(wbuf); |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1378 | errno = EINVAL; |
| 1379 | return -1; |
| 1380 | } |
Victor Stinner | 3f711f4 | 2010-10-16 22:47:37 +0000 | [diff] [blame] | 1381 | wcsncpy(buf, wbuf, bufsiz); |
Victor Stinner | 1a7425f | 2013-07-07 16:25:15 +0200 | [diff] [blame] | 1382 | PyMem_RawFree(wbuf); |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1383 | return (int)r1; |
| 1384 | } |
| 1385 | #endif |
| 1386 | |
| 1387 | #ifdef HAVE_REALPATH |
Victor Stinner | 6672d0c | 2010-10-07 22:53:43 +0000 | [diff] [blame] | 1388 | |
| 1389 | /* Return the canonicalized absolute pathname. Encode path to the locale |
Victor Stinner | af02e1c | 2011-12-16 23:56:01 +0100 | [diff] [blame] | 1390 | encoding, decode the result from the locale encoding. |
| 1391 | Return NULL on error. */ |
Victor Stinner | 6672d0c | 2010-10-07 22:53:43 +0000 | [diff] [blame] | 1392 | |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1393 | wchar_t* |
Victor Stinner | 015f4d8 | 2010-10-07 22:29:53 +0000 | [diff] [blame] | 1394 | _Py_wrealpath(const wchar_t *path, |
| 1395 | wchar_t *resolved_path, size_t resolved_path_size) |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1396 | { |
| 1397 | char *cpath; |
Victor Stinner | b11d6cb | 2013-11-15 18:14:11 +0100 | [diff] [blame] | 1398 | char cresolved_path[MAXPATHLEN]; |
Victor Stinner | 0a1b8cb | 2010-10-16 22:55:47 +0000 | [diff] [blame] | 1399 | wchar_t *wresolved_path; |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1400 | char *res; |
| 1401 | size_t r; |
Victor Stinner | f6a271a | 2014-08-01 12:28:48 +0200 | [diff] [blame] | 1402 | cpath = Py_EncodeLocale(path, NULL); |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1403 | if (cpath == NULL) { |
| 1404 | errno = EINVAL; |
| 1405 | return NULL; |
| 1406 | } |
| 1407 | res = realpath(cpath, cresolved_path); |
| 1408 | PyMem_Free(cpath); |
| 1409 | if (res == NULL) |
| 1410 | return NULL; |
Victor Stinner | 0a1b8cb | 2010-10-16 22:55:47 +0000 | [diff] [blame] | 1411 | |
Victor Stinner | f6a271a | 2014-08-01 12:28:48 +0200 | [diff] [blame] | 1412 | wresolved_path = Py_DecodeLocale(cresolved_path, &r); |
Victor Stinner | 0a1b8cb | 2010-10-16 22:55:47 +0000 | [diff] [blame] | 1413 | if (wresolved_path == NULL) { |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1414 | errno = EINVAL; |
| 1415 | return NULL; |
| 1416 | } |
Victor Stinner | 0a1b8cb | 2010-10-16 22:55:47 +0000 | [diff] [blame] | 1417 | if (resolved_path_size <= r) { |
Victor Stinner | 1a7425f | 2013-07-07 16:25:15 +0200 | [diff] [blame] | 1418 | PyMem_RawFree(wresolved_path); |
Victor Stinner | 0a1b8cb | 2010-10-16 22:55:47 +0000 | [diff] [blame] | 1419 | errno = EINVAL; |
| 1420 | return NULL; |
| 1421 | } |
| 1422 | wcsncpy(resolved_path, wresolved_path, resolved_path_size); |
Victor Stinner | 1a7425f | 2013-07-07 16:25:15 +0200 | [diff] [blame] | 1423 | PyMem_RawFree(wresolved_path); |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1424 | return resolved_path; |
| 1425 | } |
| 1426 | #endif |
| 1427 | |
Victor Stinner | f4061da | 2010-10-14 12:37:19 +0000 | [diff] [blame] | 1428 | /* Get the current directory. size is the buffer size in wide characters |
Victor Stinner | af02e1c | 2011-12-16 23:56:01 +0100 | [diff] [blame] | 1429 | including the null character. Decode the path from the locale encoding. |
| 1430 | Return NULL on error. */ |
Victor Stinner | 6672d0c | 2010-10-07 22:53:43 +0000 | [diff] [blame] | 1431 | |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1432 | wchar_t* |
| 1433 | _Py_wgetcwd(wchar_t *buf, size_t size) |
| 1434 | { |
| 1435 | #ifdef MS_WINDOWS |
Victor Stinner | 56785ea | 2013-06-05 00:46:29 +0200 | [diff] [blame] | 1436 | int isize = (int)Py_MIN(size, INT_MAX); |
| 1437 | return _wgetcwd(buf, isize); |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1438 | #else |
Victor Stinner | b11d6cb | 2013-11-15 18:14:11 +0100 | [diff] [blame] | 1439 | char fname[MAXPATHLEN]; |
Victor Stinner | f4061da | 2010-10-14 12:37:19 +0000 | [diff] [blame] | 1440 | wchar_t *wname; |
Victor Stinner | 168e117 | 2010-10-16 23:16:16 +0000 | [diff] [blame] | 1441 | size_t len; |
Victor Stinner | f4061da | 2010-10-14 12:37:19 +0000 | [diff] [blame] | 1442 | |
Victor Stinner | b11d6cb | 2013-11-15 18:14:11 +0100 | [diff] [blame] | 1443 | if (getcwd(fname, Py_ARRAY_LENGTH(fname)) == NULL) |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1444 | return NULL; |
Victor Stinner | f6a271a | 2014-08-01 12:28:48 +0200 | [diff] [blame] | 1445 | wname = Py_DecodeLocale(fname, &len); |
Victor Stinner | f4061da | 2010-10-14 12:37:19 +0000 | [diff] [blame] | 1446 | if (wname == NULL) |
| 1447 | return NULL; |
Victor Stinner | 168e117 | 2010-10-16 23:16:16 +0000 | [diff] [blame] | 1448 | if (size <= len) { |
Victor Stinner | 1a7425f | 2013-07-07 16:25:15 +0200 | [diff] [blame] | 1449 | PyMem_RawFree(wname); |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1450 | return NULL; |
| 1451 | } |
Victor Stinner | f4061da | 2010-10-14 12:37:19 +0000 | [diff] [blame] | 1452 | wcsncpy(buf, wname, size); |
Victor Stinner | 1a7425f | 2013-07-07 16:25:15 +0200 | [diff] [blame] | 1453 | PyMem_RawFree(wname); |
Victor Stinner | 4e31443 | 2010-10-07 21:45:39 +0000 | [diff] [blame] | 1454 | return buf; |
| 1455 | #endif |
| 1456 | } |
| 1457 | |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 1458 | /* Duplicate a file descriptor. The new file descriptor is created as |
| 1459 | non-inheritable. Return a new file descriptor on success, raise an OSError |
| 1460 | exception and return -1 on error. |
| 1461 | |
| 1462 | The GIL is released to call dup(). The caller must hold the GIL. */ |
| 1463 | int |
| 1464 | _Py_dup(int fd) |
| 1465 | { |
| 1466 | #ifdef MS_WINDOWS |
| 1467 | HANDLE handle; |
| 1468 | DWORD ftype; |
| 1469 | #endif |
| 1470 | |
| 1471 | if (!_PyVerify_fd(fd)) { |
| 1472 | PyErr_SetFromErrno(PyExc_OSError); |
| 1473 | return -1; |
| 1474 | } |
| 1475 | |
| 1476 | #ifdef MS_WINDOWS |
Steve Dower | 8fc8980 | 2015-04-12 00:26:27 -0400 | [diff] [blame] | 1477 | _Py_BEGIN_SUPPRESS_IPH |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 1478 | handle = (HANDLE)_get_osfhandle(fd); |
Steve Dower | 8fc8980 | 2015-04-12 00:26:27 -0400 | [diff] [blame] | 1479 | _Py_END_SUPPRESS_IPH |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 1480 | if (handle == INVALID_HANDLE_VALUE) { |
Steve Dower | 41e7244 | 2015-03-14 11:38:27 -0700 | [diff] [blame] | 1481 | PyErr_SetFromErrno(PyExc_OSError); |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 1482 | return -1; |
| 1483 | } |
| 1484 | |
| 1485 | /* get the file type, ignore the error if it failed */ |
| 1486 | ftype = GetFileType(handle); |
| 1487 | |
| 1488 | Py_BEGIN_ALLOW_THREADS |
Steve Dower | 8fc8980 | 2015-04-12 00:26:27 -0400 | [diff] [blame] | 1489 | _Py_BEGIN_SUPPRESS_IPH |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 1490 | fd = dup(fd); |
Steve Dower | 8fc8980 | 2015-04-12 00:26:27 -0400 | [diff] [blame] | 1491 | _Py_END_SUPPRESS_IPH |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 1492 | Py_END_ALLOW_THREADS |
| 1493 | if (fd < 0) { |
| 1494 | PyErr_SetFromErrno(PyExc_OSError); |
| 1495 | return -1; |
| 1496 | } |
| 1497 | |
| 1498 | /* Character files like console cannot be make non-inheritable */ |
| 1499 | if (ftype != FILE_TYPE_CHAR) { |
| 1500 | if (_Py_set_inheritable(fd, 0, NULL) < 0) { |
Steve Dower | 8fc8980 | 2015-04-12 00:26:27 -0400 | [diff] [blame] | 1501 | _Py_BEGIN_SUPPRESS_IPH |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 1502 | close(fd); |
Steve Dower | 8fc8980 | 2015-04-12 00:26:27 -0400 | [diff] [blame] | 1503 | _Py_END_SUPPRESS_IPH |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 1504 | return -1; |
| 1505 | } |
| 1506 | } |
| 1507 | #elif defined(HAVE_FCNTL_H) && defined(F_DUPFD_CLOEXEC) |
| 1508 | Py_BEGIN_ALLOW_THREADS |
Steve Dower | 8fc8980 | 2015-04-12 00:26:27 -0400 | [diff] [blame] | 1509 | _Py_BEGIN_SUPPRESS_IPH |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 1510 | fd = fcntl(fd, F_DUPFD_CLOEXEC, 0); |
Steve Dower | 8fc8980 | 2015-04-12 00:26:27 -0400 | [diff] [blame] | 1511 | _Py_END_SUPPRESS_IPH |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 1512 | Py_END_ALLOW_THREADS |
| 1513 | if (fd < 0) { |
| 1514 | PyErr_SetFromErrno(PyExc_OSError); |
| 1515 | return -1; |
| 1516 | } |
| 1517 | |
| 1518 | #else |
| 1519 | Py_BEGIN_ALLOW_THREADS |
Steve Dower | 8fc8980 | 2015-04-12 00:26:27 -0400 | [diff] [blame] | 1520 | _Py_BEGIN_SUPPRESS_IPH |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 1521 | fd = dup(fd); |
Steve Dower | 8fc8980 | 2015-04-12 00:26:27 -0400 | [diff] [blame] | 1522 | _Py_END_SUPPRESS_IPH |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 1523 | Py_END_ALLOW_THREADS |
| 1524 | if (fd < 0) { |
| 1525 | PyErr_SetFromErrno(PyExc_OSError); |
| 1526 | return -1; |
| 1527 | } |
| 1528 | |
| 1529 | if (_Py_set_inheritable(fd, 0, NULL) < 0) { |
Steve Dower | 8fc8980 | 2015-04-12 00:26:27 -0400 | [diff] [blame] | 1530 | _Py_BEGIN_SUPPRESS_IPH |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 1531 | close(fd); |
Steve Dower | 8fc8980 | 2015-04-12 00:26:27 -0400 | [diff] [blame] | 1532 | _Py_END_SUPPRESS_IPH |
Victor Stinner | daf4555 | 2013-08-28 00:53:59 +0200 | [diff] [blame] | 1533 | return -1; |
| 1534 | } |
| 1535 | #endif |
| 1536 | return fd; |
| 1537 | } |
| 1538 | |
Victor Stinner | 1db9e7b | 2014-07-29 22:32:47 +0200 | [diff] [blame] | 1539 | #ifndef MS_WINDOWS |
| 1540 | /* Get the blocking mode of the file descriptor. |
| 1541 | Return 0 if the O_NONBLOCK flag is set, 1 if the flag is cleared, |
| 1542 | raise an exception and return -1 on error. */ |
| 1543 | int |
| 1544 | _Py_get_blocking(int fd) |
| 1545 | { |
Steve Dower | 8fc8980 | 2015-04-12 00:26:27 -0400 | [diff] [blame] | 1546 | int flags; |
| 1547 | _Py_BEGIN_SUPPRESS_IPH |
| 1548 | flags = fcntl(fd, F_GETFL, 0); |
| 1549 | _Py_END_SUPPRESS_IPH |
Victor Stinner | 1db9e7b | 2014-07-29 22:32:47 +0200 | [diff] [blame] | 1550 | if (flags < 0) { |
| 1551 | PyErr_SetFromErrno(PyExc_OSError); |
| 1552 | return -1; |
| 1553 | } |
| 1554 | |
| 1555 | return !(flags & O_NONBLOCK); |
| 1556 | } |
| 1557 | |
| 1558 | /* Set the blocking mode of the specified file descriptor. |
| 1559 | |
| 1560 | Set the O_NONBLOCK flag if blocking is False, clear the O_NONBLOCK flag |
| 1561 | otherwise. |
| 1562 | |
| 1563 | Return 0 on success, raise an exception and return -1 on error. */ |
| 1564 | int |
| 1565 | _Py_set_blocking(int fd, int blocking) |
| 1566 | { |
| 1567 | #if defined(HAVE_SYS_IOCTL_H) && defined(FIONBIO) |
| 1568 | int arg = !blocking; |
| 1569 | if (ioctl(fd, FIONBIO, &arg) < 0) |
| 1570 | goto error; |
| 1571 | #else |
| 1572 | int flags, res; |
| 1573 | |
Steve Dower | 8fc8980 | 2015-04-12 00:26:27 -0400 | [diff] [blame] | 1574 | _Py_BEGIN_SUPPRESS_IPH |
Victor Stinner | 1db9e7b | 2014-07-29 22:32:47 +0200 | [diff] [blame] | 1575 | flags = fcntl(fd, F_GETFL, 0); |
Steve Dower | 8fc8980 | 2015-04-12 00:26:27 -0400 | [diff] [blame] | 1576 | if (flags >= 0) { |
| 1577 | if (blocking) |
| 1578 | flags = flags & (~O_NONBLOCK); |
| 1579 | else |
| 1580 | flags = flags | O_NONBLOCK; |
Victor Stinner | 1db9e7b | 2014-07-29 22:32:47 +0200 | [diff] [blame] | 1581 | |
Steve Dower | 8fc8980 | 2015-04-12 00:26:27 -0400 | [diff] [blame] | 1582 | res = fcntl(fd, F_SETFL, flags); |
| 1583 | } else { |
| 1584 | res = -1; |
| 1585 | } |
| 1586 | _Py_END_SUPPRESS_IPH |
Victor Stinner | 1db9e7b | 2014-07-29 22:32:47 +0200 | [diff] [blame] | 1587 | |
Victor Stinner | 1db9e7b | 2014-07-29 22:32:47 +0200 | [diff] [blame] | 1588 | if (res < 0) |
| 1589 | goto error; |
| 1590 | #endif |
| 1591 | return 0; |
| 1592 | |
| 1593 | error: |
| 1594 | PyErr_SetFromErrno(PyExc_OSError); |
| 1595 | return -1; |
| 1596 | } |
| 1597 | #endif |
| 1598 | |
Steve Dower | 8fc8980 | 2015-04-12 00:26:27 -0400 | [diff] [blame] | 1599 | #if defined _MSC_VER && _MSC_VER >= 1400 && _MSC_VER < 1900 |
Steve Dower | d81431f | 2015-03-06 14:47:02 -0800 | [diff] [blame] | 1600 | /* Legacy implementation of _PyVerify_fd while transitioning to |
| 1601 | * MSVC 14.0. This should eventually be removed. (issue23524) |
| 1602 | */ |
| 1603 | |
| 1604 | /* Microsoft CRT in VS2005 and higher will verify that a filehandle is |
| 1605 | * valid and raise an assertion if it isn't. |
| 1606 | * Normally, an invalid fd is likely to be a C program error and therefore |
| 1607 | * an assertion can be useful, but it does contradict the POSIX standard |
| 1608 | * which for write(2) states: |
| 1609 | * "Otherwise, -1 shall be returned and errno set to indicate the error." |
| 1610 | * "[EBADF] The fildes argument is not a valid file descriptor open for |
| 1611 | * writing." |
| 1612 | * Furthermore, python allows the user to enter any old integer |
| 1613 | * as a fd and should merely raise a python exception on error. |
| 1614 | * The Microsoft CRT doesn't provide an official way to check for the |
| 1615 | * validity of a file descriptor, but we can emulate its internal behaviour |
| 1616 | * by using the exported __pinfo data member and knowledge of the |
| 1617 | * internal structures involved. |
| 1618 | * The structures below must be updated for each version of visual studio |
| 1619 | * according to the file internal.h in the CRT source, until MS comes |
| 1620 | * up with a less hacky way to do this. |
| 1621 | * (all of this is to avoid globally modifying the CRT behaviour using |
| 1622 | * _set_invalid_parameter_handler() and _CrtSetReportMode()) |
| 1623 | */ |
| 1624 | /* The actual size of the structure is determined at runtime. |
| 1625 | * Only the first items must be present. |
| 1626 | */ |
| 1627 | typedef struct { |
| 1628 | intptr_t osfhnd; |
| 1629 | char osfile; |
| 1630 | } my_ioinfo; |
| 1631 | |
| 1632 | extern __declspec(dllimport) char * __pioinfo[]; |
| 1633 | #define IOINFO_L2E 5 |
| 1634 | #define IOINFO_ARRAYS 64 |
| 1635 | #define IOINFO_ARRAY_ELTS (1 << IOINFO_L2E) |
| 1636 | #define _NHANDLE_ (IOINFO_ARRAYS * IOINFO_ARRAY_ELTS) |
| 1637 | #define FOPEN 0x01 |
| 1638 | #define _NO_CONSOLE_FILENO (intptr_t)-2 |
| 1639 | |
| 1640 | /* This function emulates what the windows CRT does to validate file handles */ |
| 1641 | int |
| 1642 | _PyVerify_fd(int fd) |
| 1643 | { |
| 1644 | const int i1 = fd >> IOINFO_L2E; |
| 1645 | const int i2 = fd & ((1 << IOINFO_L2E) - 1); |
| 1646 | |
| 1647 | static size_t sizeof_ioinfo = 0; |
| 1648 | |
| 1649 | /* Determine the actual size of the ioinfo structure, |
| 1650 | * as used by the CRT loaded in memory |
| 1651 | */ |
| 1652 | if (sizeof_ioinfo == 0 && __pioinfo[0] != NULL) { |
| 1653 | sizeof_ioinfo = _msize(__pioinfo[0]) / IOINFO_ARRAY_ELTS; |
| 1654 | } |
| 1655 | if (sizeof_ioinfo == 0) { |
| 1656 | /* This should not happen... */ |
| 1657 | goto fail; |
| 1658 | } |
| 1659 | |
| 1660 | /* See that it isn't a special CLEAR fileno */ |
| 1661 | if (fd != _NO_CONSOLE_FILENO) { |
| 1662 | /* Microsoft CRT would check that 0<=fd<_nhandle but we can't do that. Instead |
| 1663 | * we check pointer validity and other info |
| 1664 | */ |
| 1665 | if (0 <= i1 && i1 < IOINFO_ARRAYS && __pioinfo[i1] != NULL) { |
| 1666 | /* finally, check that the file is open */ |
| 1667 | my_ioinfo* info = (my_ioinfo*)(__pioinfo[i1] + i2 * sizeof_ioinfo); |
| 1668 | if (info->osfile & FOPEN) { |
| 1669 | return 1; |
| 1670 | } |
| 1671 | } |
| 1672 | } |
| 1673 | fail: |
| 1674 | errno = EBADF; |
| 1675 | return 0; |
| 1676 | } |
| 1677 | |
Steve Dower | 8fc8980 | 2015-04-12 00:26:27 -0400 | [diff] [blame] | 1678 | #endif /* defined _MSC_VER && _MSC_VER >= 1400 && _MSC_VER < 1900 */ |