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 "includes.h"
|
---|
35 | #include "ldb/include/includes.h"
|
---|
36 | #include "ldb/tools/cmdline.h"
|
---|
37 |
|
---|
38 | static int failures;
|
---|
39 |
|
---|
40 | static void usage(void)
|
---|
41 | {
|
---|
42 | printf("Usage: ldbadd <options> <ldif...>\n");
|
---|
43 | printf("Options:\n");
|
---|
44 | printf(" -H ldb_url choose the database (or $LDB_URL)\n");
|
---|
45 | printf(" -o options pass options like modules to activate\n");
|
---|
46 | printf(" e.g: -o modules:timestamps\n");
|
---|
47 | printf("\n");
|
---|
48 | printf("Adds records to a ldb, reading ldif the specified list of files\n\n");
|
---|
49 | exit(1);
|
---|
50 | }
|
---|
51 |
|
---|
52 |
|
---|
53 | /*
|
---|
54 | add records from an opened file
|
---|
55 | */
|
---|
56 | static int process_file(struct ldb_context *ldb, FILE *f, int *count)
|
---|
57 | {
|
---|
58 | struct ldb_ldif *ldif;
|
---|
59 | int ret = LDB_SUCCESS;
|
---|
60 |
|
---|
61 | while ((ldif = ldb_ldif_read_file(ldb, f))) {
|
---|
62 | if (ldif->changetype != LDB_CHANGETYPE_ADD &&
|
---|
63 | ldif->changetype != LDB_CHANGETYPE_NONE) {
|
---|
64 | fprintf(stderr, "Only CHANGETYPE_ADD records allowed\n");
|
---|
65 | break;
|
---|
66 | }
|
---|
67 |
|
---|
68 | ldif->msg = ldb_msg_canonicalize(ldb, ldif->msg);
|
---|
69 |
|
---|
70 | ret = ldb_add(ldb, ldif->msg);
|
---|
71 | if (ret != LDB_SUCCESS) {
|
---|
72 | fprintf(stderr, "ERR: \"%s\" on DN %s\n",
|
---|
73 | ldb_errstring(ldb), ldb_dn_linearize(ldb, ldif->msg->dn));
|
---|
74 | failures++;
|
---|
75 | } else {
|
---|
76 | (*count)++;
|
---|
77 | }
|
---|
78 | ldb_ldif_read_free(ldb, ldif);
|
---|
79 | }
|
---|
80 |
|
---|
81 | return ret;
|
---|
82 | }
|
---|
83 |
|
---|
84 |
|
---|
85 |
|
---|
86 | int main(int argc, const char **argv)
|
---|
87 | {
|
---|
88 | struct ldb_context *ldb;
|
---|
89 | int i, ret=0, count=0;
|
---|
90 | struct ldb_cmdline *options;
|
---|
91 |
|
---|
92 | ldb_global_init();
|
---|
93 |
|
---|
94 | ldb = ldb_init(NULL);
|
---|
95 |
|
---|
96 | options = ldb_cmdline_process(ldb, argc, argv, usage);
|
---|
97 |
|
---|
98 | if (options->argc == 0) {
|
---|
99 | ret = process_file(ldb, stdin, &count);
|
---|
100 | } else {
|
---|
101 | for (i=0;i<options->argc;i++) {
|
---|
102 | const char *fname = options->argv[i];
|
---|
103 | FILE *f;
|
---|
104 | f = fopen(fname, "r");
|
---|
105 | if (!f) {
|
---|
106 | perror(fname);
|
---|
107 | exit(1);
|
---|
108 | }
|
---|
109 | ret = process_file(ldb, f, &count);
|
---|
110 | fclose(f);
|
---|
111 | }
|
---|
112 | }
|
---|
113 |
|
---|
114 | talloc_free(ldb);
|
---|
115 |
|
---|
116 | printf("Added %d records with %d failures\n", count, failures);
|
---|
117 |
|
---|
118 | return ret;
|
---|
119 | }
|
---|