s3: Add SMB2 performance counters.
[Samba/gebeck_regimport.git] / lib / talloc / testsuite.c
blob5e9b3ec8f23d3c5b6f448b2dd8ed2e7590f8171b
1 /*
2 Unix SMB/CIFS implementation.
4 local testing of talloc routines.
6 Copyright (C) Andrew Tridgell 2004
8 ** NOTE! The following LGPL license applies to the talloc
9 ** library. This does NOT imply that all of Samba is released
10 ** under the LGPL
12 This library is free software; you can redistribute it and/or
13 modify it under the terms of the GNU Lesser General Public
14 License as published by the Free Software Foundation; either
15 version 3 of the License, or (at your option) any later version.
17 This library is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 Lesser General Public License for more details.
22 You should have received a copy of the GNU Lesser General Public
23 License along with this library; if not, see <http://www.gnu.org/licenses/>.
26 #include "replace.h"
27 #include "system/time.h"
28 #include <talloc.h>
30 static struct timeval timeval_current(void)
32 struct timeval tv;
33 gettimeofday(&tv, NULL);
34 return tv;
37 static double timeval_elapsed(struct timeval *tv)
39 struct timeval tv2 = timeval_current();
40 return (tv2.tv_sec - tv->tv_sec) +
41 (tv2.tv_usec - tv->tv_usec)*1.0e-6;
44 #define torture_assert(test, expr, str) if (!(expr)) { \
45 printf("failure: %s [\n%s: Expression %s failed: %s\n]\n", \
46 test, __location__, #expr, str); \
47 return false; \
50 #define torture_assert_str_equal(test, arg1, arg2, desc) \
51 if (arg1 == NULL && arg2 == NULL) { \
52 } else if (strcmp(arg1, arg2)) { \
53 printf("failure: %s [\n%s: Expected %s, got %s: %s\n]\n", \
54 test, __location__, arg1, arg2, desc); \
55 return false; \
58 #if _SAMBA_BUILD_==3
59 #ifdef malloc
60 #undef malloc
61 #endif
62 #ifdef strdup
63 #undef strdup
64 #endif
65 #endif
67 #define CHECK_SIZE(test, ptr, tsize) do { \
68 if (talloc_total_size(ptr) != (tsize)) { \
69 printf("failed: %s [\n%s: wrong '%s' tree size: got %u expected %u\n]\n", \
70 test, __location__, #ptr, \
71 (unsigned)talloc_total_size(ptr), \
72 (unsigned)tsize); \
73 talloc_report_full(ptr, stdout); \
74 return false; \
75 } \
76 } while (0)
78 #define CHECK_BLOCKS(test, ptr, tblocks) do { \
79 if (talloc_total_blocks(ptr) != (tblocks)) { \
80 printf("failed: %s [\n%s: wrong '%s' tree blocks: got %u expected %u\n]\n", \
81 test, __location__, #ptr, \
82 (unsigned)talloc_total_blocks(ptr), \
83 (unsigned)tblocks); \
84 talloc_report_full(ptr, stdout); \
85 return false; \
86 } \
87 } while (0)
89 #define CHECK_PARENT(test, ptr, parent) do { \
90 if (talloc_parent(ptr) != (parent)) { \
91 printf("failed: %s [\n%s: '%s' has wrong parent: got %p expected %p\n]\n", \
92 test, __location__, #ptr, \
93 talloc_parent(ptr), \
94 (parent)); \
95 talloc_report_full(ptr, stdout); \
96 talloc_report_full(parent, stdout); \
97 talloc_report_full(NULL, stdout); \
98 return false; \
99 } \
100 } while (0)
102 static unsigned int test_abort_count;
104 static void test_abort_fn(const char *reason)
106 printf("# test_abort_fn(%s)\n", reason);
107 test_abort_count++;
110 static void test_abort_start(void)
112 test_abort_count = 0;
113 talloc_set_abort_fn(test_abort_fn);
116 static void test_abort_stop(void)
118 test_abort_count = 0;
119 talloc_set_abort_fn(NULL);
122 static void test_log_stdout(const char *message)
124 fprintf(stdout, "%s", message);
128 test references
130 static bool test_ref1(void)
132 void *root, *p1, *p2, *ref, *r1;
134 printf("test: ref1\n# SINGLE REFERENCE FREE\n");
136 root = talloc_named_const(NULL, 0, "root");
137 p1 = talloc_named_const(root, 1, "p1");
138 p2 = talloc_named_const(p1, 1, "p2");
139 talloc_named_const(p1, 1, "x1");
140 talloc_named_const(p1, 2, "x2");
141 talloc_named_const(p1, 3, "x3");
143 r1 = talloc_named_const(root, 1, "r1");
144 ref = talloc_reference(r1, p2);
145 talloc_report_full(root, stderr);
147 CHECK_BLOCKS("ref1", p1, 5);
148 CHECK_BLOCKS("ref1", p2, 1);
149 CHECK_BLOCKS("ref1", r1, 2);
151 fprintf(stderr, "Freeing p2\n");
152 talloc_unlink(r1, p2);
153 talloc_report_full(root, stderr);
155 CHECK_BLOCKS("ref1", p1, 5);
156 CHECK_BLOCKS("ref1", p2, 1);
157 CHECK_BLOCKS("ref1", r1, 1);
159 fprintf(stderr, "Freeing p1\n");
160 talloc_free(p1);
161 talloc_report_full(root, stderr);
163 CHECK_BLOCKS("ref1", r1, 1);
165 fprintf(stderr, "Freeing r1\n");
166 talloc_free(r1);
167 talloc_report_full(NULL, stderr);
169 fprintf(stderr, "Testing NULL\n");
170 if (talloc_reference(root, NULL)) {
171 return false;
174 CHECK_BLOCKS("ref1", root, 1);
176 CHECK_SIZE("ref1", root, 0);
178 talloc_free(root);
179 printf("success: ref1\n");
180 return true;
184 test references
186 static bool test_ref2(void)
188 void *root, *p1, *p2, *ref, *r1;
190 printf("test: ref2\n# DOUBLE REFERENCE FREE\n");
191 root = talloc_named_const(NULL, 0, "root");
192 p1 = talloc_named_const(root, 1, "p1");
193 talloc_named_const(p1, 1, "x1");
194 talloc_named_const(p1, 1, "x2");
195 talloc_named_const(p1, 1, "x3");
196 p2 = talloc_named_const(p1, 1, "p2");
198 r1 = talloc_named_const(root, 1, "r1");
199 ref = talloc_reference(r1, p2);
200 talloc_report_full(root, stderr);
202 CHECK_BLOCKS("ref2", p1, 5);
203 CHECK_BLOCKS("ref2", p2, 1);
204 CHECK_BLOCKS("ref2", r1, 2);
206 fprintf(stderr, "Freeing ref\n");
207 talloc_unlink(r1, ref);
208 talloc_report_full(root, stderr);
210 CHECK_BLOCKS("ref2", p1, 5);
211 CHECK_BLOCKS("ref2", p2, 1);
212 CHECK_BLOCKS("ref2", r1, 1);
214 fprintf(stderr, "Freeing p2\n");
215 talloc_free(p2);
216 talloc_report_full(root, stderr);
218 CHECK_BLOCKS("ref2", p1, 4);
219 CHECK_BLOCKS("ref2", r1, 1);
221 fprintf(stderr, "Freeing p1\n");
222 talloc_free(p1);
223 talloc_report_full(root, stderr);
225 CHECK_BLOCKS("ref2", r1, 1);
227 fprintf(stderr, "Freeing r1\n");
228 talloc_free(r1);
229 talloc_report_full(root, stderr);
231 CHECK_SIZE("ref2", root, 0);
233 talloc_free(root);
234 printf("success: ref2\n");
235 return true;
239 test references
241 static bool test_ref3(void)
243 void *root, *p1, *p2, *ref, *r1;
245 printf("test: ref3\n# PARENT REFERENCE FREE\n");
247 root = talloc_named_const(NULL, 0, "root");
248 p1 = talloc_named_const(root, 1, "p1");
249 p2 = talloc_named_const(root, 1, "p2");
250 r1 = talloc_named_const(p1, 1, "r1");
251 ref = talloc_reference(p2, r1);
252 talloc_report_full(root, stderr);
254 CHECK_BLOCKS("ref3", p1, 2);
255 CHECK_BLOCKS("ref3", p2, 2);
256 CHECK_BLOCKS("ref3", r1, 1);
258 fprintf(stderr, "Freeing p1\n");
259 talloc_free(p1);
260 talloc_report_full(root, stderr);
262 CHECK_BLOCKS("ref3", p2, 2);
263 CHECK_BLOCKS("ref3", r1, 1);
265 fprintf(stderr, "Freeing p2\n");
266 talloc_free(p2);
267 talloc_report_full(root, stderr);
269 CHECK_SIZE("ref3", root, 0);
271 talloc_free(root);
273 printf("success: ref3\n");
274 return true;
278 test references
280 static bool test_ref4(void)
282 void *root, *p1, *p2, *ref, *r1;
284 printf("test: ref4\n# REFERRER REFERENCE FREE\n");
286 root = talloc_named_const(NULL, 0, "root");
287 p1 = talloc_named_const(root, 1, "p1");
288 talloc_named_const(p1, 1, "x1");
289 talloc_named_const(p1, 1, "x2");
290 talloc_named_const(p1, 1, "x3");
291 p2 = talloc_named_const(p1, 1, "p2");
293 r1 = talloc_named_const(root, 1, "r1");
294 ref = talloc_reference(r1, p2);
295 talloc_report_full(root, stderr);
297 CHECK_BLOCKS("ref4", p1, 5);
298 CHECK_BLOCKS("ref4", p2, 1);
299 CHECK_BLOCKS("ref4", r1, 2);
301 fprintf(stderr, "Freeing r1\n");
302 talloc_free(r1);
303 talloc_report_full(root, stderr);
305 CHECK_BLOCKS("ref4", p1, 5);
306 CHECK_BLOCKS("ref4", p2, 1);
308 fprintf(stderr, "Freeing p2\n");
309 talloc_free(p2);
310 talloc_report_full(root, stderr);
312 CHECK_BLOCKS("ref4", p1, 4);
314 fprintf(stderr, "Freeing p1\n");
315 talloc_free(p1);
316 talloc_report_full(root, stderr);
318 CHECK_SIZE("ref4", root, 0);
320 talloc_free(root);
322 printf("success: ref4\n");
323 return true;
328 test references
330 static bool test_unlink1(void)
332 void *root, *p1, *p2, *ref, *r1;
334 printf("test: unlink\n# UNLINK\n");
336 root = talloc_named_const(NULL, 0, "root");
337 p1 = talloc_named_const(root, 1, "p1");
338 talloc_named_const(p1, 1, "x1");
339 talloc_named_const(p1, 1, "x2");
340 talloc_named_const(p1, 1, "x3");
341 p2 = talloc_named_const(p1, 1, "p2");
343 r1 = talloc_named_const(p1, 1, "r1");
344 ref = talloc_reference(r1, p2);
345 talloc_report_full(root, stderr);
347 CHECK_BLOCKS("unlink", p1, 7);
348 CHECK_BLOCKS("unlink", p2, 1);
349 CHECK_BLOCKS("unlink", r1, 2);
351 fprintf(stderr, "Unreferencing r1\n");
352 talloc_unlink(r1, p2);
353 talloc_report_full(root, stderr);
355 CHECK_BLOCKS("unlink", p1, 6);
356 CHECK_BLOCKS("unlink", p2, 1);
357 CHECK_BLOCKS("unlink", r1, 1);
359 fprintf(stderr, "Freeing p1\n");
360 talloc_free(p1);
361 talloc_report_full(root, stderr);
363 CHECK_SIZE("unlink", root, 0);
365 talloc_free(root);
367 printf("success: unlink\n");
368 return true;
371 static int fail_destructor(void *ptr)
373 return -1;
377 miscellaneous tests to try to get a higher test coverage percentage
379 static bool test_misc(void)
381 void *root, *p1;
382 char *p2;
383 double *d;
384 const char *name;
386 printf("test: misc\n# MISCELLANEOUS\n");
388 root = talloc_new(NULL);
390 p1 = talloc_size(root, 0x7fffffff);
391 torture_assert("misc", !p1, "failed: large talloc allowed\n");
393 p1 = talloc_strdup(root, "foo");
394 talloc_increase_ref_count(p1);
395 talloc_increase_ref_count(p1);
396 talloc_increase_ref_count(p1);
397 CHECK_BLOCKS("misc", p1, 1);
398 CHECK_BLOCKS("misc", root, 2);
399 talloc_unlink(NULL, p1);
400 CHECK_BLOCKS("misc", p1, 1);
401 CHECK_BLOCKS("misc", root, 2);
402 talloc_unlink(NULL, p1);
403 CHECK_BLOCKS("misc", p1, 1);
404 CHECK_BLOCKS("misc", root, 2);
405 p2 = talloc_strdup(p1, "foo");
406 torture_assert("misc", talloc_unlink(root, p2) == -1,
407 "failed: talloc_unlink() of non-reference context should return -1\n");
408 torture_assert("misc", talloc_unlink(p1, p2) == 0,
409 "failed: talloc_unlink() of parent should succeed\n");
410 talloc_unlink(NULL, p1);
411 CHECK_BLOCKS("misc", p1, 1);
412 CHECK_BLOCKS("misc", root, 2);
414 name = talloc_set_name(p1, "my name is %s", "foo");
415 torture_assert_str_equal("misc", talloc_get_name(p1), "my name is foo",
416 "failed: wrong name after talloc_set_name(my name is foo)");
417 CHECK_BLOCKS("misc", p1, 2);
418 CHECK_BLOCKS("misc", root, 3);
420 talloc_set_name_const(p1, NULL);
421 torture_assert_str_equal ("misc", talloc_get_name(p1), "UNNAMED",
422 "failed: wrong name after talloc_set_name(NULL)");
423 CHECK_BLOCKS("misc", p1, 2);
424 CHECK_BLOCKS("misc", root, 3);
426 torture_assert("misc", talloc_free(NULL) == -1,
427 "talloc_free(NULL) should give -1\n");
429 talloc_set_destructor(p1, fail_destructor);
430 torture_assert("misc", talloc_free(p1) == -1,
431 "Failed destructor should cause talloc_free to fail\n");
432 talloc_set_destructor(p1, NULL);
434 talloc_report(root, stderr);
437 p2 = (char *)talloc_zero_size(p1, 20);
438 torture_assert("misc", p2[19] == 0, "Failed to give zero memory\n");
439 talloc_free(p2);
441 torture_assert("misc", talloc_strdup(root, NULL) == NULL,
442 "failed: strdup on NULL should give NULL\n");
444 p2 = talloc_strndup(p1, "foo", 2);
445 torture_assert("misc", strcmp("fo", p2) == 0,
446 "strndup doesn't work\n");
447 p2 = talloc_asprintf_append_buffer(p2, "o%c", 'd');
448 torture_assert("misc", strcmp("food", p2) == 0,
449 "talloc_asprintf_append_buffer doesn't work\n");
450 CHECK_BLOCKS("misc", p2, 1);
451 CHECK_BLOCKS("misc", p1, 3);
453 p2 = talloc_asprintf_append_buffer(NULL, "hello %s", "world");
454 torture_assert("misc", strcmp("hello world", p2) == 0,
455 "talloc_asprintf_append_buffer doesn't work\n");
456 CHECK_BLOCKS("misc", p2, 1);
457 CHECK_BLOCKS("misc", p1, 3);
458 talloc_free(p2);
460 d = talloc_array(p1, double, 0x20000000);
461 torture_assert("misc", !d, "failed: integer overflow not detected\n");
463 d = talloc_realloc(p1, d, double, 0x20000000);
464 torture_assert("misc", !d, "failed: integer overflow not detected\n");
466 talloc_free(p1);
467 CHECK_BLOCKS("misc", root, 1);
469 p1 = talloc_named(root, 100, "%d bytes", 100);
470 CHECK_BLOCKS("misc", p1, 2);
471 CHECK_BLOCKS("misc", root, 3);
472 talloc_unlink(root, p1);
474 p1 = talloc_init("%d bytes", 200);
475 p2 = talloc_asprintf(p1, "my test '%s'", "string");
476 torture_assert_str_equal("misc", p2, "my test 'string'",
477 "failed: talloc_asprintf(\"my test '%%s'\", \"string\") gave: \"%s\"");
478 CHECK_BLOCKS("misc", p1, 3);
479 CHECK_SIZE("misc", p2, 17);
480 CHECK_BLOCKS("misc", root, 1);
481 talloc_unlink(NULL, p1);
483 p1 = talloc_named_const(root, 10, "p1");
484 p2 = (char *)talloc_named_const(root, 20, "p2");
485 (void)talloc_reference(p1, p2);
486 talloc_report_full(root, stderr);
487 talloc_unlink(root, p2);
488 talloc_report_full(root, stderr);
489 CHECK_BLOCKS("misc", p2, 1);
490 CHECK_BLOCKS("misc", p1, 2);
491 CHECK_BLOCKS("misc", root, 3);
492 talloc_unlink(p1, p2);
493 talloc_unlink(root, p1);
495 p1 = talloc_named_const(root, 10, "p1");
496 p2 = (char *)talloc_named_const(root, 20, "p2");
497 (void)talloc_reference(NULL, p2);
498 talloc_report_full(root, stderr);
499 talloc_unlink(root, p2);
500 talloc_report_full(root, stderr);
501 CHECK_BLOCKS("misc", p2, 1);
502 CHECK_BLOCKS("misc", p1, 1);
503 CHECK_BLOCKS("misc", root, 2);
504 talloc_unlink(NULL, p2);
505 talloc_unlink(root, p1);
507 /* Test that talloc_unlink is a no-op */
509 torture_assert("misc", talloc_unlink(root, NULL) == -1,
510 "failed: talloc_unlink(root, NULL) == -1\n");
512 talloc_report(root, stderr);
513 talloc_report(NULL, stderr);
515 CHECK_SIZE("misc", root, 0);
517 talloc_free(root);
519 CHECK_SIZE("misc", NULL, 0);
521 talloc_enable_null_tracking_no_autofree();
522 talloc_enable_leak_report();
523 talloc_enable_leak_report_full();
525 printf("success: misc\n");
527 return true;
532 test realloc
534 static bool test_realloc(void)
536 void *root, *p1, *p2;
538 printf("test: realloc\n# REALLOC\n");
540 root = talloc_new(NULL);
542 p1 = talloc_size(root, 10);
543 CHECK_SIZE("realloc", p1, 10);
545 p1 = talloc_realloc_size(NULL, p1, 20);
546 CHECK_SIZE("realloc", p1, 20);
548 talloc_new(p1);
550 p2 = talloc_realloc_size(p1, NULL, 30);
552 talloc_new(p1);
554 p2 = talloc_realloc_size(p1, p2, 40);
556 CHECK_SIZE("realloc", p2, 40);
557 CHECK_SIZE("realloc", root, 60);
558 CHECK_BLOCKS("realloc", p1, 4);
560 p1 = talloc_realloc_size(NULL, p1, 20);
561 CHECK_SIZE("realloc", p1, 60);
563 talloc_increase_ref_count(p2);
564 torture_assert("realloc", talloc_realloc_size(NULL, p2, 5) == NULL,
565 "failed: talloc_realloc() on a referenced pointer should fail\n");
566 CHECK_BLOCKS("realloc", p1, 4);
568 talloc_realloc_size(NULL, p2, 0);
569 talloc_realloc_size(NULL, p2, 0);
570 CHECK_BLOCKS("realloc", p1, 4);
571 talloc_realloc_size(p1, p2, 0);
572 CHECK_BLOCKS("realloc", p1, 3);
574 torture_assert("realloc", talloc_realloc_size(NULL, p1, 0x7fffffff) == NULL,
575 "failed: oversize talloc should fail\n");
577 talloc_realloc_size(NULL, p1, 0);
578 CHECK_BLOCKS("realloc", root, 4);
579 talloc_realloc_size(root, p1, 0);
580 CHECK_BLOCKS("realloc", root, 1);
582 CHECK_SIZE("realloc", root, 0);
584 talloc_free(root);
586 printf("success: realloc\n");
588 return true;
592 test realloc with a child
594 static bool test_realloc_child(void)
596 void *root;
597 struct el2 {
598 const char *name;
599 } *el2;
600 struct el1 {
601 int count;
602 struct el2 **list, **list2, **list3;
603 } *el1;
605 printf("test: REALLOC WITH CHILD\n");
607 root = talloc_new(NULL);
609 el1 = talloc(root, struct el1);
610 el1->list = talloc(el1, struct el2 *);
611 el1->list[0] = talloc(el1->list, struct el2);
612 el1->list[0]->name = talloc_strdup(el1->list[0], "testing");
614 el1->list2 = talloc(el1, struct el2 *);
615 el1->list2[0] = talloc(el1->list2, struct el2);
616 el1->list2[0]->name = talloc_strdup(el1->list2[0], "testing2");
618 el1->list3 = talloc(el1, struct el2 *);
619 el1->list3[0] = talloc(el1->list3, struct el2);
620 el1->list3[0]->name = talloc_strdup(el1->list3[0], "testing2");
622 el2 = talloc(el1->list, struct el2);
623 el2 = talloc(el1->list2, struct el2);
624 el2 = talloc(el1->list3, struct el2);
626 el1->list = talloc_realloc(el1, el1->list, struct el2 *, 100);
627 el1->list2 = talloc_realloc(el1, el1->list2, struct el2 *, 200);
628 el1->list3 = talloc_realloc(el1, el1->list3, struct el2 *, 300);
630 talloc_free(root);
632 printf("success: REALLOC WITH CHILD\n");
633 return true;
637 test type checking
639 static bool test_type(void)
641 void *root;
642 struct el1 {
643 int count;
645 struct el2 {
646 int count;
648 struct el1 *el1;
650 printf("test: type\n# talloc type checking\n");
652 root = talloc_new(NULL);
654 el1 = talloc(root, struct el1);
656 el1->count = 1;
658 torture_assert("type", talloc_get_type(el1, struct el1) == el1,
659 "type check failed on el1\n");
660 torture_assert("type", talloc_get_type(el1, struct el2) == NULL,
661 "type check failed on el1 with el2\n");
662 talloc_set_type(el1, struct el2);
663 torture_assert("type", talloc_get_type(el1, struct el2) == (struct el2 *)el1,
664 "type set failed on el1 with el2\n");
666 talloc_free(root);
668 printf("success: type\n");
669 return true;
673 test steal
675 static bool test_steal(void)
677 void *root, *p1, *p2;
679 printf("test: steal\n# STEAL\n");
681 root = talloc_new(NULL);
683 p1 = talloc_array(root, char, 10);
684 CHECK_SIZE("steal", p1, 10);
686 p2 = talloc_realloc(root, NULL, char, 20);
687 CHECK_SIZE("steal", p1, 10);
688 CHECK_SIZE("steal", root, 30);
690 torture_assert("steal", talloc_steal(p1, NULL) == NULL,
691 "failed: stealing NULL should give NULL\n");
693 torture_assert("steal", talloc_steal(p1, p1) == p1,
694 "failed: stealing to ourselves is a nop\n");
695 CHECK_BLOCKS("steal", root, 3);
696 CHECK_SIZE("steal", root, 30);
698 talloc_steal(NULL, p1);
699 talloc_steal(NULL, p2);
700 CHECK_BLOCKS("steal", root, 1);
701 CHECK_SIZE("steal", root, 0);
703 talloc_free(p1);
704 talloc_steal(root, p2);
705 CHECK_BLOCKS("steal", root, 2);
706 CHECK_SIZE("steal", root, 20);
708 talloc_free(p2);
710 CHECK_BLOCKS("steal", root, 1);
711 CHECK_SIZE("steal", root, 0);
713 talloc_free(root);
715 p1 = talloc_size(NULL, 3);
716 talloc_report_full(NULL, stderr);
717 CHECK_SIZE("steal", NULL, 3);
718 talloc_free(p1);
720 printf("success: steal\n");
721 return true;
725 test move
727 static bool test_move(void)
729 void *root;
730 struct t_move {
731 char *p;
732 int *x;
733 } *t1, *t2;
735 printf("test: move\n# MOVE\n");
737 root = talloc_new(NULL);
739 t1 = talloc(root, struct t_move);
740 t2 = talloc(root, struct t_move);
741 t1->p = talloc_strdup(t1, "foo");
742 t1->x = talloc(t1, int);
743 *t1->x = 42;
745 t2->p = talloc_move(t2, &t1->p);
746 t2->x = talloc_move(t2, &t1->x);
747 torture_assert("move", t1->p == NULL && t1->x == NULL &&
748 strcmp(t2->p, "foo") == 0 && *t2->x == 42,
749 "talloc move failed");
751 talloc_free(root);
753 printf("success: move\n");
755 return true;
759 test talloc_realloc_fn
761 static bool test_realloc_fn(void)
763 void *root, *p1;
765 printf("test: realloc_fn\n# talloc_realloc_fn\n");
767 root = talloc_new(NULL);
769 p1 = talloc_realloc_fn(root, NULL, 10);
770 CHECK_BLOCKS("realloc_fn", root, 2);
771 CHECK_SIZE("realloc_fn", root, 10);
772 p1 = talloc_realloc_fn(root, p1, 20);
773 CHECK_BLOCKS("realloc_fn", root, 2);
774 CHECK_SIZE("realloc_fn", root, 20);
775 p1 = talloc_realloc_fn(root, p1, 0);
776 CHECK_BLOCKS("realloc_fn", root, 1);
777 CHECK_SIZE("realloc_fn", root, 0);
779 talloc_free(root);
781 printf("success: realloc_fn\n");
782 return true;
786 static bool test_unref_reparent(void)
788 void *root, *p1, *p2, *c1;
790 printf("test: unref_reparent\n# UNREFERENCE AFTER PARENT FREED\n");
792 root = talloc_named_const(NULL, 0, "root");
793 p1 = talloc_named_const(root, 1, "orig parent");
794 p2 = talloc_named_const(root, 1, "parent by reference");
796 c1 = talloc_named_const(p1, 1, "child");
797 talloc_reference(p2, c1);
799 CHECK_PARENT("unref_reparent", c1, p1);
801 talloc_free(p1);
803 CHECK_PARENT("unref_reparent", c1, p2);
805 talloc_unlink(p2, c1);
807 CHECK_SIZE("unref_reparent", root, 1);
809 talloc_free(p2);
810 talloc_free(root);
812 printf("success: unref_reparent\n");
813 return true;
817 measure the speed of talloc versus malloc
819 static bool test_speed(void)
821 void *ctx = talloc_new(NULL);
822 unsigned count;
823 const int loop = 1000;
824 int i;
825 struct timeval tv;
827 printf("test: speed\n# TALLOC VS MALLOC SPEED\n");
829 tv = timeval_current();
830 count = 0;
831 do {
832 void *p1, *p2, *p3;
833 for (i=0;i<loop;i++) {
834 p1 = talloc_size(ctx, loop % 100);
835 p2 = talloc_strdup(p1, "foo bar");
836 p3 = talloc_size(p1, 300);
837 talloc_free(p1);
839 count += 3 * loop;
840 } while (timeval_elapsed(&tv) < 5.0);
842 fprintf(stderr, "talloc: %.0f ops/sec\n", count/timeval_elapsed(&tv));
844 talloc_free(ctx);
846 ctx = talloc_pool(NULL, 1024);
848 tv = timeval_current();
849 count = 0;
850 do {
851 void *p1, *p2, *p3;
852 for (i=0;i<loop;i++) {
853 p1 = talloc_size(ctx, loop % 100);
854 p2 = talloc_strdup(p1, "foo bar");
855 p3 = talloc_size(p1, 300);
856 talloc_free_children(ctx);
858 count += 3 * loop;
859 } while (timeval_elapsed(&tv) < 5.0);
861 talloc_free(ctx);
863 fprintf(stderr, "talloc_pool: %.0f ops/sec\n", count/timeval_elapsed(&tv));
865 tv = timeval_current();
866 count = 0;
867 do {
868 void *p1, *p2, *p3;
869 for (i=0;i<loop;i++) {
870 p1 = malloc(loop % 100);
871 p2 = strdup("foo bar");
872 p3 = malloc(300);
873 free(p1);
874 free(p2);
875 free(p3);
877 count += 3 * loop;
878 } while (timeval_elapsed(&tv) < 5.0);
879 fprintf(stderr, "malloc: %.0f ops/sec\n", count/timeval_elapsed(&tv));
881 printf("success: speed\n");
883 return true;
886 static bool test_lifeless(void)
888 void *top = talloc_new(NULL);
889 char *parent, *child;
890 void *child_owner = talloc_new(NULL);
892 printf("test: lifeless\n# TALLOC_UNLINK LOOP\n");
894 parent = talloc_strdup(top, "parent");
895 child = talloc_strdup(parent, "child");
896 (void)talloc_reference(child, parent);
897 (void)talloc_reference(child_owner, child);
898 talloc_report_full(top, stderr);
899 talloc_unlink(top, parent);
900 talloc_unlink(top, child);
901 talloc_report_full(top, stderr);
902 talloc_free(top);
903 talloc_free(child_owner);
904 talloc_free(child);
906 printf("success: lifeless\n");
907 return true;
910 static int loop_destructor_count;
912 static int test_loop_destructor(char *ptr)
914 loop_destructor_count++;
915 return 0;
918 static bool test_loop(void)
920 void *top = talloc_new(NULL);
921 char *parent;
922 struct req1 {
923 char *req2, *req3;
924 } *req1;
926 printf("test: loop\n# TALLOC LOOP DESTRUCTION\n");
928 parent = talloc_strdup(top, "parent");
929 req1 = talloc(parent, struct req1);
930 req1->req2 = talloc_strdup(req1, "req2");
931 talloc_set_destructor(req1->req2, test_loop_destructor);
932 req1->req3 = talloc_strdup(req1, "req3");
933 (void)talloc_reference(req1->req3, req1);
934 talloc_report_full(top, stderr);
935 talloc_free(parent);
936 talloc_report_full(top, stderr);
937 talloc_report_full(NULL, stderr);
938 talloc_free(top);
940 torture_assert("loop", loop_destructor_count == 1,
941 "FAILED TO FIRE LOOP DESTRUCTOR\n");
942 loop_destructor_count = 0;
944 printf("success: loop\n");
945 return true;
948 static int fail_destructor_str(char *ptr)
950 return -1;
953 static bool test_free_parent_deny_child(void)
955 void *top = talloc_new(NULL);
956 char *level1;
957 char *level2;
958 char *level3;
960 printf("test: free_parent_deny_child\n# TALLOC FREE PARENT DENY CHILD\n");
962 level1 = talloc_strdup(top, "level1");
963 level2 = talloc_strdup(level1, "level2");
964 level3 = talloc_strdup(level2, "level3");
966 talloc_set_destructor(level3, fail_destructor_str);
967 talloc_free(level1);
968 talloc_set_destructor(level3, NULL);
970 CHECK_PARENT("free_parent_deny_child", level3, top);
972 talloc_free(top);
974 printf("success: free_parent_deny_child\n");
975 return true;
978 static bool test_talloc_ptrtype(void)
980 void *top = talloc_new(NULL);
981 struct struct1 {
982 int foo;
983 int bar;
984 } *s1, *s2, **s3, ***s4;
985 const char *location1;
986 const char *location2;
987 const char *location3;
988 const char *location4;
990 printf("test: ptrtype\n# TALLOC PTRTYPE\n");
992 s1 = talloc_ptrtype(top, s1);location1 = __location__;
994 if (talloc_get_size(s1) != sizeof(struct struct1)) {
995 printf("failure: ptrtype [\n"
996 "talloc_ptrtype() allocated the wrong size %lu (should be %lu)\n"
997 "]\n", (unsigned long)talloc_get_size(s1),
998 (unsigned long)sizeof(struct struct1));
999 return false;
1002 if (strcmp(location1, talloc_get_name(s1)) != 0) {
1003 printf("failure: ptrtype [\n"
1004 "talloc_ptrtype() sets the wrong name '%s' (should be '%s')\n]\n",
1005 talloc_get_name(s1), location1);
1006 return false;
1009 s2 = talloc_array_ptrtype(top, s2, 10);location2 = __location__;
1011 if (talloc_get_size(s2) != (sizeof(struct struct1) * 10)) {
1012 printf("failure: ptrtype [\n"
1013 "talloc_array_ptrtype() allocated the wrong size "
1014 "%lu (should be %lu)\n]\n",
1015 (unsigned long)talloc_get_size(s2),
1016 (unsigned long)(sizeof(struct struct1)*10));
1017 return false;
1020 if (strcmp(location2, talloc_get_name(s2)) != 0) {
1021 printf("failure: ptrtype [\n"
1022 "talloc_array_ptrtype() sets the wrong name '%s' (should be '%s')\n]\n",
1023 talloc_get_name(s2), location2);
1024 return false;
1027 s3 = talloc_array_ptrtype(top, s3, 10);location3 = __location__;
1029 if (talloc_get_size(s3) != (sizeof(struct struct1 *) * 10)) {
1030 printf("failure: ptrtype [\n"
1031 "talloc_array_ptrtype() allocated the wrong size "
1032 "%lu (should be %lu)\n]\n",
1033 (unsigned long)talloc_get_size(s3),
1034 (unsigned long)(sizeof(struct struct1 *)*10));
1035 return false;
1038 torture_assert_str_equal("ptrtype", location3, talloc_get_name(s3),
1039 "talloc_array_ptrtype() sets the wrong name");
1041 s4 = talloc_array_ptrtype(top, s4, 10);location4 = __location__;
1043 if (talloc_get_size(s4) != (sizeof(struct struct1 **) * 10)) {
1044 printf("failure: ptrtype [\n"
1045 "talloc_array_ptrtype() allocated the wrong size "
1046 "%lu (should be %lu)\n]\n",
1047 (unsigned long)talloc_get_size(s4),
1048 (unsigned long)(sizeof(struct struct1 **)*10));
1049 return false;
1052 torture_assert_str_equal("ptrtype", location4, talloc_get_name(s4),
1053 "talloc_array_ptrtype() sets the wrong name");
1055 talloc_free(top);
1057 printf("success: ptrtype\n");
1058 return true;
1061 static int _test_talloc_free_in_destructor(void **ptr)
1063 talloc_free(*ptr);
1064 return 0;
1067 static bool test_talloc_free_in_destructor(void)
1069 void *level0;
1070 void *level1;
1071 void *level2;
1072 void *level3;
1073 void *level4;
1074 void **level5;
1076 printf("test: free_in_destructor\n# TALLOC FREE IN DESTRUCTOR\n");
1078 level0 = talloc_new(NULL);
1079 level1 = talloc_new(level0);
1080 level2 = talloc_new(level1);
1081 level3 = talloc_new(level2);
1082 level4 = talloc_new(level3);
1083 level5 = talloc(level4, void *);
1085 *level5 = level3;
1086 (void)talloc_reference(level0, level3);
1087 (void)talloc_reference(level3, level3);
1088 (void)talloc_reference(level5, level3);
1090 talloc_set_destructor(level5, _test_talloc_free_in_destructor);
1092 talloc_free(level1);
1094 talloc_free(level0);
1096 printf("success: free_in_destructor\n");
1097 return true;
1100 static bool test_autofree(void)
1102 #if _SAMBA_BUILD_ < 4
1103 /* autofree test would kill smbtorture */
1104 void *p;
1105 printf("test: autofree\n# TALLOC AUTOFREE CONTEXT\n");
1107 p = talloc_autofree_context();
1108 talloc_free(p);
1110 p = talloc_autofree_context();
1111 talloc_free(p);
1113 printf("success: autofree\n");
1114 #endif
1115 return true;
1118 static bool test_pool(void)
1120 void *pool;
1121 void *p1, *p2, *p3, *p4;
1123 pool = talloc_pool(NULL, 1024);
1125 p1 = talloc_size(pool, 80);
1126 p2 = talloc_size(pool, 20);
1127 p3 = talloc_size(p1, 50);
1128 p4 = talloc_size(p3, 1000);
1130 talloc_free(pool);
1132 return true;
1136 static bool test_free_ref_null_context(void)
1138 void *p1, *p2, *p3;
1139 int ret;
1141 talloc_disable_null_tracking();
1142 p1 = talloc_new(NULL);
1143 p2 = talloc_new(NULL);
1145 p3 = talloc_reference(p2, p1);
1146 torture_assert("reference", p3 == p1, "failed: reference on null");
1148 ret = talloc_free(p1);
1149 torture_assert("ref free with null parent", ret == 0, "failed: free with null parent");
1150 talloc_free(p2);
1152 talloc_enable_null_tracking_no_autofree();
1153 p1 = talloc_new(NULL);
1154 p2 = talloc_new(NULL);
1156 p3 = talloc_reference(p2, p1);
1157 torture_assert("reference", p3 == p1, "failed: reference on null");
1159 ret = talloc_free(p1);
1160 torture_assert("ref free with null tracked parent", ret == 0, "failed: free with null parent");
1161 talloc_free(p2);
1163 return true;
1166 static void test_reset(void)
1168 talloc_set_log_fn(test_log_stdout);
1169 test_abort_stop();
1170 talloc_disable_null_tracking();
1171 talloc_enable_null_tracking_no_autofree();
1174 struct torture_context;
1175 bool torture_local_talloc(struct torture_context *tctx)
1177 bool ret = true;
1179 setlinebuf(stdout);
1181 test_reset();
1182 ret &= test_ref1();
1183 test_reset();
1184 ret &= test_ref2();
1185 test_reset();
1186 ret &= test_ref3();
1187 test_reset();
1188 ret &= test_ref4();
1189 test_reset();
1190 ret &= test_unlink1();
1191 test_reset();
1192 ret &= test_misc();
1193 test_reset();
1194 ret &= test_realloc();
1195 test_reset();
1196 ret &= test_realloc_child();
1197 test_reset();
1198 ret &= test_steal();
1199 test_reset();
1200 ret &= test_move();
1201 test_reset();
1202 ret &= test_unref_reparent();
1203 test_reset();
1204 ret &= test_realloc_fn();
1205 test_reset();
1206 ret &= test_type();
1207 test_reset();
1208 ret &= test_lifeless();
1209 test_reset();
1210 ret &= test_loop();
1211 test_reset();
1212 ret &= test_free_parent_deny_child();
1213 test_reset();
1214 ret &= test_talloc_ptrtype();
1215 test_reset();
1216 ret &= test_talloc_free_in_destructor();
1217 test_reset();
1218 ret &= test_pool();
1219 test_reset();
1220 ret &= test_free_ref_null_context();
1222 if (ret) {
1223 test_reset();
1224 ret &= test_speed();
1226 test_reset();
1227 ret &= test_autofree();
1229 test_reset();
1231 return ret;