s4:registry: add a TALLOC_CTX argument to reg_open_remote()
[Samba.git] / source4 / lib / registry / tools / common.c
bloba2fda8d48df9801924f6223b965cce40e5c5986e
1 /*
2 Unix SMB/CIFS implementation.
3 Popt routines specifically for registry
5 Copyright (C) Jelmer Vernooij 2007
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.
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.
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/>.
21 #include "includes.h"
22 #include "auth/credentials/credentials.h"
23 #include "lib/registry/registry.h"
24 #include "lib/registry/tools/common.h"
26 struct registry_context *reg_common_open_remote(const char *remote,
27 struct tevent_context *ev_ctx,
28 struct loadparm_context *lp_ctx,
29 struct cli_credentials *creds)
31 struct registry_context *h = NULL;
32 WERROR error;
34 error = reg_open_remote(NULL, &h, NULL, creds, lp_ctx, remote, ev_ctx);
36 if (!W_ERROR_IS_OK(error)) {
37 fprintf(stderr, "Unable to open remote registry at %s:%s \n",
38 remote, win_errstr(error));
39 return NULL;
42 return h;
45 struct registry_key *reg_common_open_file(const char *path,
46 struct tevent_context *ev_ctx,
47 struct loadparm_context *lp_ctx,
48 struct cli_credentials *creds)
50 struct hive_key *hive_root;
51 struct registry_context *h = NULL;
52 WERROR error;
54 error = reg_open_hive(ev_ctx, path, NULL, creds, ev_ctx, lp_ctx, &hive_root);
56 if(!W_ERROR_IS_OK(error)) {
57 fprintf(stderr, "Unable to open '%s': %s \n",
58 path, win_errstr(error));
59 return NULL;
62 error = reg_open_local(NULL, &h);
63 if (!W_ERROR_IS_OK(error)) {
64 fprintf(stderr, "Unable to initialize local registry: %s\n",
65 win_errstr(error));
66 return NULL;
69 return reg_import_hive_key(h, hive_root, -1, NULL);
72 struct registry_context *reg_common_open_local(struct cli_credentials *creds,
73 struct tevent_context *ev_ctx,
74 struct loadparm_context *lp_ctx)
76 WERROR error;
77 struct registry_context *h = NULL;
79 error = reg_open_samba(NULL, &h, ev_ctx, lp_ctx, NULL, creds);
81 if(!W_ERROR_IS_OK(error)) {
82 fprintf(stderr, "Unable to open local registry:%s \n",
83 win_errstr(error));
84 return NULL;
87 return h;