WHATSNEW: Update release notes.
[Samba.git] / source3 / lib / util_reg.c
blob3f8033befe1b1b5dfd8704c7dbd9f2b6b4c1e2ec
1 /*
2 * Unix SMB/CIFS implementation.
3 * Registry helper routines
4 * Copyright (C) Volker Lendecke 2006
5 *
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)
9 * any later version.
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
14 * more details.
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/>.
20 #include "includes.h"
21 #include "../librpc/gen_ndr/ndr_winreg.h"
23 #undef DBGC_CLASS
24 #define DBGC_CLASS DBGC_REGISTRY
26 extern REGISTRY_OPS smbconf_reg_ops;
28 const char *reg_type_lookup(enum winreg_Type type)
30 const char *result;
32 switch(type) {
33 case REG_NONE:
34 result = "REG_NONE";
35 break;
36 case REG_SZ:
37 result = "REG_SZ";
38 break;
39 case REG_EXPAND_SZ:
40 result = "REG_EXPAND_SZ";
41 break;
42 case REG_BINARY:
43 result = "REG_BINARY";
44 break;
45 case REG_DWORD:
46 result = "REG_DWORD";
47 break;
48 case REG_DWORD_BIG_ENDIAN:
49 result = "REG_DWORD_BIG_ENDIAN";
50 break;
51 case REG_LINK:
52 result = "REG_LINK";
53 break;
54 case REG_MULTI_SZ:
55 result = "REG_MULTI_SZ";
56 break;
57 case REG_RESOURCE_LIST:
58 result = "REG_RESOURCE_LIST";
59 break;
60 case REG_FULL_RESOURCE_DESCRIPTOR:
61 result = "REG_FULL_RESOURCE_DESCRIPTOR";
62 break;
63 case REG_RESOURCE_REQUIREMENTS_LIST:
64 result = "REG_RESOURCE_REQUIREMENTS_LIST";
65 break;
66 case REG_QWORD:
67 result = "REG_QWORD";
68 break;
69 default:
70 result = "REG TYPE IS UNKNOWN";
71 break;
73 return result;
76 WERROR reg_pull_multi_sz(TALLOC_CTX *mem_ctx, const void *buf, size_t len,
77 uint32 *num_values, char ***values)
79 const smb_ucs2_t *p = (const smb_ucs2_t *)buf;
80 *num_values = 0;
83 * Make sure that a talloc context for the strings retrieved exists
86 if (!(*values = TALLOC_ARRAY(mem_ctx, char *, 1))) {
87 return WERR_NOMEM;
90 len /= 2; /* buf is a set of UCS2 strings */
92 while (len > 0) {
93 char *val;
94 size_t dstlen, thislen;
96 thislen = strnlen_w(p, len) + 1;
97 if (!convert_string_allocate(*values, CH_UTF16LE, CH_UNIX,
98 p, thislen*2, (void *)&val, &dstlen, true)) {
99 TALLOC_FREE(*values);
100 return WERR_NOMEM;
103 ADD_TO_ARRAY(*values, char *, val, values, num_values);
104 if (*values == NULL) {
105 return WERR_NOMEM;
108 p += thislen;
109 len -= thislen;
112 return WERR_OK;
115 /*******************************************************************
116 push a string in unix charset into a REG_SZ UCS2 null terminated blob
117 ********************************************************************/
119 bool push_reg_sz(TALLOC_CTX *mem_ctx, DATA_BLOB *blob, const char *s)
121 union winreg_Data data;
122 enum ndr_err_code ndr_err;
123 data.string = s;
124 ndr_err = ndr_push_union_blob(blob, mem_ctx, NULL, &data, REG_SZ,
125 (ndr_push_flags_fn_t)ndr_push_winreg_Data);
126 return NDR_ERR_CODE_IS_SUCCESS(ndr_err);
129 /*******************************************************************
130 push a string_array in unix charset into a REG_MULTI_SZ UCS2 double-null
131 terminated blob
132 ********************************************************************/
134 bool push_reg_multi_sz(TALLOC_CTX *mem_ctx, DATA_BLOB *blob, const char **a)
136 union winreg_Data data;
137 enum ndr_err_code ndr_err;
138 data.string_array = a;
139 ndr_err = ndr_push_union_blob(blob, mem_ctx, NULL, &data, REG_MULTI_SZ,
140 (ndr_push_flags_fn_t)ndr_push_winreg_Data);
141 return NDR_ERR_CODE_IS_SUCCESS(ndr_err);
144 /*******************************************************************
145 pull a string in unix charset out of a REG_SZ UCS2 null terminated blob
146 ********************************************************************/
148 bool pull_reg_sz(TALLOC_CTX *mem_ctx, const DATA_BLOB *blob, const char **s)
150 union winreg_Data data;
151 enum ndr_err_code ndr_err;
152 ndr_err = ndr_pull_union_blob(blob, mem_ctx, NULL, &data, REG_SZ,
153 (ndr_pull_flags_fn_t)ndr_pull_winreg_Data);
154 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
155 return false;
157 *s = data.string;
158 return true;
161 /*******************************************************************
162 pull a string_array in unix charset out of a REG_MULTI_SZ UCS2 double-null
163 terminated blob
164 ********************************************************************/
166 bool pull_reg_multi_sz(TALLOC_CTX *mem_ctx, const DATA_BLOB *blob, const char ***a)
168 union winreg_Data data;
169 enum ndr_err_code ndr_err;
170 ndr_err = ndr_pull_union_blob(blob, mem_ctx, NULL, &data, REG_MULTI_SZ,
171 (ndr_pull_flags_fn_t)ndr_pull_winreg_Data);
172 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
173 return false;
175 *a = data.string_array;
176 return true;