r9751: Remove C version of samba3dump (the EJS version works nicely as well).
[sfrench/samba-autobuild/.git] / source4 / lib / 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 #include "lib/ldb/include/ldb.h"
26
27 /*
28   search the sam for the specified attributes - va_list variant
29 */
30 int gendb_search_v(struct ldb_context *ldb, 
31                    TALLOC_CTX *mem_ctx,
32                    const struct ldb_dn *basedn,
33                    struct ldb_message ***res,
34                    const char * const *attrs,
35                    const char *format, 
36                    va_list ap)  _PRINTF_ATTRIBUTE(6,0)
37 {
38         enum ldb_scope scope = LDB_SCOPE_SUBTREE;
39         char *expr = NULL;
40         int count;
41
42         if (format) {
43                 vasprintf(&expr, format, ap);
44                 if (expr == NULL) {
45                         return -1;
46                 }
47         } else {
48                 scope = LDB_SCOPE_BASE;
49         }
50
51         *res = NULL;
52
53         count = ldb_search(ldb, basedn, scope, expr, attrs, res);
54
55         if (*res) talloc_steal(mem_ctx, *res);
56
57         DEBUG(4,("gendb_search_v: %s %s -> %d  (%s)\n", 
58                  basedn?ldb_dn_linearize(mem_ctx,basedn):"NULL",
59                  expr?expr:"NULL", count,
60                  count==-1?ldb_errstring(ldb):"OK"));
61
62         free(expr);
63
64         return count;
65 }
66
67 /*
68   search the LDB for the specified attributes - varargs variant
69 */
70 int gendb_search(struct ldb_context *ldb,
71                  TALLOC_CTX *mem_ctx, 
72                  const struct ldb_dn *basedn,
73                  struct ldb_message ***res,
74                  const char * const *attrs,
75                  const char *format, ...) _PRINTF_ATTRIBUTE(6,7)
76 {
77         va_list ap;
78         int count;
79
80         va_start(ap, format);
81         count = gendb_search_v(ldb, mem_ctx, basedn, res, attrs, format, ap);
82         va_end(ap);
83
84         return count;
85 }
86
87 int gendb_search_dn(struct ldb_context *ldb,
88                  TALLOC_CTX *mem_ctx, 
89                  const struct ldb_dn *dn,
90                  struct ldb_message ***res,
91                  const char * const *attrs)
92 {
93         return gendb_search(ldb, mem_ctx, dn, res, attrs, "dn=%s", ldb_dn_linearize(mem_ctx, dn));
94 }
95
96 /*
97   setup some initial ldif in a ldb
98 */
99 int gendb_add_ldif(struct ldb_context *ldb, const char *ldif_string)
100 {
101         struct ldb_ldif *ldif;
102         int ret;
103         ldif = ldb_ldif_read_string(ldb, &ldif_string);
104         if (ldif == NULL) return -1;
105         ret = ldb_add(ldb, ldif->msg);
106         talloc_free(ldif);
107         return ret;
108 }