8000 gh-96735: Fix undefined behaviour in struct unpacking functions by mdickinson · Pull Request #96739 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-96735: Fix undefined behaviour in struct unpacking functions #96739

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Prev Previous commit
Next Next commit
Branch-free sign-extension
  • Loading branch information
mdickinson committed Sep 13, 2022
commit 994703e10e0af676559a7028ba77afee4e2bcb23
28 changes: 16 additions & 12 deletions Modules/_struct.c
Original file line number Diff line number Diff line change
Expand Up @@ -817,8 +817,9 @@ bu_short(_structmodulestate *state, const char *p, const formatdef *f)
do {
x = (x<<8) | *bytes++;
} while (--i > 0);
/* Extend sign. */
return PyLong_FromLong(x & 0x8000U ? (long)x - 0x10000 : (long)x);
/* Extend sign, avoiding implementation-defined or undefined behaviour. */
x = (x ^ 0x8000U) - 0x8000U;
return PyLong_FromLong(x & 0x8000U ? -1 - (long)(~x): (long)x);
}

static PyObject *
Expand All @@ -834,8 +835,8 @@ bu_int(_structmodulestate *state, const char *p, const formatdef *f)
x = (x<<8) | *bytes++;
} while (--i > 0);
/* Extend sign, avoiding implementation-defined or undefined behaviour. */
return PyLong_FromLong(x & 0x80000000U ?
-1 - (long)(0xFFFFFFFFU - x) : (long)x);
x = (x ^ 0x80000000U) - 0x80000000U;
return PyLong_FromLong(x & 0x80000000U ? -1 - (long)(~x): (long)x);
}

static PyObject *
Expand Down Expand Up @@ -863,8 +864,9 @@ bu_longlong(_structmodulestate *state, const char *p, const formatdef *f)
x = (x<<8) | *bytes++;
} while (--i > 0);
/* Extend sign, avoiding implementation-defined or undefined behaviour. */
return PyLong_FromLongLong(x & 0x8000000000000000U ?
-1 - (long long)(0xFFFFFFFFFFFFFFFFU - x) : (long long)x);
x = (x ^ 0x8000000000000000U) - 0x8000000000000000U;
return PyLong_FromLongLong(
x & 0x8000000000000000U ? -1 - (long long)(~x): (long long)x);
}

static PyObject *
Expand Down Expand Up @@ -1058,8 +1060,9 @@ lu_short(_structmodulestate *state, const char *p, const formatdef *f)
do {
x = (x<<8) | bytes[--i];
} while (i > 0);
/* Extend sign. */
return PyLong_FromLong(x & 0x8000U ? (long)x - 0x10000 : (long)x);
/* Extend sign, avoiding implementation-defined or undefined behaviour. */
x = (x ^ 0x8000U) - 0x8000U;
return PyLong_FromLong(x & 0x8000U ? -1 - (long)(~x): (long)x);
}

static PyObject *
Expand All @@ -1075,8 +1078,8 @@ lu_int(_structmodulestate *state, const char *p, const formatdef *f)
x = (x<<8) | bytes[--i];
} while (i > 0);
/* Extend sign, avoiding implementation-defined or undefined behaviour. */
return PyLong_FromLong(x & 0x80000000U ?
-1 - (long)(0xFFFFFFFFU - x) : (long)x);
x = (x ^ 0x80000000U) - 0x80000000U;
return PyLong_FromLong(x & 0x80000000U ? -1 - (long)(~x): (long)x);
}

static PyObject *
Expand Down Expand Up @@ -1104,8 +1107,9 @@ lu_longlong(_structmodulestate *state, const char *p, const formatdef *f)
x = (x<<8) | bytes[--i];
} while (i > 0);
/* Extend sign, avoiding implementation-defined or undefined behaviour. */
return PyLong_FromLongLong(x & 0x8000000000000000U ?
-1 - (long long)(0xFFFFFFFFFFFFFFFFU - x) : (long long)x);
x = (x ^ 0x8000000000000000U) - 0x8000000000000000U;
return PyLong_FromLongLong(
x & 0x8000000000000000U ? -1 - (long long)(~x): (long long)x);
}

static PyObject *
Expand Down
0