1 | /*
|
---|
2 | Unix SMB/CIFS implementation.
|
---|
3 |
|
---|
4 | transport layer security handling code
|
---|
5 |
|
---|
6 | Copyright (C) Andrew Tridgell 2004-2005
|
---|
7 | Copyright (C) Stefan Metzmacher 2004
|
---|
8 | Copyright (C) Andrew Bartlett 2006
|
---|
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 "lib/events/events.h"
|
---|
26 | #include "lib/socket/socket.h"
|
---|
27 | #include "lib/tls/tls.h"
|
---|
28 | #include "param/param.h"
|
---|
29 |
|
---|
30 | #if ENABLE_GNUTLS
|
---|
31 | #include "gnutls/gnutls.h"
|
---|
32 |
|
---|
33 | #define DH_BITS 1024
|
---|
34 |
|
---|
35 | #if defined(HAVE_GNUTLS_DATUM) && !defined(HAVE_GNUTLS_DATUM_T)
|
---|
36 | typedef gnutls_datum gnutls_datum_t;
|
---|
37 | #endif
|
---|
38 |
|
---|
39 | /* hold persistent tls data */
|
---|
40 | struct tls_params {
|
---|
41 | gnutls_certificate_credentials x509_cred;
|
---|
42 | gnutls_dh_params dh_params;
|
---|
43 | bool tls_enabled;
|
---|
44 | };
|
---|
45 | #endif
|
---|
46 |
|
---|
47 | /* hold per connection tls data */
|
---|
48 | struct tls_context {
|
---|
49 | struct socket_context *socket;
|
---|
50 | struct tevent_fd *fde;
|
---|
51 | bool tls_enabled;
|
---|
52 | #if ENABLE_GNUTLS
|
---|
53 | gnutls_session session;
|
---|
54 | bool done_handshake;
|
---|
55 | bool have_first_byte;
|
---|
56 | uint8_t first_byte;
|
---|
57 | bool tls_detect;
|
---|
58 | const char *plain_chars;
|
---|
59 | bool output_pending;
|
---|
60 | gnutls_certificate_credentials xcred;
|
---|
61 | bool interrupted;
|
---|
62 | #endif
|
---|
63 | };
|
---|
64 |
|
---|
65 | bool tls_enabled(struct socket_context *sock)
|
---|
66 | {
|
---|
67 | struct tls_context *tls;
|
---|
68 | if (!sock) {
|
---|
69 | return false;
|
---|
70 | }
|
---|
71 | if (strcmp(sock->backend_name, "tls") != 0) {
|
---|
72 | return false;
|
---|
73 | }
|
---|
74 | tls = talloc_get_type(sock->private_data, struct tls_context);
|
---|
75 | if (!tls) {
|
---|
76 | return false;
|
---|
77 | }
|
---|
78 | return tls->tls_enabled;
|
---|
79 | }
|
---|
80 |
|
---|
81 |
|
---|
82 | #if ENABLE_GNUTLS
|
---|
83 |
|
---|
84 | static const struct socket_ops tls_socket_ops;
|
---|
85 |
|
---|
86 | static NTSTATUS tls_socket_init(struct socket_context *sock)
|
---|
87 | {
|
---|
88 | switch (sock->type) {
|
---|
89 | case SOCKET_TYPE_STREAM:
|
---|
90 | break;
|
---|
91 | default:
|
---|
92 | return NT_STATUS_INVALID_PARAMETER;
|
---|
93 | }
|
---|
94 |
|
---|
95 | sock->backend_name = "tls";
|
---|
96 |
|
---|
97 | return NT_STATUS_OK;
|
---|
98 | }
|
---|
99 |
|
---|
100 | #define TLSCHECK(call) do { \
|
---|
101 | ret = call; \
|
---|
102 | if (ret < 0) { \
|
---|
103 | DEBUG(0,("TLS %s - %s\n", #call, gnutls_strerror(ret))); \
|
---|
104 | goto failed; \
|
---|
105 | } \
|
---|
106 | } while (0)
|
---|
107 |
|
---|
108 |
|
---|
109 | /*
|
---|
110 | callback for reading from a socket
|
---|
111 | */
|
---|
112 | static ssize_t tls_pull(gnutls_transport_ptr ptr, void *buf, size_t size)
|
---|
113 | {
|
---|
114 | struct tls_context *tls = talloc_get_type(ptr, struct tls_context);
|
---|
115 | NTSTATUS status;
|
---|
116 | size_t nread;
|
---|
117 |
|
---|
118 | if (tls->have_first_byte) {
|
---|
119 | *(uint8_t *)buf = tls->first_byte;
|
---|
120 | tls->have_first_byte = false;
|
---|
121 | return 1;
|
---|
122 | }
|
---|
123 |
|
---|
124 | status = socket_recv(tls->socket, buf, size, &nread);
|
---|
125 | if (NT_STATUS_EQUAL(status, NT_STATUS_END_OF_FILE)) {
|
---|
126 | return 0;
|
---|
127 | }
|
---|
128 | if (NT_STATUS_IS_ERR(status)) {
|
---|
129 | EVENT_FD_NOT_READABLE(tls->fde);
|
---|
130 | EVENT_FD_NOT_WRITEABLE(tls->fde);
|
---|
131 | errno = EBADF;
|
---|
132 | return -1;
|
---|
133 | }
|
---|
134 | if (!NT_STATUS_IS_OK(status)) {
|
---|
135 | EVENT_FD_READABLE(tls->fde);
|
---|
136 | errno = EAGAIN;
|
---|
137 | return -1;
|
---|
138 | }
|
---|
139 | if (tls->output_pending) {
|
---|
140 | EVENT_FD_WRITEABLE(tls->fde);
|
---|
141 | }
|
---|
142 | if (size != nread) {
|
---|
143 | EVENT_FD_READABLE(tls->fde);
|
---|
144 | }
|
---|
145 | return nread;
|
---|
146 | }
|
---|
147 |
|
---|
148 | /*
|
---|
149 | callback for writing to a socket
|
---|
150 | */
|
---|
151 | static ssize_t tls_push(gnutls_transport_ptr ptr, const void *buf, size_t size)
|
---|
152 | {
|
---|
153 | struct tls_context *tls = talloc_get_type(ptr, struct tls_context);
|
---|
154 | NTSTATUS status;
|
---|
155 | size_t nwritten;
|
---|
156 | DATA_BLOB b;
|
---|
157 |
|
---|
158 | if (!tls->tls_enabled) {
|
---|
159 | return size;
|
---|
160 | }
|
---|
161 |
|
---|
162 | b.data = discard_const(buf);
|
---|
163 | b.length = size;
|
---|
164 |
|
---|
165 | status = socket_send(tls->socket, &b, &nwritten);
|
---|
166 | if (NT_STATUS_EQUAL(status, STATUS_MORE_ENTRIES)) {
|
---|
167 | errno = EAGAIN;
|
---|
168 | return -1;
|
---|
169 | }
|
---|
170 | if (!NT_STATUS_IS_OK(status)) {
|
---|
171 | EVENT_FD_WRITEABLE(tls->fde);
|
---|
172 | return -1;
|
---|
173 | }
|
---|
174 | if (size != nwritten) {
|
---|
175 | EVENT_FD_WRITEABLE(tls->fde);
|
---|
176 | }
|
---|
177 | return nwritten;
|
---|
178 | }
|
---|
179 |
|
---|
180 | /*
|
---|
181 | destroy a tls session
|
---|
182 | */
|
---|
183 | static int tls_destructor(struct tls_context *tls)
|
---|
184 | {
|
---|
185 | int ret;
|
---|
186 | ret = gnutls_bye(tls->session, GNUTLS_SHUT_WR);
|
---|
187 | if (ret < 0) {
|
---|
188 | DEBUG(4,("TLS gnutls_bye failed - %s\n", gnutls_strerror(ret)));
|
---|
189 | }
|
---|
190 | return 0;
|
---|
191 | }
|
---|
192 |
|
---|
193 |
|
---|
194 | /*
|
---|
195 | possibly continue the handshake process
|
---|
196 | */
|
---|
197 | static NTSTATUS tls_handshake(struct tls_context *tls)
|
---|
198 | {
|
---|
199 | int ret;
|
---|
200 |
|
---|
201 | if (tls->done_handshake) {
|
---|
202 | return NT_STATUS_OK;
|
---|
203 | }
|
---|
204 |
|
---|
205 | ret = gnutls_handshake(tls->session);
|
---|
206 | if (ret == GNUTLS_E_INTERRUPTED || ret == GNUTLS_E_AGAIN) {
|
---|
207 | if (gnutls_record_get_direction(tls->session) == 1) {
|
---|
208 | EVENT_FD_WRITEABLE(tls->fde);
|
---|
209 | }
|
---|
210 | return STATUS_MORE_ENTRIES;
|
---|
211 | }
|
---|
212 | if (ret < 0) {
|
---|
213 | DEBUG(0,("TLS gnutls_handshake failed - %s\n", gnutls_strerror(ret)));
|
---|
214 | return NT_STATUS_UNEXPECTED_NETWORK_ERROR;
|
---|
215 | }
|
---|
216 | tls->done_handshake = true;
|
---|
217 | return NT_STATUS_OK;
|
---|
218 | }
|
---|
219 |
|
---|
220 | /*
|
---|
221 | possibly continue an interrupted operation
|
---|
222 | */
|
---|
223 | static NTSTATUS tls_interrupted(struct tls_context *tls)
|
---|
224 | {
|
---|
225 | int ret;
|
---|
226 |
|
---|
227 | if (!tls->interrupted) {
|
---|
228 | return NT_STATUS_OK;
|
---|
229 | }
|
---|
230 | if (gnutls_record_get_direction(tls->session) == 1) {
|
---|
231 | ret = gnutls_record_send(tls->session, NULL, 0);
|
---|
232 | } else {
|
---|
233 | ret = gnutls_record_recv(tls->session, NULL, 0);
|
---|
234 | }
|
---|
235 | if (ret == GNUTLS_E_INTERRUPTED || ret == GNUTLS_E_AGAIN) {
|
---|
236 | return STATUS_MORE_ENTRIES;
|
---|
237 | }
|
---|
238 | tls->interrupted = false;
|
---|
239 | return NT_STATUS_OK;
|
---|
240 | }
|
---|
241 |
|
---|
242 | /*
|
---|
243 | see how many bytes are pending on the connection
|
---|
244 | */
|
---|
245 | static NTSTATUS tls_socket_pending(struct socket_context *sock, size_t *npending)
|
---|
246 | {
|
---|
247 | struct tls_context *tls = talloc_get_type(sock->private_data, struct tls_context);
|
---|
248 | if (!tls->tls_enabled || tls->tls_detect) {
|
---|
249 | return socket_pending(tls->socket, npending);
|
---|
250 | }
|
---|
251 | *npending = gnutls_record_check_pending(tls->session);
|
---|
252 | if (*npending == 0) {
|
---|
253 | NTSTATUS status = socket_pending(tls->socket, npending);
|
---|
254 | if (*npending == 0) {
|
---|
255 | /* seems to be a gnutls bug */
|
---|
256 | (*npending) = 100;
|
---|
257 | }
|
---|
258 | return status;
|
---|
259 | }
|
---|
260 | return NT_STATUS_OK;
|
---|
261 | }
|
---|
262 |
|
---|
263 | /*
|
---|
264 | receive data either by tls or normal socket_recv
|
---|
265 | */
|
---|
266 | static NTSTATUS tls_socket_recv(struct socket_context *sock, void *buf,
|
---|
267 | size_t wantlen, size_t *nread)
|
---|
268 | {
|
---|
269 | int ret;
|
---|
270 | NTSTATUS status;
|
---|
271 | struct tls_context *tls = talloc_get_type(sock->private_data, struct tls_context);
|
---|
272 |
|
---|
273 | if (tls->tls_enabled && tls->tls_detect) {
|
---|
274 | status = socket_recv(tls->socket, &tls->first_byte, 1, nread);
|
---|
275 | NT_STATUS_NOT_OK_RETURN(status);
|
---|
276 | if (*nread == 0) return NT_STATUS_OK;
|
---|
277 | tls->tls_detect = false;
|
---|
278 | /* look for the first byte of a valid HTTP operation */
|
---|
279 | if (strchr(tls->plain_chars, tls->first_byte)) {
|
---|
280 | /* not a tls link */
|
---|
281 | tls->tls_enabled = false;
|
---|
282 | *(uint8_t *)buf = tls->first_byte;
|
---|
283 | return NT_STATUS_OK;
|
---|
284 | }
|
---|
285 | tls->have_first_byte = true;
|
---|
286 | }
|
---|
287 |
|
---|
288 | if (!tls->tls_enabled) {
|
---|
289 | return socket_recv(tls->socket, buf, wantlen, nread);
|
---|
290 | }
|
---|
291 |
|
---|
292 | status = tls_handshake(tls);
|
---|
293 | NT_STATUS_NOT_OK_RETURN(status);
|
---|
294 |
|
---|
295 | status = tls_interrupted(tls);
|
---|
296 | NT_STATUS_NOT_OK_RETURN(status);
|
---|
297 |
|
---|
298 | ret = gnutls_record_recv(tls->session, buf, wantlen);
|
---|
299 | if (ret == GNUTLS_E_INTERRUPTED || ret == GNUTLS_E_AGAIN) {
|
---|
300 | if (gnutls_record_get_direction(tls->session) == 1) {
|
---|
301 | EVENT_FD_WRITEABLE(tls->fde);
|
---|
302 | }
|
---|
303 | tls->interrupted = true;
|
---|
304 | return STATUS_MORE_ENTRIES;
|
---|
305 | }
|
---|
306 | if (ret < 0) {
|
---|
307 | return NT_STATUS_UNEXPECTED_NETWORK_ERROR;
|
---|
308 | }
|
---|
309 | *nread = ret;
|
---|
310 | return NT_STATUS_OK;
|
---|
311 | }
|
---|
312 |
|
---|
313 |
|
---|
314 | /*
|
---|
315 | send data either by tls or normal socket_recv
|
---|
316 | */
|
---|
317 | static NTSTATUS tls_socket_send(struct socket_context *sock,
|
---|
318 | const DATA_BLOB *blob, size_t *sendlen)
|
---|
319 | {
|
---|
320 | NTSTATUS status;
|
---|
321 | int ret;
|
---|
322 | struct tls_context *tls = talloc_get_type(sock->private_data, struct tls_context);
|
---|
323 |
|
---|
324 | if (!tls->tls_enabled) {
|
---|
325 | return socket_send(tls->socket, blob, sendlen);
|
---|
326 | }
|
---|
327 |
|
---|
328 | status = tls_handshake(tls);
|
---|
329 | NT_STATUS_NOT_OK_RETURN(status);
|
---|
330 |
|
---|
331 | status = tls_interrupted(tls);
|
---|
332 | NT_STATUS_NOT_OK_RETURN(status);
|
---|
333 |
|
---|
334 | ret = gnutls_record_send(tls->session, blob->data, blob->length);
|
---|
335 | if (ret == GNUTLS_E_INTERRUPTED || ret == GNUTLS_E_AGAIN) {
|
---|
336 | if (gnutls_record_get_direction(tls->session) == 1) {
|
---|
337 | EVENT_FD_WRITEABLE(tls->fde);
|
---|
338 | }
|
---|
339 | tls->interrupted = true;
|
---|
340 | return STATUS_MORE_ENTRIES;
|
---|
341 | }
|
---|
342 | if (ret < 0) {
|
---|
343 | DEBUG(0,("gnutls_record_send of %d failed - %s\n", (int)blob->length, gnutls_strerror(ret)));
|
---|
344 | return NT_STATUS_UNEXPECTED_NETWORK_ERROR;
|
---|
345 | }
|
---|
346 | *sendlen = ret;
|
---|
347 | tls->output_pending = (ret < blob->length);
|
---|
348 | return NT_STATUS_OK;
|
---|
349 | }
|
---|
350 |
|
---|
351 |
|
---|
352 | /*
|
---|
353 | initialise global tls state
|
---|
354 | */
|
---|
355 | struct tls_params *tls_initialise(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx)
|
---|
356 | {
|
---|
357 | struct tls_params *params;
|
---|
358 | int ret;
|
---|
359 | TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
|
---|
360 | const char *keyfile = lpcfg_tls_keyfile(tmp_ctx, lp_ctx);
|
---|
361 | const char *certfile = lpcfg_tls_certfile(tmp_ctx, lp_ctx);
|
---|
362 | const char *cafile = lpcfg_tls_cafile(tmp_ctx, lp_ctx);
|
---|
363 | const char *crlfile = lpcfg_tls_crlfile(tmp_ctx, lp_ctx);
|
---|
364 | const char *dhpfile = lpcfg_tls_dhpfile(tmp_ctx, lp_ctx);
|
---|
365 | void tls_cert_generate(TALLOC_CTX *, const char *, const char *, const char *, const char *);
|
---|
366 | params = talloc(mem_ctx, struct tls_params);
|
---|
367 | if (params == NULL) {
|
---|
368 | talloc_free(tmp_ctx);
|
---|
369 | return NULL;
|
---|
370 | }
|
---|
371 |
|
---|
372 | if (!lpcfg_tls_enabled(lp_ctx) || keyfile == NULL || *keyfile == 0) {
|
---|
373 | params->tls_enabled = false;
|
---|
374 | talloc_free(tmp_ctx);
|
---|
375 | return params;
|
---|
376 | }
|
---|
377 |
|
---|
378 | if (!file_exist(cafile)) {
|
---|
379 | char *hostname = talloc_asprintf(mem_ctx, "%s.%s",
|
---|
380 | lpcfg_netbios_name(lp_ctx),
|
---|
381 | lpcfg_dnsdomain(lp_ctx));
|
---|
382 | if (hostname == NULL) {
|
---|
383 | goto init_failed;
|
---|
384 | }
|
---|
385 | tls_cert_generate(params, hostname, keyfile, certfile, cafile);
|
---|
386 | talloc_free(hostname);
|
---|
387 | }
|
---|
388 |
|
---|
389 | ret = gnutls_global_init();
|
---|
390 | if (ret < 0) goto init_failed;
|
---|
391 |
|
---|
392 | gnutls_certificate_allocate_credentials(¶ms->x509_cred);
|
---|
393 | if (ret < 0) goto init_failed;
|
---|
394 |
|
---|
395 | if (cafile && *cafile) {
|
---|
396 | ret = gnutls_certificate_set_x509_trust_file(params->x509_cred, cafile,
|
---|
397 | GNUTLS_X509_FMT_PEM);
|
---|
398 | if (ret < 0) {
|
---|
399 | DEBUG(0,("TLS failed to initialise cafile %s\n", cafile));
|
---|
400 | goto init_failed;
|
---|
401 | }
|
---|
402 | }
|
---|
403 |
|
---|
404 | if (crlfile && *crlfile) {
|
---|
405 | ret = gnutls_certificate_set_x509_crl_file(params->x509_cred,
|
---|
406 | crlfile,
|
---|
407 | GNUTLS_X509_FMT_PEM);
|
---|
408 | if (ret < 0) {
|
---|
409 | DEBUG(0,("TLS failed to initialise crlfile %s\n", crlfile));
|
---|
410 | goto init_failed;
|
---|
411 | }
|
---|
412 | }
|
---|
413 |
|
---|
414 | ret = gnutls_certificate_set_x509_key_file(params->x509_cred,
|
---|
415 | certfile, keyfile,
|
---|
416 | GNUTLS_X509_FMT_PEM);
|
---|
417 | if (ret < 0) {
|
---|
418 | DEBUG(0,("TLS failed to initialise certfile %s and keyfile %s\n",
|
---|
419 | certfile, keyfile));
|
---|
420 | goto init_failed;
|
---|
421 | }
|
---|
422 |
|
---|
423 |
|
---|
424 | ret = gnutls_dh_params_init(¶ms->dh_params);
|
---|
425 | if (ret < 0) goto init_failed;
|
---|
426 |
|
---|
427 | if (dhpfile && *dhpfile) {
|
---|
428 | gnutls_datum_t dhparms;
|
---|
429 | size_t size;
|
---|
430 | dhparms.data = (uint8_t *)file_load(dhpfile, &size, 0, mem_ctx);
|
---|
431 |
|
---|
432 | if (!dhparms.data) {
|
---|
433 | DEBUG(0,("Failed to read DH Parms from %s\n", dhpfile));
|
---|
434 | goto init_failed;
|
---|
435 | }
|
---|
436 | dhparms.size = size;
|
---|
437 |
|
---|
438 | ret = gnutls_dh_params_import_pkcs3(params->dh_params, &dhparms, GNUTLS_X509_FMT_PEM);
|
---|
439 | if (ret < 0) goto init_failed;
|
---|
440 | } else {
|
---|
441 | ret = gnutls_dh_params_generate2(params->dh_params, DH_BITS);
|
---|
442 | if (ret < 0) goto init_failed;
|
---|
443 | }
|
---|
444 |
|
---|
445 | gnutls_certificate_set_dh_params(params->x509_cred, params->dh_params);
|
---|
446 |
|
---|
447 | params->tls_enabled = true;
|
---|
448 |
|
---|
449 | talloc_free(tmp_ctx);
|
---|
450 | return params;
|
---|
451 |
|
---|
452 | init_failed:
|
---|
453 | DEBUG(0,("GNUTLS failed to initialise - %s\n", gnutls_strerror(ret)));
|
---|
454 | params->tls_enabled = false;
|
---|
455 | talloc_free(tmp_ctx);
|
---|
456 | return params;
|
---|
457 | }
|
---|
458 |
|
---|
459 |
|
---|
460 | /*
|
---|
461 | setup for a new connection
|
---|
462 | */
|
---|
463 | struct socket_context *tls_init_server(struct tls_params *params,
|
---|
464 | struct socket_context *socket_ctx,
|
---|
465 | struct tevent_fd *fde,
|
---|
466 | const char *plain_chars)
|
---|
467 | {
|
---|
468 | struct tls_context *tls;
|
---|
469 | int ret;
|
---|
470 | struct socket_context *new_sock;
|
---|
471 | NTSTATUS nt_status;
|
---|
472 |
|
---|
473 | nt_status = socket_create_with_ops(socket_ctx, &tls_socket_ops, &new_sock,
|
---|
474 | SOCKET_TYPE_STREAM,
|
---|
475 | socket_ctx->flags | SOCKET_FLAG_ENCRYPT);
|
---|
476 | if (!NT_STATUS_IS_OK(nt_status)) {
|
---|
477 | return NULL;
|
---|
478 | }
|
---|
479 |
|
---|
480 | tls = talloc(new_sock, struct tls_context);
|
---|
481 | if (tls == NULL) {
|
---|
482 | return NULL;
|
---|
483 | }
|
---|
484 |
|
---|
485 | tls->socket = socket_ctx;
|
---|
486 | talloc_steal(tls, socket_ctx);
|
---|
487 | tls->fde = fde;
|
---|
488 |
|
---|
489 | new_sock->private_data = tls;
|
---|
490 |
|
---|
491 | if (!params->tls_enabled) {
|
---|
492 | talloc_free(new_sock);
|
---|
493 | return NULL;
|
---|
494 | }
|
---|
495 |
|
---|
496 | TLSCHECK(gnutls_init(&tls->session, GNUTLS_SERVER));
|
---|
497 |
|
---|
498 | talloc_set_destructor(tls, tls_destructor);
|
---|
499 |
|
---|
500 | TLSCHECK(gnutls_set_default_priority(tls->session));
|
---|
501 | TLSCHECK(gnutls_credentials_set(tls->session, GNUTLS_CRD_CERTIFICATE,
|
---|
502 | params->x509_cred));
|
---|
503 | gnutls_certificate_server_set_request(tls->session, GNUTLS_CERT_REQUEST);
|
---|
504 | gnutls_dh_set_prime_bits(tls->session, DH_BITS);
|
---|
505 | gnutls_transport_set_ptr(tls->session, (gnutls_transport_ptr)tls);
|
---|
506 | gnutls_transport_set_pull_function(tls->session, (gnutls_pull_func)tls_pull);
|
---|
507 | gnutls_transport_set_push_function(tls->session, (gnutls_push_func)tls_push);
|
---|
508 | gnutls_transport_set_lowat(tls->session, 0);
|
---|
509 |
|
---|
510 | tls->plain_chars = plain_chars;
|
---|
511 | if (plain_chars) {
|
---|
512 | tls->tls_detect = true;
|
---|
513 | } else {
|
---|
514 | tls->tls_detect = false;
|
---|
515 | }
|
---|
516 |
|
---|
517 | tls->output_pending = false;
|
---|
518 | tls->done_handshake = false;
|
---|
519 | tls->have_first_byte = false;
|
---|
520 | tls->tls_enabled = true;
|
---|
521 | tls->interrupted = false;
|
---|
522 |
|
---|
523 | new_sock->state = SOCKET_STATE_SERVER_CONNECTED;
|
---|
524 |
|
---|
525 | return new_sock;
|
---|
526 |
|
---|
527 | failed:
|
---|
528 | DEBUG(0,("TLS init connection failed - %s\n", gnutls_strerror(ret)));
|
---|
529 | talloc_free(new_sock);
|
---|
530 | return NULL;
|
---|
531 | }
|
---|
532 |
|
---|
533 |
|
---|
534 | /*
|
---|
535 | setup for a new client connection
|
---|
536 | */
|
---|
537 | struct socket_context *tls_init_client(struct socket_context *socket_ctx,
|
---|
538 | struct tevent_fd *fde,
|
---|
539 | const char *ca_path)
|
---|
540 | {
|
---|
541 | struct tls_context *tls;
|
---|
542 | int ret = 0;
|
---|
543 | const int cert_type_priority[] = { GNUTLS_CRT_X509, GNUTLS_CRT_OPENPGP, 0 };
|
---|
544 | struct socket_context *new_sock;
|
---|
545 | NTSTATUS nt_status;
|
---|
546 |
|
---|
547 | nt_status = socket_create_with_ops(socket_ctx, &tls_socket_ops, &new_sock,
|
---|
548 | SOCKET_TYPE_STREAM,
|
---|
549 | socket_ctx->flags | SOCKET_FLAG_ENCRYPT);
|
---|
550 | if (!NT_STATUS_IS_OK(nt_status)) {
|
---|
551 | return NULL;
|
---|
552 | }
|
---|
553 |
|
---|
554 | tls = talloc(new_sock, struct tls_context);
|
---|
555 | if (tls == NULL) return NULL;
|
---|
556 |
|
---|
557 | tls->socket = socket_ctx;
|
---|
558 | talloc_steal(tls, socket_ctx);
|
---|
559 | tls->fde = fde;
|
---|
560 |
|
---|
561 | new_sock->private_data = tls;
|
---|
562 |
|
---|
563 | gnutls_global_init();
|
---|
564 |
|
---|
565 | gnutls_certificate_allocate_credentials(&tls->xcred);
|
---|
566 | gnutls_certificate_set_x509_trust_file(tls->xcred, ca_path, GNUTLS_X509_FMT_PEM);
|
---|
567 | TLSCHECK(gnutls_init(&tls->session, GNUTLS_CLIENT));
|
---|
568 | TLSCHECK(gnutls_set_default_priority(tls->session));
|
---|
569 | gnutls_certificate_type_set_priority(tls->session, cert_type_priority);
|
---|
570 | TLSCHECK(gnutls_credentials_set(tls->session, GNUTLS_CRD_CERTIFICATE, tls->xcred));
|
---|
571 |
|
---|
572 | talloc_set_destructor(tls, tls_destructor);
|
---|
573 |
|
---|
574 | gnutls_transport_set_ptr(tls->session, (gnutls_transport_ptr)tls);
|
---|
575 | gnutls_transport_set_pull_function(tls->session, (gnutls_pull_func)tls_pull);
|
---|
576 | gnutls_transport_set_push_function(tls->session, (gnutls_push_func)tls_push);
|
---|
577 | gnutls_transport_set_lowat(tls->session, 0);
|
---|
578 | tls->tls_detect = false;
|
---|
579 |
|
---|
580 | tls->output_pending = false;
|
---|
581 | tls->done_handshake = false;
|
---|
582 | tls->have_first_byte = false;
|
---|
583 | tls->tls_enabled = true;
|
---|
584 | tls->interrupted = false;
|
---|
585 |
|
---|
586 | new_sock->state = SOCKET_STATE_CLIENT_CONNECTED;
|
---|
587 |
|
---|
588 | return new_sock;
|
---|
589 |
|
---|
590 | failed:
|
---|
591 | DEBUG(0,("TLS init connection failed - %s\n", gnutls_strerror(ret)));
|
---|
592 | tls->tls_enabled = false;
|
---|
593 | return new_sock;
|
---|
594 | }
|
---|
595 |
|
---|
596 | static NTSTATUS tls_socket_set_option(struct socket_context *sock, const char *option, const char *val)
|
---|
597 | {
|
---|
598 | set_socket_options(socket_get_fd(sock), option);
|
---|
599 | return NT_STATUS_OK;
|
---|
600 | }
|
---|
601 |
|
---|
602 | static char *tls_socket_get_peer_name(struct socket_context *sock, TALLOC_CTX *mem_ctx)
|
---|
603 | {
|
---|
604 | struct tls_context *tls = talloc_get_type(sock->private_data, struct tls_context);
|
---|
605 | return socket_get_peer_name(tls->socket, mem_ctx);
|
---|
606 | }
|
---|
607 |
|
---|
608 | static struct socket_address *tls_socket_get_peer_addr(struct socket_context *sock, TALLOC_CTX *mem_ctx)
|
---|
609 | {
|
---|
610 | struct tls_context *tls = talloc_get_type(sock->private_data, struct tls_context);
|
---|
611 | return socket_get_peer_addr(tls->socket, mem_ctx);
|
---|
612 | }
|
---|
613 |
|
---|
614 | static struct socket_address *tls_socket_get_my_addr(struct socket_context *sock, TALLOC_CTX *mem_ctx)
|
---|
615 | {
|
---|
616 | struct tls_context *tls = talloc_get_type(sock->private_data, struct tls_context);
|
---|
617 | return socket_get_my_addr(tls->socket, mem_ctx);
|
---|
618 | }
|
---|
619 |
|
---|
620 | static int tls_socket_get_fd(struct socket_context *sock)
|
---|
621 | {
|
---|
622 | struct tls_context *tls = talloc_get_type(sock->private_data, struct tls_context);
|
---|
623 | return socket_get_fd(tls->socket);
|
---|
624 | }
|
---|
625 |
|
---|
626 | static const struct socket_ops tls_socket_ops = {
|
---|
627 | .name = "tls",
|
---|
628 | .fn_init = tls_socket_init,
|
---|
629 | .fn_recv = tls_socket_recv,
|
---|
630 | .fn_send = tls_socket_send,
|
---|
631 | .fn_pending = tls_socket_pending,
|
---|
632 |
|
---|
633 | .fn_set_option = tls_socket_set_option,
|
---|
634 |
|
---|
635 | .fn_get_peer_name = tls_socket_get_peer_name,
|
---|
636 | .fn_get_peer_addr = tls_socket_get_peer_addr,
|
---|
637 | .fn_get_my_addr = tls_socket_get_my_addr,
|
---|
638 | .fn_get_fd = tls_socket_get_fd
|
---|
639 | };
|
---|
640 |
|
---|
641 | bool tls_support(struct tls_params *params)
|
---|
642 | {
|
---|
643 | return params->tls_enabled;
|
---|
644 | }
|
---|
645 |
|
---|
646 | #else
|
---|
647 |
|
---|
648 | /* for systems without tls we just fail the operations, and the caller
|
---|
649 | * will retain the original socket */
|
---|
650 |
|
---|
651 | struct tls_params *tls_initialise(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx)
|
---|
652 | {
|
---|
653 | return talloc_new(mem_ctx);
|
---|
654 | }
|
---|
655 |
|
---|
656 | /*
|
---|
657 | setup for a new connection
|
---|
658 | */
|
---|
659 | struct socket_context *tls_init_server(struct tls_params *params,
|
---|
660 | struct socket_context *socket,
|
---|
661 | struct tevent_fd *fde,
|
---|
662 | const char *plain_chars)
|
---|
663 | {
|
---|
664 | return NULL;
|
---|
665 | }
|
---|
666 |
|
---|
667 |
|
---|
668 | /*
|
---|
669 | setup for a new client connection
|
---|
670 | */
|
---|
671 | struct socket_context *tls_init_client(struct socket_context *socket,
|
---|
672 | struct tevent_fd *fde,
|
---|
673 | const char *ca_path)
|
---|
674 | {
|
---|
675 | return NULL;
|
---|
676 | }
|
---|
677 |
|
---|
678 | bool tls_support(struct tls_params *params)
|
---|
679 | {
|
---|
680 | return false;
|
---|
681 | }
|
---|
682 |
|
---|
683 | #endif
|
---|
684 |
|
---|