s3:winbind: Add async wb_sid2gid
authorVolker Lendecke <vl@samba.org>
Tue, 4 Aug 2009 17:38:52 +0000 (13:38 -0400)
committerVolker Lendecke <vl@samba.org>
Wed, 5 Aug 2009 07:21:21 +0000 (03:21 -0400)
12 files changed:
source3/Makefile.in
source3/librpc/gen_ndr/cli_wbint.c
source3/librpc/gen_ndr/cli_wbint.h
source3/librpc/gen_ndr/ndr_wbint.c
source3/librpc/gen_ndr/ndr_wbint.h
source3/librpc/gen_ndr/srv_wbint.c
source3/librpc/gen_ndr/srv_wbint.h
source3/librpc/gen_ndr/wbint.h
source3/librpc/idl/wbint.idl
source3/winbindd/wb_sid2gid.c [new file with mode: 0644]
source3/winbindd/winbindd_dual_srv.c
source3/winbindd/winbindd_proto.h

index 5a6cb43ef1010f64dacf2b1f00eeda19e087fa86..f0cc654af055ec89ed7d70461dec9689d920e5e8 100644 (file)
@@ -1155,6 +1155,7 @@ WINBINDD_OBJ1 = \
                winbindd/wb_lookupsid.o \
                winbindd/wb_lookupname.o \
                winbindd/wb_sid2uid.o \
+               winbindd/wb_sid2gid.o \
                winbindd/winbindd_lookupsid.o \
                winbindd/winbindd_lookupname.o \
                winbindd/winbindd_sid_to_uid.o \
index e0b31705c1664c635ab608cd137c478aaf859220..c64de272b3b680bc889c1f92ebbe332afd605b69 100644 (file)
@@ -667,3 +667,168 @@ NTSTATUS rpccli_wbint_Sid2Uid(struct rpc_pipe_client *cli,
        return r.out.result;
 }
 
