s3: Remove unused winbindd_dual_lookupsid
[samba.git] / source3 / winbindd / winbindd_async.c
index 4f314fef309baa46205401921add95acd18bb1a8..459fbb348a05decd60050340e4edbfe2dfa0a8a8 100644 (file)
@@ -6,17 +6,6 @@
    Copyright (C) Volker Lendecke 2005
    Copyright (C) Gerald Carter 2006
 
-   The helpers always consist of three functions: 
-
-   * A request setup function that takes the necessary parameters together
-     with a continuation function that is to be called upon completion
-
-   * A private continuation function that is internal only. This is to be
-     called by the lower-level functions in do_async(). Its only task is to
-     properly call the continuation function named above.
-
-   * A worker function that is called inside the appropriate child process.
-
    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
 #undef DBGC_CLASS
 #define DBGC_CLASS DBGC_WINBIND
 
-struct do_async_state {
-       TALLOC_CTX *mem_ctx;
-       struct winbindd_request request;
-       struct winbindd_response response;
-       void (*cont)(TALLOC_CTX *mem_ctx,
-                    bool success,
-                    struct winbindd_response *response,
-                    void *c, void *private_data);
-       void *c, *private_data;
-};
-
-static void do_async_recv(void *private_data, bool success)
-{
-       struct do_async_state *state =
-               talloc_get_type_abort(private_data, struct do_async_state);
-
-       state->cont(state->mem_ctx, success, &state->response,
-                   state->c, state->private_data);
-}
-
-void do_async(TALLOC_CTX *mem_ctx, struct winbindd_child *child,
-             const struct winbindd_request *request,
-             void (*cont)(TALLOC_CTX *mem_ctx, bool success,
-                          struct winbindd_response *response,
-                          void *c, void *private_data),
-             void *c, void *private_data)
-{
-       struct do_async_state *state;
-
-       state = TALLOC_ZERO_P(mem_ctx, struct do_async_state);
-       if (state == NULL) {
-               DEBUG(0, ("talloc failed\n"));
-               cont(mem_ctx, False, NULL, c, private_data);
-               return;
-       }
-
-       state->mem_ctx = mem_ctx;
-       state->request = *request;
-       state->request.length = sizeof(state->request);
-       state->cont = cont;
-       state->c = c;
-       state->private_data = private_data;
-
-       async_request(mem_ctx, child, &state->request,
-                     &state->response, do_async_recv, state);
-}
-
-static void do_async_domain(TALLOC_CTX *mem_ctx, struct winbindd_domain *domain,
-                           const struct winbindd_request *request,
-                           void (*cont)(TALLOC_CTX *mem_ctx, bool success,
-                                        struct winbindd_response *response,
-                                        void *c, void *private_data),
-                           void *c, void *private_data)
-{
-       struct do_async_state *state;
-
-       state = TALLOC_ZERO_P(mem_ctx, struct do_async_state);
-       if (state == NULL) {
-               DEBUG(0, ("talloc failed\n"));
-               cont(mem_ctx, False, NULL, c, private_data);
-               return;
-       }
-
-       state->mem_ctx = mem_ctx;
-       state->request = *request;
-       state->request.length = sizeof(state->request);
-       state->cont = cont;
-       state->c = c;
-       state->private_data = private_data;
-
-       async_domain_request(mem_ctx, domain, &state->request,
-                            &state->response, do_async_recv, state);
-}
-
-enum winbindd_result winbindd_dual_lookupsid(struct winbindd_domain *domain,
-                                            struct winbindd_cli_state *state)
-{
-       enum lsa_SidType type;
-       DOM_SID sid;
-       char *name;
-       char *dom_name;
-
-       /* Ensure null termination */
-       state->request->data.sid[sizeof(state->request->data.sid)-1]='\0';
-
-       DEBUG(3, ("[%5lu]: lookupsid %s\n", (unsigned long)state->pid, 
-                 state->request->data.sid));
-
-       /* Lookup sid from PDC using lsa_lookup_sids() */
-
-       if (!string_to_sid(&sid, state->request->data.sid)) {
-               DEBUG(5, ("%s not a SID\n", state->request->data.sid));
-               return WINBINDD_ERROR;
-       }
-
-       /* Lookup the sid */
-
-       if (!winbindd_lookup_name_by_sid(state->mem_ctx, domain, &sid, 
-                                        &dom_name, &name, &type)) 
-       {
-               TALLOC_FREE(dom_name);
-               TALLOC_FREE(name);
-               return WINBINDD_ERROR;
-       }
-
-       fstrcpy(state->response->data.name.dom_name, dom_name);
-       fstrcpy(state->response->data.name.name, name);
-       state->response->data.name.type = type;
-
-       TALLOC_FREE(dom_name);
-       TALLOC_FREE(name);
-       return WINBINDD_OK;
-}
-
 enum winbindd_result winbindd_dual_lookupname(struct winbindd_domain *domain,
                                              struct winbindd_cli_state *state)
 {
@@ -251,55 +126,6 @@ bool parse_sidlist(TALLOC_CTX *mem_ctx, const char *sidstr,
        return True;
 }
 
-static void query_user_recv(TALLOC_CTX *mem_ctx, bool success,
-                           struct winbindd_response *response,
-                           void *c, void *private_data)
-{
-       void (*cont)(void *priv, bool succ, const char *acct_name,
-                    const char *full_name, const char *homedir, 
-                    const char *shell, uint32 gid, uint32 group_rid) =
-               (void (*)(void *, bool, const char *, const char *,
-                         const char *, const char *, uint32, uint32))c;
-
-       if (!success) {
-               DEBUG(5, ("Could not trigger query_user\n"));
-               cont(private_data, False, NULL, NULL, NULL, NULL, -1, -1);
-               return;
-       }
-
-       if (response->result != WINBINDD_OK) {
-                DEBUG(5, ("query_user returned an error\n"));
-               cont(private_data, False, NULL, NULL, NULL, NULL, -1, -1);
-               return;
-       }
-
-       cont(private_data, True, response->data.user_info.acct_name,
-            response->data.user_info.full_name,
-            response->data.user_info.homedir,
-            response->data.user_info.shell,
-            response->data.user_info.primary_gid,
-            response->data.user_info.group_rid);
-}
-
-void query_user_async(TALLOC_CTX *mem_ctx, struct winbindd_domain *domain,
-                     const DOM_SID *sid,
-                     void (*cont)(void *private_data, bool success,
-                                  const char *acct_name,
-                                  const char *full_name,
-                                  const char *homedir,
-                                  const char *shell,
-                                  gid_t gid,
-                                  uint32 group_rid),
-                     void *private_data)
-{
-       struct winbindd_request request;
-       ZERO_STRUCT(request);
-       request.cmd = WINBINDD_DUAL_USERINFO;
-       sid_to_fstring(request.data.sid, sid);
-       do_async_domain(mem_ctx, domain, &request, query_user_recv,
-                       (void *)cont, private_data);
-}
-
 enum winbindd_result winbindd_dual_ping(struct winbindd_domain *domain,
                                        struct winbindd_cli_state *state)
 {