1 | /*
|
---|
2 | Unix SMB/CIFS implementation.
|
---|
3 | SMB torture tester
|
---|
4 | Copyright (C) Jelmer Vernooij 2006
|
---|
5 |
|
---|
6 | This program is free software; you can redistribute it and/or modify
|
---|
7 | it under the terms of the GNU General Public License as published by
|
---|
8 | the Free Software Foundation; either version 3 of the License, or
|
---|
9 | (at your option) any later version.
|
---|
10 |
|
---|
11 | This program is distributed in the hope that it will be useful,
|
---|
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
14 | GNU General Public License for more details.
|
---|
15 |
|
---|
16 | You should have received a copy of the GNU General Public License
|
---|
17 | along with this program. If not, see <http://www.gnu.org/licenses/>.
|
---|
18 | */
|
---|
19 |
|
---|
20 | #include "includes.h"
|
---|
21 | #include "libcli/smb2/smb2.h"
|
---|
22 | #include "libcli/smb2/smb2_calls.h"
|
---|
23 |
|
---|
24 | #include "torture/smbtorture.h"
|
---|
25 | #include "torture/smb2/proto.h"
|
---|
26 | #include "../lib/util/dlinklist.h"
|
---|
27 |
|
---|
28 | static bool wrap_simple_1smb2_test(struct torture_context *torture_ctx,
|
---|
29 | struct torture_tcase *tcase,
|
---|
30 | struct torture_test *test)
|
---|
31 | {
|
---|
32 | bool (*fn) (struct torture_context *, struct smb2_tree *);
|
---|
33 | bool ret;
|
---|
34 |
|
---|
35 | struct smb2_tree *tree1;
|
---|
36 |
|
---|
37 | if (!torture_smb2_connection(torture_ctx, &tree1))
|
---|
38 | return false;
|
---|
39 |
|
---|
40 | fn = test->fn;
|
---|
41 |
|
---|
42 | ret = fn(torture_ctx, tree1);
|
---|
43 |
|
---|
44 | talloc_free(tree1);
|
---|
45 |
|
---|
46 | return ret;
|
---|
47 | }
|
---|
48 |
|
---|
49 | struct torture_test *torture_suite_add_1smb2_test(struct torture_suite *suite,
|
---|
50 | const char *name,
|
---|
51 | bool (*run)(struct torture_context *,
|
---|
52 | struct smb2_tree *))
|
---|
53 | {
|
---|
54 | struct torture_test *test;
|
---|
55 | struct torture_tcase *tcase;
|
---|
56 |
|
---|
57 | tcase = torture_suite_add_tcase(suite, name);
|
---|
58 |
|
---|
59 | test = talloc(tcase, struct torture_test);
|
---|
60 |
|
---|
61 | test->name = talloc_strdup(test, name);
|
---|
62 | test->description = NULL;
|
---|
63 | test->run = wrap_simple_1smb2_test;
|
---|
64 | test->fn = run;
|
---|
65 | test->dangerous = false;
|
---|
66 |
|
---|
67 | DLIST_ADD_END(tcase->tests, test, struct torture_test *);
|
---|
68 |
|
---|
69 | return test;
|
---|
70 | }
|
---|
71 |
|
---|
72 |
|
---|
73 | static bool wrap_simple_2smb2_test(struct torture_context *torture_ctx,
|
---|
74 | struct torture_tcase *tcase,
|
---|
75 | struct torture_test *test)
|
---|
76 | {
|
---|
77 | bool (*fn) (struct torture_context *, struct smb2_tree *, struct smb2_tree *);
|
---|
78 | bool ret;
|
---|
79 |
|
---|
80 | struct smb2_tree *tree1;
|
---|
81 | struct smb2_tree *tree2;
|
---|
82 | TALLOC_CTX *mem_ctx = talloc_new(torture_ctx);
|
---|
83 |
|
---|
84 | if (!torture_smb2_connection(torture_ctx, &tree1) ||
|
---|
85 | !torture_smb2_connection(torture_ctx, &tree2)) {
|
---|
86 | return false;
|
---|
87 | }
|
---|
88 |
|
---|
89 | talloc_steal(mem_ctx, tree1);
|
---|
90 | talloc_steal(mem_ctx, tree2);
|
---|
91 |
|
---|
92 | fn = test->fn;
|
---|
93 |
|
---|
94 | ret = fn(torture_ctx, tree1, tree2);
|
---|
95 |
|
---|
96 | /* the test may already closed some of the connections */
|
---|
97 | talloc_free(mem_ctx);
|
---|
98 |
|
---|
99 | return ret;
|
---|
100 | }
|
---|
101 |
|
---|
102 |
|
---|
103 | struct torture_test *torture_suite_add_2smb2_test(struct torture_suite *suite,
|
---|
104 | const char *name,
|
---|
105 | bool (*run)(struct torture_context *,
|
---|
106 | struct smb2_tree *,
|
---|
107 | struct smb2_tree *))
|
---|
108 | {
|
---|
109 | struct torture_test *test;
|
---|
110 | struct torture_tcase *tcase;
|
---|
111 |
|
---|
112 | tcase = torture_suite_add_tcase(suite, name);
|
---|
113 |
|
---|
114 | test = talloc(tcase, struct torture_test);
|
---|
115 |
|
---|
116 | test->name = talloc_strdup(test, name);
|
---|
117 | test->description = NULL;
|
---|
118 | test->run = wrap_simple_2smb2_test;
|
---|
119 | test->fn = run;
|
---|
120 | test->dangerous = false;
|
---|
121 |
|
---|
122 | DLIST_ADD_END(tcase->tests, test, struct torture_test *);
|
---|
123 |
|
---|
124 | return test;
|
---|
125 | }
|
---|
126 |
|
---|
127 | NTSTATUS torture_smb2_init(void)
|
---|
128 | {
|
---|
129 | struct torture_suite *suite = torture_suite_create(talloc_autofree_context(), "SMB2");
|
---|
130 | torture_suite_add_simple_test(suite, "CONNECT", torture_smb2_connect);
|
---|
131 | torture_suite_add_simple_test(suite, "SCAN", torture_smb2_scan);
|
---|
132 | torture_suite_add_simple_test(suite, "SCANGETINFO", torture_smb2_getinfo_scan);
|
---|
133 | torture_suite_add_simple_test(suite, "SCANSETINFO", torture_smb2_setinfo_scan);
|
---|
134 | torture_suite_add_simple_test(suite, "SCANFIND", torture_smb2_find_scan);
|
---|
135 | torture_suite_add_simple_test(suite, "GETINFO", torture_smb2_getinfo);
|
---|
136 | torture_suite_add_simple_test(suite, "SETINFO", torture_smb2_setinfo);
|
---|
137 | torture_suite_add_suite(suite, torture_smb2_lock_init());
|
---|
138 | torture_suite_add_suite(suite, torture_smb2_read_init());
|
---|
139 | torture_suite_add_suite(suite, torture_smb2_create_init());
|
---|
140 | torture_suite_add_simple_test(suite, "NOTIFY", torture_smb2_notify);
|
---|
141 | torture_suite_add_suite(suite, torture_smb2_durable_open_init());
|
---|
142 | torture_suite_add_1smb2_test(suite, "OPLOCK-BATCH1", torture_smb2_oplock_batch1);
|
---|
143 | torture_suite_add_suite(suite, torture_smb2_dir_init());
|
---|
144 | torture_suite_add_suite(suite, torture_smb2_lease_init());
|
---|
145 | torture_suite_add_suite(suite, torture_smb2_compound_init());
|
---|
146 |
|
---|
147 | suite->description = talloc_strdup(suite, "SMB2-specific tests");
|
---|
148 |
|
---|
149 | torture_register_suite(suite);
|
---|
150 |
|
---|
151 | return NT_STATUS_OK;
|
---|
152 | }
|
---|