Merge branch 'v4-0-test' of ssh://git.samba.org/data/git/samba into registry
[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 event_context *ev_ctx,
46                                           struct loadparm_context *lp_ctx,
47                                           struct cli_credentials *creds)
48 {
49         struct hive_key *hive_root;
50         struct registry_context *h = NULL;
51         WERROR error;
52
53         error = reg_open_hive(NULL, path, NULL, creds, ev_ctx, lp_ctx, &hive_root);
54
55         if(!W_ERROR_IS_OK(error)) {
56                 fprintf(stderr, "Unable to open '%s': %s \n",
57                         path, win_errstr(error));
58                 return NULL;
59         }
60
61         error = reg_open_local(NULL, &h);
62         if (!W_ERROR_IS_OK(error)) {
63                 fprintf(stderr, "Unable to initialize local registry: %s\n",
64                         win_errstr(error));
65                 return NULL;
66         }
67
68         return reg_import_hive_key(h, hive_root, -1, NULL);
69 }
70
71 struct registry_context *reg_common_open_local(struct cli_credentials *creds, 
72                                                struct event_context *ev_ctx, 
73                                                struct loadparm_context *lp_ctx)
74 {
75         WERROR error;
76         struct registry_context *h = NULL;
77
78         error = reg_open_samba(NULL, &h, ev_ctx, lp_ctx, NULL, creds);
79
80         if(!W_ERROR_IS_OK(error)) {
81                 fprintf(stderr, "Unable to open local registry:%s \n",
82                         win_errstr(error));
83                 return NULL;
84         }
85
86         return h;
87 }