mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
bpo-31758: Prevent crashes when using an uninitialized _elementtree.XMLParser object (GH-3997)
This commit is contained in:
parent
63e5b59c06
commit
402e1cdb13
3 changed files with 41 additions and 0 deletions
|
@ -3818,6 +3818,17 @@ xmlparser_dealloc(XMLParserObject* self)
|
|||
Py_TYPE(self)->tp_free((PyObject *)self);
|
||||
}
|
||||
|
||||
Py_LOCAL_INLINE(int)
|
||||
_check_xmlparser(XMLParserObject* self)
|
||||
{
|
||||
if (self->target == NULL) {
|
||||
PyErr_SetString(PyExc_ValueError,
|
||||
"XMLParser.__init__() wasn't called");
|
||||
return 0;
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
|
||||
LOCAL(PyObject*)
|
||||
expat_parse(XMLParserObject* self, const char* data, int data_len, int final)
|
||||
{
|
||||
|
@ -3854,6 +3865,10 @@ _elementtree_XMLParser_close_impl(XMLParserObject *self)
|
|||
/* end feeding data to parser */
|
||||
|
||||
PyObject* res;
|
||||
|
||||
if (!_check_xmlparser(self)) {
|
||||
return NULL;
|
||||
}
|
||||
res = expat_parse(self, "", 0, 1);
|
||||
if (!res)
|
||||
return NULL;
|
||||
|
@ -3885,6 +3900,9 @@ _elementtree_XMLParser_feed(XMLParserObject *self, PyObject *data)
|
|||
{
|
||||
/* feed data to parser */
|
||||
|
||||
if (!_check_xmlparser(self)) {
|
||||
return NULL;
|
||||
}
|
||||
if (PyUnicode_Check(data)) {
|
||||
Py_ssize_t data_len;
|
||||
const char *data_ptr = PyUnicode_AsUTF8AndSize(data, &data_len);
|
||||
|
@ -3932,6 +3950,9 @@ _elementtree_XMLParser__parse_whole(XMLParserObject *self, PyObject *file)
|
|||
PyObject* temp;
|
||||
PyObject* res;
|
||||
|
||||
if (!_check_xmlparser(self)) {
|
||||
return NULL;
|
||||
}
|
||||
reader = PyObject_GetAttrString(file, "read");
|
||||
if (!reader)
|
||||
return NULL;
|
||||
|
@ -4019,6 +4040,9 @@ _elementtree_XMLParser__setevents_impl(XMLParserObject *self,
|
|||
TreeBuilderObject *target;
|
||||
PyObject *events_append, *events_seq;
|
||||
|
||||
if (!_check_xmlparser(self)) {
|
||||
return NULL;
|
||||
}
|
||||
if (!TreeBuilder_CheckExact(self->target)) {
|
||||
PyErr_SetString(
|
||||
PyExc_TypeError,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue