ldb: Permit desactivation of autocomit for every ldb_xxx_ctrl function
[Samba/bb.git] / lib / ldb / tools / ldbadd.c
bloba073f519ed5732350e3862fe00bf4ec2b2bcadce
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: ldbadd
29 * Description: utility to add records - modelled on ldapadd
31 * Author: Andrew Tridgell
34 #include "ldb.h"
35 #include "tools/cmdline.h"
36 #include "ldbutil.h"
38 static unsigned int failures;
39 static struct ldb_cmdline *options;
41 static void usage(struct ldb_context *ldb)
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(ldb, "ldbadd", stdout);
46 exit(LDB_ERR_OPERATIONS_ERROR);
51 add records from an opened file
53 static int process_file(struct ldb_context *ldb, FILE *f, unsigned int *count)
55 struct ldb_ldif *ldif;
56 int fun_ret = LDB_SUCCESS, ret;
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 LDB_ERR_OPERATIONS_ERROR;
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;
71 ret = ldb_msg_normalize(ldb, ldif, ldif->msg, &ldif->msg);
72 if (ret != LDB_SUCCESS) {
73 fprintf(stderr,
74 "ERR: Message canonicalize failed - %s\n",
75 ldb_strerror(ret));
76 failures++;
77 fun_ret = ret;
78 ldb_ldif_read_free(ldb, ldif);
79 continue;
82 ret = ldb_add_ctrl(ldb, ldif->msg,req_ctrls, true);
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 fun_ret = ret;
89 } else {
90 (*count)++;
91 if (options->verbose) {
92 printf("Added %s\n", ldb_dn_get_linearized(ldif->msg->dn));
95 ldb_ldif_read_free(ldb, ldif);
98 return fun_ret;
103 int main(int argc, const char **argv)
105 struct ldb_context *ldb;
106 unsigned int i, count = 0;
107 int ret = LDB_SUCCESS;
108 TALLOC_CTX *mem_ctx = talloc_new(NULL);
110 ldb = ldb_init(mem_ctx, NULL);
111 if (ldb == NULL) {
112 return LDB_ERR_OPERATIONS_ERROR;
115 options = ldb_cmdline_process(ldb, argc, argv, usage);
117 ret = ldb_transaction_start(ldb);
118 if (ret != LDB_SUCCESS) {
119 printf("Failed to start transaction: %s\n", ldb_errstring(ldb));
120 return ret;
123 if (options->argc == 0) {
124 ret = process_file(ldb, stdin, &count);
125 } else {
126 for (i=0;i<options->argc;i++) {
127 const char *fname = options->argv[i];
128 FILE *f;
129 f = fopen(fname, "r");
130 if (!f) {
131 perror(fname);
132 return LDB_ERR_OPERATIONS_ERROR;
134 ret = process_file(ldb, f, &count);
135 fclose(f);
139 if (count != 0) {
140 ret = ldb_transaction_commit(ldb);
141 if (ret != LDB_SUCCESS) {
142 printf("Failed to commit transaction: %s\n", ldb_errstring(ldb));
143 return ret;
145 } else {
146 ldb_transaction_cancel(ldb);
149 talloc_free(mem_ctx);
151 printf("Added %u records with %u failures\n", count, failures);
153 return ret;