r25068: Older samba3 DCs will return DCERPC_FAULT_OP_RNG_ERROR for every opcode on the
[Samba.git] / source / lib / ldb / tools / ldbadd.c
blob9595703e92c32db1ad68dd5aa5c4d462030dbb83
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 2 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, write to the Free Software
22 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 * Name: ldb
28 * Component: ldbadd
30 * Description: utility to add records - modelled on ldapadd
32 * Author: Andrew Tridgell
35 #include "includes.h"
36 #include "ldb/include/includes.h"
37 #include "ldb/tools/cmdline.h"
39 static int failures;
41 static void usage(void)
43 printf("Usage: ldbadd <options> <ldif...>\n");
44 printf("Options:\n");
45 printf(" -H ldb_url choose the database (or $LDB_URL)\n");
46 printf(" -o options pass options like modules to activate\n");
47 printf(" e.g: -o modules:timestamps\n");
48 printf("\n");
49 printf("Adds records to a ldb, reading ldif the specified list of files\n\n");
50 exit(1);
55 add records from an opened file
57 static int process_file(struct ldb_context *ldb, FILE *f, int *count)
59 struct ldb_ldif *ldif;
60 int ret = LDB_SUCCESS;
62 while ((ldif = ldb_ldif_read_file(ldb, f))) {
63 if (ldif->changetype != LDB_CHANGETYPE_ADD &&
64 ldif->changetype != LDB_CHANGETYPE_NONE) {
65 fprintf(stderr, "Only CHANGETYPE_ADD records allowed\n");
66 break;
69 ldif->msg = ldb_msg_canonicalize(ldb, ldif->msg);
71 ret = ldb_add(ldb, ldif->msg);
72 if (ret != LDB_SUCCESS) {
73 fprintf(stderr, "ERR: \"%s\" on DN %s\n",
74 ldb_errstring(ldb), ldb_dn_linearize(ldb, ldif->msg->dn));
75 failures++;
76 } else {
77 (*count)++;
79 ldb_ldif_read_free(ldb, ldif);
82 return ret;
87 int main(int argc, const char **argv)
89 struct ldb_context *ldb;
90 int i, ret=0, count=0;
91 struct ldb_cmdline *options;
93 ldb_global_init();
95 ldb = ldb_init(NULL);
97 options = ldb_cmdline_process(ldb, argc, argv, usage);
99 if (options->argc == 0) {
100 ret = process_file(ldb, stdin, &count);
101 } else {
102 for (i=0;i<options->argc;i++) {
103 const char *fname = options->argv[i];
104 FILE *f;
105 f = fopen(fname, "r");
106 if (!f) {
107 perror(fname);
108 exit(1);
110 ret = process_file(ldb, f, &count);
111 fclose(f);
115 talloc_free(ldb);
117 printf("Added %d records with %d failures\n", count, failures);
119 return ret;