dsdb-acl: give error string if we can not obtain the schema
[Samba/gebeck_regimport.git] / source3 / lib / netapi / user.c
blobdf3914cb4fcb57e72b1b9806d5a481ac60eb20f0
1 /*
2 * Unix SMB/CIFS implementation.
3 * NetApi User Support
4 * Copyright (C) Guenther Deschner 2008
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.
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.
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/>.
20 #include "includes.h"
22 #include "librpc/gen_ndr/libnetapi.h"
23 #include "lib/netapi/netapi.h"
24 #include "lib/netapi/netapi_private.h"
25 #include "lib/netapi/libnetapi.h"
26 #include "../librpc/gen_ndr/ndr_samr_c.h"
27 #include "rpc_client/init_samr.h"
28 #include "../libds/common/flags.h"
29 #include "rpc_client/init_lsa.h"
30 #include "../libcli/security/security.h"
31 #include "../libds/common/flag_mapping.h"
32 #include "rpc_client/cli_pipe.h"
34 /****************************************************************
35 ****************************************************************/
37 static void convert_USER_INFO_X_to_samr_user_info21(struct USER_INFO_X *infoX,
38 struct samr_UserInfo21 *info21)
40 uint32_t fields_present = 0;
41 struct samr_LogonHours zero_logon_hours;
42 struct lsa_BinaryString zero_parameters;
43 NTTIME password_age;
45 ZERO_STRUCTP(info21);
46 ZERO_STRUCT(zero_logon_hours);
47 ZERO_STRUCT(zero_parameters);
49 if (infoX->usriX_flags) {
50 fields_present |= SAMR_FIELD_ACCT_FLAGS;
52 if (infoX->usriX_name) {
53 fields_present |= SAMR_FIELD_ACCOUNT_NAME;
55 if (infoX->usriX_password) {
56 fields_present |= SAMR_FIELD_NT_PASSWORD_PRESENT;
58 if (infoX->usriX_flags) {
59 fields_present |= SAMR_FIELD_ACCT_FLAGS;
61 if (infoX->usriX_home_dir) {
62 fields_present |= SAMR_FIELD_HOME_DIRECTORY;
64 if (infoX->usriX_script_path) {
65 fields_present |= SAMR_FIELD_LOGON_SCRIPT;
67 if (infoX->usriX_comment) {
68 fields_present |= SAMR_FIELD_DESCRIPTION;
70 if (infoX->usriX_password_age) {
71 fields_present |= SAMR_FIELD_FORCE_PWD_CHANGE;
73 if (infoX->usriX_full_name) {
74 fields_present |= SAMR_FIELD_FULL_NAME;
76 if (infoX->usriX_usr_comment) {
77 fields_present |= SAMR_FIELD_COMMENT;
79 if (infoX->usriX_profile) {
80 fields_present |= SAMR_FIELD_PROFILE_PATH;
82 if (infoX->usriX_home_dir_drive) {
83 fields_present |= SAMR_FIELD_HOME_DRIVE;
85 if (infoX->usriX_primary_group_id) {
86 fields_present |= SAMR_FIELD_PRIMARY_GID;
88 if (infoX->usriX_country_code) {
89 fields_present |= SAMR_FIELD_COUNTRY_CODE;
91 if (infoX->usriX_workstations) {
92 fields_present |= SAMR_FIELD_WORKSTATIONS;
95 unix_to_nt_time_abs(&password_age, infoX->usriX_password_age);
97 /* TODO: infoX->usriX_priv */
99 info21->last_logon = 0;
100 info21->last_logoff = 0;
101 info21->last_password_change = 0;
102 info21->acct_expiry = 0;
103 info21->allow_password_change = 0;
104 info21->force_password_change = 0;
105 info21->account_name.string = infoX->usriX_name;
106 info21->full_name.string = infoX->usriX_full_name;
107 info21->home_directory.string = infoX->usriX_home_dir;
108 info21->home_drive.string = infoX->usriX_home_dir_drive;
109 info21->logon_script.string = infoX->usriX_script_path;
110 info21->profile_path.string = infoX->usriX_profile;
111 info21->description.string = infoX->usriX_comment;
112 info21->workstations.string = infoX->usriX_workstations;
113 info21->comment.string = infoX->usriX_usr_comment;
114 info21->parameters = zero_parameters;
115 info21->lm_owf_password = zero_parameters;
116 info21->nt_owf_password = zero_parameters;
117 info21->private_data.string = NULL;
118 info21->buf_count = 0;
119 info21->buffer = NULL;
120 info21->rid = infoX->usriX_user_id;
121 info21->primary_gid = infoX->usriX_primary_group_id;
122 info21->acct_flags = infoX->usriX_flags;
123 info21->fields_present = fields_present;
124 info21->logon_hours = zero_logon_hours;
125 info21->bad_password_count = infoX->usriX_bad_pw_count;
126 info21->logon_count = infoX->usriX_num_logons;
127 info21->country_code = infoX->usriX_country_code;
128 info21->code_page = infoX->usriX_code_page;
129 info21->lm_password_set = 0;
130 info21->nt_password_set = 0;
131 info21->password_expired = infoX->usriX_password_expired;
132 info21->private_data_sensitive = 0;
135 /****************************************************************
136 ****************************************************************/
138 static NTSTATUS construct_USER_INFO_X(uint32_t level,
139 uint8_t *buffer,
140 struct USER_INFO_X *uX)
142 struct USER_INFO_0 *u0 = NULL;
143 struct USER_INFO_1 *u1 = NULL;
144 struct USER_INFO_2 *u2 = NULL;
145 struct USER_INFO_3 *u3 = NULL;
146 struct USER_INFO_1003 *u1003 = NULL;
147 struct USER_INFO_1006 *u1006 = NULL;
148 struct USER_INFO_1007 *u1007 = NULL;
149 struct USER_INFO_1009 *u1009 = NULL;
150 struct USER_INFO_1011 *u1011 = NULL;
151 struct USER_INFO_1012 *u1012 = NULL;
152 struct USER_INFO_1014 *u1014 = NULL;
153 struct USER_INFO_1024 *u1024 = NULL;
154 struct USER_INFO_1051 *u1051 = NULL;
155 struct USER_INFO_1052 *u1052 = NULL;
156 struct USER_INFO_1053 *u1053 = NULL;
158 if (!buffer || !uX) {
159 return NT_STATUS_INVALID_PARAMETER;
162 ZERO_STRUCTP(uX);
164 switch (level) {
165 case 0:
166 u0 = (struct USER_INFO_0 *)buffer;
167 uX->usriX_name = u0->usri0_name;
168 break;
169 case 1:
170 u1 = (struct USER_INFO_1 *)buffer;
171 uX->usriX_name = u1->usri1_name;
172 uX->usriX_password = u1->usri1_password;
173 uX->usriX_password_age = u1->usri1_password_age;
174 uX->usriX_priv = u1->usri1_priv;
175 uX->usriX_home_dir = u1->usri1_home_dir;
176 uX->usriX_comment = u1->usri1_comment;
177 uX->usriX_flags = u1->usri1_flags;
178 uX->usriX_script_path = u1->usri1_script_path;
179 break;
180 case 2:
181 u2 = (struct USER_INFO_2 *)buffer;
182 uX->usriX_name = u2->usri2_name;
183 uX->usriX_password = u2->usri2_password;
184 uX->usriX_password_age = u2->usri2_password_age;
185 uX->usriX_priv = u2->usri2_priv;
186 uX->usriX_home_dir = u2->usri2_home_dir;
187 uX->usriX_comment = u2->usri2_comment;
188 uX->usriX_flags = u2->usri2_flags;
189 uX->usriX_script_path = u2->usri2_script_path;
190 uX->usriX_auth_flags = u2->usri2_auth_flags;
191 uX->usriX_full_name = u2->usri2_full_name;
192 uX->usriX_usr_comment = u2->usri2_usr_comment;
193 uX->usriX_parms = u2->usri2_parms;
194 uX->usriX_workstations = u2->usri2_workstations;
195 uX->usriX_last_logon = u2->usri2_last_logon;
196 uX->usriX_last_logoff = u2->usri2_last_logoff;
197 uX->usriX_acct_expires = u2->usri2_acct_expires;
198 uX->usriX_max_storage = u2->usri2_max_storage;
199 uX->usriX_units_per_week= u2->usri2_units_per_week;
200 uX->usriX_logon_hours = u2->usri2_logon_hours;
201 uX->usriX_bad_pw_count = u2->usri2_bad_pw_count;
202 uX->usriX_num_logons = u2->usri2_num_logons;
203 uX->usriX_logon_server = u2->usri2_logon_server;
204 uX->usriX_country_code = u2->usri2_country_code;
205 uX->usriX_code_page = u2->usri2_code_page;
206 break;
207 case 3:
208 u3 = (struct USER_INFO_3 *)buffer;
209 uX->usriX_name = u3->usri3_name;
210 uX->usriX_password_age = u3->usri3_password_age;
211 uX->usriX_priv = u3->usri3_priv;
212 uX->usriX_home_dir = u3->usri3_home_dir;
213 uX->usriX_comment = u3->usri3_comment;
214 uX->usriX_flags = u3->usri3_flags;
215 uX->usriX_script_path = u3->usri3_script_path;
216 uX->usriX_auth_flags = u3->usri3_auth_flags;
217 uX->usriX_full_name = u3->usri3_full_name;
218 uX->usriX_usr_comment = u3->usri3_usr_comment;
219 uX->usriX_parms = u3->usri3_parms;
220 uX->usriX_workstations = u3->usri3_workstations;
221 uX->usriX_last_logon = u3->usri3_last_logon;
222 uX->usriX_last_logoff = u3->usri3_last_logoff;
223 uX->usriX_acct_expires = u3->usri3_acct_expires;
224 uX->usriX_max_storage = u3->usri3_max_storage;
225 uX->usriX_units_per_week= u3->usri3_units_per_week;
226 uX->usriX_logon_hours = u3->usri3_logon_hours;
227 uX->usriX_bad_pw_count = u3->usri3_bad_pw_count;
228 uX->usriX_num_logons = u3->usri3_num_logons;
229 uX->usriX_logon_server = u3->usri3_logon_server;
230 uX->usriX_country_code = u3->usri3_country_code;
231 uX->usriX_code_page = u3->usri3_code_page;
232 uX->usriX_user_id = u3->usri3_user_id;
233 uX->usriX_primary_group_id = u3->usri3_primary_group_id;
234 uX->usriX_profile = u3->usri3_profile;
235 uX->usriX_home_dir_drive = u3->usri3_home_dir_drive;
236 uX->usriX_password_expired = u3->usri3_password_expired;
237 break;
238 case 1003:
239 u1003 = (struct USER_INFO_1003 *)buffer;
240 uX->usriX_password = u1003->usri1003_password;
241 break;
242 case 1006:
243 u1006 = (struct USER_INFO_1006 *)buffer;
244 uX->usriX_home_dir = u1006->usri1006_home_dir;
245 break;
246 case 1007:
247 u1007 = (struct USER_INFO_1007 *)buffer;
248 uX->usriX_comment = u1007->usri1007_comment;
249 break;
250 case 1009:
251 u1009 = (struct USER_INFO_1009 *)buffer;
252 uX->usriX_script_path = u1009->usri1009_script_path;
253 break;
254 case 1011:
255 u1011 = (struct USER_INFO_1011 *)buffer;
256 uX->usriX_full_name = u1011->usri1011_full_name;
257 break;
258 case 1012:
259 u1012 = (struct USER_INFO_1012 *)buffer;
260 uX->usriX_usr_comment = u1012->usri1012_usr_comment;
261 break;
262 case 1014:
263 u1014 = (struct USER_INFO_1014 *)buffer;
264 uX->usriX_workstations = u1014->usri1014_workstations;
265 break;
266 case 1024:
267 u1024 = (struct USER_INFO_1024 *)buffer;
268 uX->usriX_country_code = u1024->usri1024_country_code;
269 break;
270 case 1051:
271 u1051 = (struct USER_INFO_1051 *)buffer;
272 uX->usriX_primary_group_id = u1051->usri1051_primary_group_id;
273 break;
274 case 1052:
275 u1052 = (struct USER_INFO_1052 *)buffer;
276 uX->usriX_profile = u1052->usri1052_profile;
277 break;
278 case 1053:
279 u1053 = (struct USER_INFO_1053 *)buffer;
280 uX->usriX_home_dir_drive = u1053->usri1053_home_dir_drive;
281 break;
282 case 4:
283 default:
284 return NT_STATUS_INVALID_INFO_CLASS;
287 return NT_STATUS_OK;
290 /****************************************************************
291 ****************************************************************/
293 static NTSTATUS set_user_info_USER_INFO_X(TALLOC_CTX *ctx,
294 struct rpc_pipe_client *pipe_cli,
295 DATA_BLOB *session_key,
296 struct policy_handle *user_handle,
297 struct USER_INFO_X *uX)
299 union samr_UserInfo user_info;
300 struct samr_UserInfo21 info21;
301 NTSTATUS status, result;
302 struct dcerpc_binding_handle *b = pipe_cli->binding_handle;
304 if (!uX) {
305 return NT_STATUS_INVALID_PARAMETER;
308 convert_USER_INFO_X_to_samr_user_info21(uX, &info21);
310 ZERO_STRUCT(user_info);
312 if (uX->usriX_password) {
314 user_info.info25.info = info21;
316 init_samr_CryptPasswordEx(uX->usriX_password,
317 session_key,
318 &user_info.info25.password);
320 status = dcerpc_samr_SetUserInfo2(b, talloc_tos(),
321 user_handle,
323 &user_info,
324 &result);
325 if (NT_STATUS_EQUAL(status, NT_STATUS_RPC_ENUM_VALUE_OUT_OF_RANGE)) {
327 user_info.info23.info = info21;
329 init_samr_CryptPassword(uX->usriX_password,
330 session_key,
331 &user_info.info23.password);
333 status = dcerpc_samr_SetUserInfo2(b, talloc_tos(),
334 user_handle,
336 &user_info,
337 &result);
338 if (!NT_STATUS_IS_OK(status)) {
339 return status;
343 if (!NT_STATUS_IS_OK(status)) {
344 return status;
346 } else {
348 user_info.info21 = info21;
350 status = dcerpc_samr_SetUserInfo(b, talloc_tos(),
351 user_handle,
353 &user_info,
354 &result);
355 if (!NT_STATUS_IS_OK(status)) {
356 return status;
360 return result;
363 /****************************************************************
364 ****************************************************************/
366 WERROR NetUserAdd_r(struct libnetapi_ctx *ctx,
367 struct NetUserAdd *r)
369 struct rpc_pipe_client *pipe_cli = NULL;
370 NTSTATUS status, result;
371 WERROR werr;
372 struct policy_handle connect_handle, domain_handle, user_handle;
373 struct lsa_String lsa_account_name;
374 struct dom_sid2 *domain_sid = NULL;
375 union samr_UserInfo *user_info = NULL;
376 struct samr_PwInfo pw_info;
377 uint32_t access_granted = 0;
378 uint32_t rid = 0;
379 struct USER_INFO_X uX;
380 struct dcerpc_binding_handle *b = NULL;
381 DATA_BLOB session_key;
383 ZERO_STRUCT(connect_handle);
384 ZERO_STRUCT(domain_handle);
385 ZERO_STRUCT(user_handle);
387 if (!r->in.buffer) {
388 return WERR_INVALID_PARAM;
391 switch (r->in.level) {
392 case 1:
393 break;
394 case 2:
395 case 3:
396 case 4:
397 default:
398 werr = WERR_NOT_SUPPORTED;
399 goto done;
402 werr = libnetapi_open_pipe(ctx, r->in.server_name,
403 &ndr_table_samr.syntax_id,
404 &pipe_cli);
405 if (!W_ERROR_IS_OK(werr)) {
406 goto done;
409 b = pipe_cli->binding_handle;
411 status = construct_USER_INFO_X(r->in.level, r->in.buffer, &uX);
412 if (!NT_STATUS_IS_OK(status)) {
413 werr = ntstatus_to_werror(status);
414 goto done;
417 werr = libnetapi_samr_open_domain(ctx, pipe_cli,
418 SAMR_ACCESS_ENUM_DOMAINS |
419 SAMR_ACCESS_LOOKUP_DOMAIN,
420 SAMR_DOMAIN_ACCESS_LOOKUP_INFO_1 |
421 SAMR_DOMAIN_ACCESS_CREATE_USER |
422 SAMR_DOMAIN_ACCESS_OPEN_ACCOUNT,
423 &connect_handle,
424 &domain_handle,
425 &domain_sid);
426 if (!W_ERROR_IS_OK(werr)) {
427 goto done;
430 init_lsa_String(&lsa_account_name, uX.usriX_name);
432 status = dcerpc_samr_CreateUser2(b, talloc_tos(),
433 &domain_handle,
434 &lsa_account_name,
435 ACB_NORMAL,
436 SEC_STD_WRITE_DAC |
437 SEC_STD_DELETE |
438 SAMR_USER_ACCESS_SET_PASSWORD |
439 SAMR_USER_ACCESS_SET_ATTRIBUTES |
440 SAMR_USER_ACCESS_GET_ATTRIBUTES,
441 &user_handle,
442 &access_granted,
443 &rid,
444 &result);
445 if (!NT_STATUS_IS_OK(status)) {
446 werr = ntstatus_to_werror(status);
447 goto done;
449 if (!NT_STATUS_IS_OK(result)) {
450 werr = ntstatus_to_werror(result);
451 goto done;
454 status = dcerpc_samr_QueryUserInfo(b, talloc_tos(),
455 &user_handle,
457 &user_info,
458 &result);
459 if (!NT_STATUS_IS_OK(status)) {
460 werr = ntstatus_to_werror(status);
461 goto done;
463 if (!NT_STATUS_IS_OK(result)) {
464 werr = ntstatus_to_werror(result);
465 goto done;
468 if (!(user_info->info16.acct_flags & ACB_NORMAL)) {
469 werr = WERR_INVALID_PARAM;
470 goto done;
473 status = dcerpc_samr_GetUserPwInfo(b, talloc_tos(),
474 &user_handle,
475 &pw_info,
476 &result);
477 if (!NT_STATUS_IS_OK(status)) {
478 werr = ntstatus_to_werror(status);
479 goto done;
481 if (!NT_STATUS_IS_OK(result)) {
482 werr = ntstatus_to_werror(result);
483 goto done;
486 status = cli_get_session_key(talloc_tos(), pipe_cli, &session_key);
487 if (!NT_STATUS_IS_OK(status)) {
488 werr = ntstatus_to_werror(status);
489 goto done;
492 uX.usriX_flags |= ACB_NORMAL;
494 status = set_user_info_USER_INFO_X(ctx, pipe_cli,
495 &session_key,
496 &user_handle,
497 &uX);
498 if (!NT_STATUS_IS_OK(status)) {
499 werr = ntstatus_to_werror(status);
500 goto failed;
503 werr = WERR_OK;
504 goto done;
506 failed:
507 dcerpc_samr_DeleteUser(b, talloc_tos(),
508 &user_handle,
509 &result);
511 done:
512 if (is_valid_policy_hnd(&user_handle) && b) {
513 dcerpc_samr_Close(b, talloc_tos(), &user_handle, &result);
516 if (ctx->disable_policy_handle_cache) {
517 libnetapi_samr_close_domain_handle(ctx, &domain_handle);
518 libnetapi_samr_close_connect_handle(ctx, &connect_handle);
521 return werr;
524 /****************************************************************
525 ****************************************************************/
527 WERROR NetUserAdd_l(struct libnetapi_ctx *ctx,
528 struct NetUserAdd *r)
530 LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx, r, NetUserAdd);
533 /****************************************************************
534 ****************************************************************/
536 WERROR NetUserDel_r(struct libnetapi_ctx *ctx,
537 struct NetUserDel *r)
539 struct rpc_pipe_client *pipe_cli = NULL;
540 NTSTATUS status, result;
541 WERROR werr;
542 struct policy_handle connect_handle, builtin_handle, domain_handle, user_handle;
543 struct lsa_String lsa_account_name;
544 struct samr_Ids user_rids, name_types;
545 struct dom_sid2 *domain_sid = NULL;
546 struct dom_sid2 user_sid;
547 struct dcerpc_binding_handle *b = NULL;
549 ZERO_STRUCT(connect_handle);
550 ZERO_STRUCT(builtin_handle);
551 ZERO_STRUCT(domain_handle);
552 ZERO_STRUCT(user_handle);
554 werr = libnetapi_open_pipe(ctx, r->in.server_name,
555 &ndr_table_samr.syntax_id,
556 &pipe_cli);
558 if (!W_ERROR_IS_OK(werr)) {
559 goto done;
562 b = pipe_cli->binding_handle;
564 werr = libnetapi_samr_open_domain(ctx, pipe_cli,
565 SAMR_ACCESS_ENUM_DOMAINS |
566 SAMR_ACCESS_LOOKUP_DOMAIN,
567 SAMR_DOMAIN_ACCESS_OPEN_ACCOUNT,
568 &connect_handle,
569 &domain_handle,
570 &domain_sid);
571 if (!W_ERROR_IS_OK(werr)) {
572 goto done;
575 status = dcerpc_samr_OpenDomain(b, talloc_tos(),
576 &connect_handle,
577 SAMR_DOMAIN_ACCESS_OPEN_ACCOUNT,
578 discard_const_p(struct dom_sid, &global_sid_Builtin),
579 &builtin_handle,
580 &result);
581 if (!NT_STATUS_IS_OK(status)) {
582 werr = ntstatus_to_werror(status);
583 goto done;
585 if (!NT_STATUS_IS_OK(result)) {
586 werr = ntstatus_to_werror(result);
587 goto done;
590 init_lsa_String(&lsa_account_name, r->in.user_name);
592 status = dcerpc_samr_LookupNames(b, talloc_tos(),
593 &domain_handle,
595 &lsa_account_name,
596 &user_rids,
597 &name_types,
598 &result);
599 if (!NT_STATUS_IS_OK(status)) {
600 werr = ntstatus_to_werror(status);
601 goto done;
603 if (!NT_STATUS_IS_OK(result)) {
604 werr = ntstatus_to_werror(result);
605 goto done;
608 status = dcerpc_samr_OpenUser(b, talloc_tos(),
609 &domain_handle,
610 SEC_STD_DELETE,
611 user_rids.ids[0],
612 &user_handle,
613 &result);
614 if (!NT_STATUS_IS_OK(status)) {
615 werr = ntstatus_to_werror(status);
616 goto done;
618 if (!NT_STATUS_IS_OK(result)) {
619 werr = ntstatus_to_werror(result);
620 goto done;
623 sid_compose(&user_sid, domain_sid, user_rids.ids[0]);
625 status = dcerpc_samr_RemoveMemberFromForeignDomain(b, talloc_tos(),
626 &builtin_handle,
627 &user_sid,
628 &result);
629 if (!NT_STATUS_IS_OK(status)) {
630 werr = ntstatus_to_werror(status);
631 goto done;
633 if (!NT_STATUS_IS_OK(result)) {
634 werr = ntstatus_to_werror(result);
635 goto done;
638 status = dcerpc_samr_DeleteUser(b, talloc_tos(),
639 &user_handle,
640 &result);
641 if (!NT_STATUS_IS_OK(status)) {
642 werr = ntstatus_to_werror(status);
643 goto done;
645 if (!NT_STATUS_IS_OK(result)) {
646 werr = ntstatus_to_werror(result);
647 goto done;
650 werr = WERR_OK;
652 done:
653 if (is_valid_policy_hnd(&user_handle)) {
654 dcerpc_samr_Close(b, talloc_tos(), &user_handle, &result);
657 if (ctx->disable_policy_handle_cache) {
658 libnetapi_samr_close_builtin_handle(ctx, &builtin_handle);
659 libnetapi_samr_close_domain_handle(ctx, &domain_handle);
660 libnetapi_samr_close_connect_handle(ctx, &connect_handle);
663 return werr;
666 /****************************************************************
667 ****************************************************************/
669 WERROR NetUserDel_l(struct libnetapi_ctx *ctx,
670 struct NetUserDel *r)
672 LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx, r, NetUserDel);
675 /****************************************************************
676 ****************************************************************/
678 static NTSTATUS libnetapi_samr_lookup_user(TALLOC_CTX *mem_ctx,
679 struct rpc_pipe_client *pipe_cli,
680 struct policy_handle *domain_handle,
681 struct policy_handle *builtin_handle,
682 const char *user_name,
683 const struct dom_sid *domain_sid,
684 uint32_t rid,
685 uint32_t level,
686 struct samr_UserInfo21 **info21,
687 struct sec_desc_buf **sec_desc,
688 uint32_t *auth_flag_p)
690 NTSTATUS status, result;
692 struct policy_handle user_handle;
693 union samr_UserInfo *user_info = NULL;
694 struct samr_RidWithAttributeArray *rid_array = NULL;
695 uint32_t access_mask = SEC_STD_READ_CONTROL |
696 SAMR_USER_ACCESS_GET_ATTRIBUTES |
697 SAMR_USER_ACCESS_GET_NAME_ETC;
698 struct dcerpc_binding_handle *b = pipe_cli->binding_handle;
700 ZERO_STRUCT(user_handle);
702 switch (level) {
703 case 0:
704 break;
705 case 1:
706 access_mask |= SAMR_USER_ACCESS_GET_LOGONINFO |
707 SAMR_USER_ACCESS_GET_GROUPS;
708 break;
709 case 2:
710 case 3:
711 case 4:
712 case 11:
713 access_mask |= SAMR_USER_ACCESS_GET_LOGONINFO |
714 SAMR_USER_ACCESS_GET_GROUPS |
715 SAMR_USER_ACCESS_GET_LOCALE;
716 break;
717 case 10:
718 case 20:
719 case 23:
720 break;
721 default:
722 return NT_STATUS_INVALID_LEVEL;
725 if (level == 0) {
726 return NT_STATUS_OK;
729 status = dcerpc_samr_OpenUser(b, mem_ctx,
730 domain_handle,
731 access_mask,
732 rid,
733 &user_handle,
734 &result);
735 if (!NT_STATUS_IS_OK(status)) {
736 goto done;
738 if (!NT_STATUS_IS_OK(result)) {
739 status = result;
740 goto done;
743 status = dcerpc_samr_QueryUserInfo(b, mem_ctx,
744 &user_handle,
746 &user_info,
747 &result);
748 if (!NT_STATUS_IS_OK(status)) {
749 goto done;
751 if (!NT_STATUS_IS_OK(result)) {
752 status = result;
753 goto done;
756 status = dcerpc_samr_QuerySecurity(b, mem_ctx,
757 &user_handle,
758 SECINFO_DACL,
759 sec_desc,
760 &result);
761 if (!NT_STATUS_IS_OK(status)) {
762 goto done;
764 if (!NT_STATUS_IS_OK(result)) {
765 status = result;
766 goto done;
769 if (access_mask & SAMR_USER_ACCESS_GET_GROUPS) {
771 struct lsa_SidArray sid_array;
772 struct samr_Ids alias_rids;
773 int i;
774 uint32_t auth_flag = 0;
775 struct dom_sid sid;
777 status = dcerpc_samr_GetGroupsForUser(b, mem_ctx,
778 &user_handle,
779 &rid_array,
780 &result);
781 if (!NT_STATUS_IS_OK(status)) {
782 goto done;
784 if (!NT_STATUS_IS_OK(result)) {
785 status = result;
786 goto done;
789 sid_array.num_sids = rid_array->count + 1;
790 sid_array.sids = talloc_array(mem_ctx, struct lsa_SidPtr,
791 sid_array.num_sids);
792 NT_STATUS_HAVE_NO_MEMORY(sid_array.sids);
794 for (i=0; i<rid_array->count; i++) {
795 sid_compose(&sid, domain_sid, rid_array->rids[i].rid);
796 sid_array.sids[i].sid = dom_sid_dup(mem_ctx, &sid);
797 NT_STATUS_HAVE_NO_MEMORY(sid_array.sids[i].sid);
800 sid_compose(&sid, domain_sid, rid);
801 sid_array.sids[i].sid = dom_sid_dup(mem_ctx, &sid);
802 NT_STATUS_HAVE_NO_MEMORY(sid_array.sids[i].sid);
804 status = dcerpc_samr_GetAliasMembership(b, mem_ctx,
805 builtin_handle,
806 &sid_array,
807 &alias_rids,
808 &result);
809 if (!NT_STATUS_IS_OK(status)) {
810 goto done;
812 if (!NT_STATUS_IS_OK(result)) {
813 status = result;
814 goto done;
817 for (i=0; i<alias_rids.count; i++) {
818 switch (alias_rids.ids[i]) {
819 case 550: /* Print Operators */
820 auth_flag |= AF_OP_PRINT;
821 break;
822 case 549: /* Server Operators */
823 auth_flag |= AF_OP_SERVER;
824 break;
825 case 548: /* Account Operators */
826 auth_flag |= AF_OP_ACCOUNTS;
827 break;
828 default:
829 break;
833 if (auth_flag_p) {
834 *auth_flag_p = auth_flag;
838 *info21 = &user_info->info21;
840 done:
841 if (is_valid_policy_hnd(&user_handle)) {
842 dcerpc_samr_Close(b, mem_ctx, &user_handle, &result);
845 return status;
848 /****************************************************************
849 ****************************************************************/
851 static uint32_t samr_rid_to_priv_level(uint32_t rid)
853 switch (rid) {
854 case DOMAIN_RID_ADMINISTRATOR:
855 return USER_PRIV_ADMIN;
856 case DOMAIN_RID_GUEST:
857 return USER_PRIV_GUEST;
858 default:
859 return USER_PRIV_USER;
863 /****************************************************************
864 ****************************************************************/
866 static uint32_t samr_acb_flags_to_netapi_flags(uint32_t acb)
868 uint32_t fl = UF_SCRIPT; /* god knows why */
870 fl |= ds_acb2uf(acb);
872 return fl;
875 /****************************************************************
876 ****************************************************************/
878 static NTSTATUS info21_to_USER_INFO_1(TALLOC_CTX *mem_ctx,
879 const struct samr_UserInfo21 *i21,
880 struct USER_INFO_1 *i)
882 ZERO_STRUCTP(i);
883 i->usri1_name = talloc_strdup(mem_ctx, i21->account_name.string);
884 NT_STATUS_HAVE_NO_MEMORY(i->usri1_name);
885 i->usri1_password = NULL;
886 i->usri1_password_age = time(NULL) - nt_time_to_unix(i21->last_password_change);
887 i->usri1_priv = samr_rid_to_priv_level(i21->rid);
888 i->usri1_home_dir = talloc_strdup(mem_ctx, i21->home_directory.string);
889 i->usri1_comment = talloc_strdup(mem_ctx, i21->description.string);
890 i->usri1_flags = samr_acb_flags_to_netapi_flags(i21->acct_flags);
891 i->usri1_script_path = talloc_strdup(mem_ctx, i21->logon_script.string);
893 return NT_STATUS_OK;
896 /****************************************************************
897 ****************************************************************/
899 static NTSTATUS info21_to_USER_INFO_2(TALLOC_CTX *mem_ctx,
900 const struct samr_UserInfo21 *i21,
901 uint32_t auth_flag,
902 struct USER_INFO_2 *i)
904 ZERO_STRUCTP(i);
906 i->usri2_name = talloc_strdup(mem_ctx, i21->account_name.string);
907 NT_STATUS_HAVE_NO_MEMORY(i->usri2_name);
908 i->usri2_password = NULL;
909 i->usri2_password_age = time(NULL) - nt_time_to_unix(i21->last_password_change);
910 i->usri2_priv = samr_rid_to_priv_level(i21->rid);
911 i->usri2_home_dir = talloc_strdup(mem_ctx, i21->home_directory.string);
912 i->usri2_comment = talloc_strdup(mem_ctx, i21->description.string);
913 i->usri2_flags = samr_acb_flags_to_netapi_flags(i21->acct_flags);
914 i->usri2_script_path = talloc_strdup(mem_ctx, i21->logon_script.string);
915 i->usri2_auth_flags = auth_flag;
916 i->usri2_full_name = talloc_strdup(mem_ctx, i21->full_name.string);
917 i->usri2_usr_comment = talloc_strdup(mem_ctx, i21->comment.string);
918 i->usri2_parms = talloc_strndup(mem_ctx, (const char *)i21->parameters.array, i21->parameters.size/2);
919 i->usri2_workstations = talloc_strdup(mem_ctx, i21->workstations.string);
920 i->usri2_last_logon = nt_time_to_unix(i21->last_logon);
921 i->usri2_last_logoff = nt_time_to_unix(i21->last_logoff);
922 i->usri2_acct_expires = nt_time_to_unix(i21->acct_expiry);
923 i->usri2_max_storage = USER_MAXSTORAGE_UNLIMITED; /* FIXME */
924 i->usri2_units_per_week = i21->logon_hours.units_per_week;
925 i->usri2_logon_hours = (uint8_t *)talloc_memdup(mem_ctx, i21->logon_hours.bits, 21);
926 i->usri2_bad_pw_count = i21->bad_password_count;
927 i->usri2_num_logons = i21->logon_count;
928 i->usri2_logon_server = talloc_strdup(mem_ctx, "\\\\*");
929 i->usri2_country_code = i21->country_code;
930 i->usri2_code_page = i21->code_page;
932 return NT_STATUS_OK;
935 /****************************************************************
936 ****************************************************************/
938 static NTSTATUS info21_to_USER_INFO_3(TALLOC_CTX *mem_ctx,
939 const struct samr_UserInfo21 *i21,
940 uint32_t auth_flag,
941 struct USER_INFO_3 *i)
943 ZERO_STRUCTP(i);
945 i->usri3_name = talloc_strdup(mem_ctx, i21->account_name.string);
946 NT_STATUS_HAVE_NO_MEMORY(i->usri3_name);
947 i->usri3_password_age = time(NULL) - nt_time_to_unix(i21->last_password_change);
948 i->usri3_priv = samr_rid_to_priv_level(i21->rid);
949 i->usri3_home_dir = talloc_strdup(mem_ctx, i21->home_directory.string);
950 i->usri3_comment = talloc_strdup(mem_ctx, i21->description.string);
951 i->usri3_flags = samr_acb_flags_to_netapi_flags(i21->acct_flags);
952 i->usri3_script_path = talloc_strdup(mem_ctx, i21->logon_script.string);
953 i->usri3_auth_flags = auth_flag;
954 i->usri3_full_name = talloc_strdup(mem_ctx, i21->full_name.string);
955 i->usri3_usr_comment = talloc_strdup(mem_ctx, i21->comment.string);
956 i->usri3_parms = talloc_strndup(mem_ctx, (const char *)i21->parameters.array, i21->parameters.size/2);
957 i->usri3_workstations = talloc_strdup(mem_ctx, i21->workstations.string);
958 i->usri3_last_logon = nt_time_to_unix(i21->last_logon);
959 i->usri3_last_logoff = nt_time_to_unix(i21->last_logoff);
960 i->usri3_acct_expires = nt_time_to_unix(i21->acct_expiry);
961 i->usri3_max_storage = USER_MAXSTORAGE_UNLIMITED; /* FIXME */
962 i->usri3_units_per_week = i21->logon_hours.units_per_week;
963 i->usri3_logon_hours = (uint8_t *)talloc_memdup(mem_ctx, i21->logon_hours.bits, 21);
964 i->usri3_bad_pw_count = i21->bad_password_count;
965 i->usri3_num_logons = i21->logon_count;
966 i->usri3_logon_server = talloc_strdup(mem_ctx, "\\\\*");
967 i->usri3_country_code = i21->country_code;
968 i->usri3_code_page = i21->code_page;
969 i->usri3_user_id = i21->rid;
970 i->usri3_primary_group_id = i21->primary_gid;
971 i->usri3_profile = talloc_strdup(mem_ctx, i21->profile_path.string);
972 i->usri3_home_dir_drive = talloc_strdup(mem_ctx, i21->home_drive.string);
973 i->usri3_password_expired = i21->password_expired;
975 return NT_STATUS_OK;
978 /****************************************************************
979 ****************************************************************/
981 static NTSTATUS info21_to_USER_INFO_4(TALLOC_CTX *mem_ctx,
982 const struct samr_UserInfo21 *i21,
983 uint32_t auth_flag,
984 struct dom_sid *domain_sid,
985 struct USER_INFO_4 *i)
987 struct dom_sid sid;
989 ZERO_STRUCTP(i);
991 i->usri4_name = talloc_strdup(mem_ctx, i21->account_name.string);
992 NT_STATUS_HAVE_NO_MEMORY(i->usri4_name);
993 i->usri4_password_age = time(NULL) - nt_time_to_unix(i21->last_password_change);
994 i->usri4_password = NULL;
995 i->usri4_priv = samr_rid_to_priv_level(i21->rid);
996 i->usri4_home_dir = talloc_strdup(mem_ctx, i21->home_directory.string);
997 i->usri4_comment = talloc_strdup(mem_ctx, i21->description.string);
998 i->usri4_flags = samr_acb_flags_to_netapi_flags(i21->acct_flags);
999 i->usri4_script_path = talloc_strdup(mem_ctx, i21->logon_script.string);
1000 i->usri4_auth_flags = auth_flag;
1001 i->usri4_full_name = talloc_strdup(mem_ctx, i21->full_name.string);
1002 i->usri4_usr_comment = talloc_strdup(mem_ctx, i21->comment.string);
1003 i->usri4_parms = talloc_strndup(mem_ctx, (const char *)i21->parameters.array, i21->parameters.size/2);
1004 i->usri4_workstations = talloc_strdup(mem_ctx, i21->workstations.string);
1005 i->usri4_last_logon = nt_time_to_unix(i21->last_logon);
1006 i->usri4_last_logoff = nt_time_to_unix(i21->last_logoff);
1007 i->usri4_acct_expires = nt_time_to_unix(i21->acct_expiry);
1008 i->usri4_max_storage = USER_MAXSTORAGE_UNLIMITED; /* FIXME */
1009 i->usri4_units_per_week = i21->logon_hours.units_per_week;
1010 i->usri4_logon_hours = (uint8_t *)talloc_memdup(mem_ctx, i21->logon_hours.bits, 21);
1011 i->usri4_bad_pw_count = i21->bad_password_count;
1012 i->usri4_num_logons = i21->logon_count;
1013 i->usri4_logon_server = talloc_strdup(mem_ctx, "\\\\*");
1014 i->usri4_country_code = i21->country_code;
1015 i->usri4_code_page = i21->code_page;
1016 if (!sid_compose(&sid, domain_sid, i21->rid)) {
1017 return NT_STATUS_NO_MEMORY;
1019 i->usri4_user_sid = (struct domsid *)dom_sid_dup(mem_ctx, &sid);
1020 i->usri4_primary_group_id = i21->primary_gid;
1021 i->usri4_profile = talloc_strdup(mem_ctx, i21->profile_path.string);
1022 i->usri4_home_dir_drive = talloc_strdup(mem_ctx, i21->home_drive.string);
1023 i->usri4_password_expired = i21->password_expired;
1025 return NT_STATUS_OK;
1028 /****************************************************************
1029 ****************************************************************/
1031 static NTSTATUS info21_to_USER_INFO_10(TALLOC_CTX *mem_ctx,
1032 const struct samr_UserInfo21 *i21,
1033 struct USER_INFO_10 *i)
1035 ZERO_STRUCTP(i);
1037 i->usri10_name = talloc_strdup(mem_ctx, i21->account_name.string);
1038 NT_STATUS_HAVE_NO_MEMORY(i->usri10_name);
1039 i->usri10_comment = talloc_strdup(mem_ctx, i21->description.string);
1040 i->usri10_full_name = talloc_strdup(mem_ctx, i21->full_name.string);
1041 i->usri10_usr_comment = talloc_strdup(mem_ctx, i21->comment.string);
1043 return NT_STATUS_OK;
1046 /****************************************************************
1047 ****************************************************************/
1049 static NTSTATUS info21_to_USER_INFO_11(TALLOC_CTX *mem_ctx,
1050 const struct samr_UserInfo21 *i21,
1051 uint32_t auth_flag,
1052 struct USER_INFO_11 *i)
1054 ZERO_STRUCTP(i);
1056 i->usri11_name = talloc_strdup(mem_ctx, i21->account_name.string);
1057 NT_STATUS_HAVE_NO_MEMORY(i->usri11_name);
1058 i->usri11_comment = talloc_strdup(mem_ctx, i21->description.string);
1059 i->usri11_usr_comment = talloc_strdup(mem_ctx, i21->comment.string);
1060 i->usri11_full_name = talloc_strdup(mem_ctx, i21->full_name.string);
1061 i->usri11_priv = samr_rid_to_priv_level(i21->rid);
1062 i->usri11_auth_flags = auth_flag;
1063 i->usri11_password_age = time(NULL) - nt_time_to_unix(i21->last_password_change);
1064 i->usri11_home_dir = talloc_strdup(mem_ctx, i21->home_directory.string);
1065 i->usri11_parms = talloc_strndup(mem_ctx, (const char *)i21->parameters.array, i21->parameters.size/2);
1066 i->usri11_last_logon = nt_time_to_unix(i21->last_logon);
1067 i->usri11_last_logoff = nt_time_to_unix(i21->last_logoff);
1068 i->usri11_bad_pw_count = i21->bad_password_count;
1069 i->usri11_num_logons = i21->logon_count;
1070 i->usri11_logon_server = talloc_strdup(mem_ctx, "\\\\*");
1071 i->usri11_country_code = i21->country_code;
1072 i->usri11_workstations = talloc_strdup(mem_ctx, i21->workstations.string);
1073 i->usri11_max_storage = USER_MAXSTORAGE_UNLIMITED; /* FIXME */
1074 i->usri11_units_per_week = i21->logon_hours.units_per_week;
1075 i->usri11_logon_hours = (uint8_t *)talloc_memdup(mem_ctx, i21->logon_hours.bits, 21);
1076 i->usri11_code_page = i21->code_page;
1078 return NT_STATUS_OK;
1081 /****************************************************************
1082 ****************************************************************/
1084 static NTSTATUS info21_to_USER_INFO_20(TALLOC_CTX *mem_ctx,
1085 const struct samr_UserInfo21 *i21,
1086 struct USER_INFO_20 *i)
1088 ZERO_STRUCTP(i);
1090 i->usri20_name = talloc_strdup(mem_ctx, i21->account_name.string);
1091 NT_STATUS_HAVE_NO_MEMORY(i->usri20_name);
1092 i->usri20_comment = talloc_strdup(mem_ctx, i21->description.string);
1093 i->usri20_full_name = talloc_strdup(mem_ctx, i21->full_name.string);
1094 i->usri20_flags = samr_acb_flags_to_netapi_flags(i21->acct_flags);
1095 i->usri20_user_id = i21->rid;
1097 return NT_STATUS_OK;
1100 /****************************************************************
1101 ****************************************************************/
1103 static NTSTATUS info21_to_USER_INFO_23(TALLOC_CTX *mem_ctx,
1104 const struct samr_UserInfo21 *i21,
1105 struct dom_sid *domain_sid,
1106 struct USER_INFO_23 *i)
1108 struct dom_sid sid;
1110 ZERO_STRUCTP(i);
1112 i->usri23_name = talloc_strdup(mem_ctx, i21->account_name.string);
1113 NT_STATUS_HAVE_NO_MEMORY(i->usri23_name);
1114 i->usri23_comment = talloc_strdup(mem_ctx, i21->description.string);
1115 i->usri23_full_name = talloc_strdup(mem_ctx, i21->full_name.string);
1116 i->usri23_flags = samr_acb_flags_to_netapi_flags(i21->acct_flags);
1117 if (!sid_compose(&sid, domain_sid, i21->rid)) {
1118 return NT_STATUS_NO_MEMORY;
1120 i->usri23_user_sid = (struct domsid *)dom_sid_dup(mem_ctx, &sid);
1122 return NT_STATUS_OK;
1125 /****************************************************************
1126 ****************************************************************/
1128 static NTSTATUS libnetapi_samr_lookup_user_map_USER_INFO(TALLOC_CTX *mem_ctx,
1129 struct rpc_pipe_client *pipe_cli,
1130 struct dom_sid *domain_sid,
1131 struct policy_handle *domain_handle,
1132 struct policy_handle *builtin_handle,
1133 const char *user_name,
1134 uint32_t rid,
1135 uint32_t level,
1136 uint8_t **buffer,
1137 uint32_t *num_entries)
1139 NTSTATUS status;
1141 struct samr_UserInfo21 *info21 = NULL;
1142 struct sec_desc_buf *sec_desc = NULL;
1143 uint32_t auth_flag = 0;
1145 struct USER_INFO_0 info0;
1146 struct USER_INFO_1 info1;
1147 struct USER_INFO_2 info2;
1148 struct USER_INFO_3 info3;
1149 struct USER_INFO_4 info4;
1150 struct USER_INFO_10 info10;
1151 struct USER_INFO_11 info11;
1152 struct USER_INFO_20 info20;
1153 struct USER_INFO_23 info23;
1155 switch (level) {
1156 case 0:
1157 case 1:
1158 case 2:
1159 case 3:
1160 case 4:
1161 case 10:
1162 case 11:
1163 case 20:
1164 case 23:
1165 break;
1166 default:
1167 return NT_STATUS_INVALID_LEVEL;
1170 if (level == 0) {
1171 info0.usri0_name = talloc_strdup(mem_ctx, user_name);
1172 NT_STATUS_HAVE_NO_MEMORY(info0.usri0_name);
1174 ADD_TO_ARRAY(mem_ctx, struct USER_INFO_0, info0,
1175 (struct USER_INFO_0 **)buffer, num_entries);
1177 return NT_STATUS_OK;
1180 status = libnetapi_samr_lookup_user(mem_ctx, pipe_cli,
1181 domain_handle,
1182 builtin_handle,
1183 user_name,
1184 domain_sid,
1185 rid,
1186 level,
1187 &info21,
1188 &sec_desc,
1189 &auth_flag);
1191 if (!NT_STATUS_IS_OK(status)) {
1192 goto done;
1195 switch (level) {
1196 case 0:
1197 /* already returned above */
1198 break;
1199 case 1:
1200 status = info21_to_USER_INFO_1(mem_ctx, info21, &info1);
1201 NT_STATUS_NOT_OK_RETURN(status);
1203 ADD_TO_ARRAY(mem_ctx, struct USER_INFO_1, info1,
1204 (struct USER_INFO_1 **)buffer, num_entries);
1206 break;
1207 case 2:
1208 status = info21_to_USER_INFO_2(mem_ctx, info21, auth_flag, &info2);
1209 NT_STATUS_NOT_OK_RETURN(status);
1211 ADD_TO_ARRAY(mem_ctx, struct USER_INFO_2, info2,
1212 (struct USER_INFO_2 **)buffer, num_entries);
1214 break;
1215 case 3:
1216 status = info21_to_USER_INFO_3(mem_ctx, info21, auth_flag, &info3);
1217 NT_STATUS_NOT_OK_RETURN(status);
1219 ADD_TO_ARRAY(mem_ctx, struct USER_INFO_3, info3,
1220 (struct USER_INFO_3 **)buffer, num_entries);
1222 break;
1223 case 4:
1224 status = info21_to_USER_INFO_4(mem_ctx, info21, auth_flag, domain_sid, &info4);
1225 NT_STATUS_NOT_OK_RETURN(status);
1227 ADD_TO_ARRAY(mem_ctx, struct USER_INFO_4, info4,
1228 (struct USER_INFO_4 **)buffer, num_entries);
1230 break;
1231 case 10:
1232 status = info21_to_USER_INFO_10(mem_ctx, info21, &info10);
1233 NT_STATUS_NOT_OK_RETURN(status);
1235 ADD_TO_ARRAY(mem_ctx, struct USER_INFO_10, info10,
1236 (struct USER_INFO_10 **)buffer, num_entries);
1238 break;
1239 case 11:
1240 status = info21_to_USER_INFO_11(mem_ctx, info21, auth_flag, &info11);
1241 NT_STATUS_NOT_OK_RETURN(status);
1243 ADD_TO_ARRAY(mem_ctx, struct USER_INFO_11, info11,
1244 (struct USER_INFO_11 **)buffer, num_entries);
1246 break;
1247 case 20:
1248 status = info21_to_USER_INFO_20(mem_ctx, info21, &info20);
1249 NT_STATUS_NOT_OK_RETURN(status);
1251 ADD_TO_ARRAY(mem_ctx, struct USER_INFO_20, info20,
1252 (struct USER_INFO_20 **)buffer, num_entries);
1254 break;
1255 case 23:
1256 status = info21_to_USER_INFO_23(mem_ctx, info21, domain_sid, &info23);
1257 NT_STATUS_NOT_OK_RETURN(status);
1259 ADD_TO_ARRAY(mem_ctx, struct USER_INFO_23, info23,
1260 (struct USER_INFO_23 **)buffer, num_entries);
1261 break;
1262 default:
1263 return NT_STATUS_INVALID_LEVEL;
1266 done:
1267 return status;
1270 /****************************************************************
1271 ****************************************************************/
1273 WERROR NetUserEnum_r(struct libnetapi_ctx *ctx,
1274 struct NetUserEnum *r)
1276 struct rpc_pipe_client *pipe_cli = NULL;
1277 struct policy_handle connect_handle;
1278 struct dom_sid2 *domain_sid = NULL;
1279 struct policy_handle domain_handle, builtin_handle;
1280 struct samr_SamArray *sam = NULL;
1281 uint32_t filter = ACB_NORMAL;
1282 int i;
1283 uint32_t entries_read = 0;
1285 NTSTATUS status = NT_STATUS_OK;
1286 NTSTATUS result = NT_STATUS_OK;
1287 WERROR werr;
1288 struct dcerpc_binding_handle *b = NULL;
1290 ZERO_STRUCT(connect_handle);
1291 ZERO_STRUCT(domain_handle);
1292 ZERO_STRUCT(builtin_handle);
1294 if (!r->out.buffer) {
1295 return WERR_INVALID_PARAM;
1298 *r->out.buffer = NULL;
1299 *r->out.entries_read = 0;
1301 switch (r->in.level) {
1302 case 0:
1303 case 1:
1304 case 2:
1305 case 3:
1306 case 4:
1307 case 10:
1308 case 11:
1309 case 20:
1310 case 23:
1311 break;
1312 default:
1313 return WERR_UNKNOWN_LEVEL;
1316 werr = libnetapi_open_pipe(ctx, r->in.server_name,
1317 &ndr_table_samr.syntax_id,
1318 &pipe_cli);
1319 if (!W_ERROR_IS_OK(werr)) {
1320 goto done;
1323 b = pipe_cli->binding_handle;
1325 werr = libnetapi_samr_open_builtin_domain(ctx, pipe_cli,
1326 SAMR_ACCESS_ENUM_DOMAINS |
1327 SAMR_ACCESS_LOOKUP_DOMAIN,
1328 SAMR_DOMAIN_ACCESS_OPEN_ACCOUNT |
1329 SAMR_DOMAIN_ACCESS_LOOKUP_ALIAS,
1330 &connect_handle,
1331 &builtin_handle);
1332 if (!W_ERROR_IS_OK(werr)) {
1333 goto done;
1336 werr = libnetapi_samr_open_domain(ctx, pipe_cli,
1337 SAMR_ACCESS_ENUM_DOMAINS |
1338 SAMR_ACCESS_LOOKUP_DOMAIN,
1339 SAMR_DOMAIN_ACCESS_LOOKUP_INFO_2 |
1340 SAMR_DOMAIN_ACCESS_ENUM_ACCOUNTS |
1341 SAMR_DOMAIN_ACCESS_OPEN_ACCOUNT,
1342 &connect_handle,
1343 &domain_handle,
1344 &domain_sid);
1345 if (!W_ERROR_IS_OK(werr)) {
1346 goto done;
1349 switch (r->in.filter) {
1350 case FILTER_NORMAL_ACCOUNT:
1351 filter = ACB_NORMAL;
1352 break;
1353 case FILTER_TEMP_DUPLICATE_ACCOUNT:
1354 filter = ACB_TEMPDUP;
1355 break;
1356 case FILTER_INTERDOMAIN_TRUST_ACCOUNT:
1357 filter = ACB_DOMTRUST;
1358 break;
1359 case FILTER_WORKSTATION_TRUST_ACCOUNT:
1360 filter = ACB_WSTRUST;
1361 break;
1362 case FILTER_SERVER_TRUST_ACCOUNT:
1363 filter = ACB_SVRTRUST;
1364 break;
1365 default:
1366 break;
1369 status = dcerpc_samr_EnumDomainUsers(b,
1370 ctx,
1371 &domain_handle,
1372 r->in.resume_handle,
1373 filter,
1374 &sam,
1375 r->in.prefmaxlen,
1376 &entries_read,
1377 &result);
1378 if (!NT_STATUS_IS_OK(status)) {
1379 werr = ntstatus_to_werror(status);
1380 goto done;
1382 werr = ntstatus_to_werror(result);
1383 if (NT_STATUS_IS_ERR(result)) {
1384 goto done;
1387 for (i=0; i < sam->count; i++) {
1389 status = libnetapi_samr_lookup_user_map_USER_INFO(ctx, pipe_cli,
1390 domain_sid,
1391 &domain_handle,
1392 &builtin_handle,
1393 sam->entries[i].name.string,
1394 sam->entries[i].idx,
1395 r->in.level,
1396 r->out.buffer,
1397 r->out.entries_read);
1398 if (!NT_STATUS_IS_OK(status)) {
1399 werr = ntstatus_to_werror(status);
1400 goto done;
1404 done:
1405 /* if last query */
1406 if (NT_STATUS_IS_OK(result) ||
1407 NT_STATUS_IS_ERR(result)) {
1409 if (ctx->disable_policy_handle_cache) {
1410 libnetapi_samr_close_domain_handle(ctx, &domain_handle);
1411 libnetapi_samr_close_builtin_handle(ctx, &builtin_handle);
1412 libnetapi_samr_close_connect_handle(ctx, &connect_handle);
1416 return werr;
1419 /****************************************************************
1420 ****************************************************************/
1422 WERROR NetUserEnum_l(struct libnetapi_ctx *ctx,
1423 struct NetUserEnum *r)
1425 LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx, r, NetUserEnum);
1428 /****************************************************************
1429 ****************************************************************/
1431 static WERROR convert_samr_dispinfo_to_NET_DISPLAY_USER(TALLOC_CTX *mem_ctx,
1432 struct samr_DispInfoGeneral *info,
1433 uint32_t *entries_read,
1434 void **buffer)
1436 struct NET_DISPLAY_USER *user = NULL;
1437 int i;
1439 user = talloc_zero_array(mem_ctx,
1440 struct NET_DISPLAY_USER,
1441 info->count);
1442 W_ERROR_HAVE_NO_MEMORY(user);
1444 for (i = 0; i < info->count; i++) {
1445 user[i].usri1_name = talloc_strdup(mem_ctx,
1446 info->entries[i].account_name.string);
1447 user[i].usri1_comment = talloc_strdup(mem_ctx,
1448 info->entries[i].description.string);
1449 user[i].usri1_flags =
1450 info->entries[i].acct_flags;
1451 user[i].usri1_full_name = talloc_strdup(mem_ctx,
1452 info->entries[i].full_name.string);
1453 user[i].usri1_user_id =
1454 info->entries[i].rid;
1455 user[i].usri1_next_index =
1456 info->entries[i].idx;
1458 if (!user[i].usri1_name) {
1459 return WERR_NOMEM;
1463 *buffer = talloc_memdup(mem_ctx, user,
1464 sizeof(struct NET_DISPLAY_USER) * info->count);
1465 W_ERROR_HAVE_NO_MEMORY(*buffer);
1467 *entries_read = info->count;
1469 return WERR_OK;
1472 /****************************************************************
1473 ****************************************************************/
1475 static WERROR convert_samr_dispinfo_to_NET_DISPLAY_MACHINE(TALLOC_CTX *mem_ctx,
1476 struct samr_DispInfoFull *info,
1477 uint32_t *entries_read,
1478 void **buffer)
1480 struct NET_DISPLAY_MACHINE *machine = NULL;
1481 int i;
1483 machine = talloc_zero_array(mem_ctx,
1484 struct NET_DISPLAY_MACHINE,
1485 info->count);
1486 W_ERROR_HAVE_NO_MEMORY(machine);
1488 for (i = 0; i < info->count; i++) {
1489 machine[i].usri2_name = talloc_strdup(mem_ctx,
1490 info->entries[i].account_name.string);
1491 machine[i].usri2_comment = talloc_strdup(mem_ctx,
1492 info->entries[i].description.string);
1493 machine[i].usri2_flags =
1494 info->entries[i].acct_flags;
1495 machine[i].usri2_user_id =
1496 info->entries[i].rid;
1497 machine[i].usri2_next_index =
1498 info->entries[i].idx;
1500 if (!machine[i].usri2_name) {
1501 return WERR_NOMEM;
1505 *buffer = talloc_memdup(mem_ctx, machine,
1506 sizeof(struct NET_DISPLAY_MACHINE) * info->count);
1507 W_ERROR_HAVE_NO_MEMORY(*buffer);
1509 *entries_read = info->count;
1511 return WERR_OK;
1514 /****************************************************************
1515 ****************************************************************/
1517 static WERROR convert_samr_dispinfo_to_NET_DISPLAY_GROUP(TALLOC_CTX *mem_ctx,
1518 struct samr_DispInfoFullGroups *info,
1519 uint32_t *entries_read,
1520 void **buffer)
1522 struct NET_DISPLAY_GROUP *group = NULL;
1523 int i;
1525 group = talloc_zero_array(mem_ctx,
1526 struct NET_DISPLAY_GROUP,
1527 info->count);
1528 W_ERROR_HAVE_NO_MEMORY(group);
1530 for (i = 0; i < info->count; i++) {
1531 group[i].grpi3_name = talloc_strdup(mem_ctx,
1532 info->entries[i].account_name.string);
1533 group[i].grpi3_comment = talloc_strdup(mem_ctx,
1534 info->entries[i].description.string);
1535 group[i].grpi3_group_id =
1536 info->entries[i].rid;
1537 group[i].grpi3_attributes =
1538 info->entries[i].acct_flags;
1539 group[i].grpi3_next_index =
1540 info->entries[i].idx;
1542 if (!group[i].grpi3_name) {
1543 return WERR_NOMEM;
1547 *buffer = talloc_memdup(mem_ctx, group,
1548 sizeof(struct NET_DISPLAY_GROUP) * info->count);
1549 W_ERROR_HAVE_NO_MEMORY(*buffer);
1551 *entries_read = info->count;
1553 return WERR_OK;
1557 /****************************************************************
1558 ****************************************************************/
1560 static WERROR convert_samr_dispinfo_to_NET_DISPLAY(TALLOC_CTX *mem_ctx,
1561 union samr_DispInfo *info,
1562 uint32_t level,
1563 uint32_t *entries_read,
1564 void **buffer)
1566 switch (level) {
1567 case 1:
1568 return convert_samr_dispinfo_to_NET_DISPLAY_USER(mem_ctx,
1569 &info->info1,
1570 entries_read,
1571 buffer);
1572 case 2:
1573 return convert_samr_dispinfo_to_NET_DISPLAY_MACHINE(mem_ctx,
1574 &info->info2,
1575 entries_read,
1576 buffer);
1577 case 3:
1578 return convert_samr_dispinfo_to_NET_DISPLAY_GROUP(mem_ctx,
1579 &info->info3,
1580 entries_read,
1581 buffer);
1582 default:
1583 break;
1586 return WERR_UNKNOWN_LEVEL;
1589 /****************************************************************
1590 ****************************************************************/
1592 WERROR NetQueryDisplayInformation_r(struct libnetapi_ctx *ctx,
1593 struct NetQueryDisplayInformation *r)
1595 struct rpc_pipe_client *pipe_cli = NULL;
1596 struct policy_handle connect_handle;
1597 struct dom_sid2 *domain_sid = NULL;
1598 struct policy_handle domain_handle;
1599 union samr_DispInfo info;
1600 struct dcerpc_binding_handle *b = NULL;
1602 uint32_t total_size = 0;
1603 uint32_t returned_size = 0;
1605 NTSTATUS status = NT_STATUS_OK;
1606 NTSTATUS result = NT_STATUS_OK;
1607 WERROR werr;
1608 WERROR werr_tmp;
1610 *r->out.entries_read = 0;
1612 ZERO_STRUCT(connect_handle);
1613 ZERO_STRUCT(domain_handle);
1615 switch (r->in.level) {
1616 case 1:
1617 case 2:
1618 case 3:
1619 break;
1620 default:
1621 return WERR_UNKNOWN_LEVEL;
1624 werr = libnetapi_open_pipe(ctx, r->in.server_name,
1625 &ndr_table_samr.syntax_id,
1626 &pipe_cli);
1627 if (!W_ERROR_IS_OK(werr)) {
1628 goto done;
1631 b = pipe_cli->binding_handle;
1633 werr = libnetapi_samr_open_domain(ctx, pipe_cli,
1634 SAMR_ACCESS_ENUM_DOMAINS |
1635 SAMR_ACCESS_LOOKUP_DOMAIN,
1636 SAMR_DOMAIN_ACCESS_LOOKUP_INFO_2 |
1637 SAMR_DOMAIN_ACCESS_ENUM_ACCOUNTS |
1638 SAMR_DOMAIN_ACCESS_OPEN_ACCOUNT,
1639 &connect_handle,
1640 &domain_handle,
1641 &domain_sid);
1642 if (!W_ERROR_IS_OK(werr)) {
1643 goto done;
1646 status = dcerpc_samr_QueryDisplayInfo2(b,
1647 ctx,
1648 &domain_handle,
1649 r->in.level,
1650 r->in.idx,
1651 r->in.entries_requested,
1652 r->in.prefmaxlen,
1653 &total_size,
1654 &returned_size,
1655 &info,
1656 &result);
1657 if (!NT_STATUS_IS_OK(status)) {
1658 werr = ntstatus_to_werror(status);
1659 goto done;
1661 werr = ntstatus_to_werror(result);
1662 if (NT_STATUS_IS_ERR(result)) {
1663 goto done;
1666 werr_tmp = convert_samr_dispinfo_to_NET_DISPLAY(ctx, &info,
1667 r->in.level,
1668 r->out.entries_read,
1669 r->out.buffer);
1670 if (!W_ERROR_IS_OK(werr_tmp)) {
1671 werr = werr_tmp;
1673 done:
1674 /* if last query */
1675 if (NT_STATUS_IS_OK(result) ||
1676 NT_STATUS_IS_ERR(result)) {
1678 if (ctx->disable_policy_handle_cache) {
1679 libnetapi_samr_close_domain_handle(ctx, &domain_handle);
1680 libnetapi_samr_close_connect_handle(ctx, &connect_handle);
1684 return werr;
1688 /****************************************************************
1689 ****************************************************************/
1692 WERROR NetQueryDisplayInformation_l(struct libnetapi_ctx *ctx,
1693 struct NetQueryDisplayInformation *r)
1695 LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx, r, NetQueryDisplayInformation);
1698 /****************************************************************
1699 ****************************************************************/
1701 WERROR NetUserChangePassword_r(struct libnetapi_ctx *ctx,
1702 struct NetUserChangePassword *r)
1704 return WERR_NOT_SUPPORTED;
1707 /****************************************************************
1708 ****************************************************************/
1710 WERROR NetUserChangePassword_l(struct libnetapi_ctx *ctx,
1711 struct NetUserChangePassword *r)
1713 return WERR_NOT_SUPPORTED;
1716 /****************************************************************
1717 ****************************************************************/
1719 WERROR NetUserGetInfo_r(struct libnetapi_ctx *ctx,
1720 struct NetUserGetInfo *r)
1722 struct rpc_pipe_client *pipe_cli = NULL;
1723 NTSTATUS status, result;
1724 WERROR werr;
1726 struct policy_handle connect_handle, domain_handle, builtin_handle, user_handle;
1727 struct lsa_String lsa_account_name;
1728 struct dom_sid2 *domain_sid = NULL;
1729 struct samr_Ids user_rids, name_types;
1730 uint32_t num_entries = 0;
1731 struct dcerpc_binding_handle *b = NULL;
1733 ZERO_STRUCT(connect_handle);
1734 ZERO_STRUCT(domain_handle);
1735 ZERO_STRUCT(builtin_handle);
1736 ZERO_STRUCT(user_handle);
1738 if (!r->out.buffer) {
1739 return WERR_INVALID_PARAM;
1742 switch (r->in.level) {
1743 case 0:
1744 case 1:
1745 case 2:
1746 case 3:
1747 case 4:
1748 case 10:
1749 case 11:
1750 case 20:
1751 case 23:
1752 break;
1753 default:
1754 werr = WERR_UNKNOWN_LEVEL;
1755 goto done;
1758 werr = libnetapi_open_pipe(ctx, r->in.server_name,
1759 &ndr_table_samr.syntax_id,
1760 &pipe_cli);
1761 if (!W_ERROR_IS_OK(werr)) {
1762 goto done;
1765 b = pipe_cli->binding_handle;
1767 werr = libnetapi_samr_open_domain(ctx, pipe_cli,
1768 SAMR_ACCESS_ENUM_DOMAINS |
1769 SAMR_ACCESS_LOOKUP_DOMAIN,
1770 SAMR_DOMAIN_ACCESS_OPEN_ACCOUNT,
1771 &connect_handle,
1772 &domain_handle,
1773 &domain_sid);
1774 if (!W_ERROR_IS_OK(werr)) {
1775 goto done;
1778 werr = libnetapi_samr_open_builtin_domain(ctx, pipe_cli,
1779 SAMR_ACCESS_ENUM_DOMAINS |
1780 SAMR_ACCESS_LOOKUP_DOMAIN,
1781 SAMR_DOMAIN_ACCESS_OPEN_ACCOUNT |
1782 SAMR_DOMAIN_ACCESS_LOOKUP_ALIAS,
1783 &connect_handle,
1784 &builtin_handle);
1785 if (!W_ERROR_IS_OK(werr)) {
1786 goto done;
1789 init_lsa_String(&lsa_account_name, r->in.user_name);
1791 status = dcerpc_samr_LookupNames(b, talloc_tos(),
1792 &domain_handle,
1794 &lsa_account_name,
1795 &user_rids,
1796 &name_types,
1797 &result);
1798 if (!NT_STATUS_IS_OK(status)) {
1799 werr = ntstatus_to_werror(status);
1800 goto done;
1802 if (!NT_STATUS_IS_OK(result)) {
1803 werr = ntstatus_to_werror(result);
1804 goto done;
1807 status = libnetapi_samr_lookup_user_map_USER_INFO(ctx, pipe_cli,
1808 domain_sid,
1809 &domain_handle,
1810 &builtin_handle,
1811 r->in.user_name,
1812 user_rids.ids[0],
1813 r->in.level,
1814 r->out.buffer,
1815 &num_entries);
1816 if (!NT_STATUS_IS_OK(status)) {
1817 werr = ntstatus_to_werror(status);
1818 goto done;
1821 done:
1822 if (is_valid_policy_hnd(&user_handle) && b) {
1823 dcerpc_samr_Close(b, talloc_tos(), &user_handle, &result);
1826 if (ctx->disable_policy_handle_cache) {
1827 libnetapi_samr_close_domain_handle(ctx, &domain_handle);
1828 libnetapi_samr_close_connect_handle(ctx, &connect_handle);
1831 return werr;
1834 /****************************************************************
1835 ****************************************************************/
1837 WERROR NetUserGetInfo_l(struct libnetapi_ctx *ctx,
1838 struct NetUserGetInfo *r)
1840 LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx, r, NetUserGetInfo);
1843 /****************************************************************
1844 ****************************************************************/
1846 WERROR NetUserSetInfo_r(struct libnetapi_ctx *ctx,
1847 struct NetUserSetInfo *r)
1849 struct rpc_pipe_client *pipe_cli = NULL;
1850 NTSTATUS status, result;
1851 WERROR werr;
1853 struct policy_handle connect_handle, domain_handle, builtin_handle, user_handle;
1854 struct lsa_String lsa_account_name;
1855 struct dom_sid2 *domain_sid = NULL;
1856 struct samr_Ids user_rids, name_types;
1857 uint32_t user_mask = 0;
1859 struct USER_INFO_X uX;
1860 struct dcerpc_binding_handle *b = NULL;
1861 DATA_BLOB session_key;
1863 ZERO_STRUCT(connect_handle);
1864 ZERO_STRUCT(domain_handle);
1865 ZERO_STRUCT(builtin_handle);
1866 ZERO_STRUCT(user_handle);
1868 if (!r->in.buffer) {
1869 return WERR_INVALID_PARAM;
1872 switch (r->in.level) {
1873 case 0:
1874 user_mask = SAMR_USER_ACCESS_SET_ATTRIBUTES;
1875 break;
1876 case 1003:
1877 user_mask = SAMR_USER_ACCESS_SET_PASSWORD;
1878 break;
1879 case 1006:
1880 case 1007:
1881 case 1009:
1882 case 1011:
1883 case 1014:
1884 case 1052:
1885 case 1053:
1886 user_mask = SAMR_USER_ACCESS_SET_ATTRIBUTES;
1887 break;
1888 case 1012:
1889 case 1024:
1890 user_mask = SAMR_USER_ACCESS_SET_LOC_COM;
1891 break;
1892 case 1051:
1893 user_mask = SAMR_USER_ACCESS_SET_ATTRIBUTES |
1894 SAMR_USER_ACCESS_GET_GROUPS;
1895 break;
1896 case 3:
1897 user_mask = SEC_STD_READ_CONTROL |
1898 SEC_STD_WRITE_DAC |
1899 SAMR_USER_ACCESS_GET_GROUPS |
1900 SAMR_USER_ACCESS_SET_PASSWORD |
1901 SAMR_USER_ACCESS_SET_ATTRIBUTES |
1902 SAMR_USER_ACCESS_GET_ATTRIBUTES |
1903 SAMR_USER_ACCESS_SET_LOC_COM;
1904 break;
1905 case 1:
1906 case 2:
1907 case 4:
1908 case 21:
1909 case 22:
1910 case 1005:
1911 case 1008:
1912 case 1010:
1913 case 1017:
1914 case 1020:
1915 werr = WERR_NOT_SUPPORTED;
1916 goto done;
1917 default:
1918 werr = WERR_UNKNOWN_LEVEL;
1919 goto done;
1922 werr = libnetapi_open_pipe(ctx, r->in.server_name,
1923 &ndr_table_samr.syntax_id,
1924 &pipe_cli);
1925 if (!W_ERROR_IS_OK(werr)) {
1926 goto done;
1929 b = pipe_cli->binding_handle;
1931 werr = libnetapi_samr_open_domain(ctx, pipe_cli,
1932 SAMR_ACCESS_ENUM_DOMAINS |
1933 SAMR_ACCESS_LOOKUP_DOMAIN,
1934 SAMR_DOMAIN_ACCESS_LOOKUP_INFO_1 |
1935 SAMR_DOMAIN_ACCESS_OPEN_ACCOUNT,
1936 &connect_handle,
1937 &domain_handle,
1938 &domain_sid);
1939 if (!W_ERROR_IS_OK(werr)) {
1940 goto done;
1943 werr = libnetapi_samr_open_builtin_domain(ctx, pipe_cli,
1944 SAMR_ACCESS_ENUM_DOMAINS |
1945 SAMR_ACCESS_LOOKUP_DOMAIN,
1946 SAMR_DOMAIN_ACCESS_OPEN_ACCOUNT |
1947 SAMR_DOMAIN_ACCESS_LOOKUP_ALIAS,
1948 &connect_handle,
1949 &builtin_handle);
1950 if (!W_ERROR_IS_OK(werr)) {
1951 goto done;
1954 init_lsa_String(&lsa_account_name, r->in.user_name);
1956 status = dcerpc_samr_LookupNames(b, talloc_tos(),
1957 &domain_handle,
1959 &lsa_account_name,
1960 &user_rids,
1961 &name_types,
1962 &result);
1963 if (!NT_STATUS_IS_OK(status)) {
1964 werr = ntstatus_to_werror(status);
1965 goto done;
1967 if (!NT_STATUS_IS_OK(result)) {
1968 werr = ntstatus_to_werror(result);
1969 goto done;
1972 status = dcerpc_samr_OpenUser(b, talloc_tos(),
1973 &domain_handle,
1974 user_mask,
1975 user_rids.ids[0],
1976 &user_handle,
1977 &result);
1978 if (!NT_STATUS_IS_OK(status)) {
1979 werr = ntstatus_to_werror(status);
1980 goto done;
1982 if (!NT_STATUS_IS_OK(result)) {
1983 werr = ntstatus_to_werror(result);
1984 goto done;
1987 status = construct_USER_INFO_X(r->in.level, r->in.buffer, &uX);
1988 if (!NT_STATUS_IS_OK(status)) {
1989 werr = ntstatus_to_werror(status);
1990 goto done;
1993 status = cli_get_session_key(talloc_tos(), pipe_cli, &session_key);
1994 if (!NT_STATUS_IS_OK(status)) {
1995 werr = ntstatus_to_werror(status);
1996 goto done;
1999 status = set_user_info_USER_INFO_X(ctx, pipe_cli,
2000 &session_key,
2001 &user_handle,
2002 &uX);
2003 if (!NT_STATUS_IS_OK(status)) {
2004 werr = ntstatus_to_werror(status);
2005 goto done;
2008 werr = WERR_OK;
2010 done:
2011 if (is_valid_policy_hnd(&user_handle) && b) {
2012 dcerpc_samr_Close(b, talloc_tos(), &user_handle, &result);
2015 if (ctx->disable_policy_handle_cache) {
2016 libnetapi_samr_close_domain_handle(ctx, &domain_handle);
2017 libnetapi_samr_close_builtin_handle(ctx, &builtin_handle);
2018 libnetapi_samr_close_connect_handle(ctx, &connect_handle);
2021 return werr;
2024 /****************************************************************
2025 ****************************************************************/
2027 WERROR NetUserSetInfo_l(struct libnetapi_ctx *ctx,
2028 struct NetUserSetInfo *r)
2030 LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx, r, NetUserSetInfo);
2033 /****************************************************************
2034 ****************************************************************/
2036 static NTSTATUS query_USER_MODALS_INFO_rpc(TALLOC_CTX *mem_ctx,
2037 struct rpc_pipe_client *pipe_cli,
2038 struct policy_handle *domain_handle,
2039 struct samr_DomInfo1 *info1,
2040 struct samr_DomInfo3 *info3,
2041 struct samr_DomInfo5 *info5,
2042 struct samr_DomInfo6 *info6,
2043 struct samr_DomInfo7 *info7,
2044 struct samr_DomInfo12 *info12)
2046 NTSTATUS status, result;
2047 union samr_DomainInfo *dom_info = NULL;
2048 struct dcerpc_binding_handle *b = pipe_cli->binding_handle;
2050 if (info1) {
2051 status = dcerpc_samr_QueryDomainInfo(b, mem_ctx,
2052 domain_handle,
2054 &dom_info,
2055 &result);
2056 NT_STATUS_NOT_OK_RETURN(status);
2057 NT_STATUS_NOT_OK_RETURN(result);
2059 *info1 = dom_info->info1;
2062 if (info3) {
2063 status = dcerpc_samr_QueryDomainInfo(b, mem_ctx,
2064 domain_handle,
2066 &dom_info,
2067 &result);
2068 NT_STATUS_NOT_OK_RETURN(status);
2069 NT_STATUS_NOT_OK_RETURN(result);
2071 *info3 = dom_info->info3;
2074 if (info5) {
2075 status = dcerpc_samr_QueryDomainInfo(b, mem_ctx,
2076 domain_handle,
2078 &dom_info,
2079 &result);
2080 NT_STATUS_NOT_OK_RETURN(status);
2081 NT_STATUS_NOT_OK_RETURN(result);
2083 *info5 = dom_info->info5;
2086 if (info6) {
2087 status = dcerpc_samr_QueryDomainInfo(b, mem_ctx,
2088 domain_handle,
2090 &dom_info,
2091 &result);
2092 NT_STATUS_NOT_OK_RETURN(status);
2093 NT_STATUS_NOT_OK_RETURN(result);
2095 *info6 = dom_info->info6;
2098 if (info7) {
2099 status = dcerpc_samr_QueryDomainInfo(b, mem_ctx,
2100 domain_handle,
2102 &dom_info,
2103 &result);
2104 NT_STATUS_NOT_OK_RETURN(status);
2105 NT_STATUS_NOT_OK_RETURN(result);
2107 *info7 = dom_info->info7;
2110 if (info12) {
2111 status = dcerpc_samr_QueryDomainInfo2(b, mem_ctx,
2112 domain_handle,
2114 &dom_info,
2115 &result);
2116 NT_STATUS_NOT_OK_RETURN(status);
2117 NT_STATUS_NOT_OK_RETURN(result);
2119 *info12 = dom_info->info12;
2122 return NT_STATUS_OK;
2125 /****************************************************************
2126 ****************************************************************/
2128 static NTSTATUS query_USER_MODALS_INFO_0(TALLOC_CTX *mem_ctx,
2129 struct rpc_pipe_client *pipe_cli,
2130 struct policy_handle *domain_handle,
2131 struct USER_MODALS_INFO_0 *info0)
2133 NTSTATUS status;
2134 struct samr_DomInfo1 dom_info1;
2135 struct samr_DomInfo3 dom_info3;
2137 ZERO_STRUCTP(info0);
2139 status = query_USER_MODALS_INFO_rpc(mem_ctx,
2140 pipe_cli,
2141 domain_handle,
2142 &dom_info1,
2143 &dom_info3,
2144 NULL,
2145 NULL,
2146 NULL,
2147 NULL);
2148 NT_STATUS_NOT_OK_RETURN(status);
2150 info0->usrmod0_min_passwd_len =
2151 dom_info1.min_password_length;
2152 info0->usrmod0_max_passwd_age =
2153 nt_time_to_unix_abs((NTTIME *)&dom_info1.max_password_age);
2154 info0->usrmod0_min_passwd_age =
2155 nt_time_to_unix_abs((NTTIME *)&dom_info1.min_password_age);
2156 info0->usrmod0_password_hist_len =
2157 dom_info1.password_history_length;
2159 info0->usrmod0_force_logoff =
2160 nt_time_to_unix_abs(&dom_info3.force_logoff_time);
2162 return NT_STATUS_OK;
2165 /****************************************************************
2166 ****************************************************************/
2168 static NTSTATUS query_USER_MODALS_INFO_1(TALLOC_CTX *mem_ctx,
2169 struct rpc_pipe_client *pipe_cli,
2170 struct policy_handle *domain_handle,
2171 struct USER_MODALS_INFO_1 *info1)
2173 NTSTATUS status;
2174 struct samr_DomInfo6 dom_info6;
2175 struct samr_DomInfo7 dom_info7;
2177 status = query_USER_MODALS_INFO_rpc(mem_ctx,
2178 pipe_cli,
2179 domain_handle,
2180 NULL,
2181 NULL,
2182 NULL,
2183 &dom_info6,
2184 &dom_info7,
2185 NULL);
2186 NT_STATUS_NOT_OK_RETURN(status);
2188 info1->usrmod1_primary =
2189 talloc_strdup(mem_ctx, dom_info6.primary.string);
2191 info1->usrmod1_role = dom_info7.role;
2193 return NT_STATUS_OK;
2196 /****************************************************************
2197 ****************************************************************/
2199 static NTSTATUS query_USER_MODALS_INFO_2(TALLOC_CTX *mem_ctx,
2200 struct rpc_pipe_client *pipe_cli,
2201 struct policy_handle *domain_handle,
2202 struct dom_sid *domain_sid,
2203 struct USER_MODALS_INFO_2 *info2)
2205 NTSTATUS status;
2206 struct samr_DomInfo5 dom_info5;
2208 status = query_USER_MODALS_INFO_rpc(mem_ctx,
2209 pipe_cli,
2210 domain_handle,
2211 NULL,
2212 NULL,
2213 &dom_info5,
2214 NULL,
2215 NULL,
2216 NULL);
2217 NT_STATUS_NOT_OK_RETURN(status);
2219 info2->usrmod2_domain_name =
2220 talloc_strdup(mem_ctx, dom_info5.domain_name.string);
2221 info2->usrmod2_domain_id =
2222 (struct domsid *)dom_sid_dup(mem_ctx, domain_sid);
2224 NT_STATUS_HAVE_NO_MEMORY(info2->usrmod2_domain_name);
2225 NT_STATUS_HAVE_NO_MEMORY(info2->usrmod2_domain_id);
2227 return NT_STATUS_OK;
2230 /****************************************************************
2231 ****************************************************************/
2233 static NTSTATUS query_USER_MODALS_INFO_3(TALLOC_CTX *mem_ctx,
2234 struct rpc_pipe_client *pipe_cli,
2235 struct policy_handle *domain_handle,
2236 struct USER_MODALS_INFO_3 *info3)
2238 NTSTATUS status;
2239 struct samr_DomInfo12 dom_info12;
2241 status = query_USER_MODALS_INFO_rpc(mem_ctx,
2242 pipe_cli,
2243 domain_handle,
2244 NULL,
2245 NULL,
2246 NULL,
2247 NULL,
2248 NULL,
2249 &dom_info12);
2250 NT_STATUS_NOT_OK_RETURN(status);
2252 info3->usrmod3_lockout_duration =
2253 nt_time_to_unix_abs(&dom_info12.lockout_duration);
2254 info3->usrmod3_lockout_observation_window =
2255 nt_time_to_unix_abs(&dom_info12.lockout_window);
2256 info3->usrmod3_lockout_threshold =
2257 dom_info12.lockout_threshold;
2259 return NT_STATUS_OK;
2262 /****************************************************************
2263 ****************************************************************/
2265 static NTSTATUS query_USER_MODALS_INFO_to_buffer(TALLOC_CTX *mem_ctx,
2266 struct rpc_pipe_client *pipe_cli,
2267 uint32_t level,
2268 struct policy_handle *domain_handle,
2269 struct dom_sid *domain_sid,
2270 uint8_t **buffer)
2272 NTSTATUS status;
2274 struct USER_MODALS_INFO_0 info0;
2275 struct USER_MODALS_INFO_1 info1;
2276 struct USER_MODALS_INFO_2 info2;
2277 struct USER_MODALS_INFO_3 info3;
2279 if (!buffer) {
2280 return ERROR_INSUFFICIENT_BUFFER;
2283 switch (level) {
2284 case 0:
2285 status = query_USER_MODALS_INFO_0(mem_ctx,
2286 pipe_cli,
2287 domain_handle,
2288 &info0);
2289 NT_STATUS_NOT_OK_RETURN(status);
2291 *buffer = (uint8_t *)talloc_memdup(mem_ctx, &info0,
2292 sizeof(info0));
2293 break;
2295 case 1:
2296 status = query_USER_MODALS_INFO_1(mem_ctx,
2297 pipe_cli,
2298 domain_handle,
2299 &info1);
2300 NT_STATUS_NOT_OK_RETURN(status);
2302 *buffer = (uint8_t *)talloc_memdup(mem_ctx, &info1,
2303 sizeof(info1));
2304 break;
2305 case 2:
2306 status = query_USER_MODALS_INFO_2(mem_ctx,
2307 pipe_cli,
2308 domain_handle,
2309 domain_sid,
2310 &info2);
2311 NT_STATUS_NOT_OK_RETURN(status);
2313 *buffer = (uint8_t *)talloc_memdup(mem_ctx, &info2,
2314 sizeof(info2));
2315 break;
2316 case 3:
2317 status = query_USER_MODALS_INFO_3(mem_ctx,
2318 pipe_cli,
2319 domain_handle,
2320 &info3);
2321 NT_STATUS_NOT_OK_RETURN(status);
2323 *buffer = (uint8_t *)talloc_memdup(mem_ctx, &info3,
2324 sizeof(info3));
2325 break;
2326 default:
2327 break;
2330 NT_STATUS_HAVE_NO_MEMORY(*buffer);
2332 return NT_STATUS_OK;
2335 /****************************************************************
2336 ****************************************************************/
2338 WERROR NetUserModalsGet_r(struct libnetapi_ctx *ctx,
2339 struct NetUserModalsGet *r)
2341 struct rpc_pipe_client *pipe_cli = NULL;
2342 NTSTATUS status;
2343 WERROR werr;
2345 struct policy_handle connect_handle, domain_handle;
2346 struct dom_sid2 *domain_sid = NULL;
2347 uint32_t access_mask = SAMR_DOMAIN_ACCESS_OPEN_ACCOUNT;
2349 ZERO_STRUCT(connect_handle);
2350 ZERO_STRUCT(domain_handle);
2352 if (!r->out.buffer) {
2353 return WERR_INVALID_PARAM;
2356 switch (r->in.level) {
2357 case 0:
2358 access_mask |= SAMR_DOMAIN_ACCESS_LOOKUP_INFO_1 |
2359 SAMR_DOMAIN_ACCESS_LOOKUP_INFO_2;
2360 break;
2361 case 1:
2362 case 2:
2363 access_mask |= SAMR_DOMAIN_ACCESS_LOOKUP_INFO_2;
2364 break;
2365 case 3:
2366 access_mask |= SAMR_DOMAIN_ACCESS_LOOKUP_INFO_1;
2367 break;
2368 default:
2369 werr = WERR_UNKNOWN_LEVEL;
2370 goto done;
2373 werr = libnetapi_open_pipe(ctx, r->in.server_name,
2374 &ndr_table_samr.syntax_id,
2375 &pipe_cli);
2376 if (!W_ERROR_IS_OK(werr)) {
2377 goto done;
2380 werr = libnetapi_samr_open_domain(ctx, pipe_cli,
2381 SAMR_ACCESS_ENUM_DOMAINS |
2382 SAMR_ACCESS_LOOKUP_DOMAIN,
2383 access_mask,
2384 &connect_handle,
2385 &domain_handle,
2386 &domain_sid);
2387 if (!W_ERROR_IS_OK(werr)) {
2388 goto done;
2391 /* 0: 1 + 3 */
2392 /* 1: 6 + 7 */
2393 /* 2: 5 */
2394 /* 3: 12 (DomainInfo2) */
2396 status = query_USER_MODALS_INFO_to_buffer(ctx,
2397 pipe_cli,
2398 r->in.level,
2399 &domain_handle,
2400 domain_sid,
2401 r->out.buffer);
2402 if (!NT_STATUS_IS_OK(status)) {
2403 werr = ntstatus_to_werror(status);
2404 goto done;
2407 done:
2408 if (ctx->disable_policy_handle_cache) {
2409 libnetapi_samr_close_domain_handle(ctx, &domain_handle);
2410 libnetapi_samr_close_connect_handle(ctx, &connect_handle);
2413 return werr;
2416 /****************************************************************
2417 ****************************************************************/
2419 WERROR NetUserModalsGet_l(struct libnetapi_ctx *ctx,
2420 struct NetUserModalsGet *r)
2422 LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx, r, NetUserModalsGet);
2425 /****************************************************************
2426 ****************************************************************/
2428 static NTSTATUS set_USER_MODALS_INFO_rpc(TALLOC_CTX *mem_ctx,
2429 struct rpc_pipe_client *pipe_cli,
2430 struct policy_handle *domain_handle,
2431 struct samr_DomInfo1 *info1,
2432 struct samr_DomInfo3 *info3,
2433 struct samr_DomInfo12 *info12)
2435 NTSTATUS status, result;
2436 union samr_DomainInfo dom_info;
2437 struct dcerpc_binding_handle *b = pipe_cli->binding_handle;
2439 if (info1) {
2441 ZERO_STRUCT(dom_info);
2443 dom_info.info1 = *info1;
2445 status = dcerpc_samr_SetDomainInfo(b, mem_ctx,
2446 domain_handle,
2448 &dom_info,
2449 &result);
2450 NT_STATUS_NOT_OK_RETURN(status);
2451 NT_STATUS_NOT_OK_RETURN(result);
2454 if (info3) {
2456 ZERO_STRUCT(dom_info);
2458 dom_info.info3 = *info3;
2460 status = dcerpc_samr_SetDomainInfo(b, mem_ctx,
2461 domain_handle,
2463 &dom_info,
2464 &result);
2466 NT_STATUS_NOT_OK_RETURN(status);
2467 NT_STATUS_NOT_OK_RETURN(result);
2470 if (info12) {
2472 ZERO_STRUCT(dom_info);
2474 dom_info.info12 = *info12;
2476 status = dcerpc_samr_SetDomainInfo(b, mem_ctx,
2477 domain_handle,
2479 &dom_info,
2480 &result);
2482 NT_STATUS_NOT_OK_RETURN(status);
2483 NT_STATUS_NOT_OK_RETURN(result);
2486 return NT_STATUS_OK;
2489 /****************************************************************
2490 ****************************************************************/
2492 static NTSTATUS set_USER_MODALS_INFO_0_buffer(TALLOC_CTX *mem_ctx,
2493 struct rpc_pipe_client *pipe_cli,
2494 struct policy_handle *domain_handle,
2495 struct USER_MODALS_INFO_0 *info0)
2497 NTSTATUS status;
2498 struct samr_DomInfo1 dom_info_1;
2499 struct samr_DomInfo3 dom_info_3;
2501 status = query_USER_MODALS_INFO_rpc(mem_ctx,
2502 pipe_cli,
2503 domain_handle,
2504 &dom_info_1,
2505 &dom_info_3,
2506 NULL,
2507 NULL,
2508 NULL,
2509 NULL);
2510 NT_STATUS_NOT_OK_RETURN(status);
2512 dom_info_1.min_password_length =
2513 info0->usrmod0_min_passwd_len;
2514 dom_info_1.password_history_length =
2515 info0->usrmod0_password_hist_len;
2517 unix_to_nt_time_abs((NTTIME *)&dom_info_1.max_password_age,
2518 info0->usrmod0_max_passwd_age);
2519 unix_to_nt_time_abs((NTTIME *)&dom_info_1.min_password_age,
2520 info0->usrmod0_min_passwd_age);
2522 unix_to_nt_time_abs(&dom_info_3.force_logoff_time,
2523 info0->usrmod0_force_logoff);
2525 return set_USER_MODALS_INFO_rpc(mem_ctx,
2526 pipe_cli,
2527 domain_handle,
2528 &dom_info_1,
2529 &dom_info_3,
2530 NULL);
2533 /****************************************************************
2534 ****************************************************************/
2536 static NTSTATUS set_USER_MODALS_INFO_3_buffer(TALLOC_CTX *mem_ctx,
2537 struct rpc_pipe_client *pipe_cli,
2538 struct policy_handle *domain_handle,
2539 struct USER_MODALS_INFO_3 *info3)
2541 NTSTATUS status;
2542 struct samr_DomInfo12 dom_info_12;
2544 status = query_USER_MODALS_INFO_rpc(mem_ctx,
2545 pipe_cli,
2546 domain_handle,
2547 NULL,
2548 NULL,
2549 NULL,
2550 NULL,
2551 NULL,
2552 &dom_info_12);
2553 NT_STATUS_NOT_OK_RETURN(status);
2555 unix_to_nt_time_abs((NTTIME *)&dom_info_12.lockout_duration,
2556 info3->usrmod3_lockout_duration);
2557 unix_to_nt_time_abs((NTTIME *)&dom_info_12.lockout_window,
2558 info3->usrmod3_lockout_observation_window);
2559 dom_info_12.lockout_threshold = info3->usrmod3_lockout_threshold;
2561 return set_USER_MODALS_INFO_rpc(mem_ctx,
2562 pipe_cli,
2563 domain_handle,
2564 NULL,
2565 NULL,
2566 &dom_info_12);
2569 /****************************************************************
2570 ****************************************************************/
2572 static NTSTATUS set_USER_MODALS_INFO_1001_buffer(TALLOC_CTX *mem_ctx,
2573 struct rpc_pipe_client *pipe_cli,
2574 struct policy_handle *domain_handle,
2575 struct USER_MODALS_INFO_1001 *info1001)
2577 NTSTATUS status;
2578 struct samr_DomInfo1 dom_info_1;
2580 status = query_USER_MODALS_INFO_rpc(mem_ctx,
2581 pipe_cli,
2582 domain_handle,
2583 &dom_info_1,
2584 NULL,
2585 NULL,
2586 NULL,
2587 NULL,
2588 NULL);
2589 NT_STATUS_NOT_OK_RETURN(status);
2591 dom_info_1.min_password_length =
2592 info1001->usrmod1001_min_passwd_len;
2594 return set_USER_MODALS_INFO_rpc(mem_ctx,
2595 pipe_cli,
2596 domain_handle,
2597 &dom_info_1,
2598 NULL,
2599 NULL);
2602 /****************************************************************
2603 ****************************************************************/
2605 static NTSTATUS set_USER_MODALS_INFO_1002_buffer(TALLOC_CTX *mem_ctx,
2606 struct rpc_pipe_client *pipe_cli,
2607 struct policy_handle *domain_handle,
2608 struct USER_MODALS_INFO_1002 *info1002)
2610 NTSTATUS status;
2611 struct samr_DomInfo1 dom_info_1;
2613 status = query_USER_MODALS_INFO_rpc(mem_ctx,
2614 pipe_cli,
2615 domain_handle,
2616 &dom_info_1,
2617 NULL,
2618 NULL,
2619 NULL,
2620 NULL,
2621 NULL);
2622 NT_STATUS_NOT_OK_RETURN(status);
2624 unix_to_nt_time_abs((NTTIME *)&dom_info_1.max_password_age,
2625 info1002->usrmod1002_max_passwd_age);
2627 return set_USER_MODALS_INFO_rpc(mem_ctx,
2628 pipe_cli,
2629 domain_handle,
2630 &dom_info_1,
2631 NULL,
2632 NULL);
2635 /****************************************************************
2636 ****************************************************************/
2638 static NTSTATUS set_USER_MODALS_INFO_1003_buffer(TALLOC_CTX *mem_ctx,
2639 struct rpc_pipe_client *pipe_cli,
2640 struct policy_handle *domain_handle,
2641 struct USER_MODALS_INFO_1003 *info1003)
2643 NTSTATUS status;
2644 struct samr_DomInfo1 dom_info_1;
2646 status = query_USER_MODALS_INFO_rpc(mem_ctx,
2647 pipe_cli,
2648 domain_handle,
2649 &dom_info_1,
2650 NULL,
2651 NULL,
2652 NULL,
2653 NULL,
2654 NULL);
2655 NT_STATUS_NOT_OK_RETURN(status);
2657 unix_to_nt_time_abs((NTTIME *)&dom_info_1.min_password_age,
2658 info1003->usrmod1003_min_passwd_age);
2660 return set_USER_MODALS_INFO_rpc(mem_ctx,
2661 pipe_cli,
2662 domain_handle,
2663 &dom_info_1,
2664 NULL,
2665 NULL);
2668 /****************************************************************
2669 ****************************************************************/
2671 static NTSTATUS set_USER_MODALS_INFO_1004_buffer(TALLOC_CTX *mem_ctx,
2672 struct rpc_pipe_client *pipe_cli,
2673 struct policy_handle *domain_handle,
2674 struct USER_MODALS_INFO_1004 *info1004)
2676 NTSTATUS status;
2677 struct samr_DomInfo3 dom_info_3;
2679 status = query_USER_MODALS_INFO_rpc(mem_ctx,
2680 pipe_cli,
2681 domain_handle,
2682 NULL,
2683 &dom_info_3,
2684 NULL,
2685 NULL,
2686 NULL,
2687 NULL);
2688 NT_STATUS_NOT_OK_RETURN(status);
2690 unix_to_nt_time_abs(&dom_info_3.force_logoff_time,
2691 info1004->usrmod1004_force_logoff);
2693 return set_USER_MODALS_INFO_rpc(mem_ctx,
2694 pipe_cli,
2695 domain_handle,
2696 NULL,
2697 &dom_info_3,
2698 NULL);
2701 /****************************************************************
2702 ****************************************************************/
2704 static NTSTATUS set_USER_MODALS_INFO_1005_buffer(TALLOC_CTX *mem_ctx,
2705 struct rpc_pipe_client *pipe_cli,
2706 struct policy_handle *domain_handle,
2707 struct USER_MODALS_INFO_1005 *info1005)
2709 NTSTATUS status;
2710 struct samr_DomInfo1 dom_info_1;
2712 status = query_USER_MODALS_INFO_rpc(mem_ctx,
2713 pipe_cli,
2714 domain_handle,
2715 &dom_info_1,
2716 NULL,
2717 NULL,
2718 NULL,
2719 NULL,
2720 NULL);
2721 NT_STATUS_NOT_OK_RETURN(status);
2723 dom_info_1.password_history_length =
2724 info1005->usrmod1005_password_hist_len;
2726 return set_USER_MODALS_INFO_rpc(mem_ctx,
2727 pipe_cli,
2728 domain_handle,
2729 &dom_info_1,
2730 NULL,
2731 NULL);
2734 /****************************************************************
2735 ****************************************************************/
2737 static NTSTATUS set_USER_MODALS_INFO_buffer(TALLOC_CTX *mem_ctx,
2738 struct rpc_pipe_client *pipe_cli,
2739 uint32_t level,
2740 struct policy_handle *domain_handle,
2741 struct dom_sid *domain_sid,
2742 uint8_t *buffer)
2744 struct USER_MODALS_INFO_0 *info0;
2745 struct USER_MODALS_INFO_3 *info3;
2746 struct USER_MODALS_INFO_1001 *info1001;
2747 struct USER_MODALS_INFO_1002 *info1002;
2748 struct USER_MODALS_INFO_1003 *info1003;
2749 struct USER_MODALS_INFO_1004 *info1004;
2750 struct USER_MODALS_INFO_1005 *info1005;
2752 if (!buffer) {
2753 return ERROR_INSUFFICIENT_BUFFER;
2756 switch (level) {
2757 case 0:
2758 info0 = (struct USER_MODALS_INFO_0 *)buffer;
2759 return set_USER_MODALS_INFO_0_buffer(mem_ctx,
2760 pipe_cli,
2761 domain_handle,
2762 info0);
2763 case 3:
2764 info3 = (struct USER_MODALS_INFO_3 *)buffer;
2765 return set_USER_MODALS_INFO_3_buffer(mem_ctx,
2766 pipe_cli,
2767 domain_handle,
2768 info3);
2769 case 1001:
2770 info1001 = (struct USER_MODALS_INFO_1001 *)buffer;
2771 return set_USER_MODALS_INFO_1001_buffer(mem_ctx,
2772 pipe_cli,
2773 domain_handle,
2774 info1001);
2775 case 1002:
2776 info1002 = (struct USER_MODALS_INFO_1002 *)buffer;
2777 return set_USER_MODALS_INFO_1002_buffer(mem_ctx,
2778 pipe_cli,
2779 domain_handle,
2780 info1002);
2781 case 1003:
2782 info1003 = (struct USER_MODALS_INFO_1003 *)buffer;
2783 return set_USER_MODALS_INFO_1003_buffer(mem_ctx,
2784 pipe_cli,
2785 domain_handle,
2786 info1003);
2787 case 1004:
2788 info1004 = (struct USER_MODALS_INFO_1004 *)buffer;
2789 return set_USER_MODALS_INFO_1004_buffer(mem_ctx,
2790 pipe_cli,
2791 domain_handle,
2792 info1004);
2793 case 1005:
2794 info1005 = (struct USER_MODALS_INFO_1005 *)buffer;
2795 return set_USER_MODALS_INFO_1005_buffer(mem_ctx,
2796 pipe_cli,
2797 domain_handle,
2798 info1005);
2800 default:
2801 break;
2804 return NT_STATUS_OK;
2807 /****************************************************************
2808 ****************************************************************/
2810 WERROR NetUserModalsSet_r(struct libnetapi_ctx *ctx,
2811 struct NetUserModalsSet *r)
2813 struct rpc_pipe_client *pipe_cli = NULL;
2814 NTSTATUS status;
2815 WERROR werr;
2817 struct policy_handle connect_handle, domain_handle;
2818 struct dom_sid2 *domain_sid = NULL;
2819 uint32_t access_mask = SAMR_DOMAIN_ACCESS_OPEN_ACCOUNT;
2821 ZERO_STRUCT(connect_handle);
2822 ZERO_STRUCT(domain_handle);
2824 if (!r->in.buffer) {
2825 return WERR_INVALID_PARAM;
2828 switch (r->in.level) {
2829 case 0:
2830 access_mask |= SAMR_DOMAIN_ACCESS_LOOKUP_INFO_1 |
2831 SAMR_DOMAIN_ACCESS_LOOKUP_INFO_2 |
2832 SAMR_DOMAIN_ACCESS_SET_INFO_1 |
2833 SAMR_DOMAIN_ACCESS_SET_INFO_2;
2834 break;
2835 case 3:
2836 case 1001:
2837 case 1002:
2838 case 1003:
2839 case 1005:
2840 access_mask |= SAMR_DOMAIN_ACCESS_LOOKUP_INFO_1 |
2841 SAMR_DOMAIN_ACCESS_SET_INFO_1;
2842 break;
2843 case 1004:
2844 access_mask |= SAMR_DOMAIN_ACCESS_LOOKUP_INFO_2 |
2845 SAMR_DOMAIN_ACCESS_SET_INFO_2;
2846 break;
2847 case 1:
2848 case 2:
2849 case 1006:
2850 case 1007:
2851 werr = WERR_NOT_SUPPORTED;
2852 break;
2853 default:
2854 werr = WERR_UNKNOWN_LEVEL;
2855 goto done;
2858 werr = libnetapi_open_pipe(ctx, r->in.server_name,
2859 &ndr_table_samr.syntax_id,
2860 &pipe_cli);
2861 if (!W_ERROR_IS_OK(werr)) {
2862 goto done;
2865 werr = libnetapi_samr_open_domain(ctx, pipe_cli,
2866 SAMR_ACCESS_ENUM_DOMAINS |
2867 SAMR_ACCESS_LOOKUP_DOMAIN,
2868 access_mask,
2869 &connect_handle,
2870 &domain_handle,
2871 &domain_sid);
2872 if (!W_ERROR_IS_OK(werr)) {
2873 goto done;
2876 status = set_USER_MODALS_INFO_buffer(ctx,
2877 pipe_cli,
2878 r->in.level,
2879 &domain_handle,
2880 domain_sid,
2881 r->in.buffer);
2882 if (!NT_STATUS_IS_OK(status)) {
2883 werr = ntstatus_to_werror(status);
2884 goto done;
2887 done:
2888 if (ctx->disable_policy_handle_cache) {
2889 libnetapi_samr_close_domain_handle(ctx, &domain_handle);
2890 libnetapi_samr_close_connect_handle(ctx, &connect_handle);
2893 return werr;
2896 /****************************************************************
2897 ****************************************************************/
2899 WERROR NetUserModalsSet_l(struct libnetapi_ctx *ctx,
2900 struct NetUserModalsSet *r)
2902 LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx, r, NetUserModalsSet);
2905 /****************************************************************
2906 ****************************************************************/
2908 NTSTATUS add_GROUP_USERS_INFO_X_buffer(TALLOC_CTX *mem_ctx,
2909 uint32_t level,
2910 const char *group_name,
2911 uint32_t attributes,
2912 uint8_t **buffer,
2913 uint32_t *num_entries)
2915 struct GROUP_USERS_INFO_0 u0;
2916 struct GROUP_USERS_INFO_1 u1;
2918 switch (level) {
2919 case 0:
2920 if (group_name) {
2921 u0.grui0_name = talloc_strdup(mem_ctx, group_name);
2922 NT_STATUS_HAVE_NO_MEMORY(u0.grui0_name);
2923 } else {
2924 u0.grui0_name = NULL;
2927 ADD_TO_ARRAY(mem_ctx, struct GROUP_USERS_INFO_0, u0,
2928 (struct GROUP_USERS_INFO_0 **)buffer, num_entries);
2929 break;
2930 case 1:
2931 if (group_name) {
2932 u1.grui1_name = talloc_strdup(mem_ctx, group_name);
2933 NT_STATUS_HAVE_NO_MEMORY(u1.grui1_name);
2934 } else {
2935 u1.grui1_name = NULL;
2938 u1.grui1_attributes = attributes;
2940 ADD_TO_ARRAY(mem_ctx, struct GROUP_USERS_INFO_1, u1,
2941 (struct GROUP_USERS_INFO_1 **)buffer, num_entries);
2942 break;
2943 default:
2944 return NT_STATUS_INVALID_INFO_CLASS;
2947 return NT_STATUS_OK;
2950 /****************************************************************
2951 ****************************************************************/
2953 WERROR NetUserGetGroups_r(struct libnetapi_ctx *ctx,
2954 struct NetUserGetGroups *r)
2956 struct rpc_pipe_client *pipe_cli = NULL;
2957 struct policy_handle connect_handle, domain_handle, user_handle;
2958 struct lsa_String lsa_account_name;
2959 struct dom_sid2 *domain_sid = NULL;
2960 struct samr_Ids user_rids, name_types;
2961 struct samr_RidWithAttributeArray *rid_array = NULL;
2962 struct lsa_Strings names;
2963 struct samr_Ids types;
2964 uint32_t *rids = NULL;
2966 int i;
2967 uint32_t entries_read = 0;
2969 NTSTATUS status = NT_STATUS_OK;
2970 NTSTATUS result = NT_STATUS_OK;
2971 WERROR werr;
2972 struct dcerpc_binding_handle *b = NULL;
2974 ZERO_STRUCT(connect_handle);
2975 ZERO_STRUCT(domain_handle);
2977 if (!r->out.buffer) {
2978 return WERR_INVALID_PARAM;
2981 *r->out.buffer = NULL;
2982 *r->out.entries_read = 0;
2983 *r->out.total_entries = 0;
2985 switch (r->in.level) {
2986 case 0:
2987 case 1:
2988 break;
2989 default:
2990 return WERR_UNKNOWN_LEVEL;
2993 werr = libnetapi_open_pipe(ctx, r->in.server_name,
2994 &ndr_table_samr.syntax_id,
2995 &pipe_cli);
2996 if (!W_ERROR_IS_OK(werr)) {
2997 goto done;
3000 b = pipe_cli->binding_handle;
3002 werr = libnetapi_samr_open_domain(ctx, pipe_cli,
3003 SAMR_ACCESS_ENUM_DOMAINS |
3004 SAMR_ACCESS_LOOKUP_DOMAIN,
3005 SAMR_DOMAIN_ACCESS_OPEN_ACCOUNT,
3006 &connect_handle,
3007 &domain_handle,
3008 &domain_sid);
3009 if (!W_ERROR_IS_OK(werr)) {
3010 goto done;
3013 init_lsa_String(&lsa_account_name, r->in.user_name);
3015 status = dcerpc_samr_LookupNames(b, talloc_tos(),
3016 &domain_handle,
3018 &lsa_account_name,
3019 &user_rids,
3020 &name_types,
3021 &result);
3022 if (!NT_STATUS_IS_OK(status)) {
3023 werr = ntstatus_to_werror(status);
3024 goto done;
3026 if (!NT_STATUS_IS_OK(result)) {
3027 werr = ntstatus_to_werror(result);
3028 goto done;
3031 status = dcerpc_samr_OpenUser(b, talloc_tos(),
3032 &domain_handle,
3033 SAMR_USER_ACCESS_GET_GROUPS,
3034 user_rids.ids[0],
3035 &user_handle,
3036 &result);
3037 if (!NT_STATUS_IS_OK(status)) {
3038 werr = ntstatus_to_werror(status);
3039 goto done;
3041 if (!NT_STATUS_IS_OK(result)) {
3042 werr = ntstatus_to_werror(result);
3043 goto done;
3046 status = dcerpc_samr_GetGroupsForUser(b, talloc_tos(),
3047 &user_handle,
3048 &rid_array,
3049 &result);
3050 if (!NT_STATUS_IS_OK(status)) {
3051 werr = ntstatus_to_werror(status);
3052 goto done;
3054 if (!NT_STATUS_IS_OK(result)) {
3055 werr = ntstatus_to_werror(result);
3056 goto done;
3059 rids = talloc_array(ctx, uint32_t, rid_array->count);
3060 if (!rids) {
3061 werr = WERR_NOMEM;
3062 goto done;
3065 for (i=0; i < rid_array->count; i++) {
3066 rids[i] = rid_array->rids[i].rid;
3069 status = dcerpc_samr_LookupRids(b, talloc_tos(),
3070 &domain_handle,
3071 rid_array->count,
3072 rids,
3073 &names,
3074 &types,
3075 &result);
3076 if (!NT_STATUS_IS_OK(status)) {
3077 werr = ntstatus_to_werror(status);
3078 goto done;
3080 if (!NT_STATUS_IS_OK(result) &&
3081 !NT_STATUS_EQUAL(result, STATUS_SOME_UNMAPPED)) {
3082 werr = ntstatus_to_werror(result);
3083 goto done;
3086 for (i=0; i < names.count; i++) {
3087 status = add_GROUP_USERS_INFO_X_buffer(ctx,
3088 r->in.level,
3089 names.names[i].string,
3090 rid_array->rids[i].attributes,
3091 r->out.buffer,
3092 &entries_read);
3093 if (!NT_STATUS_IS_OK(status)) {
3094 werr = ntstatus_to_werror(status);
3095 goto done;
3099 *r->out.entries_read = entries_read;
3100 *r->out.total_entries = entries_read;
3102 done:
3103 if (ctx->disable_policy_handle_cache) {
3104 libnetapi_samr_close_domain_handle(ctx, &domain_handle);
3105 libnetapi_samr_close_connect_handle(ctx, &connect_handle);
3108 return werr;
3111 /****************************************************************
3112 ****************************************************************/
3114 WERROR NetUserGetGroups_l(struct libnetapi_ctx *ctx,
3115 struct NetUserGetGroups *r)
3117 LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx, r, NetUserGetGroups);
3120 /****************************************************************
3121 ****************************************************************/
3123 WERROR NetUserSetGroups_r(struct libnetapi_ctx *ctx,
3124 struct NetUserSetGroups *r)
3126 struct rpc_pipe_client *pipe_cli = NULL;
3127 struct policy_handle connect_handle, domain_handle, user_handle, group_handle;
3128 struct lsa_String lsa_account_name;
3129 struct dom_sid2 *domain_sid = NULL;
3130 struct samr_Ids user_rids, name_types;
3131 struct samr_Ids group_rids;
3132 struct samr_RidWithAttributeArray *rid_array = NULL;
3133 struct lsa_String *lsa_names = NULL;
3135 uint32_t *add_rids = NULL;
3136 uint32_t *del_rids = NULL;
3137 size_t num_add_rids = 0;
3138 size_t num_del_rids = 0;
3140 uint32_t *member_rids = NULL;
3142 struct GROUP_USERS_INFO_0 *i0 = NULL;
3143 struct GROUP_USERS_INFO_1 *i1 = NULL;
3145 int i, k;
3147 NTSTATUS status = NT_STATUS_OK;
3148 NTSTATUS result = NT_STATUS_OK;
3149 WERROR werr;
3150 struct dcerpc_binding_handle *b = NULL;
3152 ZERO_STRUCT(connect_handle);
3153 ZERO_STRUCT(domain_handle);
3154 ZERO_STRUCT(group_handle);
3156 if (!r->in.buffer) {
3157 return WERR_INVALID_PARAM;
3160 switch (r->in.level) {
3161 case 0:
3162 case 1:
3163 break;
3164 default:
3165 return WERR_UNKNOWN_LEVEL;
3168 werr = libnetapi_open_pipe(ctx, r->in.server_name,
3169 &ndr_table_samr.syntax_id,
3170 &pipe_cli);
3171 if (!W_ERROR_IS_OK(werr)) {
3172 goto done;
3175 b = pipe_cli->binding_handle;
3177 werr = libnetapi_samr_open_domain(ctx, pipe_cli,
3178 SAMR_ACCESS_ENUM_DOMAINS |
3179 SAMR_ACCESS_LOOKUP_DOMAIN,
3180 SAMR_DOMAIN_ACCESS_OPEN_ACCOUNT,
3181 &connect_handle,
3182 &domain_handle,
3183 &domain_sid);
3184 if (!W_ERROR_IS_OK(werr)) {
3185 goto done;
3188 init_lsa_String(&lsa_account_name, r->in.user_name);
3190 status = dcerpc_samr_LookupNames(b, talloc_tos(),
3191 &domain_handle,
3193 &lsa_account_name,
3194 &user_rids,
3195 &name_types,
3196 &result);
3197 if (!NT_STATUS_IS_OK(status)) {
3198 werr = ntstatus_to_werror(status);
3199 goto done;
3201 if (!NT_STATUS_IS_OK(result)) {
3202 werr = ntstatus_to_werror(result);
3203 goto done;
3206 status = dcerpc_samr_OpenUser(b, talloc_tos(),
3207 &domain_handle,
3208 SAMR_USER_ACCESS_GET_GROUPS,
3209 user_rids.ids[0],
3210 &user_handle,
3211 &result);
3212 if (!NT_STATUS_IS_OK(status)) {
3213 werr = ntstatus_to_werror(status);
3214 goto done;
3216 if (!NT_STATUS_IS_OK(result)) {
3217 werr = ntstatus_to_werror(result);
3218 goto done;
3221 switch (r->in.level) {
3222 case 0:
3223 i0 = (struct GROUP_USERS_INFO_0 *)r->in.buffer;
3224 break;
3225 case 1:
3226 i1 = (struct GROUP_USERS_INFO_1 *)r->in.buffer;
3227 break;
3230 lsa_names = talloc_array(ctx, struct lsa_String, r->in.num_entries);
3231 if (!lsa_names) {
3232 werr = WERR_NOMEM;
3233 goto done;
3236 for (i=0; i < r->in.num_entries; i++) {
3238 switch (r->in.level) {
3239 case 0:
3240 init_lsa_String(&lsa_names[i], i0->grui0_name);
3241 i0++;
3242 break;
3243 case 1:
3244 init_lsa_String(&lsa_names[i], i1->grui1_name);
3245 i1++;
3246 break;
3250 status = dcerpc_samr_LookupNames(b, talloc_tos(),
3251 &domain_handle,
3252 r->in.num_entries,
3253 lsa_names,
3254 &group_rids,
3255 &name_types,
3256 &result);
3257 if (!NT_STATUS_IS_OK(status)) {
3258 werr = ntstatus_to_werror(status);
3259 goto done;
3261 if (!NT_STATUS_IS_OK(result)) {
3262 werr = ntstatus_to_werror(result);
3263 goto done;
3266 member_rids = group_rids.ids;
3268 status = dcerpc_samr_GetGroupsForUser(b, talloc_tos(),
3269 &user_handle,
3270 &rid_array,
3271 &result);
3272 if (!NT_STATUS_IS_OK(status)) {
3273 werr = ntstatus_to_werror(status);
3274 goto done;
3276 if (!NT_STATUS_IS_OK(result)) {
3277 werr = ntstatus_to_werror(result);
3278 goto done;
3281 /* add list */
3283 for (i=0; i < r->in.num_entries; i++) {
3284 bool already_member = false;
3285 for (k=0; k < rid_array->count; k++) {
3286 if (member_rids[i] == rid_array->rids[k].rid) {
3287 already_member = true;
3288 break;
3291 if (!already_member) {
3292 if (!add_rid_to_array_unique(ctx,
3293 member_rids[i],
3294 &add_rids, &num_add_rids)) {
3295 werr = WERR_GENERAL_FAILURE;
3296 goto done;
3301 /* del list */
3303 for (k=0; k < rid_array->count; k++) {
3304 bool keep_member = false;
3305 for (i=0; i < r->in.num_entries; i++) {
3306 if (member_rids[i] == rid_array->rids[k].rid) {
3307 keep_member = true;
3308 break;
3311 if (!keep_member) {
3312 if (!add_rid_to_array_unique(ctx,
3313 rid_array->rids[k].rid,
3314 &del_rids, &num_del_rids)) {
3315 werr = WERR_GENERAL_FAILURE;
3316 goto done;
3321 /* add list */
3323 for (i=0; i < num_add_rids; i++) {
3324 status = dcerpc_samr_OpenGroup(b, talloc_tos(),
3325 &domain_handle,
3326 SAMR_GROUP_ACCESS_ADD_MEMBER,
3327 add_rids[i],
3328 &group_handle,
3329 &result);
3330 if (!NT_STATUS_IS_OK(status)) {
3331 werr = ntstatus_to_werror(status);
3332 goto done;
3334 if (!NT_STATUS_IS_OK(result)) {
3335 werr = ntstatus_to_werror(result);
3336 goto done;
3339 status = dcerpc_samr_AddGroupMember(b, talloc_tos(),
3340 &group_handle,
3341 user_rids.ids[0],
3342 7 /* ? */,
3343 &result);
3344 if (!NT_STATUS_IS_OK(status)) {
3345 werr = ntstatus_to_werror(status);
3346 goto done;
3348 if (!NT_STATUS_IS_OK(result)) {
3349 werr = ntstatus_to_werror(result);
3350 goto done;
3353 if (is_valid_policy_hnd(&group_handle)) {
3354 dcerpc_samr_Close(b, talloc_tos(), &group_handle, &result);
3358 /* del list */
3360 for (i=0; i < num_del_rids; i++) {
3361 status = dcerpc_samr_OpenGroup(b, talloc_tos(),
3362 &domain_handle,
3363 SAMR_GROUP_ACCESS_REMOVE_MEMBER,
3364 del_rids[i],
3365 &group_handle,
3366 &result);
3367 if (!NT_STATUS_IS_OK(status)) {
3368 werr = ntstatus_to_werror(status);
3369 goto done;
3371 if (!NT_STATUS_IS_OK(result)) {
3372 werr = ntstatus_to_werror(result);
3373 goto done;
3376 status = dcerpc_samr_DeleteGroupMember(b, talloc_tos(),
3377 &group_handle,
3378 user_rids.ids[0],
3379 &result);
3380 if (!NT_STATUS_IS_OK(status)) {
3381 werr = ntstatus_to_werror(status);
3382 goto done;
3384 if (!NT_STATUS_IS_OK(result)) {
3385 werr = ntstatus_to_werror(result);
3386 goto done;
3389 if (is_valid_policy_hnd(&group_handle)) {
3390 dcerpc_samr_Close(b, talloc_tos(), &group_handle, &result);
3394 werr = WERR_OK;
3396 done:
3397 if (is_valid_policy_hnd(&group_handle)) {
3398 dcerpc_samr_Close(b, talloc_tos(), &group_handle, &result);
3401 if (ctx->disable_policy_handle_cache) {
3402 libnetapi_samr_close_domain_handle(ctx, &domain_handle);
3403 libnetapi_samr_close_connect_handle(ctx, &connect_handle);
3406 return werr;
3409 /****************************************************************
3410 ****************************************************************/
3412 WERROR NetUserSetGroups_l(struct libnetapi_ctx *ctx,
3413 struct NetUserSetGroups *r)
3415 LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx, r, NetUserSetGroups);
3418 /****************************************************************
3419 ****************************************************************/
3421 static NTSTATUS add_LOCALGROUP_USERS_INFO_X_buffer(TALLOC_CTX *mem_ctx,
3422 uint32_t level,
3423 const char *group_name,
3424 uint8_t **buffer,
3425 uint32_t *num_entries)
3427 struct LOCALGROUP_USERS_INFO_0 u0;
3429 switch (level) {
3430 case 0:
3431 u0.lgrui0_name = talloc_strdup(mem_ctx, group_name);
3432 NT_STATUS_HAVE_NO_MEMORY(u0.lgrui0_name);
3434 ADD_TO_ARRAY(mem_ctx, struct LOCALGROUP_USERS_INFO_0, u0,
3435 (struct LOCALGROUP_USERS_INFO_0 **)buffer, num_entries);
3436 break;
3437 default:
3438 return NT_STATUS_INVALID_INFO_CLASS;
3441 return NT_STATUS_OK;
3444 /****************************************************************
3445 ****************************************************************/
3447 WERROR NetUserGetLocalGroups_r(struct libnetapi_ctx *ctx,
3448 struct NetUserGetLocalGroups *r)
3450 struct rpc_pipe_client *pipe_cli = NULL;
3451 struct policy_handle connect_handle, domain_handle, user_handle,
3452 builtin_handle;
3453 struct lsa_String lsa_account_name;
3454 struct dom_sid2 *domain_sid = NULL;
3455 struct samr_Ids user_rids, name_types;
3456 struct samr_RidWithAttributeArray *rid_array = NULL;
3457 struct lsa_Strings names;
3458 struct samr_Ids types;
3459 uint32_t *rids = NULL;
3460 size_t num_rids = 0;
3461 struct dom_sid user_sid;
3462 struct lsa_SidArray sid_array;
3463 struct samr_Ids domain_rids;
3464 struct samr_Ids builtin_rids;
3466 int i;
3467 uint32_t entries_read = 0;
3469 NTSTATUS status = NT_STATUS_OK;
3470 NTSTATUS result = NT_STATUS_OK;
3471 WERROR werr;
3472 struct dcerpc_binding_handle *b = NULL;
3474 ZERO_STRUCT(connect_handle);
3475 ZERO_STRUCT(domain_handle);
3477 if (!r->out.buffer) {
3478 return WERR_INVALID_PARAM;
3481 *r->out.buffer = NULL;
3482 *r->out.entries_read = 0;
3483 *r->out.total_entries = 0;
3485 switch (r->in.level) {
3486 case 0:
3487 case 1:
3488 break;
3489 default:
3490 return WERR_UNKNOWN_LEVEL;
3493 werr = libnetapi_open_pipe(ctx, r->in.server_name,
3494 &ndr_table_samr.syntax_id,
3495 &pipe_cli);
3496 if (!W_ERROR_IS_OK(werr)) {
3497 goto done;
3500 b = pipe_cli->binding_handle;
3502 werr = libnetapi_samr_open_domain(ctx, pipe_cli,
3503 SAMR_ACCESS_ENUM_DOMAINS |
3504 SAMR_ACCESS_LOOKUP_DOMAIN,
3505 SAMR_DOMAIN_ACCESS_OPEN_ACCOUNT |
3506 SAMR_DOMAIN_ACCESS_LOOKUP_ALIAS,
3507 &connect_handle,
3508 &domain_handle,
3509 &domain_sid);
3510 if (!W_ERROR_IS_OK(werr)) {
3511 goto done;
3514 werr = libnetapi_samr_open_builtin_domain(ctx, pipe_cli,
3515 SAMR_ACCESS_ENUM_DOMAINS |
3516 SAMR_ACCESS_LOOKUP_DOMAIN,
3517 SAMR_DOMAIN_ACCESS_OPEN_ACCOUNT |
3518 SAMR_DOMAIN_ACCESS_LOOKUP_ALIAS,
3519 &connect_handle,
3520 &builtin_handle);
3521 if (!W_ERROR_IS_OK(werr)) {
3522 goto done;
3525 init_lsa_String(&lsa_account_name, r->in.user_name);
3527 status = dcerpc_samr_LookupNames(b, talloc_tos(),
3528 &domain_handle,
3530 &lsa_account_name,
3531 &user_rids,
3532 &name_types,
3533 &result);
3534 if (!NT_STATUS_IS_OK(status)) {
3535 werr = ntstatus_to_werror(status);
3536 goto done;
3538 if (!NT_STATUS_IS_OK(result)) {
3539 werr = ntstatus_to_werror(result);
3540 goto done;
3543 status = dcerpc_samr_OpenUser(b, talloc_tos(),
3544 &domain_handle,
3545 SAMR_USER_ACCESS_GET_GROUPS,
3546 user_rids.ids[0],
3547 &user_handle,
3548 &result);
3549 if (!NT_STATUS_IS_OK(status)) {
3550 werr = ntstatus_to_werror(status);
3551 goto done;
3553 if (!NT_STATUS_IS_OK(result)) {
3554 werr = ntstatus_to_werror(result);
3555 goto done;
3558 status = dcerpc_samr_GetGroupsForUser(b, talloc_tos(),
3559 &user_handle,
3560 &rid_array,
3561 &result);
3562 if (!NT_STATUS_IS_OK(status)) {
3563 werr = ntstatus_to_werror(status);
3564 goto done;
3566 if (!NT_STATUS_IS_OK(result)) {
3567 werr = ntstatus_to_werror(result);
3568 goto done;
3571 if (!sid_compose(&user_sid, domain_sid, user_rids.ids[0])) {
3572 werr = WERR_NOMEM;
3573 goto done;
3576 sid_array.num_sids = rid_array->count + 1;
3577 sid_array.sids = talloc_array(ctx, struct lsa_SidPtr, sid_array.num_sids);
3578 if (!sid_array.sids) {
3579 werr = WERR_NOMEM;
3580 goto done;
3583 sid_array.sids[0].sid = dom_sid_dup(ctx, &user_sid);
3584 if (!sid_array.sids[0].sid) {
3585 werr = WERR_NOMEM;
3586 goto done;
3589 for (i=0; i < rid_array->count; i++) {
3590 struct dom_sid sid;
3592 if (!sid_compose(&sid, domain_sid, rid_array->rids[i].rid)) {
3593 werr = WERR_NOMEM;
3594 goto done;
3597 sid_array.sids[i+1].sid = dom_sid_dup(ctx, &sid);
3598 if (!sid_array.sids[i+1].sid) {
3599 werr = WERR_NOMEM;
3600 goto done;
3604 status = dcerpc_samr_GetAliasMembership(b, talloc_tos(),
3605 &domain_handle,
3606 &sid_array,
3607 &domain_rids,
3608 &result);
3609 if (!NT_STATUS_IS_OK(status)) {
3610 werr = ntstatus_to_werror(status);
3611 goto done;
3613 if (!NT_STATUS_IS_OK(result)) {
3614 werr = ntstatus_to_werror(result);
3615 goto done;
3618 for (i=0; i < domain_rids.count; i++) {
3619 if (!add_rid_to_array_unique(ctx, domain_rids.ids[i],
3620 &rids, &num_rids)) {
3621 werr = WERR_NOMEM;
3622 goto done;
3626 status = dcerpc_samr_GetAliasMembership(b, talloc_tos(),
3627 &builtin_handle,
3628 &sid_array,
3629 &builtin_rids,
3630 &result);
3631 if (!NT_STATUS_IS_OK(status)) {
3632 werr = ntstatus_to_werror(status);
3633 goto done;
3635 if (!NT_STATUS_IS_OK(result)) {
3636 werr = ntstatus_to_werror(result);
3637 goto done;
3640 for (i=0; i < builtin_rids.count; i++) {
3641 if (!add_rid_to_array_unique(ctx, builtin_rids.ids[i],
3642 &rids, &num_rids)) {
3643 werr = WERR_NOMEM;
3644 goto done;
3648 status = dcerpc_samr_LookupRids(b, talloc_tos(),
3649 &builtin_handle,
3650 num_rids,
3651 rids,
3652 &names,
3653 &types,
3654 &result);
3655 if (!NT_STATUS_IS_OK(status)) {
3656 werr = ntstatus_to_werror(status);
3657 goto done;
3659 if (!NT_STATUS_IS_OK(result)) {
3660 werr = ntstatus_to_werror(result);
3661 goto done;
3664 for (i=0; i < names.count; i++) {
3665 status = add_LOCALGROUP_USERS_INFO_X_buffer(ctx,
3666 r->in.level,
3667 names.names[i].string,
3668 r->out.buffer,
3669 &entries_read);
3670 if (!NT_STATUS_IS_OK(status)) {
3671 werr = ntstatus_to_werror(status);
3672 goto done;
3676 *r->out.entries_read = entries_read;
3677 *r->out.total_entries = entries_read;
3679 done:
3680 if (ctx->disable_policy_handle_cache) {
3681 libnetapi_samr_close_domain_handle(ctx, &domain_handle);
3682 libnetapi_samr_close_connect_handle(ctx, &connect_handle);
3685 return werr;
3688 /****************************************************************
3689 ****************************************************************/
3691 WERROR NetUserGetLocalGroups_l(struct libnetapi_ctx *ctx,
3692 struct NetUserGetLocalGroups *r)
3694 LIBNETAPI_REDIRECT_TO_LOCALHOST(ctx, r, NetUserGetLocalGroups);