+struct rpccli_wbint_Sid2Gid_state {
+       struct wbint_Sid2Gid orig;
+       struct wbint_Sid2Gid tmp;
+       TALLOC_CTX *out_mem_ctx;
+       NTSTATUS (*dispatch_recv)(struct tevent_req *req, TALLOC_CTX *mem_ctx);
+};
+
+static void rpccli_wbint_Sid2Gid_done(struct tevent_req *subreq);
+
+struct tevent_req *rpccli_wbint_Sid2Gid_send(TALLOC_CTX *mem_ctx,
+                                            struct tevent_context *ev,
+                                            struct rpc_pipe_client *cli,
+                                            const char *_dom_name /* [in] [unique,charset(UTF8)] */,
+                                            struct dom_sid *_sid /* [in] [ref] */,
+                                            uint64_t *_gid /* [out] [ref] */)
+{
+       struct tevent_req *req;
+       struct rpccli_wbint_Sid2Gid_state *state;
+       struct tevent_req *subreq;
+
+       req = tevent_req_create(mem_ctx, &state,
+                               struct rpccli_wbint_Sid2Gid_state);
+       if (req == NULL) {
+               return NULL;
+       }
+       state->out_mem_ctx = NULL;
+       state->dispatch_recv = cli->dispatch_recv;
+
+       /* In parameters */
+       state->orig.in.dom_name = _dom_name;
+       state->orig.in.sid = _sid;
+
+       /* Out parameters */
+       state->orig.out.gid = _gid;
+
+       /* Result */
+       ZERO_STRUCT(state->orig.out.result);
+
+       if (DEBUGLEVEL >= 10) {
+               NDR_PRINT_IN_DEBUG(wbint_Sid2Gid, &state->orig);
+       }
+
+       state->out_mem_ctx = talloc_named_const(state, 0,
+                            "rpccli_wbint_Sid2Gid_out_memory");
+       if (tevent_req_nomem(state->out_mem_ctx, req)) {
+               return tevent_req_post(req, ev);
+       }
+
+       /* make a temporary copy, that we pass to the dispatch function */
+       state->tmp = state->orig;
+
+       subreq = cli->dispatch_send(state, ev, cli,
+                                   &ndr_table_wbint,
+                                   NDR_WBINT_SID2GID,
+                                   &state->tmp);
+       if (tevent_req_nomem(subreq, req)) {
+               return tevent_req_post(req, ev);
+       }
+       tevent_req_set_callback(subreq, rpccli_wbint_Sid2Gid_done, req);
+       return req;
+}
+
+static void rpccli_wbint_Sid2Gid_done(struct tevent_req *subreq)
+{
+       struct tevent_req *req = tevent_req_callback_data(
+               subreq, struct tevent_req);
+       struct rpccli_wbint_Sid2Gid_state *state = tevent_req_data(
+               req, struct rpccli_wbint_Sid2Gid_state);
+       NTSTATUS status;
+       TALLOC_CTX *mem_ctx;
+
+       if (state->out_mem_ctx) {
+               mem_ctx = state->out_mem_ctx;
+       } else {
+               mem_ctx = state;
+       }
+
+       status = state->dispatch_recv(subreq, mem_ctx);
+       TALLOC_FREE(subreq);
+       if (!NT_STATUS_IS_OK(status)) {
+               tevent_req_nterror(req, status);
+               return;
+       }
+
+       /* Copy out parameters */
+       *state->orig.out.gid = *state->tmp.out.gid;
+
+       /* Copy result */
+       state->orig.out.result = state->tmp.out.result;
+
+       /* Reset temporary structure */
+       ZERO_STRUCT(state->tmp);
+
+       if (DEBUGLEVEL >= 10) {
+               NDR_PRINT_OUT_DEBUG(wbint_Sid2Gid, &state->orig);
+       }
+
+       tevent_req_done(req);
+}
+
+NTSTATUS rpccli_wbint_Sid2Gid_recv(struct tevent_req *req,
+                                  TALLOC_CTX *mem_ctx,
+                                  NTSTATUS *result)
+{
+       struct rpccli_wbint_Sid2Gid_state *state = tevent_req_data(
+               req, struct rpccli_wbint_Sid2Gid_state);
+       NTSTATUS status;
+
+       if (tevent_req_is_nterror(req, &status)) {
+               tevent_req_received(req);
+               return status;
+       }
+
+       /* Steal possbile out parameters to the callers context */
+       talloc_steal(mem_ctx, state->out_mem_ctx);
+
+       /* Return result */
+       *result = state->orig.out.result;
+
+       tevent_req_received(req);
+       return NT_STATUS_OK;
+}
+
+NTSTATUS rpccli_wbint_Sid2Gid(struct rpc_pipe_client *cli,
+                             TALLOC_CTX *mem_ctx,
+                             const char *dom_name /* [in] [unique,charset(UTF8)] */,
+                             struct dom_sid *sid /* [in] [ref] */,
+                             uint64_t *gid /* [out] [ref] */)
+{
+       struct wbint_Sid2Gid r;
+       NTSTATUS status;
+
+       /* In parameters */
+       r.in.dom_name = dom_name;
+       r.in.sid = sid;
+
+       if (DEBUGLEVEL >= 10) {
+               NDR_PRINT_IN_DEBUG(wbint_Sid2Gid, &r);
+       }
+
+       status = cli->dispatch(cli,
+                               mem_ctx,
+                               &ndr_table_wbint,
+                               NDR_WBINT_SID2GID,
+                               &r);
+
+       if (!NT_STATUS_IS_OK(status)) {
+               return status;
+       }
+
+       if (DEBUGLEVEL >= 10) {
+               NDR_PRINT_OUT_DEBUG(wbint_Sid2Gid, &r);
+       }
+
+       if (NT_STATUS_IS_ERR(status)) {
+               return status;
+       }
+
+       /* Return variables */
+       *gid = *r.out.gid;
+
+       /* Return result */
+       return r.out.result;
+}
+
index eb533012dc4261cb4f9dafefc836029eebaf93b1..e74804debd927cbe185b4ced9397dcb4c5a94385 100644 (file)
@@ -60,4 +60,18 @@ NTSTATUS rpccli_wbint_Sid2Uid(struct rpc_pipe_client *cli,
                              const char *dom_name /* [in] [unique,charset(UTF8)] */,
                              struct dom_sid *sid /* [in] [ref] */,
                              uint64_t *uid /* [out] [ref] */);
