mirror of https://github.com/python/cpython
[3.13] gh-125118: don't copy arbitrary values to _Bool in the struct module (GH-125169) (#125263)
memcopy'ing arbitrary values to _Bool variable triggers undefined
behaviour. Avoid this.
We assume that `false` is represented by all zero bytes.
Credits to Alex Gaynor.
(cherry picked from commit 87d7315ac5
)
Co-authored-by: Sam Gross <colesbury@gmail.com>
Co-authored-by: Victor Stinner <vstinner@python.org>
Co-authored-by: Petr Viktorin <encukou@gmail.com>
This commit is contained in:
parent
0c43d60e7d
commit
c2cb1a89b7
|
@ -529,6 +529,9 @@ class StructTest(unittest.TestCase):
|
|||
|
||||
for c in [b'\x01', b'\x7f', b'\xff', b'\x0f', b'\xf0']:
|
||||
self.assertTrue(struct.unpack('>?', c)[0])
|
||||
self.assertTrue(struct.unpack('<?', c)[0])
|
||||
self.assertTrue(struct.unpack('=?', c)[0])
|
||||
self.assertTrue(struct.unpack('@?', c)[0])
|
||||
|
||||
def test_count_overflow(self):
|
||||
hugecount = '{}b'.format(sys.maxsize+1)
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Don't copy arbitrary values to :c:expr:`_Bool` in the :mod:`struct` module.
|
|
@ -486,9 +486,8 @@ nu_ulonglong(_structmodulestate *state, const char *p, const formatdef *f)
|
|||
static PyObject *
|
||||
nu_bool(_structmodulestate *state, const char *p, const formatdef *f)
|
||||
{
|
||||
_Bool x;
|
||||
memcpy((char *)&x, p, sizeof x);
|
||||
return PyBool_FromLong(x != 0);
|
||||
const _Bool bool_false = 0;
|
||||
return PyBool_FromLong(memcmp(p, &bool_false, sizeof(_Bool)));
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue