s3/s4:netlogon IDL - fix up "struct netr_SamInfo6" regarding the "forest" attribute
[samba.git] / source4 / rpc_server / netlogon / dcerpc_netlogon.c
1 /*
2    Unix SMB/CIFS implementation.
3
4    endpoint server for the netlogon pipe
5
6    Copyright (C) Andrew Bartlett <abartlet@samba.org> 2004-2008
7    Copyright (C) Stefan Metzmacher <metze@samba.org>  2005
8    Copyright (C) Matthias Dieter Wallnöfer            2009
9
10    This program is free software; you can redistribute it and/or modify
11    it under the terms of the GNU General Public License as published by
12    the Free Software Foundation; either version 3 of the License, or
13    (at your option) any later version.
14
15    This program is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18    GNU General Public License for more details.
19
20    You should have received a copy of the GNU General Public License
21    along with this program.  If not, see <http://www.gnu.org/licenses/>.
22 */
23
24 #include "includes.h"
25 #include "rpc_server/dcerpc_server.h"
26 #include "auth/auth.h"
27 #include "auth/auth_sam_reply.h"
28 #include "dsdb/samdb/samdb.h"
29 #include "../lib/util/util_ldb.h"
30 #include "../libcli/auth/schannel.h"
31 #include "libcli/security/security.h"
32 #include "param/param.h"
33 #include "lib/messaging/irpc.h"
34 #include "librpc/gen_ndr/ndr_irpc.h"
35
36 struct netlogon_server_pipe_state {
37         struct netr_Credential client_challenge;
38         struct netr_Credential server_challenge;
39 };
40
41 static NTSTATUS dcesrv_netr_ServerReqChallenge(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
42                                         struct netr_ServerReqChallenge *r)
43 {
44         struct netlogon_server_pipe_state *pipe_state =
45                 talloc_get_type(dce_call->context->private_data, struct netlogon_server_pipe_state);
46
47         ZERO_STRUCTP(r->out.return_credentials);
48
49         /* destroyed on pipe shutdown */
50
51         if (pipe_state) {
52                 talloc_free(pipe_state);
53                 dce_call->context->private_data = NULL;
54         }
55
56         pipe_state = talloc(dce_call->context, struct netlogon_server_pipe_state);
57         NT_STATUS_HAVE_NO_MEMORY(pipe_state);
58
59         pipe_state->client_challenge = *r->in.credentials;
60
61         generate_random_buffer(pipe_state->server_challenge.data,
62                                sizeof(pipe_state->server_challenge.data));
63
64         *r->out.return_credentials = pipe_state->server_challenge;
65
66         dce_call->context->private_data = pipe_state;
67
68         return NT_STATUS_OK;
69 }
70
71 static NTSTATUS dcesrv_netr_ServerAuthenticate3(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
72                                          struct netr_ServerAuthenticate3 *r)
73 {
74         struct netlogon_server_pipe_state *pipe_state =
75                 talloc_get_type(dce_call->context->private_data, struct netlogon_server_pipe_state);
76         struct netlogon_creds_CredentialState *creds;
77         struct ldb_context *sam_ctx;
78         struct samr_Password *mach_pwd;
79         uint32_t user_account_control;
80         int num_records;
81         struct ldb_message **msgs;
82         NTSTATUS nt_status;
83         const char *attrs[] = {"unicodePwd", "userAccountControl",
84                                "objectSid", NULL};
85
86         const char *trust_dom_attrs[] = {"flatname", NULL};
87         const char *account_name;
88
89         ZERO_STRUCTP(r->out.return_credentials);
90         *r->out.rid = 0;
91
92         /*
93          * According to Microsoft (see bugid #6099)
94          * Windows 7 looks at the negotiate_flags
95          * returned in this structure *even if the
96          * call fails with access denied!
97          */
98         *r->out.negotiate_flags = NETLOGON_NEG_ACCOUNT_LOCKOUT |
99                                   NETLOGON_NEG_PERSISTENT_SAMREPL |
100                                   NETLOGON_NEG_ARCFOUR |
101                                   NETLOGON_NEG_PROMOTION_COUNT |
102                                   NETLOGON_NEG_CHANGELOG_BDC |
103                                   NETLOGON_NEG_FULL_SYNC_REPL |
104                                   NETLOGON_NEG_MULTIPLE_SIDS |
105                                   NETLOGON_NEG_REDO |
106                                   NETLOGON_NEG_PASSWORD_CHANGE_REFUSAL |
107                                   NETLOGON_NEG_SEND_PASSWORD_INFO_PDC |
108                                   NETLOGON_NEG_GENERIC_PASSTHROUGH |
109                                   NETLOGON_NEG_CONCURRENT_RPC |
110                                   NETLOGON_NEG_AVOID_ACCOUNT_DB_REPL |
111                                   NETLOGON_NEG_AVOID_SECURITYAUTH_DB_REPL |
112                                   NETLOGON_NEG_STRONG_KEYS |
113                                   NETLOGON_NEG_TRANSITIVE_TRUSTS |
114                                   NETLOGON_NEG_DNS_DOMAIN_TRUSTS |
115                                   NETLOGON_NEG_PASSWORD_SET2 |
116                                   NETLOGON_NEG_GETDOMAININFO |
117                                   NETLOGON_NEG_CROSS_FOREST_TRUSTS |
118                                   NETLOGON_NEG_NEUTRALIZE_NT4_EMULATION |
119                                   NETLOGON_NEG_RODC_PASSTHROUGH |
120                                   NETLOGON_NEG_AUTHENTICATED_RPC_LSASS |
121                                   NETLOGON_NEG_AUTHENTICATED_RPC;
122
123         if (!pipe_state) {
124                 DEBUG(1, ("No challenge requested by client, cannot authenticate\n"));
125                 return NT_STATUS_ACCESS_DENIED;
126         }
127
128         sam_ctx = samdb_connect(mem_ctx, dce_call->event_ctx, dce_call->conn->dce_ctx->lp_ctx,
129                                 system_session(dce_call->conn->dce_ctx->lp_ctx));
130         if (sam_ctx == NULL) {
131                 return NT_STATUS_INVALID_SYSTEM_SERVICE;
132         }
133
134         if (r->in.secure_channel_type == SEC_CHAN_DNS_DOMAIN) {
135                 char *encoded_account = ldb_binary_encode_string(mem_ctx, r->in.account_name);
136                 const char *flatname;
137                 if (!encoded_account) {
138                         return NT_STATUS_NO_MEMORY;
139                 }
140
141                 /* Kill the trailing dot */
142                 if (encoded_account[strlen(encoded_account)-1] == '.') {
143                         encoded_account[strlen(encoded_account)-1] = '\0';
144                 }
145
146                 /* pull the user attributes */
147                 num_records = gendb_search(sam_ctx, mem_ctx, NULL, &msgs,
148                                            trust_dom_attrs,
149                                            "(&(trustPartner=%s)(objectclass=trustedDomain))",
150                                            encoded_account);
151
152                 if (num_records == 0) {
153                         DEBUG(3,("Couldn't find trust [%s] in samdb.\n",
154                                  encoded_account));
155                         return NT_STATUS_ACCESS_DENIED;
156                 }
157
158                 if (num_records > 1) {
159                         DEBUG(0,("Found %d records matching user [%s]\n", num_records, r->in.account_name));
160                         return NT_STATUS_INTERNAL_DB_CORRUPTION;
161                 }
162
163                 flatname = ldb_msg_find_attr_as_string(msgs[0], "flatname", NULL);
164                 if (!flatname) {
165                         /* No flatname for this trust - we can't proceed */
166                         return NT_STATUS_ACCESS_DENIED;
167                 }
168                 account_name = talloc_asprintf(mem_ctx, "%s$", flatname);
169
170                 if (!account_name) {
171                         return NT_STATUS_NO_MEMORY;
172                 }
173
174         } else {
175                 account_name = r->in.account_name;
176         }
177
178         /* pull the user attributes */
179         num_records = gendb_search(sam_ctx, mem_ctx, NULL, &msgs, attrs,
180                                    "(&(sAMAccountName=%s)(objectclass=user))",
181                                    ldb_binary_encode_string(mem_ctx, account_name));
182
183         if (num_records == 0) {
184                 DEBUG(3,("Couldn't find user [%s] in samdb.\n",
185                          r->in.account_name));
186                 return NT_STATUS_ACCESS_DENIED;
187         }
188
189         if (num_records > 1) {
190                 DEBUG(0,("Found %d records matching user [%s]\n", num_records, r->in.account_name));
191                 return NT_STATUS_INTERNAL_DB_CORRUPTION;
192         }
193
194         user_account_control = ldb_msg_find_attr_as_uint(msgs[0], "userAccountControl", 0);
195
196         if (user_account_control & UF_ACCOUNTDISABLE) {
197                 DEBUG(1, ("Account [%s] is disabled\n", r->in.account_name));
198                 return NT_STATUS_ACCESS_DENIED;
199         }
200
201         if (r->in.secure_channel_type == SEC_CHAN_WKSTA) {
202                 if (!(user_account_control & UF_WORKSTATION_TRUST_ACCOUNT)) {
203                         DEBUG(1, ("Client asked for a workstation secure channel, but is not a workstation (member server) acb flags: 0x%x\n", user_account_control));
204                         return NT_STATUS_ACCESS_DENIED;
205                 }
206         } else if (r->in.secure_channel_type == SEC_CHAN_DOMAIN ||
207                    r->in.secure_channel_type == SEC_CHAN_DNS_DOMAIN) {
208                 if (!(user_account_control & UF_INTERDOMAIN_TRUST_ACCOUNT)) {
209                         DEBUG(1, ("Client asked for a trusted domain secure channel, but is not a trusted domain: acb flags: 0x%x\n", user_account_control));
210
211                         return NT_STATUS_ACCESS_DENIED;
212                 }
213         } else if (r->in.secure_channel_type == SEC_CHAN_BDC) {
214                 if (!(user_account_control & UF_SERVER_TRUST_ACCOUNT)) {
215                         DEBUG(1, ("Client asked for a server secure channel, but is not a server (domain controller): acb flags: 0x%x\n", user_account_control));
216                         return NT_STATUS_ACCESS_DENIED;
217                 }
218         } else {
219                 DEBUG(1, ("Client asked for an invalid secure channel type: %d\n",
220                           r->in.secure_channel_type));
221                 return NT_STATUS_ACCESS_DENIED;
222         }
223
224         *r->out.rid = samdb_result_rid_from_sid(mem_ctx, msgs[0],
225                                                 "objectSid", 0);
226
227         mach_pwd = samdb_result_hash(mem_ctx, msgs[0], "unicodePwd");
228         if (mach_pwd == NULL) {
229                 return NT_STATUS_ACCESS_DENIED;
230         }
231
232         creds = netlogon_creds_server_init(mem_ctx,
233                                            r->in.account_name,
234                                            r->in.computer_name,
235                                            r->in.secure_channel_type,
236                                            &pipe_state->client_challenge,
237                                            &pipe_state->server_challenge,
238                                            mach_pwd,
239                                            r->in.credentials,
240                                            r->out.return_credentials,
241                                            *r->in.negotiate_flags);
242
243         if (!creds) {
244                 return NT_STATUS_ACCESS_DENIED;
245         }
246
247         creds->sid = samdb_result_dom_sid(creds, msgs[0], "objectSid");
248
249         nt_status = schannel_save_creds_state(mem_ctx,
250                                               lp_iconv_convenience(dce_call->conn->dce_ctx->lp_ctx),
251                                               lp_private_dir(dce_call->conn->dce_ctx->lp_ctx),
252                                               creds);
253
254         return nt_status;
255 }
256
257 static NTSTATUS dcesrv_netr_ServerAuthenticate(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
258                                         struct netr_ServerAuthenticate *r)
259 {
260         struct netr_ServerAuthenticate3 a;
261         uint32_t rid;
262         /* TODO:
263          * negotiate_flags is used as an [in] parameter
264          * so it need to be initialised.
265          *
266          * (I think ... = 0; seems wrong here --metze)
267          */
268         uint32_t negotiate_flags_in = 0;
269         uint32_t negotiate_flags_out = 0;
270
271         a.in.server_name                = r->in.server_name;
272         a.in.account_name               = r->in.account_name;
273         a.in.secure_channel_type        = r->in.secure_channel_type;
274         a.in.computer_name              = r->in.computer_name;
275         a.in.credentials                = r->in.credentials;
276         a.in.negotiate_flags            = &negotiate_flags_in;
277
278         a.out.return_credentials        = r->out.return_credentials;
279         a.out.rid                       = &rid;
280         a.out.negotiate_flags           = &negotiate_flags_out;
281
282         return dcesrv_netr_ServerAuthenticate3(dce_call, mem_ctx, &a);
283 }
284
285 static NTSTATUS dcesrv_netr_ServerAuthenticate2(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
286                                          struct netr_ServerAuthenticate2 *r)
287 {
288         struct netr_ServerAuthenticate3 r3;
289         uint32_t rid = 0;
290
291         r3.in.server_name = r->in.server_name;
292         r3.in.account_name = r->in.account_name;
293         r3.in.secure_channel_type = r->in.secure_channel_type;
294         r3.in.computer_name = r->in.computer_name;
295         r3.in.credentials = r->in.credentials;
296         r3.out.return_credentials = r->out.return_credentials;
297         r3.in.negotiate_flags = r->in.negotiate_flags;
298         r3.out.negotiate_flags = r->out.negotiate_flags;
299         r3.out.rid = &rid;
300
301         return dcesrv_netr_ServerAuthenticate3(dce_call, mem_ctx, &r3);
302 }
303
304 /*
305  * NOTE: The following functions are nearly identical to the ones available in
306  * source3/rpc_server/srv_nelog_nt.c
307  * The reason we keep 2 copies is that they use different structures to
308  * represent the auth_info and the decrpc pipes.
309  */
310
311 /*
312  * If schannel is required for this call test that it actually is available.
313  */
314 static NTSTATUS schannel_check_required(struct dcerpc_auth *auth_info,
315                                         const char *computer_name,
316                                         bool integrity, bool privacy)
317 {
318
319         if (auth_info && auth_info->auth_type == DCERPC_AUTH_TYPE_SCHANNEL) {
320                 if (!privacy && !integrity) {
321                         return NT_STATUS_OK;
322                 }
323
324                 if ((!privacy && integrity) &&
325                     auth_info->auth_level == DCERPC_AUTH_LEVEL_INTEGRITY) {
326                         return NT_STATUS_OK;
327                 }
328
329                 if ((privacy || integrity) &&
330                     auth_info->auth_level == DCERPC_AUTH_LEVEL_PRIVACY) {
331                         return NT_STATUS_OK;
332                 }
333         }
334
335         /* test didn't pass */
336         DEBUG(0, ("schannel_check_required: [%s] is not using schannel\n",
337                   computer_name));
338
339         return NT_STATUS_ACCESS_DENIED;
340 }
341
342 static NTSTATUS dcesrv_netr_creds_server_step_check(struct dcesrv_call_state *dce_call,
343                                                     TALLOC_CTX *mem_ctx,
344                                                     const char *computer_name,
345                                                     struct netr_Authenticator *received_authenticator,
346                                                     struct netr_Authenticator *return_authenticator,
347                                                     struct netlogon_creds_CredentialState **creds_out)
348 {
349         NTSTATUS nt_status;
350         struct dcerpc_auth *auth_info = dce_call->conn->auth_state.auth_info;
351         bool schannel_global_required = false; /* Should be lp_schannel_server() == true */
352
353         if (schannel_global_required) {
354                 nt_status = schannel_check_required(auth_info,
355                                                     computer_name,
356                                                     true, false);
357                 if (!NT_STATUS_IS_OK(nt_status)) {
358                         return nt_status;
359                 }
360         }
361
362         nt_status = schannel_check_creds_state(mem_ctx,
363                                                lp_iconv_convenience(dce_call->conn->dce_ctx->lp_ctx),
364                                                lp_private_dir(dce_call->conn->dce_ctx->lp_ctx),
365                                                computer_name,
366                                                received_authenticator,
367                                                return_authenticator,
368                                                creds_out);
369         return nt_status;
370 }
371
372 /*
373   Change the machine account password for the currently connected
374   client.  Supplies only the NT#.
375 */
376
377 static NTSTATUS dcesrv_netr_ServerPasswordSet(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
378                                        struct netr_ServerPasswordSet *r)
379 {
380         struct netlogon_creds_CredentialState *creds;
381         struct ldb_context *sam_ctx;
382         NTSTATUS nt_status;
383
384         nt_status = dcesrv_netr_creds_server_step_check(dce_call,
385                                                         mem_ctx,
386                                                         r->in.computer_name,
387                                                         r->in.credential, r->out.return_authenticator,
388                                                         &creds);
389         NT_STATUS_NOT_OK_RETURN(nt_status);
390
391         sam_ctx = samdb_connect(mem_ctx, dce_call->event_ctx, dce_call->conn->dce_ctx->lp_ctx, system_session(dce_call->conn->dce_ctx->lp_ctx));
392         if (sam_ctx == NULL) {
393                 return NT_STATUS_INVALID_SYSTEM_SERVICE;
394         }
395
396         netlogon_creds_des_decrypt(creds, r->in.new_password);
397
398         /* Using the sid for the account as the key, set the password */
399         nt_status = samdb_set_password_sid(sam_ctx, mem_ctx,
400                                            creds->sid,
401                                            NULL, /* Don't have plaintext */
402                                            NULL, r->in.new_password,
403                                            true, /* Password change */
404                                            NULL, NULL);
405         return nt_status;
406 }
407
408 /*
409   Change the machine account password for the currently connected
410   client.  Supplies new plaintext.
411 */
412 static NTSTATUS dcesrv_netr_ServerPasswordSet2(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
413                                        struct netr_ServerPasswordSet2 *r)
414 {
415         struct netlogon_creds_CredentialState *creds;
416         struct ldb_context *sam_ctx;
417         NTSTATUS nt_status;
418         DATA_BLOB new_password;
419
420         struct samr_CryptPassword password_buf;
421
422         nt_status = dcesrv_netr_creds_server_step_check(dce_call,
423                                                         mem_ctx,
424                                                         r->in.computer_name,
425                                                         r->in.credential, r->out.return_authenticator,
426                                                         &creds);
427         NT_STATUS_NOT_OK_RETURN(nt_status);
428
429         sam_ctx = samdb_connect(mem_ctx, dce_call->event_ctx, dce_call->conn->dce_ctx->lp_ctx, system_session(dce_call->conn->dce_ctx->lp_ctx));
430         if (sam_ctx == NULL) {
431                 return NT_STATUS_INVALID_SYSTEM_SERVICE;
432         }
433
434         memcpy(password_buf.data, r->in.new_password->data, 512);
435         SIVAL(password_buf.data, 512, r->in.new_password->length);
436         netlogon_creds_arcfour_crypt(creds, password_buf.data, 516);
437
438         if (!extract_pw_from_buffer(mem_ctx, password_buf.data, &new_password)) {
439                 DEBUG(3,("samr: failed to decode password buffer\n"));
440                 return NT_STATUS_WRONG_PASSWORD;
441         }
442
443         /* Using the sid for the account as the key, set the password */
444         nt_status = samdb_set_password_sid(sam_ctx, mem_ctx,
445                                            creds->sid,
446                                            &new_password, /* we have plaintext */
447                                            NULL, NULL,
448                                            true, /* Password change */
449                                            NULL, NULL);
450         return nt_status;
451 }
452
453
454 /*
455   netr_LogonUasLogon
456 */
457 static WERROR dcesrv_netr_LogonUasLogon(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
458                                  struct netr_LogonUasLogon *r)
459 {
460         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
461 }
462
463
464 /*
465   netr_LogonUasLogoff
466 */
467 static WERROR dcesrv_netr_LogonUasLogoff(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
468                        struct netr_LogonUasLogoff *r)
469 {
470         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
471 }
472
473
474 /*
475   netr_LogonSamLogon_base
476
477   This version of the function allows other wrappers to say 'do not check the credentials'
478
479   We can't do the traditional 'wrapping' format completly, as this function must only run under schannel
480 */
481 static NTSTATUS dcesrv_netr_LogonSamLogon_base(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
482                                         struct netr_LogonSamLogonEx *r, struct netlogon_creds_CredentialState *creds)
483 {
484         struct auth_context *auth_context;
485         struct auth_usersupplied_info *user_info;
486         struct auth_serversupplied_info *server_info;
487         NTSTATUS nt_status;
488         static const char zeros[16];
489         struct netr_SamBaseInfo *sam;
490         struct netr_SamInfo2 *sam2;
491         struct netr_SamInfo3 *sam3;
492         struct netr_SamInfo6 *sam6;
493
494         user_info = talloc(mem_ctx, struct auth_usersupplied_info);
495         NT_STATUS_HAVE_NO_MEMORY(user_info);
496
497         user_info->flags = 0;
498         user_info->mapped_state = false;
499         user_info->remote_host = NULL;
500
501         switch (r->in.logon_level) {
502         case NetlogonInteractiveInformation:
503         case NetlogonServiceInformation:
504         case NetlogonInteractiveTransitiveInformation:
505         case NetlogonServiceTransitiveInformation:
506                 if (creds->negotiate_flags & NETLOGON_NEG_ARCFOUR) {
507                         netlogon_creds_arcfour_crypt(creds,
508                                             r->in.logon->password->lmpassword.hash,
509                                             sizeof(r->in.logon->password->lmpassword.hash));
510                         netlogon_creds_arcfour_crypt(creds,
511                                             r->in.logon->password->ntpassword.hash,
512                                             sizeof(r->in.logon->password->ntpassword.hash));
513                 } else {
514                         netlogon_creds_des_decrypt(creds, &r->in.logon->password->lmpassword);
515                         netlogon_creds_des_decrypt(creds, &r->in.logon->password->ntpassword);
516                 }
517
518                 /* TODO: we need to deny anonymous access here */
519                 nt_status = auth_context_create(mem_ctx,
520                                                 dce_call->event_ctx, dce_call->msg_ctx,
521                                                 dce_call->conn->dce_ctx->lp_ctx,
522                                                 &auth_context);
523                 NT_STATUS_NOT_OK_RETURN(nt_status);
524
525                 user_info->logon_parameters = r->in.logon->password->identity_info.parameter_control;
526                 user_info->client.account_name = r->in.logon->password->identity_info.account_name.string;
527                 user_info->client.domain_name = r->in.logon->password->identity_info.domain_name.string;
528                 user_info->workstation_name = r->in.logon->password->identity_info.workstation.string;
529
530                 user_info->flags |= USER_INFO_INTERACTIVE_LOGON;
531                 user_info->password_state = AUTH_PASSWORD_HASH;
532
533                 user_info->password.hash.lanman = talloc(user_info, struct samr_Password);
534                 NT_STATUS_HAVE_NO_MEMORY(user_info->password.hash.lanman);
535                 *user_info->password.hash.lanman = r->in.logon->password->lmpassword;
536
537                 user_info->password.hash.nt = talloc(user_info, struct samr_Password);
538                 NT_STATUS_HAVE_NO_MEMORY(user_info->password.hash.nt);
539                 *user_info->password.hash.nt = r->in.logon->password->ntpassword;
540
541                 break;
542         case NetlogonNetworkInformation:
543         case NetlogonNetworkTransitiveInformation:
544
545                 /* TODO: we need to deny anonymous access here */
546                 nt_status = auth_context_create(mem_ctx,
547                                                 dce_call->event_ctx, dce_call->msg_ctx,
548                                                 dce_call->conn->dce_ctx->lp_ctx,
549                                                 &auth_context);
550                 NT_STATUS_NOT_OK_RETURN(nt_status);
551
552                 nt_status = auth_context_set_challenge(auth_context, r->in.logon->network->challenge, "netr_LogonSamLogonWithFlags");
553                 NT_STATUS_NOT_OK_RETURN(nt_status);
554
555                 user_info->logon_parameters = r->in.logon->network->identity_info.parameter_control;
556                 user_info->client.account_name = r->in.logon->network->identity_info.account_name.string;
557                 user_info->client.domain_name = r->in.logon->network->identity_info.domain_name.string;
558                 user_info->workstation_name = r->in.logon->network->identity_info.workstation.string;
559
560                 user_info->password_state = AUTH_PASSWORD_RESPONSE;
561                 user_info->password.response.lanman = data_blob_talloc(mem_ctx, r->in.logon->network->lm.data, r->in.logon->network->lm.length);
562                 user_info->password.response.nt = data_blob_talloc(mem_ctx, r->in.logon->network->nt.data, r->in.logon->network->nt.length);
563
564                 break;
565
566
567         case NetlogonGenericInformation:
568         {
569                 if (creds->negotiate_flags & NETLOGON_NEG_ARCFOUR) {
570                         netlogon_creds_arcfour_crypt(creds,
571                                             r->in.logon->generic->data, r->in.logon->generic->length);
572                 } else {
573                         /* Using DES to verify kerberos tickets makes no sense */
574                         return NT_STATUS_INVALID_PARAMETER;
575                 }
576
577                 if (strcmp(r->in.logon->generic->package_name.string, "Kerberos") == 0) {
578                         NTSTATUS status;
579                         struct server_id *kdc;
580                         struct kdc_check_generic_kerberos check;
581                         struct netr_GenericInfo2 *generic = talloc_zero(mem_ctx, struct netr_GenericInfo2);
582                         NT_STATUS_HAVE_NO_MEMORY(generic);
583                         *r->out.authoritative = 1;
584
585                         /* TODO: Describe and deal with these flags */
586                         *r->out.flags = 0;
587
588                         r->out.validation->generic = generic;
589
590                         kdc = irpc_servers_byname(dce_call->msg_ctx, mem_ctx, "kdc_server");
591                         if ((kdc == NULL) || (kdc[0].id == 0)) {
592                                 return NT_STATUS_NO_LOGON_SERVERS;
593                         }
594
595                         check.in.generic_request =
596                                 data_blob_const(r->in.logon->generic->data,
597                                                 r->in.logon->generic->length);
598
599                         status = irpc_call(dce_call->msg_ctx, kdc[0],
600                                            &ndr_table_irpc, NDR_KDC_CHECK_GENERIC_KERBEROS,
601                                            &check, mem_ctx);
602                         if (!NT_STATUS_IS_OK(status)) {
603                                 return status;
604                         }
605                         generic->length = check.out.generic_reply.length;
606                         generic->data = check.out.generic_reply.data;
607                         return NT_STATUS_OK;
608                 }
609
610                 /* Until we get an implemetnation of these other packages */
611                 return NT_STATUS_INVALID_PARAMETER;
612         }
613         default:
614                 return NT_STATUS_INVALID_PARAMETER;
615         }
616
617         nt_status = auth_check_password(auth_context, mem_ctx, user_info, &server_info);
618         NT_STATUS_NOT_OK_RETURN(nt_status);
619
620         switch (r->in.validation_level) {
621         case 2:
622                 nt_status = auth_convert_server_info_sambaseinfo(mem_ctx, server_info, &sam);
623                 NT_STATUS_NOT_OK_RETURN(nt_status);
624
625                 sam2 = talloc_zero(mem_ctx, struct netr_SamInfo2);
626                 NT_STATUS_HAVE_NO_MEMORY(sam2);
627                 sam2->base = *sam;
628
629                 /* And put into the talloc tree */
630                 talloc_steal(sam2, sam);
631                 r->out.validation->sam2 = sam2;
632
633                 sam = &sam2->base;
634                 break;
635
636         case 3:
637                 nt_status = auth_convert_server_info_saminfo3(mem_ctx,
638                                                               server_info,
639                                                               &sam3);
640                 NT_STATUS_NOT_OK_RETURN(nt_status);
641
642                 r->out.validation->sam3 = sam3;
643
644                 sam = &sam3->base;
645                 break;
646
647         case 6:
648                 nt_status = auth_convert_server_info_saminfo3(mem_ctx,
649                                                            server_info,
650                                                            &sam3);
651                 NT_STATUS_NOT_OK_RETURN(nt_status);
652
653                 sam6 = talloc_zero(mem_ctx, struct netr_SamInfo6);
654                 NT_STATUS_HAVE_NO_MEMORY(sam6);
655                 sam6->base = sam3->base;
656                 sam = &sam6->base;
657                 sam6->sidcount = sam3->sidcount;
658                 sam6->sids = sam3->sids;
659
660                 sam6->dns_domainname.string = lp_dnsdomain(dce_call->conn->dce_ctx->lp_ctx);
661                 sam6->principle.string = talloc_asprintf(mem_ctx, "%s@%s",
662                                                          sam->account_name.string, sam6->dns_domainname.string);
663                 NT_STATUS_HAVE_NO_MEMORY(sam6->principle.string);
664                 /* And put into the talloc tree */
665                 talloc_steal(sam6, sam3);
666
667                 r->out.validation->sam6 = sam6;
668                 break;
669
670         default:
671                 break;
672         }
673
674         /* Don't crypt an all-zero key, it would give away the NETLOGON pipe session key */
675         /* It appears that level 6 is not individually encrypted */
676         if ((r->in.validation_level != 6) &&
677             memcmp(sam->key.key, zeros, sizeof(sam->key.key)) != 0) {
678                 /* This key is sent unencrypted without the ARCFOUR flag set */
679                 if (creds->negotiate_flags & NETLOGON_NEG_ARCFOUR) {
680                         netlogon_creds_arcfour_crypt(creds,
681                                             sam->key.key,
682                                             sizeof(sam->key.key));
683                 }
684         }
685
686         /* Don't crypt an all-zero key, it would give away the NETLOGON pipe session key */
687         /* It appears that level 6 is not individually encrypted */
688         if ((r->in.validation_level != 6) &&
689             memcmp(sam->LMSessKey.key, zeros, sizeof(sam->LMSessKey.key)) != 0) {
690                 if (creds->negotiate_flags & NETLOGON_NEG_ARCFOUR) {
691                         netlogon_creds_arcfour_crypt(creds,
692                                             sam->LMSessKey.key,
693                                             sizeof(sam->LMSessKey.key));
694                 } else {
695                         netlogon_creds_des_encrypt_LMKey(creds,
696                                                 &sam->LMSessKey);
697                 }
698         }
699
700         *r->out.authoritative = 1;
701
702         /* TODO: Describe and deal with these flags */
703         *r->out.flags = 0;
704
705         return NT_STATUS_OK;
706 }
707
708 static NTSTATUS dcesrv_netr_LogonSamLogonEx(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
709                                      struct netr_LogonSamLogonEx *r)
710 {
711         NTSTATUS nt_status;
712         struct netlogon_creds_CredentialState *creds;
713
714         nt_status = schannel_get_creds_state(mem_ctx,
715                                              lp_iconv_convenience(dce_call->conn->dce_ctx->lp_ctx),
716                                              lp_private_dir(dce_call->conn->dce_ctx->lp_ctx),
717                                              r->in.computer_name, &creds);
718         if (!NT_STATUS_IS_OK(nt_status)) {
719                 return nt_status;
720         }
721
722         if (!dce_call->conn->auth_state.auth_info ||
723             dce_call->conn->auth_state.auth_info->auth_type != DCERPC_AUTH_TYPE_SCHANNEL) {
724                 return NT_STATUS_ACCESS_DENIED;
725         }
726         return dcesrv_netr_LogonSamLogon_base(dce_call, mem_ctx, r, creds);
727 }
728
729 /*
730   netr_LogonSamLogonWithFlags
731
732 */
733 static NTSTATUS dcesrv_netr_LogonSamLogonWithFlags(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
734                                             struct netr_LogonSamLogonWithFlags *r)
735 {
736         NTSTATUS nt_status;
737         struct netlogon_creds_CredentialState *creds;
738         struct netr_LogonSamLogonEx r2;
739
740         struct netr_Authenticator *return_authenticator;
741
742         return_authenticator = talloc(mem_ctx, struct netr_Authenticator);
743         NT_STATUS_HAVE_NO_MEMORY(return_authenticator);
744
745         nt_status = dcesrv_netr_creds_server_step_check(dce_call,
746                                                         mem_ctx,
747                                                         r->in.computer_name,
748                                                         r->in.credential, return_authenticator,
749                                                         &creds);
750         NT_STATUS_NOT_OK_RETURN(nt_status);
751
752         ZERO_STRUCT(r2);
753
754         r2.in.server_name       = r->in.server_name;
755         r2.in.computer_name     = r->in.computer_name;
756         r2.in.logon_level       = r->in.logon_level;
757         r2.in.logon             = r->in.logon;
758         r2.in.validation_level  = r->in.validation_level;
759         r2.in.flags             = r->in.flags;
760         r2.out.validation       = r->out.validation;
761         r2.out.authoritative    = r->out.authoritative;
762         r2.out.flags            = r->out.flags;
763
764         nt_status = dcesrv_netr_LogonSamLogon_base(dce_call, mem_ctx, &r2, creds);
765
766         r->out.return_authenticator     = return_authenticator;
767
768         return nt_status;
769 }
770
771 /*
772   netr_LogonSamLogon
773 */
774 static NTSTATUS dcesrv_netr_LogonSamLogon(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
775                                    struct netr_LogonSamLogon *r)
776 {
777         struct netr_LogonSamLogonWithFlags r2;
778         uint32_t flags = 0;
779         NTSTATUS status;
780
781         ZERO_STRUCT(r2);
782
783         r2.in.server_name = r->in.server_name;
784         r2.in.computer_name = r->in.computer_name;
785         r2.in.credential  = r->in.credential;
786         r2.in.return_authenticator = r->in.return_authenticator;
787         r2.in.logon_level = r->in.logon_level;
788         r2.in.logon = r->in.logon;
789         r2.in.validation_level = r->in.validation_level;
790         r2.in.flags = &flags;
791         r2.out.validation = r->out.validation;
792         r2.out.authoritative = r->out.authoritative;
793         r2.out.flags = &flags;
794
795         status = dcesrv_netr_LogonSamLogonWithFlags(dce_call, mem_ctx, &r2);
796
797         r->out.return_authenticator = r2.out.return_authenticator;
798
799         return status;
800 }
801
802
803 /*
804   netr_LogonSamLogoff
805 */
806 static NTSTATUS dcesrv_netr_LogonSamLogoff(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
807                        struct netr_LogonSamLogoff *r)
808 {
809         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
810 }
811
812
813
814 /*
815   netr_DatabaseDeltas
816 */
817 static NTSTATUS dcesrv_netr_DatabaseDeltas(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
818                        struct netr_DatabaseDeltas *r)
819 {
820         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
821 }
822
823
824 /*
825   netr_DatabaseSync2
826 */
827 static NTSTATUS dcesrv_netr_DatabaseSync2(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
828                        struct netr_DatabaseSync2 *r)
829 {
830         /* win2k3 native mode returns  "NOT IMPLEMENTED" for this call */
831         return NT_STATUS_NOT_IMPLEMENTED;
832 }
833
834
835 /*
836   netr_DatabaseSync
837 */
838 static NTSTATUS dcesrv_netr_DatabaseSync(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
839                        struct netr_DatabaseSync *r)
840 {
841         struct netr_DatabaseSync2 r2;
842         NTSTATUS status;
843
844         ZERO_STRUCT(r2);
845
846         r2.in.logon_server = r->in.logon_server;
847         r2.in.computername = r->in.computername;
848         r2.in.credential = r->in.credential;
849         r2.in.database_id = r->in.database_id;
850         r2.in.restart_state = SYNCSTATE_NORMAL_STATE;
851         r2.in.sync_context = r->in.sync_context;
852         r2.out.sync_context = r->out.sync_context;
853         r2.out.delta_enum_array = r->out.delta_enum_array;
854         r2.in.preferredmaximumlength = r->in.preferredmaximumlength;
855
856         status = dcesrv_netr_DatabaseSync2(dce_call, mem_ctx, &r2);
857
858         return status;
859 }
860
861
862 /*
863   netr_AccountDeltas
864 */
865 static NTSTATUS dcesrv_netr_AccountDeltas(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
866                        struct netr_AccountDeltas *r)
867 {
868         /* w2k3 returns "NOT IMPLEMENTED" for this call */
869         return NT_STATUS_NOT_IMPLEMENTED;
870 }
871
872
873 /*
874   netr_AccountSync
875 */
876 static NTSTATUS dcesrv_netr_AccountSync(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
877                        struct netr_AccountSync *r)
878 {
879         /* w2k3 returns "NOT IMPLEMENTED" for this call */
880         return NT_STATUS_NOT_IMPLEMENTED;
881 }
882
883
884 /*
885   netr_GetDcName
886 */
887 static WERROR dcesrv_netr_GetDcName(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
888                        struct netr_GetDcName *r)
889 {
890         const char * const attrs[] = { NULL };
891         struct ldb_context *sam_ctx;
892         struct ldb_message **res;
893         struct ldb_dn *domain_dn;
894         int ret;
895         const char *dcname;
896
897         sam_ctx = samdb_connect(mem_ctx, dce_call->event_ctx,
898                                 dce_call->conn->dce_ctx->lp_ctx,
899                                 dce_call->conn->auth_state.session_info);
900         if (sam_ctx == NULL) {
901                 return WERR_DS_UNAVAILABLE;
902         }
903
904         domain_dn = samdb_domain_to_dn(sam_ctx, mem_ctx,
905                                        r->in.domainname);
906         if (domain_dn == NULL) {
907                 return WERR_DS_UNAVAILABLE;
908         }
909
910         ret = gendb_search_dn(sam_ctx, mem_ctx,
911                               domain_dn, &res, attrs);
912         if (ret != 1) {
913                 return WERR_NO_SUCH_DOMAIN;
914         }
915
916         /* TODO: - return real IP address
917          *       - check all r->in.* parameters (server_unc is ignored by w2k3!)
918          */
919         dcname = talloc_asprintf(mem_ctx, "\\\\%s",
920                                  lp_netbios_name(dce_call->conn->dce_ctx->lp_ctx));
921         W_ERROR_HAVE_NO_MEMORY(dcname);
922
923         *r->out.dcname = dcname;
924         return WERR_OK;
925 }
926
927
928 /*
929   netr_LogonControl2Ex
930 */
931 static WERROR dcesrv_netr_LogonControl2Ex(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
932                        struct netr_LogonControl2Ex *r)
933 {
934         return WERR_NOT_SUPPORTED;
935 }
936
937
938 /*
939   netr_LogonControl
940 */
941 static WERROR dcesrv_netr_LogonControl(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
942                        struct netr_LogonControl *r)
943 {
944         struct netr_LogonControl2Ex r2;
945         WERROR werr;
946
947         if (r->in.level == 0x00000001) {
948                 ZERO_STRUCT(r2);
949
950                 r2.in.logon_server = r->in.logon_server;
951                 r2.in.function_code = r->in.function_code;
952                 r2.in.level = r->in.level;
953                 r2.in.data = NULL;
954                 r2.out.query = r->out.query;
955
956                 werr = dcesrv_netr_LogonControl2Ex(dce_call, mem_ctx, &r2);
957         } else if (r->in.level == 0x00000002) {
958                 werr = WERR_NOT_SUPPORTED;
959         } else {
960                 werr = WERR_UNKNOWN_LEVEL;
961         }
962
963         return werr;
964 }
965
966
967 /*
968   netr_LogonControl2
969 */
970 static WERROR dcesrv_netr_LogonControl2(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
971                        struct netr_LogonControl2 *r)
972 {
973         struct netr_LogonControl2Ex r2;
974         WERROR werr;
975
976         ZERO_STRUCT(r2);
977
978         r2.in.logon_server = r->in.logon_server;
979         r2.in.function_code = r->in.function_code;
980         r2.in.level = r->in.level;
981         r2.in.data = r->in.data;
982         r2.out.query = r->out.query;
983
984         werr = dcesrv_netr_LogonControl2Ex(dce_call, mem_ctx, &r2);
985
986         return werr;
987 }
988
989
990 /*
991   netr_GetAnyDCName
992 */
993 static WERROR dcesrv_netr_GetAnyDCName(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
994                        struct netr_GetAnyDCName *r)
995 {
996         struct netr_GetDcName r2;
997         WERROR werr;
998
999         ZERO_STRUCT(r2);
1000
1001         r2.in.logon_server      = r->in.logon_server;
1002         r2.in.domainname        = r->in.domainname;
1003         r2.out.dcname           = r->out.dcname;
1004
1005         werr = dcesrv_netr_GetDcName(dce_call, mem_ctx, &r2);
1006
1007         return werr;
1008 }
1009
1010
1011 /*
1012   netr_DatabaseRedo
1013 */
1014 static NTSTATUS dcesrv_netr_DatabaseRedo(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
1015                        struct netr_DatabaseRedo *r)
1016 {
1017         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
1018 }
1019
1020
1021 /*
1022   netr_NetrEnumerateTurstedDomains
1023 */
1024 static WERROR dcesrv_netr_NetrEnumerateTrustedDomains(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
1025                        struct netr_NetrEnumerateTrustedDomains *r)
1026 {
1027         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
1028 }
1029
1030
1031 /*
1032   netr_LogonGetCapabilities
1033 */
1034 static NTSTATUS dcesrv_netr_LogonGetCapabilities(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
1035                        struct netr_LogonGetCapabilities *r)
1036 {
1037         /* we don't support AES yet */
1038         return NT_STATUS_NOT_IMPLEMENTED;
1039 }
1040
1041
1042 /*
1043   netr_NETRLOGONSETSERVICEBITS
1044 */
1045 static WERROR dcesrv_netr_NETRLOGONSETSERVICEBITS(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
1046                        struct netr_NETRLOGONSETSERVICEBITS *r)
1047 {
1048         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
1049 }
1050
1051
1052 /*
1053   netr_LogonGetTrustRid
1054 */
1055 static WERROR dcesrv_netr_LogonGetTrustRid(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
1056                        struct netr_LogonGetTrustRid *r)
1057 {
1058         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
1059 }
1060
1061
1062 /*
1063   netr_NETRLOGONCOMPUTESERVERDIGEST
1064 */
1065 static WERROR dcesrv_netr_NETRLOGONCOMPUTESERVERDIGEST(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
1066                        struct netr_NETRLOGONCOMPUTESERVERDIGEST *r)
1067 {
1068         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
1069 }
1070
1071
1072 /*
1073   netr_NETRLOGONCOMPUTECLIENTDIGEST
1074 */
1075 static WERROR dcesrv_netr_NETRLOGONCOMPUTECLIENTDIGEST(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
1076                        struct netr_NETRLOGONCOMPUTECLIENTDIGEST *r)
1077 {
1078         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
1079 }
1080
1081
1082
1083 /*
1084   netr_DsRGetSiteName
1085 */
1086 static WERROR dcesrv_netr_DsRGetSiteName(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
1087                                   struct netr_DsRGetSiteName *r)
1088 {
1089         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
1090 }
1091
1092
1093 /*
1094   fill in a netr_OneDomainInfo from a ldb search result
1095 */
1096 static NTSTATUS fill_one_domain_info(TALLOC_CTX *mem_ctx,
1097                                      struct loadparm_context *lp_ctx,
1098                                      struct ldb_context *sam_ctx,
1099                                      struct ldb_message *res,
1100                                      struct netr_OneDomainInfo *info,
1101                                      bool is_local, bool is_trust_list)
1102 {
1103         ZERO_STRUCTP(info);
1104
1105         if (is_trust_list) {
1106                 /* w2k8 only fills this on trusted domains */
1107                 info->trust_extension.info = talloc_zero(mem_ctx, struct netr_trust_extension);
1108                 info->trust_extension.length = 16;
1109                 info->trust_extension.info->flags =
1110                         NETR_TRUST_FLAG_TREEROOT |
1111                         NETR_TRUST_FLAG_IN_FOREST |
1112                         NETR_TRUST_FLAG_PRIMARY |
1113                         NETR_TRUST_FLAG_NATIVE;
1114
1115                 info->trust_extension.info->parent_index = 0; /* should be index into array
1116                                                                  of parent */
1117                 info->trust_extension.info->trust_type = LSA_TRUST_TYPE_UPLEVEL; /* should be based on ldb search for trusts */
1118                 info->trust_extension.info->trust_attributes = 0; /*    TODO: base on ldb search? */
1119         }
1120
1121         if (is_trust_list) {
1122                 /* MS-NRPC 3.5.4.3.9 - must be set to NULL for trust list */
1123                 info->dns_forestname.string = NULL;
1124         } else {
1125                 char *p;
1126                 /* TODO: we need a common function for pulling the forest */
1127                 info->dns_forestname.string = ldb_dn_canonical_string(info, samdb_root_dn(sam_ctx));
1128                 if (!info->dns_forestname.string) {
1129                         return NT_STATUS_NO_SUCH_DOMAIN;
1130                 }
1131                 p = strchr(info->dns_forestname.string, '/');
1132                 if (p) {
1133                         *p = '\0';
1134                 }
1135                 info->dns_forestname.string = talloc_asprintf(mem_ctx, "%s.", info->dns_forestname.string);
1136
1137         }
1138
1139         if (is_local) {
1140                 info->domainname.string = lp_sam_name(lp_ctx);
1141                 info->dns_domainname.string = lp_dnsdomain(lp_ctx);
1142                 info->domain_guid = samdb_result_guid(res, "objectGUID");
1143                 info->domain_sid = samdb_result_dom_sid(mem_ctx, res, "objectSid");
1144         } else {
1145                 info->domainname.string = samdb_result_string(res, "flatName", NULL);
1146                 info->dns_domainname.string = samdb_result_string(res, "trustPartner", NULL);
1147                 info->domain_guid = samdb_result_guid(res, "objectGUID");
1148                 info->domain_sid = samdb_result_dom_sid(mem_ctx, res, "securityIdentifier");
1149         }
1150         if (!is_trust_list) {
1151                 info->dns_domainname.string = talloc_asprintf(mem_ctx, "%s.", info->dns_domainname.string);
1152         }
1153
1154         return NT_STATUS_OK;
1155 }
1156
1157 /*
1158   netr_LogonGetDomainInfo
1159   this is called as part of the ADS domain logon procedure.
1160
1161   It has an important role in convaying details about the client, such
1162   as Operating System, Version, Service Pack etc.
1163 */
1164 static NTSTATUS dcesrv_netr_LogonGetDomainInfo(struct dcesrv_call_state *dce_call,
1165         TALLOC_CTX *mem_ctx, struct netr_LogonGetDomainInfo *r)
1166 {
1167         struct netlogon_creds_CredentialState *creds;
1168         const char * const attrs[] = { "objectSid", "objectGUID", "flatName",
1169                 "securityIdentifier", "trustPartner", NULL };
1170         const char * const attrs2[] = { "dNSHostName",
1171                 "msDS-SupportedEncryptionTypes", NULL };
1172         const char * const attrs3[] = { NULL };
1173         const char *temp_str, *temp_str2;
1174         const char *old_dns_hostname;
1175         struct ldb_context *sam_ctx;
1176         struct ldb_message **res0, **res1, **res2, **res3, *new_msg;
1177         struct ldb_dn *workstation_dn;
1178         struct netr_DomainInformation *domain_info;
1179         struct netr_LsaPolicyInformation *lsa_policy_info;
1180         struct netr_OsVersionInfoEx *os_version;
1181         uint32_t default_supported_enc_types = 0xFFFFFFFF;
1182         bool update_dns_hostname = true;
1183         int ret, ret3, i;
1184         NTSTATUS status;
1185
1186         status = dcesrv_netr_creds_server_step_check(dce_call,
1187                                                      mem_ctx,
1188                                                      r->in.computer_name,
1189                                                      r->in.credential,
1190                                                      r->out.return_authenticator,
1191                                                      &creds);
1192         if (!NT_STATUS_IS_OK(status)) {
1193                 DEBUG(0,(__location__ " Bad credentials - error\n"));
1194         }
1195         NT_STATUS_NOT_OK_RETURN(status);
1196
1197         sam_ctx = samdb_connect(mem_ctx, dce_call->event_ctx,
1198                 dce_call->conn->dce_ctx->lp_ctx,
1199                 system_session(dce_call->conn->dce_ctx->lp_ctx));
1200         if (sam_ctx == NULL) {
1201                 return NT_STATUS_INVALID_SYSTEM_SERVICE;
1202         }
1203
1204         switch (r->in.level) {
1205         case 1: /* Domain information */
1206
1207                 /*
1208                  * Updates the DNS hostname when the client wishes that the
1209                  * server should handle this for him
1210                  * ("NETR_WS_FLAG_HANDLES_SPN_UPDATE" not set).
1211                  * See MS-NRPC section 3.5.4.3.9
1212                  */
1213                 if ((r->in.query->workstation_info->workstation_flags
1214                     & NETR_WS_FLAG_HANDLES_SPN_UPDATE) != 0) {
1215                         update_dns_hostname = false;
1216                 }
1217
1218                 /*
1219                  * Checks that the computer name parameter without possible "$"
1220                  * matches as prefix with the DNS hostname in the workstation
1221                  * info structure.
1222                  */
1223                 temp_str = talloc_strndup(mem_ctx,
1224                                           r->in.computer_name,
1225                                           strcspn(r->in.computer_name, "$"));
1226                 NT_STATUS_HAVE_NO_MEMORY(temp_str);
1227                 temp_str2 = talloc_strndup(mem_ctx,
1228                                            r->in.query->workstation_info->dns_hostname,
1229                                            strcspn(r->in.query->workstation_info->dns_hostname, "."));
1230                 NT_STATUS_HAVE_NO_MEMORY(temp_str2);
1231                 if (strcasecmp(temp_str, temp_str2) != 0) {
1232                         update_dns_hostname = false;
1233                 }
1234
1235                 /*
1236                  * Check that the DNS hostname when it should be updated
1237                  * will be used only by maximum one host.
1238                  */
1239                 ret = gendb_search(sam_ctx, mem_ctx, samdb_base_dn(sam_ctx),
1240                                    &res0, attrs3, "(dNSHostName=%s)",
1241                                    r->in.query->workstation_info->dns_hostname);
1242                 if (ret < 0) {
1243                         return NT_STATUS_INTERNAL_DB_CORRUPTION;
1244                 }
1245                 if (ret >= 1) {
1246                         update_dns_hostname = false;
1247                 }
1248
1249                 talloc_free(res0);
1250
1251                 /* Prepare the workstation DN */
1252                 workstation_dn = ldb_dn_new_fmt(mem_ctx, sam_ctx, "<SID=%s>",
1253                         dom_sid_string(mem_ctx, creds->sid));
1254                 NT_STATUS_HAVE_NO_MEMORY(workstation_dn);
1255
1256                 /* Lookup for attributes in workstation object */
1257                 ret = gendb_search_dn(sam_ctx, mem_ctx, workstation_dn,
1258                         &res1, attrs2);
1259                 if (ret != 1) {
1260                         return NT_STATUS_INTERNAL_DB_CORRUPTION;
1261                 }
1262
1263                 /* Gets the old DNS hostname */
1264                 old_dns_hostname = samdb_result_string(res1[0], "dNSHostName",
1265                         NULL);
1266
1267                 /* Gets host informations and put them in our directory */
1268                 new_msg = ldb_msg_new(mem_ctx);
1269                 NT_STATUS_HAVE_NO_MEMORY(new_msg);
1270
1271                 new_msg->dn = workstation_dn;
1272
1273                 /* Deletes old OS version values */
1274                 samdb_msg_add_delete(sam_ctx, mem_ctx, new_msg,
1275                         "operatingSystemServicePack");
1276                 samdb_msg_add_delete(sam_ctx, mem_ctx, new_msg,
1277                         "operatingSystemVersion");
1278
1279                 if (dsdb_replace(sam_ctx, new_msg, 0) != LDB_SUCCESS) {
1280                         DEBUG(3,("Impossible to update samdb: %s\n",
1281                                 ldb_errstring(sam_ctx)));
1282                 }
1283
1284                 talloc_free(new_msg);
1285
1286                 new_msg = ldb_msg_new(mem_ctx);
1287                 NT_STATUS_HAVE_NO_MEMORY(new_msg);
1288
1289                 new_msg->dn = workstation_dn;
1290
1291                 /* Sets the OS name */
1292                 samdb_msg_set_string(sam_ctx, mem_ctx, new_msg,
1293                         "operatingSystem",
1294                         r->in.query->workstation_info->os_name.string);
1295
1296                 /*
1297                  * Sets informations from "os_version". On a empty structure
1298                  * the values are cleared.
1299                  */
1300                 if (r->in.query->workstation_info->os_version.os != NULL) {
1301                         os_version = &r->in.query->workstation_info->os_version.os->os;
1302
1303                         samdb_msg_set_string(sam_ctx, mem_ctx, new_msg,
1304                                              "operatingSystemServicePack",
1305                                              os_version->CSDVersion);
1306
1307                         samdb_msg_set_string(sam_ctx, mem_ctx, new_msg,
1308                                 "operatingSystemVersion",
1309                                 talloc_asprintf(mem_ctx, "%d.%d (%d)",
1310                                         os_version->MajorVersion,
1311                                         os_version->MinorVersion,
1312                                         os_version->BuildNumber
1313                                 )
1314                         );
1315                 }
1316
1317                 /*
1318                  * If the boolean "update_dns_hostname" remained true, then we
1319                  * are fine to start the update.
1320                  */
1321                 if (update_dns_hostname) {
1322                         samdb_msg_set_string(sam_ctx, mem_ctx, new_msg,
1323                                 "dNSHostname",
1324                         r->in.query->workstation_info->dns_hostname);
1325
1326                         samdb_msg_add_string(sam_ctx, mem_ctx, new_msg,
1327                                 "servicePrincipalName",
1328                                 talloc_asprintf(mem_ctx, "HOST/%s",
1329                                 r->in.computer_name)
1330                         );
1331                         samdb_msg_add_string(sam_ctx, mem_ctx, new_msg,
1332                                 "servicePrincipalName",
1333                                 talloc_asprintf(mem_ctx, "HOST/%s",
1334                                 r->in.query->workstation_info->dns_hostname)
1335                         );
1336                 }
1337
1338                 if (dsdb_replace(sam_ctx, new_msg, 0) != LDB_SUCCESS) {
1339                         DEBUG(3,("Impossible to update samdb: %s\n",
1340                                 ldb_errstring(sam_ctx)));
1341                 }
1342
1343                 talloc_free(new_msg);
1344
1345                 /* Writes back the domain information */
1346
1347                 /* We need to do two searches. The first will pull our primary
1348                    domain and the second will pull any trusted domains. Our
1349                    primary domain is also a "trusted" domain, so we need to
1350                    put the primary domain into the lists of returned trusts as
1351                    well. */
1352                 ret = gendb_search_dn(sam_ctx, mem_ctx, samdb_base_dn(sam_ctx),
1353                         &res2, attrs);
1354                 if (ret != 1) {
1355                         return NT_STATUS_INTERNAL_DB_CORRUPTION;
1356                 }
1357
1358                 ret3 = gendb_search(sam_ctx, mem_ctx, NULL, &res3, attrs,
1359                         "(objectClass=trustedDomain)");
1360                 if (ret3 == -1) {
1361                         return NT_STATUS_INTERNAL_DB_CORRUPTION;
1362                 }
1363
1364                 domain_info = talloc(mem_ctx, struct netr_DomainInformation);
1365                 NT_STATUS_HAVE_NO_MEMORY(domain_info);
1366
1367                 ZERO_STRUCTP(domain_info);
1368
1369                 /* Informations about the local and trusted domains */
1370
1371                 status = fill_one_domain_info(mem_ctx,
1372                         dce_call->conn->dce_ctx->lp_ctx,
1373                         sam_ctx, res2[0], &domain_info->primary_domain,
1374                         true, false);
1375                 NT_STATUS_NOT_OK_RETURN(status);
1376
1377                 domain_info->trusted_domain_count = ret3 + 1;
1378                 domain_info->trusted_domains = talloc_array(mem_ctx,
1379                         struct netr_OneDomainInfo,
1380                         domain_info->trusted_domain_count);
1381                 NT_STATUS_HAVE_NO_MEMORY(domain_info->trusted_domains);
1382
1383                 for (i=0;i<ret3;i++) {
1384                         status = fill_one_domain_info(mem_ctx,
1385                                 dce_call->conn->dce_ctx->lp_ctx,
1386                                 sam_ctx, res3[i],
1387                                 &domain_info->trusted_domains[i],
1388                                 false, true);
1389                         NT_STATUS_NOT_OK_RETURN(status);
1390                 }
1391
1392                 status = fill_one_domain_info(mem_ctx,
1393                         dce_call->conn->dce_ctx->lp_ctx, sam_ctx, res2[0],
1394                         &domain_info->trusted_domains[i], true, true);
1395                 NT_STATUS_NOT_OK_RETURN(status);
1396
1397                 /* Sets the supported encryption types */
1398                 domain_info->supported_enc_types = samdb_result_uint(res1[0],
1399                         "msDS-SupportedEncryptionTypes",
1400                         default_supported_enc_types);
1401
1402                 /* Other host domain informations */
1403
1404                 lsa_policy_info = talloc(mem_ctx,
1405                         struct netr_LsaPolicyInformation);
1406                 NT_STATUS_HAVE_NO_MEMORY(lsa_policy_info);
1407                 ZERO_STRUCTP(lsa_policy_info);
1408
1409                 domain_info->lsa_policy = *lsa_policy_info;
1410
1411                 /* The DNS hostname is only returned back when there is a chance
1412                  * for a change. */
1413                 if ((r->in.query->workstation_info->workstation_flags
1414                     & NETR_WS_FLAG_HANDLES_SPN_UPDATE) != 0) {
1415                         domain_info->dns_hostname.string = old_dns_hostname;
1416                 } else {
1417                         domain_info->dns_hostname.string = NULL;
1418                 }
1419
1420                 domain_info->workstation_flags =
1421                         r->in.query->workstation_info->workstation_flags;
1422
1423                 r->out.info->domain_info = domain_info;
1424         break;
1425         case 2: /* LSA policy information - not used at the moment */
1426                 lsa_policy_info = talloc(mem_ctx,
1427                         struct netr_LsaPolicyInformation);
1428                 NT_STATUS_HAVE_NO_MEMORY(lsa_policy_info);
1429                 ZERO_STRUCTP(lsa_policy_info);
1430
1431                 r->out.info->lsa_policy_info = lsa_policy_info;
1432         break;
1433         default:
1434                 return NT_STATUS_INVALID_LEVEL;
1435         break;
1436         }
1437
1438         return NT_STATUS_OK;
1439 }
1440
1441
1442
1443 /*
1444   netr_ServerPasswordGet
1445 */
1446 static WERROR dcesrv_netr_ServerPasswordGet(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
1447                        struct netr_ServerPasswordGet *r)
1448 {
1449         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
1450 }
1451
1452
1453 /*
1454   netr_NETRLOGONSENDTOSAM
1455 */
1456 static WERROR dcesrv_netr_NETRLOGONSENDTOSAM(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
1457                        struct netr_NETRLOGONSENDTOSAM *r)
1458 {
1459         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
1460 }
1461
1462
1463 /*
1464   netr_DsRAddressToSitenamesW
1465 */
1466 static WERROR dcesrv_netr_DsRAddressToSitenamesW(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
1467                        struct netr_DsRAddressToSitenamesW *r)
1468 {
1469         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
1470 }
1471
1472
1473 /*
1474   netr_DsRGetDCNameEx2
1475 */
1476 static WERROR dcesrv_netr_DsRGetDCNameEx2(struct dcesrv_call_state *dce_call,
1477                                           TALLOC_CTX *mem_ctx,
1478                                           struct netr_DsRGetDCNameEx2 *r)
1479 {
1480         const char * const attrs[] = { "objectGUID", NULL };
1481         struct ldb_context *sam_ctx;
1482         struct ldb_message **res;
1483         struct ldb_dn *domain_dn;
1484         int ret;
1485         struct netr_DsRGetDCNameInfo *info;
1486         struct loadparm_context *lp_ctx = dce_call->conn->dce_ctx->lp_ctx;
1487
1488         ZERO_STRUCTP(r->out.info);
1489
1490         sam_ctx = samdb_connect(mem_ctx, dce_call->event_ctx, lp_ctx,
1491                                 dce_call->conn->auth_state.session_info);
1492         if (sam_ctx == NULL) {
1493                 return WERR_DS_UNAVAILABLE;
1494         }
1495
1496         /* Windows 7 sends the domain name in the form the user typed, so we
1497          * have to cope  with both the short and long form here */
1498         if (r->in.domain_name != NULL &&
1499             !lp_is_my_domain_or_realm(lp_ctx, r->in.domain_name)) {
1500                 return WERR_NO_SUCH_DOMAIN;
1501         }
1502
1503         domain_dn = ldb_get_default_basedn(sam_ctx);
1504         if (domain_dn == NULL) {
1505                 return WERR_DS_UNAVAILABLE;
1506         }
1507
1508         ret = gendb_search_dn(sam_ctx, mem_ctx,
1509                               domain_dn, &res, attrs);
1510         if (ret != 1) {
1511                 return WERR_GENERAL_FAILURE;
1512         }
1513
1514         info = talloc(mem_ctx, struct netr_DsRGetDCNameInfo);
1515         W_ERROR_HAVE_NO_MEMORY(info);
1516
1517         /* TODO: - return real IP address
1518          *       - check all r->in.* parameters
1519          *       (server_unc is ignored by w2k3!)
1520          */
1521         info->dc_unc = talloc_asprintf(mem_ctx, "\\\\%s.%s",
1522                                        lp_netbios_name(lp_ctx),
1523                                        lp_dnsdomain(lp_ctx));
1524         W_ERROR_HAVE_NO_MEMORY(info->dc_unc);
1525
1526         info->dc_address = talloc_strdup(mem_ctx, "\\\\0.0.0.0");
1527         W_ERROR_HAVE_NO_MEMORY(info->dc_address);
1528
1529         info->dc_address_type = DS_ADDRESS_TYPE_INET;
1530         info->domain_guid = samdb_result_guid(res[0], "objectGUID");
1531         info->domain_name = lp_dnsdomain(lp_ctx);
1532         info->forest_name = lp_dnsdomain(lp_ctx);
1533         info->dc_flags  = DS_DNS_FOREST_ROOT |
1534                           DS_DNS_DOMAIN |
1535                           DS_DNS_CONTROLLER |
1536                           DS_SERVER_WRITABLE |
1537                           DS_SERVER_CLOSEST |
1538                           DS_SERVER_TIMESERV |
1539                           DS_SERVER_KDC |
1540                           DS_SERVER_DS |
1541                           DS_SERVER_LDAP |
1542                           DS_SERVER_GC |
1543                           DS_SERVER_PDC;
1544
1545         info->dc_site_name = samdb_server_site_name(sam_ctx, mem_ctx);
1546         W_ERROR_HAVE_NO_MEMORY(info->dc_site_name);
1547
1548         /* FIXME: Hardcoded site name */
1549         info->client_site_name = talloc_strdup(mem_ctx,
1550                                                "Default-First-Site-Name");
1551         W_ERROR_HAVE_NO_MEMORY(info->client_site_name);
1552
1553         *r->out.info = info;
1554
1555         return WERR_OK;
1556 }
1557
1558 /*
1559   netr_DsRGetDCNameEx
1560 */
1561 static WERROR dcesrv_netr_DsRGetDCNameEx(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
1562                                   struct netr_DsRGetDCNameEx *r)
1563 {
1564         struct netr_DsRGetDCNameEx2 r2;
1565         WERROR werr;
1566
1567         ZERO_STRUCT(r2);
1568
1569         r2.in.server_unc = r->in.server_unc;
1570         r2.in.client_account = NULL;
1571         r2.in.mask = 0;
1572         r2.in.domain_guid = r->in.domain_guid;
1573         r2.in.domain_name = r->in.domain_name;
1574         r2.in.site_name = r->in.site_name;
1575         r2.in.flags = r->in.flags;
1576         r2.out.info = r->out.info;
1577
1578         werr = dcesrv_netr_DsRGetDCNameEx2(dce_call, mem_ctx, &r2);
1579
1580         return werr;
1581 }
1582
1583 /*
1584   netr_DsRGetDCName
1585 */
1586 static WERROR dcesrv_netr_DsRGetDCName(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
1587                                 struct netr_DsRGetDCName *r)
1588 {
1589         struct netr_DsRGetDCNameEx2 r2;
1590         WERROR werr;
1591
1592         ZERO_STRUCT(r2);
1593
1594         r2.in.server_unc = r->in.server_unc;
1595         r2.in.client_account = NULL;
1596         r2.in.mask = 0;
1597         r2.in.domain_name = r->in.domain_name;
1598         r2.in.domain_guid = r->in.domain_guid;
1599
1600         r2.in.site_name = NULL; /* should fill in from site GUID */
1601         r2.in.flags = r->in.flags;
1602         r2.out.info = r->out.info;
1603
1604         werr = dcesrv_netr_DsRGetDCNameEx2(dce_call, mem_ctx, &r2);
1605
1606         return werr;
1607 }
1608 /*
1609   netr_NETRLOGONGETTIMESERVICEPARENTDOMAIN
1610 */
1611 static WERROR dcesrv_netr_NETRLOGONGETTIMESERVICEPARENTDOMAIN(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
1612                        struct netr_NETRLOGONGETTIMESERVICEPARENTDOMAIN *r)
1613 {
1614         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
1615 }
1616
1617
1618 /*
1619   netr_NetrEnumerateTrustedDomainsEx
1620 */
1621 static WERROR dcesrv_netr_NetrEnumerateTrustedDomainsEx(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
1622                        struct netr_NetrEnumerateTrustedDomainsEx *r)
1623 {
1624         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
1625 }
1626
1627
1628 /*
1629   netr_DsRAddressToSitenamesExW
1630 */
1631 static WERROR dcesrv_netr_DsRAddressToSitenamesExW(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
1632                                                    struct netr_DsRAddressToSitenamesExW *r)
1633 {
1634         struct netr_DsRAddressToSitenamesExWCtr *ctr;
1635         int i;
1636
1637         /* we should map the provided IPs to site names, once we have
1638          * sites support
1639          */
1640         ctr = talloc(mem_ctx, struct netr_DsRAddressToSitenamesExWCtr);
1641         W_ERROR_HAVE_NO_MEMORY(ctr);
1642
1643         *r->out.ctr = ctr;
1644
1645         ctr->count = r->in.count;
1646         ctr->sitename = talloc_array(ctr, struct lsa_String, ctr->count);
1647         W_ERROR_HAVE_NO_MEMORY(ctr->sitename);
1648         ctr->subnetname = talloc_array(ctr, struct lsa_String, ctr->count);
1649         W_ERROR_HAVE_NO_MEMORY(ctr->subnetname);
1650
1651         for (i=0; i<ctr->count; i++) {
1652                 /* FIXME: Hardcoded site name */
1653                 ctr->sitename[i].string   = "Default-First-Site-Name";
1654                 ctr->subnetname[i].string = NULL;
1655         }
1656
1657         return WERR_OK;
1658 }
1659
1660
1661 /*
1662   netr_DsrGetDcSiteCoverageW
1663 */
1664 static WERROR dcesrv_netr_DsrGetDcSiteCoverageW(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
1665                        struct netr_DsrGetDcSiteCoverageW *r)
1666 {
1667         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
1668 }
1669
1670
1671 #define GET_CHECK_STR(dest, mem, msg, attr) \
1672 do {\
1673         const char *s; \
1674         s = samdb_result_string(msg, attr, NULL); \
1675         if (!s) { \
1676                 DEBUG(0, ("DB Error, TustedDomain entry (%s) " \
1677                           "without flatname\n", \
1678                           ldb_dn_get_linearized(msg->dn))); \
1679                 continue; \
1680         } \
1681         dest = talloc_strdup(mem, s); \
1682         W_ERROR_HAVE_NO_MEMORY(dest); \
1683 } while(0)
1684
1685
1686 static WERROR fill_trusted_domains_array(TALLOC_CTX *mem_ctx,
1687                                          struct ldb_context *sam_ctx,
1688                                          struct netr_DomainTrustList *trusts,
1689                                          uint32_t trust_flags)
1690 {
1691         struct ldb_dn *system_dn;
1692         struct ldb_message **dom_res = NULL;
1693         const char *trust_attrs[] = { "flatname", "trustPartner",
1694                                       "securityIdentifier", "trustDirection",
1695                                       "trustType", "trustAttributes", NULL };
1696         int i, n;
1697         int ret;
1698
1699         if (!(trust_flags & (NETR_TRUST_FLAG_INBOUND |
1700                              NETR_TRUST_FLAG_OUTBOUND))) {
1701                 return WERR_INVALID_FLAGS;
1702         }
1703
1704         system_dn = samdb_search_dn(sam_ctx, mem_ctx,
1705                                     ldb_get_default_basedn(sam_ctx),
1706                                     "(&(objectClass=container)(cn=System))");
1707         if (!system_dn) {
1708                 return WERR_GENERAL_FAILURE;
1709         }
1710
1711         ret = gendb_search(sam_ctx, mem_ctx, system_dn,
1712                            &dom_res, trust_attrs,
1713                            "(objectclass=trustedDomain)");
1714
1715         for (i = 0; i < ret; i++) {
1716                 unsigned int trust_dir;
1717                 uint32_t flags = 0;
1718
1719                 trust_dir = samdb_result_uint(dom_res[i],
1720                                               "trustDirection", 0);
1721
1722                 if (trust_dir & LSA_TRUST_DIRECTION_INBOUND) {
1723                         flags |= NETR_TRUST_FLAG_INBOUND;
1724                 }
1725                 if (trust_dir & LSA_TRUST_DIRECTION_OUTBOUND) {
1726                         flags |= NETR_TRUST_FLAG_OUTBOUND;
1727                 }
1728
1729                 if (!(flags & trust_flags)) {
1730                         /* this trust direction was not requested */
1731                         continue;
1732                 }
1733
1734                 n = trusts->count;
1735                 trusts->array = talloc_realloc(trusts, trusts->array,
1736                                                struct netr_DomainTrust,
1737                                                n + 1);
1738                 W_ERROR_HAVE_NO_MEMORY(trusts->array);
1739
1740                 GET_CHECK_STR(trusts->array[n].netbios_name, trusts,
1741                               dom_res[i], "flatname");
1742                 GET_CHECK_STR(trusts->array[n].dns_name, trusts,
1743                               dom_res[i], "trustPartner");
1744
1745                 trusts->array[n].trust_flags = flags;
1746                 if ((trust_flags & NETR_TRUST_FLAG_IN_FOREST) &&
1747                     !(flags & NETR_TRUST_FLAG_TREEROOT)) {
1748                         /* TODO: find if we have parent in the list */
1749                         trusts->array[n].parent_index = 0;
1750                 }
1751
1752                 trusts->array[n].trust_type =
1753                                 samdb_result_uint(dom_res[i],
1754                                                   "trustType", 0);
1755                 trusts->array[n].trust_attributes =
1756                                 samdb_result_uint(dom_res[i],
1757                                                   "trustAttributes", 0);
1758
1759                 if ((trusts->array[n].trust_type == NETR_TRUST_TYPE_MIT) ||
1760                     (trusts->array[n].trust_type == NETR_TRUST_TYPE_DCE)) {
1761                         struct dom_sid zero_sid;
1762                         ZERO_STRUCT(zero_sid);
1763                         trusts->array[n].sid =
1764                                 dom_sid_dup(trusts, &zero_sid);
1765                 } else {
1766                         trusts->array[n].sid =
1767                                 samdb_result_dom_sid(trusts, dom_res[i],
1768                                                      "securityIdentifier");
1769                 }
1770                 trusts->array[n].guid = GUID_zero();
1771
1772                 trusts->count = n + 1;
1773         }
1774
1775         talloc_free(dom_res);
1776         return WERR_OK;
1777 }
1778
1779 /*
1780   netr_DsrEnumerateDomainTrusts
1781 */
1782 static WERROR dcesrv_netr_DsrEnumerateDomainTrusts(struct dcesrv_call_state *dce_call,
1783                                                    TALLOC_CTX *mem_ctx,
1784                                                    struct netr_DsrEnumerateDomainTrusts *r)
1785 {
1786         struct netr_DomainTrustList *trusts;
1787         struct ldb_context *sam_ctx;
1788         int ret;
1789         struct ldb_message **dom_res;
1790         const char * const dom_attrs[] = { "objectSid", "objectGUID", NULL };
1791         struct loadparm_context *lp_ctx = dce_call->conn->dce_ctx->lp_ctx;
1792         const char *dnsdomain = lp_dnsdomain(lp_ctx);
1793         const char *p;
1794         WERROR werr;
1795
1796         if (r->in.trust_flags & 0xFFFFFE00) {
1797                 return WERR_INVALID_FLAGS;
1798         }
1799
1800         /* TODO: turn to hard check once we are sure this is 100% correct */
1801         if (!r->in.server_name) {
1802                 DEBUG(3, ("Invalid domain! Expected name in domain [%s]. "
1803                           "But received NULL!\n", dnsdomain));
1804         } else {
1805                 p = strchr(r->in.server_name, '.');
1806                 if (!p) {
1807                         DEBUG(3, ("Invalid domain! Expected name in domain "
1808                                   "[%s]. But received [%s]!\n",
1809                                   dnsdomain, r->in.server_name));
1810                         p = r->in.server_name;
1811                 } else {
1812                         p++;
1813                 }
1814                 if (strcasecmp(p, dnsdomain)) {
1815                         DEBUG(3, ("Invalid domain! Expected name in domain "
1816                                   "[%s]. But received [%s]!\n",
1817                                   dnsdomain, r->in.server_name));
1818                 }
1819         }
1820
1821         trusts = talloc_zero(mem_ctx, struct netr_DomainTrustList);
1822         W_ERROR_HAVE_NO_MEMORY(trusts);
1823
1824         trusts->count = 0;
1825         r->out.trusts = trusts;
1826
1827         sam_ctx = samdb_connect(mem_ctx, dce_call->event_ctx, lp_ctx,
1828                                 dce_call->conn->auth_state.session_info);
1829         if (sam_ctx == NULL) {
1830                 return WERR_GENERAL_FAILURE;
1831         }
1832
1833         if ((r->in.trust_flags & NETR_TRUST_FLAG_INBOUND) ||
1834             (r->in.trust_flags & NETR_TRUST_FLAG_OUTBOUND)) {
1835
1836                 werr = fill_trusted_domains_array(mem_ctx, sam_ctx,
1837                                                   trusts, r->in.trust_flags);
1838                 W_ERROR_NOT_OK_RETURN(werr);
1839         }
1840
1841         /* NOTE: we currently are always the root of the forest */
1842         if (r->in.trust_flags & NETR_TRUST_FLAG_IN_FOREST) {
1843                 int n = trusts->count;
1844
1845                 ret = gendb_search_dn(sam_ctx, mem_ctx, NULL,
1846                                       &dom_res, dom_attrs);
1847                 if (ret != 1) {
1848                         return WERR_GENERAL_FAILURE;
1849                 }
1850
1851                 trusts->count = n + 1;
1852                 trusts->array = talloc_realloc(trusts, trusts->array,
1853                                                struct netr_DomainTrust,
1854                                                trusts->count);
1855                 W_ERROR_HAVE_NO_MEMORY(trusts->array);
1856
1857                 trusts->array[n].netbios_name = lp_workgroup(lp_ctx);
1858                 trusts->array[n].dns_name = lp_dnsdomain(lp_ctx);
1859                 trusts->array[n].trust_flags =
1860                         NETR_TRUST_FLAG_NATIVE |
1861                         NETR_TRUST_FLAG_TREEROOT |
1862                         NETR_TRUST_FLAG_IN_FOREST |
1863                         NETR_TRUST_FLAG_PRIMARY;
1864                 /* we are always the root domain for now */
1865                 trusts->array[n].parent_index = 0;
1866                 trusts->array[n].trust_type = NETR_TRUST_TYPE_UPLEVEL;
1867                 trusts->array[n].trust_attributes = 0;
1868                 trusts->array[n].sid = samdb_result_dom_sid(mem_ctx,
1869                                                             dom_res[0],
1870                                                             "objectSid");
1871                 trusts->array[n].guid = samdb_result_guid(dom_res[0],
1872                                                           "objectGUID");
1873                 talloc_free(dom_res);
1874         }
1875
1876         return WERR_OK;
1877 }
1878
1879
1880 /*
1881   netr_DsrDeregisterDNSHostRecords
1882 */
1883 static WERROR dcesrv_netr_DsrDeregisterDNSHostRecords(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
1884                        struct netr_DsrDeregisterDNSHostRecords *r)
1885 {
1886         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
1887 }
1888
1889
1890 /*
1891   netr_ServerTrustPasswordsGet
1892 */
1893 static NTSTATUS dcesrv_netr_ServerTrustPasswordsGet(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
1894                        struct netr_ServerTrustPasswordsGet *r)
1895 {
1896         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
1897 }
1898
1899
1900 static WERROR fill_forest_trust_array(TALLOC_CTX *mem_ctx,
1901                                       struct ldb_context *sam_ctx,
1902                                       struct loadparm_context *lp_ctx,
1903                                       struct lsa_ForestTrustInformation *info)
1904 {
1905         struct lsa_ForestTrustDomainInfo *domain_info;
1906         struct lsa_ForestTrustRecord *e;
1907         struct ldb_message **dom_res;
1908         const char * const dom_attrs[] = { "objectSid", NULL };
1909         int ret;
1910
1911         /* we need to provide 2 entries:
1912          * 1. the Root Forest name
1913          * 2. the Domain Information
1914          */
1915
1916         info->count = 2;
1917         info->entries = talloc_array(info, struct lsa_ForestTrustRecord *, 2);
1918         W_ERROR_HAVE_NO_MEMORY(info->entries);
1919
1920         /* Forest root info */
1921         e = talloc(info, struct lsa_ForestTrustRecord);
1922         W_ERROR_HAVE_NO_MEMORY(e);
1923
1924         e->flags = 0;
1925         e->type = LSA_FOREST_TRUST_TOP_LEVEL_NAME;
1926         e->time = 0; /* so far always 0 in trces. */
1927         e->forest_trust_data.top_level_name.string = lp_dnsdomain(lp_ctx);
1928
1929         info->entries[0] = e;
1930
1931         /* Domain info */
1932         e = talloc(info, struct lsa_ForestTrustRecord);
1933         W_ERROR_HAVE_NO_MEMORY(e);
1934
1935         /* get our own domain info */
1936         ret = gendb_search_dn(sam_ctx, mem_ctx, NULL, &dom_res, dom_attrs);
1937         if (ret != 1) {
1938                 return WERR_GENERAL_FAILURE;
1939         }
1940
1941         /* TODO: check if disabled and set flags accordingly */
1942         e->flags = 0;
1943         e->type = LSA_FOREST_TRUST_DOMAIN_INFO;
1944         e->time = 0; /* so far always 0 in traces. */
1945
1946         domain_info = &e->forest_trust_data.domain_info;
1947         domain_info->domain_sid = samdb_result_dom_sid(info, dom_res[0],
1948                                                        "objectSid");
1949         domain_info->dns_domain_name.string = lp_dnsdomain(lp_ctx);
1950         domain_info->netbios_domain_name.string = lp_workgroup(lp_ctx);
1951
1952         info->entries[1] = e;
1953
1954         talloc_free(dom_res);
1955
1956         return WERR_OK;
1957 }
1958
1959 /*
1960   netr_DsRGetForestTrustInformation
1961 */
1962 static WERROR dcesrv_netr_DsRGetForestTrustInformation(struct dcesrv_call_state *dce_call,
1963                                                        TALLOC_CTX *mem_ctx,
1964                                                        struct netr_DsRGetForestTrustInformation *r)
1965 {
1966         struct loadparm_context *lp_ctx = dce_call->conn->dce_ctx->lp_ctx;
1967         struct lsa_ForestTrustInformation *info, **info_ptr;
1968         struct ldb_context *sam_ctx;
1969         WERROR werr;
1970
1971         if (lp_server_role(lp_ctx) != ROLE_DOMAIN_CONTROLLER) {
1972                 return WERR_CALL_NOT_IMPLEMENTED;
1973         }
1974
1975         if (r->in.flags & 0xFFFFFFFE) {
1976                 return WERR_INVALID_FLAGS;
1977         }
1978
1979         sam_ctx = samdb_connect(mem_ctx, dce_call->event_ctx, lp_ctx,
1980                                 dce_call->conn->auth_state.session_info);
1981         if (sam_ctx == NULL) {
1982                 return WERR_GENERAL_FAILURE;
1983         }
1984
1985         if (r->in.flags & DS_GFTI_UPDATE_TDO) {
1986                 if (!samdb_is_pdc(sam_ctx)) {
1987                         return WERR_NERR_NOTPRIMARY;
1988                 }
1989
1990                 if (r->in.trusted_domain_name == NULL) {
1991                         return WERR_INVALID_FLAGS;
1992                 }
1993
1994                 /* TODO: establish an schannel connection with
1995                  * r->in.trusted_domain_name and perform a
1996                  * netr_GetForestTrustInformation call against it */
1997
1998                 /* for now return not implementd */
1999                 return WERR_CALL_NOT_IMPLEMENTED;
2000         }
2001
2002         /* TODO: check r->in.server_name is our name */
2003
2004         info_ptr = talloc(mem_ctx, struct lsa_ForestTrustInformation *);
2005         W_ERROR_HAVE_NO_MEMORY(info_ptr);
2006
2007         info = talloc_zero(info_ptr, struct lsa_ForestTrustInformation);
2008         W_ERROR_HAVE_NO_MEMORY(info);
2009
2010         werr = fill_forest_trust_array(mem_ctx, sam_ctx, lp_ctx, info);
2011         W_ERROR_NOT_OK_RETURN(werr);
2012
2013         *info_ptr = info;
2014         r->out.forest_trust_info = info_ptr;
2015
2016         return WERR_OK;
2017 }
2018
2019
2020 /*
2021   netr_GetForestTrustInformation
2022 */
2023 static NTSTATUS dcesrv_netr_GetForestTrustInformation(struct dcesrv_call_state *dce_call,
2024                                                       TALLOC_CTX *mem_ctx,
2025                                                       struct netr_GetForestTrustInformation *r)
2026 {
2027         struct loadparm_context *lp_ctx = dce_call->conn->dce_ctx->lp_ctx;
2028         struct netlogon_creds_CredentialState *creds;
2029         struct lsa_ForestTrustInformation *info, **info_ptr;
2030         struct ldb_context *sam_ctx;
2031         NTSTATUS status;
2032         WERROR werr;
2033
2034         if (lp_server_role(lp_ctx) != ROLE_DOMAIN_CONTROLLER) {
2035                 return NT_STATUS_NOT_IMPLEMENTED;
2036         }
2037
2038         status = dcesrv_netr_creds_server_step_check(dce_call,
2039                                                      mem_ctx,
2040                                                      r->in.computer_name,
2041                                                      r->in.credential,
2042                                                      r->out.return_authenticator,
2043                                                      &creds);
2044         if (!NT_STATUS_IS_OK(status)) {
2045                 return status;
2046         }
2047
2048         if ((creds->secure_channel_type != SEC_CHAN_DNS_DOMAIN) &&
2049             (creds->secure_channel_type != SEC_CHAN_DOMAIN)) {
2050                 return NT_STATUS_NOT_IMPLEMENTED;
2051         }
2052
2053         sam_ctx = samdb_connect(mem_ctx, dce_call->event_ctx, lp_ctx,
2054                                 dce_call->conn->auth_state.session_info);
2055         if (sam_ctx == NULL) {
2056                 return NT_STATUS_UNSUCCESSFUL;
2057         }
2058
2059         /* TODO: check r->in.server_name is our name */
2060
2061         info_ptr = talloc(mem_ctx, struct lsa_ForestTrustInformation *);
2062         if (!info_ptr) {
2063                 return NT_STATUS_NO_MEMORY;
2064         }
2065         info = talloc_zero(info_ptr, struct lsa_ForestTrustInformation);
2066         if (!info) {
2067                 return NT_STATUS_NO_MEMORY;
2068         }
2069
2070         werr = fill_forest_trust_array(mem_ctx, sam_ctx, lp_ctx, info);
2071         if (!W_ERROR_IS_OK(werr)) {
2072                 return werror_to_ntstatus(werr);
2073         }
2074
2075         *info_ptr = info;
2076         r->out.forest_trust_info = info_ptr;
2077
2078         return NT_STATUS_OK;
2079 }
2080
2081
2082 /*
2083   netr_ServerGetTrustInfo
2084 */
2085 static NTSTATUS dcesrv_netr_ServerGetTrustInfo(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
2086                        struct netr_ServerGetTrustInfo *r)
2087 {
2088         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
2089 }
2090
2091
2092 /* include the generated boilerplate */
2093 #include "librpc/gen_ndr/ndr_netlogon_s.c"