summaryrefslogtreecommitdiffstats
path: root/librpc/rpc/server/netlogon/schannel_util.c
blob: b14497b13ce3e0ba773998fe223b4c87bce9f5e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
/*
   Unix SMB/CIFS implementation.

   netlogon schannel utility functions

   Copyright (C) Andrew Bartlett <abartlet@samba.org> 2004-2008
   Copyright (C) Stefan Metzmacher <metze@samba.org>  2005
   Copyright (C) Matthias Dieter Wallnöfer            2009-2010

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

#include "includes.h"
#include "schannel_util.h"
#include "param/param.h"
#include "libcli/security/dom_sid.h"
#include "libcli/auth/schannel.h"
#include "librpc/rpc/dcesrv_core.h"
#include "librpc/gen_ndr/ndr_netlogon.h"
#include "lib/util/util_str_escape.h"

struct dcesrv_netr_check_schannel_state {
	struct dom_sid account_sid;
	enum dcerpc_AuthType auth_type;
	enum dcerpc_AuthLevel auth_level;

	bool schannel_global_required;
	bool schannel_required;
	bool schannel_explicitly_set;

	bool seal_global_required;
	bool seal_required;
	bool seal_explicitly_set;

	NTSTATUS result;
};

static NTSTATUS dcesrv_netr_check_schannel_get_state(struct dcesrv_call_state *dce_call,
						     const struct netlogon_creds_CredentialState *creds,
						     enum dcerpc_AuthType auth_type,
						     enum dcerpc_AuthLevel auth_level,
						     struct dcesrv_netr_check_schannel_state **_s)
{
	struct loadparm_context *lp_ctx = dce_call->conn->dce_ctx->lp_ctx;
	int schannel = lpcfg_server_schannel(lp_ctx);
	bool schannel_global_required = (schannel == true);
	bool schannel_required = schannel_global_required;
	const char *explicit_opt = NULL;
	bool global_require_seal = lpcfg_server_schannel_require_seal(lp_ctx);
	bool require_seal = global_require_seal;
	const char *explicit_seal_opt = NULL;
#define DCESRV_NETR_CHECK_SCHANNEL_STATE_MAGIC (NETLOGON_SERVER_PIPE_STATE_MAGIC+1)
	struct dcesrv_netr_check_schannel_state *s = NULL;
	NTSTATUS status;

	*_s = NULL;

	s = dcesrv_iface_state_find_conn(dce_call,
			DCESRV_NETR_CHECK_SCHANNEL_STATE_MAGIC,
			struct dcesrv_netr_check_schannel_state);
	if (s != NULL) {
		if (!dom_sid_equal(&s->account_sid, creds->sid)) {
			goto new_state;
		}
		if (s->auth_type != auth_type) {
			goto new_state;
		}
		if (s->auth_level != auth_level) {
			goto new_state;
		}

		*_s = s;
		return NT_STATUS_OK;
	}

new_state:
	TALLOC_FREE(s);
	s = talloc_zero(dce_call,
			struct dcesrv_netr_check_schannel_state);
	if (s == NULL) {
		return NT_STATUS_NO_MEMORY;
	}

	s->account_sid = *creds->sid;
	s->auth_type = auth_type;
	s->auth_level = auth_level;
	s->result = NT_STATUS_MORE_PROCESSING_REQUIRED;

	/*
	 * We don't use lpcfg_parm_bool(), as we
	 * need the explicit_opt pointer in order to
	 * adjust the debug messages.
	 */
	explicit_seal_opt = lpcfg_get_parametric(lp_ctx,
						 NULL,
						 "server schannel require seal",
						 creds->account_name);
	if (explicit_seal_opt != NULL) {
		require_seal = lp_bool(explicit_seal_opt);
	}

	/*
	 * We don't use lpcfg_parm_bool(), as we
	 * need the explicit_opt pointer in order to
	 * adjust the debug messages.
	 */
	explicit_opt = lpcfg_get_parametric(lp_ctx,
					    NULL,
					    "server require schannel",
					    creds->account_name);
	if (explicit_opt != NULL) {
		schannel_required = lp_bool(explicit_opt);
	}

	s->schannel_global_required = schannel_global_required;
	s->schannel_required = schannel_required;
	s->schannel_explicitly_set = explicit_opt != NULL;

	s->seal_global_required = global_require_seal;
	s->seal_required = require_seal;
	s->seal_explicitly_set = explicit_seal_opt != NULL;

	status = dcesrv_iface_state_store_conn(dce_call,
			DCESRV_NETR_CHECK_SCHANNEL_STATE_MAGIC,
			s);
	if (!NT_STATUS_IS_OK(status)) {
		return status;
	}

	*_s = s;
	return NT_STATUS_OK;
}

