Date: Mon, 3 Jan 2022 00:35:39 +0100 From: Stefan Esser <se@freebsd.org> To: Konstantin Belousov <kostikbel@gmail.com> Cc: Antoine Brodin <antoine@freebsd.org>, Konstantin Belousov <kib@freebsd.org>, src-committers <src-committers@freebsd.org>, dev-commits-src-all@freebsd.org, dev-commits-src-main@freebsd.org, FreeBSD Ports Management Team <portmgr@freebsd.org> Subject: Re: git: e2650af157bc - main - Make CPU_SET macros compliant with other implementations Message-ID: <64aa958f-7a17-b504-b414-bdcbe7da5f51@freebsd.org> In-Reply-To: <YdIkPotPUKVwgCuF@kib.kiev.ua> References: <202112301154.1BUBsR1q017491@gitrepo.freebsd.org> <CAALwa8m3u3xrO3N0j8um57qGTVnMEQwx1gP2YxJbzE5%2BLhbsWA@mail.gmail.com> <d1553b68-23dd-128e-6ac0-6c3c1f66c7cd@freebsd.org> <CAALwa8kn9h%2BKn53RvKX1Vx%2BqFK2Txt-sqj80nTSJUFC1U=8AGg@mail.gmail.com> <9dffb50a-9374-be91-8007-ce8933571398@freebsd.org> <YdIkPotPUKVwgCuF@kib.kiev.ua>
next in thread | previous in thread | raw e-mail | index | archive | help
This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --------------dWcSTMnRWBk566yLqYyuhRR2 Content-Type: multipart/mixed; boundary="------------j1mDdjO0u8khgCaAYp0y9vbn"; protected-headers="v1" From: Stefan Esser <se@freebsd.org> To: Konstantin Belousov <kostikbel@gmail.com> Cc: Antoine Brodin <antoine@freebsd.org>, Konstantin Belousov <kib@freebsd.org>, src-committers <src-committers@freebsd.org>, dev-commits-src-all@freebsd.org, dev-commits-src-main@freebsd.org, FreeBSD Ports Management Team <portmgr@freebsd.org> Message-ID: <64aa958f-7a17-b504-b414-bdcbe7da5f51@freebsd.org> Subject: Re: git: e2650af157bc - main - Make CPU_SET macros compliant with other implementations References: <202112301154.1BUBsR1q017491@gitrepo.freebsd.org> <CAALwa8m3u3xrO3N0j8um57qGTVnMEQwx1gP2YxJbzE5+LhbsWA@mail.gmail.com> <d1553b68-23dd-128e-6ac0-6c3c1f66c7cd@freebsd.org> <CAALwa8kn9h+Kn53RvKX1Vx+qFK2Txt-sqj80nTSJUFC1U=8AGg@mail.gmail.com> <9dffb50a-9374-be91-8007-ce8933571398@freebsd.org> <YdIkPotPUKVwgCuF@kib.kiev.ua> In-Reply-To: <YdIkPotPUKVwgCuF@kib.kiev.ua> --------------j1mDdjO0u8khgCaAYp0y9vbn Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Am 02.01.22 um 23:16 schrieb Konstantin Belousov: > On Sun, Jan 02, 2022 at 10:45:14PM +0100, Stefan Esser wrote: >> Am 02.01.22 um 20:51 schrieb Antoine Brodin: [...] >> Python 3.8.12 (default, Dec 31 2021, 10:50:47) >>>>> import os >>>>> os.sched_getaffinity(0) >> Traceback (most recent call last): >> File "<stdin>", line 1, in <module> >> OSError: [Errno 34] Result too large >> >> This is a Python interpreter problem: it seems that the wrapper >> for the sched_getaffinity() function that has been introduced by >> kib in <sched.h> is buggy. >> >> As a work-around I have added a patch to comment out the >> os.sched_getaffinity(0) call (which used to cause an Attribute >> error that was caught by try/except, before). >> >> See ports commit 507c189b2876. >=20 > Buggy in which way? My assumption was that the wrapper in the Python interpreter in Modules/posixmodules.c function os_sched_getaffinity_impl() does not work with the FreeBSD implementation of sched_getaffinity(). The relevant code in the Python wrapper is: ncpus =3D NCPUS_START; while (1) { setsize =3D CPU_ALLOC_SIZE(ncpus); mask =3D CPU_ALLOC(ncpus); if (mask =3D=3D NULL) return PyErr_NoMemory(); if (sched_getaffinity(pid, setsize, mask) =3D=3D 0) break; CPU_FREE(mask); if (errno !=3D EINVAL) return posix_error(); if (ncpus > INT_MAX / 2) { PyErr_SetString(PyExc_OverflowError, "could not allocate " "a large enough CPU set"); return NULL; } ncpus =3D ncpus * 2; } NCPUS_START is 8 * sizeof(unsigned long) =3D 64 on a 64 bit CPU. > Our cpuset_getaffinity(2) syscall returns ERANGE for cpuset size not > equal to CPU_SETSIZE. It seems that python source expects EINVAL in > this case. Yes, anything except EINVAL will cause the loop to exit prematurely. > I can change the wrapper to translate ERANGE to EINVAL. sched_setaffin= ity() > probably would require a symmetrical patch, but lets postpone it. Yes. > diff --git a/lib/libc/gen/sched_getaffinity.c b/lib/libc/gen/sched_geta= ffinity.c > index 2ae8c5b763a3..8748d7a60278 100644 > --- a/lib/libc/gen/sched_getaffinity.c > +++ b/lib/libc/gen/sched_getaffinity.c > @@ -26,11 +26,29 @@ > * SUCH DAMAGE. > */ > =20 > +#include <errno.h> > #include <sched.h> > +#include <string.h> > =20 > int > sched_getaffinity(pid_t pid, size_t cpusetsz, cpuset_t *cpuset) > { > + /* > + * Be more Linux-compatible: > + * - return EINVAL in passed size is less than size of cpuset_t > + * in advance, instead of ERANGE from the syscall > + * - if passed size is larger than the size of cpuset_t, be > + * permissive by claming it back to sizeof(cpuset_t) and > + * zeroing the rest. > + */ > + if (cpusetsz < sizeof(cpuset_t)) > + return (EINVAL); > + if (cpusetsz > sizeof(cpuset_t)) { > + memset((char *)cpuset + sizeof(cpuset_t), 0, > + cpusetsz - sizeof(cpuset_t)); > + cpusetsz =3D sizeof(cpuset_t); > + } > + > return (cpuset_getaffinity(CPU_LEVEL_WHICH, CPU_WHICH_PID, > pid =3D=3D 0 ? -1 : pid, cpusetsz, cpuset)); > } I have rebuilt the C library with this patch, but it did not fix the problem, since the value checked in the loop is errno, not the return code of sched_getaffinity(). The following code is tested to work: #include <errno.h> #include <sched.h> int sched_getaffinity(pid_t pid, size_t cpusetsz, cpuset_t *cpuset) { int result; result =3D cpuset_getaffinity(CPU_LEVEL_WHICH, CPU_WHICH_PID, pid =3D=3D 0 ? -1 : pid, cpusetsz, cpuset); if (result && errno =3D=3D ERANGE) errno =3D EINVAL; return (result); } Regards, STefan --------------j1mDdjO0u8khgCaAYp0y9vbn-- --------------dWcSTMnRWBk566yLqYyuhRR2 Content-Type: application/pgp-signature; name="OpenPGP_signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="OpenPGP_signature" -----BEGIN PGP SIGNATURE----- wsB5BAABCAAjFiEEo3HqZZwL7MgrcVMTR+u171r99UQFAmHSNssFAwAAAAAACgkQR+u171r99US7 Xgf/SCx57At7J5uJsebLvOQrNHTJ232ARcmr5g/ZiFx/ORKUBf0xRv3PcvWs+era3vfmxPLj7LL6 GNLB6Bw20UJrOFsU4/4UoLIymeRqYfr5x4L3XBnlcNutey2AEnkU3fgVtEcx6KjuIdxHJXPNqrnI iFFk6siG5Uy/6wPv2pxNO8xu7SFhWgSM7I7m0//Mua9+qkd1tmKUfyhx+6tYNpkkhWXJAxTAn4e6 K0S9sK16BXIZco7ZwtuqzbVZV6uV7JEfdlKG05mDOpc1HpOrb8cNYjb83M+EzmJ+9c2NH2eLr4sO FEe7tu23g7yvf/BSCnw3okTJ1ywebB0aoyQqFMB9eg== =EJNb -----END PGP SIGNATURE----- --------------dWcSTMnRWBk566yLqYyuhRR2--
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?64aa958f-7a17-b504-b414-bdcbe7da5f51>