2 Unix SMB/CIFS implementation.
4 Copyright (C) Stefan Metzmacher 2014
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "system/filesys.h"
23 #include "lib/util/server_id.h"
24 #include "smbd/smbd.h"
25 #include "smbd/globals.h"
26 #include "dbwrap/dbwrap.h"
27 #include "dbwrap/dbwrap_rbt.h"
28 #include "dbwrap/dbwrap_open.h"
29 #include "dbwrap/dbwrap_watch.h"
32 #include "auth/gensec/gensec.h"
33 #include "../lib/tsocket/tsocket.h"
34 #include "../libcli/security/security.h"
36 #include "lib/util/util_tdb.h"
37 #include "librpc/gen_ndr/ndr_smbXsrv.h"
39 #include "lib/util/tevent_ntstatus.h"
40 #include "lib/util/iov_buf.h"
42 struct smbXsrv_client_table
{
48 struct db_context
*db_ctx
;
52 static struct db_context
*smbXsrv_client_global_db_ctx
= NULL
;
54 NTSTATUS
smbXsrv_client_global_init(void)
56 const char *global_path
= NULL
;
57 struct db_context
*db_ctx
= NULL
;
59 if (smbXsrv_client_global_db_ctx
!= NULL
) {
64 * This contains secret information like client keys!
66 global_path
= lock_path("smbXsrv_client_global.tdb");
67 if (global_path
== NULL
) {
68 return NT_STATUS_NO_MEMORY
;
71 db_ctx
= db_open(NULL
, global_path
,
75 TDB_INCOMPATIBLE_HASH
,
76 O_RDWR
| O_CREAT
, 0600,
82 status
= map_nt_error_from_unix_common(errno
);
87 smbXsrv_client_global_db_ctx
= db_ctx
;
94 * We need to store the keys in big endian so that dbwrap_rbt's memcmp
95 * has the same result as integer comparison between the uint32_t
98 * TODO: implement string based key
101 #define SMBXSRV_CLIENT_GLOBAL_TDB_KEY_SIZE 16
103 static TDB_DATA
smbXsrv_client_global_id_to_key(const struct GUID
*client_guid
,
106 TDB_DATA key
= { .dsize
= 0, };
110 status
= GUID_to_ndr_blob(client_guid
, talloc_tos(), &b
);
111 if (!NT_STATUS_IS_OK(status
)) {
114 memcpy(key_buf
, b
.data
, SMBXSRV_CLIENT_GLOBAL_TDB_KEY_SIZE
);
117 key
= make_tdb_data(key_buf
, SMBXSRV_CLIENT_GLOBAL_TDB_KEY_SIZE
);
122 static struct db_record
*smbXsrv_client_global_fetch_locked(
123 struct db_context
*db
,
124 const struct GUID
*client_guid
,
128 uint8_t key_buf
[SMBXSRV_CLIENT_GLOBAL_TDB_KEY_SIZE
];
129 struct db_record
*rec
= NULL
;
131 key
= smbXsrv_client_global_id_to_key(client_guid
, key_buf
);
133 rec
= dbwrap_fetch_locked(db
, mem_ctx
, key
);
136 DBG_DEBUG("Failed to lock guid [%s], key '%s'\n",
137 GUID_string(talloc_tos(), client_guid
),
138 hex_encode_talloc(talloc_tos(), key
.dptr
, key
.dsize
));
144 static NTSTATUS
smbXsrv_client_table_create(TALLOC_CTX
*mem_ctx
,
145 struct messaging_context
*msg_ctx
,
146 uint32_t max_clients
,
147 struct smbXsrv_client_table
**_table
)
149 struct smbXsrv_client_table
*table
;
152 if (max_clients
> 1) {
153 return NT_STATUS_INTERNAL_ERROR
;
156 table
= talloc_zero(mem_ctx
, struct smbXsrv_client_table
);
158 return NT_STATUS_NO_MEMORY
;
161 table
->local
.max_clients
= max_clients
;
163 status
= smbXsrv_client_global_init();
164 if (!NT_STATUS_IS_OK(status
)) {
169 table
->global
.db_ctx
= smbXsrv_client_global_db_ctx
;
175 static int smbXsrv_client_global_destructor(struct smbXsrv_client_global0
*global
)
180 static void smbXsrv_client_global_verify_record(struct db_record
*db_rec
,
184 struct smbXsrv_client_global0
**_g
)
189 struct smbXsrv_client_globalB global_blob
;
190 enum ndr_err_code ndr_err
;
191 struct smbXsrv_client_global0
*global
= NULL
;
193 TALLOC_CTX
*frame
= talloc_stackframe();
204 key
= dbwrap_record_get_key(db_rec
);
206 val
= dbwrap_record_get_value(db_rec
);
207 if (val
.dsize
== 0) {
216 blob
= data_blob_const(val
.dptr
, val
.dsize
);
218 ndr_err
= ndr_pull_struct_blob(&blob
, frame
, &global_blob
,
219 (ndr_pull_flags_fn_t
)ndr_pull_smbXsrv_client_globalB
);
220 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
221 NTSTATUS status
= ndr_map_error2ntstatus(ndr_err
);
222 DBG_WARNING("smbXsrv_client_global_verify_record: "
223 "key '%s' ndr_pull_struct_blob - %s\n",
224 hex_encode_talloc(frame
, key
.dptr
, key
.dsize
),
230 DBG_DEBUG("client_global:\n");
231 if (DEBUGLVL(DBGLVL_DEBUG
)) {
232 NDR_PRINT_DEBUG(smbXsrv_client_globalB
, &global_blob
);
235 if (global_blob
.version
!= SMBXSRV_VERSION_0
) {
236 DBG_ERR("key '%s' use unsupported version %u\n",
237 hex_encode_talloc(frame
, key
.dptr
, key
.dsize
),
238 global_blob
.version
);
239 NDR_PRINT_DEBUG(smbXsrv_client_globalB
, &global_blob
);
244 global
= global_blob
.info
.info0
;
246 exists
= serverid_exists(&global
->server_id
);
248 struct server_id_buf tmp
;
250 DBG_NOTICE("key '%s' server_id %s does not exist.\n",
251 hex_encode_talloc(frame
, key
.dptr
, key
.dsize
),
252 server_id_str_buf(global
->server_id
, &tmp
));
253 if (DEBUGLVL(DBGLVL_NOTICE
)) {
254 NDR_PRINT_DEBUG(smbXsrv_client_globalB
, &global_blob
);
257 dbwrap_record_delete(db_rec
);
263 *_g
= talloc_move(mem_ctx
, &global
);
268 NTSTATUS
smb2srv_client_lookup_global(struct smbXsrv_client
*client
,
269 struct GUID client_guid
,
271 struct smbXsrv_client_global0
**_global
)
273 struct smbXsrv_client_table
*table
= client
->table
;
274 struct smbXsrv_client_global0
*global
= NULL
;
275 bool is_free
= false;
276 struct db_record
*db_rec
;
278 db_rec
= smbXsrv_client_global_fetch_locked(table
->global
.db_ctx
,
281 if (db_rec
== NULL
) {
282 return NT_STATUS_INTERNAL_DB_ERROR
;
285 smbXsrv_client_global_verify_record(db_rec
,
293 return NT_STATUS_OBJECTID_NOT_FOUND
;
300 NTSTATUS
smb2srv_client_connection_pass(struct smbd_smb2_request
*smb2req
,
301 struct smbXsrv_client_global0
*global
)
304 enum ndr_err_code ndr_err
;
306 struct smbXsrv_connection_pass0 pass_info0
;
307 struct smbXsrv_connection_passB pass_blob
;
311 pass_info0
.initial_connect_time
= global
->initial_connect_time
;
312 pass_info0
.client_guid
= global
->client_guid
;
314 reqlen
= iov_buflen(smb2req
->in
.vector
, smb2req
->in
.vector_count
);
316 return NT_STATUS_INVALID_BUFFER_SIZE
;
319 pass_info0
.negotiate_request
.length
= reqlen
;
320 pass_info0
.negotiate_request
.data
= talloc_array(talloc_tos(), uint8_t,
322 if (pass_info0
.negotiate_request
.data
== NULL
) {
323 return NT_STATUS_NO_MEMORY
;
325 iov_buf(smb2req
->in
.vector
, smb2req
->in
.vector_count
,
326 pass_info0
.negotiate_request
.data
,
327 pass_info0
.negotiate_request
.length
);
329 ZERO_STRUCT(pass_blob
);
330 pass_blob
.version
= smbXsrv_version_global_current();
331 pass_blob
.info
.info0
= &pass_info0
;
333 if (DEBUGLVL(DBGLVL_DEBUG
)) {
334 NDR_PRINT_DEBUG(smbXsrv_connection_passB
, &pass_blob
);
337 ndr_err
= ndr_push_struct_blob(&blob
, talloc_tos(), &pass_blob
,
338 (ndr_push_flags_fn_t
)ndr_push_smbXsrv_connection_passB
);
339 data_blob_free(&pass_info0
.negotiate_request
);
340 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
341 status
= ndr_map_error2ntstatus(ndr_err
);
345 iov
.iov_base
= blob
.data
;
346 iov
.iov_len
= blob
.length
;
348 status
= messaging_send_iov(smb2req
->xconn
->msg_ctx
,
350 MSG_SMBXSRV_CONNECTION_PASS
,
352 &smb2req
->xconn
->transport
.sock
, 1);
353 data_blob_free(&blob
);
354 if (!NT_STATUS_IS_OK(status
)) {
361 static NTSTATUS
smbXsrv_client_global_store(struct smbXsrv_client_global0
*global
)
363 struct smbXsrv_client_globalB global_blob
;
364 DATA_BLOB blob
= data_blob_null
;
368 enum ndr_err_code ndr_err
;
369 bool saved_stored
= global
->stored
;
372 * TODO: if we use other versions than '0'
373 * we would add glue code here, that would be able to
374 * store the information in the old format.
377 if (global
->db_rec
== NULL
) {
378 return NT_STATUS_INTERNAL_ERROR
;
381 key
= dbwrap_record_get_key(global
->db_rec
);
382 val
= dbwrap_record_get_value(global
->db_rec
);
384 ZERO_STRUCT(global_blob
);
385 global_blob
.version
= smbXsrv_version_global_current();
386 if (val
.dsize
>= 8) {
387 global_blob
.seqnum
= IVAL(val
.dptr
, 4);
389 global_blob
.seqnum
+= 1;
390 global_blob
.info
.info0
= global
;
392 global
->stored
= true;
393 ndr_err
= ndr_push_struct_blob(&blob
, global
->db_rec
, &global_blob
,
394 (ndr_push_flags_fn_t
)ndr_push_smbXsrv_client_globalB
);
395 global
->stored
= saved_stored
;
396 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
397 status
= ndr_map_error2ntstatus(ndr_err
);
398 DBG_WARNING("key '%s' ndr_push - %s\n",
399 hex_encode_talloc(global
->db_rec
, key
.dptr
, key
.dsize
),
401 TALLOC_FREE(global
->db_rec
);
405 val
= make_tdb_data(blob
.data
, blob
.length
);
406 status
= dbwrap_record_store(global
->db_rec
, val
, TDB_REPLACE
);
407 if (!NT_STATUS_IS_OK(status
)) {
408 DBG_WARNING("key '%s' store - %s\n",
409 hex_encode_talloc(global
->db_rec
, key
.dptr
, key
.dsize
),
411 TALLOC_FREE(global
->db_rec
);
415 global
->stored
= true;
417 if (DEBUGLVL(DBGLVL_DEBUG
)) {
418 DBG_DEBUG("key '%s' stored\n",
419 hex_encode_talloc(global
->db_rec
, key
.dptr
, key
.dsize
));
420 NDR_PRINT_DEBUG(smbXsrv_client_globalB
, &global_blob
);
423 TALLOC_FREE(global
->db_rec
);
428 static NTSTATUS
smbXsrv_client_global_remove(struct smbXsrv_client_global0
*global
)
434 * TODO: if we use other versions than '0'
435 * we would add glue code here, that would be able to
436 * store the information in the old format.
439 if (global
->db_rec
== NULL
) {
440 return NT_STATUS_INTERNAL_ERROR
;
443 key
= dbwrap_record_get_key(global
->db_rec
);
445 status
= dbwrap_record_delete(global
->db_rec
);
446 if (!NT_STATUS_IS_OK(status
)) {
447 DBG_WARNING("key '%s' delete - %s\n",
448 hex_encode_talloc(global
->db_rec
, key
.dptr
, key
.dsize
),
450 TALLOC_FREE(global
->db_rec
);
453 global
->stored
= false;
454 DBG_DEBUG("key '%s' delete\n",
455 hex_encode_talloc(global
->db_rec
, key
.dptr
, key
.dsize
));
457 TALLOC_FREE(global
->db_rec
);
462 static int smbXsrv_client_destructor(struct smbXsrv_client
*client
)
466 status
= smbXsrv_client_remove(client
);
467 if (!NT_STATUS_IS_OK(status
)) {
468 DBG_ERR("smbXsrv_client_remove() failed: %s\n",
472 TALLOC_FREE(client
->global
);
477 static bool smbXsrv_client_connection_pass_filter(struct messaging_rec
*rec
, void *private_data
);
478 static void smbXsrv_client_connection_pass_loop(struct tevent_req
*subreq
);
480 NTSTATUS
smbXsrv_client_create(TALLOC_CTX
*mem_ctx
,
481 struct tevent_context
*ev_ctx
,
482 struct messaging_context
*msg_ctx
,
484 struct smbXsrv_client
**_client
)
486 struct smbXsrv_client_table
*table
;
487 struct smbXsrv_client
*client
= NULL
;
488 struct smbXsrv_client_global0
*global
= NULL
;
490 struct tevent_req
*subreq
= NULL
;
492 status
= smbXsrv_client_table_create(mem_ctx
,
496 if (!NT_STATUS_IS_OK(status
)) {
500 if (table
->local
.num_clients
>= table
->local
.max_clients
) {
502 return NT_STATUS_INSUFFICIENT_RESOURCES
;
505 client
= talloc_zero(mem_ctx
, struct smbXsrv_client
);
506 if (client
== NULL
) {
508 return NT_STATUS_NO_MEMORY
;
510 client
->raw_ev_ctx
= ev_ctx
;
511 client
->msg_ctx
= msg_ctx
;
513 client
->server_multi_channel_enabled
= lp_server_multi_channel_support();
515 client
->table
= talloc_move(client
, &table
);
516 table
= client
->table
;
518 global
= talloc_zero(client
, struct smbXsrv_client_global0
);
519 if (global
== NULL
) {
521 return NT_STATUS_NO_MEMORY
;
523 talloc_set_destructor(global
, smbXsrv_client_global_destructor
);
524 client
->global
= global
;
526 global
->initial_connect_time
= now
;
528 global
->server_id
= messaging_server_id(client
->msg_ctx
);
530 table
->local
.num_clients
+= 1;
532 talloc_set_destructor(client
, smbXsrv_client_destructor
);
534 if (DEBUGLVL(DBGLVL_DEBUG
)) {
535 struct smbXsrv_clientB client_blob
;
537 ZERO_STRUCT(client_blob
);
538 client_blob
.version
= SMBXSRV_VERSION_0
;
539 client_blob
.info
.info0
= client
;
541 DBG_DEBUG("client_guid[%s] stored\n",
542 GUID_string(talloc_tos(), &global
->client_guid
));
543 NDR_PRINT_DEBUG(smbXsrv_clientB
, &client_blob
);
546 subreq
= messaging_filtered_read_send(client
,
549 smbXsrv_client_connection_pass_filter
,
551 if (subreq
== NULL
) {
553 return NT_STATUS_NO_MEMORY
;
555 tevent_req_set_callback(subreq
, smbXsrv_client_connection_pass_loop
, client
);
561 static bool smbXsrv_client_connection_pass_filter(struct messaging_rec
*rec
, void *private_data
)
563 if (rec
->msg_type
!= MSG_SMBXSRV_CONNECTION_PASS
) {
567 if (rec
->num_fds
!= 1) {
571 if (rec
->buf
.length
< SMB2_HDR_BODY
) {
575 /* TODO: verify client_guid...? */
580 static void smbXsrv_client_connection_pass_loop(struct tevent_req
*subreq
)
582 struct smbXsrv_client
*client
=
583 tevent_req_callback_data(subreq
,
584 struct smbXsrv_client
);
585 struct smbXsrv_connection
*xconn
= NULL
;
587 struct messaging_rec
*rec
= NULL
;
588 struct smbXsrv_connection_passB pass_blob
;
589 enum ndr_err_code ndr_err
;
590 struct smbXsrv_connection_pass0
*pass_info0
= NULL
;
595 ret
= messaging_filtered_read_recv(subreq
, talloc_tos(), &rec
);
601 ndr_err
= ndr_pull_struct_blob(&rec
->buf
, rec
, &pass_blob
,
602 (ndr_pull_flags_fn_t
)ndr_pull_smbXsrv_connection_passB
);
603 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
604 status
= ndr_map_error2ntstatus(ndr_err
);
605 DBG_WARNING("ndr_pull_struct_blob - %s\n", nt_errstr(status
));
609 DBG_DEBUG("MSG_SMBXSRV_CLIENT_CLOSE\n");
610 if (DEBUGLVL(DBGLVL_DEBUG
)) {
611 NDR_PRINT_DEBUG(smbXsrv_connection_passB
, &pass_blob
);
614 if (pass_blob
.version
!= SMBXSRV_VERSION_0
) {
615 DBG_ERR("ignore invalid version %u\n", pass_blob
.version
);
616 NDR_PRINT_DEBUG(smbXsrv_connection_passB
, &pass_blob
);
620 pass_info0
= pass_blob
.info
.info0
;
621 if (pass_info0
== NULL
) {
622 DBG_ERR("ignore NULL info %u\n", pass_blob
.version
);
623 NDR_PRINT_DEBUG(smbXsrv_connection_passB
, &pass_blob
);
627 if (!GUID_equal(&client
->global
->client_guid
, &pass_info0
->client_guid
))
629 DBG_WARNING("client's client_guid [%s] != passed guid [%s]\n",
630 GUID_string(talloc_tos(), &client
->global
->client_guid
),
631 GUID_string(talloc_tos(), &pass_info0
->client_guid
));
632 if (DEBUGLVL(DBGLVL_WARNING
)) {
633 NDR_PRINT_DEBUG(smbXsrv_connection_passB
, &pass_blob
);
638 if (client
->global
->initial_connect_time
!=
639 pass_info0
->initial_connect_time
)
641 DBG_WARNING("client's initial connect time [%s] (%llu) != "
642 "passed initial connect time [%s] (%llu)\n",
643 nt_time_string(talloc_tos(),
644 client
->global
->initial_connect_time
),
645 (unsigned long long)client
->global
->initial_connect_time
,
646 nt_time_string(talloc_tos(),
647 pass_info0
->initial_connect_time
),
648 (unsigned long long)pass_info0
->initial_connect_time
);
649 if (DEBUGLVL(DBGLVL_WARNING
)) {
650 NDR_PRINT_DEBUG(smbXsrv_connection_passB
, &pass_blob
);
655 SMB_ASSERT(rec
->num_fds
== 1);
656 sock_fd
= rec
->fds
[0];
658 DBG_ERR("got connection sockfd[%d]\n", sock_fd
);
659 NDR_PRINT_DEBUG(smbXsrv_connection_passB
, &pass_blob
);
660 status
= smbd_add_connection(client
, sock_fd
, &xconn
);
661 if (!NT_STATUS_IS_OK(status
)) {
664 DBG_ERR("smbd_add_connection => %s\n", nt_errstr(status
));
665 NDR_PRINT_DEBUG(smbXsrv_connection_passB
, &pass_blob
);
670 * Set seq_low to mid received in negprot
672 seq_low
= BVAL(pass_info0
->negotiate_request
.data
,
673 SMB2_HDR_MESSAGE_ID
);
675 xconn
->smb2
.client
.guid_verified
= true;
676 smbd_smb2_process_negprot(xconn
, seq_low
,
677 pass_info0
->negotiate_request
.data
,
678 pass_info0
->negotiate_request
.length
);
683 subreq
= messaging_filtered_read_send(client
,
686 smbXsrv_client_connection_pass_filter
,
688 if (subreq
== NULL
) {
690 r
= "messaging_read_send(MSG_SMBXSRV_CONNECTION_PASS failed";
691 exit_server_cleanly(r
);
694 tevent_req_set_callback(subreq
, smbXsrv_client_connection_pass_loop
, client
);
697 NTSTATUS
smbXsrv_client_update(struct smbXsrv_client
*client
)
699 struct smbXsrv_client_table
*table
= client
->table
;
702 if (client
->global
->db_rec
!= NULL
) {
703 DBG_ERR("guid [%s]: Called with db_rec != NULL'\n",
704 GUID_string(talloc_tos(),
705 &client
->global
->client_guid
));
706 return NT_STATUS_INTERNAL_ERROR
;
709 client
->global
->db_rec
= smbXsrv_client_global_fetch_locked(
710 table
->global
.db_ctx
,
711 &client
->global
->client_guid
,
712 client
->global
/* TALLOC_CTX */);
713 if (client
->global
->db_rec
== NULL
) {
714 return NT_STATUS_INTERNAL_DB_ERROR
;
717 status
= smbXsrv_client_global_store(client
->global
);
718 if (!NT_STATUS_IS_OK(status
)) {
719 DBG_ERR("client_guid[%s] store failed - %s\n",
720 GUID_string(talloc_tos(), &client
->global
->client_guid
),
725 if (DEBUGLVL(DBGLVL_DEBUG
)) {
726 struct smbXsrv_clientB client_blob
;
728 ZERO_STRUCT(client_blob
);
729 client_blob
.version
= SMBXSRV_VERSION_0
;
730 client_blob
.info
.info0
= client
;
732 DBG_DEBUG("client_guid[%s] stored\n",
733 GUID_string(talloc_tos(), &client
->global
->client_guid
));
734 NDR_PRINT_DEBUG(smbXsrv_clientB
, &client_blob
);
740 NTSTATUS
smbXsrv_client_remove(struct smbXsrv_client
*client
)
742 struct smbXsrv_client_table
*table
= client
->table
;
745 if (client
->global
->db_rec
!= NULL
) {
746 DBG_ERR("client_guid[%s]: Called with db_rec != NULL'\n",
747 GUID_string(talloc_tos(), &client
->global
->client_guid
));
748 return NT_STATUS_INTERNAL_ERROR
;
751 if (!client
->global
->stored
) {
755 client
->global
->db_rec
= smbXsrv_client_global_fetch_locked(
756 table
->global
.db_ctx
,
757 &client
->global
->client_guid
,
758 client
->global
/* TALLOC_CTX */);
759 if (client
->global
->db_rec
== NULL
) {
760 return NT_STATUS_INTERNAL_DB_ERROR
;
763 status
= smbXsrv_client_global_remove(client
->global
);
764 if (!NT_STATUS_IS_OK(status
)) {
765 DBG_ERR("client_guid[%s] store failed - %s\n",
766 GUID_string(talloc_tos(), &client
->global
->client_guid
),
771 if (DEBUGLVL(DBGLVL_DEBUG
)) {
772 struct smbXsrv_clientB client_blob
;
774 ZERO_STRUCT(client_blob
);
775 client_blob
.version
= SMBXSRV_VERSION_0
;
776 client_blob
.info
.info0
= client
;
778 DBG_DEBUG("client_guid[%s] stored\n",
779 GUID_string(talloc_tos(), &client
->global
->client_guid
));
780 NDR_PRINT_DEBUG(smbXsrv_clientB
, &client_blob
);