Registry tools "regshell" and "regtree": Small fixup's
[metze/samba/wip.git] / source4 / lib / registry / tools / regshell.c
1 /*
2    Unix SMB/CIFS implementation.
3    simple registry frontend
4
5    Copyright (C) Jelmer Vernooij 2004-2007
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 3 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, see <http://www.gnu.org/licenses/>.
19 */
20
21 #include "includes.h"
22 #include "lib/registry/registry.h"
23 #include "lib/cmdline/popt_common.h"
24 #include "lib/events/events.h"
25 #include "system/time.h"
26 #include "lib/smbreadline/smbreadline.h"
27 #include "librpc/gen_ndr/ndr_security.h"
28 #include "lib/registry/tools/common.h"
29 #include "param/param.h"
30
31 struct regshell_context {
32         struct registry_context *registry;
33         const char *path;
34         struct registry_key *current;
35 };
36
37 /* *
38  * ck/cd - change key
39  * ls - list values/keys
40  * rmval/rm - remove value
41  * rmkey/rmdir - remove key
42  * mkkey/mkdir - make key
43  * ch - change hive
44  * info - show key info
45  * save - save hive
46  * print - print value
47  * help
48  * exit
49  */
50
51 static WERROR cmd_info(struct regshell_context *ctx, int argc, char **argv)
52 {
53         struct security_descriptor *sec_desc = NULL;
54         time_t last_mod;
55         WERROR error;
56         const char *classname = NULL;
57         NTTIME last_change;
58         uint32_t max_subkeynamelen;
59         uint32_t max_valnamelen;
60         uint32_t max_valbufsize;
61         uint32_t num_subkeys;
62         uint32_t num_values;
63
64         error = reg_key_get_info(ctx, ctx->current, &classname, &num_subkeys, &num_values,
65                                  &last_change, &max_subkeynamelen, &max_valnamelen, &max_valbufsize);
66         if (!W_ERROR_IS_OK(error)) {
67                 printf("Error getting key info: %s\n", win_errstr(error));
68                 return error;
69         }
70
71
72         printf("Name: %s\n", strchr(ctx->path, '\\')?strrchr(ctx->path, '\\')+1:
73                    ctx->path);
74         printf("Full path: %s\n", ctx->path);
75         if (classname != NULL)
76                 printf("Key Class: %s\n", classname);
77         last_mod = nt_time_to_unix(last_change);
78         printf("Time Last Modified: %s\n", ctime(&last_mod));
79         printf("Number of subkeys: %d\n", num_subkeys);
80         printf("Number of values: %d\n", num_values);
81
82         if (max_valnamelen > 0)
83                 printf("Maximum value name length: %d\n", max_valnamelen);
84
85         if (max_valbufsize > 0)
86                 printf("Maximum value data length: %d\n", max_valbufsize);
87
88         if (max_subkeynamelen > 0)
89                 printf("Maximum sub key name length: %d\n", max_subkeynamelen);
90
91         error = reg_get_sec_desc(ctx, ctx->current, &sec_desc);
92         if (!W_ERROR_IS_OK(error)) {
93                 printf("Error getting security descriptor\n");
94                 return error;
95         }
96         ndr_print_debug((ndr_print_fn_t)ndr_print_security_descriptor,
97                         "Security", sec_desc);
98         talloc_free(sec_desc);
99
100         return WERR_OK;
101 }
102
103 static WERROR cmd_predef(struct regshell_context *ctx, int argc, char **argv)
104 {
105         struct registry_key *ret = NULL;
106         if (argc < 2) {
107                 fprintf(stderr, "Usage: predef predefined-key-name\n");
108         } else if (!ctx) {
109                 fprintf(stderr, "No full registry loaded, no predefined keys defined\n");
110         } else {
111                 WERROR error = reg_get_predefined_key_by_name(ctx->registry,
112                                                               argv[1], &ret);
113
114                 if (!W_ERROR_IS_OK(error)) {
115                         fprintf(stderr, "Error opening predefined key %s: %s\n",
116                                 argv[1], win_errstr(error));
117                         return error;
118                 }
119
120                 ctx->path = strupper_talloc(ctx, argv[1]);
121                 ctx->current = ret;
122         }
123
124         return WERR_OK;
125 }
126
127 static WERROR cmd_pwd(struct regshell_context *ctx,
128                       int argc, char **argv)
129 {
130         printf("%s\n", ctx->path);
131         return WERR_OK;
132 }
133
134 static WERROR cmd_set(struct regshell_context *ctx, int argc, char **argv)
135 {
136         struct registry_value val;
137         WERROR error;
138
139         if (argc < 4) {
140                 fprintf(stderr, "Usage: set value-name type value\n");
141                 return WERR_INVALID_PARAM;
142         }
143
144         if (!reg_string_to_val(ctx, lp_iconv_convenience(cmdline_lp_ctx), 
145                                argv[2], argv[3], &val.data_type,
146                                &val.data)) {
147                 fprintf(stderr, "Unable to interpret data\n");
148                 return WERR_INVALID_PARAM;
149         }
150
151         error = reg_val_set(ctx->current, argv[1], val.data_type, val.data);
152         if (!W_ERROR_IS_OK(error)) {
153                 fprintf(stderr, "Error setting value: %s\n", win_errstr(error));
154                 return error;
155         }
156
157         return WERR_OK;
158 }
159
160 static WERROR cmd_ck(struct regshell_context *ctx, int argc, char **argv)
161 {
162         struct registry_key *new = NULL;
163         WERROR error;
164
165         if(argc == 2) {
166                 error = reg_open_key(ctx->registry, ctx->current, argv[1],
167                                      &new);
168                 if(!W_ERROR_IS_OK(error)) {
169                         DEBUG(0, ("Error opening specified key: %s\n",
170                                 win_errstr(error)));
171                         return error;
172                 }
173
174                 ctx->path = talloc_asprintf(ctx, "%s\\%s", ctx->path, argv[1]);
175                 ctx->current = new;
176         }
177         printf("New path is: %s\n", ctx->path);
178
179         return WERR_OK;
180 }
181
182 static WERROR cmd_print(struct regshell_context *ctx, int argc, char **argv)
183 {
184         uint32_t value_type;
185         DATA_BLOB value_data;
186         WERROR error;
187
188         if (argc != 2) {
189                 fprintf(stderr, "Usage: print <valuename>\n");
190                 return WERR_INVALID_PARAM;
191         }
192
193         error = reg_key_get_value_by_name(ctx, ctx->current, argv[1],
194                                           &value_type, &value_data);
195         if (!W_ERROR_IS_OK(error)) {
196                 fprintf(stderr, "No such value '%s'\n", argv[1]);
197                 return error;
198         }
199
200         printf("%s\n%s\n", str_regtype(value_type),
201                    reg_val_data_string(ctx, lp_iconv_convenience(cmdline_lp_ctx), value_type, value_data));
202
203         return WERR_OK;
204 }
205
206 static WERROR cmd_ls(struct regshell_context *ctx, int argc, char **argv)
207 {
208         int i;
209         WERROR error;
210         uint32_t valuetype;
211         DATA_BLOB valuedata;
212         const char *name = NULL;
213
214         for (i = 0; W_ERROR_IS_OK(error = reg_key_get_subkey_by_index(ctx,
215                                                                       ctx->current,
216                                                                       i,
217                                                                       &name,
218                                                                       NULL,
219                                                                       NULL)); i++) {
220                 printf("K %s\n", name);
221         }
222
223         if (!W_ERROR_EQUAL(error, WERR_NO_MORE_ITEMS)) {
224                 fprintf(stderr, "Error occured while browsing thru keys: %s\n",
225                         win_errstr(error));
226                 return error;
227         }
228
229         for (i = 0; W_ERROR_IS_OK(error = reg_key_get_value_by_index(ctx,
230                 ctx->current, i, &name, &valuetype, &valuedata)); i++)
231                 printf("V \"%s\" %s %s\n", name, str_regtype(valuetype),
232                            reg_val_data_string(ctx, lp_iconv_convenience(cmdline_lp_ctx), valuetype, valuedata));
233
234         return WERR_OK;
235 }
236 static WERROR cmd_mkkey(struct regshell_context *ctx, int argc, char **argv)
237 {
238         struct registry_key *tmp;
239         WERROR error;
240
241         if(argc < 2) {
242                 fprintf(stderr, "Usage: mkkey <keyname>\n");
243                 return WERR_INVALID_PARAM;
244         }
245
246         error = reg_key_add_name(ctx, ctx->current, argv[1], 0, NULL, &tmp);
247
248         if (!W_ERROR_IS_OK(error)) {
249                 fprintf(stderr, "Error adding new subkey '%s'\n", argv[1]);
250                 return error;
251         }
252
253         return WERR_OK;
254 }
255
256 static WERROR cmd_rmkey(struct regshell_context *ctx,
257                         int argc, char **argv)
258 {
259         WERROR error;
260
261         if(argc < 2) {
262                 fprintf(stderr, "Usage: rmkey <name>\n");
263                 return WERR_INVALID_PARAM;
264         }
265
266         error = reg_key_del(ctx->current, argv[1]);
267         if(!W_ERROR_IS_OK(error)) {
268                 fprintf(stderr, "Error deleting '%s'\n", argv[1]);
269                 return error;
270         } else {
271                 fprintf(stderr, "Successfully deleted '%s'\n", argv[1]);
272         }
273
274         return WERR_OK;
275 }
276
277 static WERROR cmd_rmval(struct regshell_context *ctx, int argc, char **argv)
278 {
279         WERROR error;
280
281         if(argc < 2) {
282                 fprintf(stderr, "Usage: rmval <valuename>\n");
283                 return WERR_INVALID_PARAM;
284         }
285
286         error = reg_del_value(ctx->current, argv[1]);
287         if(!W_ERROR_IS_OK(error)) {
288                 fprintf(stderr, "Error deleting value '%s'\n", argv[1]);
289                 return error;
290         } else {
291                 fprintf(stderr, "Successfully deleted value '%s'\n", argv[1]);
292         }
293
294         return WERR_OK;
295 }
296
297 _NORETURN_ static WERROR cmd_exit(struct regshell_context *ctx,
298                                   int argc, char **argv)
299 {
300         exit(0);
301         return WERR_OK;
302 }
303
304 static WERROR cmd_help(struct regshell_context *ctx, int, char **);
305
306 static struct {
307         const char *name;
308         const char *alias;
309         const char *help;
310         WERROR (*handle)(struct regshell_context *ctx, int argc, char **argv);
311 } regshell_cmds[] = {
312         {"ck", "cd", "Change current key", cmd_ck },
313         {"info", "i", "Show detailed information of a key", cmd_info },
314         {"list", "ls", "List values/keys in current key", cmd_ls },
315         {"print", "p", "Print value", cmd_print },
316         {"mkkey", "mkdir", "Make new key", cmd_mkkey },
317         {"rmval", "rm", "Remove value", cmd_rmval },
318         {"rmkey", "rmdir", "Remove key", cmd_rmkey },
319         {"pwd", "pwk", "Printing current key", cmd_pwd },
320         {"set", "update", "Update value", cmd_set },
321         {"help", "?", "Help", cmd_help },
322         {"exit", "quit", "Exit", cmd_exit },
323         {"predef", "predefined", "Go to predefined key", cmd_predef },
324         {NULL }
325 };
326
327 static WERROR cmd_help(struct regshell_context *ctx,
328                        int argc, char **argv)
329 {
330         int i;
331         printf("Available commands:\n");
332         for(i = 0; regshell_cmds[i].name; i++) {
333                 printf("%s - %s\n", regshell_cmds[i].name,
334                         regshell_cmds[i].help);
335         }
336         return WERR_OK;
337 }
338
339 static WERROR process_cmd(struct regshell_context *ctx,
340                           char *line)
341 {
342         int argc;
343         char **argv = NULL;
344         int ret, i;
345
346         if ((ret = poptParseArgvString(line, &argc, (const char ***) &argv)) != 0) {
347                 fprintf(stderr, "regshell: %s\n", poptStrerror(ret));
348                 return WERR_INVALID_PARAM;
349         }
350
351         for(i = 0; regshell_cmds[i].name; i++) {
352                 if(!strcmp(regshell_cmds[i].name, argv[0]) ||
353                    (regshell_cmds[i].alias && !strcmp(regshell_cmds[i].alias, argv[0]))) {
354                         return regshell_cmds[i].handle(ctx, argc, argv);
355                 }
356         }
357
358         fprintf(stderr, "No such command '%s'\n", argv[0]);
359
360         return WERR_INVALID_PARAM;
361 }
362
363 #define MAX_COMPLETIONS 100
364
365 static struct registry_key *current_key = NULL;
366
367 static char **reg_complete_command(const char *text, int start, int end)
368 {
369         /* Complete command */
370         char **matches;
371         int i, len, samelen=0, count=1;
372
373         matches = malloc_array_p(char *, MAX_COMPLETIONS);
374         if (!matches) return NULL;
375         matches[0] = NULL;
376
377         len = strlen(text);
378         for (i=0;regshell_cmds[i].handle && count < MAX_COMPLETIONS-1;i++) {
379                 if (strncmp(text, regshell_cmds[i].name, len) == 0) {
380                         matches[count] = strdup(regshell_cmds[i].name);
381                         if (!matches[count])
382                                 goto cleanup;
383                         if (count == 1)
384                                 samelen = strlen(matches[count]);
385                         else
386                                 while (strncmp(matches[count], matches[count-1], samelen) != 0)
387                                         samelen--;
388                         count++;
389                 }
390         }
391
392         switch (count) {
393         case 0: /* should never happen */
394         case 1:
395                 goto cleanup;
396         case 2:
397                 matches[0] = strdup(matches[1]);
398                 break;
399         default:
400                 matches[0] = strndup(matches[1], samelen);
401         }
402         matches[count] = NULL;
403         return matches;
404
405 cleanup:
406         count--;
407         while (count >= 0) {
408                 free(matches[count]);
409                 count--;
410         }
411         free(matches);
412         return NULL;
413 }
414
415 static char **reg_complete_key(const char *text, int start, int end)
416 {
417         struct registry_key *base;
418         const char *subkeyname;
419         int i, j = 1;
420         int samelen = 0;
421         int len;
422         char **matches;
423         const char *base_n = "";
424         TALLOC_CTX *mem_ctx;
425         WERROR status;
426
427         matches = malloc_array_p(char *, MAX_COMPLETIONS);
428         if (!matches) return NULL;
429         matches[0] = NULL;
430         mem_ctx = talloc_init("completion");
431
432         base = current_key;
433
434         len = strlen(text);
435         for(i = 0; j < MAX_COMPLETIONS-1; i++) {
436                 status = reg_key_get_subkey_by_index(mem_ctx, base, i,
437                                              &subkeyname, NULL, NULL);
438                 if(W_ERROR_IS_OK(status)) {
439                         if(!strncmp(text, subkeyname, len)) {
440                                 matches[j] = strdup(subkeyname);
441                                 j++;
442
443                                 if (j == 1)
444                                         samelen = strlen(matches[j]);
445                                 else
446                                         while (strncmp(matches[j], matches[j-1], samelen) != 0)
447                                                 samelen--;
448                         }
449                 } else if(W_ERROR_EQUAL(status, WERR_NO_MORE_ITEMS)) {
450                         break;
451                 } else {
452                         printf("Error creating completion list: %s\n",
453                                 win_errstr(status));
454                         talloc_free(mem_ctx);
455                         return NULL;
456                 }
457         }
458
459         if (j == 1) { /* No matches at all */
460                 SAFE_FREE(matches);
461                 talloc_free(mem_ctx);
462                 return NULL;
463         }
464
465         if (j == 2) { /* Exact match */
466                 asprintf(&matches[0], "%s%s", base_n, matches[1]);
467         } else {
468                 asprintf(&matches[0], "%s%s", base_n,
469                                 talloc_strndup(mem_ctx, matches[1], samelen));
470         }
471         talloc_free(mem_ctx);
472
473         matches[j] = NULL;
474         return matches;
475 }
476
477 static char **reg_completion(const char *text, int start, int end)
478 {
479         smb_readline_ca_char(' ');
480
481         if (start == 0) {
482                 return reg_complete_command(text, start, end);
483         } else {
484                 return reg_complete_key(text, start, end);
485         }
486 }
487
488 int main(int argc, char **argv)
489 {
490         int opt;
491         const char *file = NULL;
492         poptContext pc;
493         const char *remote = NULL;
494         struct regshell_context *ctx;
495         struct event_context *ev_ctx;
496         bool ret = true;
497         struct poptOption long_options[] = {
498                 POPT_AUTOHELP
499                 {"file", 'F', POPT_ARG_STRING, &file, 0, "open hive file", NULL },
500                 {"remote", 'R', POPT_ARG_STRING, &remote, 0, "connect to specified remote server", NULL},
501                 POPT_COMMON_SAMBA
502                 POPT_COMMON_CREDENTIALS
503                 POPT_COMMON_VERSION
504                 { NULL }
505         };
506
507         pc = poptGetContext(argv[0], argc, (const char **) argv, long_options,0);
508
509         while((opt = poptGetNextOpt(pc)) != -1) {
510         }
511
512         ctx = talloc_zero(NULL, struct regshell_context);
513
514         ev_ctx = s4_event_context_init(ctx);
515
516         if (remote != NULL) {
517                 ctx->registry = reg_common_open_remote(remote, ev_ctx,
518                                          cmdline_lp_ctx, cmdline_credentials);
519         } else if (file != NULL) {
520                 ctx->current = reg_common_open_file(file, ev_ctx, cmdline_lp_ctx, cmdline_credentials);
521                 if (ctx->current == NULL)
522                         return 1;
523                 ctx->registry = ctx->current->context;
524                 ctx->path = talloc_strdup(ctx, "");
525         } else {
526                 ctx->registry = reg_common_open_local(cmdline_credentials, ev_ctx, cmdline_lp_ctx);
527         }
528
529         if (ctx->registry == NULL)
530                 return 1;
531
532         if (ctx->current == NULL) {
533                 int i;
534
535                 for (i = 0; (reg_predefined_keys[i].handle != 0) &&
536                         (ctx->current == NULL); i++) {
537                         WERROR err;
538                         err = reg_get_predefined_key(ctx->registry,
539                                                      reg_predefined_keys[i].handle,
540                                                      &ctx->current);
541                         if (W_ERROR_IS_OK(err)) {
542                                 ctx->path = talloc_strdup(ctx,
543                                                           reg_predefined_keys[i].name);
544                                 break;
545                         } else {
546                                 ctx->current = NULL;
547                         }
548                 }
549         }
550
551         if (ctx->current == NULL) {
552                 fprintf(stderr, "Unable to access any of the predefined keys\n");
553                 return -1;
554         }
555
556         poptFreeContext(pc);
557
558         while (true) {
559                 char *line, *prompt;
560
561                 asprintf(&prompt, "%s> ", ctx->path);
562
563                 current_key = ctx->current;             /* No way to pass a void * pointer
564                                                            via readline :-( */
565                 line = smb_readline(prompt, NULL, reg_completion);
566
567                 if (line == NULL) {
568                         free(prompt);
569                         break;
570                 }
571
572                 if (line[0] != '\n') {
573                         ret = W_ERROR_IS_OK(process_cmd(ctx, line));
574                 }
575                 free(line);
576                 free(prompt);
577         }
578         talloc_free(ctx);
579
580         return (ret?0:1);
581 }