-
Notifications
You must be signed in to change notification settings - Fork 7.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ext/ldap: ldap_read/ldap_list/ldap_search update. #17426
base: master
Are you sure you want to change the base?
Conversation
ext/ldap/ldap.c
Outdated
@@ -1448,7 +1448,8 @@ static void php_ldap_do_search(INTERNAL_FUNCTION_PARAMETERS, int scope) | |||
zend_string *base_dn_str = NULL; | |||
HashTable *filter_ht = NULL; | |||
zend_string *filter_str = NULL; | |||
zend_long attrsonly, sizelimit, timelimit, deref; | |||
zend_long sizelimit = 0, timelimit = 0, deref = LDAP_DEREF_NEVER; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd go with the actual default values right away:
zend_long sizelimit = 0, timelimit = 0, deref = LDAP_DEREF_NEVER; | |
zend_long sizelimit = -1, timelimit = -1, deref = LDAP_DEREF_NEVER; |
And then remove the switch (argcount) {
and the then superfluous ldap_*
variables. That would at least avoid making this already too large function even larger.
ext/ldap/ldap.c
Outdated
@@ -1465,13 +1466,28 @@ static void php_ldap_do_search(INTERNAL_FUNCTION_PARAMETERS, int scope) | |||
Z_PARAM_ARRAY_HT_OR_STR(filter_ht, filter_str) | |||
Z_PARAM_OPTIONAL | |||
Z_PARAM_ARRAY_EX(attrs, 0, 1) | |||
Z_PARAM_LONG(attrsonly) | |||
Z_PARAM_BOOL(attrsonly) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That would be a BC break; perhaps better to wait for PHP 9?
checks sizelimit/timelimit checks and attrsonly from int to bool.
6693118
to
8623c73
Compare
php_set_opts(ld->link, old_ldap_sizelimit, old_ldap_timelimit, old_ldap_deref, &ldap_sizelimit, &ldap_timelimit, &ldap_deref); | ||
php_set_opts(ld->link, old_ldap_sizelimit, old_ldap_timelimit, old_ldap_deref, (int *)&sizelimit, (int *)&timelimit, (int *)&deref); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, didn't notice this earlier. These casts won't properly work for big-endian architectures, but on the other hand, we're not using the variables afterwards, so might be okay. A follow-up PR could add support for passing NULL
values to php_set_opts()
(which then would not assign the out parameters).
checks sizelimit/timelimit checks and attrsonly from int to bool.