2 Samba Unix/Linux SMB client library
3 Distributed SMB/CIFS Server Management Utility
5 Copyright (C) Gerald (Jerry) Carter 2005-2006
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 "system/filesys.h"
22 #include "rpc_client/rpc_client.h"
24 #include "utils/net.h"
25 #include "utils/net_registry_util.h"
26 #include "registry/regfio.h"
27 #include "../librpc/gen_ndr/ndr_winreg_c.h"
28 #include "../librpc/gen_ndr/ndr_security.h"
29 #include "registry/reg_format.h"
30 #include "registry/reg_import.h"
32 #include "../libcli/security/display_sec.h"
33 #include "../libcli/registry/util_reg.h"
37 /*******************************************************************
38 connect to a registry hive root (open a registry policy)
39 *******************************************************************/
41 static NTSTATUS
dcerpc_winreg_Connect(struct dcerpc_binding_handle
*b
, TALLOC_CTX
*mem_ctx
,
42 uint32_t reg_type
, uint32_t access_mask
,
43 struct policy_handle
*reg_hnd
, WERROR
*werr
)
45 ZERO_STRUCTP(reg_hnd
);
49 case HKEY_CLASSES_ROOT
:
50 return dcerpc_winreg_OpenHKCR(b
, mem_ctx
, NULL
,
51 access_mask
, reg_hnd
, werr
);
53 case HKEY_LOCAL_MACHINE
:
54 return dcerpc_winreg_OpenHKLM(b
, mem_ctx
, NULL
,
55 access_mask
, reg_hnd
, werr
);
58 return dcerpc_winreg_OpenHKU(b
, mem_ctx
, NULL
,
59 access_mask
, reg_hnd
, werr
);
61 case HKEY_CURRENT_USER
:
62 return dcerpc_winreg_OpenHKCU(b
, mem_ctx
, NULL
,
63 access_mask
, reg_hnd
, werr
);
65 case HKEY_PERFORMANCE_DATA
:
66 return dcerpc_winreg_OpenHKPD(b
, mem_ctx
, NULL
,
67 access_mask
, reg_hnd
, werr
);
70 /* fall through to end of function */
74 return NT_STATUS_INVALID_PARAMETER
;
77 static bool reg_hive_key(TALLOC_CTX
*ctx
, const char *fullname
,
78 uint32
*reg_type
, const char **key_name
)
81 char *hivename
= NULL
;
82 char *tmp_keyname
= NULL
;
84 TALLOC_CTX
*tmp_ctx
= talloc_stackframe();
86 werr
= split_hive_key(tmp_ctx
, fullname
, &hivename
, &tmp_keyname
);
87 if (!W_ERROR_IS_OK(werr
)) {
91 *key_name
= talloc_strdup(ctx
, tmp_keyname
);
92 if (*key_name
== NULL
) {
96 if (strequal(hivename
, "HKLM") ||
97 strequal(hivename
, "HKEY_LOCAL_MACHINE"))
99 (*reg_type
) = HKEY_LOCAL_MACHINE
;
100 } else if (strequal(hivename
, "HKCR") ||
101 strequal(hivename
, "HKEY_CLASSES_ROOT"))
103 (*reg_type
) = HKEY_CLASSES_ROOT
;
104 } else if (strequal(hivename
, "HKU") ||
105 strequal(hivename
, "HKEY_USERS"))
107 (*reg_type
) = HKEY_USERS
;
108 } else if (strequal(hivename
, "HKCU") ||
109 strequal(hivename
, "HKEY_CURRENT_USER"))
111 (*reg_type
) = HKEY_CURRENT_USER
;
112 } else if (strequal(hivename
, "HKPD") ||
113 strequal(hivename
, "HKEY_PERFORMANCE_DATA"))
115 (*reg_type
) = HKEY_PERFORMANCE_DATA
;
117 DEBUG(10,("reg_hive_key: unrecognised hive key %s\n",
125 TALLOC_FREE(tmp_ctx
);
129 static NTSTATUS
registry_openkey(TALLOC_CTX
*mem_ctx
,
130 struct rpc_pipe_client
*pipe_hnd
,
131 const char *name
, uint32 access_mask
,
132 struct policy_handle
*hive_hnd
,
133 struct policy_handle
*key_hnd
)
138 struct winreg_String key
;
139 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
143 if (!reg_hive_key(mem_ctx
, name
, &hive
, &key
.name
)) {
144 return NT_STATUS_INVALID_PARAMETER
;
147 status
= dcerpc_winreg_Connect(b
, mem_ctx
, hive
, access_mask
,
149 if (!(NT_STATUS_IS_OK(status
))) {
152 if (!W_ERROR_IS_OK(werr
)) {
153 return werror_to_ntstatus(werr
);
156 status
= dcerpc_winreg_OpenKey(b
, mem_ctx
, hive_hnd
, key
, 0,
157 access_mask
, key_hnd
, &werr
);
158 if (!(NT_STATUS_IS_OK(status
))) {
159 dcerpc_winreg_CloseKey(b
, mem_ctx
, hive_hnd
, &werr
);
162 if (!(W_ERROR_IS_OK(werr
))) {
164 dcerpc_winreg_CloseKey(b
, mem_ctx
, hive_hnd
, &_werr
);
165 return werror_to_ntstatus(werr
);
171 static NTSTATUS
registry_enumkeys(TALLOC_CTX
*ctx
,
172 struct rpc_pipe_client
*pipe_hnd
,
173 struct policy_handle
*key_hnd
,
174 uint32
*pnum_keys
, char ***pnames
,
175 char ***pclasses
, NTTIME
***pmodtimes
)
180 uint32 num_subkeys
, max_subkeylen
, max_classlen
;
181 uint32 num_values
, max_valnamelen
, max_valbufsize
;
183 NTTIME last_changed_time
;
185 struct winreg_String classname
;
186 char **names
, **classes
;
188 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
190 if (!(mem_ctx
= talloc_new(ctx
))) {
191 return NT_STATUS_NO_MEMORY
;
194 ZERO_STRUCT(classname
);
195 status
= dcerpc_winreg_QueryInfoKey(
196 b
, mem_ctx
, key_hnd
, &classname
, &num_subkeys
,
197 &max_subkeylen
, &max_classlen
, &num_values
, &max_valnamelen
,
198 &max_valbufsize
, &secdescsize
, &last_changed_time
, &werr
);
200 if (!NT_STATUS_IS_OK(status
)) {
203 if (!W_ERROR_IS_OK(werr
)) {
204 status
= werror_to_ntstatus(werr
);
208 if (num_subkeys
== 0) {
210 TALLOC_FREE(mem_ctx
);
214 if ((!(names
= talloc_zero_array(mem_ctx
, char *, num_subkeys
))) ||
215 (!(classes
= talloc_zero_array(mem_ctx
, char *, num_subkeys
))) ||
216 (!(modtimes
= talloc_zero_array(mem_ctx
, NTTIME
*,
218 status
= NT_STATUS_NO_MEMORY
;
222 for (i
=0; i
<num_subkeys
; i
++) {
224 struct winreg_StringBuf class_buf
;
225 struct winreg_StringBuf name_buf
;
230 class_buf
.size
= max_classlen
+2;
234 name_buf
.size
= max_subkeylen
+2;
236 ZERO_STRUCT(modtime
);
238 status
= dcerpc_winreg_EnumKey(b
, mem_ctx
, key_hnd
,
239 i
, &name_buf
, &class_buf
,
241 if (!NT_STATUS_IS_OK(status
)) {
244 if (W_ERROR_EQUAL(werr
,
245 WERR_NO_MORE_ITEMS
) ) {
246 status
= NT_STATUS_OK
;
249 if (!W_ERROR_IS_OK(werr
)) {
250 status
= werror_to_ntstatus(werr
);
256 if (class_buf
.name
&&
257 (!(classes
[i
] = talloc_strdup(classes
, class_buf
.name
)))) {
258 status
= NT_STATUS_NO_MEMORY
;
262 if (!(names
[i
] = talloc_strdup(names
, name_buf
.name
))) {
263 status
= NT_STATUS_NO_MEMORY
;
267 if ((!(modtimes
[i
] = (NTTIME
*)talloc_memdup(
268 modtimes
, &modtime
, sizeof(modtime
))))) {
269 status
= NT_STATUS_NO_MEMORY
;
274 *pnum_keys
= num_subkeys
;
277 *pnames
= talloc_move(ctx
, &names
);
280 *pclasses
= talloc_move(ctx
, &classes
);
283 *pmodtimes
= talloc_move(ctx
, &modtimes
);
286 status
= NT_STATUS_OK
;
289 TALLOC_FREE(mem_ctx
);
293 static NTSTATUS
registry_enumvalues(TALLOC_CTX
*ctx
,
294 struct rpc_pipe_client
*pipe_hnd
,
295 struct policy_handle
*key_hnd
,
296 uint32
*pnum_values
, char ***pvalnames
,
297 struct registry_value
***pvalues
)
302 uint32 num_subkeys
, max_subkeylen
, max_classlen
;
303 uint32 num_values
, max_valnamelen
, max_valbufsize
;
305 NTTIME last_changed_time
;
307 struct winreg_String classname
;
308 struct registry_value
**values
;
310 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
312 if (!(mem_ctx
= talloc_new(ctx
))) {
313 return NT_STATUS_NO_MEMORY
;
316 ZERO_STRUCT(classname
);
317 status
= dcerpc_winreg_QueryInfoKey(
318 b
, mem_ctx
, key_hnd
, &classname
, &num_subkeys
,
319 &max_subkeylen
, &max_classlen
, &num_values
, &max_valnamelen
,
320 &max_valbufsize
, &secdescsize
, &last_changed_time
, &werr
);
322 if (!NT_STATUS_IS_OK(status
)) {
325 if (!W_ERROR_IS_OK(werr
)) {
326 status
= werror_to_ntstatus(werr
);
330 if (num_values
== 0) {
332 TALLOC_FREE(mem_ctx
);
336 if ((!(names
= talloc_array(mem_ctx
, char *, num_values
))) ||
337 (!(values
= talloc_array(mem_ctx
, struct registry_value
*,
339 status
= NT_STATUS_NO_MEMORY
;
343 for (i
=0; i
<num_values
; i
++) {
344 enum winreg_Type type
= REG_NONE
;
350 struct winreg_ValNameBuf name_buf
;
355 name_buf
.size
= max_valnamelen
+ 2;
357 data_size
= max_valbufsize
;
358 data
= (uint8
*)TALLOC(mem_ctx
, data_size
);
361 status
= dcerpc_winreg_EnumValue(b
, mem_ctx
, key_hnd
,
364 &value_length
, &err
);
365 if (!(NT_STATUS_IS_OK(status
))) {
369 if ( W_ERROR_EQUAL(err
,
370 WERR_NO_MORE_ITEMS
) ) {
371 status
= NT_STATUS_OK
;
375 if (!W_ERROR_IS_OK(err
)) {
376 status
= werror_to_ntstatus(err
);
380 if (name_buf
.name
== NULL
) {
381 status
= NT_STATUS_INVALID_PARAMETER
;
385 if (!(names
[i
] = talloc_strdup(names
, name_buf
.name
))) {
386 status
= NT_STATUS_NO_MEMORY
;
390 values
[i
] = talloc_zero(values
, struct registry_value
);
391 if (values
[i
] == NULL
) {
392 status
= NT_STATUS_NO_MEMORY
;
396 values
[i
]->type
= type
;
397 values
[i
]->data
= data_blob_talloc(values
[i
], data
, data_size
);
400 *pnum_values
= num_values
;
403 *pvalnames
= talloc_move(ctx
, &names
);
406 *pvalues
= talloc_move(ctx
, &values
);
409 status
= NT_STATUS_OK
;
412 TALLOC_FREE(mem_ctx
);
416 static NTSTATUS
registry_enumvalues2(TALLOC_CTX
*ctx
,
417 struct rpc_pipe_client
*pipe_hnd
,
418 struct policy_handle
*key_hnd
,
419 uint32
*pnum_values
, char ***pvalnames
,
420 struct regval_blob
***pvalues
)
425 uint32 num_subkeys
, max_subkeylen
, max_classlen
;
426 uint32 num_values
, max_valnamelen
, max_valbufsize
;
428 NTTIME last_changed_time
;
430 struct winreg_String classname
;
431 struct regval_blob
**values
;
433 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
435 if (!(mem_ctx
= talloc_new(ctx
))) {
436 return NT_STATUS_NO_MEMORY
;
439 ZERO_STRUCT(classname
);
440 status
= dcerpc_winreg_QueryInfoKey(
441 b
, mem_ctx
, key_hnd
, &classname
, &num_subkeys
,
442 &max_subkeylen
, &max_classlen
, &num_values
, &max_valnamelen
,
443 &max_valbufsize
, &secdescsize
, &last_changed_time
, &werr
);
445 if (!NT_STATUS_IS_OK(status
)) {
448 if (!W_ERROR_IS_OK(werr
)) {
449 status
= werror_to_ntstatus(werr
);
453 if (num_values
== 0) {
455 TALLOC_FREE(mem_ctx
);
459 if ((!(names
= talloc_array(mem_ctx
, char *, num_values
))) ||
460 (!(values
= talloc_array(mem_ctx
, struct regval_blob
*,
462 status
= NT_STATUS_NO_MEMORY
;
466 for (i
=0; i
<num_values
; i
++) {
467 enum winreg_Type type
= REG_NONE
;
473 struct winreg_ValNameBuf name_buf
;
478 name_buf
.size
= max_valnamelen
+ 2;
480 data_size
= max_valbufsize
;
481 data
= (uint8
*)TALLOC(mem_ctx
, data_size
);
484 status
= dcerpc_winreg_EnumValue(b
, mem_ctx
, key_hnd
,
487 &value_length
, &err
);
488 if (!(NT_STATUS_IS_OK(status
))) {
492 if ( W_ERROR_EQUAL(err
, WERR_NO_MORE_ITEMS
) ) {
493 status
= NT_STATUS_OK
;
497 if (!W_ERROR_IS_OK(err
)) {
498 status
= werror_to_ntstatus(err
);
502 if (name_buf
.name
== NULL
) {
503 status
= NT_STATUS_INVALID_PARAMETER
;
507 if (!(names
[i
] = talloc_strdup(names
, name_buf
.name
))) {
508 status
= NT_STATUS_NO_MEMORY
;
512 assert(value_length
<=data_size
); /*??? */
514 values
[i
] = regval_compose(values
,
519 status
= NT_STATUS_NO_MEMORY
;
524 *pnum_values
= num_values
;
527 *pvalnames
= talloc_move(ctx
, &names
);
530 *pvalues
= talloc_move(ctx
, &values
);
533 status
= NT_STATUS_OK
;
536 TALLOC_FREE(mem_ctx
);
540 static NTSTATUS
registry_getsd(TALLOC_CTX
*mem_ctx
,
541 struct dcerpc_binding_handle
*b
,
542 struct policy_handle
*key_hnd
,
544 struct KeySecurityData
*sd
,
547 return dcerpc_winreg_GetKeySecurity(b
, mem_ctx
, key_hnd
,
552 static NTSTATUS
registry_setvalue(TALLOC_CTX
*mem_ctx
,
553 struct rpc_pipe_client
*pipe_hnd
,
554 struct policy_handle
*key_hnd
,
556 const struct registry_value
*value
)
558 struct winreg_String name_string
;
561 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
563 ZERO_STRUCT(name_string
);
565 name_string
.name
= name
;
566 result
= dcerpc_winreg_SetValue(b
, mem_ctx
, key_hnd
,
567 name_string
, value
->type
,
568 value
->data
.data
, value
->data
.length
, &werr
);
569 if (!NT_STATUS_IS_OK(result
)) {
573 return werror_to_ntstatus(werr
);
576 static NTSTATUS
rpc_registry_setvalue_internal(struct net_context
*c
,
577 const struct dom_sid
*domain_sid
,
578 const char *domain_name
,
579 struct cli_state
*cli
,
580 struct rpc_pipe_client
*pipe_hnd
,
585 struct policy_handle hive_hnd
, key_hnd
;
588 struct registry_value value
;
589 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
591 status
= registry_openkey(mem_ctx
, pipe_hnd
, argv
[0],
592 SEC_FLAG_MAXIMUM_ALLOWED
,
593 &hive_hnd
, &key_hnd
);
594 if (!NT_STATUS_IS_OK(status
)) {
595 d_fprintf(stderr
, _("registry_openkey failed: %s\n"),
600 if (!strequal(argv
[2], "multi_sz") && (argc
!= 4)) {
601 d_fprintf(stderr
, _("Too many args for type %s\n"), argv
[2]);
602 return NT_STATUS_NOT_IMPLEMENTED
;
605 if (strequal(argv
[2], "dword")) {
606 uint32_t v
= strtoul(argv
[3], NULL
, 10);
607 value
.type
= REG_DWORD
;
608 value
.data
= data_blob_talloc(mem_ctx
, NULL
, 4);
609 SIVAL(value
.data
.data
, 0, v
);
611 else if (strequal(argv
[2], "sz")) {
613 if (!push_reg_sz(mem_ctx
, &value
.data
, argv
[3])) {
614 status
= NT_STATUS_NO_MEMORY
;
619 d_fprintf(stderr
, _("type \"%s\" not implemented\n"), argv
[2]);
620 status
= NT_STATUS_NOT_IMPLEMENTED
;
624 status
= registry_setvalue(mem_ctx
, pipe_hnd
, &key_hnd
,
627 if (!NT_STATUS_IS_OK(status
)) {
628 d_fprintf(stderr
, _("registry_setvalue failed: %s\n"),
633 dcerpc_winreg_CloseKey(b
, mem_ctx
, &key_hnd
, &werr
);
634 dcerpc_winreg_CloseKey(b
, mem_ctx
, &hive_hnd
, &werr
);
639 static int rpc_registry_setvalue(struct net_context
*c
, int argc
,
642 if (argc
< 4 || c
->display_usage
) {
643 d_fprintf(stderr
, "%s\n%s",
645 _("net rpc registry setvalue <key> <valuename> "
646 "<type> [<val>]+\n"));
650 return run_rpc_command(c
, NULL
, &ndr_table_winreg
, 0,
651 rpc_registry_setvalue_internal
, argc
, argv
);
654 static NTSTATUS
rpc_registry_deletevalue_internal(struct net_context
*c
,
655 const struct dom_sid
*domain_sid
,
656 const char *domain_name
,
657 struct cli_state
*cli
,
658 struct rpc_pipe_client
*pipe_hnd
,
663 struct policy_handle hive_hnd
, key_hnd
;
666 struct winreg_String valuename
;
667 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
669 ZERO_STRUCT(valuename
);
671 status
= registry_openkey(mem_ctx
, pipe_hnd
, argv
[0],
672 SEC_FLAG_MAXIMUM_ALLOWED
,
673 &hive_hnd
, &key_hnd
);
674 if (!NT_STATUS_IS_OK(status
)) {
675 d_fprintf(stderr
, _("registry_openkey failed: %s\n"),
680 valuename
.name
= argv
[1];
682 status
= dcerpc_winreg_DeleteValue(b
, mem_ctx
, &key_hnd
,
684 if (!NT_STATUS_IS_OK(status
)) {
685 d_fprintf(stderr
, _("registry_deletevalue failed: %s\n"),
688 if (!W_ERROR_IS_OK(werr
)) {
689 status
= werror_to_ntstatus(werr
);
690 d_fprintf(stderr
, _("registry_deletevalue failed: %s\n"),
694 dcerpc_winreg_CloseKey(b
, mem_ctx
, &key_hnd
, &werr
);
695 dcerpc_winreg_CloseKey(b
, mem_ctx
, &hive_hnd
, &werr
);
700 static int rpc_registry_deletevalue(struct net_context
*c
, int argc
,
703 if (argc
!= 2 || c
->display_usage
) {
704 d_fprintf(stderr
, "%s\n%s",
706 _("net rpc registry deletevalue <key> <valuename>\n"));
710 return run_rpc_command(c
, NULL
, &ndr_table_winreg
, 0,
711 rpc_registry_deletevalue_internal
, argc
, argv
);
714 static NTSTATUS
rpc_registry_getvalue_internal(struct net_context
*c
,
715 const struct dom_sid
*domain_sid
,
716 const char *domain_name
,
717 struct cli_state
*cli
,
718 struct rpc_pipe_client
*pipe_hnd
,
724 struct policy_handle hive_hnd
, key_hnd
;
727 struct winreg_String valuename
;
728 struct registry_value
*value
= NULL
;
729 enum winreg_Type type
= REG_NONE
;
730 uint32_t data_size
= 0;
731 uint32_t value_length
= 0;
732 TALLOC_CTX
*tmp_ctx
= talloc_stackframe();
733 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
735 ZERO_STRUCT(valuename
);
737 status
= registry_openkey(tmp_ctx
, pipe_hnd
, argv
[0],
738 SEC_FLAG_MAXIMUM_ALLOWED
,
739 &hive_hnd
, &key_hnd
);
740 if (!NT_STATUS_IS_OK(status
)) {
741 d_fprintf(stderr
, _("registry_openkey failed: %s\n"),
746 valuename
.name
= argv
[1];
748 value
= talloc_zero(tmp_ctx
, struct registry_value
);
750 return NT_STATUS_NO_MEMORY
;
754 * call QueryValue once with data == NULL to get the
755 * needed memory size to be allocated, then allocate
756 * data buffer and call again.
758 status
= dcerpc_winreg_QueryValue(b
, tmp_ctx
, &key_hnd
,
766 if (!NT_STATUS_IS_OK(status
)) {
767 d_fprintf(stderr
, _("registry_queryvalue failed: %s\n"),
771 if (!W_ERROR_IS_OK(werr
)) {
772 status
= werror_to_ntstatus(werr
);
773 d_fprintf(stderr
, _("registry_queryvalue failed: %s\n"),
778 value
->data
= data_blob_talloc(tmp_ctx
, NULL
, data_size
);
780 status
= dcerpc_winreg_QueryValue(b
, tmp_ctx
, &key_hnd
,
788 if (!NT_STATUS_IS_OK(status
)) {
789 d_fprintf(stderr
, _("registry_queryvalue failed: %s\n"),
793 if (!W_ERROR_IS_OK(werr
)) {
794 status
= werror_to_ntstatus(werr
);
795 d_fprintf(stderr
, _("registry_queryvalue failed: %s\n"),
803 print_registry_value(value
, raw
);
806 dcerpc_winreg_CloseKey(b
, tmp_ctx
, &key_hnd
, &werr
);
807 dcerpc_winreg_CloseKey(b
, tmp_ctx
, &hive_hnd
, &werr
);
809 TALLOC_FREE(tmp_ctx
);
814 static NTSTATUS
rpc_registry_getvalue_full(struct net_context
*c
,
815 const struct dom_sid
*domain_sid
,
816 const char *domain_name
,
817 struct cli_state
*cli
,
818 struct rpc_pipe_client
*pipe_hnd
,
823 return rpc_registry_getvalue_internal(c
, domain_sid
, domain_name
,
824 cli
, pipe_hnd
, mem_ctx
, false,
828 static int rpc_registry_getvalue(struct net_context
*c
, int argc
,
831 if (argc
!= 2 || c
->display_usage
) {
832 d_fprintf(stderr
, "%s\n%s",
834 _("net rpc registry getvalue <key> <valuename>\n"));
838 return run_rpc_command(c
, NULL
, &ndr_table_winreg
, 0,
839 rpc_registry_getvalue_full
, argc
, argv
);
842 static NTSTATUS
rpc_registry_getvalue_raw(struct net_context
*c
,
843 const struct dom_sid
*domain_sid
,
844 const char *domain_name
,
845 struct cli_state
*cli
,
846 struct rpc_pipe_client
*pipe_hnd
,
851 return rpc_registry_getvalue_internal(c
, domain_sid
, domain_name
,
852 cli
, pipe_hnd
, mem_ctx
, true,
856 static int rpc_registry_getvalueraw(struct net_context
*c
, int argc
,
859 if (argc
!= 2 || c
->display_usage
) {
860 d_fprintf(stderr
, "%s\n%s",
862 _("net rpc registry getvalue <key> <valuename>\n"));
866 return run_rpc_command(c
, NULL
, &ndr_table_winreg
, 0,
867 rpc_registry_getvalue_raw
, argc
, argv
);
870 static NTSTATUS
rpc_registry_createkey_internal(struct net_context
*c
,
871 const struct dom_sid
*domain_sid
,
872 const char *domain_name
,
873 struct cli_state
*cli
,
874 struct rpc_pipe_client
*pipe_hnd
,
880 struct policy_handle hive_hnd
, key_hnd
;
881 struct winreg_String key
, keyclass
;
882 enum winreg_CreateAction action
;
885 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
888 ZERO_STRUCT(keyclass
);
890 if (!reg_hive_key(mem_ctx
, argv
[0], &hive
, &key
.name
)) {
891 return NT_STATUS_INVALID_PARAMETER
;
894 status
= dcerpc_winreg_Connect(b
, mem_ctx
, hive
,
895 SEC_FLAG_MAXIMUM_ALLOWED
,
897 if (!(NT_STATUS_IS_OK(status
))) {
900 if (!W_ERROR_IS_OK(werr
)) {
901 return werror_to_ntstatus(werr
);
904 action
= REG_ACTION_NONE
;
907 status
= dcerpc_winreg_CreateKey(b
, mem_ctx
, &hive_hnd
, key
,
908 keyclass
, 0, REG_KEY_READ
, NULL
,
909 &key_hnd
, &action
, &werr
);
910 if (!NT_STATUS_IS_OK(status
)) {
911 d_fprintf(stderr
, _("createkey returned %s\n"),
913 dcerpc_winreg_CloseKey(b
, mem_ctx
, &hive_hnd
, &werr
);
916 if (!W_ERROR_IS_OK(werr
)) {
918 d_fprintf(stderr
, _("createkey returned %s\n"),
920 dcerpc_winreg_CloseKey(b
, mem_ctx
, &hive_hnd
, &_werr
);
921 return werror_to_ntstatus(werr
);
925 case REG_ACTION_NONE
:
926 d_printf(_("createkey did nothing -- huh?\n"));
928 case REG_CREATED_NEW_KEY
:
929 d_printf(_("createkey created %s\n"), argv
[0]);
931 case REG_OPENED_EXISTING_KEY
:
932 d_printf(_("createkey opened existing %s\n"), argv
[0]);
936 dcerpc_winreg_CloseKey(b
, mem_ctx
, &key_hnd
, &werr
);
937 dcerpc_winreg_CloseKey(b
, mem_ctx
, &hive_hnd
, &werr
);
942 static int rpc_registry_createkey(struct net_context
*c
, int argc
,
945 if (argc
!= 1 || c
->display_usage
) {
946 d_fprintf(stderr
, "%s\n%s",
948 _("net rpc registry createkey <key>\n"));
952 return run_rpc_command(c
, NULL
, &ndr_table_winreg
, 0,
953 rpc_registry_createkey_internal
, argc
, argv
);
956 static NTSTATUS
rpc_registry_deletekey_internal(struct net_context
*c
,
957 const struct dom_sid
*domain_sid
,
958 const char *domain_name
,
959 struct cli_state
*cli
,
960 struct rpc_pipe_client
*pipe_hnd
,
966 struct policy_handle hive_hnd
;
967 struct winreg_String key
;
970 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
974 if (!reg_hive_key(mem_ctx
, argv
[0], &hive
, &key
.name
)) {
975 return NT_STATUS_INVALID_PARAMETER
;
978 status
= dcerpc_winreg_Connect(b
, mem_ctx
, hive
,
979 SEC_FLAG_MAXIMUM_ALLOWED
,
981 if (!(NT_STATUS_IS_OK(status
))) {
984 if (!W_ERROR_IS_OK(werr
)) {
985 return werror_to_ntstatus(werr
);
988 status
= dcerpc_winreg_DeleteKey(b
, mem_ctx
, &hive_hnd
, key
, &werr
);
989 if (is_valid_policy_hnd(&hive_hnd
)) {
991 dcerpc_winreg_CloseKey(b
, mem_ctx
, &hive_hnd
, &_werr
);
994 if (!NT_STATUS_IS_OK(status
)) {
995 d_fprintf(stderr
, _("deletekey returned %s\n"),
1000 if (!W_ERROR_IS_OK(werr
)) {
1001 d_fprintf(stderr
, _("deletekey returned %s\n"),
1003 return werror_to_ntstatus(werr
);
1009 static int rpc_registry_deletekey(struct net_context
*c
, int argc
, const char **argv
)
1011 if (argc
!= 1 || c
->display_usage
) {
1012 d_fprintf(stderr
, "%s\n%s",
1014 _("net rpc registry deletekey <key>\n"));
1018 return run_rpc_command(c
, NULL
, &ndr_table_winreg
, 0,
1019 rpc_registry_deletekey_internal
, argc
, argv
);
1022 /********************************************************************
1023 ********************************************************************/
1025 static NTSTATUS
rpc_registry_enumerate_internal(struct net_context
*c
,
1026 const struct dom_sid
*domain_sid
,
1027 const char *domain_name
,
1028 struct cli_state
*cli
,
1029 struct rpc_pipe_client
*pipe_hnd
,
1030 TALLOC_CTX
*mem_ctx
,
1034 struct policy_handle pol_hive
, pol_key
;
1037 uint32 num_subkeys
= 0;
1038 uint32 num_values
= 0;
1039 char **names
= NULL
, **classes
= NULL
;
1040 NTTIME
**modtimes
= NULL
;
1042 struct registry_value
**values
= NULL
;
1043 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
1045 if (argc
!= 1 || c
->display_usage
) {
1048 _("net rpc registry enumerate <path>\n"));
1049 d_printf("%s net rpc registry enumerate "
1050 "'HKLM\\Software\\Samba'\n", _("Example:"));
1051 return NT_STATUS_INVALID_PARAMETER
;
1054 status
= registry_openkey(mem_ctx
, pipe_hnd
, argv
[0], REG_KEY_READ
,
1055 &pol_hive
, &pol_key
);
1056 if (!NT_STATUS_IS_OK(status
)) {
1057 d_fprintf(stderr
, _("registry_openkey failed: %s\n"),
1062 status
= registry_enumkeys(mem_ctx
, pipe_hnd
, &pol_key
, &num_subkeys
,
1063 &names
, &classes
, &modtimes
);
1064 if (!NT_STATUS_IS_OK(status
)) {
1065 d_fprintf(stderr
, _("enumerating keys failed: %s\n"),
1070 for (i
=0; i
<num_subkeys
; i
++) {
1071 print_registry_key(names
[i
], modtimes
[i
]);
1074 status
= registry_enumvalues(mem_ctx
, pipe_hnd
, &pol_key
, &num_values
,
1076 if (!NT_STATUS_IS_OK(status
)) {
1077 d_fprintf(stderr
, _("enumerating values failed: %s\n"),
1082 for (i
=0; i
<num_values
; i
++) {
1083 print_registry_value_with_name(names
[i
], values
[i
]);
1086 dcerpc_winreg_CloseKey(b
, mem_ctx
, &pol_key
, &werr
);
1087 dcerpc_winreg_CloseKey(b
, mem_ctx
, &pol_hive
, &werr
);
1092 /********************************************************************
1093 ********************************************************************/
1095 static int rpc_registry_enumerate(struct net_context
*c
, int argc
,
1098 return run_rpc_command(c
, NULL
, &ndr_table_winreg
, 0,
1099 rpc_registry_enumerate_internal
, argc
, argv
);
1102 /********************************************************************
1103 ********************************************************************/
1105 static NTSTATUS
rpc_registry_save_internal(struct net_context
*c
,
1106 const struct dom_sid
*domain_sid
,
1107 const char *domain_name
,
1108 struct cli_state
*cli
,
1109 struct rpc_pipe_client
*pipe_hnd
,
1110 TALLOC_CTX
*mem_ctx
,
1114 WERROR result
= WERR_GENERAL_FAILURE
;
1115 struct policy_handle pol_hive
, pol_key
;
1116 NTSTATUS status
= NT_STATUS_UNSUCCESSFUL
;
1117 struct winreg_String filename
;
1118 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
1120 if (argc
!= 2 || c
->display_usage
) {
1123 _("net rpc registry backup <path> <file> \n"));
1124 return NT_STATUS_INVALID_PARAMETER
;
1127 status
= registry_openkey(mem_ctx
, pipe_hnd
, argv
[0], REG_KEY_ALL
,
1128 &pol_hive
, &pol_key
);
1129 if (!NT_STATUS_IS_OK(status
)) {
1130 d_fprintf(stderr
, _("registry_openkey failed: %s\n"),
1135 filename
.name
= argv
[1];
1136 status
= dcerpc_winreg_SaveKey(b
, mem_ctx
, &pol_key
, &filename
, NULL
, &result
);
1137 if (!NT_STATUS_IS_OK(status
)) {
1138 d_fprintf(stderr
, _("Unable to save [%s] to %s:%s\n"), argv
[0],
1139 pipe_hnd
->desthost
, argv
[1]);
1141 if (!W_ERROR_IS_OK(result
)) {
1142 status
= werror_to_ntstatus(result
);
1143 d_fprintf(stderr
, _("Unable to save [%s] to %s:%s\n"), argv
[0],
1144 pipe_hnd
->desthost
, argv
[1]);
1149 dcerpc_winreg_CloseKey(b
, mem_ctx
, &pol_key
, &result
);
1150 dcerpc_winreg_CloseKey(b
, mem_ctx
, &pol_hive
, &result
);
1155 /********************************************************************
1156 ********************************************************************/
1158 static int rpc_registry_save(struct net_context
*c
, int argc
, const char **argv
)
1160 return run_rpc_command(c
, NULL
, &ndr_table_winreg
, 0,
1161 rpc_registry_save_internal
, argc
, argv
);
1165 /********************************************************************
1166 ********************************************************************/
1168 static void dump_values( REGF_NK_REC
*nk
)
1171 const char *data_str
= NULL
;
1172 uint32 data_size
, data
;
1178 for ( i
=0; i
<nk
->num_values
; i
++ ) {
1179 d_printf( "\"%s\" = ", nk
->values
[i
].valuename
? nk
->values
[i
].valuename
: "(default)" );
1180 d_printf( "(%s) ", str_regtype( nk
->values
[i
].type
) );
1182 data_size
= nk
->values
[i
].data_size
& ~VK_DATA_IN_OFFSET
;
1183 switch ( nk
->values
[i
].type
) {
1185 blob
= data_blob_const(nk
->values
[i
].data
, data_size
);
1186 if (!pull_reg_sz(talloc_tos(), &blob
,
1193 d_printf( "%s", data_str
);
1197 for ( j
=0; j
<data_size
; j
++ ) {
1198 d_printf( "%c", nk
->values
[i
].data
[j
] );
1202 data
= IVAL( nk
->values
[i
].data
, 0 );
1203 d_printf("0x%x", data
);
1206 for ( j
=0; j
<data_size
; j
++ ) {
1207 d_printf( "%x", nk
->values
[i
].data
[j
] );
1211 d_printf(_("unknown"));
1220 /********************************************************************
1221 ********************************************************************/
1223 static bool dump_registry_tree( REGF_FILE
*file
, REGF_NK_REC
*nk
, const char *parent
)
1227 /* depth first dump of the registry tree */
1229 while ( (key
= regfio_fetch_subkey( file
, nk
)) ) {
1231 if (asprintf(®path
, "%s\\%s", parent
, key
->keyname
) < 0) {
1234 d_printf("[%s]\n", regpath
);
1237 dump_registry_tree( file
, key
, regpath
);
1244 /********************************************************************
1245 ********************************************************************/
1247 static bool write_registry_tree( REGF_FILE
*infile
, REGF_NK_REC
*nk
,
1248 REGF_NK_REC
*parent
, REGF_FILE
*outfile
,
1249 const char *parentpath
)
1251 REGF_NK_REC
*key
, *subkey
;
1252 struct regval_ctr
*values
= NULL
;
1253 struct regsubkey_ctr
*subkeys
= NULL
;
1258 werr
= regsubkey_ctr_init(infile
->mem_ctx
, &subkeys
);
1259 if (!W_ERROR_IS_OK(werr
)) {
1260 DEBUG(0, ("write_registry_tree: regsubkey_ctr_init failed: "
1261 "%s\n", win_errstr(werr
)));
1265 werr
= regval_ctr_init(subkeys
, &values
);
1266 if (!W_ERROR_IS_OK(werr
)) {
1267 DEBUG(0,("write_registry_tree: talloc() failed!\n"));
1268 TALLOC_FREE(subkeys
);
1272 /* copy values into the struct regval_ctr */
1274 for ( i
=0; i
<nk
->num_values
; i
++ ) {
1275 regval_ctr_addvalue( values
, nk
->values
[i
].valuename
, nk
->values
[i
].type
,
1276 nk
->values
[i
].data
, (nk
->values
[i
].data_size
& ~VK_DATA_IN_OFFSET
) );
1279 /* copy subkeys into the struct regsubkey_ctr */
1281 while ( (subkey
= regfio_fetch_subkey( infile
, nk
)) ) {
1282 regsubkey_ctr_addkey( subkeys
, subkey
->keyname
);
1285 key
= regfio_write_key( outfile
, nk
->keyname
, values
, subkeys
, nk
->sec_desc
->sec_desc
, parent
);
1287 /* write each one of the subkeys out */
1289 path
= talloc_asprintf(subkeys
,
1295 TALLOC_FREE(subkeys
);
1299 nk
->subkey_index
= 0;
1300 while ( (subkey
= regfio_fetch_subkey( infile
, nk
)) ) {
1301 write_registry_tree( infile
, subkey
, key
, outfile
, path
);
1304 d_printf("[%s]\n", path
);
1305 TALLOC_FREE(subkeys
);
1310 /********************************************************************
1311 ********************************************************************/
1313 static int rpc_registry_dump(struct net_context
*c
, int argc
, const char **argv
)
1315 REGF_FILE
*registry
;
1318 if (argc
!= 1 || c
->display_usage
) {
1321 _("net rpc registry dump <file> \n"));
1325 d_printf(_("Opening %s...."), argv
[0]);
1326 if ( !(registry
= regfio_open( argv
[0], O_RDONLY
, 0)) ) {
1327 d_fprintf(stderr
, _("Failed to open %s for reading\n"),argv
[0]);
1330 d_printf(_("ok\n"));
1332 /* get the root of the registry file */
1334 if ((nk
= regfio_rootkey( registry
)) == NULL
) {
1335 d_fprintf(stderr
, _("Could not get rootkey\n"));
1336 regfio_close( registry
);
1339 d_printf("[%s]\n", nk
->keyname
);
1343 dump_registry_tree( registry
, nk
, nk
->keyname
);
1346 talloc_report_full( registry
->mem_ctx
, stderr
);
1348 d_printf(_("Closing registry..."));
1349 regfio_close( registry
);
1350 d_printf(_("ok\n"));
1355 /********************************************************************
1356 ********************************************************************/
1358 static int rpc_registry_copy(struct net_context
*c
, int argc
, const char **argv
)
1360 REGF_FILE
*infile
= NULL
, *outfile
= NULL
;
1364 if (argc
!= 2 || c
->display_usage
) {
1367 _("net rpc registry copy <srcfile> <newfile>\n"));
1371 d_printf(_("Opening %s...."), argv
[0]);
1372 if ( !(infile
= regfio_open( argv
[0], O_RDONLY
, 0 )) ) {
1373 d_fprintf(stderr
, _("Failed to open %s for reading\n"),argv
[0]);
1376 d_printf(_("ok\n"));
1378 d_printf(_("Opening %s...."), argv
[1]);
1379 if ( !(outfile
= regfio_open( argv
[1], (O_RDWR
|O_CREAT
|O_TRUNC
),
1380 (S_IRUSR
|S_IWUSR
) )) ) {
1381 d_fprintf(stderr
, _("Failed to open %s for writing\n"),argv
[1]);
1384 d_printf(_("ok\n"));
1386 /* get the root of the registry file */
1388 if ((nk
= regfio_rootkey( infile
)) == NULL
) {
1389 d_fprintf(stderr
, _("Could not get rootkey\n"));
1392 d_printf(_("RootKey: [%s]\n"), nk
->keyname
);
1394 write_registry_tree( infile
, nk
, NULL
, outfile
, "" );
1400 d_printf(_("Closing %s..."), argv
[1]);
1402 regfio_close( outfile
);
1404 d_printf(_("ok\n"));
1406 d_printf(_("Closing %s..."), argv
[0]);
1408 regfio_close( infile
);
1410 d_printf(_("ok\n"));
1415 /********************************************************************
1416 ********************************************************************/
1418 static NTSTATUS
rpc_registry_getsd_internal(struct net_context
*c
,
1419 const struct dom_sid
*domain_sid
,
1420 const char *domain_name
,
1421 struct cli_state
*cli
,
1422 struct rpc_pipe_client
*pipe_hnd
,
1423 TALLOC_CTX
*mem_ctx
,
1427 struct policy_handle pol_hive
, pol_key
;
1430 enum ndr_err_code ndr_err
;
1431 struct KeySecurityData
*sd
= NULL
;
1434 struct security_descriptor sec_desc
;
1435 uint32_t access_mask
= SEC_FLAG_MAXIMUM_ALLOWED
|
1436 SEC_FLAG_SYSTEM_SECURITY
;
1437 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
1439 if (argc
<1 || argc
> 2 || c
->display_usage
) {
1442 _("net rpc registry getsd <path> <secinfo>\n"));
1443 d_printf("%s net rpc registry getsd "
1444 "'HKLM\\Software\\Samba'\n", _("Example:"));
1445 return NT_STATUS_INVALID_PARAMETER
;
1448 status
= registry_openkey(mem_ctx
, pipe_hnd
, argv
[0],
1450 &pol_hive
, &pol_key
);
1451 if (!NT_STATUS_IS_OK(status
)) {
1452 d_fprintf(stderr
, _("registry_openkey failed: %s\n"),
1457 sd
= talloc_zero(mem_ctx
, struct KeySecurityData
);
1459 status
= NT_STATUS_NO_MEMORY
;
1466 sscanf(argv
[1], "%x", &sec_info
);
1468 sec_info
= SECINFO_OWNER
| SECINFO_GROUP
| SECINFO_DACL
;
1471 status
= registry_getsd(mem_ctx
, b
, &pol_key
, sec_info
, sd
, &werr
);
1472 if (!NT_STATUS_IS_OK(status
)) {
1473 d_fprintf(stderr
, _("getting sd failed: %s\n"),
1477 if (!W_ERROR_IS_OK(werr
)) {
1478 status
= werror_to_ntstatus(werr
);
1479 d_fprintf(stderr
, _("getting sd failed: %s\n"),
1484 blob
.data
= sd
->data
;
1485 blob
.length
= sd
->size
;
1487 ndr_err
= ndr_pull_struct_blob(&blob
, mem_ctx
, &sec_desc
,
1488 (ndr_pull_flags_fn_t
)ndr_pull_security_descriptor
);
1489 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
1490 status
= ndr_map_error2ntstatus(ndr_err
);
1493 status
= NT_STATUS_OK
;
1495 display_sec_desc(&sec_desc
);
1498 dcerpc_winreg_CloseKey(b
, mem_ctx
, &pol_key
, &werr
);
1499 dcerpc_winreg_CloseKey(b
, mem_ctx
, &pol_hive
, &werr
);
1505 static int rpc_registry_getsd(struct net_context
*c
, int argc
, const char **argv
)
1507 return run_rpc_command(c
, NULL
, &ndr_table_winreg
, 0,
1508 rpc_registry_getsd_internal
, argc
, argv
);
1511 /********************************************************************
1512 ********************************************************************/
1514 * @defgroup net_rpc_registry net rpc registry
1518 * @defgroup net_rpc_registry_export Export
1519 * @ingroup net_rpc_registry
1523 static NTSTATUS
registry_export(struct rpc_pipe_client
* pipe_hnd
,
1525 struct policy_handle
* key_hnd
,
1526 struct reg_format
* f
,
1527 const char* parentfullname
,
1531 uint32 num_subkeys
= 0;
1532 uint32 num_values
= 0;
1533 char **names
= NULL
, **classes
= NULL
;
1534 NTTIME
**modtimes
= NULL
;
1535 struct regval_blob
**values
= NULL
;
1537 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
1539 TALLOC_CTX
* mem_ctx
= talloc_new(ctx
);
1542 const char* fullname
= name
1543 ? talloc_asprintf(mem_ctx
, "%s\\%s", parentfullname
, name
)
1545 reg_format_key(f
, &fullname
, 1, false);
1547 status
= registry_enumvalues2(mem_ctx
, pipe_hnd
, key_hnd
, &num_values
,
1549 if (!NT_STATUS_IS_OK(status
)) {
1550 d_fprintf(stderr
, _("enumerating values failed: %s\n"),
1555 for (i
=0; i
<num_values
; i
++) {
1556 reg_format_regval_blob(f
, names
[i
], values
[i
]);
1560 status
= registry_enumkeys(mem_ctx
, pipe_hnd
, key_hnd
, &num_subkeys
,
1561 &names
, &classes
, &modtimes
);
1562 if (!NT_STATUS_IS_OK(status
)) {
1563 d_fprintf(stderr
, _("enumerating keys failed: %s\n"),
1568 for (i
=0; i
<num_subkeys
; i
++) {
1569 struct policy_handle subkey_hnd
;
1570 struct winreg_String key
;
1573 /* key.name = talloc_strdup(mem_ctx, names[i]); ??? */
1574 key
.name
= names
[i
];
1576 status
= dcerpc_winreg_OpenKey(b
, mem_ctx
, key_hnd
, key
,
1578 &subkey_hnd
, &werr
);
1579 if (!NT_STATUS_IS_OK(status
)) {
1581 _("dcerpc_winreg_OpenKey failed: %s %s\n"),
1582 names
[i
], nt_errstr(status
));
1585 if (!W_ERROR_IS_OK(werr
)) {
1586 status
= werror_to_ntstatus(werr
);
1588 _("dcerpc_winreg_OpenKey failed: %s %s\n"),
1589 names
[i
], win_errstr(werr
));
1593 status
= registry_export(pipe_hnd
, mem_ctx
, &subkey_hnd
,
1594 f
, fullname
, names
[i
]);
1595 if (!(NT_STATUS_IS_OK(status
))) {
1597 _("export key failed: %s %s\n"),
1598 names
[i
], nt_errstr(status
));
1600 dcerpc_winreg_CloseKey(b
, mem_ctx
,
1601 &subkey_hnd
, &werr
);
1604 talloc_free(mem_ctx
);
1608 static NTSTATUS
rpc_registry_export_internal(struct net_context
*c
,
1609 const struct dom_sid
*domain_sid
,
1610 const char *domain_name
,
1611 struct cli_state
*cli
,
1612 struct rpc_pipe_client
*pipe_hnd
,
1613 TALLOC_CTX
*mem_ctx
,
1617 struct policy_handle pol_hive
, pol_key
;
1620 struct reg_format
* f
;
1621 struct dcerpc_binding_handle
*b
= pipe_hnd
->binding_handle
;
1623 if (argc
< 2 || argc
> 3 || c
->display_usage
) {
1626 _("net rpc registry export <path> <file> [opt]\n"));
1627 d_printf("%s net rpc registry export "
1628 "'HKLM\\Software\\Samba' samba.reg\n", _("Example:"));
1629 return NT_STATUS_INVALID_PARAMETER
;
1632 status
= registry_openkey(mem_ctx
, pipe_hnd
, argv
[0], REG_KEY_READ
,
1633 &pol_hive
, &pol_key
);
1634 if (!NT_STATUS_IS_OK(status
)) {
1635 d_fprintf(stderr
, _("registry_openkey failed: %s\n"),
1640 f
= reg_format_file(mem_ctx
, argv
[1], (argc
> 2) ? argv
[2] : NULL
);
1642 d_fprintf(stderr
, _("open file failed: %s\n"), strerror(errno
));
1643 return map_nt_error_from_unix(errno
);
1646 status
= registry_export(pipe_hnd
, mem_ctx
, &pol_key
,
1648 if (!NT_STATUS_IS_OK(status
))
1651 dcerpc_winreg_CloseKey(b
, mem_ctx
, &pol_key
, &werr
);
1652 dcerpc_winreg_CloseKey(b
, mem_ctx
, &pol_hive
, &werr
);
1656 /********************************************************************
1657 ********************************************************************/
1659 static int rpc_registry_export(struct net_context
*c
, int argc
,
1662 return run_rpc_command(c
, NULL
, &ndr_table_winreg
, 0,
1663 rpc_registry_export_internal
, argc
, argv
);
1668 /********************************************************************
1669 ********************************************************************/
1672 * @defgroup net_rpc_registry_import Import
1673 * @ingroup net_rpc_registry
1678 struct rpc_pipe_client
*pipe_hnd
;
1679 TALLOC_CTX
*mem_ctx
;
1682 static WERROR
import_create_key(struct import_ctx
* ctx
,
1683 struct policy_handle
* parent
, const char* name
,
1684 void** pkey
, bool* existing
)
1688 void* mem_ctx
= talloc_new(ctx
->mem_ctx
);
1690 struct policy_handle
* key
= NULL
;
1691 struct policy_handle hive
;
1692 struct winreg_String keyclass
, keyname
;
1693 enum winreg_CreateAction action
= REG_ACTION_NONE
;
1694 struct dcerpc_binding_handle
*b
= ctx
->pipe_hnd
->binding_handle
;
1696 ZERO_STRUCT(keyname
);
1697 keyname
.name
= name
;
1699 if (parent
== NULL
) {
1700 uint32 hive_idx
= 0;
1701 if (!reg_hive_key(mem_ctx
, name
, &hive_idx
, &keyname
.name
)) {
1706 status
= dcerpc_winreg_Connect(b
, mem_ctx
,
1707 hive_idx
, SEC_FLAG_MAXIMUM_ALLOWED
,
1709 if (!NT_STATUS_IS_OK(status
)) {
1710 werr
= ntstatus_to_werror(status
);
1711 d_fprintf(stderr
, _("dcerpc_winreg_Connect returned %s\n"),
1715 if (!W_ERROR_IS_OK(werr
)) {
1716 d_fprintf(stderr
, _("dcerpc_winreg_Connect returned %s\n"),
1724 key
= talloc_zero(mem_ctx
, struct policy_handle
);
1730 ZERO_STRUCT(keyclass
);
1733 status
= dcerpc_winreg_CreateKey(b
, mem_ctx
,
1735 keyclass
, 0, REG_KEY_READ
, NULL
,
1736 key
, &action
, &werr
);
1737 if (!NT_STATUS_IS_OK(status
)) {
1738 werr
= ntstatus_to_werror(status
);
1739 d_fprintf(stderr
, _("dcerpc_winreg_CreateKey returned %s\n"),
1743 if (!W_ERROR_IS_OK(werr
)) {
1744 d_fprintf(stderr
, _("dcerpc_winreg_CreateKey returned %s\n"),
1750 case REG_CREATED_NEW_KEY
:
1751 d_printf(_("createkey created %s\n"), name
);
1752 if (existing
!= NULL
)
1756 case REG_OPENED_EXISTING_KEY
:
1757 d_printf(_("createkey opened existing %s\n"), name
);
1758 if (existing
!= NULL
)
1762 case REG_ACTION_NONE
:
1763 d_printf(_("createkey did nothing -- huh?\n"));
1764 werr
= WERR_CREATE_FAILED
;
1771 if ( parent
== &hive
) {
1773 dcerpc_winreg_CloseKey(b
, mem_ctx
,
1778 *pkey
= talloc_steal(ctx
->mem_ctx
, key
);
1781 talloc_free(mem_ctx
);
1785 static WERROR
import_delete_key(struct import_ctx
* ctx
,
1786 struct policy_handle
* parent
, const char* name
)
1790 void* mem_ctx
= talloc_new(ctx
->mem_ctx
);
1791 struct winreg_String keyname
= { 0, };
1792 struct policy_handle hive
;
1793 struct dcerpc_binding_handle
*b
= ctx
->pipe_hnd
->binding_handle
;
1795 keyname
.name
= name
;
1797 if (parent
== NULL
) {
1799 if (!reg_hive_key(mem_ctx
, name
, &hive_idx
, &keyname
.name
)) {
1804 status
= dcerpc_winreg_Connect(b
, mem_ctx
, hive_idx
,
1805 SEC_FLAG_MAXIMUM_ALLOWED
, &hive
,
1807 if (!NT_STATUS_IS_OK(status
)) {
1808 werr
= ntstatus_to_werror(status
);
1809 d_fprintf(stderr
, _("dcerpc_winreg_Connect returned %s\n"),
1813 if (!W_ERROR_IS_OK(werr
)) {
1814 d_fprintf(stderr
, _("dcerpc_winreg_Connect returned %s\n"),
1822 status
= dcerpc_winreg_DeleteKey(b
, mem_ctx
, parent
,
1824 if (!NT_STATUS_IS_OK(status
)) {
1825 werr
= ntstatus_to_werror(status
);
1826 d_fprintf(stderr
, _("dcerpc_winreg_DeleteKey returned %s\n"),
1830 if (!W_ERROR_IS_OK(werr
)) {
1831 d_fprintf(stderr
, _("dcerpc_winreg_DeleteKey returned %s\n"),
1837 if ( parent
== &hive
) {
1839 dcerpc_winreg_CloseKey(b
, mem_ctx
, parent
, &_result
);
1842 talloc_free(mem_ctx
);
1846 static WERROR
import_close_key(struct import_ctx
* ctx
,
1847 struct policy_handle
* key
)
1851 void* mem_ctx
= talloc_new(ctx
->mem_ctx
);
1852 struct dcerpc_binding_handle
*b
= ctx
->pipe_hnd
->binding_handle
;
1854 status
= dcerpc_winreg_CloseKey(b
, mem_ctx
, key
, &werr
);
1855 if (!NT_STATUS_IS_OK(status
)) {
1856 werr
= ntstatus_to_werror(status
);
1857 d_fprintf(stderr
, _("dcerpc_winreg_CloseKey returned %s\n"),
1861 if (!W_ERROR_IS_OK(werr
)) {
1862 d_fprintf(stderr
, _("dcerpc_winreg_CloseKey returned %s\n"),
1867 werr
= (talloc_free(key
) == 0) ? WERR_OK
: WERR_GENERAL_FAILURE
;
1869 talloc_free(mem_ctx
);
1873 static WERROR
import_create_val(struct import_ctx
* ctx
,
1874 struct policy_handle
* parent
, const char* name
,
1875 uint32_t type
, const uint8_t* val
, uint32_t len
)
1879 void* mem_ctx
= talloc_new(ctx
->mem_ctx
);
1880 struct winreg_String valuename
;
1881 struct dcerpc_binding_handle
*b
= ctx
->pipe_hnd
->binding_handle
;
1883 if (parent
== NULL
) {
1884 return WERR_INVALID_PARAM
;
1887 ZERO_STRUCT(valuename
);
1888 valuename
.name
= name
;
1890 status
= dcerpc_winreg_SetValue(b
, mem_ctx
, parent
,
1892 (uint8_t *)discard_const(val
), len
, &werr
);
1893 if (!NT_STATUS_IS_OK(status
)) {
1894 werr
= ntstatus_to_werror(status
);
1895 d_fprintf(stderr
, _("registry_setvalue failed: %s\n"),
1899 if (!W_ERROR_IS_OK(werr
)) {
1900 d_fprintf(stderr
, _("registry_setvalue failed: %s\n"),
1906 talloc_free(mem_ctx
);
1910 static WERROR
import_delete_val(struct import_ctx
* ctx
,
1911 struct policy_handle
* parent
, const char* name
)
1915 void* mem_ctx
= talloc_new(ctx
->mem_ctx
);
1916 struct winreg_String valuename
;
1917 struct dcerpc_binding_handle
*b
= ctx
->pipe_hnd
->binding_handle
;
1919 if (parent
== NULL
) {
1920 return WERR_INVALID_PARAM
;
1923 ZERO_STRUCT(valuename
);
1924 valuename
.name
= name
;
1926 status
= dcerpc_winreg_DeleteValue(b
, mem_ctx
,
1927 parent
, valuename
, &werr
);
1929 if (!NT_STATUS_IS_OK(status
)) {
1930 werr
= ntstatus_to_werror(status
);
1931 d_fprintf(stderr
, _("registry_deletevalue failed: %s\n"),
1935 if (!NT_STATUS_IS_OK(status
)) {
1936 d_fprintf(stderr
, _("registry_deletevalue failed: %s\n"),
1942 talloc_free(mem_ctx
);
1948 static NTSTATUS
rpc_registry_import_internal(struct net_context
*c
,
1949 const struct dom_sid
*domain_sid
,
1950 const char *domain_name
,
1951 struct cli_state
*cli
,
1952 struct rpc_pipe_client
*pipe_hnd
,
1953 TALLOC_CTX
*mem_ctx
,
1957 struct import_ctx import_ctx
;
1959 struct reg_import_callback import_callback
= {
1961 .closekey
= (reg_import_callback_closekey_t
)&import_close_key
,
1962 .createkey
= (reg_import_callback_createkey_t
)&import_create_key
,
1963 .deletekey
= (reg_import_callback_deletekey_t
)&import_delete_key
,
1964 .deleteval
= (reg_import_callback_deleteval_t
)&import_delete_val
,
1966 .blob
= (reg_import_callback_setval_blob_t
)&import_create_val
,
1968 .setval_type
= BLOB
,
1973 if (argc
< 1 || argc
> 2 || c
->display_usage
) {
1976 _("net rpc registry import <file> [options]\n"));
1977 d_printf("%s net rpc registry export "
1978 "samba.reg enc=CP1252,flags=0\n", _("Example:"));
1979 return NT_STATUS_INVALID_PARAMETER
;
1981 ZERO_STRUCT(import_ctx
);
1982 import_ctx
.pipe_hnd
= pipe_hnd
;
1983 import_ctx
.mem_ctx
= mem_ctx
;
1984 ret
= reg_parse_file(argv
[0],
1985 reg_import_adapter(import_ctx
.mem_ctx
,
1988 (argc
> 1) ? argv
[1] : NULL
1991 return ret
==0 ? NT_STATUS_OK
: NT_STATUS_UNSUCCESSFUL
;
1994 /********************************************************************
1995 ********************************************************************/
1997 static int rpc_registry_import(struct net_context
*c
, int argc
,
2000 return run_rpc_command(c
, NULL
, &ndr_table_winreg
, 0,
2001 rpc_registry_import_internal
, argc
, argv
);
2005 /********************************************************************
2006 ********************************************************************/
2008 int net_rpc_registry(struct net_context
*c
, int argc
, const char **argv
)
2010 struct functable func
[] = {
2013 rpc_registry_enumerate
,
2015 N_("Enumerate registry keys and values"),
2016 N_("net rpc registry enumerate\n"
2017 " Enumerate registry keys and values")
2021 rpc_registry_createkey
,
2023 N_("Create a new registry key"),
2024 N_("net rpc registry createkey\n"
2025 " Create a new registry key")
2029 rpc_registry_deletekey
,
2031 N_("Delete a registry key"),
2032 N_("net rpc registry deletekey\n"
2033 " Delete a registry key")
2037 rpc_registry_getvalue
,
2039 N_("Print a registry value"),
2040 N_("net rpc registry getvalue\n"
2041 " Print a registry value")
2045 rpc_registry_getvalueraw
,
2047 N_("Print a registry value"),
2048 N_("net rpc registry getvalueraw\n"
2049 " Print a registry value (raw version)")
2053 rpc_registry_setvalue
,
2055 N_("Set a new registry value"),
2056 N_("net rpc registry setvalue\n"
2057 " Set a new registry value")
2061 rpc_registry_deletevalue
,
2063 N_("Delete a registry value"),
2064 N_("net rpc registry deletevalue\n"
2065 " Delete a registry value")
2071 N_("Save a registry file"),
2072 N_("net rpc registry save\n"
2073 " Save a registry file")
2079 N_("Dump a registry file"),
2080 N_("net rpc registry dump\n"
2081 " Dump a registry file")
2087 N_("Copy a registry file"),
2088 N_("net rpc registry copy\n"
2089 " Copy a registry file")
2095 N_("Get security descriptor"),
2096 N_("net rpc registry getsd\n"
2097 " Get security descriptior")
2101 rpc_registry_import
,
2103 N_("Import .reg file"),
2104 N_("net rpc registry import\n"
2105 " Import .reg file")
2109 rpc_registry_export
,
2111 N_("Export .reg file"),
2112 N_("net rpc registry export\n"
2113 " Export .reg file")
2115 {NULL
, NULL
, 0, NULL
, NULL
}
2117 return net_run_function(c
, argc
, argv
, "net rpc registry", func
);