ldb:tools - always check if ldb connection has been estabilished
[ira/wip.git] / source4 / lib / ldb / tools / ldbmodify.c
1 /* 
2    ldb database library
3
4    Copyright (C) Andrew Tridgell  2004
5
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
9    
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.
14
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.
19
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/>.
22 */
23
24 /*
25  *  Name: ldb
26  *
27  *  Component: ldbmodify
28  *
29  *  Description: utility to modify records - modelled on ldapmodify
30  *
31  *  Author: Andrew Tridgell
32  */
33
34 #include "ldb.h"
35 #include "tools/cmdline.h"
36 #include "ldbutil.h"
37
38 static unsigned int failures;
39 static struct ldb_cmdline *options;
40
41 static void usage(struct ldb_context *ldb)
42 {
43         printf("Usage: ldbmodify <options> <ldif...>\n");
44         printf("Modifies a ldb based upon ldif change records\n\n");
45         ldb_cmdline_help(ldb, "ldbmodify", stdout);
46         exit(1);
47 }
48
49 /*
50   process modifies for one file
51 */
52 static int process_file(struct ldb_context *ldb, FILE *f, unsigned int *count)
53 {
54         struct ldb_ldif *ldif;
55         int ret = LDB_SUCCESS;
56         struct ldb_control **req_ctrls = ldb_parse_control_strings(ldb, ldb, (const char **)options->controls);
57         if (options->controls != NULL &&  req_ctrls== NULL) {
58                 printf("parsing controls failed: %s\n", ldb_errstring(ldb));
59                 return -1;
60         }
61
62         while ((ldif = ldb_ldif_read_file(ldb, f))) {
63                 switch (ldif->changetype) {
64                 case LDB_CHANGETYPE_NONE:
65                 case LDB_CHANGETYPE_ADD:
66                         ret = ldb_add_ctrl(ldb, ldif->msg,req_ctrls);
67                         break;
68                 case LDB_CHANGETYPE_DELETE:
69                         ret = ldb_delete_ctrl(ldb, ldif->msg->dn,req_ctrls);
70                         break;
71                 case LDB_CHANGETYPE_MODIFY:
72                         ret = ldb_modify_ctrl(ldb, ldif->msg,req_ctrls);
73                         break;
74                 }
75                 if (ret != LDB_SUCCESS) {
76                         fprintf(stderr, "ERR: (%s) \"%s\" on DN %s\n",
77                                 ldb_strerror(ret),
78                                 ldb_errstring(ldb), ldb_dn_get_linearized(ldif->msg->dn));
79                         failures++;
80                 } else {
81                         (*count)++;
82                         if (options->verbose) {
83                                 printf("Modified %s\n", ldb_dn_get_linearized(ldif->msg->dn));
84                         }
85                 }
86                 ldb_ldif_read_free(ldb, ldif);
87         }
88
89         return ret;
90 }
91
92 int main(int argc, const char **argv)
93 {
94         struct ldb_context *ldb;
95         unsigned int i, count = 0;
96         int ret = LDB_SUCCESS;
97         TALLOC_CTX *mem_ctx = talloc_new(NULL);
98
99         ldb = ldb_init(mem_ctx, NULL);
100         if (ldb == NULL) {
101                 return LDB_ERR_OPERATIONS_ERROR;
102         }
103
104         options = ldb_cmdline_process(ldb, argc, argv, usage);
105
106         if (options->argc == 0) {
107                 ret = process_file(ldb, stdin, &count);
108         } else {
109                 for (i=0;i<options->argc;i++) {
110                         const char *fname = options->argv[i];
111                         FILE *f;
112                         f = fopen(fname, "r");
113                         if (!f) {
114                                 perror(fname);
115                                 exit(1);
116                         }
117                         ret = process_file(ldb, f, &count);
118                         fclose(f);
119                 }
120         }
121
122         talloc_free(mem_ctx);
123
124         printf("Modified %u records with %u failures\n", count, failures);
125
126         return ret;
127 }