mirror of https://github.com/python/cpython
gh-116622: Fix testPyObjectPrintOSError on Android (#122487)
Adds extra handling for way BSD/Android return errors from calls to fwrite.
This commit is contained in:
parent
29c04dfa27
commit
82db572813
|
@ -1,6 +1,7 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
|
from glob import glob
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
import shutil
|
import shutil
|
||||||
|
@ -16,16 +17,21 @@ CHECKOUT = Path(__file__).resolve().parent.parent
|
||||||
CROSS_BUILD_DIR = CHECKOUT / "cross-build"
|
CROSS_BUILD_DIR = CHECKOUT / "cross-build"
|
||||||
|
|
||||||
|
|
||||||
def delete_if_exists(path):
|
def delete_glob(pattern):
|
||||||
if path.exists():
|
# Path.glob doesn't accept non-relative patterns.
|
||||||
|
for path in glob(str(pattern)):
|
||||||
|
path = Path(path)
|
||||||
print(f"Deleting {path} ...")
|
print(f"Deleting {path} ...")
|
||||||
shutil.rmtree(path)
|
if path.is_dir() and not path.is_symlink():
|
||||||
|
shutil.rmtree(path)
|
||||||
|
else:
|
||||||
|
path.unlink()
|
||||||
|
|
||||||
|
|
||||||
def subdir(name, *, clean=None):
|
def subdir(name, *, clean=None):
|
||||||
path = CROSS_BUILD_DIR / name
|
path = CROSS_BUILD_DIR / name
|
||||||
if clean:
|
if clean:
|
||||||
delete_if_exists(path)
|
delete_glob(path)
|
||||||
if not path.exists():
|
if not path.exists():
|
||||||
if clean is None:
|
if clean is None:
|
||||||
sys.exit(
|
sys.exit(
|
||||||
|
@ -150,10 +156,17 @@ def configure_host_python(context):
|
||||||
|
|
||||||
|
|
||||||
def make_host_python(context):
|
def make_host_python(context):
|
||||||
|
# The CFLAGS and LDFLAGS set in android-env include the prefix dir, so
|
||||||
|
# delete any previously-installed Python libs and include files to prevent
|
||||||
|
# them being used during the build.
|
||||||
host_dir = subdir(context.host)
|
host_dir = subdir(context.host)
|
||||||
|
prefix_dir = host_dir / "prefix"
|
||||||
|
delete_glob(f"{prefix_dir}/include/python*")
|
||||||
|
delete_glob(f"{prefix_dir}/lib/libpython*")
|
||||||
|
|
||||||
os.chdir(host_dir / "build")
|
os.chdir(host_dir / "build")
|
||||||
run(["make", "-j", str(os.cpu_count())], host=context.host)
|
run(["make", "-j", str(os.cpu_count())], host=context.host)
|
||||||
run(["make", "install", f"prefix={host_dir}/prefix"], host=context.host)
|
run(["make", "install", f"prefix={prefix_dir}"], host=context.host)
|
||||||
|
|
||||||
|
|
||||||
def build_all(context):
|
def build_all(context):
|
||||||
|
@ -164,7 +177,7 @@ def build_all(context):
|
||||||
|
|
||||||
|
|
||||||
def clean_all(context):
|
def clean_all(context):
|
||||||
delete_if_exists(CROSS_BUILD_DIR)
|
delete_glob(CROSS_BUILD_DIR)
|
||||||
|
|
||||||
|
|
||||||
# To avoid distributing compiled artifacts without corresponding source code,
|
# To avoid distributing compiled artifacts without corresponding source code,
|
||||||
|
|
|
@ -7,10 +7,17 @@ plugins {
|
||||||
|
|
||||||
val PYTHON_DIR = File(projectDir, "../../..").canonicalPath
|
val PYTHON_DIR = File(projectDir, "../../..").canonicalPath
|
||||||
val PYTHON_CROSS_DIR = "$PYTHON_DIR/cross-build"
|
val PYTHON_CROSS_DIR = "$PYTHON_DIR/cross-build"
|
||||||
|
|
||||||
val ABIS = mapOf(
|
val ABIS = mapOf(
|
||||||
"arm64-v8a" to "aarch64-linux-android",
|
"arm64-v8a" to "aarch64-linux-android",
|
||||||
"x86_64" to "x86_64-linux-android",
|
"x86_64" to "x86_64-linux-android",
|
||||||
)
|
).filter { File("$PYTHON_CROSS_DIR/${it.value}").exists() }
|
||||||
|
if (ABIS.isEmpty()) {
|
||||||
|
throw GradleException(
|
||||||
|
"No Android ABIs found in $PYTHON_CROSS_DIR: see Android/README.md " +
|
||||||
|
"for building instructions."
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
val PYTHON_VERSION = File("$PYTHON_DIR/Include/patchlevel.h").useLines {
|
val PYTHON_VERSION = File("$PYTHON_DIR/Include/patchlevel.h").useLines {
|
||||||
for (line in it) {
|
for (line in it) {
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
Make :any:`PyObject_Print` work around a bug in Android and OpenBSD which
|
||||||
|
prevented it from throwing an exception when trying to write to a read-only
|
||||||
|
stream.
|
|
@ -536,6 +536,7 @@ int
|
||||||
PyObject_Print(PyObject *op, FILE *fp, int flags)
|
PyObject_Print(PyObject *op, FILE *fp, int flags)
|
||||||
{
|
{
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
|
int write_error = 0;
|
||||||
if (PyErr_CheckSignals())
|
if (PyErr_CheckSignals())
|
||||||
return -1;
|
return -1;
|
||||||
#ifdef USE_STACKCHECK
|
#ifdef USE_STACKCHECK
|
||||||
|
@ -574,14 +575,20 @@ PyObject_Print(PyObject *op, FILE *fp, int flags)
|
||||||
ret = -1;
|
ret = -1;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
fwrite(t, 1, len, fp);
|
/* Versions of Android and OpenBSD from before 2023 fail to
|
||||||
|
set the `ferror` indicator when writing to a read-only
|
||||||
|
stream, so we need to check the return value.
|
||||||
|
(https://github.com/openbsd/src/commit/fc99cf9338942ecd9adc94ea08bf6188f0428c15) */
|
||||||
|
if (fwrite(t, 1, len, fp) != (size_t)len) {
|
||||||
|
write_error = 1;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
Py_DECREF(s);
|
Py_DECREF(s);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (ret == 0) {
|
if (ret == 0) {
|
||||||
if (ferror(fp)) {
|
if (write_error || ferror(fp)) {
|
||||||
PyErr_SetFromErrno(PyExc_OSError);
|
PyErr_SetFromErrno(PyExc_OSError);
|
||||||
clearerr(fp);
|
clearerr(fp);
|
||||||
ret = -1;
|
ret = -1;
|
||||||
|
|
Loading…
Reference in New Issue