2 Unix SMB/CIFS implementation.
4 Copyright (C) Stefan Metzmacher 2012
5 Copyright (C) Michael Adam 2012
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #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 "../libcli/security/security.h"
31 #include "lib/util/util_tdb.h"
32 #include "librpc/gen_ndr/ndr_smbXsrv.h"
35 struct smbXsrv_open_table
{
37 struct db_context
*db_ctx
;
38 struct db_context
*replay_cache_db_ctx
;
45 struct db_context
*db_ctx
;
49 static struct db_context
*smbXsrv_open_global_db_ctx
= NULL
;
51 NTSTATUS
smbXsrv_open_global_init(void)
53 char *global_path
= NULL
;
54 struct db_context
*db_ctx
= NULL
;
56 if (smbXsrv_open_global_db_ctx
!= NULL
) {
60 global_path
= lock_path(talloc_tos(), "smbXsrv_open_global.tdb");
61 if (global_path
== NULL
) {
62 return NT_STATUS_NO_MEMORY
;
65 db_ctx
= db_open(NULL
, global_path
,
69 TDB_INCOMPATIBLE_HASH
,
70 O_RDWR
| O_CREAT
, 0600,
73 TALLOC_FREE(global_path
);
77 status
= map_nt_error_from_unix_common(errno
);
82 smbXsrv_open_global_db_ctx
= db_ctx
;
89 * We need to store the keys in big endian so that dbwrap_rbt's memcmp
90 * has the same result as integer comparison between the uint32_t
93 * TODO: implement string based key
96 #define SMBXSRV_OPEN_GLOBAL_TDB_KEY_SIZE sizeof(uint32_t)
98 static TDB_DATA
smbXsrv_open_global_id_to_key(uint32_t id
,
103 RSIVAL(key_buf
, 0, id
);
105 key
= make_tdb_data(key_buf
, SMBXSRV_OPEN_GLOBAL_TDB_KEY_SIZE
);
111 static NTSTATUS
smbXsrv_open_global_key_to_id(TDB_DATA key
, uint32_t *id
)
114 return NT_STATUS_INVALID_PARAMETER
;
117 if (key
.dsize
!= SMBXSRV_OPEN_GLOBAL_TDB_KEY_SIZE
) {
118 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
121 *id
= RIVAL(key
.dptr
, 0);
127 #define SMBXSRV_OPEN_LOCAL_TDB_KEY_SIZE sizeof(uint32_t)
129 static TDB_DATA
smbXsrv_open_local_id_to_key(uint32_t id
,
134 RSIVAL(key_buf
, 0, id
);
136 key
= make_tdb_data(key_buf
, SMBXSRV_OPEN_LOCAL_TDB_KEY_SIZE
);
141 static NTSTATUS
smbXsrv_open_local_key_to_id(TDB_DATA key
, uint32_t *id
)
144 return NT_STATUS_INVALID_PARAMETER
;
147 if (key
.dsize
!= SMBXSRV_OPEN_LOCAL_TDB_KEY_SIZE
) {
148 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
151 *id
= RIVAL(key
.dptr
, 0);
156 static struct db_record
*smbXsrv_open_global_fetch_locked(
157 struct db_context
*db
,
162 uint8_t key_buf
[SMBXSRV_OPEN_GLOBAL_TDB_KEY_SIZE
];
163 struct db_record
*rec
= NULL
;
165 key
= smbXsrv_open_global_id_to_key(id
, key_buf
);
167 rec
= dbwrap_fetch_locked(db
, mem_ctx
, key
);
170 DBG_DEBUG("Failed to lock global id 0x%08x, key '%s'\n", id
,
171 hex_encode_talloc(talloc_tos(), key
.dptr
, key
.dsize
));
177 static struct db_record
*smbXsrv_open_local_fetch_locked(
178 struct db_context
*db
,
183 uint8_t key_buf
[SMBXSRV_OPEN_LOCAL_TDB_KEY_SIZE
];
184 struct db_record
*rec
= NULL
;
186 key
= smbXsrv_open_local_id_to_key(id
, key_buf
);
188 rec
= dbwrap_fetch_locked(db
, mem_ctx
, key
);
191 DBG_DEBUG("Failed to lock local id 0x%08x, key '%s'\n", id
,
192 hex_encode_talloc(talloc_tos(), key
.dptr
, key
.dsize
));
198 static NTSTATUS
smbXsrv_open_table_init(struct smbXsrv_connection
*conn
,
203 struct smbXsrv_client
*client
= conn
->client
;
204 struct smbXsrv_open_table
*table
;
208 if (lowest_id
> highest_id
) {
209 return NT_STATUS_INTERNAL_ERROR
;
212 max_range
= highest_id
;
213 max_range
-= lowest_id
;
216 if (max_opens
> max_range
) {
217 return NT_STATUS_INTERNAL_ERROR
;
220 table
= talloc_zero(client
, struct smbXsrv_open_table
);
222 return NT_STATUS_NO_MEMORY
;
225 table
->local
.db_ctx
= db_open_rbt(table
);
226 if (table
->local
.db_ctx
== NULL
) {
228 return NT_STATUS_NO_MEMORY
;
230 table
->local
.replay_cache_db_ctx
= db_open_rbt(table
);
231 if (table
->local
.replay_cache_db_ctx
== NULL
) {
233 return NT_STATUS_NO_MEMORY
;
235 table
->local
.lowest_id
= lowest_id
;
236 table
->local
.highest_id
= highest_id
;
237 table
->local
.max_opens
= max_opens
;
239 status
= smbXsrv_open_global_init();
240 if (!NT_STATUS_IS_OK(status
)) {
245 table
->global
.db_ctx
= smbXsrv_open_global_db_ctx
;
247 client
->open_table
= table
;
251 struct smbXsrv_open_local_allocate_state
{
252 const uint32_t lowest_id
;
253 const uint32_t highest_id
;
259 static int smbXsrv_open_local_allocate_traverse(struct db_record
*rec
,
262 struct smbXsrv_open_local_allocate_state
*state
=
263 (struct smbXsrv_open_local_allocate_state
*)private_data
;
264 TDB_DATA key
= dbwrap_record_get_key(rec
);
268 status
= smbXsrv_open_local_key_to_id(key
, &id
);
269 if (!NT_STATUS_IS_OK(status
)) {
270 state
->status
= status
;
274 if (id
<= state
->last_id
) {
275 state
->status
= NT_STATUS_INTERNAL_DB_CORRUPTION
;
280 if (id
> state
->useable_id
) {
281 state
->status
= NT_STATUS_OK
;
285 if (state
->useable_id
== state
->highest_id
) {
286 state
->status
= NT_STATUS_INSUFFICIENT_RESOURCES
;
290 state
->useable_id
+=1;
294 static NTSTATUS
smbXsrv_open_local_allocate_id(struct db_context
*db
,
298 struct db_record
**_rec
,
301 struct smbXsrv_open_local_allocate_state state
= {
302 .lowest_id
= lowest_id
,
303 .highest_id
= highest_id
,
305 .useable_id
= lowest_id
,
306 .status
= NT_STATUS_INTERNAL_ERROR
,
316 if (lowest_id
> highest_id
) {
317 return NT_STATUS_INSUFFICIENT_RESOURCES
;
321 * first we try randomly
323 range
= (highest_id
- lowest_id
) + 1;
325 for (i
= 0; i
< (range
/ 2); i
++) {
328 struct db_record
*rec
= NULL
;
330 id
= generate_random() % range
;
333 if (id
< lowest_id
) {
336 if (id
> highest_id
) {
340 rec
= smbXsrv_open_local_fetch_locked(db
, id
, mem_ctx
);
342 return NT_STATUS_INSUFFICIENT_RESOURCES
;
345 val
= dbwrap_record_get_value(rec
);
346 if (val
.dsize
!= 0) {
357 * if the range is almost full,
358 * we traverse the whole table
359 * (this relies on sorted behavior of dbwrap_rbt)
361 status
= dbwrap_traverse_read(db
, smbXsrv_open_local_allocate_traverse
,
363 if (NT_STATUS_IS_OK(status
)) {
364 if (NT_STATUS_IS_OK(state
.status
)) {
365 return NT_STATUS_INTERNAL_ERROR
;
368 if (!NT_STATUS_EQUAL(state
.status
, NT_STATUS_INTERNAL_ERROR
)) {
372 if (state
.useable_id
<= state
.highest_id
) {
373 state
.status
= NT_STATUS_OK
;
375 return NT_STATUS_INSUFFICIENT_RESOURCES
;
377 } else if (!NT_STATUS_EQUAL(status
, NT_STATUS_INTERNAL_DB_CORRUPTION
)) {
379 * Here we really expect NT_STATUS_INTERNAL_DB_CORRUPTION!
381 * If we get anything else it is an error, because it
382 * means we did not manage to find a free slot in
385 return NT_STATUS_INSUFFICIENT_RESOURCES
;
388 if (NT_STATUS_IS_OK(state
.status
)) {
391 struct db_record
*rec
= NULL
;
393 id
= state
.useable_id
;
395 rec
= smbXsrv_open_local_fetch_locked(db
, id
, mem_ctx
);
397 return NT_STATUS_INSUFFICIENT_RESOURCES
;
400 val
= dbwrap_record_get_value(rec
);
401 if (val
.dsize
!= 0) {
403 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
414 struct smbXsrv_open_local_fetch_state
{
415 struct smbXsrv_open
*op
;
419 static void smbXsrv_open_local_fetch_parser(TDB_DATA key
, TDB_DATA data
,
422 struct smbXsrv_open_local_fetch_state
*state
=
423 (struct smbXsrv_open_local_fetch_state
*)private_data
;
426 if (data
.dsize
!= sizeof(ptr
)) {
427 state
->status
= NT_STATUS_INTERNAL_DB_ERROR
;
431 memcpy(&ptr
, data
.dptr
, data
.dsize
);
432 state
->op
= talloc_get_type_abort(ptr
, struct smbXsrv_open
);
433 state
->status
= NT_STATUS_OK
;
436 static NTSTATUS
smbXsrv_open_local_lookup(struct smbXsrv_open_table
*table
,
437 uint32_t open_local_id
,
438 uint32_t open_global_id
,
440 struct smbXsrv_open
**_open
)
442 struct smbXsrv_open_local_fetch_state state
= {
444 .status
= NT_STATUS_INTERNAL_ERROR
,
446 uint8_t key_buf
[SMBXSRV_OPEN_LOCAL_TDB_KEY_SIZE
];
452 if (open_local_id
== 0) {
453 return NT_STATUS_FILE_CLOSED
;
457 /* this might happen before the end of negprot */
458 return NT_STATUS_FILE_CLOSED
;
461 if (table
->local
.db_ctx
== NULL
) {
462 return NT_STATUS_INTERNAL_ERROR
;
465 key
= smbXsrv_open_local_id_to_key(open_local_id
, key_buf
);
467 status
= dbwrap_parse_record(table
->local
.db_ctx
, key
,
468 smbXsrv_open_local_fetch_parser
,
470 if (NT_STATUS_EQUAL(status
, NT_STATUS_NOT_FOUND
)) {
471 return NT_STATUS_FILE_CLOSED
;
473 if (!NT_STATUS_IS_OK(status
)) {
476 if (!NT_STATUS_IS_OK(state
.status
)) {
480 if (NT_STATUS_EQUAL(state
.op
->status
, NT_STATUS_FILE_CLOSED
)) {
481 return NT_STATUS_FILE_CLOSED
;
484 if (open_global_id
== 0) {
485 /* make the global check a no-op for SMB1 */
486 open_global_id
= state
.op
->global
->open_global_id
;
489 if (state
.op
->global
->open_global_id
!= open_global_id
) {
490 return NT_STATUS_FILE_CLOSED
;
494 state
.op
->idle_time
= now
;
498 return state
.op
->status
;
501 static int smbXsrv_open_global_destructor(struct smbXsrv_open_global0
*global
)
506 static void smbXsrv_open_global_verify_record(struct db_record
*db_rec
,
510 struct smbXsrv_open_global0
**_g
);
512 static NTSTATUS
smbXsrv_open_global_allocate(struct db_context
*db
,
514 struct smbXsrv_open_global0
**_global
)
517 struct smbXsrv_open_global0
*global
= NULL
;
518 uint32_t last_free
= 0;
519 const uint32_t min_tries
= 3;
523 global
= talloc_zero(mem_ctx
, struct smbXsrv_open_global0
);
524 if (global
== NULL
) {
525 return NT_STATUS_NO_MEMORY
;
527 talloc_set_destructor(global
, smbXsrv_open_global_destructor
);
530 * Here we just randomly try the whole 32-bit space
532 * We use just 32-bit, because we want to reuse the
535 for (i
= 0; i
< UINT32_MAX
; i
++) {
536 bool is_free
= false;
537 bool was_free
= false;
540 if (i
>= min_tries
&& last_free
!= 0) {
543 id
= generate_random();
548 if (id
== UINT32_MAX
) {
552 global
->db_rec
= smbXsrv_open_global_fetch_locked(db
, id
, mem_ctx
);
553 if (global
->db_rec
== NULL
) {
555 return NT_STATUS_INSUFFICIENT_RESOURCES
;
558 smbXsrv_open_global_verify_record(global
->db_rec
,
564 TALLOC_FREE(global
->db_rec
);
568 if (!was_free
&& i
< min_tries
) {
570 * The session_id is free now,
571 * but was not free before.
573 * This happens if a smbd crashed
574 * and did not cleanup the record.
576 * If this is one of our first tries,
577 * then we try to find a real free one.
579 if (last_free
== 0) {
582 TALLOC_FREE(global
->db_rec
);
586 global
->open_global_id
= id
;
592 /* should not be reached */
594 return NT_STATUS_INTERNAL_ERROR
;
597 static void smbXsrv_open_global_verify_record(struct db_record
*db_rec
,
601 struct smbXsrv_open_global0
**_g
)
606 struct smbXsrv_open_globalB global_blob
;
607 enum ndr_err_code ndr_err
;
608 struct smbXsrv_open_global0
*global
= NULL
;
610 TALLOC_CTX
*frame
= talloc_stackframe();
621 key
= dbwrap_record_get_key(db_rec
);
623 val
= dbwrap_record_get_value(db_rec
);
624 if (val
.dsize
== 0) {
625 DEBUG(10, ("%s: empty value\n", __func__
));
634 blob
= data_blob_const(val
.dptr
, val
.dsize
);
636 ndr_err
= ndr_pull_struct_blob(&blob
, frame
, &global_blob
,
637 (ndr_pull_flags_fn_t
)ndr_pull_smbXsrv_open_globalB
);
638 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
639 NTSTATUS status
= ndr_map_error2ntstatus(ndr_err
);
640 DEBUG(1,("smbXsrv_open_global_verify_record: "
641 "key '%s' ndr_pull_struct_blob - %s\n",
642 hex_encode_talloc(frame
, key
.dptr
, key
.dsize
),
648 DEBUG(10,("smbXsrv_open_global_verify_record\n"));
649 if (CHECK_DEBUGLVL(10)) {
650 NDR_PRINT_DEBUG(smbXsrv_open_globalB
, &global_blob
);
653 if (global_blob
.version
!= SMBXSRV_VERSION_0
) {
654 DEBUG(0,("smbXsrv_open_global_verify_record: "
655 "key '%s' use unsupported version %u\n",
656 hex_encode_talloc(frame
, key
.dptr
, key
.dsize
),
657 global_blob
.version
));
658 NDR_PRINT_DEBUG(smbXsrv_open_globalB
, &global_blob
);
663 global
= global_blob
.info
.info0
;
665 if (server_id_is_disconnected(&global
->server_id
)) {
668 exists
= serverid_exists(&global
->server_id
);
671 struct server_id_buf idbuf
;
672 DEBUG(2,("smbXsrv_open_global_verify_record: "
673 "key '%s' server_id %s does not exist.\n",
674 hex_encode_talloc(frame
, key
.dptr
, key
.dsize
),
675 server_id_str_buf(global
->server_id
, &idbuf
)));
676 if (CHECK_DEBUGLVL(2)) {
677 NDR_PRINT_DEBUG(smbXsrv_open_globalB
, &global_blob
);
680 dbwrap_record_delete(db_rec
);
686 *_g
= talloc_move(mem_ctx
, &global
);
691 static NTSTATUS
smbXsrv_open_global_store(struct smbXsrv_open_global0
*global
)
693 struct smbXsrv_open_globalB global_blob
;
694 DATA_BLOB blob
= data_blob_null
;
698 enum ndr_err_code ndr_err
;
701 * TODO: if we use other versions than '0'
702 * we would add glue code here, that would be able to
703 * store the information in the old format.
706 if (global
->db_rec
== NULL
) {
707 return NT_STATUS_INTERNAL_ERROR
;
710 key
= dbwrap_record_get_key(global
->db_rec
);
711 val
= dbwrap_record_get_value(global
->db_rec
);
713 ZERO_STRUCT(global_blob
);
714 global_blob
.version
= smbXsrv_version_global_current();
715 if (val
.dsize
>= 8) {
716 global_blob
.seqnum
= IVAL(val
.dptr
, 4);
718 global_blob
.seqnum
+= 1;
719 global_blob
.info
.info0
= global
;
721 ndr_err
= ndr_push_struct_blob(&blob
, global
->db_rec
, &global_blob
,
722 (ndr_push_flags_fn_t
)ndr_push_smbXsrv_open_globalB
);
723 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
724 status
= ndr_map_error2ntstatus(ndr_err
);
725 DEBUG(1,("smbXsrv_open_global_store: key '%s' ndr_push - %s\n",
726 hex_encode_talloc(global
->db_rec
, key
.dptr
, key
.dsize
),
728 TALLOC_FREE(global
->db_rec
);
732 val
= make_tdb_data(blob
.data
, blob
.length
);
733 status
= dbwrap_record_store(global
->db_rec
, val
, TDB_REPLACE
);
734 if (!NT_STATUS_IS_OK(status
)) {
735 DEBUG(1,("smbXsrv_open_global_store: key '%s' store - %s\n",
736 hex_encode_talloc(global
->db_rec
, key
.dptr
, key
.dsize
),
738 TALLOC_FREE(global
->db_rec
);
742 if (CHECK_DEBUGLVL(10)) {
743 DEBUG(10,("smbXsrv_open_global_store: key '%s' stored\n",
744 hex_encode_talloc(global
->db_rec
, key
.dptr
, key
.dsize
)));
745 NDR_PRINT_DEBUG(smbXsrv_open_globalB
, &global_blob
);
748 TALLOC_FREE(global
->db_rec
);
753 static NTSTATUS
smbXsrv_open_global_lookup(struct smbXsrv_open_table
*table
,
754 uint32_t open_global_id
,
756 struct smbXsrv_open_global0
**_global
)
758 struct db_record
*global_rec
= NULL
;
759 bool is_free
= false;
763 if (table
->global
.db_ctx
== NULL
) {
764 return NT_STATUS_INTERNAL_ERROR
;
767 global_rec
= smbXsrv_open_global_fetch_locked(table
->global
.db_ctx
,
770 if (global_rec
== NULL
) {
771 return NT_STATUS_INTERNAL_DB_ERROR
;
774 smbXsrv_open_global_verify_record(global_rec
,
780 DEBUG(10, ("%s: is_free=true\n", __func__
));
781 talloc_free(global_rec
);
782 return NT_STATUS_OBJECT_NAME_NOT_FOUND
;
785 (*_global
)->db_rec
= talloc_move(*_global
, &global_rec
);
787 talloc_set_destructor(*_global
, smbXsrv_open_global_destructor
);
792 static int smbXsrv_open_destructor(struct smbXsrv_open
*op
)
796 status
= smbXsrv_open_close(op
, 0);
797 if (!NT_STATUS_IS_OK(status
)) {
798 DEBUG(0, ("smbXsrv_open_destructor: "
799 "smbXsrv_open_close() failed - %s\n",
803 TALLOC_FREE(op
->global
);
808 NTSTATUS
smbXsrv_open_create(struct smbXsrv_connection
*conn
,
809 struct auth_session_info
*session_info
,
811 struct smbXsrv_open
**_open
)
813 struct smbXsrv_open_table
*table
= conn
->client
->open_table
;
814 struct db_record
*local_rec
= NULL
;
815 struct smbXsrv_open
*op
= NULL
;
818 struct smbXsrv_open_global0
*global
= NULL
;
820 struct dom_sid
*current_sid
= NULL
;
821 struct security_token
*current_token
= NULL
;
823 if (session_info
== NULL
) {
824 return NT_STATUS_INVALID_HANDLE
;
826 current_token
= session_info
->security_token
;
828 if (current_token
== NULL
) {
829 return NT_STATUS_INVALID_HANDLE
;
832 if (current_token
->num_sids
> PRIMARY_USER_SID_INDEX
) {
833 current_sid
= ¤t_token
->sids
[PRIMARY_USER_SID_INDEX
];
836 if (current_sid
== NULL
) {
837 return NT_STATUS_INVALID_HANDLE
;
840 if (table
->local
.num_opens
>= table
->local
.max_opens
) {
841 return NT_STATUS_INSUFFICIENT_RESOURCES
;
844 op
= talloc_zero(table
, struct smbXsrv_open
);
846 return NT_STATUS_NO_MEMORY
;
849 op
->status
= NT_STATUS_OK
; /* TODO: start with INTERNAL_ERROR */
852 status
= smbXsrv_open_global_allocate(table
->global
.db_ctx
,
854 if (!NT_STATUS_IS_OK(status
)) {
860 status
= smbXsrv_open_local_allocate_id(table
->local
.db_ctx
,
861 table
->local
.lowest_id
,
862 table
->local
.highest_id
,
866 if (!NT_STATUS_IS_OK(status
)) {
871 global
->open_persistent_id
= global
->open_global_id
;
872 global
->open_volatile_id
= op
->local_id
;
874 global
->server_id
= messaging_server_id(conn
->client
->msg_ctx
);
875 global
->open_time
= now
;
876 global
->open_owner
= *current_sid
;
877 if (conn
->protocol
>= PROTOCOL_SMB2_10
) {
878 global
->client_guid
= conn
->smb2
.client
.guid
;
882 val
= make_tdb_data((uint8_t const *)&ptr
, sizeof(ptr
));
883 status
= dbwrap_record_store(local_rec
, val
, TDB_REPLACE
);
884 TALLOC_FREE(local_rec
);
885 if (!NT_STATUS_IS_OK(status
)) {
889 table
->local
.num_opens
+= 1;
891 talloc_set_destructor(op
, smbXsrv_open_destructor
);
893 status
= smbXsrv_open_global_store(global
);
894 if (!NT_STATUS_IS_OK(status
)) {
895 DEBUG(0,("smbXsrv_open_create: "
896 "global_id (0x%08x) store failed - %s\n",
897 op
->global
->open_global_id
,
903 if (CHECK_DEBUGLVL(10)) {
904 struct smbXsrv_openB open_blob
;
906 ZERO_STRUCT(open_blob
);
907 open_blob
.version
= SMBXSRV_VERSION_0
;
908 open_blob
.info
.info0
= op
;
910 DEBUG(10,("smbXsrv_open_create: global_id (0x%08x) stored\n",
911 op
->global
->open_global_id
));
912 NDR_PRINT_DEBUG(smbXsrv_openB
, &open_blob
);
919 uint32_t smbXsrv_open_hash(struct smbXsrv_open
*_open
)
925 SBVAL(buf
, 0, _open
->global
->open_persistent_id
);
926 SBVAL(buf
, 8, _open
->global
->open_volatile_id
);
927 SBVAL(buf
, 16, _open
->global
->open_time
);
929 key
= (TDB_DATA
) { .dptr
= buf
, .dsize
= sizeof(buf
) };
930 ret
= tdb_jenkins_hash(&key
);
939 static NTSTATUS
smbXsrv_open_set_replay_cache(struct smbXsrv_open
*op
)
941 struct GUID
*create_guid
;
942 struct GUID_txt_buf buf
;
944 struct db_context
*db
= op
->table
->local
.replay_cache_db_ctx
;
947 if (!(op
->flags
& SMBXSRV_OPEN_NEED_REPLAY_CACHE
)) {
951 if (op
->flags
& SMBXSRV_OPEN_HAVE_REPLAY_CACHE
) {
955 create_guid
= &op
->global
->create_guid
;
956 if (GUID_all_zero(create_guid
)) {
960 guid_string
= GUID_buf_string(create_guid
, &buf
);
961 if (guid_string
== NULL
) {
962 return NT_STATUS_INVALID_PARAMETER
;
965 status
= dbwrap_store_uint32_bystring(db
, guid_string
, op
->local_id
);
967 if (NT_STATUS_IS_OK(status
)) {
968 op
->flags
|= SMBXSRV_OPEN_HAVE_REPLAY_CACHE
;
969 op
->flags
&= ~SMBXSRV_OPEN_NEED_REPLAY_CACHE
;
975 static NTSTATUS
smbXsrv_open_clear_replay_cache(struct smbXsrv_open
*op
)
977 struct GUID
*create_guid
;
978 struct GUID_txt_buf buf
;
980 struct db_context
*db
;
983 if (op
->table
== NULL
) {
987 db
= op
->table
->local
.replay_cache_db_ctx
;
989 if (!(op
->flags
& SMBXSRV_OPEN_HAVE_REPLAY_CACHE
)) {
993 create_guid
= &op
->global
->create_guid
;
994 if (GUID_all_zero(create_guid
)) {
998 guid_string
= GUID_buf_string(create_guid
, &buf
);
999 if (guid_string
== NULL
) {
1000 return NT_STATUS_INVALID_PARAMETER
;
1003 status
= dbwrap_purge_bystring(db
, guid_string
);
1005 if (NT_STATUS_IS_OK(status
)) {
1006 op
->flags
&= ~SMBXSRV_OPEN_HAVE_REPLAY_CACHE
;
1012 NTSTATUS
smbXsrv_open_update(struct smbXsrv_open
*op
)
1014 struct smbXsrv_open_table
*table
= op
->table
;
1017 if (op
->global
->db_rec
!= NULL
) {
1018 DEBUG(0, ("smbXsrv_open_update(0x%08x): "
1019 "Called with db_rec != NULL'\n",
1020 op
->global
->open_global_id
));
1021 return NT_STATUS_INTERNAL_ERROR
;
1024 op
->global
->db_rec
= smbXsrv_open_global_fetch_locked(
1025 table
->global
.db_ctx
,
1026 op
->global
->open_global_id
,
1027 op
->global
/* TALLOC_CTX */);
1028 if (op
->global
->db_rec
== NULL
) {
1029 return NT_STATUS_INTERNAL_DB_ERROR
;
1032 status
= smbXsrv_open_global_store(op
->global
);
1033 if (!NT_STATUS_IS_OK(status
)) {
1034 DEBUG(0,("smbXsrv_open_update: "
1035 "global_id (0x%08x) store failed - %s\n",
1036 op
->global
->open_global_id
,
1037 nt_errstr(status
)));
1041 status
= smbXsrv_open_set_replay_cache(op
);
1042 if (!NT_STATUS_IS_OK(status
)) {
1043 DBG_ERR("smbXsrv_open_set_replay_cache failed: %s\n",
1048 if (CHECK_DEBUGLVL(10)) {
1049 struct smbXsrv_openB open_blob
;
1051 ZERO_STRUCT(open_blob
);
1052 open_blob
.version
= SMBXSRV_VERSION_0
;
1053 open_blob
.info
.info0
= op
;
1055 DEBUG(10,("smbXsrv_open_update: global_id (0x%08x) stored\n",
1056 op
->global
->open_global_id
));
1057 NDR_PRINT_DEBUG(smbXsrv_openB
, &open_blob
);
1060 return NT_STATUS_OK
;
1063 NTSTATUS
smbXsrv_open_close(struct smbXsrv_open
*op
, NTTIME now
)
1065 struct smbXsrv_open_table
*table
;
1066 struct db_record
*local_rec
= NULL
;
1067 struct db_record
*global_rec
= NULL
;
1069 NTSTATUS error
= NT_STATUS_OK
;
1071 error
= smbXsrv_open_clear_replay_cache(op
);
1072 if (!NT_STATUS_IS_OK(error
)) {
1073 DBG_ERR("smbXsrv_open_clear_replay_cache failed: %s\n",
1077 if (op
->table
== NULL
) {
1084 op
->status
= NT_STATUS_FILE_CLOSED
;
1085 op
->global
->disconnect_time
= now
;
1086 server_id_set_disconnected(&op
->global
->server_id
);
1088 global_rec
= op
->global
->db_rec
;
1089 op
->global
->db_rec
= NULL
;
1090 if (global_rec
== NULL
) {
1091 global_rec
= smbXsrv_open_global_fetch_locked(
1092 table
->global
.db_ctx
,
1093 op
->global
->open_global_id
,
1094 op
->global
/* TALLOC_CTX */);
1095 if (global_rec
== NULL
) {
1096 error
= NT_STATUS_INTERNAL_ERROR
;
1100 if (global_rec
!= NULL
&& op
->global
->durable
) {
1102 * If it is a durable open we need to update the global part
1103 * instead of deleting it
1105 op
->global
->db_rec
= global_rec
;
1106 status
= smbXsrv_open_global_store(op
->global
);
1107 if (NT_STATUS_IS_OK(status
)) {
1109 * smbXsrv_open_global_store does the free
1110 * of op->global->db_rec
1114 if (!NT_STATUS_IS_OK(status
)) {
1115 DEBUG(0,("smbXsrv_open_close(0x%08x)"
1116 "smbXsrv_open_global_store() failed - %s\n",
1117 op
->global
->open_global_id
,
1118 nt_errstr(status
)));
1122 if (NT_STATUS_IS_OK(status
) && CHECK_DEBUGLVL(10)) {
1123 struct smbXsrv_openB open_blob
;
1125 ZERO_STRUCT(open_blob
);
1126 open_blob
.version
= SMBXSRV_VERSION_0
;
1127 open_blob
.info
.info0
= op
;
1129 DEBUG(10,("smbXsrv_open_close(0x%08x): "
1130 "stored disconnect\n",
1131 op
->global
->open_global_id
));
1132 NDR_PRINT_DEBUG(smbXsrv_openB
, &open_blob
);
1136 if (global_rec
!= NULL
) {
1137 status
= dbwrap_record_delete(global_rec
);
1138 if (!NT_STATUS_IS_OK(status
)) {
1139 TDB_DATA key
= dbwrap_record_get_key(global_rec
);
1141 DEBUG(0, ("smbXsrv_open_close(0x%08x): "
1142 "failed to delete global key '%s': %s\n",
1143 op
->global
->open_global_id
,
1144 hex_encode_talloc(global_rec
, key
.dptr
,
1146 nt_errstr(status
)));
1150 TALLOC_FREE(global_rec
);
1152 local_rec
= op
->db_rec
;
1153 if (local_rec
== NULL
) {
1154 local_rec
= smbXsrv_open_local_fetch_locked(table
->local
.db_ctx
,
1156 op
/* TALLOC_CTX*/);
1157 if (local_rec
== NULL
) {
1158 error
= NT_STATUS_INTERNAL_ERROR
;
1162 if (local_rec
!= NULL
) {
1163 status
= dbwrap_record_delete(local_rec
);
1164 if (!NT_STATUS_IS_OK(status
)) {
1165 TDB_DATA key
= dbwrap_record_get_key(local_rec
);
1167 DEBUG(0, ("smbXsrv_open_close(0x%08x): "
1168 "failed to delete local key '%s': %s\n",
1169 op
->global
->open_global_id
,
1170 hex_encode_talloc(local_rec
, key
.dptr
,
1172 nt_errstr(status
)));
1175 table
->local
.num_opens
-= 1;
1177 if (op
->db_rec
== NULL
) {
1178 TALLOC_FREE(local_rec
);
1183 op
->compat
->op
= NULL
;
1184 file_free(NULL
, op
->compat
);
1191 NTSTATUS
smb1srv_open_table_init(struct smbXsrv_connection
*conn
)
1196 * Allow a range from 1..65534.
1198 * With real_max_open_files possible ids,
1199 * truncated to the SMB1 limit of 16-bit.
1201 * 0 and 0xFFFF are no valid ids.
1203 max_opens
= conn
->client
->sconn
->real_max_open_files
;
1204 max_opens
= MIN(max_opens
, UINT16_MAX
- 1);
1206 return smbXsrv_open_table_init(conn
, 1, UINT16_MAX
- 1, max_opens
);
1209 NTSTATUS
smb1srv_open_lookup(struct smbXsrv_connection
*conn
,
1210 uint16_t fnum
, NTTIME now
,
1211 struct smbXsrv_open
**_open
)
1213 struct smbXsrv_open_table
*table
= conn
->client
->open_table
;
1214 uint32_t local_id
= fnum
;
1215 uint32_t global_id
= 0;
1217 return smbXsrv_open_local_lookup(table
, local_id
, global_id
, now
, _open
);
1220 NTSTATUS
smb2srv_open_table_init(struct smbXsrv_connection
*conn
)
1225 * Allow a range from 1..4294967294.
1227 * With real_max_open_files possible ids,
1228 * truncated to 16-bit (the same as SMB1 for now).
1230 * 0 and 0xFFFFFFFF are no valid ids.
1232 * The usage of conn->sconn->real_max_open_files
1233 * is the reason that we use one open table per
1234 * transport connection (as we still have a 1:1 mapping
1235 * between process and transport connection).
1237 max_opens
= conn
->client
->sconn
->real_max_open_files
;
1238 max_opens
= MIN(max_opens
, UINT16_MAX
- 1);
1240 return smbXsrv_open_table_init(conn
, 1, UINT32_MAX
- 1, max_opens
);
1243 NTSTATUS
smb2srv_open_lookup(struct smbXsrv_connection
*conn
,
1244 uint64_t persistent_id
,
1245 uint64_t volatile_id
,
1247 struct smbXsrv_open
**_open
)
1249 struct smbXsrv_open_table
*table
= conn
->client
->open_table
;
1250 uint32_t local_id
= volatile_id
& UINT32_MAX
;
1251 uint64_t local_zeros
= volatile_id
& 0xFFFFFFFF00000000LLU
;
1252 uint32_t global_id
= persistent_id
& UINT32_MAX
;
1253 uint64_t global_zeros
= persistent_id
& 0xFFFFFFFF00000000LLU
;
1256 if (local_zeros
!= 0) {
1257 return NT_STATUS_FILE_CLOSED
;
1260 if (global_zeros
!= 0) {
1261 return NT_STATUS_FILE_CLOSED
;
1264 if (global_id
== 0) {
1265 return NT_STATUS_FILE_CLOSED
;
1268 status
= smbXsrv_open_local_lookup(table
, local_id
, global_id
, now
,
1270 if (!NT_STATUS_IS_OK(status
)) {
1275 * Clear the replay cache for this create_guid if it exists:
1276 * This is based on the assumption that this lookup will be
1277 * triggered by a client request using the file-id for lookup.
1278 * Hence the client has proven that it has in fact seen the
1279 * reply to its initial create call. So subsequent create replays
1280 * should be treated as invalid. Hence the index for create_guid
1281 * lookup needs to be removed.
1283 status
= smbXsrv_open_clear_replay_cache(*_open
);
1288 NTSTATUS
smb2srv_open_lookup_replay_cache(struct smbXsrv_connection
*conn
,
1289 const struct GUID
*create_guid
,
1290 NTTIME now
, /* TODO: needed ? */
1291 struct smbXsrv_open
**_open
)
1295 struct GUID_txt_buf buf
;
1296 uint32_t local_id
= 0;
1297 struct smbXsrv_open_table
*table
= conn
->client
->open_table
;
1298 struct db_context
*db
= table
->local
.replay_cache_db_ctx
;
1300 if (GUID_all_zero(create_guid
)) {
1301 return NT_STATUS_NOT_FOUND
;
1304 guid_string
= GUID_buf_string(create_guid
, &buf
);
1305 if (guid_string
== NULL
) {
1306 return NT_STATUS_INVALID_PARAMETER
;
1309 status
= dbwrap_fetch_uint32_bystring(db
, guid_string
, &local_id
);
1310 if (NT_STATUS_EQUAL(status
, NT_STATUS_NOT_FOUND
)) {
1313 if (!NT_STATUS_IS_OK(status
)) {
1314 DBG_ERR("failed to fetch local_id from replay cache: %s\n",
1319 status
= smbXsrv_open_local_lookup(table
, local_id
, 0, /* global_id */
1321 if (!NT_STATUS_IS_OK(status
)) {
1322 DBG_ERR("smbXsrv_open_local_lookup failed for local_id %u\n",
1323 (unsigned)local_id
);
1329 NTSTATUS
smb2srv_open_recreate(struct smbXsrv_connection
*conn
,
1330 struct auth_session_info
*session_info
,
1331 uint64_t persistent_id
,
1332 const struct GUID
*create_guid
,
1334 struct smbXsrv_open
**_open
)
1336 struct smbXsrv_open_table
*table
= conn
->client
->open_table
;
1337 struct db_record
*local_rec
= NULL
;
1338 struct smbXsrv_open
*op
= NULL
;
1341 uint32_t global_id
= persistent_id
& UINT32_MAX
;
1342 uint64_t global_zeros
= persistent_id
& 0xFFFFFFFF00000000LLU
;
1344 struct security_token
*current_token
= NULL
;
1346 if (session_info
== NULL
) {
1347 DEBUG(10, ("session_info=NULL\n"));
1348 return NT_STATUS_INVALID_HANDLE
;
1350 current_token
= session_info
->security_token
;
1352 if (current_token
== NULL
) {
1353 DEBUG(10, ("current_token=NULL\n"));
1354 return NT_STATUS_INVALID_HANDLE
;
1357 if (global_zeros
!= 0) {
1358 DEBUG(10, ("global_zeros!=0\n"));
1359 return NT_STATUS_OBJECT_NAME_NOT_FOUND
;
1362 op
= talloc_zero(table
, struct smbXsrv_open
);
1364 return NT_STATUS_NO_MEMORY
;
1368 status
= smbXsrv_open_global_lookup(table
, global_id
, op
, &op
->global
);
1369 if (!NT_STATUS_IS_OK(status
)) {
1371 DEBUG(10, ("smbXsrv_open_global_lookup returned %s\n",
1372 nt_errstr(status
)));
1377 * If the provided create_guid is NULL, this means that
1378 * the reconnect request was a v1 request. In that case
1379 * we should skipt the create GUID verification, since
1380 * it is valid to v1-reconnect a v2-opened handle.
1382 if ((create_guid
!= NULL
) &&
1383 !GUID_equal(&op
->global
->create_guid
, create_guid
))
1386 return NT_STATUS_OBJECT_NAME_NOT_FOUND
;
1389 if (!security_token_is_sid(current_token
, &op
->global
->open_owner
)) {
1391 return NT_STATUS_OBJECT_NAME_NOT_FOUND
;
1394 if (!op
->global
->durable
) {
1396 return NT_STATUS_OBJECT_NAME_NOT_FOUND
;
1399 if (table
->local
.num_opens
>= table
->local
.max_opens
) {
1401 return NT_STATUS_INSUFFICIENT_RESOURCES
;
1404 status
= smbXsrv_open_local_allocate_id(table
->local
.db_ctx
,
1405 table
->local
.lowest_id
,
1406 table
->local
.highest_id
,
1410 if (!NT_STATUS_IS_OK(status
)) {
1415 op
->idle_time
= now
;
1416 op
->status
= NT_STATUS_FILE_CLOSED
;
1418 op
->global
->open_volatile_id
= op
->local_id
;
1419 op
->global
->server_id
= messaging_server_id(conn
->client
->msg_ctx
);
1422 val
= make_tdb_data((uint8_t const *)&ptr
, sizeof(ptr
));
1423 status
= dbwrap_record_store(local_rec
, val
, TDB_REPLACE
);
1424 TALLOC_FREE(local_rec
);
1425 if (!NT_STATUS_IS_OK(status
)) {
1429 table
->local
.num_opens
+= 1;
1431 talloc_set_destructor(op
, smbXsrv_open_destructor
);
1433 status
= smbXsrv_open_global_store(op
->global
);
1434 if (!NT_STATUS_IS_OK(status
)) {
1439 if (CHECK_DEBUGLVL(10)) {
1440 struct smbXsrv_openB open_blob
;
1442 ZERO_STRUCT(open_blob
);
1443 open_blob
.version
= 0;
1444 open_blob
.info
.info0
= op
;
1446 DEBUG(10,("smbXsrv_open_recreate: global_id (0x%08x) stored\n",
1447 op
->global
->open_global_id
));
1448 NDR_PRINT_DEBUG(smbXsrv_openB
, &open_blob
);
1452 return NT_STATUS_OK
;
1456 static NTSTATUS
smbXsrv_open_global_parse_record(TALLOC_CTX
*mem_ctx
,
1457 struct db_record
*rec
,
1458 struct smbXsrv_open_global0
**global
)
1460 TDB_DATA key
= dbwrap_record_get_key(rec
);
1461 TDB_DATA val
= dbwrap_record_get_value(rec
);
1462 DATA_BLOB blob
= data_blob_const(val
.dptr
, val
.dsize
);
1463 struct smbXsrv_open_globalB global_blob
;
1464 enum ndr_err_code ndr_err
;
1466 TALLOC_CTX
*frame
= talloc_stackframe();
1468 ndr_err
= ndr_pull_struct_blob(&blob
, frame
, &global_blob
,
1469 (ndr_pull_flags_fn_t
)ndr_pull_smbXsrv_open_globalB
);
1470 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
1471 DEBUG(1,("Invalid record in smbXsrv_open_global.tdb:"
1472 "key '%s' ndr_pull_struct_blob - %s\n",
1473 hex_encode_talloc(frame
, key
.dptr
, key
.dsize
),
1474 ndr_errstr(ndr_err
)));
1475 status
= ndr_map_error2ntstatus(ndr_err
);
1479 if (global_blob
.version
!= SMBXSRV_VERSION_0
) {
1480 status
= NT_STATUS_INTERNAL_DB_CORRUPTION
;
1481 DEBUG(1,("Invalid record in smbXsrv_open_global.tdb:"
1482 "key '%s' unsupported version - %d - %s\n",
1483 hex_encode_talloc(frame
, key
.dptr
, key
.dsize
),
1484 (int)global_blob
.version
,
1485 nt_errstr(status
)));
1489 *global
= talloc_move(mem_ctx
, &global_blob
.info
.info0
);
1490 status
= NT_STATUS_OK
;
1496 struct smbXsrv_open_global_traverse_state
{
1497 int (*fn
)(struct smbXsrv_open_global0
*, void *);
1501 static int smbXsrv_open_global_traverse_fn(struct db_record
*rec
, void *data
)
1503 struct smbXsrv_open_global_traverse_state
*state
=
1504 (struct smbXsrv_open_global_traverse_state
*)data
;
1505 struct smbXsrv_open_global0
*global
= NULL
;
1509 status
= smbXsrv_open_global_parse_record(talloc_tos(), rec
, &global
);
1510 if (!NT_STATUS_IS_OK(status
)) {
1514 global
->db_rec
= rec
;
1515 ret
= state
->fn(global
, state
->private_data
);
1516 talloc_free(global
);
1520 NTSTATUS
smbXsrv_open_global_traverse(
1521 int (*fn
)(struct smbXsrv_open_global0
*, void *),
1527 struct smbXsrv_open_global_traverse_state state
= {
1529 .private_data
= private_data
,
1533 status
= smbXsrv_open_global_init();
1534 if (!NT_STATUS_IS_OK(status
)) {
1536 DEBUG(0, ("Failed to initialize open_global: %s\n",
1537 nt_errstr(status
)));
1541 status
= dbwrap_traverse_read(smbXsrv_open_global_db_ctx
,
1542 smbXsrv_open_global_traverse_fn
,
1550 NTSTATUS
smbXsrv_open_cleanup(uint64_t persistent_id
)
1552 NTSTATUS status
= NT_STATUS_OK
;
1553 TALLOC_CTX
*frame
= talloc_stackframe();
1554 struct smbXsrv_open_global0
*op
= NULL
;
1556 struct db_record
*rec
;
1557 bool delete_open
= false;
1558 uint32_t global_id
= persistent_id
& UINT32_MAX
;
1560 rec
= smbXsrv_open_global_fetch_locked(smbXsrv_open_global_db_ctx
,
1564 status
= NT_STATUS_NOT_FOUND
;
1568 val
= dbwrap_record_get_value(rec
);
1569 if (val
.dsize
== 0) {
1570 DEBUG(10, ("smbXsrv_open_cleanup[global: 0x%08x] "
1571 "empty record in %s, skipping...\n",
1572 global_id
, dbwrap_name(smbXsrv_open_global_db_ctx
)));
1576 status
= smbXsrv_open_global_parse_record(talloc_tos(), rec
, &op
);
1577 if (!NT_STATUS_IS_OK(status
)) {
1578 DEBUG(1, ("smbXsrv_open_cleanup[global: 0x%08x] "
1579 "failed to read record: %s\n",
1580 global_id
, nt_errstr(status
)));
1584 if (server_id_is_disconnected(&op
->server_id
)) {
1585 struct timeval now
, disconnect_time
;
1587 now
= timeval_current();
1588 nttime_to_timeval(&disconnect_time
, op
->disconnect_time
);
1589 tdiff
= usec_time_diff(&now
, &disconnect_time
);
1590 delete_open
= (tdiff
>= 1000*op
->durable_timeout_msec
);
1592 DEBUG(10, ("smbXsrv_open_cleanup[global: 0x%08x] "
1593 "disconnected at [%s] %us ago with "
1594 "timeout of %us -%s reached\n",
1596 nt_time_string(frame
, op
->disconnect_time
),
1597 (unsigned)(tdiff
/1000000),
1598 op
->durable_timeout_msec
/ 1000,
1599 delete_open
? "" : " not"));
1600 } else if (!serverid_exists(&op
->server_id
)) {
1601 struct server_id_buf idbuf
;
1602 DEBUG(10, ("smbXsrv_open_cleanup[global: 0x%08x] "
1603 "server[%s] does not exist\n",
1605 server_id_str_buf(op
->server_id
, &idbuf
)));
1613 status
= dbwrap_record_delete(rec
);
1614 if (!NT_STATUS_IS_OK(status
)) {
1615 DEBUG(1, ("smbXsrv_open_cleanup[global: 0x%08x] "
1616 "failed to delete record"
1617 "from %s: %s\n", global_id
,
1618 dbwrap_name(smbXsrv_open_global_db_ctx
),
1619 nt_errstr(status
)));
1623 DEBUG(10, ("smbXsrv_open_cleanup[global: 0x%08x] "
1624 "delete record from %s\n",
1626 dbwrap_name(smbXsrv_open_global_db_ctx
)));