2 Unix SMB/CIFS implementation.
3 Easy management of byte-length data
4 Copyright (C) Andrew Tridgell 2001
5 Copyright (C) Andrew Bartlett 2001
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/>.
23 const DATA_BLOB data_blob_null
= { NULL
, 0 };
27 * @brief Manipulation of arbitrary data blobs
31 construct a data blob, must be freed with data_blob_free()
32 you can pass NULL for p and get a blank data blob
34 _PUBLIC_ DATA_BLOB
data_blob_named(const void *p
, size_t length
, const char *name
)
38 if (p
== NULL
&& length
== 0) {
44 ret
.data
= (uint8_t *)talloc_memdup(NULL
, p
, length
);
46 ret
.data
= talloc_array(NULL
, uint8_t, length
);
48 if (ret
.data
== NULL
) {
52 talloc_set_name_const(ret
.data
, name
);
58 construct a data blob, using supplied TALLOC_CTX
60 _PUBLIC_ DATA_BLOB
data_blob_talloc_named(TALLOC_CTX
*mem_ctx
, const void *p
, size_t length
, const char *name
)
62 DATA_BLOB ret
= data_blob_named(p
, length
, name
);
65 talloc_steal(mem_ctx
, ret
.data
);
71 construct a zero data blob, using supplied TALLOC_CTX.
72 use this sparingly as it initialises data - better to initialise
73 yourself if you want specific data in the blob
75 _PUBLIC_ DATA_BLOB
data_blob_talloc_zero(TALLOC_CTX
*mem_ctx
, size_t length
)
77 DATA_BLOB blob
= data_blob_talloc(mem_ctx
, NULL
, length
);
78 data_blob_clear(&blob
);
85 _PUBLIC_
void data_blob_free(DATA_BLOB
*d
)
95 clear a DATA_BLOB's contents
97 _PUBLIC_
void data_blob_clear(DATA_BLOB
*d
)
100 memset(d
->data
, 0, d
->length
);
105 free a data blob and clear its contents
107 _PUBLIC_
void data_blob_clear_free(DATA_BLOB
*d
)
115 check if two data blobs are equal
117 _PUBLIC_
int data_blob_cmp(const DATA_BLOB
*d1
, const DATA_BLOB
*d2
)
120 if (d1
->data
== NULL
&& d2
->data
!= NULL
) {
123 if (d1
->data
!= NULL
&& d2
->data
== NULL
) {
126 if (d1
->data
== d2
->data
) {
127 return d1
->length
- d2
->length
;
129 ret
= memcmp(d1
->data
, d2
->data
, MIN(d1
->length
, d2
->length
));
131 return d1
->length
- d2
->length
;
137 print the data_blob as hex string
139 _PUBLIC_
char *data_blob_hex_string_lower(TALLOC_CTX
*mem_ctx
, const DATA_BLOB
*blob
)
144 hex_string
= talloc_array(mem_ctx
, char, (blob
->length
*2)+1);
149 /* this must be lowercase or w2k8 cannot join a samba domain,
150 as this routine is used to encode extended DNs and windows
151 only accepts lowercase hexadecimal numbers */
152 for (i
= 0; i
< blob
->length
; i
++)
153 slprintf(&hex_string
[i
*2], 3, "%02x", blob
->data
[i
]);
155 hex_string
[(blob
->length
*2)] = '\0';
159 _PUBLIC_
char *data_blob_hex_string_upper(TALLOC_CTX
*mem_ctx
, const DATA_BLOB
*blob
)
164 hex_string
= talloc_array(mem_ctx
, char, (blob
->length
*2)+1);
169 for (i
= 0; i
< blob
->length
; i
++)
170 slprintf(&hex_string
[i
*2], 3, "%02X", blob
->data
[i
]);
172 hex_string
[(blob
->length
*2)] = '\0';
177 useful for constructing data blobs in test suites, while
178 avoiding const warnings
180 _PUBLIC_ DATA_BLOB
data_blob_string_const(const char *str
)
183 blob
.data
= discard_const_p(uint8_t, str
);
184 blob
.length
= str
? strlen(str
) : 0;
189 useful for constructing data blobs in test suites, while
190 avoiding const warnings
192 _PUBLIC_ DATA_BLOB
data_blob_string_const_null(const char *str
)
195 blob
.data
= discard_const_p(uint8_t, str
);
196 blob
.length
= str
? strlen(str
)+1 : 0;
201 * Create a new data blob from const data
204 _PUBLIC_ DATA_BLOB
data_blob_const(const void *p
, size_t length
)
207 blob
.data
= discard_const_p(uint8_t, p
);
208 blob
.length
= length
;
216 _PUBLIC_
bool data_blob_realloc(TALLOC_CTX
*mem_ctx
, DATA_BLOB
*blob
, size_t length
)
218 blob
->data
= talloc_realloc(mem_ctx
, blob
->data
, uint8_t, length
);
219 if (blob
->data
== NULL
)
221 blob
->length
= length
;
227 append some data to a data blob
229 _PUBLIC_
bool data_blob_append(TALLOC_CTX
*mem_ctx
, DATA_BLOB
*blob
,
230 const void *p
, size_t length
)
232 size_t old_len
= blob
->length
;
233 size_t new_len
= old_len
+ length
;
234 if (new_len
< length
|| new_len
< old_len
) {
238 if ((const uint8_t *)p
+ length
< (const uint8_t *)p
) {
242 if (!data_blob_realloc(mem_ctx
, blob
, new_len
)) {
246 memcpy(blob
->data
+ old_len
, p
, length
);