+struct tevent_req *rpccli_wbint_Sid2Gid_send(TALLOC_CTX *mem_ctx,
+                                            struct tevent_context *ev,
+                                            struct rpc_pipe_client *cli,
+                                            const char *_dom_name /* [in] [unique,charset(UTF8)] */,
+                                            struct dom_sid *_sid /* [in] [ref] */,
+                                            uint64_t *_gid /* [out] [ref] */);
+NTSTATUS rpccli_wbint_Sid2Gid_recv(struct tevent_req *req,
+                                  TALLOC_CTX *mem_ctx,
+                                  NTSTATUS *result);
+NTSTATUS rpccli_wbint_Sid2Gid(struct rpc_pipe_client *cli,
+                             TALLOC_CTX *mem_ctx,
+                             const char *dom_name /* [in] [unique,charset(UTF8)] */,
+                             struct dom_sid *sid /* [in] [ref] */,
+                             uint64_t *gid /* [out] [ref] */);
 #endif /* __CLI_WBINT__ */
index 0773ed0e10144b86e4cd8a94728df700db826914..d7dedf84ecb0162907d69a22ddb90f5eb8355e4f 100644 (file)
@@ -466,6 +466,116 @@ _PUBLIC_ void ndr_print_wbint_Sid2Uid(struct ndr_print *ndr, const char *name, i
        ndr->depth--;
 }
 
