smbd: rename smbXsrv_client->ev_ctx into smbXsrv_client->raw_ev_ctx
[Samba.git] / source3 / smbd / smbXsrv_client.c
blob3e0a1d51e5aecca2ad744d400ab5e87f4df2b134
1 /*
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/>.
20 #include "includes.h"
21 #include "system/filesys.h"
22 #include <tevent.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"
30 #include "session.h"
31 #include "auth.h"
32 #include "auth/gensec/gensec.h"
33 #include "../lib/tsocket/tsocket.h"
34 #include "../libcli/security/security.h"
35 #include "messages.h"
36 #include "lib/util/util_tdb.h"
37 #include "librpc/gen_ndr/ndr_smbXsrv.h"
38 #include "serverid.h"
39 #include "lib/util/tevent_ntstatus.h"
40 #include "lib/util/iov_buf.h"
42 struct smbXsrv_client_table {
43 struct {
44 uint32_t max_clients;
45 uint32_t num_clients;
46 } local;
47 struct {
48 struct db_context *db_ctx;
49 } global;
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) {
60 return NT_STATUS_OK;
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,
72 0, /* hash_size */
73 TDB_DEFAULT |
74 TDB_CLEAR_IF_FIRST |
75 TDB_INCOMPATIBLE_HASH,
76 O_RDWR | O_CREAT, 0600,
77 DBWRAP_LOCK_ORDER_1,
78 DBWRAP_FLAG_NONE);
79 if (db_ctx == NULL) {
80 NTSTATUS status;
82 status = map_nt_error_from_unix_common(errno);
84 return status;
87 smbXsrv_client_global_db_ctx = db_ctx;
89 return NT_STATUS_OK;
93 * NOTE:
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
96 * values.
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,
104 uint8_t *key_buf)
106 TDB_DATA key = { .dsize = 0, };
107 NTSTATUS status;
108 DATA_BLOB b;
110 status = GUID_to_ndr_blob(client_guid, talloc_tos(), &b);
111 if (!NT_STATUS_IS_OK(status)) {
112 return key;
114 memcpy(key_buf, b.data, SMBXSRV_CLIENT_GLOBAL_TDB_KEY_SIZE);
115 data_blob_free(&b);
117 key = make_tdb_data(key_buf, SMBXSRV_CLIENT_GLOBAL_TDB_KEY_SIZE);
119 return key;
122 static struct db_record *smbXsrv_client_global_fetch_locked(
123 struct db_context *db,
124 const struct GUID *client_guid,
125 TALLOC_CTX *mem_ctx)
127 TDB_DATA key;
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);
135 if (rec == NULL) {
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));
141 return rec;
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;
150 NTSTATUS status;
152 if (max_clients > 1) {
153 return NT_STATUS_INTERNAL_ERROR;
156 table = talloc_zero(mem_ctx, struct smbXsrv_client_table);
157 if (table == NULL) {
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)) {
165 TALLOC_FREE(table);
166 return status;
169 table->global.db_ctx = smbXsrv_client_global_db_ctx;
171 *_table = table;
172 return NT_STATUS_OK;
175 static int smbXsrv_client_global_destructor(struct smbXsrv_client_global0 *global)
177 return 0;
180 static void smbXsrv_client_global_verify_record(struct db_record *db_rec,
181 bool *is_free,
182 bool *was_free,
183 TALLOC_CTX *mem_ctx,
184 struct smbXsrv_client_global0 **_g)
186 TDB_DATA key;
187 TDB_DATA val;
188 DATA_BLOB blob;
189 struct smbXsrv_client_globalB global_blob;
190 enum ndr_err_code ndr_err;
191 struct smbXsrv_client_global0 *global = NULL;
192 bool exists;
193 TALLOC_CTX *frame = talloc_stackframe();
195 *is_free = false;
197 if (was_free) {
198 *was_free = false;
200 if (_g) {
201 *_g = NULL;
204 key = dbwrap_record_get_key(db_rec);
206 val = dbwrap_record_get_value(db_rec);
207 if (val.dsize == 0) {
208 TALLOC_FREE(frame);
209 *is_free = true;
210 if (was_free) {
211 *was_free = true;
213 return;
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),
225 nt_errstr(status));
226 TALLOC_FREE(frame);
227 return;
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);
240 TALLOC_FREE(frame);
241 return;
244 global = global_blob.info.info0;
246 exists = serverid_exists(&global->server_id);
247 if (!exists) {
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);
256 TALLOC_FREE(frame);
257 dbwrap_record_delete(db_rec);
258 *is_free = true;
259 return;
262 if (_g) {
263 *_g = talloc_move(mem_ctx, &global);
265 TALLOC_FREE(frame);
268 NTSTATUS smb2srv_client_lookup_global(struct smbXsrv_client *client,
269 struct GUID client_guid,
270 TALLOC_CTX *mem_ctx,
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,
279 &client_guid,
280 talloc_tos());
281 if (db_rec == NULL) {
282 return NT_STATUS_INTERNAL_DB_ERROR;
285 smbXsrv_client_global_verify_record(db_rec,
286 &is_free,
287 NULL,
288 mem_ctx,
289 &global);
290 TALLOC_FREE(db_rec);
292 if (is_free) {
293 return NT_STATUS_OBJECTID_NOT_FOUND;
296 *_global = global;
297 return NT_STATUS_OK;
300 NTSTATUS smb2srv_client_connection_pass(struct smbd_smb2_request *smb2req,
301 struct smbXsrv_client_global0 *global)
303 DATA_BLOB blob;
304 enum ndr_err_code ndr_err;
305 NTSTATUS status;
306 struct smbXsrv_connection_pass0 pass_info0;
307 struct smbXsrv_connection_passB pass_blob;
308 ssize_t reqlen;
309 struct iovec iov;
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);
315 if (reqlen == -1) {
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,
321 reqlen);
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);
342 return status;
345 iov.iov_base = blob.data;
346 iov.iov_len = blob.length;
348 status = messaging_send_iov(smb2req->xconn->msg_ctx,
349 global->server_id,
350 MSG_SMBXSRV_CONNECTION_PASS,
351 &iov, 1,
352 &smb2req->xconn->transport.sock, 1);
353 data_blob_free(&blob);
354 if (!NT_STATUS_IS_OK(status)) {
355 return status;
358 return NT_STATUS_OK;
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;
365 TDB_DATA key;
366 TDB_DATA val;
367 NTSTATUS status;
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),
400 nt_errstr(status));
401 TALLOC_FREE(global->db_rec);
402 return status;
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),
410 nt_errstr(status));
411 TALLOC_FREE(global->db_rec);
412 return status;
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);
425 return NT_STATUS_OK;
428 static NTSTATUS smbXsrv_client_global_remove(struct smbXsrv_client_global0 *global)
430 TDB_DATA key;
431 NTSTATUS status;
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),
449 nt_errstr(status));
450 TALLOC_FREE(global->db_rec);
451 return status;
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);
459 return NT_STATUS_OK;
462 static int smbXsrv_client_destructor(struct smbXsrv_client *client)
464 NTSTATUS status;
466 status = smbXsrv_client_remove(client);
467 if (!NT_STATUS_IS_OK(status)) {
468 DBG_ERR("smbXsrv_client_remove() failed: %s\n",
469 nt_errstr(status));
472 TALLOC_FREE(client->global);
474 return 0;
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,
483 NTTIME now,
484 struct smbXsrv_client **_client)
486 struct smbXsrv_client_table *table;
487 struct smbXsrv_client *client = NULL;
488 struct smbXsrv_client_global0 *global = NULL;
489 NTSTATUS status;
490 struct tevent_req *subreq = NULL;
492 status = smbXsrv_client_table_create(mem_ctx,
493 msg_ctx,
494 1, /* max_clients */
495 &table);
496 if (!NT_STATUS_IS_OK(status)) {
497 return status;
500 if (table->local.num_clients >= table->local.max_clients) {
501 TALLOC_FREE(table);
502 return NT_STATUS_INSUFFICIENT_RESOURCES;
505 client = talloc_zero(mem_ctx, struct smbXsrv_client);
506 if (client == NULL) {
507 TALLOC_FREE(table);
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) {
520 TALLOC_FREE(client);
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,
547 client->raw_ev_ctx,
548 client->msg_ctx,
549 smbXsrv_client_connection_pass_filter,
550 client);
551 if (subreq == NULL) {
552 TALLOC_FREE(client);
553 return NT_STATUS_NO_MEMORY;
555 tevent_req_set_callback(subreq, smbXsrv_client_connection_pass_loop, client);
557 *_client = client;
558 return NT_STATUS_OK;
561 static bool smbXsrv_client_connection_pass_filter(struct messaging_rec *rec, void *private_data)
563 if (rec->msg_type != MSG_SMBXSRV_CONNECTION_PASS) {
564 return false;
567 if (rec->num_fds != 1) {
568 return false;
571 if (rec->buf.length < SMB2_HDR_BODY) {
572 return false;
575 /* TODO: verify client_guid...? */
577 return true;
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;
586 int ret;
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;
591 NTSTATUS status;
592 int sock_fd = -1;
593 uint64_t seq_low;
595 ret = messaging_filtered_read_recv(subreq, talloc_tos(), &rec);
596 TALLOC_FREE(subreq);
597 if (ret != 0) {
598 goto next;
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));
606 goto next;
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);
617 goto next;
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);
624 goto next;
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);
635 goto next;
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);
652 goto next;
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)) {
662 close(sock_fd);
663 sock_fd = -1;
664 DBG_ERR("smbd_add_connection => %s\n", nt_errstr(status));
665 NDR_PRINT_DEBUG(smbXsrv_connection_passB, &pass_blob);
666 goto next;
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);
680 next:
681 TALLOC_FREE(rec);
683 subreq = messaging_filtered_read_send(client,
684 client->raw_ev_ctx,
685 client->msg_ctx,
686 smbXsrv_client_connection_pass_filter,
687 client);
688 if (subreq == NULL) {
689 const char *r;
690 r = "messaging_read_send(MSG_SMBXSRV_CONNECTION_PASS failed";
691 exit_server_cleanly(r);
692 return;
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;
700 NTSTATUS status;
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),
721 nt_errstr(status));
722 return status;
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);
737 return NT_STATUS_OK;
740 NTSTATUS smbXsrv_client_remove(struct smbXsrv_client *client)
742 struct smbXsrv_client_table *table = client->table;
743 NTSTATUS status;
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) {
752 return NT_STATUS_OK;
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),
767 nt_errstr(status));
768 return status;
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);
783 return NT_STATUS_OK;