2 * Samba Unix/Linux SMB client library
3 * Distributed SMB/CIFS Server Management Utility
4 * registry utility functions
6 * Copyright (C) Michael Adam 2008
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/>.
24 #include "utils/net_registry_util.h"
25 #include "utils/net.h"
27 void print_registry_key(const char *keyname
, NTTIME
*modtime
)
29 d_printf(_("Keyname = %s\n"), keyname
);
30 d_printf(_("Modtime = %s\n"),
32 ? http_timestring(talloc_tos(), nt_time_to_unix(*modtime
))
37 void print_registry_value(const struct registry_value
*valvalue
, bool raw
)
40 d_printf(_("Type = %s\n"),
41 str_regtype(valvalue
->type
));
43 switch(valvalue
->type
) {
46 if (valvalue
->data
.length
>= 4) {
47 v
= IVAL(valvalue
->data
.data
, 0);
50 d_printf(_("Value = "));
59 if (!pull_reg_sz(talloc_tos(), &valvalue
->data
, &s
)) {
63 d_printf(_("Value = \""));
76 if (!pull_reg_multi_sz(talloc_tos(), &valvalue
->data
, &a
)) {
79 for (j
= 0; a
[j
] != NULL
; j
++) {
81 d_printf(_("Value[%3.3d] = \""), j
);
93 d_printf(_("Value = "));
95 d_printf(_("%d bytes\n"), (int)valvalue
->data
.length
);
99 d_printf(_("Value = "));
101 d_printf(_("<unprintable>\n"));
106 void print_registry_value_with_name(const char *valname
,
107 const struct registry_value
*valvalue
)
109 d_printf(_("Valuename = %s\n"), valname
);
110 print_registry_value(valvalue
, false);
115 * Split path into hive name and subkeyname
116 * normalizations performed:
117 * - if the path contains no '\\' characters,
118 * assume that the legacy format of using '/'
119 * as a separator is used and convert '/' to '\\'
120 * - strip trailing '\\' chars
122 WERROR
split_hive_key(TALLOC_CTX
*ctx
, const char *path
, char **hivename
,
126 const char *tmp_subkeyname
;
128 if ((path
== NULL
) || (hivename
== NULL
) || (subkeyname
== NULL
)) {
129 return WERR_INVALID_PARAM
;
132 if (strlen(path
) == 0) {
133 return WERR_INVALID_PARAM
;
136 if (strchr(path
, '\\') == NULL
) {
137 *hivename
= talloc_string_sub(ctx
, path
, "/", "\\");
139 *hivename
= talloc_strdup(ctx
, path
);
142 if (*hivename
== NULL
) {
146 /* strip trailing '\\' chars */
147 p
= strrchr(*hivename
, '\\');
148 while ((p
!= NULL
) && (p
[1] == '\0')) {
150 p
= strrchr(*hivename
, '\\');
153 p
= strchr(*hivename
, '\\');
155 if ((p
== NULL
) || (*p
== '\0')) {
156 /* just the hive - no subkey given */
160 tmp_subkeyname
= p
+1;
162 *subkeyname
= talloc_strdup(ctx
, tmp_subkeyname
);
163 if (*subkeyname
== NULL
) {