Line data Source code
1 : /*
2 : Copyright (c) Ralph Boehme 2012-2014
3 :
4 : This program is free software; you can redistribute it and/or modify
5 : it under the terms of the GNU General Public License as published by
6 : the Free Software Foundation; either version 3 of the License, or
7 : (at your option) any later version.
8 :
9 : This program is distributed in the hope that it will be useful,
10 : but WITHOUT ANY WARRANTY; without even the implied warranty of
11 : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 : GNU General Public License for more details.
13 :
14 : You should have received a copy of the GNU General Public License
15 : along with this program. If not, see <http://www.gnu.org/licenses/>.
16 : */
17 :
18 : #include "replace.h"
19 : #include <talloc.h>
20 : #include "dalloc.h"
21 : #include "marshalling.h"
22 : #include "lib/util/charset/charset.h"
23 : #include "lib/util/talloc_stack.h"
24 : #include "system/time.h"
25 :
26 : /**
27 : * Dynamic Datastore
28 : **/
29 : struct dalloc_ctx {
30 : void **dd_talloc_array;
31 : };
32 :
33 706 : void *_dalloc_new(TALLOC_CTX *mem_ctx, const char *type)
34 : {
35 4 : void *p;
36 :
37 706 : p = talloc_zero(mem_ctx, DALLOC_CTX);
38 706 : if (p == NULL) {
39 0 : return NULL;
40 : }
41 706 : talloc_set_name_const(p, type);
42 :
43 706 : return p;
44 : }
45 :
46 1444 : int _dalloc_add_talloc_chunk(DALLOC_CTX *dd, void *obj, const char *type, size_t size)
47 : {
48 1444 : size_t array_len = talloc_array_length(dd->dd_talloc_array);
49 :
50 1444 : dd->dd_talloc_array = talloc_realloc(dd,
51 : dd->dd_talloc_array,
52 : void *,
53 : array_len + 1);
54 1444 : if (dd->dd_talloc_array == NULL) {
55 0 : return -1;
56 : }
57 :
58 1444 : if (size != 0) {
59 1 : void *p;
60 :
61 391 : p = talloc_named_const(dd->dd_talloc_array, size, type);
62 391 : if (p == NULL) {
63 0 : return -1;
64 : }
65 391 : memcpy(p, obj, size);
66 391 : obj = p;
67 : } else {
68 1053 : _talloc_get_type_abort(obj, type, __location__);
69 : }
70 :
71 1444 : dd->dd_talloc_array[array_len] = obj;
72 :
73 1444 : return 0;
74 : }
75 :
76 : /* Get number of elements, returns 0 if the structure is empty or not initialized */
77 2507 : size_t dalloc_size(const DALLOC_CTX *d)
78 : {
79 2507 : if (d == NULL) {
80 0 : return 0;
81 : }
82 2507 : return talloc_array_length(d->dd_talloc_array);
83 : }
84 :
85 : /* Return element at position */
86 1288 : void *dalloc_get_object(const DALLOC_CTX *d, int i)
87 : {
88 1288 : size_t size = dalloc_size(d);
89 :
90 1288 : if (i >= size) {
91 0 : return NULL;
92 : }
93 :
94 1288 : return d->dd_talloc_array[i];
95 : }
96 :
97 : /* Return typename of element at position */
98 618 : const char *dalloc_get_name(const DALLOC_CTX *d, int i)
99 : {
100 618 : void *o = dalloc_get_object(d, i);
101 :
102 618 : if (o == NULL) {
103 0 : return NULL;
104 : }
105 :
106 618 : return talloc_get_name(o);
107 : }
108 :
109 : /*
110 : * Get pointer to value from a DALLOC object
111 : *
112 : * Returns pointer to object from a DALLOC object. Nested object integration
113 : * is supported by using the type string "DALLOC_CTX". Any other type string
114 : * designates the requested objects type.
115 : */
116 139 : void *dalloc_get(const DALLOC_CTX *d, ...)
117 : {
118 139 : int result = 0;
119 139 : void *p = NULL;
120 1 : va_list args;
121 1 : const char *type;
122 1 : int elem;
123 :
124 139 : va_start(args, d);
125 139 : type = va_arg(args, const char *);
126 :
127 360 : while (strcmp(type, "DALLOC_CTX") == 0) {
128 221 : elem = va_arg(args, int);
129 221 : if (elem >= talloc_array_length(d->dd_talloc_array)) {
130 0 : result = -1;
131 0 : goto done;
132 : }
133 221 : d = d->dd_talloc_array[elem];
134 221 : type = va_arg(args, const char *);
135 : }
136 :
137 139 : elem = va_arg(args, int);
138 139 : if (elem >= talloc_array_length(d->dd_talloc_array)) {
139 0 : result = -1;
140 0 : goto done;
141 : }
142 :
143 139 : p = talloc_check_name(d->dd_talloc_array[elem], type);
144 139 : if (p == NULL) {
145 0 : result = -1;
146 0 : goto done;
147 : }
148 :
149 139 : done:
150 139 : va_end(args);
151 139 : if (result != 0) {
152 0 : p = NULL;
153 : }
154 139 : return p;
155 : }
156 :
157 22 : void *dalloc_value_for_key(const DALLOC_CTX *d, ...)
158 : {
159 22 : int result = 0;
160 22 : void *p = NULL;
161 0 : va_list args;
162 22 : const char *type = NULL;
163 0 : int elem;
164 0 : size_t array_len;
165 :
166 22 : va_start(args, d);
167 22 : type = va_arg(args, const char *);
168 :
169 56 : while (strcmp(type, "DALLOC_CTX") == 0) {
170 34 : array_len = talloc_array_length(d->dd_talloc_array);
171 34 : elem = va_arg(args, int);
172 34 : if (elem >= array_len) {
173 0 : result = -1;
174 0 : goto done;
175 : }
176 34 : d = d->dd_talloc_array[elem];
177 34 : type = va_arg(args, const char *);
178 : }
179 :
180 22 : array_len = talloc_array_length(d->dd_talloc_array);
181 :
182 164 : for (elem = 0; elem + 1 < array_len; elem += 2) {
183 162 : if (strcmp(talloc_get_name(d->dd_talloc_array[elem]), "char *") != 0) {
184 0 : result = -1;
185 0 : goto done;
186 : }
187 162 : if (strcmp((char *)d->dd_talloc_array[elem],type) == 0) {
188 20 : p = d->dd_talloc_array[elem + 1];
189 20 : break;
190 : }
191 : }
192 22 : if (p == NULL) {
193 2 : goto done;
194 : }
195 :
196 20 : type = va_arg(args, const char *);
197 20 : if (strcmp(talloc_get_name(p), type) != 0) {
198 2 : p = NULL;
199 : }
200 :
201 18 : done:
202 22 : va_end(args);
203 22 : if (result != 0) {
204 0 : p = NULL;
205 : }
206 22 : return p;
207 : }
208 :
209 448 : static char *dalloc_strdup(TALLOC_CTX *mem_ctx, const char *string)
210 : {
211 0 : char *p;
212 :
213 448 : p = talloc_strdup(mem_ctx, string);
214 448 : if (p == NULL) {
215 0 : return NULL;
216 : }
217 448 : talloc_set_name_const(p, "char *");
218 448 : return p;
219 : }
220 :
221 448 : int dalloc_stradd(DALLOC_CTX *d, const char *string)
222 : {
223 0 : int result;
224 0 : char *p;
225 :
226 448 : p = dalloc_strdup(d, string);
227 448 : if (p == NULL) {
228 0 : return -1;
229 : }
230 :
231 448 : result = dalloc_add(d, p, char *);
232 448 : if (result != 0) {
233 0 : return -1;
234 : }
235 :
236 448 : return 0;
237 : }
238 :
239 44 : static char *tab_level(TALLOC_CTX *mem_ctx, int level)
240 : {
241 8 : int i;
242 44 : char *string = talloc_array(mem_ctx, char, level + 1);
243 :
244 142 : for (i = 0; i < level; i++) {
245 90 : string[i] = '\t';
246 : }
247 :
248 44 : string[i] = '\0';
249 44 : return string;
250 : }
251 :
252 22 : char *dalloc_dump(DALLOC_CTX *dd, int nestinglevel)
253 : {
254 4 : const char *type;
255 4 : int n, result;
256 4 : uint64_t i;
257 4 : sl_bool_t bl;
258 4 : sl_time_t t;
259 4 : struct tm *tm;
260 4 : char datestring[256];
261 4 : sl_cnids_t cnids;
262 4 : char *logstring, *nested_logstring;
263 4 : char *tab_string1, *tab_string2;
264 4 : void *p;
265 4 : bool ok;
266 4 : char *utf8string;
267 4 : size_t utf8len;
268 :
269 22 : tab_string1 = tab_level(dd, nestinglevel);
270 22 : if (tab_string1 == NULL) {
271 0 : return NULL;
272 : }
273 22 : tab_string2 = tab_level(dd, nestinglevel + 1);
274 22 : if (tab_string2 == NULL) {
275 0 : return NULL;
276 : }
277 :
278 22 : logstring = talloc_asprintf(dd,
279 : "%s%s(#%zu): {\n",
280 : tab_string1,
281 : talloc_get_name(dd),
282 : dalloc_size(dd));
283 22 : if (logstring == NULL) {
284 0 : return NULL;
285 : }
286 :
287 62 : for (n = 0; n < dalloc_size(dd); n++) {
288 40 : type = dalloc_get_name(dd, n);
289 40 : if (type == NULL) {
290 0 : return NULL;
291 : }
292 40 : p = dalloc_get_object(dd, n);
293 40 : if (p == NULL) {
294 0 : return NULL;
295 : }
296 40 : if (strcmp(type, "DALLOC_CTX") == 0
297 40 : || strcmp(type, "sl_array_t") == 0
298 31 : || strcmp(type, "sl_filemeta_t") == 0
299 28 : || strcmp(type, "sl_dict_t") == 0) {
300 14 : nested_logstring = dalloc_dump(p, nestinglevel + 1);
301 14 : if (nested_logstring == NULL) {
302 0 : return NULL;
303 : }
304 14 : logstring = talloc_strdup_append(logstring,
305 : nested_logstring);
306 26 : } else if (strcmp(type, "uint64_t") == 0) {
307 9 : memcpy(&i, p, sizeof(uint64_t));
308 9 : logstring = talloc_asprintf_append(
309 : logstring,
310 : "%suint64_t: 0x%04jx\n",
311 : tab_string2, (uintmax_t)i);
312 17 : } else if (strcmp(type, "char *") == 0) {
313 10 : logstring = talloc_asprintf_append(
314 : logstring,
315 : "%sstring: %s\n",
316 : tab_string2,
317 : (char *)p);
318 7 : } else if (strcmp(type, "smb_ucs2_t *") == 0) {
319 0 : ok = convert_string_talloc(talloc_tos(),
320 : CH_UTF16LE,
321 : CH_UTF8,
322 : p,
323 : talloc_get_size(p),
324 : &utf8string,
325 : &utf8len);
326 0 : if (!ok) {
327 0 : return NULL;
328 : }
329 0 : logstring = talloc_asprintf_append(
330 : logstring,
331 : "%sUTF16-string: %s\n",
332 : tab_string2,
333 : utf8string);
334 0 : TALLOC_FREE(utf8string);
335 7 : } else if (strcmp(type, "sl_bool_t") == 0) {
336 0 : memcpy(&bl, p, sizeof(sl_bool_t));
337 0 : logstring = talloc_asprintf_append(
338 : logstring,
339 : "%sbool: %s\n",
340 : tab_string2,
341 0 : bl ? "true" : "false");
342 7 : } else if (strcmp(type, "sl_nil_t") == 0) {
343 4 : logstring = talloc_asprintf_append(
344 : logstring,
345 : "%snil\n",
346 : tab_string2);
347 3 : } else if (strcmp(type, "sl_time_t") == 0) {
348 0 : memcpy(&t, p, sizeof(sl_time_t));
349 0 : tm = localtime(&t.tv_sec);
350 0 : if (tm == NULL) {
351 0 : return NULL;
352 : }
353 0 : result = strftime(datestring,
354 : sizeof(datestring),
355 : "%Y-%m-%d %H:%M:%S", tm);
356 0 : if (result == 0) {
357 0 : return NULL;
358 : }
359 0 : logstring = talloc_asprintf_append(
360 : logstring,
361 : "%ssl_time_t: %s.%06lu\n",
362 : tab_string2,
363 : datestring,
364 0 : (unsigned long)t.tv_usec);
365 3 : } else if (strcmp(type, "sl_cnids_t") == 0) {
366 3 : memcpy(&cnids, p, sizeof(sl_cnids_t));
367 3 : logstring = talloc_asprintf_append(
368 : logstring,
369 : "%sCNIDs: unkn1: 0x%" PRIx16 ", unkn2: 0x%" PRIx32 "\n",
370 : tab_string2,
371 2 : cnids.ca_unkn1,
372 : cnids.ca_context);
373 3 : if (logstring == NULL) {
374 0 : return NULL;
375 : }
376 3 : if (cnids.ca_cnids) {
377 3 : nested_logstring = dalloc_dump(
378 : cnids.ca_cnids,
379 : nestinglevel + 2);
380 3 : if (!nested_logstring) {
381 0 : return NULL;
382 : }
383 3 : logstring = talloc_strdup_append(logstring,
384 : nested_logstring);
385 : }
386 : } else {
387 0 : logstring = talloc_asprintf_append(
388 : logstring,
389 : "%stype: %s\n",
390 : tab_string2,
391 : type);
392 : }
393 40 : if (logstring == NULL) {
394 0 : return NULL;
395 : }
396 : }
397 22 : logstring = talloc_asprintf_append(logstring,
398 : "%s}\n",
399 : tab_string1);
400 22 : if (logstring == NULL) {
401 0 : return NULL;
402 : }
403 18 : return logstring;
404 : }
|