2 * Unix SMB/CIFS implementation.
3 * Registry helper routines
4 * Copyright (C) Volker Lendecke 2006
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation; either version 3 of the License, or (at your option)
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 * You should have received a copy of the GNU General Public License along with
17 * this program; if not, see <http://www.gnu.org/licenses/>.
21 #include "../librpc/gen_ndr/ndr_winreg.h"
24 #define DBGC_CLASS DBGC_REGISTRY
26 extern struct registry_ops smbconf_reg_ops
;
28 const char *reg_type_lookup(enum winreg_Type type
)
40 result
= "REG_EXPAND_SZ";
43 result
= "REG_BINARY";
48 case REG_DWORD_BIG_ENDIAN
:
49 result
= "REG_DWORD_BIG_ENDIAN";
55 result
= "REG_MULTI_SZ";
57 case REG_RESOURCE_LIST
:
58 result
= "REG_RESOURCE_LIST";
60 case REG_FULL_RESOURCE_DESCRIPTOR
:
61 result
= "REG_FULL_RESOURCE_DESCRIPTOR";
63 case REG_RESOURCE_REQUIREMENTS_LIST
:
64 result
= "REG_RESOURCE_REQUIREMENTS_LIST";
70 result
= "REG TYPE IS UNKNOWN";
76 WERROR
reg_pull_multi_sz(TALLOC_CTX
*mem_ctx
, const void *buf
, size_t len
,
77 uint32
*num_values
, char ***values
)
83 blob
= data_blob_const((uint8_t *)buf
, len
);
85 if (!pull_reg_multi_sz(mem_ctx
, &blob
, &vals
)) {
89 for (i
=0; vals
[i
]; i
++) {
94 *values
= (char **)vals
;
99 /*******************************************************************
100 push a string in unix charset into a REG_SZ UCS2 null terminated blob
101 ********************************************************************/
103 bool push_reg_sz(TALLOC_CTX
*mem_ctx
, DATA_BLOB
*blob
, const char *s
)
105 union winreg_Data data
;
106 enum ndr_err_code ndr_err
;
108 ndr_err
= ndr_push_union_blob(blob
, mem_ctx
, NULL
, &data
, REG_SZ
,
109 (ndr_push_flags_fn_t
)ndr_push_winreg_Data
);
110 return NDR_ERR_CODE_IS_SUCCESS(ndr_err
);
113 /*******************************************************************
114 push a string_array in unix charset into a REG_MULTI_SZ UCS2 double-null
116 ********************************************************************/
118 bool push_reg_multi_sz(TALLOC_CTX
*mem_ctx
, DATA_BLOB
*blob
, const char **a
)
120 union winreg_Data data
;
121 enum ndr_err_code ndr_err
;
122 data
.string_array
= a
;
123 ndr_err
= ndr_push_union_blob(blob
, mem_ctx
, NULL
, &data
, REG_MULTI_SZ
,
124 (ndr_push_flags_fn_t
)ndr_push_winreg_Data
);
125 return NDR_ERR_CODE_IS_SUCCESS(ndr_err
);
128 /*******************************************************************
129 pull a string in unix charset out of a REG_SZ UCS2 null terminated blob
130 ********************************************************************/
132 bool pull_reg_sz(TALLOC_CTX
*mem_ctx
, const DATA_BLOB
*blob
, const char **s
)
134 union winreg_Data data
;
135 enum ndr_err_code ndr_err
;
136 ndr_err
= ndr_pull_union_blob(blob
, mem_ctx
, NULL
, &data
, REG_SZ
,
137 (ndr_pull_flags_fn_t
)ndr_pull_winreg_Data
);
138 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
145 /*******************************************************************
146 pull a string_array in unix charset out of a REG_MULTI_SZ UCS2 double-null
148 ********************************************************************/
150 bool pull_reg_multi_sz(TALLOC_CTX
*mem_ctx
, const DATA_BLOB
*blob
, const char ***a
)
152 union winreg_Data data
;
153 enum ndr_err_code ndr_err
;
154 ndr_err
= ndr_pull_union_blob(blob
, mem_ctx
, NULL
, &data
, REG_MULTI_SZ
,
155 (ndr_pull_flags_fn_t
)ndr_pull_winreg_Data
);
156 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
159 *a
= data
.string_array
;