]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
Added cli_samr_enum_dom_groups() function.
authorTim Potter <tpot@samba.org>
Fri, 4 May 2001 04:16:59 +0000 (04:16 +0000)
committerTim Potter <tpot@samba.org>
Fri, 4 May 2001 04:16:59 +0000 (04:16 +0000)
source/libsmb/cli_samr.c

index a822611445d21fc2d7406beafd485bc9c2ac7802..0536780444fc5830a9e9d7c79020bea8aeb15c64 100644 (file)
@@ -563,3 +563,80 @@ uint32 cli_samr_query_groupmem(
 
        return result;
 }
+
+/* Enumerate domain groups */
+
+uint32 cli_samr_enum_dom_groups(struct cli_state *cli, TALLOC_CTX *mem_ctx, 
+                               POLICY_HND *pol, uint32 *start_idx, 
+                               uint32 size, struct acct_info **dom_groups,
+                               uint32 *num_dom_groups)
+{
+       prs_struct qbuf, rbuf;
+       SAMR_Q_ENUM_DOM_GROUPS q;
+       SAMR_R_ENUM_DOM_GROUPS r;
+       uint32 result = NT_STATUS_UNSUCCESSFUL, name_idx, i;
+
+       ZERO_STRUCT(q);
+       ZERO_STRUCT(r);
+
+       /* Initialise parse structures */
+
+       prs_init(&qbuf, MAX_PDU_FRAG_LEN, mem_ctx, MARSHALL);
+       prs_init(&rbuf, 0, mem_ctx, UNMARSHALL);
+
+       /* Marshall data and send request */
+
+       init_samr_q_enum_dom_groups(&q, pol, *start_idx, size);
+
+       if (!samr_io_q_enum_dom_groups("", &q, &qbuf, 0) ||
+           !rpc_api_pipe_req(cli, SAMR_ENUM_DOM_GROUPS, &qbuf, &rbuf)) {
+               goto done;
+       }
+
+       /* Unmarshall response */
+
+       if (!samr_io_r_enum_dom_groups("", &r, &rbuf, 0)) {
+               goto done;
+       }
+
+       /* Return output parameters */
+
+       result = r.status;
+
+       if (result != NT_STATUS_NOPROBLEMO &&
+           result != STATUS_MORE_ENTRIES) {
+               goto done;
+       }
+
+       *num_dom_groups = r.num_entries2;
+
+       if (!((*dom_groups) = (struct acct_info *)
+             talloc(mem_ctx, sizeof(struct acct_info) * *num_dom_groups))) {
+               result = NT_STATUS_UNSUCCESSFUL;
+               goto done;
+       }
+
+       memset(*dom_groups, 0, sizeof(struct acct_info) * *num_dom_groups);
+
+       name_idx = 0;
+
+       for (i = 0; i < *num_dom_groups; i++) {
+
+               (*dom_groups)[i].rid = r.sam[i].rid;
+
+               if (r.sam[i].hdr_name.buffer) {
+                       unistr2_to_ascii((*dom_groups)[i].acct_name,
+                                        &r.uni_grp_name[name_idx],
+                                        sizeof(fstring) - 1);
+                       name_idx++;
+               }
+
+               *start_idx = r.next_idx;
+       }
+
+ done:
+       prs_mem_free(&qbuf);
+       prs_mem_free(&rbuf);
+
+       return result;
+}