samba4-knownfail: Only the "*-security" rpc-winreg tests are expected to fail.
[samba.git] / source4 / libcli / finddcs.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    a composite API for finding a DC and its name
5
6    Copyright (C) Volker Lendecke 2005
7    Copyright (C) Andrew Bartlett <abartlet@samba.org> 2006
8    
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 3 of the License, or
12    (at your option) any later version.
13    
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18    
19    You should have received a copy of the GNU General Public License
20    along with this program.  If not, see <http://www.gnu.org/licenses/>.
21 */
22
23 #include "include/includes.h"
24 #include "lib/messaging/irpc.h"
25 #include "librpc/gen_ndr/ndr_irpc.h"
26 #include "librpc/gen_ndr/samr.h"
27 #include "libcli/composite/composite.h"
28 #include "libcli/libcli.h"
29 #include "libcli/resolve/resolve.h"
30 #include "libcli/finddcs.h"
31
32 struct finddcs_state {
33         struct composite_context *ctx;
34         struct messaging_context *msg_ctx;
35
36         const char *my_netbios_name;
37         const char *domain_name;
38         struct dom_sid *domain_sid;
39
40         struct nbtd_getdcname r;
41         struct nbt_name_status node_status;
42
43         int num_dcs;
44         struct nbt_dc_name *dcs;
45         uint16_t nbt_port;
46 };
47
48 static void finddcs_name_resolved(struct composite_context *ctx);
49 static void finddcs_getdc_replied(struct irpc_request *ireq);
50 static void fallback_node_status(struct finddcs_state *state);
51 static void fallback_node_status_replied(struct nbt_name_request *name_req);
52
53 /* 
54  * Setup and send off the a normal name resolution for the target name.
55  *
56  * The domain_sid parameter is optional, and is used in the subsequent getdc request.
57  *
58  * This will try a GetDC request, but this may not work.  It will try
59  * a node status as a fallback, then return no name (but still include
60  * the IP)
61  */
62
63 struct composite_context *finddcs_send(TALLOC_CTX *mem_ctx,
64                                        const char *my_netbios_name,
65                                        uint16_t nbt_port,
66                                        const char *domain_name,
67                                        int name_type,
68                                        struct dom_sid *domain_sid,
69                                        struct resolve_context *resolve_ctx,
70                                        struct event_context *event_ctx,
71                                        struct messaging_context *msg_ctx)
72 {
73         struct composite_context *c, *creq;
74         struct finddcs_state *state;
75         struct nbt_name name;
76
77         c = composite_create(mem_ctx, event_ctx);
78         if (c == NULL) return NULL;
79
80         state = talloc(c, struct finddcs_state);
81         if (composite_nomem(state, c)) return c;
82         c->private_data = state;
83
84         state->ctx = c;
85
86         state->nbt_port = nbt_port;
87         state->my_netbios_name = talloc_strdup(state, my_netbios_name);
88         state->domain_name = talloc_strdup(state, domain_name);
89         if (composite_nomem(state->domain_name, c)) return c;
90
91         if (domain_sid) {
92                 state->domain_sid = talloc_reference(state, domain_sid);
93                 if (composite_nomem(state->domain_sid, c)) return c;
94         } else {
95                 state->domain_sid = NULL;
96         }
97
98         state->msg_ctx = msg_ctx;
99
100         make_nbt_name(&name, state->domain_name, name_type);
101         creq = resolve_name_send(resolve_ctx, &name, event_ctx);
102         composite_continue(c, creq, finddcs_name_resolved, state);
103         return c;
104 }
105
106 /* Having got an name query answer, fire off a GetDC request, so we
107  * can find the target's all-important name.  (Kerberos and some
108  * netlogon operations are quite picky about names) 
109  *
110  * The name is a courtesy, if we don't find it, don't completely fail.
111  *
112  * However, if the nbt server is down, fall back to a node status
113  * request
114  */
115 static void finddcs_name_resolved(struct composite_context *ctx)
116 {
117         struct finddcs_state *state =
118                 talloc_get_type(ctx->async.private_data, struct finddcs_state);
119         struct irpc_request *ireq;
120         struct server_id *nbt_servers;
121         const char *address;
122
123         state->ctx->status = resolve_name_recv(ctx, state, &address);
124         if (!composite_is_ok(state->ctx)) return;
125
126         /* TODO: This should try and find all the DCs, and give the
127          * caller them in the order they responded */
128
129         state->num_dcs = 1;
130         state->dcs = talloc_array(state, struct nbt_dc_name, state->num_dcs);
131         if (composite_nomem(state->dcs, state->ctx)) return;
132
133         state->dcs[0].address = talloc_steal(state->dcs, address);
134
135         /* Try and find the nbt server.  Fallback to a node status
136          * request if we can't make this happen The nbt server just
137          * might not be running, or we may not have a messaging
138          * context (not root etc) */
139         if (!state->msg_ctx) {
140                 fallback_node_status(state);
141                 return;
142         }
143
144         nbt_servers = irpc_servers_byname(state->msg_ctx, state, "nbt_server");
145         if ((nbt_servers == NULL) || (nbt_servers[0].id == 0)) {
146                 fallback_node_status(state);
147                 return;
148         }
149
150         state->r.in.domainname = state->domain_name;
151         state->r.in.ip_address = state->dcs[0].address;
152         state->r.in.my_computername = state->my_netbios_name;
153         state->r.in.my_accountname = talloc_asprintf(state, "%s$", state->my_netbios_name);
154         if (composite_nomem(state->r.in.my_accountname, state->ctx)) return;
155         state->r.in.account_control = ACB_WSTRUST;
156         state->r.in.domain_sid = state->domain_sid;
157
158         ireq = irpc_call_send(state->msg_ctx, nbt_servers[0],
159                               &ndr_table_irpc, NDR_NBTD_GETDCNAME,
160                               &state->r, state);
161         if (!ireq) {
162                 fallback_node_status(state);
163                 return;
164         }
165
166         composite_continue_irpc(state->ctx, ireq, finddcs_getdc_replied, state);
167 }
168
169 /* Called when the GetDC request returns */
170 static void finddcs_getdc_replied(struct irpc_request *ireq)
171 {
172         struct finddcs_state *state =
173                 talloc_get_type(ireq->async.private, struct finddcs_state);
174
175         state->ctx->status = irpc_call_recv(ireq);
176         if (!composite_is_ok(state->ctx)) return;
177
178         state->dcs[0].name = talloc_steal(state->dcs, state->r.out.dcname);
179         composite_done(state->ctx);
180 }
181
182 /* The GetDC request might not be available (such as occours when the
183  * NBT server is down).  Fallback to a node status.  It is the best
184  * hope we have... */
185 static void fallback_node_status(struct finddcs_state *state) 
186 {
187         struct nbt_name_socket *nbtsock;
188         struct nbt_name_request *name_req;
189
190         state->node_status.in.name.name = "*";
191         state->node_status.in.name.type = NBT_NAME_CLIENT;
192         state->node_status.in.name.scope = NULL;
193         state->node_status.in.dest_addr = state->dcs[0].address;
194         state->node_status.in.dest_port = state->nbt_port;
195         state->node_status.in.timeout = 1;
196         state->node_status.in.retries = 2;
197
198         nbtsock = nbt_name_socket_init(state, state->ctx->event_ctx);
199         if (composite_nomem(nbtsock, state->ctx)) return;
200         
201         name_req = nbt_name_status_send(nbtsock, &state->node_status);
202         if (composite_nomem(name_req, state->ctx)) return;
203
204         composite_continue_nbt(state->ctx, 
205                                name_req, 
206                                fallback_node_status_replied,
207                                state);
208 }
209
210 /* We have a node status reply (or perhaps a timeout) */
211 static void fallback_node_status_replied(struct nbt_name_request *name_req) 
212 {
213         int i;
214         struct finddcs_state *state = talloc_get_type(name_req->async.private, struct finddcs_state);
215         state->ctx->status = nbt_name_status_recv(name_req, state, &state->node_status);
216         if (!composite_is_ok(state->ctx)) return;
217
218         for (i=0; i < state->node_status.out.status.num_names; i++) {
219                 int j;
220                 if (state->node_status.out.status.names[i].type == NBT_NAME_SERVER) {
221                         char *name = talloc_strndup(state->dcs, state->node_status.out.status.names[0].name, 15);
222                         /* Strip space padding */
223                         if (name) {
224                                 j = MIN(strlen(name), 15);
225                                 for (; j > 0 && name[j - 1] == ' '; j--) {
226                                         name[j - 1] = '\0';
227                                 }
228                         }
229                         state->dcs[0].name = name;
230                         composite_done(state->ctx);
231                         return;
232                 }
233         }
234         composite_error(state->ctx, NT_STATUS_NO_LOGON_SERVERS);
235 }
236
237 NTSTATUS finddcs_recv(struct composite_context *c, TALLOC_CTX *mem_ctx,
238                       int *num_dcs, struct nbt_dc_name **dcs)
239 {
240         NTSTATUS status = composite_wait(c);
241         if (NT_STATUS_IS_OK(status)) {
242                 struct finddcs_state *state =
243                         talloc_get_type(c->private_data, struct finddcs_state);
244                 *num_dcs = state->num_dcs;
245                 *dcs = talloc_steal(mem_ctx, state->dcs);
246         }
247         talloc_free(c);
248         return status;
249 }
250
251 NTSTATUS finddcs(TALLOC_CTX *mem_ctx,
252                  const char *my_netbios_name,
253                  uint16_t nbt_port,
254                  const char *domain_name, int name_type, 
255                  struct dom_sid *domain_sid,
256                  struct resolve_context *resolve_ctx,
257                  struct event_context *event_ctx,
258                  struct messaging_context *msg_ctx,
259                  int *num_dcs, struct nbt_dc_name **dcs)
260 {
261         struct composite_context *c = finddcs_send(mem_ctx,
262                                                    my_netbios_name,
263                                                    nbt_port,
264                                                    domain_name, name_type,
265                                                    domain_sid, resolve_ctx,
266                                                    event_ctx, msg_ctx);
267         return finddcs_recv(c, mem_ctx, num_dcs, dcs);
268 }