r10894: make the handling of dn/distinguishedName much closer to real
[ira/wip.git] / source4 / lib / ldb / tools / cmdline.c
1 /* 
2    ldb database library - command line handling for ldb tools
3
4    Copyright (C) Andrew Tridgell  2005
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 #include "includes.h"
26 #include "ldb/include/ldb.h"
27 #include "ldb/include/ldb_private.h"
28 #include "ldb/tools/cmdline.h"
29 #ifdef _SAMBA_BUILD_
30 #include "lib/cmdline/popt_common.h"
31 #endif
32
33 /*
34   process command line options
35 */
36 struct ldb_cmdline *ldb_cmdline_process(struct ldb_context *ldb, int argc, const char **argv,
37                                         void (*usage)(void))
38 {
39         struct ldb_cmdline options, *ret=NULL;
40         poptContext pc;
41 #ifdef _SAMBA_BUILD_
42         int r;
43 #endif
44         int num_options = 0;
45         int opt;
46         struct poptOption popt_options[] = {
47                 POPT_AUTOHELP
48                 { "url",       'H', POPT_ARG_STRING, &options.url, 0, "database URL", "URL" },
49                 { "basedn",    'b', POPT_ARG_STRING, &options.basedn, 0, "base DN", "DN" },
50                 { "editor",    'e', POPT_ARG_STRING, &options.editor, 0, "external editor", "PROGRAM" },
51                 { "scope",     's', POPT_ARG_STRING, NULL, 's', "search scope", "SCOPE" },
52                 { "verbose",   'v', POPT_ARG_NONE, NULL, 'v', "increase verbosity", NULL },
53                 { "interactive", 'i', POPT_ARG_NONE, &options.interactive, 0, "input from stdin", NULL },
54                 { "recursive", 'r', POPT_ARG_NONE, &options.recursive, 0, "recursive delete", NULL },
55                 { "num-searches", 0, POPT_ARG_INT, &options.num_searches, 0, "number of test searches", NULL },
56                 { "num-records", 0, POPT_ARG_INT, &options.num_records, 0, "number of test records", NULL },
57                 { "all", 'a',    POPT_ARG_NONE, &options.all_records, 0, "objectClass=*", NULL },
58                 { "nosync", 0,   POPT_ARG_NONE, &options.nosync, 0, "non-synchronous transactions", NULL },
59                 { "sorted", 'S', POPT_ARG_NONE, &options.sorted, 0, "sort attributes", NULL },
60                 { "sasl-mechanism", 0, POPT_ARG_STRING, &options.sasl_mechanism, 0, "choose SASL mechanism", "MECHANISM" },
61                 { "input", 'I', POPT_ARG_STRING, &options.input, 0, "Input File", "Input" },
62                 { "output", 'O', POPT_ARG_STRING, &options.output, 0, "Output File", "Output" },
63                 { NULL,    'o', POPT_ARG_STRING, NULL, 'o', "ldb_connect option", "OPTION" },
64 #ifdef _SAMBA_BUILD_
65                 POPT_COMMON_SAMBA
66                 POPT_COMMON_CREDENTIALS
67                 POPT_COMMON_VERSION
68 #endif
69                 POPT_TABLEEND
70         };
71
72 #ifdef _SAMBA_BUILD_
73         ldbsearch_init_subsystems;
74         r = ldb_register_samba_handlers(ldb);
75         if (r != 0) {
76                 goto failed;
77         }
78
79         if (ldb_set_opaque(ldb, "sessionInfo", system_session(ldb))) {
80                 goto failed;
81         }
82
83 #endif
84
85         ret = talloc_zero(ldb, struct ldb_cmdline);
86         if (ret == NULL) {
87                 ldb_oom(ldb);
88                 goto failed;
89         }
90
91         options = *ret;
92         
93         /* pull in URL */
94         options.url = getenv("LDB_URL");
95
96         /* and editor (used by ldbedit) */
97         options.editor = getenv("VISUAL");
98         if (!options.editor) {
99                 options.editor = getenv("EDITOR");
100         }
101         if (!options.editor) {
102                 options.editor = "vi";
103         }
104
105         options.scope = LDB_SCOPE_DEFAULT;
106
107         pc = poptGetContext(argv[0], argc, argv, popt_options, 
108                             POPT_CONTEXT_KEEP_FIRST);
109
110         while((opt = poptGetNextOpt(pc)) != -1) {
111                 switch (opt) {
112                 case 's': {
113                         const char *arg = poptGetOptArg(pc);
114                         if (strcmp(arg, "base") == 0) {
115                                 options.scope = LDB_SCOPE_BASE;
116                         } else if (strcmp(arg, "sub") == 0) {
117                                 options.scope = LDB_SCOPE_SUBTREE;
118                         } else if (strcmp(arg, "one") == 0) {
119                                 options.scope = LDB_SCOPE_ONELEVEL;
120                         } else {
121                                 fprintf(stderr, "Invalid scope '%s'\n", arg);
122                                 goto failed;
123                         }
124                         break;
125                 }
126
127                 case 'v':
128                         options.verbose++;
129                         break;
130
131                 case 'o':
132                         options.options = talloc_realloc(ret, options.options, 
133                                                          const char *, num_options+3);
134                         if (options.options == NULL) {
135                                 ldb_oom(ldb);
136                                 goto failed;
137                         }
138                         options.options[num_options] = poptGetOptArg(pc);
139                         options.options[num_options+1] = NULL;
140                         num_options++;
141                         break;
142                         
143                 default:
144                         fprintf(stderr, "Invalid option %s: %s\n", 
145                                 poptBadOption(pc, 0), poptStrerror(opt));
146                         if (usage) usage();
147                         goto failed;
148                 }
149         }
150
151         /* setup the remaining options for the main program to use */
152         options.argv = poptGetArgs(pc);
153         if (options.argv) {
154                 options.argv++;
155                 while (options.argv[options.argc]) options.argc++;
156         }
157
158         *ret = options;
159
160         /* all utils need some option */
161         if (ret->url == NULL) {
162                 fprintf(stderr, "You must supply a url with -H or with $LDB_URL\n");
163                 if (usage) usage();
164                 goto failed;
165         }
166
167         if (strcmp(ret->url, "NONE") != 0) {
168                 int flags = 0;
169                 if (options.nosync) {
170                         flags |= LDB_FLG_NOSYNC;
171                 }
172                 if (ldb_connect(ldb, ret->url, flags, ret->options) != 0) {
173                         fprintf(stderr, "Failed to connect to %s - %s\n", 
174                                 ret->url, ldb_errstring(ldb));
175                         goto failed;
176                 }
177         }
178
179         return ret;
180
181 failed:
182         talloc_free(ret);
183         exit(1);
184         return NULL;
185 }