Skip to content

Commit

Permalink
[3.9] gh-87604: Avoid publishing list of active per-interpreter audit…
Browse files Browse the repository at this point in the history
… hooks via the gc module (GH-99373) (GH-99493)
  • Loading branch information
zooba committed Nov 21, 2022
1 parent c09dba5 commit 7b98207
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Lib/test/audit-tests.py
Expand Up @@ -368,6 +368,17 @@ def hook(event, args):
gc.get_referents(y)


def test_not_in_gc():
import gc

hook = lambda *a: None
sys.addaudithook(hook)

for o in gc.get_objects():
if isinstance(o, list):
assert hook not in o


if __name__ == "__main__":
from test.support import suppress_msvcrt_asserts

Expand Down
5 changes: 5 additions & 0 deletions Lib/test/test_audit.py
Expand Up @@ -132,6 +132,11 @@ def test_gc(self):
["gc.get_objects", "gc.get_referrers", "gc.get_referents"]
)

def test_not_in_gc(self):
returncode, _, stderr = self.run_python("test_not_in_gc")
if returncode:
self.fail(stderr)


if __name__ == "__main__":
unittest.main()
@@ -0,0 +1,2 @@
Avoid publishing list of active per-interpreter audit hooks via the
:mod:`gc` module
2 changes: 2 additions & 0 deletions Python/sysmodule.c
Expand Up @@ -440,6 +440,8 @@ sys_addaudithook_impl(PyObject *module, PyObject *hook)
if (is->audit_hooks == NULL) {
return NULL;
}
/* Avoid having our list of hooks show up in the GC module */
PyObject_GC_UnTrack(is->audit_hooks);
}

if (PyList_Append(is->audit_hooks, hook) < 0) {
Expand Down

0 comments on commit 7b98207

Please sign in to comment.