Merge branch 'v4-0-test' of ssh://git.samba.org/data/git/samba into v4-0-test
[ira/wip.git] / source4 / lib / registry / tools / common.c
1 /*
2    Unix SMB/CIFS implementation.
3    Popt routines specifically for registry
4
5    Copyright (C) Jelmer Vernooij 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 "auth/credentials/credentials.h"
23 #include "lib/registry/registry.h"
24 #include "lib/registry/tools/common.h"
25
26 struct registry_context *reg_common_open_remote(const char *remote,
27                                                 struct loadparm_context *lp_ctx,
28                                                 struct cli_credentials *creds)
29 {
30         struct registry_context *h = NULL;
31         WERROR error;
32
33         error = reg_open_remote(&h, NULL, creds, lp_ctx, remote, NULL);
34
35         if (!W_ERROR_IS_OK(error)) {
36                 fprintf(stderr, "Unable to open remote registry at %s:%s \n",
37                         remote, win_errstr(error));
38                 return NULL;
39         }
40
41         return h;
42 }
43
44 struct registry_key *reg_common_open_file(const char *path,
45                                           struct loadparm_context *lp_ctx,
46                                           struct cli_credentials *creds)
47 {
48         struct hive_key *hive_root;
49         struct registry_context *h = NULL;
50         WERROR error;
51
52         error = reg_open_hive(NULL, path, NULL, creds, lp_ctx, &hive_root);
53
54         if(!W_ERROR_IS_OK(error)) {
55                 fprintf(stderr, "Unable to open '%s': %s \n",
56                         path, win_errstr(error));
57                 return NULL;
58         }
59
60         error = reg_open_local(NULL, &h);
61         if (!W_ERROR_IS_OK(error)) {
62                 fprintf(stderr, "Unable to initialize local registry: %s\n",
63                         win_errstr(error));
64                 return NULL;
65         }
66
67         return reg_import_hive_key(h, hive_root, -1, NULL);
68 }
69
70 struct registry_context *reg_common_open_local(struct cli_credentials *creds, struct loadparm_context *lp_ctx)
71 {
72         WERROR error;
73         struct registry_context *h = NULL;
74
75         error = reg_open_samba(NULL, &h, lp_ctx, NULL, creds);
76
77         if(!W_ERROR_IS_OK(error)) {
78                 fprintf(stderr, "Unable to open local registry:%s \n",
79                         win_errstr(error));
80                 return NULL;
81         }
82
83         return h;
84 }