Skip to content
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

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

devnexen
Copy link
Member

@devnexen devnexen commented Jan 9, 2025

checks sizelimit/timelimit checks and attrsonly from int to bool.

@devnexen devnexen marked this pull request as ready for review January 10, 2025 18:25
@devnexen devnexen requested a review from kocsismate as a code owner January 10, 2025 18:25
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;
Copy link
Member

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:

Suggested change
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)
Copy link
Member

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?

@devnexen devnexen force-pushed the php_do_ldap_search_check branch from 6693118 to 8623c73 Compare February 4, 2025 19:44
Comment on lines -1755 to +1751
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);
Copy link
Member

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).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants