Title: Segfault: Py_DECREF(NULL) in PyContextVar_Set (context.c:367) · Issue #151773 · python/cpython · GitHub
Open Graph Title: Segfault: Py_DECREF(NULL) in PyContextVar_Set (context.c:367) · Issue #151773 · python/cpython
X Title: Segfault: Py_DECREF(NULL) in PyContextVar_Set (context.c:367) · Issue #151773 · python/cpython
Description: Crash report What happened? Segfault: Py_DECREF(NULL) in PyContextVar_Set (context.c:367) PyContextVar_Set doesn't NULL-check token_new(); under OOM the contextvar_set() error path then Py_DECREFs the NULL token. AI Disclaimer: this gist...
Open Graph Description: Crash report What happened? Segfault: Py_DECREF(NULL) in PyContextVar_Set (context.c:367) PyContextVar_Set doesn't NULL-check token_new(); under OOM the contextvar_set() error path then Py_DECREFs ...
X Description: Crash report What happened? Segfault: Py_DECREF(NULL) in PyContextVar_Set (context.c:367) PyContextVar_Set doesn't NULL-check token_new(); under OOM the contextvar_set() error path then Py_DECR...
Opengraph URL: https://github.com/python/cpython/issues/151773
X: @github
Domain: github.com
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Segfault: Py_DECREF(NULL) in PyContextVar_Set (context.c:367)","articleBody":"# Crash report\n\n### What happened?\n\n# Segfault: `Py_DECREF(NULL)` in `PyContextVar_Set` (`context.c:367`)\n\n*`PyContextVar_Set` doesn't NULL-check `token_new()`; under OOM the `contextvar_set()` error path then `Py_DECREF`s the NULL token.*\n\n_AI Disclaimer: this gist was drafted by Claude Code, which also generated the reduced reproducer._\n\n## Crash report\n\n`PyContextVar_Set` does not NULL-check the result of `token_new()`. Under memory pressure `token_new()` returns NULL; if the following `contextvar_set()` also fails, the error path runs `Py_DECREF(tok)` on the NULL token and segfaults.\n\n## Reproducer\n\n```python\nimport contextvars\nfrom _testcapi import set_nomemory, remove_mem_hooks\ncv = contextvars.ContextVar(\"x\")\nfor start in range(16): # crashes at start=2\n set_nomemory(start, 0)\n try:\n try:\n cv.set(object())\n finally:\n remove_mem_hooks()\n except MemoryError:\n pass\n```\n\nA single `set_nomemory(0, 0); cv.set(object())` does *not* crash — `PyContextVar_Set`'s own early `context_get()` fails first and returns cleanly. The crash needs a budget where the early allocations succeed but `token_new()` and `contextvar_set()` then fail, hence the short sweep.\n\n## Backtrace\n\n```\n#0 _Py_atomic_load_uint32_relaxed\n#1 Py_DECREF Include/refcount.h:345 (op == 0x0)\n#2 PyContextVar_Set Python/context.c:367 (Py_DECREF(tok), tok == NULL)\n```\n\n## Root cause\n\n`Python/context.c`, `PyContextVar_Set` (L346):\n\n```c\n PyContextToken *tok = token_new(ctx, var, old_val); /* L363: may return NULL, UNCHECKED */\n Py_XDECREF(old_val);\n if (contextvar_set(var, val)) { /* L366: fails under OOM (_PyHamt_Assoc -\u003e NULL) */\n Py_DECREF(tok); /* L367: tok == NULL -\u003e SIGSEGV */\n return NULL;\n }\n return (PyObject *)tok;\n```\n\n`token_new()` allocates (`PyObject_GC_New`) and can return NULL on failure, but `tok` is not checked before the `Py_DECREF(tok)` on the `contextvar_set()` failure path. (On the success path the function also returns `tok` unchecked — harmless NULL-with-exception, but the modification still happened.)\n\n## Suggested fix\n\n```c\n PyContextToken *tok = token_new(ctx, var, old_val);\n Py_XDECREF(old_val);\n if (tok == NULL) {\n return NULL;\n }\n```\n\n(or `Py_XDECREF(tok)` on the error path).\n\n## Notes\n\nFound by OOM-injection fuzzing (`set_nomemory`). Same pattern as gh-146080 (`Py_DECREF(NULL)` in an `_ssl.c` error label). **Not** free-threading-specific: reproduces on free-threaded and default (GIL) builds, debug and release. (A `_py_warnings`/`ContextVar` vehicle reaches this only when `context_aware_warnings` is enabled — the default on free-threaded builds — but the C bug is build-agnostic.)\n\n## Versions\n\n- main (3.16.0a0); reproduced on free-threaded debug+ASan, free-threaded release, and GIL release builds.\n\n---\n\n*Part of [python/cpython#151763](https://github.com/python/cpython/issues/151763) — an umbrella tracking 35 OOM-related crash findings.*\n\n### CPython versions tested on:\n\n3.16, CPython main branch\n\n### Operating systems tested on:\n\nWindows\n\n### Output from running 'python -VV' on the command line:\n\nPython 3.9.23 (main, Jun 4 2025, 08:55:39) [GCC 13.3.0]\n\n\u003c!-- gh-linked-prs --\u003e\n### Linked PRs\n* gh-151836\n* gh-152009\n* gh-152010\n* gh-152011\n\u003c!-- /gh-linked-prs --\u003e\n","author":{"url":"https://github.com/prakashsellathurai","@type":"Person","name":"prakashsellathurai"},"datePublished":"2026-06-20T08:00:25.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":3},"url":"https://github.com/151773/cpython/issues/151773"}
| route-pattern | /_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format) |
| route-controller | voltron_issues_fragments |
| route-action | issue_layout |
| fetch-nonce | v2:c56f9531-8503-44d3-fce1-8cf46d2cab70 |
| current-catalog-service-hash | 81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114 |
| request-id | CBBA:F01E1:E7AAE7:13442CF:6A541187 |
| html-safe-nonce | a3d7e889454e995e6931533e9cfabdb1da3219a8bba604c00da83ae492bd3f00 |
| visitor-payload | eyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDQkJBOkYwMUUxOkU3QUFFNzoxMzQ0MkNGOjZBNTQxMTg3IiwidmlzaXRvcl9pZCI6IjQ3ODI5NDgwMDAwNTMwNzIyNjMiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ== |
| visitor-hmac | 0c9ef76281623e524e93bdb0b1c8a0aea6978bfd4593926c9369960dc39dab6e |
| hovercard-subject-tag | issue:4705646896 |
| github-keyboard-shortcuts | repository,issues,copilot |
| google-site-verification | Apib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I |
| octolytics-url | https://collector.github.com/github/collect |
| analytics-location | / |
| fb:app_id | 1401488693436528 |
| apple-itunes-app | app-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/python/cpython/151773/issue_layout |
| twitter:image | https://opengraph.githubassets.com/dda04ea13466167f66794d2def62651ed34f8f4f5e871ce26a076fa7e7b5ae9b/python/cpython/issues/151773 |
| twitter:card | summary_large_image |
| og:image | https://opengraph.githubassets.com/dda04ea13466167f66794d2def62651ed34f8f4f5e871ce26a076fa7e7b5ae9b/python/cpython/issues/151773 |
| og:image:alt | Crash report What happened? Segfault: Py_DECREF(NULL) in PyContextVar_Set (context.c:367) PyContextVar_Set doesn't NULL-check token_new(); under OOM the contextvar_set() error path then Py_DECREFs ... |
| og:image:width | 1200 |
| og:image:height | 600 |
| og:site_name | GitHub |
| og:type | object |
| og:author:username | prakashsellathurai |
| hostname | github.com |
| expected-hostname | github.com |
| None | b9a586c06a05a7a86fc7e3f4dbd03e42f6869085879aa184aa6369456dbd50fb |
| turbo-cache-control | no-preview |
| go-import | github.com/python/cpython git https://github.com/python/cpython.git |
| octolytics-dimension-user_id | 1525981 |
| octolytics-dimension-user_login | python |
| octolytics-dimension-repository_id | 81598961 |
| octolytics-dimension-repository_nwo | python/cpython |
| octolytics-dimension-repository_public | true |
| octolytics-dimension-repository_is_fork | false |
| octolytics-dimension-repository_network_root_id | 81598961 |
| octolytics-dimension-repository_network_root_nwo | python/cpython |
| turbo-body-classes | logged-out env-production page-responsive |
| disable-turbo | false |
| browser-stats-url | https://api.github.com/_private/browser/stats |
| browser-errors-url | https://api.github.com/_private/browser/errors |
| release | 07a982c1d40157c619b364352b704c3ce66bb332 |
| ui-target | full |
| theme-color | #1e2327 |
| color-scheme | light dark |
Links:
Viewport: width=device-width