d28534f53efcdeea7898463d20e4061697d150fd
[kamenim/samba.git] / source4 / torture / libnet / userinfo.c
1 /*
2    Unix SMB/CIFS implementation.
3    Test suite for libnet calls.
4
5    Copyright (C) Rafal Szczesniak 2005
6
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.
11
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.
16
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/>.
19 */
20
21 #include "includes.h"
22 #include "torture/rpc/torture_rpc.h"
23 #include "libnet/libnet.h"
24 #include "libcli/security/security.h"
25 #include "librpc/gen_ndr/ndr_samr_c.h"
26 #include "param/param.h"
27 #include "torture/libnet/utils.h"
28
29
30 #define TEST_USERNAME  "libnetuserinfotest"
31
32 static bool test_userinfo(struct torture_context *tctx,
33                           struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx,
34                           struct policy_handle *domain_handle,
35                           struct dom_sid2 *domain_sid, const char* user_name,
36                           uint32_t *rid)
37 {
38         const uint16_t level = 5;
39         NTSTATUS status;
40         struct libnet_rpc_userinfo user;
41         struct dom_sid *user_sid;
42
43         user_sid = dom_sid_add_rid(mem_ctx, domain_sid, *rid);
44
45         user.in.domain_handle = *domain_handle;
46         user.in.sid           = dom_sid_string(mem_ctx, user_sid);
47         user.in.level         = level;       /* this should be extended */
48
49         torture_comment(tctx, "Testing sync libnet_rpc_userinfo (SID argument)\n");
50         status = libnet_rpc_userinfo(p, mem_ctx, &user);
51         if (!NT_STATUS_IS_OK(status)) {
52                 torture_comment(tctx, "Failed to call sync libnet_rpc_userinfo - %s\n", nt_errstr(status));
53                 return false;
54         }
55
56         ZERO_STRUCT(user);
57
58         user.in.domain_handle = *domain_handle;
59         user.in.sid           = NULL;
60         user.in.username      = user_name;
61         user.in.level         = level;
62
63         torture_comment(tctx, "Testing sync libnet_rpc_userinfo (username argument)\n");
64         status = libnet_rpc_userinfo(p, mem_ctx, &user);
65         if (!NT_STATUS_IS_OK(status)) {
66                 torture_comment(tctx, "Failed to call sync libnet_rpc_userinfo - %s\n", nt_errstr(status));
67                 return false;
68         }
69
70         return true;
71 }
72
73
74 static bool test_userinfo_async(struct torture_context *tctx,
75                                 struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx,
76                                 struct policy_handle *domain_handle,
77                                 struct dom_sid2 *domain_sid, const char* user_name,
78                                 uint32_t *rid)
79 {
80         const uint16_t level = 10;
81         NTSTATUS status;
82         struct composite_context *c;
83         struct libnet_rpc_userinfo user;
84         struct dom_sid *user_sid;
85
86         user_sid = dom_sid_add_rid(mem_ctx, domain_sid, *rid);
87
88         user.in.domain_handle = *domain_handle;
89         user.in.sid           = dom_sid_string(mem_ctx, user_sid);
90         user.in.level         = level;       /* this should be extended */
91
92         torture_comment(tctx, "Testing async libnet_rpc_userinfo (SID argument)\n");
93
94         c = libnet_rpc_userinfo_send(p, &user, msg_handler);
95         if (!c) {
96                 torture_comment(tctx, "Failed to call sync libnet_rpc_userinfo_send\n");
97                 return false;
98         }
99
100         status = libnet_rpc_userinfo_recv(c, mem_ctx, &user);
101         if (!NT_STATUS_IS_OK(status)) {
102                 torture_comment(tctx, "Calling async libnet_rpc_userinfo failed - %s\n", nt_errstr(status));
103                 return false;
104         }
105
106         ZERO_STRUCT(user);
107
108         user.in.domain_handle = *domain_handle;
109         user.in.sid           = NULL;
110         user.in.username      = user_name;
111         user.in.level         = level;
112
113         torture_comment(tctx, "Testing async libnet_rpc_userinfo (username argument)\n");
114
115         c = libnet_rpc_userinfo_send(p, &user, msg_handler);
116         if (!c) {
117                 torture_comment(tctx, "Failed to call sync libnet_rpc_userinfo_send\n");
118                 return false;
119         }
120
121         status = libnet_rpc_userinfo_recv(c, mem_ctx, &user);
122         if (!NT_STATUS_IS_OK(status)) {
123                 torture_comment(tctx, "Calling async libnet_rpc_userinfo failed - %s\n", nt_errstr(status));
124                 return false;
125         }
126
127         return true;
128 }
129
130
131 bool torture_userinfo(struct torture_context *torture)
132 {
133         NTSTATUS status;
134         struct dcerpc_pipe *p;
135         TALLOC_CTX *mem_ctx;
136         bool ret = true;
137         struct policy_handle h;
138         struct lsa_String name;
139         struct dom_sid2 sid;
140         uint32_t rid;
141         struct dcerpc_binding_handle *b;
142
143         mem_ctx = talloc_init("test_userinfo");
144
145         status = torture_rpc_connection(torture,
146                                         &p,
147                                         &ndr_table_samr);
148
149         if (!NT_STATUS_IS_OK(status)) {
150                 return false;
151         }
152         b = p->binding_handle;
153
154         name.string = lp_workgroup(torture->lp_ctx);
155
156         /*
157          * Testing synchronous version
158          */
159         if (!test_opendomain(torture, b, mem_ctx, &h, &name, &sid)) {
160                 ret = false;
161                 goto done;
162         }
163
164         if (!test_user_create(torture, b, mem_ctx, &h, TEST_USERNAME, &rid)) {
165                 ret = false;
166                 goto done;
167         }
168
169         if (!test_userinfo(torture, p, mem_ctx, &h, &sid, TEST_USERNAME, &rid)) {
170                 ret = false;
171                 goto done;
172         }
173
174         if (!test_user_cleanup(torture, b, mem_ctx, &h, TEST_USERNAME)) {
175                 ret = false;
176                 goto done;
177         }
178
179         /*
180          * Testing asynchronous version and monitor messages
181          */
182         if (!test_opendomain(torture, b, mem_ctx, &h, &name, &sid)) {
183                 ret = false;
184                 goto done;
185         }
186
187         if (!test_user_create(torture, b, mem_ctx, &h, TEST_USERNAME, &rid)) {
188                 ret = false;
189                 goto done;
190         }
191
192         if (!test_userinfo_async(torture, p, mem_ctx, &h, &sid, TEST_USERNAME, &rid)) {
193                 ret = false;
194                 goto done;
195         }
196
197         if (!test_user_cleanup(torture, b, mem_ctx, &h, TEST_USERNAME)) {
198                 ret = false;
199                 goto done;
200         }
201
202 done:
203         talloc_free(mem_ctx);
204
205         return ret;
206 }