r19655: Jeremy, please review:
[Samba/bb.git] / source3 / rpc_client / cli_samr.c
blob7a4d9fd58abbf076277362e559da75916fc42591
1 /*
2 Unix SMB/CIFS implementation.
3 RPC pipe client
4 Copyright (C) Tim Potter 2000-2001,
5 Copyright (C) Andrew Tridgell 1992-1997,2000,
6 Copyright (C) Rafal Szczesniak 2002.
7 Copyright (C) Jeremy Allison 2005.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 #include "includes.h"
26 /* Connect to SAMR database */
28 NTSTATUS rpccli_samr_connect(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
29 uint32 access_mask, POLICY_HND *connect_pol)
31 prs_struct qbuf, rbuf;
32 SAMR_Q_CONNECT q;
33 SAMR_R_CONNECT r;
34 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
36 DEBUG(10,("cli_samr_connect to %s\n", cli->cli->desthost));
38 ZERO_STRUCT(q);
39 ZERO_STRUCT(r);
41 /* Marshall data and send request */
43 init_samr_q_connect(&q, cli->cli->desthost, access_mask);
45 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_CONNECT,
46 q, r,
47 qbuf, rbuf,
48 samr_io_q_connect,
49 samr_io_r_connect,
50 NT_STATUS_UNSUCCESSFUL);
51 /* Return output parameters */
53 if (NT_STATUS_IS_OK(result = r.status)) {
54 *connect_pol = r.connect_pol;
57 return result;
60 /* Connect to SAMR database */
62 NTSTATUS rpccli_samr_connect4(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
63 uint32 access_mask, POLICY_HND *connect_pol)
65 prs_struct qbuf, rbuf;
66 SAMR_Q_CONNECT4 q;
67 SAMR_R_CONNECT4 r;
68 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
70 ZERO_STRUCT(q);
71 ZERO_STRUCT(r);
73 /* Marshall data and send request */
75 init_samr_q_connect4(&q, cli->cli->desthost, access_mask);
77 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_CONNECT4,
78 q, r,
79 qbuf, rbuf,
80 samr_io_q_connect4,
81 samr_io_r_connect4,
82 NT_STATUS_UNSUCCESSFUL);
84 /* Return output parameters */
86 if (NT_STATUS_IS_OK(result = r.status)) {
87 *connect_pol = r.connect_pol;
90 return result;
93 /* Close SAMR handle */
95 NTSTATUS rpccli_samr_close(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
96 POLICY_HND *connect_pol)
98 prs_struct qbuf, rbuf;
99 SAMR_Q_CLOSE_HND q;
100 SAMR_R_CLOSE_HND r;
101 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
103 DEBUG(10,("cli_samr_close\n"));
105 ZERO_STRUCT(q);
106 ZERO_STRUCT(r);
108 /* Marshall data and send request */
110 init_samr_q_close_hnd(&q, connect_pol);
112 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_CLOSE_HND,
113 q, r,
114 qbuf, rbuf,
115 samr_io_q_close_hnd,
116 samr_io_r_close_hnd,
117 NT_STATUS_UNSUCCESSFUL);
119 /* Return output parameters */
121 if (NT_STATUS_IS_OK(result = r.status)) {
122 *connect_pol = r.pol;
125 return result;
128 /* Open handle on a domain */
130 NTSTATUS rpccli_samr_open_domain(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
131 POLICY_HND *connect_pol, uint32 access_mask,
132 const DOM_SID *domain_sid,
133 POLICY_HND *domain_pol)
135 prs_struct qbuf, rbuf;
136 SAMR_Q_OPEN_DOMAIN q;
137 SAMR_R_OPEN_DOMAIN r;
138 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
140 DEBUG(10,("cli_samr_open_domain with sid %s\n", sid_string_static(domain_sid) ));
142 ZERO_STRUCT(q);
143 ZERO_STRUCT(r);
145 /* Marshall data and send request */
147 init_samr_q_open_domain(&q, connect_pol, access_mask, domain_sid);
149 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_OPEN_DOMAIN,
150 q, r,
151 qbuf, rbuf,
152 samr_io_q_open_domain,
153 samr_io_r_open_domain,
154 NT_STATUS_UNSUCCESSFUL);
156 /* Return output parameters */
158 if (NT_STATUS_IS_OK(result = r.status)) {
159 *domain_pol = r.domain_pol;
162 return result;
165 NTSTATUS rpccli_samr_open_user(struct rpc_pipe_client *cli,
166 TALLOC_CTX *mem_ctx,
167 POLICY_HND *domain_pol, uint32 access_mask,
168 uint32 user_rid, POLICY_HND *user_pol)
170 prs_struct qbuf, rbuf;
171 SAMR_Q_OPEN_USER q;
172 SAMR_R_OPEN_USER r;
173 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
175 DEBUG(10,("cli_samr_open_user with rid 0x%x\n", user_rid ));
177 ZERO_STRUCT(q);
178 ZERO_STRUCT(r);
180 /* Marshall data and send request */
182 init_samr_q_open_user(&q, domain_pol, access_mask, user_rid);
184 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_OPEN_USER,
185 q, r,
186 qbuf, rbuf,
187 samr_io_q_open_user,
188 samr_io_r_open_user,
189 NT_STATUS_UNSUCCESSFUL);
191 /* Return output parameters */
193 if (NT_STATUS_IS_OK(result = r.status)) {
194 *user_pol = r.user_pol;
197 return result;
200 /* Open handle on a group */
202 NTSTATUS rpccli_samr_open_group(struct rpc_pipe_client *cli,
203 TALLOC_CTX *mem_ctx,
204 POLICY_HND *domain_pol, uint32 access_mask,
205 uint32 group_rid, POLICY_HND *group_pol)
207 prs_struct qbuf, rbuf;
208 SAMR_Q_OPEN_GROUP q;
209 SAMR_R_OPEN_GROUP r;
210 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
212 DEBUG(10,("cli_samr_open_group with rid 0x%x\n", group_rid ));
214 ZERO_STRUCT(q);
215 ZERO_STRUCT(r);
217 /* Marshall data and send request */
219 init_samr_q_open_group(&q, domain_pol, access_mask, group_rid);
221 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_OPEN_GROUP,
222 q, r,
223 qbuf, rbuf,
224 samr_io_q_open_group,
225 samr_io_r_open_group,
226 NT_STATUS_UNSUCCESSFUL);
228 /* Return output parameters */
230 if (NT_STATUS_IS_OK(result = r.status)) {
231 *group_pol = r.pol;
234 return result;
237 /* Create domain group */
239 NTSTATUS rpccli_samr_create_dom_group(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
240 POLICY_HND *domain_pol,
241 const char *group_name,
242 uint32 access_mask, POLICY_HND *group_pol)
244 prs_struct qbuf, rbuf;
245 SAMR_Q_CREATE_DOM_GROUP q;
246 SAMR_R_CREATE_DOM_GROUP r;
247 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
249 DEBUG(10,("cli_samr_create_dom_group\n"));
251 ZERO_STRUCT(q);
252 ZERO_STRUCT(r);
254 /* Marshall data and send request */
256 init_samr_q_create_dom_group(&q, domain_pol, group_name, access_mask);
258 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_CREATE_DOM_GROUP,
259 q, r,
260 qbuf, rbuf,
261 samr_io_q_create_dom_group,
262 samr_io_r_create_dom_group,
263 NT_STATUS_UNSUCCESSFUL);
265 /* Return output parameters */
267 result = r.status;
269 if (NT_STATUS_IS_OK(result))
270 *group_pol = r.pol;
272 return result;
275 /* Add a domain group member */
277 NTSTATUS rpccli_samr_add_groupmem(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
278 POLICY_HND *group_pol, uint32 rid)
280 prs_struct qbuf, rbuf;
281 SAMR_Q_ADD_GROUPMEM q;
282 SAMR_R_ADD_GROUPMEM r;
283 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
285 DEBUG(10,("cli_samr_add_groupmem\n"));
287 ZERO_STRUCT(q);
288 ZERO_STRUCT(r);
290 /* Marshall data and send request */
292 init_samr_q_add_groupmem(&q, group_pol, rid);
294 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_ADD_GROUPMEM,
295 q, r,
296 qbuf, rbuf,
297 samr_io_q_add_groupmem,
298 samr_io_r_add_groupmem,
299 NT_STATUS_UNSUCCESSFUL);
301 /* Return output parameters */
303 result = r.status;
305 return result;
308 /* Delete a domain group member */
310 NTSTATUS rpccli_samr_del_groupmem(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
311 POLICY_HND *group_pol, uint32 rid)
313 prs_struct qbuf, rbuf;
314 SAMR_Q_DEL_GROUPMEM q;
315 SAMR_R_DEL_GROUPMEM r;
316 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
318 DEBUG(10,("cli_samr_del_groupmem\n"));
320 ZERO_STRUCT(q);
321 ZERO_STRUCT(r);
323 /* Marshall data and send request */
325 init_samr_q_del_groupmem(&q, group_pol, rid);
327 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_DEL_GROUPMEM,
328 q, r,
329 qbuf, rbuf,
330 samr_io_q_del_groupmem,
331 samr_io_r_del_groupmem,
332 NT_STATUS_UNSUCCESSFUL);
334 /* Return output parameters */
336 result = r.status;
338 return result;
341 /* Query user info */
343 NTSTATUS rpccli_samr_query_userinfo(struct rpc_pipe_client *cli,
344 TALLOC_CTX *mem_ctx,
345 const POLICY_HND *user_pol,
346 uint16 switch_value,
347 SAM_USERINFO_CTR **ctr)
349 prs_struct qbuf, rbuf;
350 SAMR_Q_QUERY_USERINFO q;
351 SAMR_R_QUERY_USERINFO r;
352 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
354 DEBUG(10,("cli_samr_query_userinfo\n"));
356 ZERO_STRUCT(q);
357 ZERO_STRUCT(r);
359 /* Marshall data and send request */
361 init_samr_q_query_userinfo(&q, user_pol, switch_value);
363 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_QUERY_USERINFO,
364 q, r,
365 qbuf, rbuf,
366 samr_io_q_query_userinfo,
367 samr_io_r_query_userinfo,
368 NT_STATUS_UNSUCCESSFUL);
370 /* Return output parameters */
372 result = r.status;
373 *ctr = r.ctr;
375 return result;
378 /* Set group info */
380 NTSTATUS rpccli_samr_set_groupinfo(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
381 POLICY_HND *group_pol, GROUP_INFO_CTR *ctr)
383 prs_struct qbuf, rbuf;
384 SAMR_Q_SET_GROUPINFO q;
385 SAMR_R_SET_GROUPINFO r;
386 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
388 DEBUG(10,("cli_samr_set_groupinfo\n"));
390 ZERO_STRUCT(q);
391 ZERO_STRUCT(r);
393 /* Marshall data and send request */
395 init_samr_q_set_groupinfo(&q, group_pol, ctr);
397 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_SET_GROUPINFO,
398 q, r,
399 qbuf, rbuf,
400 samr_io_q_set_groupinfo,
401 samr_io_r_set_groupinfo,
402 NT_STATUS_UNSUCCESSFUL);
404 /* Return output parameters */
406 result = r.status;
408 return result;
411 /* Query group info */
413 NTSTATUS rpccli_samr_query_groupinfo(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
414 POLICY_HND *group_pol, uint32 info_level,
415 GROUP_INFO_CTR **ctr)
417 prs_struct qbuf, rbuf;
418 SAMR_Q_QUERY_GROUPINFO q;
419 SAMR_R_QUERY_GROUPINFO r;
420 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
422 DEBUG(10,("cli_samr_query_groupinfo\n"));
424 ZERO_STRUCT(q);
425 ZERO_STRUCT(r);
427 /* Marshall data and send request */
429 init_samr_q_query_groupinfo(&q, group_pol, info_level);
431 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_QUERY_GROUPINFO,
432 q, r,
433 qbuf, rbuf,
434 samr_io_q_query_groupinfo,
435 samr_io_r_query_groupinfo,
436 NT_STATUS_UNSUCCESSFUL);
438 *ctr = r.ctr;
440 /* Return output parameters */
442 result = r.status;
444 return result;
447 /* Query user groups */
449 NTSTATUS rpccli_samr_query_usergroups(struct rpc_pipe_client *cli,
450 TALLOC_CTX *mem_ctx,
451 POLICY_HND *user_pol,
452 uint32 *num_groups,
453 DOM_GID **gid)
455 prs_struct qbuf, rbuf;
456 SAMR_Q_QUERY_USERGROUPS q;
457 SAMR_R_QUERY_USERGROUPS r;
458 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
460 DEBUG(10,("cli_samr_query_usergroups\n"));
462 ZERO_STRUCT(q);
463 ZERO_STRUCT(r);
465 /* Marshall data and send request */
467 init_samr_q_query_usergroups(&q, user_pol);
469 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_QUERY_USERGROUPS,
470 q, r,
471 qbuf, rbuf,
472 samr_io_q_query_usergroups,
473 samr_io_r_query_usergroups,
474 NT_STATUS_UNSUCCESSFUL);
476 /* Return output parameters */
478 if (NT_STATUS_IS_OK(result = r.status)) {
479 *num_groups = r.num_entries;
480 *gid = r.gid;
483 return result;
486 /* Set alias info */
488 NTSTATUS rpccli_samr_set_aliasinfo(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
489 POLICY_HND *alias_pol, ALIAS_INFO_CTR *ctr)
491 prs_struct qbuf, rbuf;
492 SAMR_Q_SET_ALIASINFO q;
493 SAMR_R_SET_ALIASINFO r;
494 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
496 DEBUG(10,("cli_samr_set_aliasinfo\n"));
498 ZERO_STRUCT(q);
499 ZERO_STRUCT(r);
501 /* Marshall data and send request */
503 init_samr_q_set_aliasinfo(&q, alias_pol, ctr);
505 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_SET_ALIASINFO,
506 q, r,
507 qbuf, rbuf,
508 samr_io_q_set_aliasinfo,
509 samr_io_r_set_aliasinfo,
510 NT_STATUS_UNSUCCESSFUL);
512 /* Return output parameters */
514 result = r.status;
516 return result;
519 /* Query user aliases */
521 NTSTATUS rpccli_samr_query_useraliases(struct rpc_pipe_client *cli,
522 TALLOC_CTX *mem_ctx,
523 POLICY_HND *dom_pol, uint32 num_sids,
524 DOM_SID2 *sid,
525 uint32 *num_aliases, uint32 **als_rids)
527 prs_struct qbuf, rbuf;
528 SAMR_Q_QUERY_USERALIASES q;
529 SAMR_R_QUERY_USERALIASES r;
530 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
531 int i;
532 uint32 *sid_ptrs;
534 DEBUG(10,("cli_samr_query_useraliases\n"));
536 ZERO_STRUCT(q);
537 ZERO_STRUCT(r);
539 sid_ptrs = TALLOC_ARRAY(mem_ctx, uint32, num_sids);
540 if (sid_ptrs == NULL)
541 return NT_STATUS_NO_MEMORY;
543 for (i=0; i<num_sids; i++)
544 sid_ptrs[i] = 1;
546 /* Marshall data and send request */
548 init_samr_q_query_useraliases(&q, dom_pol, num_sids, sid_ptrs, sid);
550 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_QUERY_USERALIASES,
551 q, r,
552 qbuf, rbuf,
553 samr_io_q_query_useraliases,
554 samr_io_r_query_useraliases,
555 NT_STATUS_UNSUCCESSFUL);
557 /* Return output parameters */
559 if (NT_STATUS_IS_OK(result = r.status)) {
560 *num_aliases = r.num_entries;
561 *als_rids = r.rid;
564 return result;
567 /* Query user groups */
569 NTSTATUS rpccli_samr_query_groupmem(struct rpc_pipe_client *cli,
570 TALLOC_CTX *mem_ctx,
571 POLICY_HND *group_pol, uint32 *num_mem,
572 uint32 **rid, uint32 **attr)
574 prs_struct qbuf, rbuf;
575 SAMR_Q_QUERY_GROUPMEM q;
576 SAMR_R_QUERY_GROUPMEM r;
577 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
579 DEBUG(10,("cli_samr_query_groupmem\n"));
581 ZERO_STRUCT(q);
582 ZERO_STRUCT(r);
584 /* Marshall data and send request */
586 init_samr_q_query_groupmem(&q, group_pol);
588 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_QUERY_GROUPMEM,
589 q, r,
590 qbuf, rbuf,
591 samr_io_q_query_groupmem,
592 samr_io_r_query_groupmem,
593 NT_STATUS_UNSUCCESSFUL);
595 /* Return output parameters */
597 if (NT_STATUS_IS_OK(result = r.status)) {
598 *num_mem = r.num_entries;
599 *rid = r.rid;
600 *attr = r.attr;
603 return result;
607 * Enumerate domain users
609 * @param cli client state structure
610 * @param mem_ctx talloc context
611 * @param pol opened domain policy handle
612 * @param start_idx starting index of enumeration, returns context for
613 next enumeration
614 * @param acb_mask account control bit mask (to enumerate some particular
615 * kind of accounts)
616 * @param size max acceptable size of response
617 * @param dom_users returned array of domain user names
618 * @param rids returned array of domain user RIDs
619 * @param num_dom_users numer returned entries
621 * @return NTSTATUS returned in rpc response
624 NTSTATUS rpccli_samr_enum_dom_users(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
625 POLICY_HND *pol, uint32 *start_idx, uint32 acb_mask,
626 uint32 size, char ***dom_users, uint32 **rids,
627 uint32 *num_dom_users)
629 prs_struct qbuf;
630 prs_struct rbuf;
631 SAMR_Q_ENUM_DOM_USERS q;
632 SAMR_R_ENUM_DOM_USERS r;
633 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
634 int i;
636 DEBUG(10,("cli_samr_enum_dom_users starting at index %u\n", (unsigned int)*start_idx));
638 ZERO_STRUCT(q);
639 ZERO_STRUCT(r);
641 /* always init this */
642 *num_dom_users = 0;
644 /* Fill query structure with parameters */
646 init_samr_q_enum_dom_users(&q, pol, *start_idx, acb_mask, size);
648 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_ENUM_DOM_USERS,
649 q, r,
650 qbuf, rbuf,
651 samr_io_q_enum_dom_users,
652 samr_io_r_enum_dom_users,
653 NT_STATUS_UNSUCCESSFUL);
655 result = r.status;
657 if (!NT_STATUS_IS_OK(result) &&
658 NT_STATUS_V(result) != NT_STATUS_V(STATUS_MORE_ENTRIES))
659 goto done;
661 *start_idx = r.next_idx;
662 *num_dom_users = r.num_entries2;
664 if (r.num_entries2) {
665 /* allocate memory needed to return received data */
666 *rids = TALLOC_ARRAY(mem_ctx, uint32, r.num_entries2);
667 if (!*rids) {
668 DEBUG(0, ("Error in cli_samr_enum_dom_users(): out of memory\n"));
669 return NT_STATUS_NO_MEMORY;
672 *dom_users = TALLOC_ARRAY(mem_ctx, char*, r.num_entries2);
673 if (!*dom_users) {
674 DEBUG(0, ("Error in cli_samr_enum_dom_users(): out of memory\n"));
675 return NT_STATUS_NO_MEMORY;
678 /* fill output buffers with rpc response */
679 for (i = 0; i < r.num_entries2; i++) {
680 fstring conv_buf;
682 (*rids)[i] = r.sam[i].rid;
683 unistr2_to_ascii(conv_buf, &(r.uni_acct_name[i]), sizeof(conv_buf) - 1);
684 (*dom_users)[i] = talloc_strdup(mem_ctx, conv_buf);
688 done:
689 return result;
692 /* Enumerate domain groups */
694 NTSTATUS rpccli_samr_enum_dom_groups(struct rpc_pipe_client *cli,
695 TALLOC_CTX *mem_ctx,
696 POLICY_HND *pol, uint32 *start_idx,
697 uint32 size, struct acct_info **dom_groups,
698 uint32 *num_dom_groups)
700 prs_struct qbuf, rbuf;
701 SAMR_Q_ENUM_DOM_GROUPS q;
702 SAMR_R_ENUM_DOM_GROUPS r;
703 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
704 uint32 name_idx, i;
706 DEBUG(10,("cli_samr_enum_dom_groups starting at index %u\n", (unsigned int)*start_idx));
708 ZERO_STRUCT(q);
709 ZERO_STRUCT(r);
711 /* Marshall data and send request */
713 init_samr_q_enum_dom_groups(&q, pol, *start_idx, size);
715 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_ENUM_DOM_GROUPS,
716 q, r,
717 qbuf, rbuf,
718 samr_io_q_enum_dom_groups,
719 samr_io_r_enum_dom_groups,
720 NT_STATUS_UNSUCCESSFUL);
722 /* Return output parameters */
724 result = r.status;
726 if (!NT_STATUS_IS_OK(result) &&
727 NT_STATUS_V(result) != NT_STATUS_V(STATUS_MORE_ENTRIES))
728 goto done;
730 *num_dom_groups = r.num_entries2;
732 if (*num_dom_groups == 0)
733 goto done;
735 if (!((*dom_groups) = TALLOC_ARRAY(mem_ctx, struct acct_info, *num_dom_groups))) {
736 result = NT_STATUS_NO_MEMORY;
737 goto done;
740 memset(*dom_groups, 0, sizeof(struct acct_info) * (*num_dom_groups));
742 name_idx = 0;
744 for (i = 0; i < *num_dom_groups; i++) {
746 (*dom_groups)[i].rid = r.sam[i].rid;
748 if (r.sam[i].hdr_name.buffer) {
749 unistr2_to_ascii((*dom_groups)[i].acct_name,
750 &r.uni_grp_name[name_idx],
751 sizeof(fstring) - 1);
752 name_idx++;
755 *start_idx = r.next_idx;
758 done:
759 return result;
762 /* Enumerate domain groups */
764 NTSTATUS rpccli_samr_enum_als_groups(struct rpc_pipe_client *cli,
765 TALLOC_CTX *mem_ctx,
766 POLICY_HND *pol, uint32 *start_idx,
767 uint32 size, struct acct_info **dom_aliases,
768 uint32 *num_dom_aliases)
770 prs_struct qbuf, rbuf;
771 SAMR_Q_ENUM_DOM_ALIASES q;
772 SAMR_R_ENUM_DOM_ALIASES r;
773 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
774 uint32 name_idx, i;
776 DEBUG(10,("cli_samr_enum_als_groups starting at index %u\n", (unsigned int)*start_idx));
778 ZERO_STRUCT(q);
779 ZERO_STRUCT(r);
781 /* Marshall data and send request */
783 init_samr_q_enum_dom_aliases(&q, pol, *start_idx, size);
785 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_ENUM_DOM_ALIASES,
786 q, r,
787 qbuf, rbuf,
788 samr_io_q_enum_dom_aliases,
789 samr_io_r_enum_dom_aliases,
790 NT_STATUS_UNSUCCESSFUL);
792 /* Return output parameters */
794 result = r.status;
796 if (!NT_STATUS_IS_OK(result) &&
797 NT_STATUS_V(result) != NT_STATUS_V(STATUS_MORE_ENTRIES)) {
798 goto done;
801 *num_dom_aliases = r.num_entries2;
803 if (*num_dom_aliases == 0)
804 goto done;
806 if (!((*dom_aliases) = TALLOC_ARRAY(mem_ctx, struct acct_info, *num_dom_aliases))) {
807 result = NT_STATUS_NO_MEMORY;
808 goto done;
811 memset(*dom_aliases, 0, sizeof(struct acct_info) * *num_dom_aliases);
813 name_idx = 0;
815 for (i = 0; i < *num_dom_aliases; i++) {
817 (*dom_aliases)[i].rid = r.sam[i].rid;
819 if (r.sam[i].hdr_name.buffer) {
820 unistr2_to_ascii((*dom_aliases)[i].acct_name,
821 &r.uni_grp_name[name_idx],
822 sizeof(fstring) - 1);
823 name_idx++;
826 *start_idx = r.next_idx;
829 done:
830 return result;
833 /* Query alias members */
835 NTSTATUS rpccli_samr_query_aliasmem(struct rpc_pipe_client *cli,
836 TALLOC_CTX *mem_ctx,
837 POLICY_HND *alias_pol, uint32 *num_mem,
838 DOM_SID **sids)
840 prs_struct qbuf, rbuf;
841 SAMR_Q_QUERY_ALIASMEM q;
842 SAMR_R_QUERY_ALIASMEM r;
843 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
844 uint32 i;
846 DEBUG(10,("cli_samr_query_aliasmem\n"));
848 ZERO_STRUCT(q);
849 ZERO_STRUCT(r);
851 /* Marshall data and send request */
853 init_samr_q_query_aliasmem(&q, alias_pol);
855 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_QUERY_ALIASMEM,
856 q, r,
857 qbuf, rbuf,
858 samr_io_q_query_aliasmem,
859 samr_io_r_query_aliasmem,
860 NT_STATUS_UNSUCCESSFUL);
862 /* Return output parameters */
864 if (!NT_STATUS_IS_OK(result = r.status)) {
865 goto done;
868 *num_mem = r.num_sids;
870 if (*num_mem == 0) {
871 *sids = NULL;
872 result = NT_STATUS_OK;
873 goto done;
876 if (!(*sids = TALLOC_ARRAY(mem_ctx, DOM_SID, *num_mem))) {
877 result = NT_STATUS_UNSUCCESSFUL;
878 goto done;
881 for (i = 0; i < *num_mem; i++) {
882 (*sids)[i] = r.sid[i].sid;
885 done:
886 return result;
889 /* Open handle on an alias */
891 NTSTATUS rpccli_samr_open_alias(struct rpc_pipe_client *cli,
892 TALLOC_CTX *mem_ctx,
893 POLICY_HND *domain_pol, uint32 access_mask,
894 uint32 alias_rid, POLICY_HND *alias_pol)
896 prs_struct qbuf, rbuf;
897 SAMR_Q_OPEN_ALIAS q;
898 SAMR_R_OPEN_ALIAS r;
899 NTSTATUS result;
901 DEBUG(10,("cli_samr_open_alias with rid 0x%x\n", alias_rid));
903 ZERO_STRUCT(q);
904 ZERO_STRUCT(r);
906 /* Marshall data and send request */
908 init_samr_q_open_alias(&q, domain_pol, access_mask, alias_rid);
910 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_OPEN_ALIAS,
911 q, r,
912 qbuf, rbuf,
913 samr_io_q_open_alias,
914 samr_io_r_open_alias,
915 NT_STATUS_UNSUCCESSFUL);
917 /* Return output parameters */
919 if (NT_STATUS_IS_OK(result = r.status)) {
920 *alias_pol = r.pol;
923 return result;
926 /* Create an alias */
928 NTSTATUS rpccli_samr_create_dom_alias(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
929 POLICY_HND *domain_pol, const char *name,
930 POLICY_HND *alias_pol)
932 prs_struct qbuf, rbuf;
933 SAMR_Q_CREATE_DOM_ALIAS q;
934 SAMR_R_CREATE_DOM_ALIAS r;
935 NTSTATUS result;
937 DEBUG(10,("cli_samr_create_dom_alias named %s\n", name));
939 ZERO_STRUCT(q);
940 ZERO_STRUCT(r);
942 /* Marshall data and send request */
944 init_samr_q_create_dom_alias(&q, domain_pol, name);
946 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_CREATE_DOM_ALIAS,
947 q, r,
948 qbuf, rbuf,
949 samr_io_q_create_dom_alias,
950 samr_io_r_create_dom_alias,
951 NT_STATUS_UNSUCCESSFUL);
953 /* Return output parameters */
955 if (NT_STATUS_IS_OK(result = r.status)) {
956 *alias_pol = r.alias_pol;
959 return result;
962 /* Add an alias member */
964 NTSTATUS rpccli_samr_add_aliasmem(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
965 POLICY_HND *alias_pol, DOM_SID *member)
967 prs_struct qbuf, rbuf;
968 SAMR_Q_ADD_ALIASMEM q;
969 SAMR_R_ADD_ALIASMEM r;
970 NTSTATUS result;
972 DEBUG(10,("cli_samr_add_aliasmem"));
974 ZERO_STRUCT(q);
975 ZERO_STRUCT(r);
977 /* Marshall data and send request */
979 init_samr_q_add_aliasmem(&q, alias_pol, member);
981 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_ADD_ALIASMEM,
982 q, r,
983 qbuf, rbuf,
984 samr_io_q_add_aliasmem,
985 samr_io_r_add_aliasmem,
986 NT_STATUS_UNSUCCESSFUL);
988 result = r.status;
990 return result;
993 /* Delete an alias member */
995 NTSTATUS rpccli_samr_del_aliasmem(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
996 POLICY_HND *alias_pol, DOM_SID *member)
998 prs_struct qbuf, rbuf;
999 SAMR_Q_DEL_ALIASMEM q;
1000 SAMR_R_DEL_ALIASMEM r;
1001 NTSTATUS result;
1003 DEBUG(10,("cli_samr_del_aliasmem"));
1005 ZERO_STRUCT(q);
1006 ZERO_STRUCT(r);
1008 /* Marshall data and send request */
1010 init_samr_q_del_aliasmem(&q, alias_pol, member);
1012 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_DEL_ALIASMEM,
1013 q, r,
1014 qbuf, rbuf,
1015 samr_io_q_del_aliasmem,
1016 samr_io_r_del_aliasmem,
1017 NT_STATUS_UNSUCCESSFUL);
1019 result = r.status;
1021 return result;
1024 /* Query alias info */
1026 NTSTATUS rpccli_samr_query_alias_info(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
1027 POLICY_HND *alias_pol, uint16 switch_value,
1028 ALIAS_INFO_CTR *ctr)
1030 prs_struct qbuf, rbuf;
1031 SAMR_Q_QUERY_ALIASINFO q;
1032 SAMR_R_QUERY_ALIASINFO r;
1033 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1035 DEBUG(10,("cli_samr_query_alias_info\n"));
1037 ZERO_STRUCT(q);
1038 ZERO_STRUCT(r);
1040 /* Marshall data and send request */
1042 init_samr_q_query_aliasinfo(&q, alias_pol, switch_value);
1044 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_QUERY_ALIASINFO,
1045 q, r,
1046 qbuf, rbuf,
1047 samr_io_q_query_aliasinfo,
1048 samr_io_r_query_aliasinfo,
1049 NT_STATUS_UNSUCCESSFUL);
1051 /* Return output parameters */
1053 if (!NT_STATUS_IS_OK(result = r.status)) {
1054 goto done;
1057 *ctr = *r.ctr;
1059 done:
1061 return result;
1064 /* Query domain info */
1066 NTSTATUS rpccli_samr_query_dom_info(struct rpc_pipe_client *cli,
1067 TALLOC_CTX *mem_ctx,
1068 POLICY_HND *domain_pol,
1069 uint16 switch_value,
1070 SAM_UNK_CTR *ctr)
1072 prs_struct qbuf, rbuf;
1073 SAMR_Q_QUERY_DOMAIN_INFO q;
1074 SAMR_R_QUERY_DOMAIN_INFO r;
1075 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1077 DEBUG(10,("cli_samr_query_dom_info\n"));
1079 ZERO_STRUCT(q);
1080 ZERO_STRUCT(r);
1082 /* Marshall data and send request */
1084 init_samr_q_query_domain_info(&q, domain_pol, switch_value);
1086 r.ctr = ctr;
1088 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_QUERY_DOMAIN_INFO,
1089 q, r,
1090 qbuf, rbuf,
1091 samr_io_q_query_domain_info,
1092 samr_io_r_query_domain_info,
1093 NT_STATUS_UNSUCCESSFUL);
1095 /* Return output parameters */
1097 if (!NT_STATUS_IS_OK(result = r.status)) {
1098 goto done;
1101 done:
1103 return result;
1106 /* Query domain info2 */
1108 NTSTATUS rpccli_samr_query_dom_info2(struct rpc_pipe_client *cli,
1109 TALLOC_CTX *mem_ctx,
1110 POLICY_HND *domain_pol,
1111 uint16 switch_value,
1112 SAM_UNK_CTR *ctr)
1114 prs_struct qbuf, rbuf;
1115 SAMR_Q_QUERY_DOMAIN_INFO2 q;
1116 SAMR_R_QUERY_DOMAIN_INFO2 r;
1117 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1119 DEBUG(10,("cli_samr_query_dom_info2\n"));
1121 ZERO_STRUCT(q);
1122 ZERO_STRUCT(r);
1124 /* Marshall data and send request */
1126 init_samr_q_query_domain_info2(&q, domain_pol, switch_value);
1128 r.ctr = ctr;
1130 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_QUERY_DOMAIN_INFO2,
1131 q, r,
1132 qbuf, rbuf,
1133 samr_io_q_query_domain_info2,
1134 samr_io_r_query_domain_info2,
1135 NT_STATUS_UNSUCCESSFUL);
1137 /* Return output parameters */
1139 if (!NT_STATUS_IS_OK(result = r.status)) {
1140 goto done;
1143 done:
1145 return result;
1148 /* Set domain info */
1150 NTSTATUS rpccli_samr_set_domain_info(struct rpc_pipe_client *cli,
1151 TALLOC_CTX *mem_ctx,
1152 POLICY_HND *domain_pol,
1153 uint16 switch_value,
1154 SAM_UNK_CTR *ctr)
1156 prs_struct qbuf, rbuf;
1157 SAMR_Q_SET_DOMAIN_INFO q;
1158 SAMR_R_SET_DOMAIN_INFO r;
1159 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1161 DEBUG(10,("cli_samr_set_domain_info\n"));
1163 ZERO_STRUCT(q);
1164 ZERO_STRUCT(r);
1166 /* Marshall data and send request */
1168 init_samr_q_set_domain_info(&q, domain_pol, switch_value, ctr);
1170 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_SET_DOMAIN_INFO,
1171 q, r,
1172 qbuf, rbuf,
1173 samr_io_q_set_domain_info,
1174 samr_io_r_set_domain_info,
1175 NT_STATUS_UNSUCCESSFUL);
1177 /* Return output parameters */
1179 if (!NT_STATUS_IS_OK(result = r.status)) {
1180 goto done;
1183 done:
1185 return result;
1188 /* User change password */
1190 NTSTATUS rpccli_samr_chgpasswd_user(struct rpc_pipe_client *cli,
1191 TALLOC_CTX *mem_ctx,
1192 const char *username,
1193 const char *newpassword,
1194 const char *oldpassword )
1196 prs_struct qbuf, rbuf;
1197 SAMR_Q_CHGPASSWD_USER q;
1198 SAMR_R_CHGPASSWD_USER r;
1199 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1201 uchar new_nt_password[516];
1202 uchar new_lm_password[516];
1203 uchar old_nt_hash[16];
1204 uchar old_lanman_hash[16];
1205 uchar old_nt_hash_enc[16];
1206 uchar old_lanman_hash_enc[16];
1208 uchar new_nt_hash[16];
1209 uchar new_lanman_hash[16];
1211 char *srv_name_slash = talloc_asprintf(mem_ctx, "\\\\%s", cli->cli->desthost);
1213 DEBUG(10,("rpccli_samr_chgpasswd_user\n"));
1215 ZERO_STRUCT(q);
1216 ZERO_STRUCT(r);
1218 /* Calculate the MD4 hash (NT compatible) of the password */
1219 E_md4hash(oldpassword, old_nt_hash);
1220 E_md4hash(newpassword, new_nt_hash);
1222 if (lp_client_lanman_auth()
1223 && E_deshash(newpassword, new_lanman_hash)
1224 && E_deshash(oldpassword, old_lanman_hash)) {
1225 /* E_deshash returns false for 'long' passwords (> 14
1226 DOS chars). This allows us to match Win2k, which
1227 does not store a LM hash for these passwords (which
1228 would reduce the effective password length to 14) */
1230 encode_pw_buffer(new_lm_password, newpassword, STR_UNICODE);
1232 SamOEMhash( new_lm_password, old_nt_hash, 516);
1233 E_old_pw_hash( new_nt_hash, old_lanman_hash, old_lanman_hash_enc);
1234 } else {
1235 ZERO_STRUCT(new_lm_password);
1236 ZERO_STRUCT(old_lanman_hash_enc);
1239 encode_pw_buffer(new_nt_password, newpassword, STR_UNICODE);
1241 SamOEMhash( new_nt_password, old_nt_hash, 516);
1242 E_old_pw_hash( new_nt_hash, old_nt_hash, old_nt_hash_enc);
1244 /* Marshall data and send request */
1246 init_samr_q_chgpasswd_user(&q, srv_name_slash, username,
1247 new_nt_password,
1248 old_nt_hash_enc,
1249 new_lm_password,
1250 old_lanman_hash_enc);
1252 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_CHGPASSWD_USER,
1253 q, r,
1254 qbuf, rbuf,
1255 samr_io_q_chgpasswd_user,
1256 samr_io_r_chgpasswd_user,
1257 NT_STATUS_UNSUCCESSFUL);
1259 /* Return output parameters */
1261 if (!NT_STATUS_IS_OK(result = r.status)) {
1262 goto done;
1265 done:
1267 return result;
1270 /* User change passwd with auth crap */
1272 NTSTATUS rpccli_samr_chng_pswd_auth_crap(struct rpc_pipe_client *cli,
1273 TALLOC_CTX *mem_ctx,
1274 const char *username,
1275 DATA_BLOB new_nt_password,
1276 DATA_BLOB old_nt_hash_enc,
1277 DATA_BLOB new_lm_password,
1278 DATA_BLOB old_lm_hash_enc)
1280 prs_struct qbuf, rbuf;
1281 SAMR_Q_CHGPASSWD_USER q;
1282 SAMR_R_CHGPASSWD_USER r;
1283 char *srv_name_slash;
1285 if (!(srv_name_slash = talloc_asprintf(mem_ctx, "\\\\%s",
1286 cli->cli->desthost))) {
1287 return NT_STATUS_NO_MEMORY;
1290 DEBUG(5,("rpccli_samr_chng_pswd_auth_crap on server: %s\n",
1291 srv_name_slash));
1293 ZERO_STRUCT(q);
1294 ZERO_STRUCT(r);
1296 /* Marshall data and send request */
1298 init_samr_q_chgpasswd_user(&q, srv_name_slash, username,
1299 new_nt_password.data,
1300 old_nt_hash_enc.data,
1301 new_lm_password.data,
1302 old_lm_hash_enc.data);
1304 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_CHGPASSWD_USER,
1305 q, r,
1306 qbuf, rbuf,
1307 samr_io_q_chgpasswd_user,
1308 samr_io_r_chgpasswd_user,
1309 NT_STATUS_UNSUCCESSFUL);
1311 return r.status;
1314 /* change password 3 */
1316 NTSTATUS rpccli_samr_chgpasswd3(struct rpc_pipe_client *cli,
1317 TALLOC_CTX *mem_ctx,
1318 const char *username,
1319 const char *newpassword,
1320 const char *oldpassword,
1321 SAM_UNK_INFO_1 *info,
1322 SAMR_CHANGE_REJECT *reject)
1324 prs_struct qbuf, rbuf;
1325 SAMR_Q_CHGPASSWD_USER3 q;
1326 SAMR_R_CHGPASSWD_USER3 r;
1328 uchar new_nt_password[516];
1329 uchar new_lm_password[516];
1330 uchar old_nt_hash[16];
1331 uchar old_lanman_hash[16];
1332 uchar old_nt_hash_enc[16];
1333 uchar old_lanman_hash_enc[16];
1335 uchar new_nt_hash[16];
1336 uchar new_lanman_hash[16];
1338 char *srv_name_slash = talloc_asprintf(mem_ctx, "\\\\%s", cli->cli->desthost);
1340 DEBUG(10,("rpccli_samr_chgpasswd_user3\n"));
1342 ZERO_STRUCT(q);
1343 ZERO_STRUCT(r);
1345 /* Calculate the MD4 hash (NT compatible) of the password */
1346 E_md4hash(oldpassword, old_nt_hash);
1347 E_md4hash(newpassword, new_nt_hash);
1349 if (lp_client_lanman_auth()
1350 && E_deshash(newpassword, new_lanman_hash)
1351 && E_deshash(oldpassword, old_lanman_hash)) {
1352 /* E_deshash returns false for 'long' passwords (> 14
1353 DOS chars). This allows us to match Win2k, which
1354 does not store a LM hash for these passwords (which
1355 would reduce the effective password length to 14) */
1357 encode_pw_buffer(new_lm_password, newpassword, STR_UNICODE);
1359 SamOEMhash( new_lm_password, old_nt_hash, 516);
1360 E_old_pw_hash( new_nt_hash, old_lanman_hash, old_lanman_hash_enc);
1361 } else {
1362 ZERO_STRUCT(new_lm_password);
1363 ZERO_STRUCT(old_lanman_hash_enc);
1366 encode_pw_buffer(new_nt_password, newpassword, STR_UNICODE);
1368 SamOEMhash( new_nt_password, old_nt_hash, 516);
1369 E_old_pw_hash( new_nt_hash, old_nt_hash, old_nt_hash_enc);
1371 /* Marshall data and send request */
1373 init_samr_q_chgpasswd_user3(&q, srv_name_slash, username,
1374 new_nt_password,
1375 old_nt_hash_enc,
1376 new_lm_password,
1377 old_lanman_hash_enc);
1378 r.info = info;
1379 r.reject = reject;
1381 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_CHGPASSWD_USER3,
1382 q, r,
1383 qbuf, rbuf,
1384 samr_io_q_chgpasswd_user3,
1385 samr_io_r_chgpasswd_user3,
1386 NT_STATUS_UNSUCCESSFUL);
1388 /* Return output parameters */
1390 return r.status;
1393 /* This function returns the bizzare set of (max_entries, max_size) required
1394 for the QueryDisplayInfo RPC to actually work against a domain controller
1395 with large (10k and higher) numbers of users. These values were
1396 obtained by inspection using ethereal and NT4 running User Manager. */
1398 void get_query_dispinfo_params(int loop_count, uint32 *max_entries,
1399 uint32 *max_size)
1401 switch(loop_count) {
1402 case 0:
1403 *max_entries = 512;
1404 *max_size = 16383;
1405 break;
1406 case 1:
1407 *max_entries = 1024;
1408 *max_size = 32766;
1409 break;
1410 case 2:
1411 *max_entries = 2048;
1412 *max_size = 65532;
1413 break;
1414 case 3:
1415 *max_entries = 4096;
1416 *max_size = 131064;
1417 break;
1418 default: /* loop_count >= 4 */
1419 *max_entries = 4096;
1420 *max_size = 131071;
1421 break;
1425 /* Query display info */
1427 NTSTATUS rpccli_samr_query_dispinfo(struct rpc_pipe_client *cli,
1428 TALLOC_CTX *mem_ctx,
1429 POLICY_HND *domain_pol, uint32 *start_idx,
1430 uint16 switch_value, uint32 *num_entries,
1431 uint32 max_entries, uint32 max_size,
1432 SAM_DISPINFO_CTR *ctr)
1434 prs_struct qbuf, rbuf;
1435 SAMR_Q_QUERY_DISPINFO q;
1436 SAMR_R_QUERY_DISPINFO r;
1437 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1439 DEBUG(10,("cli_samr_query_dispinfo for start_idx = %u\n", *start_idx));
1441 ZERO_STRUCT(q);
1442 ZERO_STRUCT(r);
1444 *num_entries = 0;
1446 /* Marshall data and send request */
1448 init_samr_q_query_dispinfo(&q, domain_pol, switch_value,
1449 *start_idx, max_entries, max_size);
1451 r.ctr = ctr;
1453 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_QUERY_DISPINFO,
1454 q, r,
1455 qbuf, rbuf,
1456 samr_io_q_query_dispinfo,
1457 samr_io_r_query_dispinfo,
1458 NT_STATUS_UNSUCCESSFUL);
1460 /* Return output parameters */
1462 result = r.status;
1464 if (!NT_STATUS_IS_OK(result) &&
1465 NT_STATUS_V(result) != NT_STATUS_V(STATUS_MORE_ENTRIES)) {
1466 goto done;
1469 *num_entries = r.num_entries;
1470 *start_idx += r.num_entries; /* No next_idx in this structure! */
1472 done:
1473 return result;
1477 /* Query display info2 */
1479 NTSTATUS rpccli_samr_query_dispinfo2(struct rpc_pipe_client *cli,
1480 TALLOC_CTX *mem_ctx,
1481 POLICY_HND *domain_pol, uint32 *start_idx,
1482 uint16 switch_value, uint32 *num_entries,
1483 uint32 max_entries, uint32 max_size,
1484 SAM_DISPINFO_CTR *ctr)
1486 prs_struct qbuf, rbuf;
1487 SAMR_Q_QUERY_DISPINFO q;
1488 SAMR_R_QUERY_DISPINFO r;
1489 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1491 DEBUG(10,("cli_samr_query_dispinfo2 for start_idx = %u\n", *start_idx));
1493 ZERO_STRUCT(q);
1494 ZERO_STRUCT(r);
1496 *num_entries = 0;
1498 /* Marshall data and send request */
1500 init_samr_q_query_dispinfo(&q, domain_pol, switch_value,
1501 *start_idx, max_entries, max_size);
1503 r.ctr = ctr;
1505 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_QUERY_DISPINFO2,
1506 q, r,
1507 qbuf, rbuf,
1508 samr_io_q_query_dispinfo,
1509 samr_io_r_query_dispinfo,
1510 NT_STATUS_UNSUCCESSFUL);
1512 /* Return output parameters */
1514 result = r.status;
1516 if (!NT_STATUS_IS_OK(result) &&
1517 NT_STATUS_V(result) != NT_STATUS_V(STATUS_MORE_ENTRIES)) {
1518 goto done;
1521 *num_entries = r.num_entries;
1522 *start_idx += r.num_entries; /* No next_idx in this structure! */
1524 done:
1525 return result;
1528 /* Query display info */
1530 NTSTATUS rpccli_samr_query_dispinfo3(struct rpc_pipe_client *cli,
1531 TALLOC_CTX *mem_ctx,
1532 POLICY_HND *domain_pol, uint32 *start_idx,
1533 uint16 switch_value, uint32 *num_entries,
1534 uint32 max_entries, uint32 max_size,
1535 SAM_DISPINFO_CTR *ctr)
1537 prs_struct qbuf, rbuf;
1538 SAMR_Q_QUERY_DISPINFO q;
1539 SAMR_R_QUERY_DISPINFO r;
1540 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1542 DEBUG(10,("cli_samr_query_dispinfo3 for start_idx = %u\n", *start_idx));
1544 ZERO_STRUCT(q);
1545 ZERO_STRUCT(r);
1547 *num_entries = 0;
1549 /* Marshall data and send request */
1551 init_samr_q_query_dispinfo(&q, domain_pol, switch_value,
1552 *start_idx, max_entries, max_size);
1554 r.ctr = ctr;
1556 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_QUERY_DISPINFO3,
1557 q, r,
1558 qbuf, rbuf,
1559 samr_io_q_query_dispinfo,
1560 samr_io_r_query_dispinfo,
1561 NT_STATUS_UNSUCCESSFUL);
1563 /* Return output parameters */
1565 result = r.status;
1567 if (!NT_STATUS_IS_OK(result) &&
1568 NT_STATUS_V(result) != NT_STATUS_V(STATUS_MORE_ENTRIES)) {
1569 goto done;
1572 *num_entries = r.num_entries;
1573 *start_idx += r.num_entries; /* No next_idx in this structure! */
1575 done:
1576 return result;
1579 /* Query display info index */
1581 NTSTATUS rpccli_samr_get_dispenum_index(struct rpc_pipe_client *cli,
1582 TALLOC_CTX *mem_ctx,
1583 POLICY_HND *domain_pol,
1584 uint16 switch_value,
1585 const char *name,
1586 uint32 *idx)
1588 prs_struct qbuf, rbuf;
1589 SAMR_Q_GET_DISPENUM_INDEX q;
1590 SAMR_R_GET_DISPENUM_INDEX r;
1591 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1593 DEBUG(10,("cli_samr_get_dispenum_index for name = %s\n", name));
1595 ZERO_STRUCT(q);
1596 ZERO_STRUCT(r);
1598 /* Marshall data and send request */
1600 init_samr_q_get_dispenum_index(&q, domain_pol, switch_value, name);
1602 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_GET_DISPENUM_INDEX,
1603 q, r,
1604 qbuf, rbuf,
1605 samr_io_q_get_dispenum_index,
1606 samr_io_r_get_dispenum_index,
1607 NT_STATUS_UNSUCCESSFUL);
1609 /* Return output parameters */
1611 *idx = 0;
1613 result = r.status;
1615 if (!NT_STATUS_IS_ERR(result)) {
1616 *idx = r.idx;
1619 return result;
1622 NTSTATUS rpccli_samr_get_dispenum_index2(struct rpc_pipe_client *cli,
1623 TALLOC_CTX *mem_ctx,
1624 POLICY_HND *domain_pol,
1625 uint16 switch_value,
1626 const char *name,
1627 uint32 *idx)
1629 prs_struct qbuf, rbuf;
1630 SAMR_Q_GET_DISPENUM_INDEX q;
1631 SAMR_R_GET_DISPENUM_INDEX r;
1632 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1634 DEBUG(10,("cli_samr_get_dispenum_index2 for name = %s\n", name));
1636 ZERO_STRUCT(q);
1637 ZERO_STRUCT(r);
1639 /* Marshall data and send request */
1641 init_samr_q_get_dispenum_index(&q, domain_pol, switch_value, name);
1643 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_GET_DISPENUM_INDEX2,
1644 q, r,
1645 qbuf, rbuf,
1646 samr_io_q_get_dispenum_index,
1647 samr_io_r_get_dispenum_index,
1648 NT_STATUS_UNSUCCESSFUL);
1650 /* Return output parameters */
1652 *idx = 0;
1654 result = r.status;
1656 if (!NT_STATUS_IS_ERR(result)) {
1657 *idx = r.idx;
1660 return result;
1664 /* Lookup rids. Note that NT4 seems to crash if more than ~1000 rids are
1665 looked up in one packet. */
1667 NTSTATUS rpccli_samr_lookup_rids(struct rpc_pipe_client *cli,
1668 TALLOC_CTX *mem_ctx,
1669 POLICY_HND *domain_pol,
1670 uint32 num_rids, uint32 *rids,
1671 uint32 *num_names, char ***names,
1672 uint32 **name_types)
1674 prs_struct qbuf, rbuf;
1675 SAMR_Q_LOOKUP_RIDS q;
1676 SAMR_R_LOOKUP_RIDS r;
1677 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1678 uint32 i;
1680 DEBUG(10,("cli_samr_lookup_rids\n"));
1682 if (num_rids > 1000) {
1683 DEBUG(2, ("cli_samr_lookup_rids: warning: NT4 can crash if "
1684 "more than ~1000 rids are looked up at once.\n"));
1687 ZERO_STRUCT(q);
1688 ZERO_STRUCT(r);
1690 /* Marshall data and send request */
1692 init_samr_q_lookup_rids(mem_ctx, &q, domain_pol, 1000, num_rids, rids);
1694 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_LOOKUP_RIDS,
1695 q, r,
1696 qbuf, rbuf,
1697 samr_io_q_lookup_rids,
1698 samr_io_r_lookup_rids,
1699 NT_STATUS_UNSUCCESSFUL);
1701 /* Return output parameters */
1703 result = r.status;
1705 if (!NT_STATUS_IS_OK(result) &&
1706 !NT_STATUS_EQUAL(result, STATUS_SOME_UNMAPPED))
1707 goto done;
1709 if (r.num_names1 == 0) {
1710 *num_names = 0;
1711 *names = NULL;
1712 goto done;
1715 *num_names = r.num_names1;
1716 *names = TALLOC_ARRAY(mem_ctx, char *, r.num_names1);
1717 *name_types = TALLOC_ARRAY(mem_ctx, uint32, r.num_names1);
1719 if ((*names == NULL) || (*name_types == NULL)) {
1720 TALLOC_FREE(*names);
1721 TALLOC_FREE(*name_types);
1722 return NT_STATUS_NO_MEMORY;
1725 for (i = 0; i < r.num_names1; i++) {
1726 fstring tmp;
1728 unistr2_to_ascii(tmp, &r.uni_name[i], sizeof(tmp) - 1);
1729 (*names)[i] = talloc_strdup(mem_ctx, tmp);
1730 (*name_types)[i] = r.type[i];
1733 done:
1735 return result;
1738 /* Lookup names */
1740 NTSTATUS rpccli_samr_lookup_names(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
1741 POLICY_HND *domain_pol, uint32 flags,
1742 uint32 num_names, const char **names,
1743 uint32 *num_rids, uint32 **rids,
1744 uint32 **rid_types)
1746 prs_struct qbuf, rbuf;
1747 SAMR_Q_LOOKUP_NAMES q;
1748 SAMR_R_LOOKUP_NAMES r;
1749 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1750 uint32 i;
1752 DEBUG(10,("cli_samr_lookup_names\n"));
1754 ZERO_STRUCT(q);
1755 ZERO_STRUCT(r);
1757 /* Marshall data and send request */
1759 init_samr_q_lookup_names(mem_ctx, &q, domain_pol, flags,
1760 num_names, names);
1762 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_LOOKUP_NAMES,
1763 q, r,
1764 qbuf, rbuf,
1765 samr_io_q_lookup_names,
1766 samr_io_r_lookup_names,
1767 NT_STATUS_UNSUCCESSFUL);
1769 /* Return output parameters */
1771 if (!NT_STATUS_IS_OK(result = r.status)) {
1772 goto done;
1775 if (r.num_rids1 == 0) {
1776 *num_rids = 0;
1777 goto done;
1780 *num_rids = r.num_rids1;
1781 *rids = TALLOC_ARRAY(mem_ctx, uint32, r.num_rids1);
1782 *rid_types = TALLOC_ARRAY(mem_ctx, uint32, r.num_rids1);
1784 if ((*rids == NULL) || (*rid_types == NULL)) {
1785 TALLOC_FREE(*rids);
1786 TALLOC_FREE(*rid_types);
1787 return NT_STATUS_NO_MEMORY;
1790 for (i = 0; i < r.num_rids1; i++) {
1791 (*rids)[i] = r.rids[i];
1792 (*rid_types)[i] = r.types[i];
1795 done:
1797 return result;
1800 /* Create a domain user */
1802 NTSTATUS rpccli_samr_create_dom_user(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
1803 POLICY_HND *domain_pol, const char *acct_name,
1804 uint32 acb_info, uint32 unknown,
1805 POLICY_HND *user_pol, uint32 *rid)
1807 prs_struct qbuf, rbuf;
1808 SAMR_Q_CREATE_USER q;
1809 SAMR_R_CREATE_USER r;
1810 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1812 DEBUG(10,("cli_samr_create_dom_user %s\n", acct_name));
1814 ZERO_STRUCT(q);
1815 ZERO_STRUCT(r);
1817 /* Marshall data and send request */
1819 init_samr_q_create_user(&q, domain_pol, acct_name, acb_info, unknown);
1821 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_CREATE_USER,
1822 q, r,
1823 qbuf, rbuf,
1824 samr_io_q_create_user,
1825 samr_io_r_create_user,
1826 NT_STATUS_UNSUCCESSFUL);
1828 /* Return output parameters */
1830 if (!NT_STATUS_IS_OK(result = r.status)) {
1831 goto done;
1834 if (user_pol)
1835 *user_pol = r.user_pol;
1837 if (rid)
1838 *rid = r.user_rid;
1840 done:
1842 return result;
1845 /* Set userinfo */
1847 NTSTATUS rpccli_samr_set_userinfo(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
1848 const POLICY_HND *user_pol, uint16 switch_value,
1849 DATA_BLOB *sess_key, SAM_USERINFO_CTR *ctr)
1851 prs_struct qbuf, rbuf;
1852 SAMR_Q_SET_USERINFO q;
1853 SAMR_R_SET_USERINFO r;
1854 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1856 DEBUG(10,("cli_samr_set_userinfo\n"));
1858 ZERO_STRUCT(q);
1859 ZERO_STRUCT(r);
1861 if (!sess_key->length) {
1862 DEBUG(1, ("No user session key\n"));
1863 return NT_STATUS_NO_USER_SESSION_KEY;
1866 /* Initialise parse structures */
1868 prs_init(&qbuf, RPC_MAX_PDU_FRAG_LEN, mem_ctx, MARSHALL);
1869 prs_init(&rbuf, 0, mem_ctx, UNMARSHALL);
1871 /* Marshall data and send request */
1873 q.ctr = ctr;
1875 init_samr_q_set_userinfo(&q, user_pol, sess_key, switch_value,
1876 ctr->info.id);
1878 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_SET_USERINFO,
1879 q, r,
1880 qbuf, rbuf,
1881 samr_io_q_set_userinfo,
1882 samr_io_r_set_userinfo,
1883 NT_STATUS_UNSUCCESSFUL);
1885 /* Return output parameters */
1887 if (!NT_STATUS_IS_OK(result = r.status)) {
1888 goto done;
1891 done:
1893 return result;
1896 /* Set userinfo2 */
1898 NTSTATUS rpccli_samr_set_userinfo2(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
1899 const POLICY_HND *user_pol, uint16 switch_value,
1900 DATA_BLOB *sess_key, SAM_USERINFO_CTR *ctr)
1902 prs_struct qbuf, rbuf;
1903 SAMR_Q_SET_USERINFO2 q;
1904 SAMR_R_SET_USERINFO2 r;
1905 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1907 DEBUG(10,("cli_samr_set_userinfo2\n"));
1909 if (!sess_key->length) {
1910 DEBUG(1, ("No user session key\n"));
1911 return NT_STATUS_NO_USER_SESSION_KEY;
1914 ZERO_STRUCT(q);
1915 ZERO_STRUCT(r);
1917 /* Marshall data and send request */
1919 init_samr_q_set_userinfo2(&q, user_pol, sess_key, switch_value, ctr);
1921 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_SET_USERINFO2,
1922 q, r,
1923 qbuf, rbuf,
1924 samr_io_q_set_userinfo2,
1925 samr_io_r_set_userinfo2,
1926 NT_STATUS_UNSUCCESSFUL);
1928 /* Return output parameters */
1930 if (!NT_STATUS_IS_OK(result = r.status)) {
1931 goto done;
1934 done:
1936 return result;
1939 /* Delete domain group */
1941 NTSTATUS rpccli_samr_delete_dom_group(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
1942 POLICY_HND *group_pol)
1944 prs_struct qbuf, rbuf;
1945 SAMR_Q_DELETE_DOM_GROUP q;
1946 SAMR_R_DELETE_DOM_GROUP r;
1947 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1949 DEBUG(10,("cli_samr_delete_dom_group\n"));
1951 ZERO_STRUCT(q);
1952 ZERO_STRUCT(r);
1954 /* Marshall data and send request */
1956 init_samr_q_delete_dom_group(&q, group_pol);
1958 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_DELETE_DOM_GROUP,
1959 q, r,
1960 qbuf, rbuf,
1961 samr_io_q_delete_dom_group,
1962 samr_io_r_delete_dom_group,
1963 NT_STATUS_UNSUCCESSFUL);
1965 /* Return output parameters */
1967 result = r.status;
1969 return result;
1972 /* Delete domain alias */
1974 NTSTATUS rpccli_samr_delete_dom_alias(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
1975 POLICY_HND *alias_pol)
1977 prs_struct qbuf, rbuf;
1978 SAMR_Q_DELETE_DOM_ALIAS q;
1979 SAMR_R_DELETE_DOM_ALIAS r;
1980 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1982 DEBUG(10,("cli_samr_delete_dom_alias\n"));
1984 ZERO_STRUCT(q);
1985 ZERO_STRUCT(r);
1987 /* Marshall data and send request */
1989 init_samr_q_delete_dom_alias(&q, alias_pol);
1991 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_DELETE_DOM_ALIAS,
1992 q, r,
1993 qbuf, rbuf,
1994 samr_io_q_delete_dom_alias,
1995 samr_io_r_delete_dom_alias,
1996 NT_STATUS_UNSUCCESSFUL);
1998 /* Return output parameters */
2000 result = r.status;
2002 return result;
2005 /* Delete domain user */
2007 NTSTATUS rpccli_samr_delete_dom_user(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
2008 POLICY_HND *user_pol)
2010 prs_struct qbuf, rbuf;
2011 SAMR_Q_DELETE_DOM_USER q;
2012 SAMR_R_DELETE_DOM_USER r;
2013 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
2015 DEBUG(10,("cli_samr_delete_dom_user\n"));
2017 ZERO_STRUCT(q);
2018 ZERO_STRUCT(r);
2020 /* Marshall data and send request */
2022 init_samr_q_delete_dom_user(&q, user_pol);
2024 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_DELETE_DOM_USER,
2025 q, r,
2026 qbuf, rbuf,
2027 samr_io_q_delete_dom_user,
2028 samr_io_r_delete_dom_user,
2029 NT_STATUS_UNSUCCESSFUL);
2031 /* Return output parameters */
2033 result = r.status;
2035 return result;
2038 /* Remove foreign SID */
2040 NTSTATUS rpccli_samr_remove_sid_foreign_domain(struct rpc_pipe_client *cli,
2041 TALLOC_CTX *mem_ctx,
2042 POLICY_HND *user_pol,
2043 DOM_SID *sid)
2045 prs_struct qbuf, rbuf;
2046 SAMR_Q_REMOVE_SID_FOREIGN_DOMAIN q;
2047 SAMR_R_REMOVE_SID_FOREIGN_DOMAIN r;
2048 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
2050 DEBUG(10,("cli_samr_remove_sid_foreign_domain\n"));
2052 ZERO_STRUCT(q);
2053 ZERO_STRUCT(r);
2055 /* Marshall data and send request */
2057 init_samr_q_remove_sid_foreign_domain(&q, user_pol, sid);
2059 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_REMOVE_SID_FOREIGN_DOMAIN,
2060 q, r,
2061 qbuf, rbuf,
2062 samr_io_q_remove_sid_foreign_domain,
2063 samr_io_r_remove_sid_foreign_domain,
2064 NT_STATUS_UNSUCCESSFUL);
2066 /* Return output parameters */
2068 result = r.status;
2070 return result;
2073 /* Query user security object */
2075 NTSTATUS rpccli_samr_query_sec_obj(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
2076 POLICY_HND *user_pol, uint32 sec_info,
2077 TALLOC_CTX *ctx, SEC_DESC_BUF **sec_desc_buf)
2079 prs_struct qbuf, rbuf;
2080 SAMR_Q_QUERY_SEC_OBJ q;
2081 SAMR_R_QUERY_SEC_OBJ r;
2082 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
2084 DEBUG(10,("cli_samr_query_sec_obj\n"));
2086 ZERO_STRUCT(q);
2087 ZERO_STRUCT(r);
2089 /* Marshall data and send request */
2091 init_samr_q_query_sec_obj(&q, user_pol, sec_info);
2093 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_QUERY_SEC_OBJECT,
2094 q, r,
2095 qbuf, rbuf,
2096 samr_io_q_query_sec_obj,
2097 samr_io_r_query_sec_obj,
2098 NT_STATUS_UNSUCCESSFUL);
2100 /* Return output parameters */
2102 result = r.status;
2103 *sec_desc_buf=dup_sec_desc_buf(ctx, r.buf);
2105 return result;
2108 /* Set user security object */
2110 NTSTATUS rpccli_samr_set_sec_obj(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
2111 POLICY_HND *user_pol, uint32 sec_info,
2112 SEC_DESC_BUF *sec_desc_buf)
2114 prs_struct qbuf, rbuf;
2115 SAMR_Q_SET_SEC_OBJ q;
2116 SAMR_R_SET_SEC_OBJ r;
2117 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
2119 DEBUG(10,("cli_samr_set_sec_obj\n"));
2121 ZERO_STRUCT(q);
2122 ZERO_STRUCT(r);
2124 /* Marshall data and send request */
2126 init_samr_q_set_sec_obj(&q, user_pol, sec_info, sec_desc_buf);
2128 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_SET_SEC_OBJECT,
2129 q, r,
2130 qbuf, rbuf,
2131 samr_io_q_set_sec_obj,
2132 samr_io_r_set_sec_obj,
2133 NT_STATUS_UNSUCCESSFUL);
2135 /* Return output parameters */
2137 result = r.status;
2139 return result;
2143 /* Get domain password info */
2145 NTSTATUS rpccli_samr_get_dom_pwinfo(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
2146 uint16 *min_pwd_length, uint32 *password_properties)
2148 prs_struct qbuf, rbuf;
2149 SAMR_Q_GET_DOM_PWINFO q;
2150 SAMR_R_GET_DOM_PWINFO r;
2151 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
2153 DEBUG(10,("cli_samr_get_dom_pwinfo\n"));
2155 ZERO_STRUCT(q);
2156 ZERO_STRUCT(r);
2158 /* Marshall data and send request */
2160 init_samr_q_get_dom_pwinfo(&q, cli->cli->desthost);
2162 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_GET_DOM_PWINFO,
2163 q, r,
2164 qbuf, rbuf,
2165 samr_io_q_get_dom_pwinfo,
2166 samr_io_r_get_dom_pwinfo,
2167 NT_STATUS_UNSUCCESSFUL);
2169 /* Return output parameters */
2171 result = r.status;
2173 if (NT_STATUS_IS_OK(result)) {
2174 if (min_pwd_length)
2175 *min_pwd_length = r.min_pwd_length;
2176 if (password_properties)
2177 *password_properties = r.password_properties;
2180 return result;
2183 /* Get domain password info */
2185 NTSTATUS rpccli_samr_get_usrdom_pwinfo(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
2186 POLICY_HND *pol, uint16 *min_pwd_length,
2187 uint32 *password_properties, uint32 *unknown1)
2189 prs_struct qbuf, rbuf;
2190 SAMR_Q_GET_USRDOM_PWINFO q;
2191 SAMR_R_GET_USRDOM_PWINFO r;
2192 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
2194 DEBUG(10,("cli_samr_get_usrdom_pwinfo\n"));
2196 ZERO_STRUCT(q);
2197 ZERO_STRUCT(r);
2199 /* Marshall data and send request */
2201 init_samr_q_get_usrdom_pwinfo(&q, pol);
2203 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_GET_USRDOM_PWINFO,
2204 q, r,
2205 qbuf, rbuf,
2206 samr_io_q_get_usrdom_pwinfo,
2207 samr_io_r_get_usrdom_pwinfo,
2208 NT_STATUS_UNSUCCESSFUL);
2210 /* Return output parameters */
2212 result = r.status;
2214 if (NT_STATUS_IS_OK(result)) {
2215 if (min_pwd_length)
2216 *min_pwd_length = r.min_pwd_length;
2217 if (password_properties)
2218 *password_properties = r.password_properties;
2219 if (unknown1)
2220 *unknown1 = r.unknown_1;
2223 return result;
2227 /* Lookup Domain Name */
2229 NTSTATUS rpccli_samr_lookup_domain(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx,
2230 POLICY_HND *user_pol, char *domain_name,
2231 DOM_SID *sid)
2233 prs_struct qbuf, rbuf;
2234 SAMR_Q_LOOKUP_DOMAIN q;
2235 SAMR_R_LOOKUP_DOMAIN r;
2236 NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
2238 DEBUG(10,("cli_samr_lookup_domain\n"));
2240 ZERO_STRUCT(q);
2241 ZERO_STRUCT(r);
2243 /* Marshall data and send request */
2245 init_samr_q_lookup_domain(&q, user_pol, domain_name);
2247 CLI_DO_RPC(cli, mem_ctx, PI_SAMR, SAMR_LOOKUP_DOMAIN,
2248 q, r,
2249 qbuf, rbuf,
2250 samr_io_q_lookup_domain,
2251 samr_io_r_lookup_domain,
2252 NT_STATUS_UNSUCCESSFUL);
2254 /* Return output parameters */
2256 result = r.status;
2258 if (NT_STATUS_IS_OK(result))
2259 sid_copy(sid, &r.dom_sid.sid);
2261 return result;