Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions Lib/test/test_ssl.py
Original file line number Diff line number Diff line change
Expand Up @@ -5228,6 +5228,18 @@ def msg_cb(conn, direction, version, content_type, msg_type, data):
with self.assertRaises(TypeError):
client_context._msg_callback = object()

# the attribute of the underlying C type accepts only a callable
# and cannot be deleted
descr = _ssl._SSLContext.__dict__['_msg_callback']
with self.assertRaises(TypeError):
descr.__set__(client_context, object())
# a failed assignment does not change the value
self.assertIs(client_context._msg_callback, msg_cb)
with self.assertRaisesRegex(AttributeError, 'cannot be deleted'):
descr.__delete__(client_context)
# a failed deletion does not change the value
self.assertIs(client_context._msg_callback, msg_cb)

def test_msg_callback_tls12(self):
client_context, server_context, hostname = testing_context()
client_context.maximum_version = ssl.TLSVersion.TLSv1_2
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
:mod:`ssl`: A failed assignment or deletion of the ``_msg_callback``
attribute of :class:`ssl.SSLContext` no longer removes the current callback.
Deleting it now raises :exc:`AttributeError` instead of :exc:`TypeError`.
22 changes: 15 additions & 7 deletions Modules/_ssl/debughelpers.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,20 +95,28 @@ _PySSLContext_get_msg_callback(PySSLContext *self, void *c) {

static int
_PySSLContext_set_msg_callback(PySSLContext *self, PyObject *arg, void *c) {
Py_CLEAR(self->msg_cb);
if (arg == NULL) {
PyErr_Format(PyExc_AttributeError,
"attribute '_msg_callback' of '%.100s' objects "
"cannot be deleted", Py_TYPE(self)->tp_name);
return -1;
}
if (arg != Py_None && !PyCallable_Check(arg)) {
PyErr_SetString(PyExc_TypeError,
"not a callable object");
return -1;
}
/* Releasing the old callback can run arbitrary code. */
PyObject *old_cb = self->msg_cb;
if (arg == Py_None) {
self->msg_cb = NULL;
SSL_CTX_set_msg_callback(self->ctx, NULL);
}
else {
if (!PyCallable_Check(arg)) {
SSL_CTX_set_msg_callback(self->ctx, NULL);
PyErr_SetString(PyExc_TypeError,
"not a callable object");
return -1;
}
self->msg_cb = Py_NewRef(arg);
SSL_CTX_set_msg_callback(self->ctx, _PySSL_msg_callback);
}
Py_XDECREF(old_cb);
return 0;
}

Expand Down
Loading