s4-dsdb: use ldb_msg_canonicalize_ex() in ldbadd-process_file()
[kamenim/samba.git] / source4 / lib / ldb / tools / ldbadd.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: ldbadd
28  *
29  *  Description: utility to add records - modelled on ldapadd
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(void)
42 {
43         printf("Usage: ldbadd <options> <ldif...>\n");  
44         printf("Adds records to a ldb, reading ldif the specified list of files\n\n");
45         ldb_cmdline_help("ldbadd", stdout);
46         exit(1);
47 }
48
49
50 /*
51   add records from an opened file
52 */
53 static int process_file(struct ldb_context *ldb, FILE *f, unsigned int *count)
54 {
55         struct ldb_ldif *ldif;
56         int ret = LDB_SUCCESS;
57         struct ldb_control **req_ctrls = ldb_parse_control_strings(ldb, ldb, (const char **)options->controls);
58         if (options->controls != NULL &&  req_ctrls== NULL) {
59                 printf("parsing controls failed: %s\n", ldb_errstring(ldb));
60                 return -1;
61         }
62
63
64         while ((ldif = ldb_ldif_read_file(ldb, f))) {
65                 if (ldif->changetype != LDB_CHANGETYPE_ADD &&
66                     ldif->changetype != LDB_CHANGETYPE_NONE) {
67                         fprintf(stderr, "Only CHANGETYPE_ADD records allowed\n");
68                         break;
69                 }
70
71                 ret = ldb_msg_canonicalize_ex(ldb, ldif->msg,
72                                               (TALLOC_CTX*)ldif, &ldif->msg);
73                 if (ret != LDB_SUCCESS) {
74                         fprintf(stderr,
75                                 "ERR: Message canonicalize failed - %s\n",
76                                 ldb_strerror(ret));
77                         failures++;
78                         ldb_ldif_read_free(ldb, ldif);
79                         continue;
80                 }
81
82                 ret = ldb_add_ctrl(ldb, ldif->msg,req_ctrls);
83                 if (ret != LDB_SUCCESS) {
84                         fprintf(stderr, "ERR: %s : \"%s\" on DN %s\n",
85                                 ldb_strerror(ret), ldb_errstring(ldb),
86                                 ldb_dn_get_linearized(ldif->msg->dn));
87                         failures++;
88                 } else {
89                         (*count)++;
90                         if (options->verbose) {
91                                 printf("Added %s\n", ldb_dn_get_linearized(ldif->msg->dn));
92                         }
93                 }
94                 ldb_ldif_read_free(ldb, ldif);
95         }
96
97         return ret;
98 }
99
100
101
102 int main(int argc, const char **argv)
103 {
104         struct ldb_context *ldb;
105         unsigned int i, count = 0;
106         int ret=0;
107         TALLOC_CTX *mem_ctx = talloc_new(NULL);
108
109         ldb = ldb_init(mem_ctx, NULL);
110
111         options = ldb_cmdline_process(ldb, argc, argv, usage);
112
113         if (ldb_transaction_start(ldb) != 0) {
114                 printf("Failed to start transaction: %s\n", ldb_errstring(ldb));
115                 exit(1);
116         }
117
118         if (options->argc == 0) {
119                 ret = process_file(ldb, stdin, &count);
120         } else {
121                 for (i=0;i<options->argc;i++) {
122                         const char *fname = options->argv[i];
123                         FILE *f;
124                         f = fopen(fname, "r");
125                         if (!f) {
126                                 perror(fname);
127                                 exit(1);
128                         }
129                         ret = process_file(ldb, f, &count);
130                         fclose(f);
131                 }
132         }
133
134         if (count != 0) {
135                 if (ldb_transaction_commit(ldb) != 0) {
136                         printf("Failed to commit transaction: %s\n", ldb_errstring(ldb));
137                         exit(1);
138                 }
139         } else {
140                 ldb_transaction_cancel(ldb);
141         }
142
143         talloc_free(mem_ctx);
144
145         printf("Added %d records with %d failures\n", count, failures);
146         
147         return ret;
148 }