static NTSTATUS dcesrv_netr_check_schannel_once(struct dcesrv_call_state *dce_call,
						struct dcesrv_netr_check_schannel_state *s,
						const struct netlogon_creds_CredentialState *creds,
						uint16_t opnum)
{
	struct loadparm_context *lp_ctx = dce_call->conn->dce_ctx->lp_ctx;
	int CVE_2020_1472_warn_level = lpcfg_parm_int(lp_ctx, NULL,
		"CVE_2020_1472", "warn_about_unused_debug_level", DBGLVL_ERR);
	int CVE_2020_1472_error_level = lpcfg_parm_int(lp_ctx, NULL,
		"CVE_2020_1472", "error_debug_level", DBGLVL_ERR);
	int CVE_2022_38023_warn_level = lpcfg_parm_int(lp_ctx, NULL,
		"CVE_2022_38023", "warn_about_unused_debug_level", DBGLVL_ERR);
	int CVE_2022_38023_error_level = lpcfg_parm_int(lp_ctx, NULL,
		"CVE_2022_38023", "error_debug_level", DBGLVL_ERR);
	TALLOC_CTX *frame = talloc_stackframe();
	unsigned int dbg_lvl = DBGLVL_DEBUG;
	const char *opname = "<unknown>";
	const char *reason = "<unknown>";

	if (opnum < ndr_table_netlogon.num_calls) {
		opname = ndr_table_netlogon.calls[opnum].name;
	}

	if (s->auth_type == DCERPC_AUTH_TYPE_SCHANNEL) {
		if (s->auth_level == DCERPC_AUTH_LEVEL_PRIVACY) {
			reason = "WITH SEALED";
		} else if (s->auth_level == DCERPC_AUTH_LEVEL_INTEGRITY) {
			reason = "WITH SIGNED";
		} else {
			reason = "WITH INVALID";
			dbg_lvl = DBGLVL_ERR;
			s->result = NT_STATUS_INTERNAL_ERROR;
		}
	} else {
		reason = "WITHOUT";
	}

	if (!NT_STATUS_EQUAL(s->result, NT_STATUS_MORE_PROCESSING_REQUIRED)) {
		if (!NT_STATUS_IS_OK(s->result)) {
			dbg_lvl = MIN(dbg_lvl, DBGLVL_INFO);
		}

		DEBUG(dbg_lvl, (
		      "CVE-2020-1472(ZeroLogon)/CVE-2022-38023: "
		      "%s request (opnum[%u]) %s schannel from "
		      "client_account[%s] client_computer_name[%s] %s\n",
		      opname, opnum, reason,
		      log_escape(frame, creds->account_name),
		      log_escape(frame, creds->computer_name),
		      nt_errstr(s->result)));
		TALLOC_FREE(frame);
		return s->result;
	}

	if (s->auth_type == DCERPC_AUTH_TYPE_SCHANNEL &&
	    s->auth_level == DCERPC_AUTH_LEVEL_PRIVACY)
	{
		s->result = NT_STATUS_OK;

		if (s->schannel_explicitly_set && !s->schannel_required) {
			dbg_lvl = MIN(dbg_lvl, CVE_2020_1472_warn_level);
		} else if (!s->schannel_required) {
			dbg_lvl = MIN(dbg_lvl, DBGLVL_INFO);
		}
		if (s->seal_explicitly_set && !s->seal_required) {
			dbg_lvl = MIN(dbg_lvl, CVE_2022_38023_warn_level);
		} else if (!s->seal_required) {
			dbg_lvl = MIN(dbg_lvl, DBGLVL_INFO);
		}

		DEBUG(dbg_lvl, (
		      "CVE-2020-1472(ZeroLogon)/CVE-2022-38023: "
		      "%s request (opnum[%u]) %s schannel from "
		      "client_account[%s] client_computer_name[%s] %s\n",
		      opname, opnum, reason,
		      log_escape(frame, creds->account_name),
		      log_escape(frame, creds->computer_name),
		      nt_errstr(s->result)));

		if (s->schannel_explicitly_set && !s->schannel_required) {
			DEBUG(CVE_2020_1472_warn_level, (
			      "CVE-2020-1472(ZeroLogon): "
			      "Option 'server require schannel:%s = no' not needed for '%s'!\n",
			      log_escape(frame, creds->account_name),
			      log_escape(frame, creds->computer_name)));
		}

		if (s->seal_explicitly_set && !s->seal_required) {
			DEBUG(CVE_2022_38023_warn_level, (
			      "CVE-2022-38023: "
			      "Option 'server schannel require seal:%s = no' not needed for '%s'!\n",
			      log_escape(frame, creds->account_name),
			      log_escape(frame, creds->computer_name)));
		}

		TALLOC_FREE(frame);
		return s->result;
	}

	if (s->auth_type == DCERPC_AUTH_TYPE_SCHANNEL) {
		if (s->seal_required) {
			s->result = NT_STATUS_ACCESS_DENIED;

			if (s->seal_explicitly_set) {
				dbg_lvl = DBGLVL_NOTICE;
			} else {
				dbg_lvl = MIN(dbg_lvl, CVE_2022_38023_error_level);
			}
			if (s->schannel_explicitly_set && !s->schannel_required) {
				dbg_lvl = MIN(dbg_lvl, CVE_2022_38023_warn_level);
			}

			DEBUG(dbg_lvl, (
			      "CVE-2022-38023: "
			      "%s request (opnum[%u]) %s schannel from "
			      "from client_account[%s] client_computer_name[%s] %s\n",
			      opname, opnum, reason,
			      log_escape(frame, creds->account_name),
			      log_escape(frame, creds->computer_name),
			      nt_errstr(s->result)));
			if (s->seal_explicitly_set) {
				D_NOTICE("CVE-2022-38023: Option "
					 "'server schannel require seal:%s = yes' "
					 "rejects access for client.\n",
					 log_escape(frame, creds->account_name));
			} else {
				DEBUG(CVE_2020_1472_error_level, (
				      "CVE-2022-38023: Check if option "
				      "'server schannel require seal:%s = no' "
				      "might be needed for a legacy client.\n",
				      log_escape(frame, creds->account_name)));
			}
			if (s->schannel_explicitly_set && !s->schannel_required) {
				DEBUG(CVE_2020_1472_warn_level, (
				      "CVE-2020-1472(ZeroLogon): Option "
				      "'server require schannel:%s = no' "
				      "not needed for '%s'!\n",
				      log_escape(frame, creds->account_name),
				      log_escape(frame, creds->computer_name)));
			}
			TALLOC_FREE(frame);
			return s->result;
		}

		s->result = NT_STATUS_OK;

		if (s->schannel_explicitly_set && !s->schannel_required) {
			dbg_lvl = MIN(dbg_lvl, CVE_2020_1472_warn_level);
		} else if (!s->schannel_required) {
			dbg_lvl = MIN(dbg_lvl, DBGLVL_INFO);
		}
		if (s->seal_explicitly_set && !s->seal_required) {
			dbg_lvl = MIN(dbg_lvl, DBGLVL_INFO);
		} else if (!s->seal_required) {
			dbg_lvl = MIN(dbg_lvl, CVE_2022_38023_error_level);
		}

		DEBUG(dbg_lvl, (
		      "CVE-2020-1472(ZeroLogon): "
		      "%s request (opnum[%u]) %s schannel from "
		      "client_account[%s] client_computer_name[%s] %s\n",
		      opname, opnum, reason,
		      log_escape(frame, creds->account_name),
		      log_escape(frame, creds->computer_name),
		      nt_errstr(s->result)));
		if (s->schannel_explicitly_set && !s->schannel_required) {
			DEBUG(CVE_2020_1472_warn_level, (
			      "CVE-2020-1472(ZeroLogon): "
			      "Option 'server require schannel:%s = no' not needed for '%s'!\n",
			      log_escape(frame, creds->account_name),
			      log_escape(frame, creds->computer_name)));
		}
		if (s->seal_explicitly_set && !s->seal_required) {
			D_INFO("CVE-2022-38023: "
			       "Option 'server schannel require seal:%s = no' still needed for '%s'!\n",
			       log_escape(frame, creds->account_name),
			       log_escape(frame, creds->computer_name));
		} else if (!s->seal_required) {
			/*
			 * admins should set
			 * server schannel require seal:COMPUTER$ = no
			 * in order to avoid the level 0 messages.
			 * Over time they can switch the global value
			 * to be strict.
			 */
			DEBUG(CVE_2022_38023_error_level, (
			      "CVE-2022-38023: "
			      "Please use 'server schannel require seal:%s = no' "
			      "for '%s' to avoid this warning!\n",
			      log_escape(frame, creds->account_name),
			      log_escape(frame, creds->computer_name)));
		}

		TALLOC_FREE(frame);
		return s->result;
	}

	if (s->seal_required) {
		s->result = NT_STATUS_ACCESS_DENIED;

		if (s->seal_explicitly_set) {
			dbg_lvl = MIN(dbg_lvl, DBGLVL_NOTICE);
		} else {
			dbg_lvl = MIN(dbg_lvl, CVE_2022_38023_error_level);
		}
		if (!s->schannel_explicitly_set) {
			dbg_lvl = MIN(dbg_lvl, CVE_2020_1472_error_level);
		} else if (s->schannel_required) {
			dbg_lvl = MIN(dbg_lvl, DBGLVL_NOTICE);
		}

		DEBUG(dbg_lvl, (
		      "CVE-2020-1472(ZeroLogon)/CVE-2022-38023: "
		      "%s request (opnum[%u]) %s schannel from "
		      "from client_account[%s] client_computer_name[%s] %s\n",
		      opname, opnum, reason,
		      log_escape(frame, creds->account_name),
		      log_escape(frame, creds->computer_name),
		      nt_errstr(s->result)));
		if (s->seal_explicitly_set) {
			D_NOTICE("CVE-2022-38023: Option "
			         "'server schannel require seal:%s = yes' "
			         "rejects access for client.\n",
			         log_escape(frame, creds->account_name));
		} else {
			DEBUG(CVE_2022_38023_error_level, (
			      "CVE-2022-38023: Check if option "
			      "'server schannel require seal:%s = no' "
			      "might be needed for a legacy client.\n",
			      log_escape(frame, creds->account_name)));
		}
		if (!s->schannel_explicitly_set) {
			DEBUG(CVE_2020_1472_error_level, (
			      "CVE-2020-1472(ZeroLogon): Check if option "
			      "'server require schannel:%s = no' "
			      "might be needed for a legacy client.\n",
			      log_escape(frame, creds->account_name)));
		} else if (s->schannel_required) {
			D_NOTICE("CVE-2022-38023: Option "
			         "'server require schannel:%s = yes' "
			         "also rejects access for client.\n",
			         log_escape(frame, creds->account_name));
		}
		TALLOC_FREE(frame);
		return s->result;
	}

	if (s->schannel_required) {
		s->result = NT_STATUS_ACCESS_DENIED;

		if (s->schannel_explicitly_set) {
			dbg_lvl = MIN(dbg_lvl, DBGLVL_NOTICE);
		} else {
			dbg_lvl = MIN(dbg_lvl, CVE_2020_1472_error_level);
		}
		if (!s->seal_explicitly_set) {
			dbg_lvl = MIN(dbg_lvl, CVE_2022_38023_error_level);
		}

		DEBUG(dbg_lvl, (
		      "CVE-2020-1472(ZeroLogon)/CVE-2022-38023: "
		      "%s request (opnum[%u]) %s schannel from "
		      "client_account[%s] client_computer_name[%s] %s\n",
		      opname, opnum, reason,
		      log_escape(frame, creds->account_name),
		      log_escape(frame, creds->computer_name),
		      nt_errstr(s->result)));
		if (s->schannel_explicitly_set) {
			D_NOTICE("CVE-2020-1472(ZeroLogon): Option "
				"'server require schannel:%s = yes' "
				"rejects access for client.\n",
				log_escape(frame, creds->account_name));
		} else {
			DEBUG(CVE_2020_1472_error_level, (
			      "CVE-2020-1472(ZeroLogon): Check if option "
			      "'server require schannel:%s = no' "
			      "might be needed for a legacy client.\n",
			      log_escape(frame, creds->account_name)));
		}
		if (!s->seal_explicitly_set) {
			DEBUG(CVE_2022_38023_error_level, (
			      "CVE-2022-38023: Check if option "
			      "'server schannel require seal:%s = no' "
			      "might be needed for a legacy client.\n",
			      log_escape(frame, creds->account_name)));
		}
		TALLOC_FREE(frame);
		return s->result;
	}

	s->result = NT_STATUS_OK;

	if (s->seal_explicitly_set) {
		dbg_lvl = MIN(dbg_lvl, DBGLVL_INFO);
	} else {
		dbg_lvl = MIN(dbg_lvl, CVE_2022_38023_error_level);
	}

	if (s->schannel_explicitly_set) {
		dbg_lvl = MIN(dbg_lvl, DBGLVL_INFO);
	} else {
		dbg_lvl = MIN(dbg_lvl, CVE_2020_1472_error_level);
	}

	DEBUG(dbg_lvl, (
	      "CVE-2020-1472(ZeroLogon)/CVE-2022-38023: "
	      "%s request (opnum[%u]) %s schannel from "
	      "client_account[%s] client_computer_name[%s] %s\n",
	      opname, opnum, reason,
	      log_escape(frame, creds->account_name),
	      log_escape(frame, creds->computer_name),
	      nt_errstr(s->result)));

	if (s->seal_explicitly_set) {
		D_INFO("CVE-2022-38023: Option "
		       "'server schannel require seal:%s = no' "
		       "still needed for '%s'!\n",
		       log_escape(frame, creds->account_name),
		       log_escape(frame, creds->computer_name));
	} else {
		/*
		 * admins should set
		 * server schannel require seal:COMPUTER$ = no
		 * in order to avoid the level 0 messages.
		 * Over time they can switch the global value
		 * to be strict.
		 */
		DEBUG(CVE_2022_38023_error_level, (
		      "CVE-2022-38023: Please use "
		       "'server schannel require seal:%s = no' "
		      "for '%s' to avoid this warning!\n",
		      log_escape(frame, creds->account_name),
		      log_escape(frame, creds->computer_name)));
	}

	if (s->schannel_explicitly_set) {
		D_INFO("CVE-2020-1472(ZeroLogon): Option "
		       "'server require schannel:%s = no' "
		       "still needed for '%s'!\n",
		       log_escape(frame, creds->account_name),
		       log_escape(frame, creds->computer_name));
	} else {
		/*
		 * admins should set
		 * server require schannel:COMPUTER$ = no
		 * in order to avoid the level 0 messages.
		 * Over time they can switch the global value
		 * to be strict.
		 */
		DEBUG(CVE_2020_1472_error_level, (
		      "CVE-2020-1472(ZeroLogon): "
		      "Please use 'server require schannel:%s = no' "
		      "for '%s' to avoid this warning!\n",
		      log_escape(frame, creds->account_name),
		      log_escape(frame, creds->computer_name)));
	}

	TALLOC_FREE(frame);
	return s->result;
}

