r1145: added server support for logon level 5 in sam logon
[nivanova/samba-autobuild/.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
7    
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 2 of the License, or
11    (at your option) any later version.
12    
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17    
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23 #include "includes.h"
24 #include "rpc_server/common/common.h"
25
26 struct server_pipe_state {
27         TALLOC_CTX *mem_ctx;
28         struct netr_Credential client_challenge;
29         struct netr_Credential server_challenge;
30         BOOL authenticated;
31         char *account_name;
32         char *computer_name;  /* for logging only */
33         uint32_t acct_flags;
34         uint16_t sec_chan_type;
35         struct creds_CredentialState *creds;
36 };
37
38
39 /*
40   a client has connected to the netlogon server using schannel, so we need
41   to re-establish the credentials state
42 */
43 static NTSTATUS netlogon_schannel_setup(struct dcesrv_call_state *dce_call) 
44 {
45         struct server_pipe_state *state;
46         NTSTATUS status;
47         TALLOC_CTX *mem_ctx;
48
49         mem_ctx = talloc_init("netlogon_bind");
50         if (!mem_ctx) {
51                 return NT_STATUS_NO_MEMORY;
52         }
53         state = talloc_p(mem_ctx, struct server_pipe_state);
54         if (state == NULL) {
55                 talloc_destroy(mem_ctx);
56         }
57         ZERO_STRUCTP(state);
58         state->mem_ctx = mem_ctx;
59         state->authenticated = True;
60         
61         state->creds = talloc_p(mem_ctx, struct creds_CredentialState);
62         if (state->creds == NULL) {
63                 talloc_destroy(mem_ctx);
64                 return NT_STATUS_NO_MEMORY;
65         }
66         ZERO_STRUCTP(state->creds);
67         
68         if (dce_call->conn->auth_state.session_info == NULL) {
69                 talloc_destroy(mem_ctx);
70                 return NT_STATUS_NO_USER_SESSION_KEY;
71         }
72         
73         status = schannel_fetch_session_key(mem_ctx, 
74                                             dce_call->conn->auth_state.session_info->workstation, 
75                                             state->creds);
76         if (!NT_STATUS_IS_OK(status)) {
77                 talloc_destroy(mem_ctx);
78                 return status;
79         }
80         
81         dce_call->conn->private = state;
82
83         return NT_STATUS_OK;
84 }
85
86 /*
87   a hook for bind on the netlogon pipe
88 */
89 static NTSTATUS netlogon_bind(struct dcesrv_call_state *dce_call, const struct dcesrv_interface *di) 
90 {
91         dce_call->conn->private = NULL;
92
93         /* if this is a schannel bind then we need to reconstruct the pipe state */
94         if (dce_call->conn->auth_state.auth_info &&
95             dce_call->conn->auth_state.auth_info->auth_type == DCERPC_AUTH_TYPE_SCHANNEL) {
96                 NTSTATUS status;
97
98                 status = netlogon_schannel_setup(dce_call);
99                 if (!NT_STATUS_IS_OK(status)) {
100                         return status;
101                 }
102         }
103
104         return NT_STATUS_OK;
105 }
106
107 /* this function is called when the client disconnects the endpoint */
108 static void netlogon_unbind(struct dcesrv_connection *conn, const struct dcesrv_interface *di) 
109 {
110         struct server_pipe_state *pipe_state = conn->private;
111
112         if (pipe_state) {
113                 talloc_destroy(pipe_state->mem_ctx);
114         }
115
116         conn->private = NULL;
117 }
118
119 #define DCESRV_INTERFACE_NETLOGON_BIND netlogon_bind
120 #define DCESRV_INTERFACE_NETLOGON_UNBIND netlogon_unbind
121
122 static NTSTATUS netr_ServerReqChallenge(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
123                                         struct netr_ServerReqChallenge *r)
124 {
125         struct server_pipe_state *pipe_state = dce_call->conn->private;
126         TALLOC_CTX *pipe_mem_ctx;
127
128         ZERO_STRUCTP(r->out.credentials);
129
130         /* destroyed on pipe shutdown */
131
132         if (pipe_state) {
133                 talloc_destroy(pipe_state->mem_ctx);
134                 dce_call->conn->private = NULL;
135         }
136         
137         pipe_mem_ctx = talloc_init("internal netlogon pipe state for %s", 
138                                    r->in.computer_name);
139         
140         if (!pipe_mem_ctx) {
141                 return NT_STATUS_NO_MEMORY;
142         }
143
144         pipe_state = talloc_p(pipe_mem_ctx, struct server_pipe_state);
145         if (!pipe_state) {
146                 talloc_destroy(pipe_mem_ctx);
147                 return NT_STATUS_NO_MEMORY;
148         }
149
150         pipe_state->mem_ctx = pipe_mem_ctx;
151         pipe_state->authenticated = False;
152         pipe_state->creds = NULL;
153         pipe_state->account_name = NULL;
154         pipe_state->computer_name = NULL;
155
156         pipe_state->client_challenge = *r->in.credentials;
157
158         generate_random_buffer(pipe_state->server_challenge.data, 
159                                sizeof(pipe_state->server_challenge.data),
160                                False);
161
162         *r->out.credentials = pipe_state->server_challenge;
163
164         dce_call->conn->private = pipe_state;
165
166         return NT_STATUS_OK;
167 }
168
169 static NTSTATUS netr_ServerAuthenticate3(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
170                                          struct netr_ServerAuthenticate3 *r)
171 {
172         struct server_pipe_state *pipe_state = dce_call->conn->private;
173         void *sam_ctx;
174         struct samr_Password *mach_pwd;
175         uint16_t acct_flags;
176         int num_records;
177         struct ldb_message **msgs;
178         NTSTATUS nt_status;
179         const char *attrs[] = {"unicodePwd", "lmPwdHash", "ntPwdHash", "userAccountControl", 
180                                "objectSid", NULL};
181
182         ZERO_STRUCTP(r->out.credentials);
183         *r->out.rid = 0;
184         *r->out.negotiate_flags = *r->in.negotiate_flags;
185
186         if (!pipe_state) {
187                 DEBUG(1, ("No challenge requested by client, cannot authenticate\n"));
188                 return NT_STATUS_ACCESS_DENIED;
189         }
190
191         sam_ctx = samdb_connect();
192         if (sam_ctx == NULL) {
193                 return NT_STATUS_INVALID_SYSTEM_SERVICE;
194         }
195         /* pull the user attributes */
196         num_records = samdb_search(sam_ctx, mem_ctx, NULL, &msgs, attrs,
197                                    "(&(sAMAccountName=%s)(objectclass=user))", 
198                                    r->in.account_name);
199
200         if (num_records == 0) {
201                 DEBUG(3,("Couldn't find user [%s] in samdb.\n", 
202                          r->in.account_name));
203                 samdb_close(sam_ctx);
204                 return NT_STATUS_NO_SUCH_USER;
205         }
206
207         if (num_records > 1) {
208                 DEBUG(1,("Found %d records matching user [%s]\n", num_records, r->in.account_name));
209                 samdb_close(sam_ctx);
210                 return NT_STATUS_INTERNAL_DB_CORRUPTION;
211         }
212
213         acct_flags = samdb_result_acct_flags(msgs[0], 
214                                              "userAccountControl");
215
216         if (acct_flags & ACB_DISABLED) {
217                 DEBUG(1, ("Account [%s] is disabled\n", r->in.account_name));
218                 return NT_STATUS_ACCESS_DENIED;
219         }
220
221         if (r->in.secure_channel_type == SEC_CHAN_WKSTA) {
222                 if (!(acct_flags & ACB_WSTRUST)) {
223                         DEBUG(1, ("Client asked for a workstation secure channel, but is not a workstation (member server) acb flags: 0x%x\n", acct_flags));
224                         return NT_STATUS_ACCESS_DENIED;
225                 }
226         } else if (r->in.secure_channel_type == SEC_CHAN_DOMAIN) {
227                 if (!(acct_flags & ACB_DOMTRUST)) {
228                         DEBUG(1, ("Client asked for a trusted domain secure channel, but is not a trusted domain: acb flags: 0x%x\n", acct_flags));
229                         return NT_STATUS_ACCESS_DENIED;
230                 }
231         } else if (r->in.secure_channel_type == SEC_CHAN_BDC) {
232                 if (!(acct_flags & ACB_SVRTRUST)) {
233                         DEBUG(1, ("Client asked for a server secure channel, but is not a server (domain controller): acb flags: 0x%x\n", acct_flags));
234                         return NT_STATUS_ACCESS_DENIED;
235                 }
236         } else {
237                 DEBUG(1, ("Client asked for an invalid secure channel type: %d\n", 
238                           r->in.secure_channel_type));
239                 return NT_STATUS_ACCESS_DENIED;
240         }
241
242         pipe_state->acct_flags = acct_flags;
243         pipe_state->sec_chan_type = r->in.secure_channel_type;
244
245         *r->out.rid = samdb_result_rid_from_sid(mem_ctx, msgs[0], "objectSid", 0);
246
247         nt_status = samdb_result_passwords(mem_ctx, msgs[0], NULL, &mach_pwd);
248         if (!NT_STATUS_IS_OK(nt_status) || mach_pwd == NULL) {
249                 samdb_close(sam_ctx);
250                 return NT_STATUS_ACCESS_DENIED;
251         }
252
253         samdb_close(sam_ctx);
254
255         if (!pipe_state->creds) {
256                 pipe_state->creds = talloc_p(pipe_state->mem_ctx, struct creds_CredentialState);
257                 if (!pipe_state->creds) {
258                         return NT_STATUS_NO_MEMORY;
259                 }
260         }
261
262         creds_server_init(pipe_state->creds, &pipe_state->client_challenge, 
263                           &pipe_state->server_challenge, mach_pwd,
264                           r->out.credentials,
265                           *r->in.negotiate_flags);
266         
267         if (!creds_server_check(pipe_state->creds, r->in.credentials)) {
268                 return NT_STATUS_ACCESS_DENIED;
269         }
270
271         pipe_state->authenticated = True;
272
273         if (pipe_state->account_name) {
274                 /* We don't want a memory leak on this long-lived talloc context */
275                 talloc_free(pipe_state->mem_ctx, pipe_state->account_name);
276         }
277
278         pipe_state->account_name = talloc_strdup(pipe_state->mem_ctx, r->in.account_name);
279         
280         if (pipe_state->computer_name) {
281                 /* We don't want a memory leak on this long-lived talloc context */
282                 talloc_free(pipe_state->mem_ctx, pipe_state->account_name);
283         }
284
285         pipe_state->computer_name = talloc_strdup(pipe_state->mem_ctx, r->in.computer_name);
286
287         /* remember this session key state */
288         nt_status = schannel_store_session_key(mem_ctx, pipe_state->computer_name, pipe_state->creds);
289
290         return nt_status;
291 }
292                                                  
293 static NTSTATUS netr_ServerAuthenticate(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
294                                         struct netr_ServerAuthenticate *r)
295 {
296         struct netr_ServerAuthenticate3 r3;
297         uint32 negotiate_flags, rid;
298
299         r3.in.server_name = r->in.server_name;
300         r3.in.account_name = r->in.account_name;
301         r3.in.secure_channel_type = r->in.secure_channel_type;
302         r3.in.computer_name = r->in.computer_name;
303         r3.in.credentials = r->in.credentials;
304         r3.out.credentials = r->out.credentials;
305         r3.in.negotiate_flags = &negotiate_flags;
306         r3.out.negotiate_flags = &negotiate_flags;
307         r3.out.rid = &rid;
308         
309         return netr_ServerAuthenticate3(dce_call, mem_ctx, &r3);
310 }
311
312 static NTSTATUS netr_ServerAuthenticate2(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
313                                          struct netr_ServerAuthenticate2 *r)
314 {
315         struct netr_ServerAuthenticate3 r3;
316         uint32 rid;
317
318         r3.in.server_name = r->in.server_name;
319         r3.in.account_name = r->in.account_name;
320         r3.in.secure_channel_type = r->in.secure_channel_type;
321         r3.in.computer_name = r->in.computer_name;
322         r3.in.credentials = r->in.credentials;
323         r3.out.credentials = r->out.credentials;
324         r3.in.negotiate_flags = r->in.negotiate_flags;
325         r3.out.negotiate_flags = r->out.negotiate_flags;
326         r3.out.rid = &rid;
327         
328         return netr_ServerAuthenticate3(dce_call, mem_ctx, &r3);
329 }
330
331
332 static BOOL netr_creds_server_step_check(struct server_pipe_state *pipe_state,
333                                          struct netr_Authenticator *received_authenticator,
334                                          struct netr_Authenticator *return_authenticator) 
335 {
336         if (!pipe_state->authenticated) {
337                 return False;
338         }
339         return creds_server_step_check(pipe_state->creds, 
340                                        received_authenticator, 
341                                        return_authenticator);
342 }
343
344
345 static NTSTATUS netr_ServerPasswordSet(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
346                                        struct netr_ServerPasswordSet *r)
347 {
348         struct server_pipe_state *pipe_state = dce_call->conn->private;
349
350         void *sam_ctx;
351         int num_records;
352         int num_records_domain;
353         int ret;
354         struct ldb_message **msgs;
355         struct ldb_message **msgs_domain;
356         NTSTATUS nt_status;
357         struct ldb_message mod, *msg_set_pw = &mod;
358         const char *domain_dn;
359         const char *domain_sid;
360
361         const char *attrs[] = {"objectSid", NULL };
362
363         const char **domain_attrs = attrs;
364         ZERO_STRUCT(mod);
365
366         if (!pipe_state) {
367                 DEBUG(1, ("No challenge requested by client, cannot authenticate\n"));
368                 return NT_STATUS_ACCESS_DENIED;
369         }
370
371         if (!netr_creds_server_step_check(pipe_state, &r->in.credential, &r->out.return_authenticator)) {
372                 return NT_STATUS_ACCESS_DENIED;
373         }
374
375         sam_ctx = samdb_connect();
376         if (sam_ctx == NULL) {
377                 return NT_STATUS_INVALID_SYSTEM_SERVICE;
378         }
379         /* pull the user attributes */
380         num_records = samdb_search(sam_ctx, mem_ctx, NULL, &msgs, attrs,
381                                    "(&(sAMAccountName=%s)(objectclass=user))", 
382                                    pipe_state->account_name);
383
384         if (num_records == 0) {
385                 DEBUG(3,("Couldn't find user [%s] in samdb.\n", 
386                          pipe_state->account_name));
387                 samdb_close(sam_ctx);
388                 return NT_STATUS_NO_SUCH_USER;
389         }
390
391         if (num_records > 1) {
392                 DEBUG(1,("Found %d records matching user [%s]\n", num_records, 
393                          pipe_state->account_name));
394                 samdb_close(sam_ctx);
395                 return NT_STATUS_INTERNAL_DB_CORRUPTION;
396         }
397
398         domain_sid = samdb_result_sid_prefix(mem_ctx, msgs[0], "objectSid");
399         if (!domain_sid) {
400                 samdb_close(sam_ctx);
401                 DEBUG(1,("no objectSid in user record\n"));
402                 return NT_STATUS_INTERNAL_DB_CORRUPTION;
403         }
404
405         /* find the domain's DN */
406         num_records_domain = samdb_search(sam_ctx, mem_ctx, NULL, 
407                                           &msgs_domain, domain_attrs,
408                                           "(&(objectSid=%s)(objectclass=domain))", 
409                                           domain_sid);
410
411         if (num_records_domain == 0) {
412                 DEBUG(3,("check_sam_security: Couldn't find domain [%s] in passdb file.\n", 
413                          domain_sid));
414                 samdb_close(sam_ctx);
415                 return NT_STATUS_NO_SUCH_USER;
416         }
417
418         if (num_records_domain > 1) {
419                 DEBUG(1,("Found %d records matching domain [%s]\n", 
420                          num_records_domain, domain_sid));
421                 samdb_close(sam_ctx);
422                 return NT_STATUS_INTERNAL_DB_CORRUPTION;
423         }
424
425         domain_dn = msgs_domain[0]->dn;
426         
427         mod.dn = talloc_strdup(mem_ctx, msgs[0]->dn);
428         if (!mod.dn) {
429                 samdb_close(sam_ctx);
430                 return NT_STATUS_NO_MEMORY;
431         }
432         
433         creds_des_decrypt(pipe_state->creds, &r->in.new_password);
434
435         /* set the password - samdb needs to know both the domain and user DNs,
436            so the domain password policy can be used */
437         nt_status = samdb_set_password(sam_ctx, mem_ctx,
438                                        msgs[0]->dn, domain_dn,
439                                        msg_set_pw, 
440                                        NULL, /* Don't have plaintext */
441                                        NULL, &r->in.new_password,
442                                        False /* This is not considered a password change */,
443                                        NULL);
444         
445         if (!NT_STATUS_IS_OK(nt_status)) {
446                 samdb_close(sam_ctx);
447                 return nt_status;
448         }
449
450         ret = samdb_replace(sam_ctx, mem_ctx, msg_set_pw);
451         if (ret != 0) {
452                 /* we really need samdb.c to return NTSTATUS */
453
454                 samdb_close(sam_ctx);
455                 return NT_STATUS_UNSUCCESSFUL;
456         }
457
458         samdb_close(sam_ctx);
459         return NT_STATUS_OK;
460 }
461
462
463 /* 
464   netr_LogonUasLogon 
465 */
466 static WERROR netr_LogonUasLogon(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
467                                  struct netr_LogonUasLogon *r)
468 {
469         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
470 }
471
472
473 /* 
474   netr_LogonUasLogoff 
475 */
476 static WERROR netr_LogonUasLogoff(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
477                        struct netr_LogonUasLogoff *r)
478 {
479         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
480 }
481
482
483 /* 
484   netr_LogonSamLogonWithFlags
485
486 */
487 static NTSTATUS netr_LogonSamLogonWithFlags(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
488                                             struct netr_LogonSamLogonWithFlags *r)
489 {
490         struct server_pipe_state *pipe_state = dce_call->conn->private;
491
492         struct auth_context *auth_context;
493         struct auth_usersupplied_info *user_info;
494         struct auth_serversupplied_info *server_info;
495         NTSTATUS nt_status;
496         const uint8_t *chal;
497         static const char zeros[16];
498         struct netr_SamBaseInfo *sam;
499         struct netr_SamInfo2 *sam2;
500         struct netr_SamInfo3 *sam3;
501         struct netr_SamInfo6 *sam6;
502         
503         if (!pipe_state) {
504                 DEBUG(1, ("No challenge requested by client, cannot authenticate\n"));
505                 return NT_STATUS_ACCESS_DENIED;
506         }
507
508         r->out.return_authenticator = talloc_p(mem_ctx, struct netr_Authenticator);
509         if (!r->out.return_authenticator) {
510                 return NT_STATUS_NO_MEMORY;
511         }
512
513         if (!netr_creds_server_step_check(pipe_state, r->in.credential, r->out.return_authenticator)) {
514                 return NT_STATUS_ACCESS_DENIED;
515         }
516
517         switch (r->in.logon_level) {
518         case 1:
519         case 3:
520         case 5:
521                 creds_arcfour_crypt(pipe_state->creds, 
522                                     r->in.logon.password->lmpassword.hash, 
523                                     sizeof(r->in.logon.password->lmpassword.hash));
524                 creds_arcfour_crypt(pipe_state->creds, 
525                                     r->in.logon.password->ntpassword.hash, 
526                                     sizeof(r->in.logon.password->ntpassword.hash));
527
528                 nt_status = make_auth_context_subsystem(&auth_context);
529                 if (!NT_STATUS_IS_OK(nt_status)) {
530                         return nt_status;
531                 }
532
533                 chal = auth_context->get_ntlm_challenge(auth_context);
534                 nt_status = make_user_info_netlogon_interactive(&user_info,
535                                                                 r->in.logon.password->identity_info.account_name.string,
536                                                                 r->in.logon.password->identity_info.domain_name.string,
537                                                                 r->in.logon.password->identity_info.workstation.string,
538                                                                 chal,
539                                                                 &r->in.logon.password->lmpassword,
540                                                                 &r->in.logon.password->ntpassword);
541                 break;
542                 
543         case 2:
544         case 6:
545                 nt_status = make_auth_context_fixed(&auth_context, r->in.logon.network->challenge);
546                 if (!NT_STATUS_IS_OK(nt_status)) {
547                         return nt_status;
548                 }
549
550                 nt_status = make_user_info_netlogon_network(&user_info,
551                                                             r->in.logon.network->identity_info.account_name.string,
552                                                             r->in.logon.network->identity_info.domain_name.string,
553                                                             r->in.logon.network->identity_info.workstation.string,
554                                                             r->in.logon.network->lm.data, r->in.logon.network->lm.length,
555                                                             r->in.logon.network->nt.data, r->in.logon.network->nt.length);
556                 break;
557         default:
558                 free_auth_context(&auth_context);
559                 return NT_STATUS_INVALID_PARAMETER;
560         }
561         
562         if (!NT_STATUS_IS_OK(nt_status)) {
563                 return nt_status;
564         }
565
566         nt_status = auth_context->check_ntlm_password(auth_context,
567                                                       user_info, 
568                                                       &server_info);
569
570         if (!NT_STATUS_IS_OK(nt_status)) {
571                 free_auth_context(&auth_context);
572                 return nt_status;
573         }
574         free_auth_context(&auth_context);
575
576         sam = talloc_p(mem_ctx, struct netr_SamBaseInfo);
577
578         ZERO_STRUCTP(sam);
579         
580         sam->last_logon = server_info->last_logon;
581         sam->last_logoff = server_info->last_logoff;
582         sam->acct_expiry = server_info->acct_expiry;
583         sam->last_password_change = server_info->last_password_change;
584         sam->allow_password_change = server_info->allow_password_change;
585         sam->force_password_change = server_info->force_password_change;
586         
587         sam->account_name.string = talloc_strdup(mem_ctx, server_info->account_name);
588         sam->full_name.string = talloc_strdup(mem_ctx, server_info->full_name);
589         sam->logon_script.string = talloc_strdup(mem_ctx, server_info->account_name);
590         sam->profile_path.string = talloc_strdup(mem_ctx, server_info->profile_path);
591         sam->home_directory.string = talloc_strdup(mem_ctx, server_info->home_directory);
592         sam->home_drive.string = talloc_strdup(mem_ctx, server_info->home_drive);
593         
594         sam->logon_count = server_info->logon_count;
595         sam->bad_password_count = sam->bad_password_count;
596         sam->rid = server_info->user_sid->sub_auths[server_info->user_sid->num_auths-1];
597         sam->primary_gid = server_info->primary_group_sid->sub_auths[server_info->primary_group_sid->num_auths-1];
598         sam->group_count = 0;
599         sam->groupids = NULL;
600         
601         sam->acct_flags = server_info->acct_flags;
602         
603         sam->logon_server.string = lp_netbios_name();
604         
605         sam->domain.string = talloc_strdup(mem_ctx, server_info->domain);
606         
607         sam->domain_sid = dom_sid_dup(mem_ctx, server_info->user_sid);
608         sam->domain_sid->num_auths--;
609
610         sam->AccountControl = 0;
611         
612         if (server_info->user_session_key.length == sizeof(sam->key.key)) {
613                 memcpy(sam->key.key, server_info->user_session_key.data, sizeof(sam->key.key));
614         } else {
615                 ZERO_STRUCT(sam->key.key);
616         }
617         
618         /* Don't crypt an all-zero key, it would give away the NETLOGON pipe session key */
619         if (memcmp(sam->key.key, zeros,  
620                    sizeof(sam->key.key)) != 0) {
621                 creds_arcfour_crypt(pipe_state->creds, 
622                                     sam->key.key, 
623                                     sizeof(sam->key.key));
624         }
625         
626         if (server_info->lm_session_key.length == sizeof(sam->LMSessKey.key)) {
627                 memcpy(sam->LMSessKey.key, server_info->lm_session_key.data, 
628                        sizeof(sam->LMSessKey.key));
629         } else {
630                 ZERO_STRUCT(sam->LMSessKey.key);
631         }
632         
633         /* Don't crypt an all-zero key, it would give away the NETLOGON pipe session key */
634         if (memcmp(sam->LMSessKey.key, zeros,  
635                    sizeof(sam->LMSessKey.key)) != 0) {
636                 creds_arcfour_crypt(pipe_state->creds, 
637                                     sam->LMSessKey.key, 
638                                     sizeof(sam->LMSessKey.key));
639         }
640
641         switch (r->in.validation_level) {
642         case 2:
643                 sam2 = talloc_p(mem_ctx, struct netr_SamInfo2);
644                 ZERO_STRUCTP(sam2);
645                 sam2->base = *sam;
646                 r->out.validation.sam2 = sam2;
647                 break;
648
649         case 3:
650                 sam3 = talloc_p(mem_ctx, struct netr_SamInfo3);
651                 ZERO_STRUCTP(sam3);
652                 sam3->base = *sam;
653                 r->out.validation.sam3 = sam3;
654                 break;
655
656         case 6:
657                 sam6 = talloc_p(mem_ctx, struct netr_SamInfo6);
658                 ZERO_STRUCTP(sam6);
659                 sam6->base = *sam;
660                 sam6->forest.string = sam->domain.string;
661                 sam6->principle.string = talloc_asprintf(mem_ctx, "%s@%s", 
662                                                          sam->account_name.string, sam->domain.string);
663                 r->out.validation.sam6 = sam6;
664                 break;
665
666         default:
667                 break;
668         }
669
670         r->out.authoritative = 1;
671
672         return NT_STATUS_OK;
673 }
674
675 /* 
676   netr_LogonSamLogon
677 */
678 static NTSTATUS netr_LogonSamLogon(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
679                                    struct netr_LogonSamLogon *r)
680 {
681         struct netr_LogonSamLogonWithFlags r2;
682         NTSTATUS status;
683
684         ZERO_STRUCT(r2);
685
686         r2.in.server_name = r->in.server_name;
687         r2.in.workstation = r->in.workstation;
688         r2.in.credential  = r->in.credential;
689         r2.in.return_authenticator = r->in.return_authenticator;
690         r2.in.logon_level = r->in.logon_level;
691         r2.in.logon = r->in.logon;
692         r2.in.validation_level = r->in.validation_level;
693         r2.in.flags = 0;
694
695         status = netr_LogonSamLogonWithFlags(dce_call, mem_ctx, &r2);
696
697         r->out.return_authenticator = r2.out.return_authenticator;
698         r->out.validation = r2.out.validation;
699         r->out.authoritative = r2.out.authoritative;
700
701         return status;
702 }
703
704
705 /* 
706   netr_LogonSamLogoff 
707 */
708 static NTSTATUS netr_LogonSamLogoff(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
709                        struct netr_LogonSamLogoff *r)
710 {
711         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
712 }
713
714
715
716 /* 
717   netr_DatabaseDeltas 
718 */
719 static NTSTATUS netr_DatabaseDeltas(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
720                        struct netr_DatabaseDeltas *r)
721 {
722         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
723 }
724
725
726 /* 
727   netr_DatabaseSync 
728 */
729 static NTSTATUS netr_DatabaseSync(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
730                        struct netr_DatabaseSync *r)
731 {
732         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
733 }
734
735
736 /* 
737   netr_AccountDeltas 
738 */
739 static NTSTATUS netr_AccountDeltas(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
740                        struct netr_AccountDeltas *r)
741 {
742         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
743 }
744
745
746 /* 
747   netr_AccountSync 
748 */
749 static NTSTATUS netr_AccountSync(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
750                        struct netr_AccountSync *r)
751 {
752         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
753 }
754
755
756 /* 
757   netr_GetDcName 
758 */
759 static NTSTATUS netr_GetDcName(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
760                        struct netr_GetDcName *r)
761 {
762         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
763 }
764
765
766 /* 
767   netr_LogonControl 
768 */
769 static WERROR netr_LogonControl(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
770                        struct netr_LogonControl *r)
771 {
772         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
773 }
774
775
776 /* 
777   netr_GetAnyDCName 
778 */
779 static WERROR netr_GetAnyDCName(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
780                        struct netr_GetAnyDCName *r)
781 {
782         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
783 }
784
785
786 /* 
787   netr_LogonControl2 
788 */
789 static WERROR netr_LogonControl2(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
790                        struct netr_LogonControl2 *r)
791 {
792         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
793 }
794
795
796 /* 
797   netr_DatabaseSync2 
798 */
799 static NTSTATUS netr_DatabaseSync2(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
800                        struct netr_DatabaseSync2 *r)
801 {
802         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
803 }
804
805
806 /* 
807   netr_DatabaseRedo 
808 */
809 static NTSTATUS netr_DatabaseRedo(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
810                        struct netr_DatabaseRedo *r)
811 {
812         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
813 }
814
815
816 /* 
817   netr_LogonControl2Ex 
818 */
819 static WERROR netr_LogonControl2Ex(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
820                        struct netr_LogonControl2Ex *r)
821 {
822         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
823 }
824
825
826 /* 
827   netr_NETRENUMERATETRUSTEDDOMAINS 
828 */
829 static WERROR netr_NETRENUMERATETRUSTEDDOMAINS(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
830                        struct netr_NETRENUMERATETRUSTEDDOMAINS *r)
831 {
832         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
833 }
834
835
836 /* 
837   netr_DSRGETDCNAME 
838 */
839 static WERROR netr_DSRGETDCNAME(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
840                        struct netr_DSRGETDCNAME *r)
841 {
842         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
843 }
844
845
846 /* 
847   netr_NETRLOGONDUMMYROUTINE1 
848 */
849 static WERROR netr_NETRLOGONDUMMYROUTINE1(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
850                        struct netr_NETRLOGONDUMMYROUTINE1 *r)
851 {
852         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
853 }
854
855
856 /* 
857   netr_NETRLOGONSETSERVICEBITS 
858 */
859 static WERROR netr_NETRLOGONSETSERVICEBITS(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
860                        struct netr_NETRLOGONSETSERVICEBITS *r)
861 {
862         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
863 }
864
865
866 /* 
867   netr_NETRLOGONGETTRUSTRID 
868 */
869 static WERROR netr_NETRLOGONGETTRUSTRID(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
870                        struct netr_NETRLOGONGETTRUSTRID *r)
871 {
872         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
873 }
874
875
876 /* 
877   netr_NETRLOGONCOMPUTESERVERDIGEST 
878 */
879 static WERROR netr_NETRLOGONCOMPUTESERVERDIGEST(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
880                        struct netr_NETRLOGONCOMPUTESERVERDIGEST *r)
881 {
882         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
883 }
884
885
886 /* 
887   netr_NETRLOGONCOMPUTECLIENTDIGEST 
888 */
889 static WERROR netr_NETRLOGONCOMPUTECLIENTDIGEST(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
890                        struct netr_NETRLOGONCOMPUTECLIENTDIGEST *r)
891 {
892         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
893 }
894
895
896 /* 
897   netr_DSRGETDCNAMEX 
898 */
899 static WERROR netr_DSRGETDCNAMEX(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
900                        struct netr_DSRGETDCNAMEX *r)
901 {
902         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
903 }
904
905
906 /* 
907   netr_DSRGETSITENAME 
908 */
909 static WERROR netr_DSRGETSITENAME(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
910                        struct netr_DSRGETSITENAME *r)
911 {
912         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
913 }
914
915
916 /*
917   fill in a netr_DomainTrustInfo from a ldb search result
918 */
919 static NTSTATUS fill_domain_trust_info(TALLOC_CTX *mem_ctx, struct ldb_message *res,
920                                        struct netr_DomainTrustInfo *info)
921 {
922         ZERO_STRUCTP(info);
923         
924         info->domainname.string = samdb_result_string(res, "flatName", NULL);
925         if (info->domainname.string == NULL) {
926                 info->domainname.string = samdb_result_string(res, "name", NULL);
927                 info->fulldomainname.string = samdb_result_string(res, "dnsDomain", NULL);
928         } else {
929                 info->fulldomainname.string = samdb_result_string(res, "name", NULL);
930         }
931
932         /* TODO: we need proper forest support */
933         info->forest.string = info->fulldomainname.string;
934
935         info->guid = samdb_result_guid(res, "objectGUID");
936         info->sid = samdb_result_dom_sid(mem_ctx, res, "objectSid");
937
938         return NT_STATUS_OK;
939 }
940
941 /* 
942   netr_LogonGetDomainInfo
943   this is called as part of the ADS domain logon procedure.
944 */
945 static NTSTATUS netr_LogonGetDomainInfo(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
946                                         struct netr_LogonGetDomainInfo *r)
947 {
948         struct server_pipe_state *pipe_state = dce_call->conn->private;
949         const char * const attrs[] = { "name", "dnsDomain", "objectSid", 
950                                        "objectGUID", "flatName", NULL };
951         void *sam_ctx;
952         struct ldb_message **res1, **res2;
953         struct netr_DomainInfo1 *info1;
954         int ret1, ret2, i;
955         NTSTATUS status;
956
957         if (!pipe_state) {
958                 return NT_STATUS_ACCESS_DENIED;
959         }
960
961         if (!netr_creds_server_step_check(pipe_state, 
962                                           r->in.credential, r->out.credential)) {
963                 return NT_STATUS_ACCESS_DENIED;
964         }
965
966         sam_ctx = samdb_connect();
967         if (sam_ctx == NULL) {
968                 return NT_STATUS_INVALID_SYSTEM_SERVICE;
969         }
970
971         /* we need to do two searches. The first will pull our primary
972            domain and the second will pull any trusted domains. Our
973            primary domain is also a "trusted" domain, so we need to
974            put the primary domain into the lists of returned trusts as
975            well */
976         ret1 = samdb_search(sam_ctx, mem_ctx, NULL, &res1, attrs, "(objectClass=domainDNS)");
977         if (ret1 != 1) {
978                 samdb_close(sam_ctx);
979                 return NT_STATUS_INTERNAL_DB_CORRUPTION;
980         }
981
982         ret2 = samdb_search(sam_ctx, mem_ctx, NULL, &res2, attrs, "(objectClass=trustedDomain)");
983         if (ret2 == -1) {
984                 samdb_close(sam_ctx);
985                 return NT_STATUS_INTERNAL_DB_CORRUPTION;
986         }
987
988         /* we don't need the db link any more */
989         samdb_close(sam_ctx);
990
991         info1 = talloc_p(mem_ctx, struct netr_DomainInfo1);
992         if (info1 == NULL) {
993                 return NT_STATUS_NO_MEMORY;
994         }
995
996         ZERO_STRUCTP(info1);
997
998         info1->num_trusts = ret2 + 1;
999         info1->trusts = talloc_array_p(mem_ctx, struct netr_DomainTrustInfo, 
1000                                        info1->num_trusts);
1001         if (info1->trusts == NULL) {
1002                 return NT_STATUS_NO_MEMORY;
1003         }
1004
1005         status = fill_domain_trust_info(mem_ctx, res1[0], &info1->domaininfo);
1006         if (!NT_STATUS_IS_OK(status)) {
1007                 return status;
1008         }
1009
1010         status = fill_domain_trust_info(mem_ctx, res1[0], &info1->trusts[0]);
1011         if (!NT_STATUS_IS_OK(status)) {
1012                 return status;
1013         }
1014
1015         for (i=0;i<ret2;i++) {
1016                 status = fill_domain_trust_info(mem_ctx, res2[i], &info1->trusts[i+1]);
1017                 if (!NT_STATUS_IS_OK(status)) {
1018                         return status;
1019                 }
1020         }
1021
1022         r->out.info.info1 = info1;
1023
1024         return NT_STATUS_OK;
1025 }
1026
1027
1028 /* 
1029   netr_NETRSERVERPASSWORDSET2 
1030 */
1031 static WERROR netr_NETRSERVERPASSWORDSET2(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
1032                        struct netr_NETRSERVERPASSWORDSET2 *r)
1033 {
1034         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
1035 }
1036
1037
1038 /* 
1039   netr_NETRSERVERPASSWORDGET 
1040 */
1041 static WERROR netr_NETRSERVERPASSWORDGET(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
1042                        struct netr_NETRSERVERPASSWORDGET *r)
1043 {
1044         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
1045 }
1046
1047
1048 /* 
1049   netr_NETRLOGONSENDTOSAM 
1050 */
1051 static WERROR netr_NETRLOGONSENDTOSAM(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
1052                        struct netr_NETRLOGONSENDTOSAM *r)
1053 {
1054         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
1055 }
1056
1057
1058 /* 
1059   netr_DSRADDRESSTOSITENAMESW 
1060 */
1061 static WERROR netr_DSRADDRESSTOSITENAMESW(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
1062                        struct netr_DSRADDRESSTOSITENAMESW *r)
1063 {
1064         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
1065 }
1066
1067
1068 /* 
1069   netr_DSRGETDCNAMEEX2 
1070 */
1071 static WERROR netr_DSRGETDCNAMEEX2(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
1072                        struct netr_DSRGETDCNAMEEX2 *r)
1073 {
1074         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
1075 }
1076
1077
1078 /* 
1079   netr_NETRLOGONGETTIMESERVICEPARENTDOMAIN 
1080 */
1081 static WERROR netr_NETRLOGONGETTIMESERVICEPARENTDOMAIN(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
1082                        struct netr_NETRLOGONGETTIMESERVICEPARENTDOMAIN *r)
1083 {
1084         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
1085 }
1086
1087
1088 /* 
1089   netr_NETRENUMERATETRUSTEDDOMAINSEX 
1090 */
1091 static WERROR netr_NETRENUMERATETRUSTEDDOMAINSEX(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
1092                        struct netr_NETRENUMERATETRUSTEDDOMAINSEX *r)
1093 {
1094         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
1095 }
1096
1097
1098 /* 
1099   netr_DSRADDRESSTOSITENAMESEXW 
1100 */
1101 static WERROR netr_DSRADDRESSTOSITENAMESEXW(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
1102                        struct netr_DSRADDRESSTOSITENAMESEXW *r)
1103 {
1104         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
1105 }
1106
1107
1108 /* 
1109   netr_DSRGETDCSITECOVERAGEW 
1110 */
1111 static WERROR netr_DSRGETDCSITECOVERAGEW(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
1112                        struct netr_DSRGETDCSITECOVERAGEW *r)
1113 {
1114         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
1115 }
1116
1117
1118 /* 
1119   netr_NETRLOGONSAMLOGONEX 
1120 */
1121 static WERROR netr_NETRLOGONSAMLOGONEX(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
1122                        struct netr_NETRLOGONSAMLOGONEX *r)
1123 {
1124         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
1125 }
1126
1127
1128 /* 
1129   netr_DsrEnumerateDomainTrusts 
1130 */
1131 static WERROR netr_DsrEnumerateDomainTrusts(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
1132                                               struct netr_DsrEnumerateDomainTrusts *r)
1133 {
1134         struct netr_DomainTrust *trusts;
1135         void *sam_ctx;
1136         int ret, i;
1137         struct ldb_message **res;
1138         const char * const attrs[] = { "name", "dnsDomain", "objectSid", "objectGUID", NULL };
1139
1140         ZERO_STRUCT(r->out);
1141
1142         sam_ctx = samdb_connect();
1143         if (sam_ctx == NULL) {
1144                 return WERR_GENERAL_FAILURE;
1145         }
1146
1147         ret = samdb_search(sam_ctx, mem_ctx, NULL, &res, attrs, "(objectClass=domainDNS)");
1148         if (ret == -1) {
1149                 samdb_close(sam_ctx);
1150                 return WERR_GENERAL_FAILURE;            
1151         }
1152
1153         if (ret == 0) {
1154                 return WERR_OK;
1155         }
1156
1157         trusts = talloc_array_p(mem_ctx, struct netr_DomainTrust, ret);
1158         if (trusts == NULL) {
1159                 return WERR_NOMEM;
1160         }
1161         
1162         r->out.count = ret;
1163         r->out.trusts = trusts;
1164
1165         /* TODO: add filtering by trust_flags, and correct trust_type
1166            and attributes */
1167         for (i=0;i<ret;i++) {
1168                 trusts[i].netbios_name = samdb_result_string(res[i], "name", NULL);
1169                 trusts[i].dns_name     = samdb_result_string(res[i], "dnsDomain", NULL);
1170                 trusts[i].trust_flags = 
1171                         NETR_TRUST_FLAG_TREEROOT | 
1172                         NETR_TRUST_FLAG_IN_FOREST | 
1173                         NETR_TRUST_FLAG_PRIMARY;
1174                 trusts[i].parent_index = 0;
1175                 trusts[i].trust_type = 2;
1176                 trusts[i].trust_attributes = 0;
1177                 trusts[i].sid  = samdb_result_dom_sid(mem_ctx, res[i], "objectSid");
1178                 trusts[i].guid = samdb_result_guid(res[i], "objectGUID");
1179         }
1180         
1181
1182         return WERR_OK;
1183 }
1184
1185
1186 /* 
1187   netr_DSRDEREGISTERDNSHOSTRECORDS 
1188 */
1189 static WERROR netr_DSRDEREGISTERDNSHOSTRECORDS(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
1190                        struct netr_DSRDEREGISTERDNSHOSTRECORDS *r)
1191 {
1192         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
1193 }
1194
1195
1196 /* 
1197   netr_NETRSERVERTRUSTPASSWORDSGET 
1198 */
1199 static WERROR netr_NETRSERVERTRUSTPASSWORDSGET(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
1200                        struct netr_NETRSERVERTRUSTPASSWORDSGET *r)
1201 {
1202         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
1203 }
1204
1205
1206 /* 
1207   netr_DSRGETFORESTTRUSTINFORMATION 
1208 */
1209 static WERROR netr_DSRGETFORESTTRUSTINFORMATION(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
1210                        struct netr_DSRGETFORESTTRUSTINFORMATION *r)
1211 {
1212         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
1213 }
1214
1215
1216 /* 
1217   netr_NETRGETFORESTTRUSTINFORMATION 
1218 */
1219 static WERROR netr_NETRGETFORESTTRUSTINFORMATION(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
1220                        struct netr_NETRGETFORESTTRUSTINFORMATION *r)
1221 {
1222         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
1223 }
1224
1225
1226 /* 
1227   netr_NETRSERVERGETTRUSTINFO 
1228 */
1229 static WERROR netr_NETRSERVERGETTRUSTINFO(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,
1230                        struct netr_NETRSERVERGETTRUSTINFO *r)
1231 {
1232         DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);
1233 }
1234
1235
1236 /* include the generated boilerplate */
1237 #include "librpc/gen_ndr/ndr_netlogon_s.c"