r2792: got rid of talloc_ldb_alloc() and instead created talloc_realloc_fn(),
[bbaumbach/samba-autobuild/.git] / source4 / rpc_server / common / gendb.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    common share info functions
5
6    Copyright (C) Andrew Tridgell 2004
7    Copyright (C) Tim Potter 2004
8    
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 2 of the License, or
12    (at your option) any later version.
13    
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.
18    
19    You should have received a copy of the GNU General Public License
20    along with this program; if not, write to the Free Software
21    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 */
23
24 #include "includes.h"
25
26 /*
27   search the sam for the specified attributes - va_list variant
28 */
29 int gendb_search_v(struct ldb_context *ldb, 
30                    TALLOC_CTX *mem_ctx,
31                    const char *basedn,
32                    struct ldb_message ***res,
33                    const char * const *attrs,
34                    const char *format, 
35                    va_list ap)  _PRINTF_ATTRIBUTE(6,0)
36 {
37         char *expr = NULL;
38         int count;
39
40         vasprintf(&expr, format, ap);
41         if (expr == NULL) {
42                 return -1;
43         }
44
45         ldb_set_alloc(ldb, talloc_realloc_fn, mem_ctx);
46
47         count = ldb_search(ldb, basedn, LDB_SCOPE_SUBTREE, expr, attrs, res);
48
49         DEBUG(4,("gendb_search_v: %s %s -> %d  (%s)\n", 
50                  basedn?basedn:"NULL", expr, count,
51                  count==-1?ldb_errstring(ldb):"OK"));
52
53         free(expr);
54
55         return count;
56 }