2 Unix SMB/CIFS implementation.
3 Wrapper for krb5_init_context
5 Copyright (C) Andrew Bartlett <abartlet@samba.org> 2005
6 Copyright (C) Andrew Tridgell 2005
7 Copyright (C) Stefan Metzmacher 2004
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 #include "system/kerberos.h"
25 #include "system/gssapi.h"
27 #include "auth/kerberos/kerberos.h"
28 #include "lib/socket/socket.h"
29 #include "lib/stream/packet.h"
30 #include "system/network.h"
31 #include "param/param.h"
32 #include "libcli/resolve/resolve.h"
33 #include "../lib/tsocket/tsocket.h"
34 #include "krb5_init_context.h"
36 context structure for operations on cldap packets
38 struct smb_krb5_socket
{
39 struct socket_context
*sock
;
42 struct tevent_fd
*fde
;
45 DATA_BLOB request
, reply
;
47 struct packet_context
*packet
;
50 #ifdef SAMBA4_USES_HEIMDAL
55 static krb5_error_code
smb_krb5_context_destroy(struct smb_krb5_context
*ctx
)
57 #ifdef SAMBA4_USES_HEIMDAL
58 if (ctx
->pvt_log_data
) {
59 /* Otherwise krb5_free_context will try and close what we
60 * have already free()ed */
61 krb5_set_warn_dest(ctx
->krb5_context
, NULL
);
62 krb5_closelog(ctx
->krb5_context
,
63 (krb5_log_facility
*)ctx
->pvt_log_data
);
66 krb5_free_context(ctx
->krb5_context
);
70 #ifdef SAMBA4_USES_HEIMDAL
71 /* We never close down the DEBUG system, and no need to unreference the use */
72 static void smb_krb5_debug_close(void *private_data
) {
77 #ifdef SAMBA4_USES_HEIMDAL
78 static void smb_krb5_debug_wrapper(const char *timestr
, const char *msg
, void *private_data
)
80 DEBUG(3, ("Kerberos: %s\n", msg
));
84 #ifdef SAMBA4_USES_HEIMDAL
86 handle recv events on a smb_krb5 socket
88 static void smb_krb5_socket_recv(struct smb_krb5_socket
*smb_krb5
)
90 TALLOC_CTX
*tmp_ctx
= talloc_new(smb_krb5
);
94 smb_krb5
->status
= socket_pending(smb_krb5
->sock
, &dsize
);
95 if (!NT_STATUS_IS_OK(smb_krb5
->status
)) {
100 blob
= data_blob_talloc(tmp_ctx
, NULL
, dsize
);
101 if (blob
.data
== NULL
&& dsize
!= 0) {
102 smb_krb5
->status
= NT_STATUS_NO_MEMORY
;
103 talloc_free(tmp_ctx
);
107 smb_krb5
->status
= socket_recv(smb_krb5
->sock
, blob
.data
, blob
.length
, &nread
);
108 if (!NT_STATUS_IS_OK(smb_krb5
->status
)) {
109 talloc_free(tmp_ctx
);
115 smb_krb5
->status
= NT_STATUS_UNEXPECTED_NETWORK_ERROR
;
116 talloc_free(tmp_ctx
);
120 DEBUG(4,("Received smb_krb5 packet of length %d\n",
123 talloc_steal(smb_krb5
, blob
.data
);
124 smb_krb5
->reply
= blob
;
125 talloc_free(tmp_ctx
);
128 static NTSTATUS
smb_krb5_full_packet(void *private_data
, DATA_BLOB data
)
130 struct smb_krb5_socket
*smb_krb5
= talloc_get_type(private_data
, struct smb_krb5_socket
);
131 talloc_steal(smb_krb5
, data
.data
);
132 smb_krb5
->reply
= data
;
133 smb_krb5
->reply
.length
-= 4;
134 smb_krb5
->reply
.data
+= 4;
139 handle request timeouts
141 static void smb_krb5_request_timeout(struct tevent_context
*event_ctx
,
142 struct tevent_timer
*te
, struct timeval t
,
145 struct smb_krb5_socket
*smb_krb5
= talloc_get_type(private_data
, struct smb_krb5_socket
);
146 DEBUG(5,("Timed out smb_krb5 packet\n"));
147 smb_krb5
->status
= NT_STATUS_IO_TIMEOUT
;
150 static void smb_krb5_error_handler(void *private_data
, NTSTATUS status
)
152 struct smb_krb5_socket
*smb_krb5
= talloc_get_type(private_data
, struct smb_krb5_socket
);
153 smb_krb5
->status
= status
;
157 handle send events on a smb_krb5 socket
159 static void smb_krb5_socket_send(struct smb_krb5_socket
*smb_krb5
)
165 len
= smb_krb5
->request
.length
;
166 status
= socket_send(smb_krb5
->sock
, &smb_krb5
->request
, &len
);
168 if (!NT_STATUS_IS_OK(status
)) return;
170 TEVENT_FD_READABLE(smb_krb5
->fde
);
172 TEVENT_FD_NOT_WRITEABLE(smb_krb5
->fde
);
178 handle fd events on a smb_krb5_socket
180 static void smb_krb5_socket_handler(struct tevent_context
*ev
, struct tevent_fd
*fde
,
181 uint16_t flags
, void *private_data
)
183 struct smb_krb5_socket
*smb_krb5
= talloc_get_type(private_data
, struct smb_krb5_socket
);
184 switch (smb_krb5
->hi
->proto
) {
185 case KRB5_KRBHST_UDP
:
186 if (flags
& TEVENT_FD_READ
) {
187 smb_krb5_socket_recv(smb_krb5
);
190 if (flags
& TEVENT_FD_WRITE
) {
191 smb_krb5_socket_send(smb_krb5
);
196 case KRB5_KRBHST_TCP
:
197 if (flags
& TEVENT_FD_READ
) {
198 packet_recv(smb_krb5
->packet
);
201 if (flags
& TEVENT_FD_WRITE
) {
202 packet_queue_run(smb_krb5
->packet
);
207 case KRB5_KRBHST_HTTP
:
213 krb5_error_code
smb_krb5_send_and_recv_func(krb5_context context
,
215 krb5_krbhst_info
*hi
,
217 const krb5_data
*send_buf
,
223 struct addrinfo
*ai
, *a
;
224 struct smb_krb5_socket
*smb_krb5
;
228 struct tevent_context
*ev
;
229 TALLOC_CTX
*tmp_ctx
= talloc_new(NULL
);
235 /* If no event context was available, then create one for this loop */
236 ev
= samba_tevent_context_init(tmp_ctx
);
238 talloc_free(tmp_ctx
);
242 ev
= talloc_get_type_abort(data
, struct tevent_context
);
245 send_blob
= data_blob_const(send_buf
->data
, send_buf
->length
);
247 ret
= krb5_krbhst_get_addrinfo(context
, hi
, &ai
);
249 talloc_free(tmp_ctx
);
253 for (a
= ai
; a
; a
= a
->ai_next
) {
254 struct socket_address
*remote_addr
;
255 smb_krb5
= talloc(tmp_ctx
, struct smb_krb5_socket
);
257 talloc_free(tmp_ctx
);
262 switch (a
->ai_family
) {
272 talloc_free(tmp_ctx
);
276 status
= NT_STATUS_INVALID_PARAMETER
;
278 case KRB5_KRBHST_UDP
:
279 status
= socket_create(name
, SOCKET_TYPE_DGRAM
, &smb_krb5
->sock
, 0);
281 case KRB5_KRBHST_TCP
:
282 status
= socket_create(name
, SOCKET_TYPE_STREAM
, &smb_krb5
->sock
, 0);
284 case KRB5_KRBHST_HTTP
:
285 talloc_free(tmp_ctx
);
288 if (!NT_STATUS_IS_OK(status
)) {
289 talloc_free(smb_krb5
);
293 talloc_steal(smb_krb5
, smb_krb5
->sock
);
295 remote_addr
= socket_address_from_sockaddr(smb_krb5
, a
->ai_addr
, a
->ai_addrlen
);
297 talloc_free(smb_krb5
);
301 status
= socket_connect_ev(smb_krb5
->sock
, NULL
, remote_addr
, 0, ev
);
302 if (!NT_STATUS_IS_OK(status
)) {
303 talloc_free(smb_krb5
);
307 /* Setup the FDE, start listening for read events
308 * from the start (otherwise we may miss a socket
309 * drop) and mark as AUTOCLOSE along with the fde */
311 /* Ths is equivilant to EVENT_FD_READABLE(smb_krb5->fde) */
312 smb_krb5
->fde
= tevent_add_fd(ev
, smb_krb5
->sock
,
313 socket_get_fd(smb_krb5
->sock
),
315 smb_krb5_socket_handler
, smb_krb5
);
316 /* its now the job of the event layer to close the socket */
317 tevent_fd_set_close_fn(smb_krb5
->fde
, socket_tevent_fd_close_fn
);
318 socket_set_flags(smb_krb5
->sock
, SOCKET_FLAG_NOCLOSE
);
320 tevent_add_timer(ev
, smb_krb5
,
321 timeval_current_ofs(timeout
, 0),
322 smb_krb5_request_timeout
, smb_krb5
);
324 smb_krb5
->status
= NT_STATUS_OK
;
325 smb_krb5
->reply
= data_blob(NULL
, 0);
328 case KRB5_KRBHST_UDP
:
329 TEVENT_FD_WRITEABLE(smb_krb5
->fde
);
330 smb_krb5
->request
= send_blob
;
332 case KRB5_KRBHST_TCP
:
334 smb_krb5
->packet
= packet_init(smb_krb5
);
335 if (smb_krb5
->packet
== NULL
) {
336 talloc_free(smb_krb5
);
339 packet_set_private(smb_krb5
->packet
, smb_krb5
);
340 packet_set_socket(smb_krb5
->packet
, smb_krb5
->sock
);
341 packet_set_callback(smb_krb5
->packet
, smb_krb5_full_packet
);
342 packet_set_full_request(smb_krb5
->packet
, packet_full_request_u32
);
343 packet_set_error_handler(smb_krb5
->packet
, smb_krb5_error_handler
);
344 packet_set_event_context(smb_krb5
->packet
, ev
);
345 packet_set_fde(smb_krb5
->packet
, smb_krb5
->fde
);
347 smb_krb5
->request
= data_blob_talloc(smb_krb5
, NULL
, send_blob
.length
+ 4);
348 RSIVAL(smb_krb5
->request
.data
, 0, send_blob
.length
);
349 memcpy(smb_krb5
->request
.data
+4, send_blob
.data
, send_blob
.length
);
350 packet_send(smb_krb5
->packet
, smb_krb5
->request
);
352 case KRB5_KRBHST_HTTP
:
353 talloc_free(tmp_ctx
);
356 while ((NT_STATUS_IS_OK(smb_krb5
->status
)) && !smb_krb5
->reply
.length
) {
357 if (tevent_loop_once(ev
) != 0) {
358 talloc_free(tmp_ctx
);
362 /* After each and every event loop, reset the
363 * send_to_kdc pointers to what they were when
364 * we entered this loop. That way, if a
365 * nested event has invalidated them, we put
366 * it back before we return to the heimdal
368 ret
= krb5_set_send_to_kdc_func(context
,
369 smb_krb5_send_and_recv_func
,
372 talloc_free(tmp_ctx
);
376 if (NT_STATUS_EQUAL(smb_krb5
->status
, NT_STATUS_IO_TIMEOUT
)) {
377 talloc_free(smb_krb5
);
381 if (!NT_STATUS_IS_OK(smb_krb5
->status
)) {
382 struct tsocket_address
*addr
= socket_address_to_tsocket_address(smb_krb5
, remote_addr
);
383 const char *addr_string
= NULL
;
385 addr_string
= tsocket_address_inet_addr_string(addr
, smb_krb5
);
389 DEBUG(2,("Error reading smb_krb5 reply packet: %s from %s\n", nt_errstr(smb_krb5
->status
),
391 talloc_free(smb_krb5
);
395 ret
= krb5_data_copy(recv_buf
, smb_krb5
->reply
.data
, smb_krb5
->reply
.length
);
397 talloc_free(tmp_ctx
);
400 talloc_free(smb_krb5
);
404 talloc_free(tmp_ctx
);
408 return KRB5_KDC_UNREACH
;
413 smb_krb5_init_context_basic(TALLOC_CTX
*tmp_ctx
,
414 struct loadparm_context
*lp_ctx
,
415 krb5_context
*_krb5_context
)
418 #ifdef SAMBA4_USES_HEIMDAL
420 const char *config_file
, *realm
;
422 krb5_context krb5_ctx
;
424 initialize_krb5_error_table();
426 ret
= krb5_init_context(&krb5_ctx
);
428 DEBUG(1,("krb5_init_context failed (%s)\n",
429 error_message(ret
)));
433 /* The MIT Kerberos build relies on using the system krb5.conf file.
434 * If you really want to use another file please set KRB5_CONFIG
436 #ifdef SAMBA4_USES_HEIMDAL
437 config_file
= lpcfg_config_path(tmp_ctx
, lp_ctx
, "krb5.conf");
439 krb5_free_context(krb5_ctx
);
443 /* Use our local krb5.conf file by default */
444 ret
= krb5_prepend_config_files_default(config_file
, &config_files
);
446 DEBUG(1,("krb5_prepend_config_files_default failed (%s)\n",
447 smb_get_krb5_error_message(krb5_ctx
, ret
, tmp_ctx
)));
448 krb5_free_context(krb5_ctx
);
452 ret
= krb5_set_config_files(krb5_ctx
, config_files
);
453 krb5_free_config_files(config_files
);
455 DEBUG(1,("krb5_set_config_files failed (%s)\n",
456 smb_get_krb5_error_message(krb5_ctx
, ret
, tmp_ctx
)));
457 krb5_free_context(krb5_ctx
);
461 realm
= lpcfg_realm(lp_ctx
);
463 ret
= krb5_set_default_realm(krb5_ctx
, realm
);
465 DEBUG(1,("krb5_set_default_realm failed (%s)\n",
466 smb_get_krb5_error_message(krb5_ctx
, ret
, tmp_ctx
)));
467 krb5_free_context(krb5_ctx
);
472 *_krb5_context
= krb5_ctx
;
476 krb5_error_code
smb_krb5_init_context(void *parent_ctx
,
477 struct tevent_context
*ev
,
478 struct loadparm_context
*lp_ctx
,
479 struct smb_krb5_context
**smb_krb5_context
)
484 #ifdef SAMBA4_USES_HEIMDAL
485 krb5_log_facility
*logf
;
488 initialize_krb5_error_table();
490 tmp_ctx
= talloc_new(parent_ctx
);
491 *smb_krb5_context
= talloc_zero(tmp_ctx
, struct smb_krb5_context
);
493 if (!*smb_krb5_context
|| !tmp_ctx
) {
494 talloc_free(tmp_ctx
);
498 ret
= smb_krb5_init_context_basic(tmp_ctx
, lp_ctx
, &kctx
);
500 DEBUG(1,("smb_krb5_context_init_basic failed (%s)\n",
501 error_message(ret
)));
502 talloc_free(tmp_ctx
);
505 (*smb_krb5_context
)->krb5_context
= kctx
;
507 talloc_set_destructor(*smb_krb5_context
, smb_krb5_context_destroy
);
509 #ifdef SAMBA4_USES_HEIMDAL
510 /* TODO: Should we have a different name here? */
511 ret
= krb5_initlog(kctx
, "Samba", &logf
);
514 DEBUG(1,("krb5_initlog failed (%s)\n",
515 smb_get_krb5_error_message(kctx
, ret
, tmp_ctx
)));
516 talloc_free(tmp_ctx
);
519 (*smb_krb5_context
)->pvt_log_data
= logf
;
521 ret
= krb5_addlog_func(kctx
, logf
, 0 /* min */, -1 /* max */,
522 smb_krb5_debug_wrapper
,
523 smb_krb5_debug_close
, NULL
);
525 DEBUG(1,("krb5_addlog_func failed (%s)\n",
526 smb_get_krb5_error_message(kctx
, ret
, tmp_ctx
)));
527 talloc_free(tmp_ctx
);
530 krb5_set_warn_dest(kctx
, logf
);
532 /* Set use of our socket lib */
534 struct tevent_context
*previous_ev
;
535 ret
= smb_krb5_context_set_event_ctx(*smb_krb5_context
,
538 talloc_free(tmp_ctx
);
543 /* Set options in kerberos */
545 krb5_set_dns_canonicalize_hostname(kctx
,
546 lpcfg_parm_bool(lp_ctx
, NULL
, "krb5",
547 "set_dns_canonicalize", false));
549 talloc_steal(parent_ctx
, *smb_krb5_context
);
550 talloc_free(tmp_ctx
);
555 #ifdef SAMBA4_USES_HEIMDAL
556 krb5_error_code
smb_krb5_context_set_event_ctx(struct smb_krb5_context
*smb_krb5_context
,
557 struct tevent_context
*ev
,
558 struct tevent_context
**previous_ev
)
565 *previous_ev
= smb_krb5_context
->current_ev
;
567 smb_krb5_context
->current_ev
= talloc_reference(smb_krb5_context
, ev
);
568 if (!smb_krb5_context
->current_ev
) {
572 /* Set use of our socket lib */
573 ret
= krb5_set_send_to_kdc_func(smb_krb5_context
->krb5_context
,
574 smb_krb5_send_and_recv_func
,
577 TALLOC_CTX
*tmp_ctx
= talloc_new(NULL
);
578 DEBUG(1,("krb5_set_send_recv_func failed (%s)\n",
579 smb_get_krb5_error_message(smb_krb5_context
->krb5_context
, ret
, tmp_ctx
)));
580 talloc_free(tmp_ctx
);
581 talloc_unlink(smb_krb5_context
, smb_krb5_context
->current_ev
);
582 smb_krb5_context
->current_ev
= NULL
;
588 krb5_error_code
smb_krb5_context_remove_event_ctx(struct smb_krb5_context
*smb_krb5_context
,
589 struct tevent_context
*previous_ev
,
590 struct tevent_context
*ev
)
593 talloc_unlink(smb_krb5_context
, ev
);
594 /* If there was a mismatch with things happening on a stack, then don't wipe things */
595 smb_krb5_context
->current_ev
= previous_ev
;
596 /* Set use of our socket lib */
597 ret
= krb5_set_send_to_kdc_func(smb_krb5_context
->krb5_context
,
598 smb_krb5_send_and_recv_func
,
601 TALLOC_CTX
*tmp_ctx
= talloc_new(NULL
);
602 DEBUG(1,("krb5_set_send_recv_func failed (%s)\n",
603 smb_get_krb5_error_message(smb_krb5_context
->krb5_context
, ret
, tmp_ctx
)));
604 talloc_free(tmp_ctx
);