+static enum ndr_err_code ndr_push_wbint_Sid2Gid(struct ndr_push *ndr, int flags, const struct wbint_Sid2Gid *r)
+{
+       if (flags & NDR_IN) {
+               NDR_CHECK(ndr_push_unique_ptr(ndr, r->in.dom_name));
+               if (r->in.dom_name) {
+                       NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(r->in.dom_name, CH_UTF8)));
+                       NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, 0));
+                       NDR_CHECK(ndr_push_uint32(ndr, NDR_SCALARS, ndr_charset_length(r->in.dom_name, CH_UTF8)));
+                       NDR_CHECK(ndr_push_charset(ndr, NDR_SCALARS, r->in.dom_name, ndr_charset_length(r->in.dom_name, CH_UTF8), sizeof(uint8_t), CH_UTF8));
+               }
+               if (r->in.sid == NULL) {
+                       return ndr_push_error(ndr, NDR_ERR_INVALID_POINTER, "NULL [ref] pointer");
+               }
+               NDR_CHECK(ndr_push_dom_sid(ndr, NDR_SCALARS, r->in.sid));
+       }
+       if (flags & NDR_OUT) {
+               if (r->out.gid == NULL) {
+                       return ndr_push_error(ndr, NDR_ERR_INVALID_POINTER, "NULL [ref] pointer");
+               }
+               NDR_CHECK(ndr_push_hyper(ndr, NDR_SCALARS, *r->out.gid));
+               NDR_CHECK(ndr_push_NTSTATUS(ndr, NDR_SCALARS, r->out.result));
+       }
+       return NDR_ERR_SUCCESS;
+}
+
+static enum ndr_err_code ndr_pull_wbint_Sid2Gid(struct ndr_pull *ndr, int flags, struct wbint_Sid2Gid *r)
+{
+       uint32_t _ptr_dom_name;
+       TALLOC_CTX *_mem_save_dom_name_0;
+       TALLOC_CTX *_mem_save_sid_0;
+       TALLOC_CTX *_mem_save_gid_0;
+       if (flags & NDR_IN) {
+               ZERO_STRUCT(r->out);
+
+               NDR_CHECK(ndr_pull_generic_ptr(ndr, &_ptr_dom_name));
+               if (_ptr_dom_name) {
+                       NDR_PULL_ALLOC(ndr, r->in.dom_name);
+               } else {
+                       r->in.dom_name = NULL;
+               }
+               if (r->in.dom_name) {
+                       _mem_save_dom_name_0 = NDR_PULL_GET_MEM_CTX(ndr);
+                       NDR_PULL_SET_MEM_CTX(ndr, r->in.dom_name, 0);
+                       NDR_CHECK(ndr_pull_array_size(ndr, &r->in.dom_name));
+                       NDR_CHECK(ndr_pull_array_length(ndr, &r->in.dom_name));
+                       if (ndr_get_array_length(ndr, &r->in.dom_name) > ndr_get_array_size(ndr, &r->in.dom_name)) {
+                               return ndr_pull_error(ndr, NDR_ERR_ARRAY_SIZE, "Bad array size %u should exceed array length %u", ndr_get_array_size(ndr, &r->in.dom_name), ndr_get_array_length(ndr, &r->in.dom_name));
+                       }
+                       NDR_CHECK(ndr_check_string_terminator(ndr, ndr_get_array_length(ndr, &r->in.dom_name), sizeof(uint8_t)));
+                       NDR_CHECK(ndr_pull_charset(ndr, NDR_SCALARS, &r->in.dom_name, ndr_get_array_length(ndr, &r->in.dom_name), sizeof(uint8_t), CH_UTF8));
+                       NDR_PULL_SET_MEM_CTX(ndr, _mem_save_dom_name_0, 0);
+               }
+               if (ndr->flags & LIBNDR_FLAG_REF_ALLOC) {
+                       NDR_PULL_ALLOC(ndr, r->in.sid);
+               }
+               _mem_save_sid_0 = NDR_PULL_GET_MEM_CTX(ndr);
+               NDR_PULL_SET_MEM_CTX(ndr, r->in.sid, LIBNDR_FLAG_REF_ALLOC);
+               NDR_CHECK(ndr_pull_dom_sid(ndr, NDR_SCALARS, r->in.sid));
+               NDR_PULL_SET_MEM_CTX(ndr, _mem_save_sid_0, LIBNDR_FLAG_REF_ALLOC);
+               NDR_PULL_ALLOC(ndr, r->out.gid);
+               ZERO_STRUCTP(r->out.gid);
+       }
+       if (flags & NDR_OUT) {
+               if (ndr->flags & LIBNDR_FLAG_REF_ALLOC) {
+                       NDR_PULL_ALLOC(ndr, r->out.gid);
+               }
+               _mem_save_gid_0 = NDR_PULL_GET_MEM_CTX(ndr);
+               NDR_PULL_SET_MEM_CTX(ndr, r->out.gid, LIBNDR_FLAG_REF_ALLOC);
+               NDR_CHECK(ndr_pull_hyper(ndr, NDR_SCALARS, r->out.gid));
+               NDR_PULL_SET_MEM_CTX(ndr, _mem_save_gid_0, LIBNDR_FLAG_REF_ALLOC);
+               NDR_CHECK(ndr_pull_NTSTATUS(ndr, NDR_SCALARS, &r->out.result));
+       }
+       return NDR_ERR_SUCCESS;
+}
+
+_PUBLIC_ void ndr_print_wbint_Sid2Gid(struct ndr_print *ndr, const char *name, int flags, const struct wbint_Sid2Gid *r)
+{
+       ndr_print_struct(ndr, name, "wbint_Sid2Gid");
+       ndr->depth++;
+       if (flags & NDR_SET_VALUES) {
+               ndr->flags |= LIBNDR_PRINT_SET_VALUES;
+       }
+       if (flags & NDR_IN) {
+               ndr_print_struct(ndr, "in", "wbint_Sid2Gid");
+               ndr->depth++;
+               ndr_print_ptr(ndr, "dom_name", r->in.dom_name);
+               ndr->depth++;
+               if (r->in.dom_name) {
+                       ndr_print_string(ndr, "dom_name", r->in.dom_name);
+               }
+               ndr->depth--;
+               ndr_print_ptr(ndr, "sid", r->in.sid);
+               ndr->depth++;
+               ndr_print_dom_sid(ndr, "sid", r->in.sid);
+               ndr->depth--;
+               ndr->depth--;
+       }
+       if (flags & NDR_OUT) {
+               ndr_print_struct(ndr, "out", "wbint_Sid2Gid");
+               ndr->depth++;
+               ndr_print_ptr(ndr, "gid", r->out.gid);
+               ndr->depth++;
+               ndr_print_hyper(ndr, "gid", *r->out.gid);
+               ndr->depth--;
+               ndr_print_NTSTATUS(ndr, "result", r->out.result);
+               ndr->depth--;
+       }
+       ndr->depth--;
+}
+
 static const struct ndr_interface_call wbint_calls[] = {
        {
                "wbint_Ping",
@@ -499,6 +609,14 @@ static const struct ndr_interface_call wbint_calls[] = {
                (ndr_print_function_t) ndr_print_wbint_Sid2Uid,
                false,
        },
+       {
+               "wbint_Sid2Gid",
+               sizeof(struct wbint_Sid2Gid),
+               (ndr_push_flags_fn_t) ndr_push_wbint_Sid2Gid,
+               (ndr_pull_flags_fn_t) ndr_pull_wbint_Sid2Gid,
+               (ndr_print_function_t) ndr_print_wbint_Sid2Gid,
+               false,
+       },
        { NULL, 0, NULL, NULL, NULL, false }
 };
 
@@ -528,7 +646,7 @@ const struct ndr_interface_table ndr_table_wbint = {
                NDR_WBINT_VERSION
        },
        .helpstring     = NDR_WBINT_HELPSTRING,
-       .num_calls      = 4,
+       .num_calls      = 5,
        .calls          = wbint_calls,
        .endpoints      = &wbint_endpoints,
        .authservices   = &wbint_authservices
index 0570df6cd12002b28f6e644ab6d75d4bb716b0da..37644473bd4a89e59f3adf58368df25e1466f8d5 100644 (file)
@@ -19,9 +19,12 @@ extern const struct ndr_interface_table ndr_table_wbint;
 
 #define NDR_WBINT_SID2UID (0x03)
 
-#define NDR_WBINT_CALL_COUNT (4)
+#define NDR_WBINT_SID2GID (0x04)
+
+#define NDR_WBINT_CALL_COUNT (5)
 void ndr_print_wbint_Ping(struct ndr_print *ndr, const char *name, int flags, const struct wbint_Ping *r);
 void ndr_print_wbint_LookupSid(struct ndr_print *ndr, const char *name, int flags, const struct wbint_LookupSid *r);
 void ndr_print_wbint_LookupName(struct ndr_print *ndr, const char *name, int flags, const struct wbint_LookupName *r);
 void ndr_print_wbint_Sid2Uid(struct ndr_print *ndr, const char *name, int flags, const struct wbint_Sid2Uid *r);
+void ndr_print_wbint_Sid2Gid(struct ndr_print *ndr, const char *name, int flags, const struct wbint_Sid2Gid *r);
 #endif /* _HEADER_NDR_wbint */
index 2fd6c17c281654eab782203ca8da463f47fc6a53..119a263c20ef1cee4a146f4af59f92bff6e9058e 100644 (file)
@@ -344,6 +344,86 @@ static bool api_wbint_Sid2Uid(pipes_struct *p)
        return true;
 }
 
