fix rpcclient querygroup command (from 2.2 and head)
[samba.git] / source / rpc_client / cli_samr.c
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) Luke Kenneth Casson Leighton 1996-1997,2000,
7    Copyright (C) Paul Ashton                       1997,2000,
8    Copyright (C) Elrond                                 2000,
9    Copyright (C) Rafal Szczesniak                       2002.
10    
11    This program is free software; you can redistribute it and/or modify
12    it under the terms of the GNU General Public License as published by
13    the Free Software Foundation; either version 2 of the License, or
14    (at your option) any later version.
15    
16    This program is distributed in the hope that it will be useful,
17    but WITHOUT ANY WARRANTY; without even the implied warranty of
18    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19    GNU General Public License for more details.
20    
21    You should have received a copy of the GNU General Public License
22    along with this program; if not, write to the Free Software
23    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 */
25
26 #include "includes.h"
27
28 /* Connect to SAMR database */
29
30 NTSTATUS cli_samr_connect(struct cli_state *cli, TALLOC_CTX *mem_ctx, 
31                           uint32 access_mask, POLICY_HND *connect_pol)
32 {
33         prs_struct qbuf, rbuf;
34         SAMR_Q_CONNECT q;
35         SAMR_R_CONNECT r;
36         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
37
38         ZERO_STRUCT(q);
39         ZERO_STRUCT(r);
40
41         /* Initialise parse structures */
42
43         prs_init(&qbuf, MAX_PDU_FRAG_LEN, mem_ctx, MARSHALL);
44         prs_init(&rbuf, 0, mem_ctx, UNMARSHALL);
45
46         /* Marshall data and send request */
47
48         init_samr_q_connect(&q, cli->desthost, access_mask);
49
50         if (!samr_io_q_connect("", &q, &qbuf, 0) ||
51             !rpc_api_pipe_req(cli, SAMR_CONNECT, &qbuf, &rbuf))
52                 goto done;
53
54         /* Unmarshall response */
55
56         if (!samr_io_r_connect("", &r, &rbuf, 0))
57                 goto done;
58
59         /* Return output parameters */
60
61         if (NT_STATUS_IS_OK(result = r.status)) {
62                 *connect_pol = r.connect_pol;
63 #ifdef __INSURE__
64                 connect_pol->marker = malloc(1);
65 #endif
66         }
67
68  done:
69         prs_mem_free(&qbuf);
70         prs_mem_free(&rbuf);
71
72         return result;
73 }
74
75 /* Connect to SAMR database */
76
77 NTSTATUS cli_samr_connect4(struct cli_state *cli, TALLOC_CTX *mem_ctx, 
78                            uint32 access_mask, POLICY_HND *connect_pol)
79 {
80         prs_struct qbuf, rbuf;
81         SAMR_Q_CONNECT4 q;
82         SAMR_R_CONNECT4 r;
83         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
84
85         ZERO_STRUCT(q);
86         ZERO_STRUCT(r);
87
88         /* Initialise parse structures */
89
90         prs_init(&qbuf, MAX_PDU_FRAG_LEN, mem_ctx, MARSHALL);
91         prs_init(&rbuf, 0, mem_ctx, UNMARSHALL);
92
93         /* Marshall data and send request */
94
95         init_samr_q_connect4(&q, cli->desthost, access_mask);
96
97         if (!samr_io_q_connect4("", &q, &qbuf, 0) ||
98             !rpc_api_pipe_req(cli, SAMR_CONNECT4, &qbuf, &rbuf))
99                 goto done;
100
101         /* Unmarshall response */
102
103         if (!samr_io_r_connect4("", &r, &rbuf, 0))
104                 goto done;
105
106         /* Return output parameters */
107
108         if (NT_STATUS_IS_OK(result = r.status)) {
109                 *connect_pol = r.connect_pol;
110 #ifdef __INSURE__
111                 connect_pol->marker = malloc(1);
112 #endif
113         }
114
115  done:
116         prs_mem_free(&qbuf);
117         prs_mem_free(&rbuf);
118
119         return result;
120 }
121
122 /* Close SAMR handle */
123
124 NTSTATUS cli_samr_close(struct cli_state *cli, TALLOC_CTX *mem_ctx,
125                         POLICY_HND *connect_pol)
126 {
127         prs_struct qbuf, rbuf;
128         SAMR_Q_CLOSE_HND q;
129         SAMR_R_CLOSE_HND r;
130         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
131
132         ZERO_STRUCT(q);
133         ZERO_STRUCT(r);
134
135         /* Initialise parse structures */
136
137         prs_init(&qbuf, MAX_PDU_FRAG_LEN, mem_ctx, MARSHALL);
138         prs_init(&rbuf, 0, mem_ctx, UNMARSHALL);
139
140         /* Marshall data and send request */
141
142         init_samr_q_close_hnd(&q, connect_pol);
143
144         if (!samr_io_q_close_hnd("", &q, &qbuf, 0) ||
145             !rpc_api_pipe_req(cli, SAMR_CLOSE_HND, &qbuf, &rbuf))
146                 goto done;
147
148         /* Unmarshall response */
149
150         if (!samr_io_r_close_hnd("", &r, &rbuf, 0))
151                 goto done;
152
153         /* Return output parameters */
154
155         if (NT_STATUS_IS_OK(result = r.status)) {
156 #ifdef __INSURE__
157                 SAFE_FREE(connect_pol->marker);
158 #endif
159                 *connect_pol = r.pol;
160         }
161
162  done:
163         prs_mem_free(&qbuf);
164         prs_mem_free(&rbuf);
165
166         return result;
167 }
168
169 /* Open handle on a domain */
170
171 NTSTATUS cli_samr_open_domain(struct cli_state *cli, TALLOC_CTX *mem_ctx,
172                               POLICY_HND *connect_pol, uint32 access_mask, 
173                               const DOM_SID *domain_sid, POLICY_HND *domain_pol)
174 {
175         prs_struct qbuf, rbuf;
176         SAMR_Q_OPEN_DOMAIN q;
177         SAMR_R_OPEN_DOMAIN r;
178         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
179
180         ZERO_STRUCT(q);
181         ZERO_STRUCT(r);
182
183         /* Initialise parse structures */
184
185         prs_init(&qbuf, MAX_PDU_FRAG_LEN, mem_ctx, MARSHALL);
186         prs_init(&rbuf, 0, mem_ctx, UNMARSHALL);
187
188         /* Marshall data and send request */
189
190         init_samr_q_open_domain(&q, connect_pol, access_mask, domain_sid);
191
192         if (!samr_io_q_open_domain("", &q, &qbuf, 0) ||
193             !rpc_api_pipe_req(cli, SAMR_OPEN_DOMAIN, &qbuf, &rbuf))
194                 goto done;
195
196         /* Unmarshall response */
197
198         if (!samr_io_r_open_domain("", &r, &rbuf, 0))
199                 goto done;
200
201         /* Return output parameters */
202
203         if (NT_STATUS_IS_OK(result = r.status)) {
204                 *domain_pol = r.domain_pol;
205 #ifdef __INSURE__
206                 domain_pol->marker = malloc(1);
207 #endif
208         }
209
210  done:
211         prs_mem_free(&qbuf);
212         prs_mem_free(&rbuf);
213
214         return result;
215 }
216
217 /* Open handle on a user */
218
219 NTSTATUS cli_samr_open_user(struct cli_state *cli, TALLOC_CTX *mem_ctx,
220                             POLICY_HND *domain_pol, uint32 access_mask, 
221                             uint32 user_rid, POLICY_HND *user_pol)
222 {
223         prs_struct qbuf, rbuf;
224         SAMR_Q_OPEN_USER q;
225         SAMR_R_OPEN_USER r;
226         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
227
228         ZERO_STRUCT(q);
229         ZERO_STRUCT(r);
230
231         /* Initialise parse structures */
232
233         prs_init(&qbuf, MAX_PDU_FRAG_LEN, mem_ctx, MARSHALL);
234         prs_init(&rbuf, 0, mem_ctx, UNMARSHALL);
235
236         /* Marshall data and send request */
237
238         init_samr_q_open_user(&q, domain_pol, access_mask, user_rid);
239
240         if (!samr_io_q_open_user("", &q, &qbuf, 0) ||
241             !rpc_api_pipe_req(cli, SAMR_OPEN_USER, &qbuf, &rbuf))
242                 goto done;
243
244         /* Unmarshall response */
245
246         if (!samr_io_r_open_user("", &r, &rbuf, 0))
247                 goto done;
248
249         /* Return output parameters */
250
251         if (NT_STATUS_IS_OK(result = r.status)) {
252                 *user_pol = r.user_pol;
253 #ifdef __INSURE__
254                 user_pol->marker = malloc(1);
255 #endif
256         }
257
258  done:
259         prs_mem_free(&qbuf);
260         prs_mem_free(&rbuf);
261
262         return result;
263 }
264
265 /* Open handle on a group */
266
267 NTSTATUS cli_samr_open_group(struct cli_state *cli, TALLOC_CTX *mem_ctx, 
268                              POLICY_HND *domain_pol, uint32 access_mask, 
269                              uint32 group_rid, POLICY_HND *group_pol)
270 {
271         prs_struct qbuf, rbuf;
272         SAMR_Q_OPEN_GROUP q;
273         SAMR_R_OPEN_GROUP r;
274         NTSTATUS result =  NT_STATUS_UNSUCCESSFUL;
275
276         ZERO_STRUCT(q);
277         ZERO_STRUCT(r);
278
279         /* Initialise parse structures */
280
281         prs_init(&qbuf, MAX_PDU_FRAG_LEN, mem_ctx, MARSHALL);
282         prs_init(&rbuf, 0, mem_ctx, UNMARSHALL);
283
284         /* Marshall data and send request */
285
286         init_samr_q_open_group(&q, domain_pol, access_mask, group_rid);
287
288         if (!samr_io_q_open_group("", &q, &qbuf, 0) ||
289             !rpc_api_pipe_req(cli, SAMR_OPEN_GROUP, &qbuf, &rbuf))
290                 goto done;
291
292         /* Unmarshall response */
293
294         if (!samr_io_r_open_group("", &r, &rbuf, 0))
295                 goto done;
296
297         /* Return output parameters */
298
299         if (NT_STATUS_IS_OK(result = r.status)) {
300                 *group_pol = r.pol;
301 #ifdef __INSURE__
302                 group_pol->marker = malloc(1);
303 #endif
304         }
305
306  done:
307         prs_mem_free(&qbuf);
308         prs_mem_free(&rbuf);
309
310         return result;
311 }
312
313 /* Query user info */
314
315 NTSTATUS cli_samr_query_userinfo(struct cli_state *cli, TALLOC_CTX *mem_ctx,
316                                  POLICY_HND *user_pol, uint16 switch_value, 
317                                  SAM_USERINFO_CTR **ctr)
318 {
319         prs_struct qbuf, rbuf;
320         SAMR_Q_QUERY_USERINFO q;
321         SAMR_R_QUERY_USERINFO r;
322         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
323
324         ZERO_STRUCT(q);
325         ZERO_STRUCT(r);
326
327         /* Initialise parse structures */
328
329         prs_init(&qbuf, MAX_PDU_FRAG_LEN, mem_ctx, MARSHALL);
330         prs_init(&rbuf, 0, mem_ctx, UNMARSHALL);
331
332         /* Marshall data and send request */
333
334         init_samr_q_query_userinfo(&q, user_pol, switch_value);
335
336         if (!samr_io_q_query_userinfo("", &q, &qbuf, 0) ||
337             !rpc_api_pipe_req(cli, SAMR_QUERY_USERINFO, &qbuf, &rbuf))
338                 goto done;
339
340         /* Unmarshall response */
341
342         if (!samr_io_r_query_userinfo("", &r, &rbuf, 0))
343                 goto done;
344
345         /* Return output parameters */
346
347         result = r.status;
348         *ctr = r.ctr;
349
350  done:
351         prs_mem_free(&qbuf);
352         prs_mem_free(&rbuf);
353
354         return result;
355 }
356
357 /* Query group info */
358
359 NTSTATUS cli_samr_query_groupinfo(struct cli_state *cli, TALLOC_CTX *mem_ctx,
360                                   POLICY_HND *group_pol, uint32 info_level, 
361                                   GROUP_INFO_CTR **ctr)
362 {
363         prs_struct qbuf, rbuf;
364         SAMR_Q_QUERY_GROUPINFO q;
365         SAMR_R_QUERY_GROUPINFO r;
366         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
367
368         ZERO_STRUCT(q);
369         ZERO_STRUCT(r);
370
371         /* Initialise parse structures */
372
373         prs_init(&qbuf, MAX_PDU_FRAG_LEN, mem_ctx, MARSHALL);
374         prs_init(&rbuf, 0, mem_ctx, UNMARSHALL);
375
376         /* Marshall data and send request */
377
378         init_samr_q_query_groupinfo(&q, group_pol, info_level);
379
380         if (!samr_io_q_query_groupinfo("", &q, &qbuf, 0) ||
381             !rpc_api_pipe_req(cli, SAMR_QUERY_GROUPINFO, &qbuf, &rbuf))
382                 goto done;
383
384         /* Unmarshall response */
385
386         if (!samr_io_r_query_groupinfo("", &r, &rbuf, 0))
387                 goto done;
388
389         *ctr = r.ctr;
390
391         /* Return output parameters */
392
393         result = r.status;
394
395  done:
396         prs_mem_free(&qbuf);
397         prs_mem_free(&rbuf);
398
399         return result;
400 }
401
402 /* Query user groups */
403
404 NTSTATUS cli_samr_query_usergroups(struct cli_state *cli, TALLOC_CTX *mem_ctx, 
405                                    POLICY_HND *user_pol, uint32 *num_groups, 
406                                    DOM_GID **gid)
407 {
408         prs_struct qbuf, rbuf;
409         SAMR_Q_QUERY_USERGROUPS q;
410         SAMR_R_QUERY_USERGROUPS r;
411         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
412
413         ZERO_STRUCT(q);
414         ZERO_STRUCT(r);
415
416         /* Initialise parse structures */
417
418         prs_init(&qbuf, MAX_PDU_FRAG_LEN, mem_ctx, MARSHALL);
419         prs_init(&rbuf, 0, mem_ctx, UNMARSHALL);
420
421         /* Marshall data and send request */
422
423         init_samr_q_query_usergroups(&q, user_pol);
424
425         if (!samr_io_q_query_usergroups("", &q, &qbuf, 0) ||
426             !rpc_api_pipe_req(cli, SAMR_QUERY_USERGROUPS, &qbuf, &rbuf))
427                 goto done;
428
429         /* Unmarshall response */
430
431         if (!samr_io_r_query_usergroups("", &r, &rbuf, 0))
432                 goto done;
433
434         /* Return output parameters */
435
436         if (NT_STATUS_IS_OK(result = r.status)) {
437                 *num_groups = r.num_entries;
438                 *gid = r.gid;
439         }
440
441  done:
442         prs_mem_free(&qbuf);
443         prs_mem_free(&rbuf);
444
445         return result;
446 }
447
448 /* Query user aliases */
449
450 NTSTATUS cli_samr_query_useraliases(struct cli_state *cli, TALLOC_CTX *mem_ctx, 
451                                    POLICY_HND *user_pol, uint32 num_sids, DOM_SID2 *sid,
452                                    uint32 *num_aliases, uint32 **als_rids)
453 {
454         prs_struct qbuf, rbuf;
455         SAMR_Q_QUERY_USERALIASES q;
456         SAMR_R_QUERY_USERALIASES r;
457         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
458         unsigned int ptr=1;
459         
460         ZERO_STRUCT(q);
461         ZERO_STRUCT(r);
462
463         /* Initialise parse structures */
464
465         prs_init(&qbuf, MAX_PDU_FRAG_LEN, mem_ctx, MARSHALL);
466         prs_init(&rbuf, 0, mem_ctx, UNMARSHALL);
467
468         /* Marshall data and send request */
469
470         init_samr_q_query_useraliases(&q, user_pol, num_sids, &ptr, sid);
471
472         if (!samr_io_q_query_useraliases("", &q, &qbuf, 0) ||
473             !rpc_api_pipe_req(cli, SAMR_QUERY_USERALIASES, &qbuf, &rbuf))
474                 goto done;
475
476         /* Unmarshall response */
477
478         if (!samr_io_r_query_useraliases("", &r, &rbuf, 0))
479                 goto done;
480
481         /* Return output parameters */
482
483         if (NT_STATUS_IS_OK(result = r.status)) {
484                 *num_aliases = r.num_entries;
485                 *als_rids = r.rid;
486         }
487
488  done:
489         prs_mem_free(&qbuf);
490         prs_mem_free(&rbuf);
491
492         return result;
493 }
494
495 /* Query user groups */
496
497 NTSTATUS cli_samr_query_groupmem(struct cli_state *cli, TALLOC_CTX *mem_ctx,
498                                  POLICY_HND *group_pol, uint32 *num_mem, 
499                                  uint32 **rid, uint32 **attr)
500 {
501         prs_struct qbuf, rbuf;
502         SAMR_Q_QUERY_GROUPMEM q;
503         SAMR_R_QUERY_GROUPMEM r;
504         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
505
506         ZERO_STRUCT(q);
507         ZERO_STRUCT(r);
508
509         /* Initialise parse structures */
510
511         prs_init(&qbuf, MAX_PDU_FRAG_LEN, mem_ctx, MARSHALL);
512         prs_init(&rbuf, 0, mem_ctx, UNMARSHALL);
513
514         /* Marshall data and send request */
515
516         init_samr_q_query_groupmem(&q, group_pol);
517
518         if (!samr_io_q_query_groupmem("", &q, &qbuf, 0) ||
519             !rpc_api_pipe_req(cli, SAMR_QUERY_GROUPMEM, &qbuf, &rbuf))
520                 goto done;
521
522         /* Unmarshall response */
523
524         if (!samr_io_r_query_groupmem("", &r, &rbuf, 0))
525                 goto done;
526
527         /* Return output parameters */
528
529         if (NT_STATUS_IS_OK(result = r.status)) {
530                 *num_mem = r.num_entries;
531                 *rid = r.rid;
532                 *attr = r.attr;
533         }
534
535  done:
536         prs_mem_free(&qbuf);
537         prs_mem_free(&rbuf);
538
539         return result;
540 }
541
542 /**
543  * Enumerate domain users
544  *
545  * @param cli client state structure
546  * @param mem_ctx talloc context
547  * @param pol opened domain policy handle
548  * @param start_idx starting index of enumeration, returns context for
549                     next enumeration
550  * @param acb_mask account control bit mask (to enumerate some particular
551  *                 kind of accounts)
552  * @param size max acceptable size of response
553  * @param dom_users returned array of domain user names
554  * @param rids returned array of domain user RIDs
555  * @param num_dom_users numer returned entries
556  * 
557  * @return NTSTATUS returned in rpc response
558  **/
559 NTSTATUS cli_samr_enum_dom_users(struct cli_state *cli, TALLOC_CTX *mem_ctx,
560                                  POLICY_HND *pol, uint32 *start_idx, uint16 acb_mask,
561                                  uint32 size, char ***dom_users, uint32 **rids,
562                                  uint32 *num_dom_users)
563 {
564         prs_struct qdata;
565         prs_struct rdata;
566         SAMR_Q_ENUM_DOM_USERS q;
567         SAMR_R_ENUM_DOM_USERS r;
568         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
569         int i;
570         
571         ZERO_STRUCT(q);
572         ZERO_STRUCT(r);
573         
574         if (cli == NULL || pol == NULL)
575                 return result;
576         
577         /* initialise parse structures */
578         prs_init(&qdata, MAX_PDU_FRAG_LEN, mem_ctx, MARSHALL);
579         prs_init(&rdata, 0, mem_ctx, UNMARSHALL);
580         
581         DEBUG(4, ("SAMR Enum Domain Users. start_idx: %d, acb: %d, size: %d\n",
582                         *start_idx, acb_mask, size));
583         
584         /* fill query structure with parameters */
585         init_samr_q_enum_dom_users(&q, pol, *start_idx, acb_mask, 0, size);
586         
587         /* prepare query stream */
588         if (!samr_io_q_enum_dom_users("", &q, &qdata, 0)) {
589                 prs_mem_free(&qdata);
590                 prs_mem_free(&rdata);
591                 return result;
592         }
593         
594         /* send rpc call over the pipe */
595         if (!rpc_api_pipe_req(cli, SAMR_ENUM_DOM_USERS, &qdata, &rdata)) {
596                 prs_mem_free(&qdata);
597                 prs_mem_free(&rdata);
598                 return result;
599         }
600                 
601         /* unpack received stream */
602         if(!samr_io_r_enum_dom_users("", &r, &rdata, 0)) {
603                 prs_mem_free(&qdata);
604                 prs_mem_free(&rdata);
605                 result = r.status;
606                 return result;
607         }
608         
609         /* return the data obtained in response */
610         if (!NT_STATUS_IS_OK(r.status) &&
611                 (NT_STATUS_EQUAL(r.status, STATUS_MORE_ENTRIES) ||
612                 NT_STATUS_EQUAL(r.status, NT_STATUS_NO_MORE_ENTRIES))) {
613                 return r.status;
614         }
615         
616         *start_idx = r.next_idx;
617         *num_dom_users = r.num_entries2;
618         result = r.status;
619
620         if (r.num_entries2) {
621                 /* allocate memory needed to return received data */    
622                 *rids = (uint32*)talloc(mem_ctx, sizeof(uint32) * r.num_entries2);
623                 if (!*rids) {
624                         DEBUG(0, ("Error in cli_samr_enum_dom_users(): out of memory\n"));
625                         return NT_STATUS_NO_MEMORY;
626                 }
627                 
628                 *dom_users = (char**)talloc(mem_ctx, sizeof(char*) * r.num_entries2);
629                 if (!*dom_users) {
630                         DEBUG(0, ("Error in cli_samr_enum_dom_users(): out of memory\n"));
631                         return NT_STATUS_NO_MEMORY;
632                 }
633                 
634                 /* fill output buffers with rpc response */
635                 for (i = 0; i < r.num_entries2; i++) {
636                         fstring conv_buf;
637                         
638                         (*rids)[i] = r.sam[i].rid;
639                         unistr2_to_ascii(conv_buf, &(r.uni_acct_name[i]), sizeof(conv_buf) - 1);
640                         (*dom_users)[i] = talloc_strdup(mem_ctx, conv_buf);
641                 }
642         }
643         
644         prs_mem_free(&qdata);
645         prs_mem_free(&rdata);
646         
647         return result;
648 };
649
650
651 /* Enumerate domain groups */
652
653 NTSTATUS cli_samr_enum_dom_groups(struct cli_state *cli, TALLOC_CTX *mem_ctx, 
654                                   POLICY_HND *pol, uint32 *start_idx, 
655                                   uint32 size, struct acct_info **dom_groups,
656                                   uint32 *num_dom_groups)
657 {
658         prs_struct qbuf, rbuf;
659         SAMR_Q_ENUM_DOM_GROUPS q;
660         SAMR_R_ENUM_DOM_GROUPS r;
661         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
662         uint32 name_idx, i;
663
664         ZERO_STRUCT(q);
665         ZERO_STRUCT(r);
666
667         /* Initialise parse structures */
668
669         prs_init(&qbuf, MAX_PDU_FRAG_LEN, mem_ctx, MARSHALL);
670         prs_init(&rbuf, 0, mem_ctx, UNMARSHALL);
671
672         /* Marshall data and send request */
673
674         init_samr_q_enum_dom_groups(&q, pol, *start_idx, size);
675
676         if (!samr_io_q_enum_dom_groups("", &q, &qbuf, 0) ||
677             !rpc_api_pipe_req(cli, SAMR_ENUM_DOM_GROUPS, &qbuf, &rbuf))
678                 goto done;
679
680         /* Unmarshall response */
681
682         if (!samr_io_r_enum_dom_groups("", &r, &rbuf, 0))
683                 goto done;
684
685         /* Return output parameters */
686
687         result = r.status;
688
689         if (!NT_STATUS_IS_OK(result) &&
690             NT_STATUS_V(result) != NT_STATUS_V(STATUS_MORE_ENTRIES))
691                 goto done;
692
693         *num_dom_groups = r.num_entries2;
694
695         if (!((*dom_groups) = (struct acct_info *)
696               talloc(mem_ctx, sizeof(struct acct_info) * *num_dom_groups))) {
697                 result = NT_STATUS_UNSUCCESSFUL;
698                 goto done;
699         }
700
701         memset(*dom_groups, 0, sizeof(struct acct_info) * *num_dom_groups);
702
703         name_idx = 0;
704
705         for (i = 0; i < *num_dom_groups; i++) {
706
707                 (*dom_groups)[i].rid = r.sam[i].rid;
708
709                 if (r.sam[i].hdr_name.buffer) {
710                         unistr2_to_ascii((*dom_groups)[i].acct_name,
711                                          &r.uni_grp_name[name_idx],
712                                          sizeof(fstring) - 1);
713                         name_idx++;
714                 }
715
716                 *start_idx = r.next_idx;
717         }
718
719  done:
720         prs_mem_free(&qbuf);
721         prs_mem_free(&rbuf);
722
723         return result;
724 }
725
726 /* Enumerate domain groups */
727
728 NTSTATUS cli_samr_enum_als_groups(struct cli_state *cli, TALLOC_CTX *mem_ctx, 
729                                   POLICY_HND *pol, uint32 *start_idx, 
730                                   uint32 size, struct acct_info **dom_groups,
731                                   uint32 *num_dom_groups)
732 {
733         prs_struct qbuf, rbuf;
734         SAMR_Q_ENUM_DOM_ALIASES q;
735         SAMR_R_ENUM_DOM_ALIASES r;
736         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
737         uint32 name_idx, i;
738
739         ZERO_STRUCT(q);
740         ZERO_STRUCT(r);
741
742         /* Initialise parse structures */
743
744         prs_init(&qbuf, MAX_PDU_FRAG_LEN, mem_ctx, MARSHALL);
745         prs_init(&rbuf, 0, mem_ctx, UNMARSHALL);
746
747         /* Marshall data and send request */
748
749         init_samr_q_enum_dom_aliases(&q, pol, *start_idx, size);
750
751         if (!samr_io_q_enum_dom_aliases("", &q, &qbuf, 0) ||
752             !rpc_api_pipe_req(cli, SAMR_ENUM_DOM_ALIASES, &qbuf, &rbuf)) {
753                 goto done;
754         }
755
756         /* Unmarshall response */
757
758         if (!samr_io_r_enum_dom_aliases("", &r, &rbuf, 0)) {
759                 goto done;
760         }
761
762         /* Return output parameters */
763
764         result = r.status;
765
766         if (!NT_STATUS_IS_OK(result) &&
767             NT_STATUS_V(result) != NT_STATUS_V(STATUS_MORE_ENTRIES)) {
768                 goto done;
769         }
770
771         *num_dom_groups = r.num_entries2;
772
773         if (!((*dom_groups) = (struct acct_info *)
774               talloc(mem_ctx, sizeof(struct acct_info) * *num_dom_groups))) {
775                 result = NT_STATUS_UNSUCCESSFUL;
776                 goto done;
777         }
778
779         memset(*dom_groups, 0, sizeof(struct acct_info) * *num_dom_groups);
780
781         name_idx = 0;
782
783         for (i = 0; i < *num_dom_groups; i++) {
784
785                 (*dom_groups)[i].rid = r.sam[i].rid;
786
787                 if (r.sam[i].hdr_name.buffer) {
788                         unistr2_to_ascii((*dom_groups)[i].acct_name,
789                                          &r.uni_grp_name[name_idx],
790                                          sizeof(fstring) - 1);
791                         name_idx++;
792                 }
793
794                 *start_idx = r.next_idx;
795         }
796
797  done:
798         prs_mem_free(&qbuf);
799         prs_mem_free(&rbuf);
800
801         return result;
802 }
803
804 /* Query alias members */
805
806 NTSTATUS cli_samr_query_aliasmem(struct cli_state *cli, TALLOC_CTX *mem_ctx,
807                                  POLICY_HND *alias_pol, uint32 *num_mem, 
808                                  DOM_SID **sids)
809 {
810         prs_struct qbuf, rbuf;
811         SAMR_Q_QUERY_ALIASMEM q;
812         SAMR_R_QUERY_ALIASMEM r;
813         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
814         uint32 i;
815
816         ZERO_STRUCT(q);
817         ZERO_STRUCT(r);
818
819         /* Initialise parse structures */
820
821         prs_init(&qbuf, MAX_PDU_FRAG_LEN, mem_ctx, MARSHALL);
822         prs_init(&rbuf, 0, mem_ctx, UNMARSHALL);
823
824         /* Marshall data and send request */
825
826         init_samr_q_query_aliasmem(&q, alias_pol);
827
828         if (!samr_io_q_query_aliasmem("", &q, &qbuf, 0) ||
829             !rpc_api_pipe_req(cli, SAMR_QUERY_ALIASMEM, &qbuf, &rbuf)) {
830                 goto done;
831         }
832
833         /* Unmarshall response */
834
835         if (!samr_io_r_query_aliasmem("", &r, &rbuf, 0)) {
836                 goto done;
837         }
838
839         /* Return output parameters */
840
841         if (!NT_STATUS_IS_OK(result = r.status)) {
842                 goto done;
843         }
844
845         *num_mem = r.num_sids;
846
847         if (!(*sids = talloc(mem_ctx, sizeof(DOM_SID) * *num_mem))) {
848                 result = NT_STATUS_UNSUCCESSFUL;
849                 goto done;
850         }
851
852         for (i = 0; i < *num_mem; i++) {
853                 (*sids)[i] = r.sid[i].sid;
854         }
855
856  done:
857         prs_mem_free(&qbuf);
858         prs_mem_free(&rbuf);
859
860         return result;
861 }
862
863 /* Open handle on an alias */
864
865 NTSTATUS cli_samr_open_alias(struct cli_state *cli, TALLOC_CTX *mem_ctx, 
866                              POLICY_HND *domain_pol, uint32 access_mask, 
867                              uint32 alias_rid, POLICY_HND *alias_pol)
868 {
869         prs_struct qbuf, rbuf;
870         SAMR_Q_OPEN_ALIAS q;
871         SAMR_R_OPEN_ALIAS r;
872         NTSTATUS result;
873
874         ZERO_STRUCT(q);
875         ZERO_STRUCT(r);
876
877         /* Initialise parse structures */
878
879         prs_init(&qbuf, MAX_PDU_FRAG_LEN, mem_ctx, MARSHALL);
880         prs_init(&rbuf, 0, mem_ctx, UNMARSHALL);
881
882         /* Marshall data and send request */
883
884         init_samr_q_open_alias(&q, domain_pol, access_mask, alias_rid);
885
886         if (!samr_io_q_open_alias("", &q, &qbuf, 0) ||
887             !rpc_api_pipe_req(cli, SAMR_OPEN_ALIAS, &qbuf, &rbuf)) {
888                 result = NT_STATUS_UNSUCCESSFUL;
889                 goto done;
890         }
891
892         /* Unmarshall response */
893
894         if (!samr_io_r_open_alias("", &r, &rbuf, 0)) {
895                 result = NT_STATUS_UNSUCCESSFUL;
896                 goto done;
897         }
898
899         /* Return output parameters */
900
901         if (NT_STATUS_IS_OK(result = r.status)) {
902                 *alias_pol = r.pol;
903 #ifdef __INSURE__
904                 alias_pol->marker = malloc(1);
905 #endif
906         }
907
908  done:
909         prs_mem_free(&qbuf);
910         prs_mem_free(&rbuf);
911
912         return result;
913 }
914
915 /* Query domain info */
916
917 NTSTATUS cli_samr_query_dom_info(struct cli_state *cli, TALLOC_CTX *mem_ctx, 
918                                  POLICY_HND *domain_pol, uint16 switch_value,
919                                  SAM_UNK_CTR *ctr)
920 {
921         prs_struct qbuf, rbuf;
922         SAMR_Q_QUERY_DOMAIN_INFO q;
923         SAMR_R_QUERY_DOMAIN_INFO r;
924         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
925
926         ZERO_STRUCT(q);
927         ZERO_STRUCT(r);
928
929         /* Initialise parse structures */
930
931         prs_init(&qbuf, MAX_PDU_FRAG_LEN, mem_ctx, MARSHALL);
932         prs_init(&rbuf, 0, mem_ctx, UNMARSHALL);
933
934         /* Marshall data and send request */
935
936         init_samr_q_query_dom_info(&q, domain_pol, switch_value);
937
938         if (!samr_io_q_query_dom_info("", &q, &qbuf, 0) ||
939             !rpc_api_pipe_req(cli, SAMR_QUERY_DOMAIN_INFO, &qbuf, &rbuf)) {
940                 goto done;
941         }
942
943         /* Unmarshall response */
944
945         r.ctr = ctr;
946
947         if (!samr_io_r_query_dom_info("", &r, &rbuf, 0)) {
948                 goto done;
949         }
950
951         /* Return output parameters */
952
953         if (!NT_STATUS_IS_OK(result = r.status)) {
954                 goto done;
955         }
956
957  done:
958         prs_mem_free(&qbuf);
959         prs_mem_free(&rbuf);
960
961         return result;
962 }
963
964 /* Query display info */
965
966 NTSTATUS cli_samr_query_dispinfo(struct cli_state *cli, TALLOC_CTX *mem_ctx, 
967                                  POLICY_HND *domain_pol, uint32 *start_idx,
968                                  uint16 switch_value, uint32 *num_entries,
969                                  uint32 max_entries, SAM_DISPINFO_CTR *ctr)
970 {
971         prs_struct qbuf, rbuf;
972         SAMR_Q_QUERY_DISPINFO q;
973         SAMR_R_QUERY_DISPINFO r;
974         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
975
976         ZERO_STRUCT(q);
977         ZERO_STRUCT(r);
978
979         /* Initialise parse structures */
980
981         prs_init(&qbuf, MAX_PDU_FRAG_LEN, mem_ctx, MARSHALL);
982         prs_init(&rbuf, 0, mem_ctx, UNMARSHALL);
983
984         /* Marshall data and send request */
985
986         init_samr_q_query_dispinfo(&q, domain_pol, switch_value,
987                                    *start_idx, max_entries);
988
989         if (!samr_io_q_query_dispinfo("", &q, &qbuf, 0) ||
990             !rpc_api_pipe_req(cli, SAMR_QUERY_DISPINFO, &qbuf, &rbuf)) {
991                 goto done;
992         }
993
994         /* Unmarshall response */
995
996         r.ctr = ctr;
997
998         if (!samr_io_r_query_dispinfo("", &r, &rbuf, 0)) {
999                 goto done;
1000         }
1001
1002         /* Return output parameters */
1003
1004         result = r.status;
1005
1006         if (!NT_STATUS_IS_OK(result) &&
1007             NT_STATUS_V(result) != NT_STATUS_V(STATUS_MORE_ENTRIES)) {
1008                 goto done;
1009         }
1010
1011         *num_entries = r.num_entries;
1012         *start_idx += r.num_entries;  /* No next_idx in this structure! */
1013
1014  done:
1015         prs_mem_free(&qbuf);
1016         prs_mem_free(&rbuf);
1017
1018         return result;
1019 }
1020
1021 /* Lookup rids.  Note that NT4 seems to crash if more than ~1000 rids are
1022    looked up in one packet. */
1023
1024 NTSTATUS cli_samr_lookup_rids(struct cli_state *cli, TALLOC_CTX *mem_ctx, 
1025                               POLICY_HND *domain_pol, uint32 flags,
1026                               uint32 num_rids, uint32 *rids, 
1027                               uint32 *num_names, char ***names,
1028                               uint32 **name_types)
1029 {
1030         prs_struct qbuf, rbuf;
1031         SAMR_Q_LOOKUP_RIDS q;
1032         SAMR_R_LOOKUP_RIDS r;
1033         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1034         uint32 i;
1035
1036         if (num_rids > 1000) {
1037                 DEBUG(2, ("cli_samr_lookup_rids: warning: NT4 can crash if "
1038                           "more than ~1000 rids are looked up at once.\n"));
1039         }
1040
1041         ZERO_STRUCT(q);
1042         ZERO_STRUCT(r);
1043
1044         /* Initialise parse structures */
1045
1046         prs_init(&qbuf, MAX_PDU_FRAG_LEN, mem_ctx, MARSHALL);
1047         prs_init(&rbuf, 0, mem_ctx, UNMARSHALL);
1048
1049         /* Marshall data and send request */
1050
1051         init_samr_q_lookup_rids(mem_ctx, &q, domain_pol, flags,
1052                                 num_rids, rids);
1053
1054         if (!samr_io_q_lookup_rids("", &q, &qbuf, 0) ||
1055             !rpc_api_pipe_req(cli, SAMR_LOOKUP_RIDS, &qbuf, &rbuf)) {
1056                 goto done;
1057         }
1058
1059         /* Unmarshall response */
1060
1061         if (!samr_io_r_lookup_rids("", &r, &rbuf, 0)) {
1062                 goto done;
1063         }
1064
1065         /* Return output parameters */
1066
1067         if (!NT_STATUS_IS_OK(result = r.status)) {
1068                 goto done;
1069         }
1070
1071         if (r.num_names1 == 0) {
1072                 *num_names = 0;
1073                 *names = NULL;
1074                 goto done;
1075         }
1076
1077         *num_names = r.num_names1;
1078         *names = talloc(mem_ctx, sizeof(char *) * r.num_names1);
1079         *name_types = talloc(mem_ctx, sizeof(uint32) * r.num_names1);
1080
1081         for (i = 0; i < r.num_names1; i++) {
1082                 fstring tmp;
1083
1084                 unistr2_to_ascii(tmp, &r.uni_name[i], sizeof(tmp) - 1);
1085                 (*names)[i] = talloc_strdup(mem_ctx, tmp);
1086                 (*name_types)[i] = r.type[i];
1087         }
1088
1089  done:
1090         prs_mem_free(&qbuf);
1091         prs_mem_free(&rbuf);
1092
1093         return result;
1094 }
1095
1096 /* Lookup names */
1097
1098 NTSTATUS cli_samr_lookup_names(struct cli_state *cli, TALLOC_CTX *mem_ctx, 
1099                                POLICY_HND *domain_pol, uint32 flags,
1100                                uint32 num_names, const char **names,
1101                                uint32 *num_rids, uint32 **rids,
1102                                uint32 **rid_types)
1103 {
1104         prs_struct qbuf, rbuf;
1105         SAMR_Q_LOOKUP_NAMES q;
1106         SAMR_R_LOOKUP_NAMES r;
1107         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1108         uint32 i;
1109
1110         ZERO_STRUCT(q);
1111         ZERO_STRUCT(r);
1112
1113         /* Initialise parse structures */
1114
1115         prs_init(&qbuf, MAX_PDU_FRAG_LEN, mem_ctx, MARSHALL);
1116         prs_init(&rbuf, 0, mem_ctx, UNMARSHALL);
1117
1118         /* Marshall data and send request */
1119
1120         init_samr_q_lookup_names(mem_ctx, &q, domain_pol, flags,
1121                                  num_names, names);
1122
1123         if (!samr_io_q_lookup_names("", &q, &qbuf, 0) ||
1124             !rpc_api_pipe_req(cli, SAMR_LOOKUP_NAMES, &qbuf, &rbuf)) {
1125                 goto done;
1126         }
1127
1128         /* Unmarshall response */
1129
1130         if (!samr_io_r_lookup_names("", &r, &rbuf, 0)) {
1131                 goto done;
1132         }
1133
1134         /* Return output parameters */
1135
1136         if (!NT_STATUS_IS_OK(result = r.status)) {
1137                 goto done;
1138         }
1139
1140         if (r.num_rids1 == 0) {
1141                 *num_rids = 0;
1142                 goto done;
1143         }
1144
1145         *num_rids = r.num_rids1;
1146         *rids = talloc(mem_ctx, sizeof(uint32) * r.num_rids1);
1147         *rid_types = talloc(mem_ctx, sizeof(uint32) * r.num_rids1);
1148
1149         for (i = 0; i < r.num_rids1; i++) {
1150                 (*rids)[i] = r.rids[i];
1151                 (*rid_types)[i] = r.types[i];
1152         }
1153
1154  done:
1155         prs_mem_free(&qbuf);
1156         prs_mem_free(&rbuf);
1157
1158         return result;
1159 }
1160
1161 /* Create a domain user */
1162
1163 NTSTATUS cli_samr_create_dom_user(struct cli_state *cli, TALLOC_CTX *mem_ctx, 
1164                                   POLICY_HND *domain_pol, const char *acct_name,
1165                                   uint32 acb_info, uint32 unknown, 
1166                                   POLICY_HND *user_pol, uint32 *rid)
1167 {
1168         prs_struct qbuf, rbuf;
1169         SAMR_Q_CREATE_USER q;
1170         SAMR_R_CREATE_USER r;
1171         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1172
1173         ZERO_STRUCT(q);
1174         ZERO_STRUCT(r);
1175
1176         /* Initialise parse structures */
1177
1178         prs_init(&qbuf, MAX_PDU_FRAG_LEN, mem_ctx, MARSHALL);
1179         prs_init(&rbuf, 0, mem_ctx, UNMARSHALL);
1180
1181         /* Marshall data and send request */
1182
1183         init_samr_q_create_user(&q, domain_pol, acct_name, acb_info, unknown);
1184
1185         if (!samr_io_q_create_user("", &q, &qbuf, 0) ||
1186             !rpc_api_pipe_req(cli, SAMR_CREATE_USER, &qbuf, &rbuf)) {
1187                 goto done;
1188         }
1189
1190         /* Unmarshall response */
1191
1192         if (!samr_io_r_create_user("", &r, &rbuf, 0)) {
1193                 goto done;
1194         }
1195
1196         /* Return output parameters */
1197
1198         if (!NT_STATUS_IS_OK(result = r.status)) {
1199                 goto done;
1200         }
1201
1202         if (user_pol)
1203                 *user_pol = r.user_pol;
1204
1205         if (rid)
1206                 *rid = r.user_rid;
1207
1208  done:
1209         prs_mem_free(&qbuf);
1210         prs_mem_free(&rbuf);
1211
1212         return result;
1213 }
1214
1215 /* Set userinfo */
1216
1217 NTSTATUS cli_samr_set_userinfo(struct cli_state *cli, TALLOC_CTX *mem_ctx, 
1218                                POLICY_HND *user_pol, uint16 switch_value,
1219                                uchar sess_key[16], SAM_USERINFO_CTR *ctr)
1220 {
1221         prs_struct qbuf, rbuf;
1222         SAMR_Q_SET_USERINFO q;
1223         SAMR_R_SET_USERINFO r;
1224         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1225
1226         ZERO_STRUCT(q);
1227         ZERO_STRUCT(r);
1228
1229         /* Initialise parse structures */
1230
1231         prs_init(&qbuf, MAX_PDU_FRAG_LEN, mem_ctx, MARSHALL);
1232         prs_init(&rbuf, 0, mem_ctx, UNMARSHALL);
1233
1234         /* Marshall data and send request */
1235
1236         q.ctr = ctr;
1237
1238         init_samr_q_set_userinfo(&q, user_pol, sess_key, switch_value, 
1239                                  ctr->info.id);
1240
1241         if (!samr_io_q_set_userinfo("", &q, &qbuf, 0) ||
1242             !rpc_api_pipe_req(cli, SAMR_SET_USERINFO, &qbuf, &rbuf)) {
1243                 goto done;
1244         }
1245
1246         /* Unmarshall response */
1247
1248         if (!samr_io_r_set_userinfo("", &r, &rbuf, 0)) {
1249                 goto done;
1250         }
1251
1252         /* Return output parameters */
1253
1254         if (!NT_STATUS_IS_OK(result = r.status)) {
1255                 goto done;
1256         }
1257
1258  done:
1259         prs_mem_free(&qbuf);
1260         prs_mem_free(&rbuf);
1261
1262         return result;
1263 }
1264
1265 /* Set userinfo2 */
1266
1267 NTSTATUS cli_samr_set_userinfo2(struct cli_state *cli, TALLOC_CTX *mem_ctx, 
1268                                 POLICY_HND *user_pol, uint16 switch_value,
1269                                 uchar sess_key[16], SAM_USERINFO_CTR *ctr)
1270 {
1271         prs_struct qbuf, rbuf;
1272         SAMR_Q_SET_USERINFO2 q;
1273         SAMR_R_SET_USERINFO2 r;
1274         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1275
1276         ZERO_STRUCT(q);
1277         ZERO_STRUCT(r);
1278
1279         /* Initialise parse structures */
1280
1281         prs_init(&qbuf, MAX_PDU_FRAG_LEN, mem_ctx, MARSHALL);
1282         prs_init(&rbuf, 0, mem_ctx, UNMARSHALL);
1283
1284         /* Marshall data and send request */
1285
1286         init_samr_q_set_userinfo2(&q, user_pol, sess_key, switch_value, ctr);
1287
1288         if (!samr_io_q_set_userinfo2("", &q, &qbuf, 0) ||
1289             !rpc_api_pipe_req(cli, SAMR_SET_USERINFO2, &qbuf, &rbuf)) {
1290                 goto done;
1291         }
1292
1293         /* Unmarshall response */
1294
1295         if (!samr_io_r_set_userinfo2("", &r, &rbuf, 0)) {
1296                 goto done;
1297         }
1298
1299         /* Return output parameters */
1300
1301         if (!NT_STATUS_IS_OK(result = r.status)) {
1302                 goto done;
1303         }
1304
1305  done:
1306         prs_mem_free(&qbuf);
1307         prs_mem_free(&rbuf);
1308
1309         return result;
1310 }
1311
1312 /* Delete domain user */
1313
1314 NTSTATUS cli_samr_delete_dom_user(struct cli_state *cli, TALLOC_CTX *mem_ctx, 
1315                                   POLICY_HND *user_pol)
1316 {
1317         prs_struct qbuf, rbuf;
1318         SAMR_Q_DELETE_DOM_USER q;
1319         SAMR_R_DELETE_DOM_USER r;
1320         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1321
1322         ZERO_STRUCT(q);
1323         ZERO_STRUCT(r);
1324
1325         /* Initialise parse structures */
1326
1327         prs_init(&qbuf, MAX_PDU_FRAG_LEN, mem_ctx, MARSHALL);
1328         prs_init(&rbuf, 0, mem_ctx, UNMARSHALL);
1329
1330         /* Marshall data and send request */
1331
1332         init_samr_q_delete_dom_user(&q, user_pol);
1333
1334         if (!samr_io_q_delete_dom_user("", &q, &qbuf, 0) ||
1335             !rpc_api_pipe_req(cli, SAMR_DELETE_DOM_USER, &qbuf, &rbuf)) {
1336                 goto done;
1337         }
1338
1339         /* Unmarshall response */
1340
1341         if (!samr_io_r_delete_dom_user("", &r, &rbuf, 0)) {
1342                 goto done;
1343         }
1344
1345         /* Return output parameters */
1346
1347         result = r.status;
1348
1349  done:
1350         prs_mem_free(&qbuf);
1351         prs_mem_free(&rbuf);
1352
1353         return result;
1354 }
1355
1356 /* Query user security object */
1357
1358 NTSTATUS cli_samr_query_sec_obj(struct cli_state *cli, TALLOC_CTX *mem_ctx,
1359                                  POLICY_HND *user_pol, uint16 switch_value, 
1360                                  TALLOC_CTX *ctx, SEC_DESC_BUF **sec_desc_buf)
1361 {
1362         prs_struct qbuf, rbuf;
1363         SAMR_Q_QUERY_SEC_OBJ q;
1364         SAMR_R_QUERY_SEC_OBJ r;
1365         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1366
1367         ZERO_STRUCT(q);
1368         ZERO_STRUCT(r);
1369
1370         /* Initialise parse structures */
1371
1372         prs_init(&qbuf, MAX_PDU_FRAG_LEN, mem_ctx, MARSHALL);
1373         prs_init(&rbuf, 0, mem_ctx, UNMARSHALL);
1374
1375         /* Marshall data and send request */
1376
1377         init_samr_q_query_sec_obj(&q, user_pol, switch_value);
1378
1379         if (!samr_io_q_query_sec_obj("", &q, &qbuf, 0) ||
1380             !rpc_api_pipe_req(cli, SAMR_QUERY_SEC_OBJECT, &qbuf, &rbuf)) {
1381                 goto done;
1382         }
1383
1384         /* Unmarshall response */
1385
1386         if (!samr_io_r_query_sec_obj("", &r, &rbuf, 0)) {
1387                 goto done;
1388         }
1389
1390         /* Return output parameters */
1391
1392         result = r.status;
1393         *sec_desc_buf=dup_sec_desc_buf(ctx, r.buf);
1394
1395  done:
1396         prs_mem_free(&qbuf);
1397         prs_mem_free(&rbuf);
1398
1399         return result;
1400 }
1401
1402 /* Get domain password info */
1403
1404 NTSTATUS cli_samr_get_dom_pwinfo(struct cli_state *cli, TALLOC_CTX *mem_ctx,
1405                                  uint16 *unk_0, uint16 *unk_1, uint16 *unk_2)
1406 {
1407         prs_struct qbuf, rbuf;
1408         SAMR_Q_GET_DOM_PWINFO q;
1409         SAMR_R_GET_DOM_PWINFO r;
1410         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
1411
1412         ZERO_STRUCT(q);
1413         ZERO_STRUCT(r);
1414
1415         /* Initialise parse structures */
1416
1417         prs_init(&qbuf, MAX_PDU_FRAG_LEN, mem_ctx, MARSHALL);
1418         prs_init(&rbuf, 0, mem_ctx, UNMARSHALL);
1419
1420         /* Marshall data and send request */
1421
1422         init_samr_q_get_dom_pwinfo(&q, cli->desthost);
1423
1424         if (!samr_io_q_get_dom_pwinfo("", &q, &qbuf, 0) ||
1425             !rpc_api_pipe_req(cli, SAMR_GET_DOM_PWINFO, &qbuf, &rbuf))
1426                 goto done;
1427
1428         /* Unmarshall response */
1429
1430         if (!samr_io_r_get_dom_pwinfo("", &r, &rbuf, 0))
1431                 goto done;
1432
1433         /* Return output parameters */
1434
1435         result = r.status;
1436
1437         if (NT_STATUS_IS_OK(result)) {
1438                 if (unk_0)
1439                         *unk_0 = r.unk_0;
1440                 if (unk_1)
1441                         *unk_1 = r.unk_1;
1442                 if (unk_2)
1443                         *unk_2 = r.unk_2;
1444         }
1445
1446  done:
1447         prs_mem_free(&qbuf);
1448         prs_mem_free(&rbuf);
1449
1450         return result;
1451 }