2 Unix SMB/CIFS implementation.
3 simple registry frontend
5 Copyright (C) Jelmer Vernooij 2004-2007
6 Copyright (C) Wilco Baan Hofman 2006
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include "lib/registry/registry.h"
24 #include "lib/events/events.h"
25 #include "lib/cmdline/cmdline.h"
26 #include "lib/registry/tools/common.h"
27 #include "param/param.h"
29 enum reg_backend
{ REG_UNKNOWN
, REG_LOCAL
, REG_REMOTE
, REG_NULL
};
31 static struct registry_context
*open_backend(TALLOC_CTX
*mem_ctx
,
33 struct tevent_context
*ev_ctx
,
34 struct loadparm_context
*lp_ctx
,
35 enum reg_backend backend
,
36 const char *remote_host
)
39 struct registry_context
*ctx
;
40 struct cli_credentials
*creds
= samba_cmdline_get_creds();
44 poptPrintUsage(pc
, stderr
, 0);
47 error
= reg_open_samba(mem_ctx
, &ctx
, ev_ctx
, lp_ctx
, NULL
,
51 error
= reg_open_remote(mem_ctx
, &ctx
, creds
, lp_ctx
,
55 error
= reg_open_local(mem_ctx
, &ctx
);
59 if (!W_ERROR_IS_OK(error
)) {
60 fprintf(stderr
, "Error: %s\n", win_errstr(error
));
67 int main(int argc
, char **argv
)
69 const char **argv_const
= discard_const_p(const char *, argv
);
72 char *outputfile
= NULL
;
73 enum reg_backend backend1
= REG_UNKNOWN
, backend2
= REG_UNKNOWN
;
74 const char *remote1
= NULL
, *remote2
= NULL
;
75 struct registry_context
*h1
= NULL
, *h2
= NULL
;
77 struct poptOption long_options
[] = {
79 {"output", 'o', POPT_ARG_STRING
, &outputfile
, 0, "output file to use", NULL
},
80 {"null", 'n', POPT_ARG_NONE
, NULL
, 'n', "Diff from NULL", NULL
},
81 {"remote", 'R', POPT_ARG_STRING
, NULL
, 'R', "Connect to remote server" , NULL
},
82 {"local", 'L', POPT_ARG_NONE
, NULL
, 'L', "Open local registry", NULL
},
84 POPT_COMMON_CREDENTIALS
90 struct tevent_context
*ev_ctx
;
91 struct reg_diff_callbacks
*callbacks
;
92 struct loadparm_context
*lp_ctx
= NULL
;
95 ctx
= talloc_init("regdiff");
100 ok
= samba_cmdline_init(ctx
,
101 SAMBA_CMDLINE_CONFIG_CLIENT
,
102 false /* require_smbconf */);
104 DBG_ERR("Failed to init cmdline parser!\n");
109 pc
= samba_popt_get_context(getprogname(),
115 DBG_ERR("Failed to setup popt context!\n");
120 while((opt
= poptGetNextOpt(pc
)) != -1) {
124 if (backend1
== REG_UNKNOWN
)
125 backend1
= REG_LOCAL
;
126 else if (backend2
== REG_UNKNOWN
)
127 backend2
= REG_LOCAL
;
130 if (backend1
== REG_UNKNOWN
)
132 else if (backend2
== REG_UNKNOWN
)
136 if (backend1
== REG_UNKNOWN
) {
137 backend1
= REG_REMOTE
;
138 remote1
= poptGetOptArg(pc
);
139 } else if (backend2
== REG_UNKNOWN
) {
140 backend2
= REG_REMOTE
;
141 remote2
= poptGetOptArg(pc
);
144 case POPT_ERROR_BADOPT
:
145 fprintf(stderr
, "\nInvalid option %s: %s\n\n",
146 poptBadOption(pc
, 0), poptStrerror(opt
));
147 poptPrintUsage(pc
, stderr
, 0);
153 ev_ctx
= s4_event_context_init(ctx
);
154 lp_ctx
= samba_cmdline_get_lp_ctx();
156 h1
= open_backend(ctx
, pc
, ev_ctx
, lp_ctx
, backend1
, remote1
);
160 h2
= open_backend(ctx
, pc
, ev_ctx
, lp_ctx
, backend2
, remote2
);
165 samba_cmdline_burn(argc
, argv
);
167 error
= reg_dotreg_diff_save(ctx
, outputfile
, &callbacks
, &callback_data
);
168 if (!W_ERROR_IS_OK(error
)) {
169 fprintf(stderr
, "Problem saving registry diff to '%s': %s\n",
170 outputfile
, win_errstr(error
));
174 error
= reg_generate_diff(h1
, h2
, callbacks
, callback_data
);
175 if (!W_ERROR_IS_OK(error
)) {
176 fprintf(stderr
, "Unable to generate diff between keys: %s\n",