]> git.ipfire.org Git - thirdparty/asterisk.git/commit
res_fax: validate the remote/local Station ID for UTF-8 format
authorAlexei Gradinari <alex2grad@gmail.com>
Tue, 23 Feb 2021 16:14:10 +0000 (11:14 -0500)
committerJoshua Colp <jcolp@sangoma.com>
Tue, 2 Mar 2021 17:16:48 +0000 (11:16 -0600)
commitd2f623bae254bc8761ae802e85a0fd2d65a9bd47
tree6b04614c8686fb8c4d0d74b519f8e35bd935da78
parent932eae69abeb30e1ba3df152c393530aee19eac0
res_fax: validate the remote/local Station ID for UTF-8 format

If the remote Station ID contains invalid UTF-8 characters
the asterisk fails to publish the Stasis and ReceiveFax status messages.

json.c: Error building JSON from '{s: s, s: s}': Invalid UTF-8 string.
0: /usr/sbin/asterisk(ast_json_vpack+0x98) [0x4f3f28]
1: /usr/sbin/asterisk(ast_json_pack+0x8c) [0x4f3fcc]
2: /usr/sbin/asterisk(ast_channel_publish_varset+0x2b) [0x57aa0b]
3: /usr/sbin/asterisk(pbx_builtin_setvar_helper+0x121) [0x530641]
4: /usr/lib64/asterisk/modules/res_fax.so(+0x44fe) [0x7f27f4bff4fe]
...
stasis_channels.c: Error creating message

json.c: Error building JSON from '{s: s, s: s, s: s, s: s, s: s, s: s, s: o}': Invalid UTF-8 string.
0: /usr/sbin/asterisk(ast_json_vpack+0x98) [0x4f3f28]
1: /usr/sbin/asterisk(ast_json_pack+0x8c) [0x4f3fcc]
2: /usr/lib64/asterisk/modules/res_fax.so(+0x5acd) [0x7f27f4c00acd]
...
res_fax.c: Error publishing ReceiveFax status message

This patch replaces the invalid UTF-8 Station IDs with an empty string.

ASTERISK-29312 #close

Change-Id: Ieb00b6ecf67db3bfca787649caa8517f29d987db
res/res_fax.c