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 2 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, write to the Free Software Foundation, Inc., 675
18 * Mass Ave, Cambridge, MA 02139, USA.
23 WERROR registry_pull_value(TALLOC_CTX *mem_ctx,
24 struct registry_value **pvalue,
25 enum winreg_Type type, uint8 *data,
26 uint32 size, uint32 length)
28 struct registry_value *value;
31 if (!(value = TALLOC_ZERO_P(mem_ctx, struct registry_value))) {
39 if ((size != 4) || (length != 4)) {
40 err = WERR_INVALID_PARAM;
43 value->v.dword = IVAL(data, 0);
49 * Make sure we get a NULL terminated string for
50 * convert_string_talloc().
54 uint32 num_ucs2 = length / 2;
56 if ((length % 2) != 0) {
57 err = WERR_INVALID_PARAM;
61 if (!(tmp = SMB_MALLOC_ARRAY(smb_ucs2_t, num_ucs2+1))) {
66 memcpy((void *)tmp, (const void *)data, length);
69 value->v.sz.len = convert_string_talloc(
70 value, CH_UTF16LE, CH_UNIX, tmp, length+2,
71 &value->v.sz.str, False);
75 if (value->v.sz.len == (size_t)-1) {
76 err = WERR_INVALID_PARAM;
82 err = reg_pull_multi_sz(value, (void *)data, length,
83 &value->v.multi_sz.num_strings,
84 &value->v.multi_sz.strings);
85 if (!(W_ERROR_IS_OK(err))) {
90 value->v.binary.data = talloc_move(value, &data);
91 value->v.binary.length = length;
94 err = WERR_INVALID_PARAM;
106 WERROR registry_push_value(TALLOC_CTX *mem_ctx,
107 const struct registry_value *value,
110 switch (value->type) {
113 SIVAL(buf, 0, value->v.dword);
114 *presult = data_blob_talloc(mem_ctx, (void *)buf, 4);
115 if (presult->data == NULL) {
121 case REG_EXPAND_SZ: {
122 presult->length = convert_string_talloc(
123 mem_ctx, CH_UNIX, CH_UTF16LE, value->v.sz.str,
124 MIN(value->v.sz.len, strlen(value->v.sz.str)+1),
125 (void *)&(presult->data), False);
126 if (presult->length == (size_t)-1) {
132 return WERR_INVALID_PARAM;