r4155: More destinction between hives and predefined keys
[abartlet/samba.git/.git] / source4 / lib / registry / tools / regshell.c
1 /* 
2    Unix SMB/CIFS implementation.
3    simple registry frontend
4    
5    Copyright (C) Jelmer Vernooij 2004
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11    
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22 #include "includes.h"
23 #include "dynconfig.h"
24 #include "registry.h"
25 #include "lib/cmdline/popt_common.h"
26 #include "system/time.h"
27
28 /* 
29  * ck/cd - change key
30  * ls - list values/keys
31  * rmval/rm - remove value
32  * rmkey/rmdir - remove key
33  * mkkey/mkdir - make key
34  * ch - change hive
35  * info - show key info
36  * help
37  * exit
38  */
39
40 static struct registry_key *cmd_info(TALLOC_CTX *mem_ctx, struct registry_key *cur, int argc, char **argv)
41 {
42         time_t last_mod;
43         printf("Name: %s\n", cur->name);
44         printf("Full path: %s\n", cur->path);
45         printf("Key Class: %s\n", cur->class_name);
46         last_mod = nt_time_to_unix(cur->last_mod);
47         printf("Time Last Modified: %s\n", ctime(&last_mod));
48         /* FIXME: Security info */
49         return cur;
50 }
51
52 static struct registry_key *cmd_pwd(TALLOC_CTX *mem_ctx, struct registry_key *cur, int argc, char **argv)
53 {
54         printf("%s\n", cur->path);
55         return cur;
56 }
57
58 static struct registry_key *cmd_set(TALLOC_CTX *mem_ctx, struct registry_key *cur, int argc, char **argv)
59 {
60         /* FIXME */
61         return NULL;
62 }
63
64 static struct registry_key *cmd_ck(TALLOC_CTX *mem_ctx, struct registry_key *cur, int argc, char **argv)
65
66         struct registry_key *new = NULL;
67         WERROR error;
68         if(argc < 2) {
69                 new = cur;
70         } else {
71                 error = reg_open_key(mem_ctx, cur, argv[1], &new);
72                 if(!W_ERROR_IS_OK(error)) {
73                         DEBUG(0, ("Error opening specified key: %s\n", win_errstr(error)));
74                         return NULL;
75                 }
76         } 
77
78         printf("Current path is: %s\n", new->path);
79         
80         return new;
81 }
82
83 static struct registry_key *cmd_ls(TALLOC_CTX *mem_ctx, struct registry_key *cur, int argc, char **argv)
84 {
85         int i;
86         WERROR error;
87         struct registry_value *value;
88         struct registry_key *sub;
89         for(i = 0; W_ERROR_IS_OK(error = reg_key_get_subkey_by_index(mem_ctx, cur, i, &sub)); i++) {
90                 printf("K %s\n", sub->name);
91         }
92
93         if(!W_ERROR_EQUAL(error, WERR_NO_MORE_ITEMS)) {
94                 DEBUG(0, ("Error occured while browsing thru keys: %s\n", win_errstr(error)));
95         }
96
97         for(i = 0; W_ERROR_IS_OK(error = reg_key_get_value_by_index(mem_ctx, cur, i, &value)); i++) {
98                 printf("V \"%s\" %s %s\n", value->name, str_regtype(value->data_type), reg_val_data_string(mem_ctx, value));
99         }
100         
101         return NULL; 
102 }
103 static struct registry_key *cmd_mkkey(TALLOC_CTX *mem_ctx, struct registry_key *cur, int argc, char **argv)
104
105         struct registry_key *tmp;
106         if(argc < 2) {
107                 fprintf(stderr, "Usage: mkkey <keyname>\n");
108                 return NULL;
109         }
110         
111         if(!W_ERROR_IS_OK(reg_key_add_name(mem_ctx, cur, argv[1], 0, NULL, &tmp))) {
112                 fprintf(stderr, "Error adding new subkey '%s'\n", argv[1]);
113                 return NULL;
114         }
115
116         fprintf(stderr, "Successfully added new subkey '%s' to '%s'\n", argv[1], cur->path);
117         
118         return NULL; 
119 }
120
121 static struct registry_key *cmd_rmkey(TALLOC_CTX *mem_ctx, struct registry_key *cur, int argc, char **argv)
122
123         struct registry_key *key;
124         if(argc < 2) {
125                 fprintf(stderr, "Usage: rmkey <name>\n");
126                 return NULL;
127         }
128
129         if(!W_ERROR_IS_OK(reg_open_key(mem_ctx, cur, argv[1], &key))) {
130                 fprintf(stderr, "No such subkey '%s'\n", argv[1]);
131                 return NULL;
132         }
133
134         if(!W_ERROR_IS_OK(reg_key_del(key))) {
135                 fprintf(stderr, "Error deleting '%s'\n", argv[1]);
136         } else {
137                 fprintf(stderr, "Successfully deleted '%s'\n", argv[1]);
138         }
139         
140         return NULL; 
141 }
142
143 static struct registry_key *cmd_rmval(TALLOC_CTX *mem_ctx, struct registry_key *cur, int argc, char **argv)
144
145         struct registry_value *val;
146         if(argc < 2) {
147                 fprintf(stderr, "Usage: rmval <valuename>\n");
148                 return NULL;
149         }
150
151         if(!W_ERROR_IS_OK(reg_key_get_value_by_name(mem_ctx, cur, argv[1], &val))) {
152                 fprintf(stderr, "No such value '%s'\n", argv[1]);
153                 return NULL;
154         }
155
156         if(!W_ERROR_IS_OK(reg_del_value(val))) {
157                 fprintf(stderr, "Error deleting value '%s'\n", argv[1]);
158         } else {
159                 fprintf(stderr, "Successfully deleted value '%s'\n", argv[1]);
160         }
161
162         return NULL; 
163 }
164
165 static struct registry_key *cmd_exit(TALLOC_CTX *mem_ctx, struct registry_key *cur, int argc, char **argv)
166 {
167         exit(0);
168         return NULL; 
169 }
170
171 static struct registry_key *cmd_help(TALLOC_CTX *mem_ctx, struct registry_key *, int, char **);
172
173 struct {
174         const char *name;
175         const char *alias;
176         const char *help;
177         struct registry_key *(*handle)(TALLOC_CTX *mem_ctx, struct registry_key *, int argc, char **argv);
178 } regshell_cmds[] = {
179         {"ck", "cd", "Change current key", cmd_ck },
180         {"info", "i", "Show detailed information of a key", cmd_info },
181         {"list", "ls", "List values/keys in current key", cmd_ls },
182         {"mkkey", "mkdir", "Make new key", cmd_mkkey },
183         {"rmval", "rm", "Remove value", cmd_rmval },
184         {"rmkey", "rmdir", "Remove key", cmd_rmkey },
185         {"pwd", "pwk", "Printing current key", cmd_pwd },
186         {"set", "update", "Update value", cmd_set },
187         {"help", "?", "Help", cmd_help },
188         {"exit", "quit", "Exit", cmd_exit },
189         {NULL }
190 };
191
192 static struct registry_key *cmd_help(TALLOC_CTX *mem_ctx, struct registry_key *cur, int argc, char **argv)
193 {
194         int i;
195         printf("Available commands:\n");
196         for(i = 0; regshell_cmds[i].name; i++) {
197                 printf("%s - %s\n", regshell_cmds[i].name, regshell_cmds[i].help);
198         }
199         return NULL;
200
201
202 static struct registry_key *process_cmd(TALLOC_CTX *mem_ctx, struct registry_key *k, char *line)
203 {
204         int argc;
205         char **argv = NULL;
206         int ret, i;
207
208         if ((ret = poptParseArgvString(line, &argc, (const char ***) &argv)) != 0) {
209                 fprintf(stderr, "regshell: %s\n", poptStrerror(ret));
210                 return k;
211         }
212
213         for(i = 0; regshell_cmds[i].name; i++) {
214                 if(!strcmp(regshell_cmds[i].name, argv[0]) || 
215                    (regshell_cmds[i].alias && !strcmp(regshell_cmds[i].alias, argv[0]))) {
216                         return regshell_cmds[i].handle(mem_ctx, k, argc, argv);
217                 }
218         }
219
220         fprintf(stderr, "No such command '%s'\n", argv[0]);
221         
222         return k;
223 }
224
225 #define MAX_COMPLETIONS 100
226
227 static struct registry_key *current_key = NULL;
228
229 static char **reg_complete_command(const char *text, int end)
230 {
231         /* Complete command */
232         char **matches;
233         int i, len, samelen=0, count=1;
234
235         matches = malloc_array_p(char *, MAX_COMPLETIONS);
236         if (!matches) return NULL;
237         matches[0] = NULL;
238
239         len = strlen(text);
240         for (i=0;regshell_cmds[i].handle && count < MAX_COMPLETIONS-1;i++) {
241                 if (strncmp(text, regshell_cmds[i].name, len) == 0) {
242                         matches[count] = strdup(regshell_cmds[i].name);
243                         if (!matches[count])
244                                 goto cleanup;
245                         if (count == 1)
246                                 samelen = strlen(matches[count]);
247                         else
248                                 while (strncmp(matches[count], matches[count-1], samelen) != 0)
249                                         samelen--;
250                         count++;
251                 }
252         }
253
254         switch (count) {
255         case 0: /* should never happen */
256         case 1:
257                 goto cleanup;
258         case 2:
259                 matches[0] = strdup(matches[1]);
260                 break;
261         default:
262                 matches[0] = strndup(matches[1], samelen);
263         }
264         matches[count] = NULL;
265         return matches;
266
267 cleanup:
268         while (i >= 0) {
269                 free(matches[i]);
270                 i--;
271         }
272         free(matches);
273         return NULL;
274 }
275
276 static char **reg_complete_key(const char *text, int end)
277 {
278         struct registry_key *subkey;
279         int i, j = 1;
280         int samelen = 0;
281         int len;
282         char **matches;
283         TALLOC_CTX *mem_ctx;
284
285         matches = malloc_array_p(char *, MAX_COMPLETIONS);
286         if (!matches) return NULL;
287         matches[0] = NULL;
288
289         len = strlen(text);
290         mem_ctx = talloc_init("completion");
291         for(i = 0; j < MAX_COMPLETIONS-1; i++) {
292                 WERROR status = reg_key_get_subkey_by_index(mem_ctx, current_key, i, &subkey);
293                 if(W_ERROR_IS_OK(status)) {
294                         if(!strncmp(text, subkey->name, len)) {
295                                 matches[j] = strdup(subkey->name);
296                                 j++;
297
298                                 if (j == 1)
299                                         samelen = strlen(matches[j]);
300                                 else
301                                         while (strncmp(matches[j], matches[j-1], samelen) != 0)
302                                                 samelen--;
303                         }
304                 } else if(W_ERROR_EQUAL(status, WERR_NO_MORE_ITEMS)) {
305                         break;
306                 } else {
307                         printf("Error creating completion list: %s\n", win_errstr(status));
308                         talloc_destroy(mem_ctx);
309                         return NULL;
310                 }
311         }
312         talloc_destroy(mem_ctx);
313
314         if (j == 1) { /* No matches at all */
315                 SAFE_FREE(matches);
316                 return NULL;
317         }
318
319         if (j == 2) { /* Exact match */
320                 matches[0] = strdup(matches[1]);
321         } else {
322                 matches[0] = strndup(matches[1], samelen);
323         }               
324
325         matches[j] = NULL;
326         return matches;
327 }
328
329 static char **reg_completion(const char *text, int start, int end)
330 {
331         smb_readline_ca_char(' ');
332
333         if (start == 0) {
334                 return reg_complete_command(text, end);
335         } else {
336                 return reg_complete_key(text, end);
337         }
338 }
339
340  int main(int argc, char **argv)
341 {
342         int opt;
343         const char *backend = NULL;
344         struct registry_key *curkey = NULL;
345         poptContext pc;
346         WERROR error;
347         TALLOC_CTX *mem_ctx = talloc_init("cmd");
348         const char *remote = NULL;
349         struct registry_context *h = NULL;
350         struct poptOption long_options[] = {
351                 POPT_AUTOHELP
352                 POPT_COMMON_CREDENTIALS
353                 {"backend", 'b', POPT_ARG_STRING, &backend, 0, "backend to use", NULL},
354                 {"remote", 'R', POPT_ARG_STRING, &remote, 0, "connect to specified remote server", NULL},
355                 POPT_TABLEEND
356         };
357
358         regshell_init_subsystems;
359
360         if (!lp_load(dyn_CONFIGFILE,True,False,False)) {
361                 fprintf(stderr, "Can't load %s - run testparm to debug it\n", dyn_CONFIGFILE);
362         }
363
364         
365         pc = poptGetContext(argv[0], argc, (const char **) argv, long_options,0);
366         
367         while((opt = poptGetNextOpt(pc)) != -1) {
368         }
369
370     setup_logging("regtree", True);
371
372         if (remote) {
373                 error = reg_open_remote (&h, cmdline_get_username(), cmdline_get_userpassword(), remote); 
374         } else if (backend) {
375                 error = reg_open_hive(NULL, backend, poptGetArg(pc), NULL, &curkey);
376         } else {
377                 error = reg_open_local(&h);
378         }
379
380         if(!W_ERROR_IS_OK(error)) {
381                 fprintf(stderr, "Unable to open registry\n");
382                 return 1;
383         }
384
385         if (h) {
386                 /*FIXME: What if HKEY_CLASSES_ROOT is not present ? */
387                 reg_get_predefined_key(h, HKEY_CLASSES_ROOT, &curkey);
388         }
389         
390         poptFreeContext(pc);
391         
392         while(True) {
393                 char *line, *prompt;
394                 
395                 if(curkey->hive->root->name) {
396                         asprintf(&prompt, "%s:%s> ", curkey->hive->root->name, curkey->path);
397                 } else {
398                         asprintf(&prompt, "%s> ", curkey->path);
399                 }
400                 
401                 current_key = curkey;           /* No way to pass a void * pointer 
402                                                                            via readline :-( */
403                 line = smb_readline(prompt, NULL, reg_completion);
404
405                 if(!line)
406                         break;
407
408                 if(line[0] != '\n') {
409                         struct registry_key *new = process_cmd(mem_ctx, curkey, line);
410                         if(new)curkey = new;
411                 }
412         }
413         talloc_destroy(mem_ctx);
414
415         return 0;
416 }