+static bool api_wbint_Sid2Gid(pipes_struct *p)
+{
+       const struct ndr_interface_call *call;
+       struct ndr_pull *pull;
+       struct ndr_push *push;
+       enum ndr_err_code ndr_err;
+       DATA_BLOB blob;
+       struct wbint_Sid2Gid *r;
+
+       call = &ndr_table_wbint.calls[NDR_WBINT_SID2GID];
+
+       r = talloc(talloc_tos(), struct wbint_Sid2Gid);
+       if (r == NULL) {
+               return false;
+       }
+
+       if (!prs_data_blob(&p->in_data.data, &blob, r)) {
+               talloc_free(r);
+               return false;
+       }
+
+       pull = ndr_pull_init_blob(&blob, r, NULL);
+       if (pull == NULL) {
+               talloc_free(r);
+               return false;
+       }
+
+       pull->flags |= LIBNDR_FLAG_REF_ALLOC;
+       ndr_err = call->ndr_pull(pull, NDR_IN, r);
+       if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
+               talloc_free(r);
+               return false;
+       }
+
+       if (DEBUGLEVEL >= 10) {
+               NDR_PRINT_IN_DEBUG(wbint_Sid2Gid, r);
+       }
+
+       ZERO_STRUCT(r->out);
+       r->out.gid = talloc_zero(r, uint64_t);
+       if (r->out.gid == NULL) {
+               talloc_free(r);
+               return false;
+       }
+
+       r->out.result = _wbint_Sid2Gid(p, r);
+
+       if (p->rng_fault_state) {
+               talloc_free(r);
+               /* Return true here, srv_pipe_hnd.c will take care */
+               return true;
+       }
+
+       if (DEBUGLEVEL >= 10) {
+               NDR_PRINT_OUT_DEBUG(wbint_Sid2Gid, r);
+       }
+
+       push = ndr_push_init_ctx(r, NULL);
+       if (push == NULL) {
+               talloc_free(r);
+               return false;
+       }
+
+       ndr_err = call->ndr_push(push, NDR_OUT, r);
+       if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
+               talloc_free(r);
+               return false;
+       }
+
+       blob = ndr_push_blob(push);
+       if (!prs_copy_data_in(&p->out_data.rdata, (const char *)blob.data, (uint32_t)blob.length)) {
+               talloc_free(r);
+               return false;
+       }
+
+       talloc_free(r);
+
+       return true;
+}
+
 
 /* Tables */
 static struct api_struct api_wbint_cmds[] =
