2 Unix SMB/CIFS implementation.
4 common share info functions
6 Copyright (C) Andrew Tridgell 2004
7 Copyright (C) Tim Potter 2004
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
25 #include "lib/util/util_ldb.h"
26 #include "lib/util/debug.h"
29 * search the LDB for the specified attributes - va_list variant
31 int gendb_search_v(struct ldb_context
*ldb
,
33 struct ldb_dn
*basedn
,
34 struct ldb_message
***msgs
,
35 const char * const *attrs
,
39 enum ldb_scope scope
= LDB_SCOPE_SUBTREE
;
40 struct ldb_result
*res
;
45 expr
= talloc_vasprintf(mem_ctx
, format
, ap
);
50 scope
= LDB_SCOPE_BASE
;
55 ret
= ldb_search(ldb
, mem_ctx
, &res
, basedn
, scope
, attrs
,
56 expr
?"%s":NULL
, expr
);
58 if (ret
== LDB_SUCCESS
) {
59 DBG_DEBUG("%s %s -> %d\n",
60 basedn
?ldb_dn_get_linearized(basedn
):"NULL",
61 expr
?expr
:"NULL", res
->count
);
65 *msgs
= talloc_steal(mem_ctx
, res
->msgs
);
68 } else if (scope
== LDB_SCOPE_BASE
&& ret
== LDB_ERR_NO_SUCH_OBJECT
) {
70 if (msgs
!= NULL
) *msgs
= NULL
;
72 DBG_INFO("search failed: %s\n",
75 if (msgs
!= NULL
) *msgs
= NULL
;
84 * search the LDB for the specified attributes - varargs variant
86 int gendb_search(struct ldb_context
*ldb
,
88 struct ldb_dn
*basedn
,
89 struct ldb_message
***res
,
90 const char * const *attrs
,
91 const char *format
, ...)
97 count
= gendb_search_v(ldb
, mem_ctx
, basedn
, res
, attrs
, format
, ap
);
104 * search the LDB for a specified record (by DN)
106 int gendb_search_dn(struct ldb_context
*ldb
,
109 struct ldb_message
***res
,
110 const char * const *attrs
)
112 return gendb_search(ldb
, mem_ctx
, dn
, res
, attrs
, NULL
);