r12733: Merge ldap/ldb controls into main tree
[metze/samba/wip.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 2 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, write to the Free Software
22    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23 */
24
25 /*
26  *  Name: ldb
27  *
28  *  Component: ldbadd
29  *
30  *  Description: utility to add records - modelled on ldapadd
31  *
32  *  Author: Andrew Tridgell
33  */
34
35 #include "includes.h"
36 #include "ldb/include/ldb.h"
37 #include "ldb/include/ldb_errors.h"
38 #include "ldb/include/ldb_private.h"
39 #include "ldb/tools/cmdline.h"
40
41 #ifdef _SAMBA_BUILD_
42 #include "system/filesys.h"
43 #endif
44
45 static int failures;
46
47 static void usage(void)
48 {
49         printf("Usage: ldbadd <options> <ldif...>\n");
50         printf("Options:\n");
51         printf("  -H ldb_url       choose the database (or $LDB_URL)\n");
52         printf("  -o options       pass options like modules to activate\n");
53         printf("              e.g: -o modules:timestamps\n");
54         printf("\n");
55         printf("Adds records to a ldb, reading ldif the specified list of files\n\n");
56         exit(1);
57 }
58
59
60 /*
61   add records from an opened file
62 */
63 static int process_file(struct ldb_context *ldb, FILE *f)
64 {
65         struct ldb_ldif *ldif;
66         int ret, count=0;
67
68         while ((ldif = ldb_ldif_read_file(ldb, f))) {
69                 if (ldif->changetype != LDB_CHANGETYPE_ADD &&
70                     ldif->changetype != LDB_CHANGETYPE_NONE) {
71                         fprintf(stderr, "Only CHANGETYPE_ADD records allowed\n");
72                         break;
73                 }
74
75                 ldif->msg = ldb_msg_canonicalize(ldb, ldif->msg);
76
77                 ret = ldb_add(ldb, ldif->msg);
78                 if (ret != LDB_SUCCESS) {
79                         fprintf(stderr, "ERR: \"%s\" on DN %s\n", 
80                                 ldb_errstring(ldb), ldb_dn_linearize(ldb, ldif->msg->dn));
81                         failures++;
82                 } else {
83                         count++;
84                 }
85                 ldb_ldif_read_free(ldb, ldif);
86         }
87
88         return count;
89 }
90
91
92
93  int main(int argc, const char **argv)
94 {
95         struct ldb_context *ldb;
96         int i, count=0;
97         struct ldb_cmdline *options;
98
99         ldb = ldb_init(NULL);
100
101         options = ldb_cmdline_process(ldb, argc, argv, usage);
102
103         if (options->argc == 0) {
104                 count += process_file(ldb, stdin);
105         } else {
106                 for (i=0;i<options->argc;i++) {
107                         const char *fname = options->argv[i];
108                         FILE *f;
109                         f = fopen(fname, "r");
110                         if (!f) {
111                                 perror(fname);
112                                 exit(1);
113                         }
114                         count += process_file(ldb, f);
115                         fclose(f);
116                 }
117         }
118
119         talloc_free(ldb);
120
121         printf("Added %d records with %d failures\n", count, failures);
122         
123         return 0;
124 }