s3:net_idmap_dump deal with idmap config * : backend config style
[Samba/gebeck_regimport.git] / lib / ldb / tools / ldbdel.c
blob8036d09a70da6d40bb6b69f520235e0a723767ae
1 /*
2 ldb database library
4 Copyright (C) Andrew Tridgell 2004
6 ** NOTE! The following LGPL license applies to the ldb
7 ** library. This does NOT imply that all of Samba is released
8 ** under the LGPL
10 This library is free software; you can redistribute it and/or
11 modify it under the terms of the GNU Lesser General Public
12 License as published by the Free Software Foundation; either
13 version 3 of the License, or (at your option) any later version.
15 This library is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 Lesser General Public License for more details.
20 You should have received a copy of the GNU Lesser General Public
21 License along with this library; if not, see <http://www.gnu.org/licenses/>.
25 * Name: ldb
27 * Component: ldbdel
29 * Description: utility to delete records - modelled on ldapdelete
31 * Author: Andrew Tridgell
34 #include "replace.h"
35 #include "ldb.h"
36 #include "tools/cmdline.h"
37 #include "ldbutil.h"
39 static int dn_cmp(struct ldb_message **msg1, struct ldb_message **msg2)
41 return ldb_dn_compare((*msg1)->dn, (*msg2)->dn);
44 static int ldb_delete_recursive(struct ldb_context *ldb, struct ldb_dn *dn,struct ldb_control **req_ctrls)
46 int ret;
47 unsigned int i, total=0;
48 const char *attrs[] = { NULL };
49 struct ldb_result *res;
51 ret = ldb_search(ldb, ldb, &res, dn, LDB_SCOPE_SUBTREE, attrs, "distinguishedName=*");
52 if (ret != LDB_SUCCESS) return ret;
54 /* sort the DNs, deepest first */
55 TYPESAFE_QSORT(res->msgs, res->count, dn_cmp);
57 for (i = 0; i < res->count; i++) {
58 if (ldb_delete_ctrl(ldb, res->msgs[i]->dn,req_ctrls) == LDB_SUCCESS) {
59 total++;
60 } else {
61 printf("Failed to delete '%s' - %s\n",
62 ldb_dn_get_linearized(res->msgs[i]->dn),
63 ldb_errstring(ldb));
67 talloc_free(res);
69 if (total == 0) {
70 return LDB_ERR_OPERATIONS_ERROR;
72 printf("Deleted %u records\n", total);
73 return LDB_SUCCESS;
76 static void usage(struct ldb_context *ldb)
78 printf("Usage: ldbdel <options> <DN...>\n");
79 printf("Deletes records from a ldb\n\n");
80 ldb_cmdline_help(ldb, "ldbdel", stdout);
81 exit(LDB_ERR_OPERATIONS_ERROR);
84 int main(int argc, const char **argv)
86 struct ldb_control **req_ctrls;
87 struct ldb_cmdline *options;
88 struct ldb_context *ldb;
89 int ret = 0, i;
90 TALLOC_CTX *mem_ctx = talloc_new(NULL);
92 ldb = ldb_init(mem_ctx, NULL);
93 if (ldb == NULL) {
94 return LDB_ERR_OPERATIONS_ERROR;
97 options = ldb_cmdline_process(ldb, argc, argv, usage);
99 if (options->argc < 1) {
100 usage(ldb);
103 req_ctrls = ldb_parse_control_strings(ldb, ldb, (const char **)options->controls);
104 if (options->controls != NULL && req_ctrls== NULL) {
105 printf("parsing controls failed: %s\n", ldb_errstring(ldb));
106 return LDB_ERR_OPERATIONS_ERROR;
109 for (i=0;i<options->argc;i++) {
110 struct ldb_dn *dn;
112 dn = ldb_dn_new(ldb, ldb, options->argv[i]);
113 if (dn == NULL) {
114 return LDB_ERR_OPERATIONS_ERROR;
116 if (options->recursive) {
117 ret = ldb_delete_recursive(ldb, dn,req_ctrls);
118 } else {
119 ret = ldb_delete_ctrl(ldb, dn,req_ctrls);
120 if (ret == LDB_SUCCESS) {
121 printf("Deleted 1 record\n");
124 if (ret != LDB_SUCCESS) {
125 printf("delete of '%s' failed - (%s) %s\n",
126 ldb_dn_get_linearized(dn),
127 ldb_strerror(ret),
128 ldb_errstring(ldb));
132 talloc_free(mem_ctx);
134 return ret;