@@ -352,6 +432,7 @@ static struct api_struct api_wbint_cmds[] =
        {"WBINT_LOOKUPSID", NDR_WBINT_LOOKUPSID, api_wbint_LookupSid},
        {"WBINT_LOOKUPNAME", NDR_WBINT_LOOKUPNAME, api_wbint_LookupName},
        {"WBINT_SID2UID", NDR_WBINT_SID2UID, api_wbint_Sid2Uid},
+       {"WBINT_SID2GID", NDR_WBINT_SID2GID, api_wbint_Sid2Gid},
 };
 
 void wbint_get_pipe_fns(struct api_struct **fns, int *n_fns)
@@ -431,6 +512,18 @@ NTSTATUS rpc_wbint_dispatch(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, co
                        return NT_STATUS_OK;
                }
 
+               case NDR_WBINT_SID2GID: {
+                       struct wbint_Sid2Gid *r = (struct wbint_Sid2Gid *)_r;
+                       ZERO_STRUCT(r->out);
+                       r->out.gid = talloc_zero(mem_ctx, uint64_t);
+                       if (r->out.gid == NULL) {
+                       return NT_STATUS_NO_MEMORY;
+                       }
+
+                       r->out.result = _wbint_Sid2Gid(cli->pipes_struct, r);
+                       return NT_STATUS_OK;
+               }
+
                default:
                        return NT_STATUS_NOT_IMPLEMENTED;
        }
index 21c59b85bbc5ded58f38fc3f4425adcc7d11f1cb..e8ad0ac764ad503ef4d79700fb5cb5eaed39e272 100644 (file)
@@ -5,11 +5,13 @@ void _wbint_Ping(pipes_struct *p, struct wbint_Ping *r);
 NTSTATUS _wbint_LookupSid(pipes_struct *p, struct wbint_LookupSid *r);
 NTSTATUS _wbint_LookupName(pipes_struct *p, struct wbint_LookupName *r);
 NTSTATUS _wbint_Sid2Uid(pipes_struct *p, struct wbint_Sid2Uid *r);
+NTSTATUS _wbint_Sid2Gid(pipes_struct *p, struct wbint_Sid2Gid *r);
 void wbint_get_pipe_fns(struct api_struct **fns, int *n_fns);
 NTSTATUS rpc_wbint_dispatch(struct rpc_pipe_client *cli, TALLOC_CTX *mem_ctx, const struct ndr_interface_table *table, uint32_t opnum, void *r);
 void _wbint_Ping(pipes_struct *p, struct wbint_Ping *r);
 NTSTATUS _wbint_LookupSid(pipes_struct *p, struct wbint_LookupSid *r);
 NTSTATUS _wbint_LookupName(pipes_struct *p, struct wbint_LookupName *r);
 NTSTATUS _wbint_Sid2Uid(pipes_struct *p, struct wbint_Sid2Uid *r);
+NTSTATUS _wbint_Sid2Gid(pipes_struct *p, struct wbint_Sid2Gid *r);
 NTSTATUS rpc_wbint_init(void);
 #endif /* __SRV_WBINT__ */
