]> git.ipfire.org Git - thirdparty/asterisk.git/commit
PJSIP XML, XPIDF: Fix buffer size overwrite memory corruption error. 02/802/1
authorRichard Mudgett <rmudgett@digium.com>
Thu, 2 Jul 2015 19:51:29 +0000 (14:51 -0500)
committerRichard Mudgett <rmudgett@digium.com>
Mon, 6 Jul 2015 20:38:15 +0000 (15:38 -0500)
commit0422433f4722e6e692b0c84342e048feff344e80
treeeec3637cf632b5f87a640f989df3b9e361b2529c
parent8ea214aed782424a884b9a2f67d6dca270854e83
PJSIP XML, XPIDF: Fix buffer size overwrite memory corruption error.

When res_pjsip body generator modules were generating XML or XPIDF
response bodies, there was a chance that the generated body would be the
exact size of the supplied buffer.  Adding the nul string terminator would
then write beyond the end of the buffer and potentially corrupt memory.

* Fix MALLOC_DEBUG high fence violations caused by adding a nul string
terminator on the end of a buffer for XML or XPIDF response bodies.

* Made calls to pj_xml_print() safer if the XML prolog is requested.  Due
to a bug in pjproject, the return value could be -1 _or_
AST_PJSIP_XML_PROLOG_LEN if the supplied buffer is not large enough.

* Updated the doxygen comment of AST_PJSIP_XML_PROLOG_LEN to describe the
return value of pj_xml_print() when the supplied buffer is not large
enough.

ASTERISK-25168
Reported by: Carl Fortin

Change-Id: Id70e1d373a6a2b2bd9e678b5cbc5e55b308981de
include/asterisk/res_pjsip_presence_xml.h
res/res_pjsip_dialog_info_body_generator.c
res/res_pjsip_pidf_body_generator.c
res/res_pjsip_pubsub.c
res/res_pjsip_xpidf_body_generator.c