backupkey: Handle more clearly the case where we find the secret, but it has no value
[Samba.git] / source3 / lib / util_ea.c
blob81684da4cb299067d726624a98ccc884c40d947a
1 /*
2 Unix SMB/CIFS implementation.
3 SMB Extended attribute buffer handling
4 Copyright (C) Jeremy Allison 2005-2013
5 Copyright (C) Tim Prouty 2008
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 "includes.h"
22 #include "lib/util_ea.h"
24 /****************************************************************************
25 Read one EA list entry from the buffer.
26 ****************************************************************************/
28 struct ea_list *read_ea_list_entry(TALLOC_CTX *ctx, const char *pdata, size_t data_size, size_t *pbytes_used)
30 struct ea_list *eal = talloc_zero(ctx, struct ea_list);
31 uint16 val_len;
32 unsigned int namelen;
33 size_t converted_size;
35 if (!eal) {
36 return NULL;
39 if (data_size < 6) {
40 return NULL;
43 eal->ea.flags = CVAL(pdata,0);
44 namelen = CVAL(pdata,1);
45 val_len = SVAL(pdata,2);
47 if (4 + namelen + 1 + val_len > data_size) {
48 return NULL;
51 /* Ensure the name is null terminated. */
52 if (pdata[namelen + 4] != '\0') {
53 return NULL;
55 if (!pull_ascii_talloc(ctx, &eal->ea.name, pdata + 4, &converted_size)) {
56 DEBUG(0,("read_ea_list_entry: pull_ascii_talloc failed: %s",
57 strerror(errno)));
59 if (!eal->ea.name) {
60 return NULL;
63 eal->ea.value = data_blob_talloc(eal, NULL, (size_t)val_len + 1);
64 if (!eal->ea.value.data) {
65 return NULL;
68 memcpy(eal->ea.value.data, pdata + 4 + namelen + 1, val_len);
70 /* Ensure we're null terminated just in case we print the value. */
71 eal->ea.value.data[val_len] = '\0';
72 /* But don't count the null. */
73 eal->ea.value.length--;
75 if (pbytes_used) {
76 *pbytes_used = 4 + namelen + 1 + val_len;
79 DEBUG(10,("read_ea_list_entry: read ea name %s\n", eal->ea.name));
80 dump_data(10, eal->ea.value.data, eal->ea.value.length);
82 return eal;
85 /****************************************************************************
86 Read a list of EA names and data from an incoming data buffer. Create an ea_list with them.
87 ****************************************************************************/
89 struct ea_list *read_nttrans_ea_list(TALLOC_CTX *ctx, const char *pdata, size_t data_size)
91 struct ea_list *ea_list_head = NULL;
92 size_t offset = 0;
94 if (data_size < 4) {
95 return NULL;
98 while (offset + 4 <= data_size) {
99 size_t next_offset = IVAL(pdata,offset);
100 struct ea_list *eal = read_ea_list_entry(ctx, pdata + offset + 4, data_size - offset - 4, NULL);
102 if (!eal) {
103 return NULL;
106 DLIST_ADD_END(ea_list_head, eal, struct ea_list *);
107 if (next_offset == 0) {
108 break;
111 /* Integer wrap protection for the increment. */
112 if (offset + next_offset < offset) {
113 break;
116 offset += next_offset;
118 /* Integer wrap protection for while loop. */
119 if (offset + 4 < offset) {
120 break;
125 return ea_list_head;