index f4dc8cfcb1fb60eca87eb5a860c74f9e4ffaeffe..82160d94944349bcd0c54d5d1b58902850022b41 100644 (file)
@@ -65,4 +65,18 @@ struct wbint_Sid2Uid {
 
 };
 
+
+struct wbint_Sid2Gid {
+       struct {
+               const char *dom_name;/* [unique,charset(UTF8)] */
+               struct dom_sid *sid;/* [ref] */
+       } in;
+
+       struct {
+               uint64_t *gid;/* [ref] */
+               NTSTATUS result;
+       } out;
+
+};
+
 #endif /* _HEADER_wbint */
index ce0329cc61765ab755af6da2f60012bfe0137c40..da437fe2c2d3a86566418c11fa09832d14a0144a 100644 (file)
@@ -35,4 +35,10 @@ interface wbint
        [in] dom_sid *sid,
        [out] hyper *uid
        );
+
+    NTSTATUS wbint_Sid2Gid(
+       [in,unique,string,charset(UTF8)] char *dom_name,
+       [in] dom_sid *sid,
+       [out] hyper *gid
+       );
 }
\ No newline at end of file
diff --git a/source3/winbindd/wb_sid2gid.c b/source3/winbindd/wb_sid2gid.c
new file mode 100644 (file)
index 0000000..a578746
--- /dev/null
@@ -0,0 +1,170 @@
+/*
+   Unix SMB/CIFS implementation.
+   async sid2gid
+   Copyright (C) Volker Lendecke 2009
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#include "includes.h"
+#include "winbindd.h"
+#include "librpc/gen_ndr/cli_wbint.h"
+
+struct wb_sid2gid_state {
+       struct tevent_context *ev;
+       struct dom_sid sid;
+       char *dom_name;
+       uint64 gid64;
+       gid_t gid;
+};
+
+static void wb_sid2gid_lookup_done(struct tevent_req *subreq);
+static void wb_sid2gid_done(struct tevent_req *subreq);
+
+
+struct tevent_req *wb_sid2gid_send(TALLOC_CTX *mem_ctx,
+                                  struct tevent_context *ev,
+                                  const struct dom_sid *sid)
+{
+       struct tevent_req *req, *subreq;
+       struct wb_sid2gid_state *state;
+       bool expired;
+
+       req = tevent_req_create(mem_ctx, &state, struct wb_sid2gid_state);
+       if (req == NULL) {
+               return NULL;
+       }
+       sid_copy(&state->sid, sid);
+       state->ev = ev;
+
+       if (winbindd_use_idmap_cache()
+           && idmap_cache_find_sid2gid(sid, &state->gid, &expired)) {
+
+               DEBUG(10, ("idmap_cache_find_sid2gid found %d%s\n",
+                          (int)state->gid, expired ? " (expired)": ""));
+
+               if (!expired || IS_DOMAIN_OFFLINE(find_our_domain())) {
+                       if (state->gid == -1) {
+                               tevent_req_nterror(req, NT_STATUS_NONE_MAPPED);
+                       } else {
+                               tevent_req_done(req);
+                       }
+                       return tevent_req_post(req, ev);
+               }
+       }
+
+       /*
+        * We need to make sure the sid is of the right type to not flood
+        * idmap with wrong entries
+        */
+
+       subreq = wb_lookupsid_send(state, ev, &state->sid);
+       if (tevent_req_nomem(subreq, req)) {
+               return tevent_req_post(req, ev);
+       }
+       tevent_req_set_callback(subreq, wb_sid2gid_lookup_done, req);
+       return req;
+}
+
+static void wb_sid2gid_lookup_done(struct tevent_req *subreq)
+{
+       struct tevent_req *req = tevent_req_callback_data(
+               subreq, struct tevent_req);
+       struct wb_sid2gid_state *state = tevent_req_data(
+               req, struct wb_sid2gid_state);
+       struct winbindd_domain *domain;
+       const char *domname;
+       const char *name;
+       enum lsa_SidType type;
+       NTSTATUS status;
+       struct winbindd_child *child;
+
+       status = wb_lookupsid_recv(subreq, talloc_tos(), &type, &domname,
+                                  &name);
+       if (!NT_STATUS_IS_OK(status)) {
+               tevent_req_nterror(req, status);
+               return;
+       }
+
+       if ((type != SID_NAME_DOM_GRP) && (type != SID_NAME_ALIAS)
+           && (type != SID_NAME_WKN_GRP)) {
+               DEBUG(5, ("Sid %s is not a group.\n",
+                         sid_string_dbg(&state->sid)));
+               /*
+                * We have to set the cache ourselves here, the child
+                * which is normally responsible was not queried yet.
+                */
+               idmap_cache_set_sid2gid(&state->sid, -1);
+               tevent_req_nterror(req, NT_STATUS_INVALID_SID);
+               return;
+       }
+
+       domain = find_domain_from_sid_noinit(&state->sid);
+
+       /*
+        * TODO: Issue a gettrustinfo here in case we don't have "domain" yet?
+        */
+
+       if ((domain != NULL) && domain->have_idmap_config) {
+               state->dom_name = domain->name;
+       } else {
+               state->dom_name = NULL;
+       }
+
+       child = idmap_child();
+
+       subreq = rpccli_wbint_Sid2Gid_send(state, state->ev, child->rpccli,
+                                          state->dom_name, &state->sid,
+                                          &state->gid64);
+       if (tevent_req_nomem(subreq, req)) {
+               return;
+       }
+       tevent_req_set_callback(subreq, wb_sid2gid_done, req);
+}
+
+static void wb_sid2gid_done(struct tevent_req *subreq)
+{
+       struct tevent_req *req = tevent_req_callback_data(
+               subreq, struct tevent_req);
+       struct wb_sid2gid_state *state = tevent_req_data(
+               req, struct wb_sid2gid_state);
+       NTSTATUS status, result;
+
+       status = rpccli_wbint_Sid2Gid_recv(subreq, state, &result);
+       TALLOC_FREE(subreq);
+       if (!NT_STATUS_IS_OK(status)) {
+               tevent_req_nterror(req, status);
+               return;
+       }
+       if (!NT_STATUS_IS_OK(result)) {
+               tevent_req_nterror(req, result);
+               return;
+       }
+
+       state->gid = state->gid64;
+       tevent_req_done(req);
+}
+
+NTSTATUS wb_sid2gid_recv(struct tevent_req *req, gid_t *gid)
+{
+       struct wb_sid2gid_state *state = tevent_req_data(
+               req, struct wb_sid2gid_state);
+       NTSTATUS status;
+
+       if (tevent_req_is_nterror(req, &status)) {
+               return status;
+       }
+       *gid = state->gid;
+       return NT_STATUS_OK;
+}
index 3f449d5cd35ab5a85b3f7155f0f47bbc6331b3cf..670e53d0a94be83fc3a4ac156d4cd05d642ba562 100644 (file)
@@ -79,3 +79,17 @@ NTSTATUS _wbint_Sid2Uid(pipes_struct *p, struct wbint_Sid2Uid *r)
        *r->out.uid = uid;
        return NT_STATUS_OK;
 }
+
+NTSTATUS _wbint_Sid2Gid(pipes_struct *p, struct wbint_Sid2Gid *r)
+{
+       gid_t gid;
+       NTSTATUS status;
+
+       status = idmap_sid_to_gid(r->in.dom_name ? r->in.dom_name : "",
+                                 r->in.sid, &gid);
+       if (!NT_STATUS_IS_OK(status)) {
+               return status;
+       }
+       *r->out.gid = gid;
+       return NT_STATUS_OK;
+}
index e326f49559041e0cd58e2f91614ebda27f32e8af..d26a85796d07da9a08acb7a7dd8e5a8724b3ab4e 100644 (file)
@@ -648,5 +648,9 @@ struct tevent_req *winbindd_sid_to_uid_send(TALLOC_CTX *mem_ctx,
 NTSTATUS winbindd_sid_to_uid_recv(struct tevent_req *req,
                                  struct winbindd_response *response);
 
+struct tevent_req *wb_sid2gid_send(TALLOC_CTX *mem_ctx,
+                                  struct tevent_context *ev,
+                                  const struct dom_sid *sid);
+NTSTATUS wb_sid2gid_recv(struct tevent_req *req, gid_t *gid);
 
 #endif /*  _WINBINDD_PROTO_H_  */