NTSTATUS dcesrv_netr_check_schannel(struct dcesrv_call_state *dce_call,
				    const struct netlogon_creds_CredentialState *creds,
				    enum dcerpc_AuthType auth_type,
				    enum dcerpc_AuthLevel auth_level,
				    uint16_t opnum)
{
	struct dcesrv_netr_check_schannel_state *s = NULL;
	NTSTATUS status;

	status = dcesrv_netr_check_schannel_get_state(dce_call,
						      creds,
						      auth_type,
						      auth_level,
						      &s);
	if (!NT_STATUS_IS_OK(status)) {
		return status;
	}

	status = dcesrv_netr_check_schannel_once(dce_call, s, creds, opnum);
	if (!NT_STATUS_IS_OK(status)) {
		return status;
	}

	return NT_STATUS_OK;
}

NTSTATUS dcesrv_netr_creds_server_step_check(struct dcesrv_call_state *dce_call,
						    TALLOC_CTX *mem_ctx,
						    const char *computer_name,
						    struct netr_Authenticator *received_authenticator,
						    struct netr_Authenticator *return_authenticator,
						    struct netlogon_creds_CredentialState **creds_out)
{
	NTSTATUS nt_status;
	struct netlogon_creds_CredentialState *creds = NULL;
	enum dcerpc_AuthType auth_type = DCERPC_AUTH_TYPE_NONE;
	enum dcerpc_AuthLevel auth_level = DCERPC_AUTH_LEVEL_NONE;

	dcesrv_call_auth_info(dce_call, &auth_type, &auth_level);

	nt_status = schannel_check_creds_state(mem_ctx,
					       dce_call->conn->dce_ctx->lp_ctx,
					       computer_name,
					       received_authenticator,
					       return_authenticator,
					       &creds);
	if (!NT_STATUS_IS_OK(nt_status)) {
		ZERO_STRUCTP(return_authenticator);
		return nt_status;
	}

	nt_status = dcesrv_netr_check_schannel(dce_call,
					       creds,
					       auth_type,
					       auth_level,
					       dce_call->pkt.u.request.opnum);
	if (!NT_STATUS_IS_OK(nt_status)) {
		TALLOC_FREE(creds);
		ZERO_STRUCTP(return_authenticator);
		return nt_status;
	}

	*creds_out = creds;
	return NT_STATUS_OK;
}