summaryrefslogtreecommitdiff
path: root/ext/imap/php_imap.c
diff options
context:
space:
mode:
authorChristoph M. Becker <cmbecker69@gmx.de>2020-10-12 16:31:03 +0200
committerChristoph M. Becker <cmbecker69@gmx.de>2020-10-12 16:31:03 +0200
commit8e4022b46191cf0cc527e7d65f4a412057634efe (patch)
tree9d6028d8815e80bc5720b7a0e07c348647ea0450 /ext/imap/php_imap.c
parent2e17c937bf49ad801b820241d7ef5575ba786bc0 (diff)
parent11c752a5f5c0fb23e87e8cb9c4147f1a5374fe06 (diff)
downloadphp-git-8e4022b46191cf0cc527e7d65f4a412057634efe.tar.gz
Merge branch 'PHP-8.0' into master
* PHP-8.0: Fix #80216: imap_mail_compose() does not validate types/encodings
Diffstat (limited to 'ext/imap/php_imap.c')
-rw-r--r--ext/imap/php_imap.c27
1 files changed, 18 insertions, 9 deletions
diff --git a/ext/imap/php_imap.c b/ext/imap/php_imap.c
index 0fc59a65e0..f16a14e836 100644
--- a/ext/imap/php_imap.c
+++ b/ext/imap/php_imap.c
@@ -3181,10 +3181,16 @@ PHP_FUNCTION(imap_mail_compose)
topbod = bod;
if ((pvalue = zend_hash_str_find(Z_ARRVAL_P(data), "type", sizeof("type") - 1)) != NULL) {
- bod->type = (short) zval_get_long(pvalue);
+ zend_long type = zval_get_long(pvalue);
+ if (type >= 0 && type <= TYPEMAX && body_types[type] != NULL) {
+ bod->type = (short) type;
+ }
}
if ((pvalue = zend_hash_str_find(Z_ARRVAL_P(data), "encoding", sizeof("encoding") - 1)) != NULL) {
- bod->encoding = (short) zval_get_long(pvalue);
+ zend_long encoding = zval_get_long(pvalue);
+ if (encoding >= 0 && encoding <= ENCMAX && body_encodings[encoding] != NULL) {
+ bod->encoding = (short) encoding;
+ }
}
if ((pvalue = zend_hash_str_find(Z_ARRVAL_P(data), "charset", sizeof("charset") - 1)) != NULL) {
convert_to_string_ex(pvalue);
@@ -3266,10 +3272,13 @@ PHP_FUNCTION(imap_mail_compose)
bod->md5 = cpystr(Z_STRVAL_P(pvalue));
}
} else if (Z_TYPE_P(data) == IS_ARRAY && topbod->type == TYPEMULTIPART) {
- short type = -1;
+ short type = 0;
SEPARATE_ARRAY(data);
if ((pvalue = zend_hash_str_find(Z_ARRVAL_P(data), "type", sizeof("type") - 1)) != NULL) {
- type = (short) zval_get_long(pvalue);
+ zend_long tmp_type = zval_get_long(pvalue);
+ if (tmp_type >= 0 && tmp_type <= TYPEMAX && tmp_type != TYPEMULTIPART && body_types[tmp_type] != NULL) {
+ type = (short) tmp_type;
+ }
}
if (!toppart) {
@@ -3282,13 +3291,13 @@ PHP_FUNCTION(imap_mail_compose)
}
bod = &mypart->body;
-
- if (type != TYPEMULTIPART) {
- bod->type = type;
- }
+ bod->type = type;
if ((pvalue = zend_hash_str_find(Z_ARRVAL_P(data), "encoding", sizeof("encoding") - 1)) != NULL) {
- bod->encoding = (short) zval_get_long(pvalue);
+ zend_long encoding = zval_get_long(pvalue);
+ if (encoding >= 0 && encoding <= ENCMAX && body_encodings[encoding] != NULL) {
+ bod->encoding = (short) encoding;
+ }
}
if ((pvalue = zend_hash_str_find(Z_ARRVAL_P(data), "charset", sizeof("charset") - 1)) != NULL) {
convert_to_string_ex(pvalue);