Fix the mess with ldb includes.
[metze/samba/wip.git] / source4 / lib / ldb / common / ldb_match.c
index 810191c5ec367932ea055c5a61eb584a9a510f77..c622701d308c1c2807ab0c8e5a30085399343bb4 100644 (file)
@@ -11,7 +11,7 @@
    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Lesser General Public
    License as published by the Free Software Foundation; either
-   version 2 of the License, or (at your option) any later version.
+   version 3 of the License, or (at your option) any later version.
 
    This library is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -19,8 +19,7 @@
    Lesser General Public License for more details.
 
    You should have received a copy of the GNU Lesser General Public
-   License along with this library; if not, write to the Free Software
-   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+   License along with this library; if not, see <http://www.gnu.org/licenses/>.
 */
 
 /*
  *  Author: Andrew Tridgell
  */
 
-#include "includes.h"
-#include "ldb/include/includes.h"
+#include "ldb_private.h"
 
 /*
   check if the scope matches in a search result
 */
 static int ldb_match_scope(struct ldb_context *ldb,
-                          const struct ldb_dn *base,
-                          const struct ldb_dn *dn,
+                          struct ldb_dn *base,
+                          struct ldb_dn *dn,
                           enum ldb_scope scope)
 {
        int ret = 0;
@@ -52,14 +50,14 @@ static int ldb_match_scope(struct ldb_context *ldb,
 
        switch (scope) {
        case LDB_SCOPE_BASE:
-               if (ldb_dn_compare(ldb, base, dn) == 0) {
+               if (ldb_dn_compare(base, dn) == 0) {
                        ret = 1;
                }
                break;
 
        case LDB_SCOPE_ONELEVEL:
-               if (dn->comp_num == (base->comp_num + 1)) {
-                       if (ldb_dn_compare_base(ldb, base, dn) == 0) {
+               if (ldb_dn_get_comp_num(dn) == (ldb_dn_get_comp_num(base) + 1)) {
+                       if (ldb_dn_compare_base(base, dn) == 0) {
                                ret = 1;
                        }
                }
@@ -67,7 +65,7 @@ static int ldb_match_scope(struct ldb_context *ldb,
                
        case LDB_SCOPE_SUBTREE:
        default:
-               if (ldb_dn_compare_base(ldb, base, dn) == 0) {
+               if (ldb_dn_compare_base(base, dn) == 0) {
                        ret = 1;
                }
                break;
@@ -81,9 +79,9 @@ static int ldb_match_scope(struct ldb_context *ldb,
   match if node is present
 */
 static int ldb_match_present(struct ldb_context *ldb, 
-                           struct ldb_message *msg,
-                           struct ldb_parse_tree *tree,
-                           enum ldb_scope scope)
+                            const struct ldb_message *msg,
+                            const struct ldb_parse_tree *tree,
+                            enum ldb_scope scope)
 {
        if (ldb_attr_dn(tree->u.present.attr) == 0) {
                return 1;
@@ -97,14 +95,14 @@ static int ldb_match_present(struct ldb_context *ldb,
 }
 
 static int ldb_match_comparison(struct ldb_context *ldb, 
-                               struct ldb_message *msg,
-                               struct ldb_parse_tree *tree,
+                               const struct ldb_message *msg,
+                               const struct ldb_parse_tree *tree,
                                enum ldb_scope scope,
                                enum ldb_parse_op comp_op)
 {
        unsigned int i;
        struct ldb_message_element *el;
-       const struct ldb_attrib_handler *h;
+       const struct ldb_schema_attribute *a;
        int ret;
 
        /* FIXME: APPROX comparison not handled yet */
@@ -115,10 +113,10 @@ static int ldb_match_comparison(struct ldb_context *ldb,
                return 0;
        }
 
-       h = ldb_attrib_handler(ldb, el->name);
+       a = ldb_schema_attribute_by_name(ldb, el->name);
 
        for (i = 0; i < el->num_values; i++) {
-               ret = h->comparison_fn(ldb, ldb, &el->values[i], &tree->u.comparison.value);
+               ret = a->syntax->comparison_fn(ldb, ldb, &el->values[i], &tree->u.comparison.value);
 
                if (ret == 0) {
                        return 1;
@@ -138,24 +136,23 @@ static int ldb_match_comparison(struct ldb_context *ldb,
   match a simple leaf node
 */
 static int ldb_match_equality(struct ldb_context *ldb, 
-                             struct ldb_message *msg,
-                             struct ldb_parse_tree *tree,
+                             const struct ldb_message *msg,
+                             const struct ldb_parse_tree *tree,
                              enum ldb_scope scope)
 {
        unsigned int i;
        struct ldb_message_element *el;
-       const struct ldb_attrib_handler *h;
+       const struct ldb_schema_attribute *a;
        struct ldb_dn *valuedn;
        int ret;
 
        if (ldb_attr_dn(tree->u.equality.attr) == 0) {
-               valuedn = ldb_dn_explode_casefold(ldb, 
-                                                 (char *)tree->u.equality.value.data);
+               valuedn = ldb_dn_from_ldb_val(ldb, ldb, &tree->u.equality.value);
                if (valuedn == NULL) {
                        return 0;
                }
 
-               ret = ldb_dn_compare(ldb, msg->dn, valuedn);
+               ret = ldb_dn_compare(msg->dn, valuedn);
 
                talloc_free(valuedn);
 
@@ -170,11 +167,11 @@ static int ldb_match_equality(struct ldb_context *ldb,
                return 0;
        }
 
-       h = ldb_attrib_handler(ldb, el->name);
+       a = ldb_schema_attribute_by_name(ldb, el->name);
 
        for (i=0;i<el->num_values;i++) {
-               if (h->comparison_fn(ldb, ldb, &tree->u.equality.value, 
-                                    &el->values[i]) == 0) {
+               if (a->syntax->comparison_fn(ldb, ldb, &tree->u.equality.value, 
+                                            &el->values[i]) == 0) {
                        return 1;
                }
        }
@@ -183,10 +180,10 @@ static int ldb_match_equality(struct ldb_context *ldb,
 }
 
 static int ldb_wildcard_compare(struct ldb_context *ldb,
-                               struct ldb_parse_tree *tree,
+                               const struct ldb_parse_tree *tree,
                                const struct ldb_val value)
 {
-       const struct ldb_attrib_handler *h;
+       const struct ldb_schema_attribute *a;
        struct ldb_val val;
        struct ldb_val cnk;
        struct ldb_val *chunk;
@@ -194,9 +191,9 @@ static int ldb_wildcard_compare(struct ldb_context *ldb,
        uint8_t *save_p = NULL;
        int c = 0;
 
-       h = ldb_attrib_handler(ldb, tree->u.substring.attr);
+       a = ldb_schema_attribute_by_name(ldb, tree->u.substring.attr);
 
-       if(h->canonicalise_fn(ldb, ldb, &value, &val) != 0)
+       if(a->syntax->canonicalise_fn(ldb, ldb, &value, &val) != 0)
                return -1;
 
        save_p = val.data;
@@ -205,10 +202,13 @@ static int ldb_wildcard_compare(struct ldb_context *ldb,
        if ( ! tree->u.substring.start_with_wildcard ) {
 
                chunk = tree->u.substring.chunks[c];
-               if(h->canonicalise_fn(ldb, ldb, chunk, &cnk) != 0) goto failed;
+               if(a->syntax->canonicalise_fn(ldb, ldb, chunk, &cnk) != 0) goto failed;
 
-               /* FIXME: case of embedded nulls */
-               if (strncmp((char *)val.data, (char *)cnk.data, cnk.length) != 0) goto failed;
+               /* This deals with wildcard prefix searches on binary attributes (eg objectGUID) */
+               if (cnk.length > val.length) {
+                       goto failed;
+               }
+               if (memcmp((char *)val.data, (char *)cnk.data, cnk.length) != 0) goto failed;
                val.length -= cnk.length;
                val.data += cnk.length;
                c++;
@@ -219,7 +219,7 @@ static int ldb_wildcard_compare(struct ldb_context *ldb,
        while (tree->u.substring.chunks[c]) {
 
                chunk = tree->u.substring.chunks[c];
-               if(h->canonicalise_fn(ldb, ldb, chunk, &cnk) != 0) goto failed;
+               if(a->syntax->canonicalise_fn(ldb, ldb, chunk, &cnk) != 0) goto failed;
 
                /* FIXME: case of embedded nulls */
                p = strstr((char *)val.data, (char *)cnk.data);
@@ -251,8 +251,8 @@ failed:
   match a simple leaf node
 */
 static int ldb_match_substring(struct ldb_context *ldb, 
-                              struct ldb_message *msg,
-                              struct ldb_parse_tree *tree,
+                              const struct ldb_message *msg,
+                              const struct ldb_parse_tree *tree,
                               enum ldb_scope scope)
 {
        unsigned int i;
@@ -276,7 +276,7 @@ static int ldb_match_substring(struct ldb_context *ldb,
 /*
   bitwise-and comparator
 */
-static int ldb_comparator_and(struct ldb_val *v1, struct ldb_val *v2)
+static int ldb_comparator_and(const struct ldb_val *v1, const struct ldb_val *v2)
 {
        uint64_t i1, i2;
        i1 = strtoull((char *)v1->data, NULL, 0);
@@ -287,7 +287,7 @@ static int ldb_comparator_and(struct ldb_val *v1, struct ldb_val *v2)
 /*
   bitwise-or comparator
 */
-static int ldb_comparator_or(struct ldb_val *v1, struct ldb_val *v2)
+static int ldb_comparator_or(const struct ldb_val *v1, const struct ldb_val *v2)
 {
        uint64_t i1, i2;
        i1 = strtoull((char *)v1->data, NULL, 0);
@@ -300,19 +300,19 @@ static int ldb_comparator_or(struct ldb_val *v1, struct ldb_val *v2)
   extended match, handles things like bitops
 */
 static int ldb_match_extended(struct ldb_context *ldb, 
-                             struct ldb_message *msg,
-                             struct ldb_parse_tree *tree,
+                             const struct ldb_message *msg,
+                             const struct ldb_parse_tree *tree,
                              enum ldb_scope scope)
 {
        int i;
        const struct {
                const char *oid;
-               int (*comparator)(struct ldb_val *, struct ldb_val *);
+               int (*comparator)(const struct ldb_val *, const struct ldb_val *);
        } rules[] = {
                { LDB_OID_COMPARATOR_AND, ldb_comparator_and},
                { LDB_OID_COMPARATOR_OR, ldb_comparator_or}
        };
-       int (*comp)(struct ldb_val *, struct ldb_val *) = NULL;
+       int (*comp)(const struct ldb_val *, const struct ldb_val *) = NULL;
        struct ldb_message_element *el;
 
        if (tree->u.extended.dnAttributes) {
@@ -363,8 +363,8 @@ static int ldb_match_extended(struct ldb_context *ldb,
   this is a recursive function, and does short-circuit evaluation
  */
 static int ldb_match_message(struct ldb_context *ldb, 
-                            struct ldb_message *msg,
-                            struct ldb_parse_tree *tree,
+                            const struct ldb_message *msg,
+                            const struct ldb_parse_tree *tree,
                             enum ldb_scope scope)
 {
        unsigned int i;
@@ -415,9 +415,9 @@ static int ldb_match_message(struct ldb_context *ldb,
 }
 
 int ldb_match_msg(struct ldb_context *ldb,
-                 struct ldb_message *msg,
-                 struct ldb_parse_tree *tree,
-                 const struct ldb_dn *base,
+                 const struct ldb_message *msg,
+                 const struct ldb_parse_tree *tree,
+                 struct ldb_dn *base,
                  enum ldb_scope scope)
 {
        if ( ! ldb_match_scope(ldb, base, msg->dn, scope) ) {