r22612: Fix more cases where we have uninitialised values in the
[kai/samba.git] / source4 / winbind / wb_cmd_getdcname.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    Command backend for wbinfo --getdcname
5
6    Copyright (C) Volker Lendecke 2005
7    
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2 of the License, or
11    (at your option) any later version.
12    
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17    
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23 #include "includes.h"
24 #include "libcli/composite/composite.h"
25 #include "winbind/wb_server.h"
26 #include "smbd/service_task.h"
27
28 #include "librpc/gen_ndr/ndr_netlogon_c.h"
29
30 struct cmd_getdcname_state {
31         struct composite_context *ctx;
32         const char *domain_name;
33
34         struct netr_GetAnyDCName g;
35 };
36
37 static void getdcname_recv_domain(struct composite_context *ctx);
38 static void getdcname_recv_dcname(struct rpc_request *req);
39
40 struct composite_context *wb_cmd_getdcname_send(TALLOC_CTX *mem_ctx,
41                                                 struct wbsrv_service *service,
42                                                 const char *domain_name)
43 {
44         struct composite_context *result, *ctx;
45         struct cmd_getdcname_state *state;
46
47         result = composite_create(mem_ctx, service->task->event_ctx);
48         if (result == NULL) goto failed;
49
50         state = talloc(result, struct cmd_getdcname_state);
51         if (state == NULL) goto failed;
52         state->ctx = result;
53         result->private_data = state;
54
55         state->domain_name = talloc_strdup(state, domain_name);
56         if (state->domain_name == NULL) goto failed;
57
58         ctx = wb_sid2domain_send(state, service, service->primary_sid);
59         if (ctx == NULL) goto failed;
60
61         ctx->async.fn = getdcname_recv_domain;
62         ctx->async.private_data = state;
63         return result;
64
65  failed:
66         talloc_free(result);
67         return NULL;
68 }
69
70 static void getdcname_recv_domain(struct composite_context *ctx)
71 {
72         struct cmd_getdcname_state *state =
73                 talloc_get_type(ctx->async.private_data,
74                                 struct cmd_getdcname_state);
75         struct wbsrv_domain *domain;
76         struct rpc_request *req;
77
78         state->ctx->status = wb_sid2domain_recv(ctx, &domain);
79         if (!composite_is_ok(state->ctx)) return;
80
81         state->g.in.logon_server = talloc_asprintf(
82                 state, "\\\\%s",
83                 dcerpc_server_name(domain->netlogon_pipe));
84         state->g.in.domainname = state->domain_name;
85
86         req = dcerpc_netr_GetAnyDCName_send(domain->netlogon_pipe, state,
87                                             &state->g);
88         if (composite_nomem(req, state->ctx)) return;
89
90         composite_continue_rpc(state->ctx, req, getdcname_recv_dcname, state);
91 }
92
93 static void getdcname_recv_dcname(struct rpc_request *req)
94 {
95         struct cmd_getdcname_state *state =
96                 talloc_get_type(req->async.private,
97                                 struct cmd_getdcname_state);
98
99         state->ctx->status = dcerpc_ndr_request_recv(req);
100         if (!composite_is_ok(state->ctx)) return;
101         state->ctx->status = werror_to_ntstatus(state->g.out.result);
102         if (!composite_is_ok(state->ctx)) return;
103
104         composite_done(state->ctx);
105 }
106
107 NTSTATUS wb_cmd_getdcname_recv(struct composite_context *c,
108                                TALLOC_CTX *mem_ctx,
109                                const char **dcname)
110 {
111         struct cmd_getdcname_state *state =
112                 talloc_get_type(c->private_data, struct cmd_getdcname_state);
113         NTSTATUS status = composite_wait(c);
114         if (NT_STATUS_IS_OK(status)) {
115                 const char *p = state->g.out.dcname;
116                 if (*p == '\\') p += 1;
117                 if (*p == '\\') p += 1;
118                 *dcname = talloc_strdup(mem_ctx, p);
119                 if (*dcname == NULL) {
120                         status = NT_STATUS_NO_MEMORY;
121                 }
122         }
123         talloc_free(state);
124         return status;
125 }