r23669: Move a variable into the only block where it is used.
[Samba.git] / source / lib / util_reg_api.c
blob8668bd881759669fd31805cb960e6b0400a59d62
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 2 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, write to the Free Software Foundation, Inc., 675
18 * Mass Ave, Cambridge, MA 02139, USA.
21 #include "includes.h"
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;
29 WERROR err;
31 if (!(value = TALLOC_ZERO_P(mem_ctx, struct registry_value))) {
32 return WERR_NOMEM;
35 value->type = type;
37 switch (type) {
38 case REG_DWORD:
39 if ((size != 4) || (length != 4)) {
40 err = WERR_INVALID_PARAM;
41 goto error;
43 value->v.dword = IVAL(data, 0);
44 break;
45 case REG_SZ:
46 case REG_EXPAND_SZ:
49 * Make sure we get a NULL terminated string for
50 * convert_string_talloc().
53 smb_ucs2_t *tmp;
55 if (length == 1) {
56 /* win2k regedit gives us a string of 1 byte when
57 * creating a new value of type REG_SZ. this workaround
58 * replaces the input by using the same string as
59 * winxp delivers. */
60 length = 2;
61 if (!(tmp = SMB_MALLOC_ARRAY(smb_ucs2_t, 2))) {
62 err = WERR_NOMEM;
63 goto error;
65 tmp[0] = 2;
66 tmp[1] = 0;
68 else if ((length % 2) != 0) {
69 err = WERR_INVALID_PARAM;
70 goto error;
72 else {
73 uint32 num_ucs2 = length / 2;
74 if (!(tmp = SMB_MALLOC_ARRAY(smb_ucs2_t, num_ucs2+1))) {
75 err = WERR_NOMEM;
76 goto error;
79 memcpy((void *)tmp, (const void *)data, length);
80 tmp[num_ucs2] = 0;
83 value->v.sz.len = convert_string_talloc(
84 value, CH_UTF16LE, CH_UNIX, tmp, length+2,
85 &value->v.sz.str, False);
87 SAFE_FREE(tmp);
89 if (value->v.sz.len == (size_t)-1) {
90 err = WERR_INVALID_PARAM;
91 goto error;
93 break;
95 case REG_MULTI_SZ:
96 err = reg_pull_multi_sz(value, (void *)data, length,
97 &value->v.multi_sz.num_strings,
98 &value->v.multi_sz.strings);
99 if (!(W_ERROR_IS_OK(err))) {
100 goto error;
102 break;
103 case REG_BINARY:
104 value->v.binary.data = talloc_move(value, &data);
105 value->v.binary.length = length;
106 break;
107 default:
108 err = WERR_INVALID_PARAM;
109 goto error;
112 *pvalue = value;
113 return WERR_OK;
115 error:
116 TALLOC_FREE(value);
117 return err;
120 WERROR registry_push_value(TALLOC_CTX *mem_ctx,
121 const struct registry_value *value,
122 DATA_BLOB *presult)
124 switch (value->type) {
125 case REG_DWORD: {
126 char buf[4];
127 SIVAL(buf, 0, value->v.dword);
128 *presult = data_blob_talloc(mem_ctx, (void *)buf, 4);
129 if (presult->data == NULL) {
130 return WERR_NOMEM;
132 break;
134 case REG_SZ:
135 case REG_EXPAND_SZ: {
136 presult->length = convert_string_talloc(
137 mem_ctx, CH_UNIX, CH_UTF16LE, value->v.sz.str,
138 MIN(value->v.sz.len, strlen(value->v.sz.str)+1),
139 (void *)&(presult->data), False);
140 if (presult->length == (size_t)-1) {
141 return WERR_NOMEM;
143 break;
145 default:
146 return WERR_INVALID_PARAM;
149 return WERR_OK;