summaryrefslogtreecommitdiff
path: root/source4/librpc/rpc/dcerpc_schannel.c
blob: f511ecb8196691e9e50b9b8f6230e874745da2ba (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
/* 
   Unix SMB/CIFS implementation.

   dcerpc schannel operations

   Copyright (C) Andrew Tridgell 2004
   
   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 2 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, write to the Free Software
   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

#include "includes.h"

/*
  wrappers for the schannel_*() functions
*/
static NTSTATUS schan_unseal_packet(struct dcerpc_security *dcerpc_security, 
				    TALLOC_CTX *mem_ctx, 
				    uchar *data, size_t length, DATA_BLOB *sig)
{
	struct schannel_state *schannel_state = dcerpc_security->private;
	return schannel_unseal_packet(schannel_state, mem_ctx, data, length, sig);
}

static NTSTATUS schan_check_packet(struct dcerpc_security *dcerpc_security, 
				   TALLOC_CTX *mem_ctx, 
				   const uchar *data, size_t length, 
				   const DATA_BLOB *sig)
{
	struct schannel_state *schannel_state = dcerpc_security->private;
	return schannel_check_packet(schannel_state, data, length, sig);
}

static NTSTATUS schan_seal_packet(struct dcerpc_security *dcerpc_security, 
				  TALLOC_CTX *mem_ctx, 
				  uchar *data, size_t length, 
				  DATA_BLOB *sig)
{
	struct schannel_state *schannel_state = dcerpc_security->private;
	return schannel_seal_packet(schannel_state, mem_ctx, data, length, sig);
}

static NTSTATUS schan_sign_packet(struct dcerpc_security *dcerpc_security, 
				 TALLOC_CTX *mem_ctx, 
				 const uchar *data, size_t length, 
				 DATA_BLOB *sig)
{
	struct schannel_state *schannel_state = dcerpc_security->private;
	return schannel_sign_packet(schannel_state, mem_ctx, data, length, sig);
}

static NTSTATUS schan_session_key(struct dcerpc_security *dcerpc_security, 
				  DATA_BLOB *session_key)
{
	return NT_STATUS_NOT_IMPLEMENTED;
}

static void schan_security_end(struct dcerpc_security *dcerpc_security)
{
	struct schannel_state *schannel_state = dcerpc_security->private;
	schannel_end(&schannel_state);
}


/*
  get a schannel key using a netlogon challenge on a secondary pipe
*/
NTSTATUS dcerpc_schannel_key(struct dcerpc_pipe *p,
			     const char *domain,
			     const char *username,
			     const char *password,
			     int chan_type,
			     uint8 new_session_key[8])
{
	NTSTATUS status;
	struct dcerpc_pipe *p2;
	struct netr_ServerReqChallenge r;
	struct netr_ServerAuthenticate2 a;
	uint8 mach_pwd[16];
	struct creds_CredentialState creds;
	const char *workgroup, *workstation;
	uint32_t negotiate_flags = 0;

	workstation = username;
	workgroup = domain;

	/*
	  step 1 - establish a netlogon connection, with no authentication
	*/
	status = dcerpc_secondary_smb(p, &p2, 
				      DCERPC_NETLOGON_NAME, 
				      DCERPC_NETLOGON_UUID, 
				      DCERPC_NETLOGON_VERSION);


	/*
	  step 2 - request a netlogon challenge
	*/
	r.in.server_name = talloc_asprintf(p->mem_ctx, "\\\\%s", dcerpc_server_name(p));
	r.in.computer_name = workstation;
	generate_random_buffer(r.in.credentials.data, sizeof(r.in.credentials.data), False);

	status = dcerpc_netr_ServerReqChallenge(p2, p->mem_ctx, &r);
	if (!NT_STATUS_IS_OK(status)) {
		return status;
	}

	/*
	  step 3 - authenticate on the netlogon pipe
	*/
	E_md4hash(password, mach_pwd);
	creds_client_init(&creds, &r.in.credentials, &r.out.credentials, mach_pwd,
			  &a.in.credentials);

	a.in.server_name = r.in.server_name;
	a.in.username = talloc_asprintf(p->mem_ctx, "%s$", workstation);
	a.in.secure_channel_type = chan_type;
	a.in.computer_name = workstation;
	a.in.negotiate_flags = &negotiate_flags;
	a.out.negotiate_flags = &negotiate_flags;

	status = dcerpc_netr_ServerAuthenticate2(p2, p->mem_ctx, &a);
	if (!NT_STATUS_IS_OK(status)) {
		return status;
	}
	if (!creds_client_check(&creds, &a.out.credentials)) {
		return NT_STATUS_UNSUCCESSFUL;
	}

	/*
	  the schannel session key is now in creds.session_key

	  we no longer need the netlogon pipe open
	*/
	dcerpc_pipe_close(p2);

	memcpy(new_session_key, creds.session_key, 8);

	return NT_STATUS_OK;
}


/*
  do a schannel style bind on a dcerpc pipe with the given schannel
  key. The username is usually of the form HOSTNAME$ and the password
  is the domain trust password
*/
NTSTATUS dcerpc_bind_auth_schannel_key(struct dcerpc_pipe *p,
				       const char *uuid, unsigned version,
				       const char *domain,
				       const char *username,
				       const uint8 session_key[8])
{
	NTSTATUS status;
	uint8 full_session_key[16];
	struct schannel_state *schannel_state;
	const char *workgroup, *workstation;

	memcpy(full_session_key, session_key, 8);
	memset(full_session_key+8, 0, 8);

	workstation = username;
	workgroup = domain;

	/*
	  perform a bind with security type schannel
	*/
	p->auth_info = talloc(p->mem_ctx, sizeof(*p->auth_info));
	if (!p->auth_info) {
		status = NT_STATUS_NO_MEMORY;
		goto done;
	}

	p->auth_info->auth_type = DCERPC_AUTH_TYPE_SCHANNEL;
	
	if (p->flags & DCERPC_SEAL) {
		p->auth_info->auth_level = DCERPC_AUTH_LEVEL_PRIVACY;
	} else {
		/* note that DCERPC_AUTH_LEVEL_NONE does not make any 
		   sense, and would be rejected by the server */
		p->auth_info->auth_level = DCERPC_AUTH_LEVEL_INTEGRITY;
	}
	p->auth_info->auth_pad_length = 0;
	p->auth_info->auth_reserved = 0;
	p->auth_info->auth_context_id = random();
	p->security_state = NULL;

	p->auth_info->credentials = data_blob_talloc(p->mem_ctx, 
						     NULL,
						     8 +
						     strlen(workgroup)+1 +
						     strlen(workstation)+1);
	if (!p->auth_info->credentials.data) {
		return NT_STATUS_NO_MEMORY;
	}

	/* oh, this is ugly! */
	SIVAL(p->auth_info->credentials.data, 0, 0);
	SIVAL(p->auth_info->credentials.data, 4, 3);
	memcpy(p->auth_info->credentials.data+8, workgroup, strlen(workgroup)+1);
	memcpy(p->auth_info->credentials.data+8+strlen(workgroup)+1, 
	       workstation, strlen(workstation)+1);

	/* send the authenticated bind request */
	status = dcerpc_bind_byuuid(p, p->mem_ctx, uuid, version);
	if (!NT_STATUS_IS_OK(status)) {
		goto done;
	}

	p->security_state = talloc_p(p->mem_ctx, struct dcerpc_security);
	if (!p->security_state) {
		status = NT_STATUS_NO_MEMORY;
		goto done;
	}

	schannel_state = talloc_p(p->mem_ctx, struct schannel_state);
	if (!schannel_state) {
		status = NT_STATUS_NO_MEMORY;
		goto done;
	}

	status = schannel_start(&schannel_state, full_session_key, True);
	if (!NT_STATUS_IS_OK(status)) {
		goto done;
	}

	dump_data_pw("session key:\n", schannel_state->session_key, 16);

	p->security_state->private = schannel_state;
	p->security_state->unseal_packet = schan_unseal_packet;
	p->security_state->check_packet = schan_check_packet;
	p->security_state->seal_packet = schan_seal_packet;
	p->security_state->sign_packet = schan_sign_packet;
	p->security_state->session_key = schan_session_key;
	p->security_state->security_end = schan_security_end;

done:
	return status;
}


/*
  do a schannel style bind on a dcerpc pipe. The username is usually
  of the form HOSTNAME$ and the password is the domain trust password
*/
NTSTATUS dcerpc_bind_auth_schannel(struct dcerpc_pipe *p,
				   const char *uuid, unsigned version,
				   const char *domain,
				   const char *username,
				   const char *password)
{
	NTSTATUS status;
	uint8 session_key[8];

	status = dcerpc_schannel_key(p, domain, username, password, 
				     lp_server_role() == ROLE_DOMAIN_BDC? SEC_CHAN_BDC:SEC_CHAN_WKSTA,
				     session_key);
	if (!NT_STATUS_IS_OK(status)) {
		return status;
	}

	status = dcerpc_bind_auth_schannel_key(p, uuid, version, domain, username, session_key);

	return status;
}