Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 35.2k
gh-83004: Clean up refleaks in ssl, socket initialisation#99044
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
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| Clean up refleaks on failed module initialisation in in :mod:`_ssl` and :mod:`_socket` |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -7342,38 +7342,34 @@ PyInit__socket(void) | ||
| if (m == NULL) | ||
| return NULL; | ||
| Py_INCREF(PyExc_OSError); | ||
| PyModule_AddObject(m, "error", PyExc_OSError); | ||
| if (PyModule_AddObjectRef(m, "error", PyExc_OSError) != 0) | ||
| return NULL; | ||
| socket_herror = PyErr_NewException("socket.herror", | ||
| PyExc_OSError, NULL); | ||
| if (socket_herror == NULL) | ||
| return NULL; | ||
| Py_INCREF(socket_herror); | ||
| PyModule_AddObject(m, "herror", socket_herror); | ||
| if (PyModule_AddObjectRef(m, "herror", socket_herror) != 0) | ||
| return NULL; | ||
| socket_gaierror = PyErr_NewException("socket.gaierror", PyExc_OSError, | ||
| NULL); | ||
| NULL); | ||
| if (socket_gaierror == NULL) | ||
| return NULL; | ||
| Py_INCREF(socket_gaierror); | ||
| PyModule_AddObject(m, "gaierror", socket_gaierror); | ||
| PyModule_AddObjectRef(m, "timeout", PyExc_TimeoutError); | ||
| if (PyModule_AddObjectRef(m, "gaierror", socket_gaierror) != 0) | ||
| return NULL; | ||
| if (PyModule_AddObjectRef(m, "timeout", PyExc_TimeoutError) != 0) | ||
JelleZijlstra marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| return NULL; | ||
| Py_INCREF((PyObject *)&sock_type); | ||
| if (PyModule_AddObject(m, "SocketType", | ||
| (PyObject *)&sock_type) != 0) | ||
| if (PyModule_AddObjectRef(m, "SocketType", (PyObject *)&sock_type) != 0) | ||
| return NULL; | ||
| Py_INCREF((PyObject *)&sock_type); | ||
| if (PyModule_AddObject(m, "socket", | ||
| (PyObject *)&sock_type) != 0) | ||
| if (PyModule_AddObjectRef(m, "socket", (PyObject *)&sock_type) != 0) | ||
| return NULL; | ||
| #ifdef ENABLE_IPV6 | ||
| has_ipv6 = Py_True; | ||
| #else | ||
| has_ipv6 = Py_False; | ||
| #endif | ||
| Py_INCREF(has_ipv6); | ||
| PyModule_AddObject(m, "has_ipv6", has_ipv6); | ||
| PyModule_AddObjectRef(m, "has_ipv6", has_ipv6); | ||
Member There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Check the return value. | ||
| /* Export C API */ | ||
| PySocketModule_APIObject *capi = sock_get_api(); | ||
| @@ -8666,7 +8662,8 @@ PyInit__socket(void) | ||
| tmp = PyLong_FromUnsignedLong(codes[i]); | ||
| if (tmp == NULL) | ||
| return NULL; | ||
| PyModule_AddObject(m, names[i], tmp); | ||
| PyModule_AddObjectRef(m, names[i], tmp); | ||
Member There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Here too. | ||
| Py_DECREF(tmp); | ||
| } | ||
| } | ||
| PyModule_AddIntMacro(m, RCVALL_OFF); | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't this still a leak because we're not checking the return value?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's no longer a leak.
The thing that makes
PyModule_AddObjecttricky cause leaks is that you have to decref in the failure case, but not in the success case (because it steals the ref). WithPyModule_AddObjectRefyou can treat the failure and success cases the same in terms of what they do to ref counts.But yes, in general we should probably be propagating failures here, and the other cases below you commented on. I didn't do it in this PR because it's a slightly separate change and there are many other places in this module where we don't check return values.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should I check return values for just the ones I'm touching in this PR or fix all of them?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the explanation! I feel it'd be fine to also fix missing error checks in this PR, since the change remains localized and you're fixing a very similar problem to what the PR already fixes.