From 749fb039719e60d82c496a2e1587bfa32d0360b8 Mon Sep 17 00:00:00 2001 From: Kai Blin Date: Fri, 24 Apr 2009 16:24:56 +0200 Subject: libwbclient: Implement wbcLookupSid_send/recv --- nsswitch/libwbclient/wbc_sid.c | 129 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 129 insertions(+) (limited to 'nsswitch/libwbclient/wbc_sid.c') diff --git a/nsswitch/libwbclient/wbc_sid.c b/nsswitch/libwbclient/wbc_sid.c index 7aab04b86f..6069aa88d9 100644 --- a/nsswitch/libwbclient/wbc_sid.c +++ b/nsswitch/libwbclient/wbc_sid.c @@ -193,6 +193,135 @@ wbcErr wbcLookupName(const char *domain, return wbc_status; } +struct wbc_lookup_sid_state { + struct winbindd_request req; + char *domain; + char *name; + enum wbcSidType name_type; +}; + +static void wbcLookupSid_done(struct tevent_req *subreq); + +/** + * @brief Request a conversion of a SID to a domain and name + * + * @param mem_ctx talloc context to allocate the request from + * @param ev tevent context to use for async operation + * @param wb_ctx winbind context to use + * @param *sid Pointer to the domain SID to be resolved + * + * @return tevent_req on success, NULL on error + **/ + +struct tevent_req *wbcLookupSid_send(TALLOC_CTX *mem_ctx, + struct tevent_context *ev, + struct wb_context *wb_ctx, + const struct wbcDomainSid *sid) +{ + struct tevent_req *req, *subreq; + struct wbc_lookup_sid_state *state; + char *sid_string; + wbcErr wbc_status = WBC_ERR_UNKNOWN_FAILURE; + + req = tevent_req_create(mem_ctx, &state, struct wbc_lookup_sid_state); + if (req == NULL) { + return NULL; + } + + ZERO_STRUCT(state->req); + + state->req.cmd = WINBINDD_LOOKUPSID; + wbc_status = wbcSidToString(sid, &sid_string); + if (!WBC_ERROR_IS_OK(wbc_status)) { + tevent_req_error(req, wbc_status); + return tevent_req_post(req, ev); + } + strncpy(state->req.data.sid, sid_string, sizeof(state->req.data.sid)-1); + wbcFreeMemory(sid_string); + + subreq = wb_trans_send(state, ev, wb_ctx, false, &state->req); + if (tevent_req_nomem(subreq, req)) { + return tevent_req_post(req, ev); + } + + tevent_req_set_callback(subreq, wbcLookupSid_done, req); + return req; +} + +static void wbcLookupSid_done(struct tevent_req *subreq) +{ + struct tevent_req *req = tevent_req_callback_data( + subreq, struct tevent_req); + struct wbc_lookup_sid_state *state = tevent_req_data( + req, struct wbc_lookup_sid_state); + struct winbindd_response *resp; + wbcErr wbc_status; + + wbc_status = wb_trans_recv(subreq, state, &resp); + TALLOC_FREE(subreq); + if (!WBC_ERROR_IS_OK(wbc_status)) { + tevent_req_error(req, wbc_status); + return; + } + state->domain = talloc_strdup(state, resp->data.name.dom_name); + if (tevent_req_nomem(state->domain, req)) { + return; + } + + state->name = talloc_strdup(state, resp->data.name.name); + if (tevent_req_nomem(state->name, req)) { + return; + } + + state->name_type = (enum wbcSidType)resp->data.name.type; + + TALLOC_FREE(resp); + + tevent_req_done(req); +} + +/** + * @brief Receive a conversion a SID to a domain and name + * + * @param *mem_ctx, talloc context to move results to + * @param *pdomain Resolved Domain name (possibly "") + * @param *pname Resolved User or group name + * @param *pname_type Pointer to the resolved SID type + * + * @return #wbcErr + */ + +wbcErr wbcLookupSid_recv(struct tevent_req *req, + TALLOC_CTX *mem_ctx, + char **pdomain, + char **pname, + enum wbcSidType *pname_type) +{ + struct wbc_lookup_sid_state *state = tevent_req_data( + req, struct wbc_lookup_sid_state); + wbcErr wbc_status; + + if (tevent_req_is_wbcerr(req, &wbc_status)) { + tevent_req_received(req); + return wbc_status; + } + + if (pdomain != NULL) { + *pdomain = talloc_steal(mem_ctx, state->domain); + } + + if (pname != NULL) { + *pname = talloc_steal(mem_ctx, state->name); + } + + if (pname_type != NULL) { + *pname_type = state->name_type; + } + + tevent_req_received(req); + return WBC_ERR_SUCCESS; +} + /* Convert a SID to a domain and name */ wbcErr wbcLookupSid(const struct wbcDomainSid *sid, char **pdomain, -- cgit