LCOV - code coverage report
Current view: top level - source3/smbd - smb2_sesssetup.c (source / functions) Hit Total Coverage
Test: coverage report for recycleplus df22b230 Lines: 530 654 81.0 %
Date: 2024-02-14 10:14:15 Functions: 19 19 100.0 %

          Line data    Source code
       1             : /*
       2             :    Unix SMB/CIFS implementation.
       3             :    Core SMB2 server
       4             : 
       5             :    Copyright (C) Stefan Metzmacher 2009
       6             :    Copyright (C) Jeremy Allison 2010
       7             : 
       8             :    This program is free software; you can redistribute it and/or modify
       9             :    it under the terms of the GNU General Public License as published by
      10             :    the Free Software Foundation; either version 3 of the License, or
      11             :    (at your option) any later version.
      12             : 
      13             :    This program is distributed in the hope that it will be useful,
      14             :    but WITHOUT ANY WARRANTY; without even the implied warranty of
      15             :    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      16             :    GNU General Public License for more details.
      17             : 
      18             :    You should have received a copy of the GNU General Public License
      19             :    along with this program.  If not, see <http://www.gnu.org/licenses/>.
      20             : */
      21             : 
      22             : #include "includes.h"
      23             : #include "smbd/smbd.h"
      24             : #include "smbd/globals.h"
      25             : #include "../libcli/smb/smb_common.h"
      26             : #include "../auth/gensec/gensec.h"
      27             : #include "auth.h"
      28             : #include "../lib/tsocket/tsocket.h"
      29             : #include "../libcli/security/security.h"
      30             : #include "../lib/util/tevent_ntstatus.h"
      31             : #include "source3/lib/substitute.h"
      32             : 
      33             : #include "lib/crypto/gnutls_helpers.h"
      34             : #include <gnutls/gnutls.h>
      35             : #include <gnutls/crypto.h>
      36             : 
      37             : #undef DBGC_CLASS
      38             : #define DBGC_CLASS DBGC_SMB2
      39             : 
      40             : static struct tevent_req *smbd_smb2_session_setup_wrap_send(TALLOC_CTX *mem_ctx,
      41             :                                         struct tevent_context *ev,
      42             :                                         struct smbd_smb2_request *smb2req,
      43             :                                         uint64_t in_session_id,
      44             :                                         uint8_t in_flags,
      45             :                                         uint8_t in_security_mode,
      46             :                                         uint64_t in_previous_session_id,
      47             :                                         DATA_BLOB in_security_buffer);
      48             : static NTSTATUS smbd_smb2_session_setup_wrap_recv(struct tevent_req *req,
      49             :                                         uint16_t *out_session_flags,
      50             :                                         TALLOC_CTX *mem_ctx,
      51             :                                         DATA_BLOB *out_security_buffer,
      52             :                                         uint64_t *out_session_id);
      53             : 
      54             : static void smbd_smb2_request_sesssetup_done(struct tevent_req *subreq);
      55             : 
      56        6755 : NTSTATUS smbd_smb2_request_process_sesssetup(struct smbd_smb2_request *smb2req)
      57             : {
      58             :         const uint8_t *inhdr;
      59             :         const uint8_t *inbody;
      60             :         uint64_t in_session_id;
      61             :         uint8_t in_flags;
      62             :         uint8_t in_security_mode;
      63             :         uint64_t in_previous_session_id;
      64             :         uint16_t in_security_offset;
      65             :         uint16_t in_security_length;
      66             :         DATA_BLOB in_security_buffer;
      67             :         NTSTATUS status;
      68             :         struct tevent_req *subreq;
      69             : 
      70        6755 :         status = smbd_smb2_request_verify_sizes(smb2req, 0x19);
      71        6755 :         if (!NT_STATUS_IS_OK(status)) {
      72           0 :                 return smbd_smb2_request_error(smb2req, status);
      73             :         }
      74        6755 :         inhdr = SMBD_SMB2_IN_HDR_PTR(smb2req);
      75        6755 :         inbody = SMBD_SMB2_IN_BODY_PTR(smb2req);
      76             : 
      77        6755 :         in_session_id = BVAL(inhdr, SMB2_HDR_SESSION_ID);
      78             : 
      79        6755 :         in_flags = CVAL(inbody, 0x02);
      80        6755 :         in_security_mode = CVAL(inbody, 0x03);
      81             :         /* Capabilities = IVAL(inbody, 0x04) */
      82             :         /* Channel = IVAL(inbody, 0x08) */
      83        6755 :         in_security_offset = SVAL(inbody, 0x0C);
      84        6755 :         in_security_length = SVAL(inbody, 0x0E);
      85        6755 :         in_previous_session_id = BVAL(inbody, 0x10);
      86             : 
      87        6755 :         if (in_security_offset != (SMB2_HDR_BODY + SMBD_SMB2_IN_BODY_LEN(smb2req))) {
      88           0 :                 return smbd_smb2_request_error(smb2req, NT_STATUS_INVALID_PARAMETER);
      89             :         }
      90             : 
      91        6755 :         if (in_security_length > SMBD_SMB2_IN_DYN_LEN(smb2req)) {
      92           0 :                 return smbd_smb2_request_error(smb2req, NT_STATUS_INVALID_PARAMETER);
      93             :         }
      94             : 
      95        6755 :         in_security_buffer.data = SMBD_SMB2_IN_DYN_PTR(smb2req);
      96        6755 :         in_security_buffer.length = in_security_length;
      97             : 
      98        6755 :         subreq = smbd_smb2_session_setup_wrap_send(smb2req,
      99        6755 :                                                    smb2req->sconn->ev_ctx,
     100             :                                                    smb2req,
     101             :                                                    in_session_id,
     102             :                                                    in_flags,
     103             :                                                    in_security_mode,
     104             :                                                    in_previous_session_id,
     105             :                                                    in_security_buffer);
     106        6755 :         if (subreq == NULL) {
     107           0 :                 return smbd_smb2_request_error(smb2req, NT_STATUS_NO_MEMORY);
     108             :         }
     109        6755 :         tevent_req_set_callback(subreq, smbd_smb2_request_sesssetup_done, smb2req);
     110             : 
     111             :         /*
     112             :          * Avoid sending a STATUS_PENDING message, which
     113             :          * matches a Windows Server and avoids problems with
     114             :          * MacOS clients.
     115             :          *
     116             :          * Even after 90 seconds a Windows Server doesn't return
     117             :          * STATUS_PENDING if using NTLMSSP against a non reachable
     118             :          * trusted domain.
     119             :          */
     120        6755 :         return smbd_smb2_request_pending_queue(smb2req, subreq, 0);
     121             : }
     122             : 
     123        6755 : static void smbd_smb2_request_sesssetup_done(struct tevent_req *subreq)
     124             : {
     125             :         struct smbd_smb2_request *smb2req =
     126        6755 :                 tevent_req_callback_data(subreq,
     127             :                 struct smbd_smb2_request);
     128             :         uint8_t *outhdr;
     129             :         DATA_BLOB outbody;
     130             :         DATA_BLOB outdyn;
     131        6755 :         uint16_t out_session_flags = 0;
     132        6755 :         uint64_t out_session_id = 0;
     133             :         uint16_t out_security_offset;
     134        6755 :         DATA_BLOB out_security_buffer = data_blob_null;
     135             :         NTSTATUS status;
     136             :         NTSTATUS error; /* transport error */
     137             : 
     138        6755 :         status = smbd_smb2_session_setup_wrap_recv(subreq,
     139             :                                                    &out_session_flags,
     140             :                                                    smb2req,
     141             :                                                    &out_security_buffer,
     142             :                                                    &out_session_id);
     143        6755 :         TALLOC_FREE(subreq);
     144        6755 :         if (!NT_STATUS_IS_OK(status) &&
     145        1929 :             !NT_STATUS_EQUAL(status, NT_STATUS_MORE_PROCESSING_REQUIRED)) {
     146         422 :                 status = nt_status_squash(status);
     147         422 :                 error = smbd_smb2_request_error(smb2req, status);
     148         422 :                 if (!NT_STATUS_IS_OK(error)) {
     149           0 :                         smbd_server_connection_terminate(smb2req->xconn,
     150             :                                                          nt_errstr(error));
     151         422 :                         return;
     152             :                 }
     153         422 :                 return;
     154             :         }
     155             : 
     156        6333 :         out_security_offset = SMB2_HDR_BODY + 0x08;
     157             : 
     158        6333 :         outhdr = SMBD_SMB2_OUT_HDR_PTR(smb2req);
     159             : 
     160        6333 :         outbody = smbd_smb2_generate_outbody(smb2req, 0x08);
     161        6333 :         if (outbody.data == NULL) {
     162           0 :                 error = smbd_smb2_request_error(smb2req, NT_STATUS_NO_MEMORY);
     163           0 :                 if (!NT_STATUS_IS_OK(error)) {
     164           0 :                         smbd_server_connection_terminate(smb2req->xconn,
     165             :                                                          nt_errstr(error));
     166           0 :                         return;
     167             :                 }
     168           0 :                 return;
     169             :         }
     170             : 
     171        6333 :         SBVAL(outhdr, SMB2_HDR_SESSION_ID, out_session_id);
     172             : 
     173        6333 :         SSVAL(outbody.data, 0x00, 0x08 + 1);    /* struct size */
     174        6333 :         SSVAL(outbody.data, 0x02,
     175             :               out_session_flags);               /* session flags */
     176        6333 :         SSVAL(outbody.data, 0x04,
     177             :               out_security_offset);             /* security buffer offset */
     178        6333 :         SSVAL(outbody.data, 0x06,
     179             :               out_security_buffer.length);      /* security buffer length */
     180             : 
     181        6333 :         outdyn = out_security_buffer;
     182             : 
     183        6333 :         error = smbd_smb2_request_done_ex(smb2req, status, outbody, &outdyn,
     184             :                                            __location__);
     185        6333 :         if (!NT_STATUS_IS_OK(error)) {
     186           0 :                 smbd_server_connection_terminate(smb2req->xconn,
     187             :                                                  nt_errstr(error));
     188           0 :                 return;
     189             :         }
     190             : }
     191             : 
     192        4780 : static NTSTATUS smbd_smb2_auth_generic_return(struct smbXsrv_session *session,
     193             :                                         struct smbXsrv_session_auth0 **_auth,
     194             :                                         struct smbd_smb2_request *smb2req,
     195             :                                         uint8_t in_security_mode,
     196             :                                         struct auth_session_info *session_info,
     197             :                                         uint16_t *out_session_flags,
     198             :                                         uint64_t *out_session_id)
     199             : {
     200             :         NTSTATUS status;
     201        4780 :         bool guest = false;
     202        4780 :         struct smbXsrv_session *x = session;
     203        4780 :         struct smbXsrv_session_auth0 *auth = *_auth;
     204        4780 :         struct smbXsrv_connection *xconn = smb2req->xconn;
     205             :         size_t i;
     206        4780 :         struct smb2_signing_derivations derivations = {
     207             :                 .signing = NULL,
     208             :         };
     209        4780 :         DATA_BLOB preauth_hash = data_blob_null;
     210             : 
     211        4780 :         *_auth = NULL;
     212             : 
     213        4780 :         if (xconn->protocol >= PROTOCOL_SMB3_11) {
     214             :                 struct smbXsrv_preauth *preauth;
     215             :                 gnutls_hash_hd_t hash_hnd;
     216             :                 int rc;
     217             : 
     218        2601 :                 preauth = talloc_move(smb2req, &auth->preauth);
     219             : 
     220        2601 :                 rc = gnutls_hash_init(&hash_hnd, GNUTLS_DIG_SHA512);
     221        2601 :                 if (rc < 0) {
     222           0 :                         return gnutls_error_to_ntstatus(rc, NT_STATUS_HASH_NOT_SUPPORTED);
     223             :                 }
     224        2601 :                 rc = gnutls_hash(hash_hnd,
     225        2601 :                                  preauth->sha512_value,
     226             :                                  sizeof(preauth->sha512_value));
     227        2601 :                 if (rc < 0) {
     228           0 :                         gnutls_hash_deinit(hash_hnd, NULL);
     229           0 :                         return NT_STATUS_ACCESS_DENIED;
     230             :                 }
     231       13005 :                 for (i = 1; i < smb2req->in.vector_count; i++) {
     232       10404 :                         rc = gnutls_hash(hash_hnd,
     233       10404 :                                          smb2req->in.vector[i].iov_base,
     234       10404 :                                          smb2req->in.vector[i].iov_len);
     235       10404 :                         if (rc < 0) {
     236           0 :                                 gnutls_hash_deinit(hash_hnd, NULL);
     237           0 :                                 return NT_STATUS_ACCESS_DENIED;
     238             :                         }
     239             :                 }
     240        2601 :                 gnutls_hash_deinit(hash_hnd, preauth->sha512_value);
     241             : 
     242        2601 :                 preauth_hash = data_blob_const(preauth->sha512_value,
     243             :                                     sizeof(preauth->sha512_value));
     244             :         }
     245             : 
     246        4780 :         smb2_signing_derivations_fill_const_stack(&derivations,
     247             :                                                   xconn->protocol,
     248             :                                                   preauth_hash);
     249             : 
     250        4780 :         if ((in_security_mode & SMB2_NEGOTIATE_SIGNING_REQUIRED) ||
     251        1007 :             (xconn->smb2.server.security_mode & SMB2_NEGOTIATE_SIGNING_REQUIRED))
     252             :         {
     253        4213 :                 x->global->signing_flags = SMBXSRV_SIGNING_REQUIRED;
     254             :         }
     255             : 
     256        4780 :         if ((lp_server_smb_encrypt(-1) >= SMB_ENCRYPTION_DESIRED) &&
     257           0 :             (xconn->smb2.client.capabilities & SMB2_CAP_ENCRYPTION)) {
     258           0 :                 x->global->encryption_flags = SMBXSRV_ENCRYPTION_DESIRED;
     259             :         }
     260             : 
     261        4780 :         if (lp_server_smb_encrypt(-1) == SMB_ENCRYPTION_REQUIRED) {
     262           0 :                 x->global->encryption_flags = SMBXSRV_ENCRYPTION_REQUIRED |
     263             :                         SMBXSRV_ENCRYPTION_DESIRED;
     264             :         }
     265             : 
     266        4780 :         if (security_session_user_level(session_info, NULL) < SECURITY_USER) {
     267         385 :                 if (security_session_user_level(session_info, NULL) == SECURITY_GUEST) {
     268           8 :                         *out_session_flags |= SMB2_SESSION_FLAG_IS_GUEST;
     269             :                 }
     270             :                 /* force no signing */
     271         385 :                 x->global->signing_flags &= ~SMBXSRV_SIGNING_REQUIRED;
     272             :                 /* we map anonymous to guest internally */
     273         385 :                 guest = true;
     274             :         }
     275             : 
     276        4780 :         if (guest && (x->global->encryption_flags & SMBXSRV_ENCRYPTION_REQUIRED)) {
     277           0 :                 DEBUG(1,("reject guest session as encryption is required\n"));
     278           0 :                 return NT_STATUS_ACCESS_DENIED;
     279             :         }
     280             : 
     281        4780 :         if (xconn->smb2.server.cipher == 0) {
     282        2181 :                 if (x->global->encryption_flags & SMBXSRV_ENCRYPTION_REQUIRED) {
     283           0 :                         DEBUG(1,("reject session with dialect[0x%04X] "
     284             :                                  "as encryption is required\n",
     285             :                                  xconn->smb2.server.dialect));
     286           0 :                         return NT_STATUS_ACCESS_DENIED;
     287             :                 }
     288             :         }
     289        4780 :         x->global->signing_algo = xconn->smb2.server.sign_algo;
     290        4780 :         x->global->encryption_cipher = xconn->smb2.server.cipher;
     291        4780 :         if (guest) {
     292         385 :                 x->global->encryption_cipher = SMB2_ENCRYPTION_NONE;
     293             :         }
     294             : 
     295        4780 :         if (x->global->encryption_flags & SMBXSRV_ENCRYPTION_DESIRED) {
     296           0 :                 *out_session_flags |= SMB2_SESSION_FLAG_ENCRYPT_DATA;
     297             :         }
     298             : 
     299        4780 :         status = smb2_signing_key_sign_create(x->global,
     300        4780 :                                               x->global->signing_algo,
     301        4780 :                                               &session_info->session_key,
     302             :                                               derivations.signing,
     303        4780 :                                               &x->global->signing_key);
     304        4780 :         if (!NT_STATUS_IS_OK(status)) {
     305           0 :                 return status;
     306             :         }
     307        4780 :         x->global->signing_key_blob = x->global->signing_key->blob;
     308             : 
     309        4780 :         if (x->global->encryption_cipher != SMB2_ENCRYPTION_NONE) {
     310             :                 size_t nonce_size;
     311             : 
     312        2260 :                 status = smb2_signing_key_cipher_create(x->global,
     313        2260 :                                                         x->global->encryption_cipher,
     314        2260 :                                                         &session_info->session_key,
     315             :                                                         derivations.cipher_s2c,
     316        2260 :                                                         &x->global->encryption_key);
     317        2260 :                 if (!NT_STATUS_IS_OK(status)) {
     318           0 :                         return status;
     319             :                 }
     320        2260 :                 x->global->encryption_key_blob = x->global->encryption_key->blob;
     321             : 
     322        2260 :                 status = smb2_signing_key_cipher_create(x->global,
     323        2260 :                                                         x->global->encryption_cipher,
     324        2260 :                                                         &session_info->session_key,
     325             :                                                         derivations.cipher_c2s,
     326        2260 :                                                         &x->global->decryption_key);
     327        2260 :                 if (!NT_STATUS_IS_OK(status)) {
     328           0 :                         return status;
     329             :                 }
     330        2260 :                 x->global->decryption_key_blob = x->global->decryption_key->blob;
     331             : 
     332             :                 /*
     333             :                  * CCM and GCM algorithms must never have their
     334             :                  * nonce wrap, or the security of the whole
     335             :                  * communication and the keys is destroyed.
     336             :                  * We must drop the connection once we have
     337             :                  * transfered too much data.
     338             :                  *
     339             :                  * NOTE: We assume nonces greater than 8 bytes.
     340             :                  */
     341        2260 :                 generate_nonce_buffer((uint8_t *)&x->nonce_high_random,
     342             :                                       sizeof(x->nonce_high_random));
     343        2260 :                 switch (xconn->smb2.server.cipher) {
     344          18 :                 case SMB2_ENCRYPTION_AES128_CCM:
     345          18 :                         nonce_size = SMB2_AES_128_CCM_NONCE_SIZE;
     346          18 :                         break;
     347        2238 :                 case SMB2_ENCRYPTION_AES128_GCM:
     348        2238 :                         nonce_size = gnutls_cipher_get_iv_size(GNUTLS_CIPHER_AES_128_GCM);
     349        2238 :                         break;
     350           2 :                 case SMB2_ENCRYPTION_AES256_CCM:
     351           2 :                         nonce_size = SMB2_AES_128_CCM_NONCE_SIZE;
     352           2 :                         break;
     353           2 :                 case SMB2_ENCRYPTION_AES256_GCM:
     354           2 :                         nonce_size = gnutls_cipher_get_iv_size(GNUTLS_CIPHER_AES_256_GCM);
     355           2 :                         break;
     356           0 :                 default:
     357           0 :                         nonce_size = 0;
     358           0 :                         break;
     359             :                 }
     360        2260 :                 x->nonce_high_max = SMB2_NONCE_HIGH_MAX(nonce_size);
     361        2260 :                 x->nonce_high = 0;
     362        2260 :                 x->nonce_low = 0;
     363             :         }
     364             : 
     365        4780 :         status = smb2_signing_key_sign_create(x->global,
     366        4780 :                                               x->global->signing_algo,
     367        4780 :                                               &session_info->session_key,
     368             :                                               derivations.application,
     369        4780 :                                               &x->global->application_key);
     370        4780 :         if (!NT_STATUS_IS_OK(status)) {
     371           0 :                 return status;
     372             :         }
     373        4780 :         x->global->application_key_blob = x->global->application_key->blob;
     374             : 
     375        4780 :         if (xconn->protocol >= PROTOCOL_SMB3_00 && lp_debug_encryption()) {
     376           0 :                 DEBUG(0, ("debug encryption: dumping generated session keys\n"));
     377           0 :                 DEBUGADD(0, ("Session Id    "));
     378           0 :                 dump_data(0, (uint8_t*)&session->global->session_wire_id,
     379             :                           sizeof(session->global->session_wire_id));
     380           0 :                 DEBUGADD(0, ("Session Key   "));
     381           0 :                 dump_data(0, session_info->session_key.data,
     382           0 :                           session_info->session_key.length);
     383           0 :                 DEBUGADD(0, ("Signing Algo: %u\n", x->global->signing_algo));
     384           0 :                 DEBUGADD(0, ("Signing Key   "));
     385           0 :                 dump_data(0, x->global->signing_key_blob.data,
     386           0 :                           x->global->signing_key_blob.length);
     387           0 :                 DEBUGADD(0, ("App Key       "));
     388           0 :                 dump_data(0, x->global->application_key_blob.data,
     389           0 :                           x->global->application_key_blob.length);
     390             : 
     391             :                 /* In server code, ServerIn is the decryption key */
     392             : 
     393           0 :                 DEBUGADD(0, ("Cipher Algo: %u\n", x->global->encryption_cipher));
     394           0 :                 DEBUGADD(0, ("ServerIn Key  "));
     395           0 :                 dump_data(0, x->global->decryption_key_blob.data,
     396           0 :                           x->global->decryption_key_blob.length);
     397           0 :                 DEBUGADD(0, ("ServerOut Key "));
     398           0 :                 dump_data(0, x->global->encryption_key_blob.data,
     399           0 :                           x->global->encryption_key_blob.length);
     400             :         }
     401             : 
     402        4780 :         status = smb2_signing_key_copy(x->global->channels,
     403        4780 :                                        x->global->signing_key,
     404        4780 :                                        &x->global->channels[0].signing_key);
     405        4780 :         if (!NT_STATUS_IS_OK(status)) {
     406           0 :                 return status;
     407             :         }
     408        4780 :         x->global->channels[0].signing_key_blob =
     409        4780 :                 x->global->channels[0].signing_key->blob;
     410        4780 :         x->global->channels[0].signing_algo = x->global->signing_algo;
     411        4780 :         x->global->channels[0].encryption_cipher = x->global->encryption_cipher;
     412             : 
     413        4780 :         data_blob_clear_free(&session_info->session_key);
     414        4780 :         session_info->session_key = data_blob_dup_talloc(session_info,
     415             :                                                 x->global->application_key_blob);
     416        4780 :         if (session_info->session_key.data == NULL) {
     417           0 :                 return NT_STATUS_NO_MEMORY;
     418             :         }
     419        4780 :         talloc_keep_secret(session_info->session_key.data);
     420             : 
     421        4780 :         smb2req->sconn->num_users++;
     422             : 
     423        4780 :         if (security_session_user_level(session_info, NULL) >= SECURITY_USER) {
     424        4395 :                 session->homes_snum =
     425        4395 :                         register_homes_share(session_info->unix_info->unix_name);
     426             :         }
     427             : 
     428        4780 :         set_current_user_info(session_info->unix_info->sanitized_username,
     429        4780 :                               session_info->unix_info->unix_name,
     430        4780 :                               session_info->info->domain_name);
     431             : 
     432        4780 :         reload_services(smb2req->sconn, conn_snum_used, true);
     433             : 
     434        4780 :         session->status = NT_STATUS_OK;
     435        4780 :         session->global->auth_session_info = talloc_move(session->global,
     436             :                                                          &session_info);
     437        4780 :         session->global->auth_session_info_seqnum += 1;
     438        9560 :         for (i=0; i < session->global->num_channels; i++) {
     439        4780 :                 struct smbXsrv_channel_global0 *_c =
     440        4780 :                         &session->global->channels[i];
     441             : 
     442        4780 :                 _c->auth_session_info_seqnum =
     443        4780 :                         session->global->auth_session_info_seqnum;
     444             :         }
     445        4780 :         session->global->auth_time = timeval_to_nttime(&smb2req->request_time);
     446        4780 :         session->global->expiration_time = gensec_expire_time(auth->gensec);
     447             : 
     448        4780 :         if (!session_claim(session)) {
     449           0 :                 DEBUG(1, ("smb2: Failed to claim session "
     450             :                         "for vuid=%llu\n",
     451             :                         (unsigned long long)session->global->session_wire_id));
     452           0 :                 return NT_STATUS_LOGON_FAILURE;
     453             :         }
     454             : 
     455        4780 :         TALLOC_FREE(auth);
     456        4780 :         status = smbXsrv_session_update(session);
     457        4780 :         if (!NT_STATUS_IS_OK(status)) {
     458           0 :                 DEBUG(0, ("smb2: Failed to update session for vuid=%llu - %s\n",
     459             :                           (unsigned long long)session->global->session_wire_id,
     460             :                           nt_errstr(status)));
     461           0 :                 return NT_STATUS_LOGON_FAILURE;
     462             :         }
     463             : 
     464             :         /*
     465             :          * we attach the session to the request
     466             :          * so that the response can be signed
     467             :          */
     468        4780 :         if (!guest) {
     469        4395 :                 smb2req->do_signing = true;
     470             :         }
     471             : 
     472        4780 :         global_client_caps |= (CAP_LEVEL_II_OPLOCKS|CAP_STATUS32);
     473             : 
     474        4780 :         *out_session_id = session->global->session_wire_id;
     475        4780 :         smb2req->last_session_id = session->global->session_wire_id;
     476             : 
     477        4780 :         return NT_STATUS_OK;
     478             : }
     479             : 
     480          30 : static NTSTATUS smbd_smb2_reauth_generic_return(struct smbXsrv_session *session,
     481             :                                         struct smbXsrv_session_auth0 **_auth,
     482             :                                         struct smbd_smb2_request *smb2req,
     483             :                                         struct auth_session_info *session_info,
     484             :                                         uint16_t *out_session_flags,
     485             :                                         uint64_t *out_session_id)
     486             : {
     487             :         NTSTATUS status;
     488          30 :         struct smbXsrv_session *x = session;
     489          30 :         struct smbXsrv_session_auth0 *auth = *_auth;
     490          30 :         struct smbXsrv_connection *xconn = smb2req->xconn;
     491             :         size_t i;
     492             : 
     493          30 :         *_auth = NULL;
     494             : 
     495          30 :         data_blob_clear_free(&session_info->session_key);
     496          30 :         session_info->session_key = data_blob_dup_talloc(session_info,
     497             :                                                 x->global->application_key_blob);
     498          30 :         if (session_info->session_key.data == NULL) {
     499           0 :                 return NT_STATUS_NO_MEMORY;
     500             :         }
     501          30 :         talloc_keep_secret(session_info->session_key.data);
     502             : 
     503          30 :         session->homes_snum =
     504          30 :                         register_homes_share(session_info->unix_info->unix_name);
     505             : 
     506          30 :         set_current_user_info(session_info->unix_info->sanitized_username,
     507          30 :                               session_info->unix_info->unix_name,
     508          30 :                               session_info->info->domain_name);
     509             : 
     510          30 :         reload_services(smb2req->sconn, conn_snum_used, true);
     511             : 
     512          30 :         if (security_session_user_level(session_info, NULL) >= SECURITY_USER) {
     513          22 :                 smb2req->do_signing = true;
     514             :         }
     515             : 
     516          30 :         session->status = NT_STATUS_OK;
     517          30 :         TALLOC_FREE(session->global->auth_session_info);
     518          30 :         session->global->auth_session_info = talloc_move(session->global,
     519             :                                                          &session_info);
     520          30 :         session->global->auth_session_info_seqnum += 1;
     521          60 :         for (i=0; i < session->global->num_channels; i++) {
     522          30 :                 struct smbXsrv_channel_global0 *_c =
     523          30 :                         &session->global->channels[i];
     524             : 
     525          30 :                 _c->auth_session_info_seqnum =
     526          30 :                         session->global->auth_session_info_seqnum;
     527             :         }
     528          30 :         session->global->auth_time = timeval_to_nttime(&smb2req->request_time);
     529          30 :         session->global->expiration_time = gensec_expire_time(auth->gensec);
     530             : 
     531          30 :         TALLOC_FREE(auth);
     532          30 :         status = smbXsrv_session_update(session);
     533          30 :         if (!NT_STATUS_IS_OK(status)) {
     534           0 :                 DEBUG(0, ("smb2: Failed to update session for vuid=%llu - %s\n",
     535             :                           (unsigned long long)session->global->session_wire_id,
     536             :                           nt_errstr(status)));
     537           0 :                 return NT_STATUS_LOGON_FAILURE;
     538             :         }
     539             : 
     540          30 :         conn_clear_vuid_caches(xconn->client->sconn,
     541          30 :                                session->global->session_wire_id);
     542             : 
     543          30 :         *out_session_id = session->global->session_wire_id;
     544             : 
     545          30 :         return NT_STATUS_OK;
     546             : }
     547             : 
     548          18 : static NTSTATUS smbd_smb2_bind_auth_return(struct smbXsrv_session *session,
     549             :                                            struct smbXsrv_session_auth0 **_auth,
     550             :                                            struct smbd_smb2_request *smb2req,
     551             :                                            struct auth_session_info *session_info,
     552             :                                            uint16_t *out_session_flags,
     553             :                                            uint64_t *out_session_id)
     554             : {
     555             :         NTSTATUS status;
     556          18 :         struct smbXsrv_session *x = session;
     557          18 :         struct smbXsrv_session_auth0 *auth = *_auth;
     558          18 :         struct smbXsrv_connection *xconn = smb2req->xconn;
     559          18 :         struct smbXsrv_channel_global0 *c = NULL;
     560             :         size_t i;
     561          18 :         struct smb2_signing_derivations derivations = {
     562             :                 .signing = NULL,
     563             :         };
     564          18 :         DATA_BLOB preauth_hash = data_blob_null;
     565             :         bool ok;
     566             : 
     567          18 :         *_auth = NULL;
     568             : 
     569          18 :         if (xconn->protocol >= PROTOCOL_SMB3_11) {
     570             :                 struct smbXsrv_preauth *preauth;
     571          18 :                 gnutls_hash_hd_t hash_hnd = NULL;
     572             :                 int rc;
     573             : 
     574          18 :                 preauth = talloc_move(smb2req, &auth->preauth);
     575             : 
     576          18 :                 rc = gnutls_hash_init(&hash_hnd, GNUTLS_DIG_SHA512);
     577          18 :                 if (rc < 0) {
     578           0 :                         return gnutls_error_to_ntstatus(rc, NT_STATUS_HASH_NOT_SUPPORTED);
     579             :                 }
     580             : 
     581          18 :                 rc = gnutls_hash(hash_hnd,
     582          18 :                                  preauth->sha512_value,
     583             :                                  sizeof(preauth->sha512_value));
     584          18 :                 if (rc < 0) {
     585           0 :                         gnutls_hash_deinit(hash_hnd, NULL);
     586           0 :                         return gnutls_error_to_ntstatus(rc, NT_STATUS_HASH_NOT_SUPPORTED);
     587             :                 }
     588          90 :                 for (i = 1; i < smb2req->in.vector_count; i++) {
     589          72 :                         rc = gnutls_hash(hash_hnd,
     590          72 :                                          smb2req->in.vector[i].iov_base,
     591          72 :                                          smb2req->in.vector[i].iov_len);
     592          72 :                         if (rc < 0) {
     593           0 :                                 gnutls_hash_deinit(hash_hnd, NULL);
     594           0 :                                 return gnutls_error_to_ntstatus(rc, NT_STATUS_HASH_NOT_SUPPORTED);
     595             :                         }
     596             :                 }
     597          18 :                 gnutls_hash_deinit(hash_hnd, preauth->sha512_value);
     598             : 
     599          18 :                 preauth_hash = data_blob_const(preauth->sha512_value,
     600             :                                     sizeof(preauth->sha512_value));
     601             :         }
     602             : 
     603          18 :         smb2_signing_derivations_fill_const_stack(&derivations,
     604             :                                                   xconn->protocol,
     605             :                                                   preauth_hash);
     606             : 
     607          18 :         status = smbXsrv_session_find_channel(session, xconn, &c);
     608          18 :         if (!NT_STATUS_IS_OK(status)) {
     609           0 :                 return status;
     610             :         }
     611             : 
     612          18 :         ok = security_token_is_sid(session_info->security_token,
     613          18 :                         &x->global->auth_session_info->security_token->sids[0]);
     614          18 :         if (!ok) {
     615           2 :                 return NT_STATUS_ACCESS_DENIED;
     616             :         }
     617             : 
     618          16 :         if (session_info->session_key.length == 0) {
     619             :                 /* See [MS-SMB2] 3.3.5.2.4 for the return code. */
     620           0 :                 return NT_STATUS_NOT_SUPPORTED;
     621             :         }
     622             : 
     623          16 :         c->signing_algo = xconn->smb2.server.sign_algo;
     624          16 :         c->encryption_cipher = xconn->smb2.server.cipher;
     625             : 
     626          16 :         status = smb2_signing_key_sign_create(x->global->channels,
     627          16 :                                               c->signing_algo,
     628          16 :                                               &session_info->session_key,
     629             :                                               derivations.signing,
     630          16 :                                               &c->signing_key);
     631          16 :         if (!NT_STATUS_IS_OK(status)) {
     632           0 :                 return status;
     633             :         }
     634          16 :         c->signing_key_blob = c->signing_key->blob;
     635             : 
     636          16 :         TALLOC_FREE(auth);
     637          16 :         status = smbXsrv_session_update(session);
     638          16 :         if (!NT_STATUS_IS_OK(status)) {
     639           0 :                 DEBUG(0, ("smb2: Failed to update session for vuid=%llu - %s\n",
     640             :                           (unsigned long long)session->global->session_wire_id,
     641             :                           nt_errstr(status)));
     642           0 :                 return NT_STATUS_LOGON_FAILURE;
     643             :         }
     644             : 
     645          16 :         *out_session_id = session->global->session_wire_id;
     646             : 
     647          16 :         return NT_STATUS_OK;
     648             : }
     649             : 
     650             : struct smbd_smb2_session_setup_state {
     651             :         struct tevent_context *ev;
     652             :         struct smbd_smb2_request *smb2req;
     653             :         uint64_t in_session_id;
     654             :         uint8_t in_flags;
     655             :         uint8_t in_security_mode;
     656             :         uint64_t in_previous_session_id;
     657             :         DATA_BLOB in_security_buffer;
     658             :         struct smbXsrv_session *session;
     659             :         struct smbXsrv_session_auth0 *auth;
     660             :         struct auth_session_info *session_info;
     661             :         uint16_t out_session_flags;
     662             :         DATA_BLOB out_security_buffer;
     663             :         uint64_t out_session_id;
     664             : };
     665             : 
     666             : static void smbd_smb2_session_setup_gensec_done(struct tevent_req *subreq);
     667             : static void smbd_smb2_session_setup_previous_done(struct tevent_req *subreq);
     668             : static void smbd_smb2_session_setup_auth_return(struct tevent_req *req);
     669             : 
     670        6755 : static struct tevent_req *smbd_smb2_session_setup_send(TALLOC_CTX *mem_ctx,
     671             :                                         struct tevent_context *ev,
     672             :                                         struct smbd_smb2_request *smb2req,
     673             :                                         uint64_t in_session_id,
     674             :                                         uint8_t in_flags,
     675             :                                         uint8_t in_security_mode,
     676             :                                         uint64_t in_previous_session_id,
     677             :                                         DATA_BLOB in_security_buffer)
     678             : {
     679             :         struct tevent_req *req;
     680             :         struct smbd_smb2_session_setup_state *state;
     681             :         NTSTATUS status;
     682        6755 :         NTTIME now = timeval_to_nttime(&smb2req->request_time);
     683             :         struct tevent_req *subreq;
     684        6755 :         struct smbXsrv_channel_global0 *c = NULL;
     685             :         enum security_user_level seclvl;
     686             : 
     687        6755 :         req = tevent_req_create(mem_ctx, &state,
     688             :                                 struct smbd_smb2_session_setup_state);
     689        6755 :         if (req == NULL) {
     690           0 :                 return NULL;
     691             :         }
     692        6755 :         state->ev = ev;
     693        6755 :         state->smb2req = smb2req;
     694        6755 :         state->in_session_id = in_session_id;
     695        6755 :         state->in_flags = in_flags;
     696        6755 :         state->in_security_mode = in_security_mode;
     697        6755 :         state->in_previous_session_id = in_previous_session_id;
     698        6755 :         state->in_security_buffer = in_security_buffer;
     699             : 
     700        6755 :         if (in_flags & SMB2_SESSION_FLAG_BINDING) {
     701         164 :                 if (in_session_id == 0) {
     702           0 :                         tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
     703           0 :                         return tevent_req_post(req, ev);
     704             :                 }
     705             : 
     706         164 :                 if (smb2req->session == NULL) {
     707           0 :                         tevent_req_nterror(req, NT_STATUS_USER_SESSION_DELETED);
     708           0 :                         return tevent_req_post(req, ev);
     709             :                 }
     710             : 
     711         164 :                 if ((smb2req->session->global->signing_algo >= SMB2_SIGNING_AES128_GMAC) &&
     712          72 :                     (smb2req->xconn->smb2.server.sign_algo != smb2req->session->global->signing_algo))
     713             :                 {
     714          48 :                         tevent_req_nterror(req, NT_STATUS_REQUEST_OUT_OF_SEQUENCE);
     715          48 :                         return tevent_req_post(req, ev);
     716             :                 }
     717         116 :                 if ((smb2req->xconn->smb2.server.sign_algo >= SMB2_SIGNING_AES128_GMAC) &&
     718          72 :                     (smb2req->session->global->signing_algo != smb2req->xconn->smb2.server.sign_algo))
     719             :                 {
     720          48 :                         tevent_req_nterror(req, NT_STATUS_NOT_SUPPORTED);
     721          48 :                         return tevent_req_post(req, ev);
     722             :                 }
     723             : 
     724          68 :                 if (smb2req->xconn->protocol < PROTOCOL_SMB3_00) {
     725          20 :                         tevent_req_nterror(req, NT_STATUS_REQUEST_NOT_ACCEPTED);
     726          20 :                         return tevent_req_post(req, ev);
     727             :                 }
     728             : 
     729          48 :                 if (!smb2req->xconn->client->server_multi_channel_enabled) {
     730           0 :                         tevent_req_nterror(req, NT_STATUS_REQUEST_NOT_ACCEPTED);
     731           0 :                         return tevent_req_post(req, ev);
     732             :                 }
     733             : 
     734          48 :                 if (!smb2req->do_signing) {
     735           0 :                         tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
     736           0 :                         return tevent_req_post(req, ev);
     737             :                 }
     738             : 
     739          48 :                 if (smb2req->session->global->connection_dialect
     740          48 :                     != smb2req->xconn->smb2.server.dialect)
     741             :                 {
     742          16 :                         tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
     743          16 :                         return tevent_req_post(req, ev);
     744             :                 }
     745             : 
     746          32 :                 if (smb2req->session->global->encryption_cipher
     747          32 :                     != smb2req->xconn->smb2.server.cipher)
     748             :                 {
     749           8 :                         tevent_req_nterror(req, NT_STATUS_INVALID_PARAMETER);
     750           8 :                         return tevent_req_post(req, ev);
     751             :                 }
     752             : 
     753          24 :                 status = smb2req->session->status;
     754          24 :                 if (NT_STATUS_EQUAL(status, NT_STATUS_BAD_LOGON_SESSION_STATE)) {
     755             :                         /*
     756             :                          * This comes from smb2srv_session_lookup_global().
     757             :                          */
     758           4 :                         tevent_req_nterror(req, NT_STATUS_USER_SESSION_DELETED);
     759           4 :                         return tevent_req_post(req, ev);
     760             :                 }
     761             : 
     762          20 :                 status = smbXsrv_session_find_channel(smb2req->session,
     763          20 :                                                       smb2req->xconn,
     764             :                                                       &c);
     765          20 :                 if (NT_STATUS_IS_OK(status)) {
     766           2 :                         if (!smb2_signing_key_valid(c->signing_key)) {
     767           2 :                                 goto auth;
     768             :                         }
     769           0 :                         tevent_req_nterror(req, NT_STATUS_REQUEST_NOT_ACCEPTED);
     770           0 :                         return tevent_req_post(req, ev);
     771             :                 }
     772             : 
     773          18 :                 seclvl = security_session_user_level(
     774          18 :                                 smb2req->session->global->auth_session_info,
     775             :                                 NULL);
     776          18 :                 if (seclvl < SECURITY_USER) {
     777           0 :                         tevent_req_nterror(req, NT_STATUS_NOT_SUPPORTED);
     778           0 :                         return tevent_req_post(req, ev);
     779             :                 }
     780             : 
     781          18 :                 status = smbXsrv_session_add_channel(smb2req->session,
     782             :                                                      smb2req->xconn,
     783             :                                                      now,
     784             :                                                      &c);
     785          18 :                 if (tevent_req_nterror(req, status)) {
     786           0 :                         return tevent_req_post(req, ev);
     787             :                 }
     788             : 
     789          18 :                 status = smbXsrv_session_update(smb2req->session);
     790          18 :                 if (tevent_req_nterror(req, status)) {
     791           0 :                         return tevent_req_post(req, ev);
     792             :                 }
     793             :         }
     794             : 
     795        6609 : auth:
     796             : 
     797        6611 :         if (state->in_session_id == 0) {
     798             :                 /* create a new session */
     799        4914 :                 status = smbXsrv_session_create(state->smb2req->xconn,
     800        4914 :                                                 now, &state->session);
     801        4914 :                 if (tevent_req_nterror(req, status)) {
     802           0 :                         return tevent_req_post(req, ev);
     803             :                 }
     804        4914 :                 smb2req->session = state->session;
     805             :         } else {
     806        1697 :                 if (smb2req->session == NULL) {
     807           0 :                         tevent_req_nterror(req, NT_STATUS_USER_SESSION_DELETED);
     808           0 :                         return tevent_req_post(req, ev);
     809             :                 }
     810             : 
     811        1697 :                 state->session = smb2req->session;
     812        1697 :                 status = state->session->status;
     813        1697 :                 if (NT_STATUS_EQUAL(status, NT_STATUS_BAD_LOGON_SESSION_STATE)) {
     814             :                         /*
     815             :                          * This comes from smb2srv_session_lookup_global().
     816             :                          */
     817         106 :                         tevent_req_nterror(req, NT_STATUS_USER_SESSION_DELETED);
     818         106 :                         return tevent_req_post(req, ev);
     819             :                 }
     820        1591 :                 if (NT_STATUS_EQUAL(status, NT_STATUS_NETWORK_SESSION_EXPIRED)) {
     821          12 :                         status = NT_STATUS_OK;
     822             :                 }
     823        1591 :                 if (NT_STATUS_EQUAL(status, NT_STATUS_MORE_PROCESSING_REQUIRED)) {
     824        1505 :                         status = NT_STATUS_OK;
     825             :                 }
     826        1591 :                 if (tevent_req_nterror(req, status)) {
     827           0 :                         return tevent_req_post(req, ev);
     828             :                 }
     829             :         }
     830             : 
     831        6505 :         status = smbXsrv_session_find_channel(smb2req->session,
     832        6505 :                                               smb2req->xconn, &c);
     833        6505 :         if (tevent_req_nterror(req, status)) {
     834          34 :                 return tevent_req_post(req, ev);
     835             :         }
     836             : 
     837        6471 :         if (!(in_flags & SMB2_SESSION_FLAG_BINDING)) {
     838        6451 :                 state->session->status = NT_STATUS_MORE_PROCESSING_REQUIRED;
     839             :         }
     840             : 
     841        6471 :         status = smbXsrv_session_find_auth(state->session, smb2req->xconn,
     842        6471 :                                            now, &state->auth);
     843        6471 :         if (!NT_STATUS_IS_OK(status)) {
     844        4964 :                 status = smbXsrv_session_create_auth(state->session,
     845             :                                                      smb2req->xconn, now,
     846             :                                                      in_flags, in_security_mode,
     847        4964 :                                                      &state->auth);
     848        4964 :                 if (tevent_req_nterror(req, status)) {
     849           0 :                         return tevent_req_post(req, ev);
     850             :                 }
     851             :         }
     852             : 
     853        6471 :         if (state->auth->gensec == NULL) {
     854        4964 :                 status = auth_generic_prepare(state->auth,
     855        4964 :                                               state->smb2req->xconn->remote_address,
     856        4964 :                                               state->smb2req->xconn->local_address,
     857             :                                               "SMB2",
     858        4964 :                                               &state->auth->gensec);
     859        4964 :                 if (tevent_req_nterror(req, status)) {
     860           0 :                         return tevent_req_post(req, ev);
     861             :                 }
     862             : 
     863        4964 :                 gensec_want_feature(state->auth->gensec, GENSEC_FEATURE_SESSION_KEY);
     864        4964 :                 gensec_want_feature(state->auth->gensec, GENSEC_FEATURE_UNIX_TOKEN);
     865        4964 :                 gensec_want_feature(state->auth->gensec, GENSEC_FEATURE_SMB_TRANSPORT);
     866             : 
     867        4964 :                 status = gensec_start_mech_by_oid(state->auth->gensec,
     868             :                                                   GENSEC_OID_SPNEGO);
     869        4964 :                 if (tevent_req_nterror(req, status)) {
     870           0 :                         return tevent_req_post(req, ev);
     871             :                 }
     872             :         }
     873             : 
     874        6471 :         status = smbXsrv_session_update(state->session);
     875        6471 :         if (tevent_req_nterror(req, status)) {
     876           0 :                 return tevent_req_post(req, ev);
     877             :         }
     878             : 
     879        6471 :         become_root();
     880        6471 :         subreq = gensec_update_send(state, state->ev,
     881        6471 :                                     state->auth->gensec,
     882        6471 :                                     state->in_security_buffer);
     883        6471 :         unbecome_root();
     884        6471 :         if (tevent_req_nomem(subreq, req)) {
     885           0 :                 return tevent_req_post(req, ev);
     886             :         }
     887        6471 :         tevent_req_set_callback(subreq, smbd_smb2_session_setup_gensec_done, req);
     888             : 
     889        6471 :         return req;
     890             : }
     891             : 
     892        6471 : static void smbd_smb2_session_setup_gensec_done(struct tevent_req *subreq)
     893             : {
     894             :         struct tevent_req *req =
     895        6471 :                 tevent_req_callback_data(subreq,
     896             :                 struct tevent_req);
     897             :         struct smbd_smb2_session_setup_state *state =
     898        6471 :                 tevent_req_data(req,
     899             :                 struct smbd_smb2_session_setup_state);
     900             :         NTSTATUS status;
     901             : 
     902        6471 :         become_root();
     903        6471 :         status = gensec_update_recv(subreq, state,
     904             :                                     &state->out_security_buffer);
     905        6471 :         unbecome_root();
     906        6471 :         TALLOC_FREE(subreq);
     907        6471 :         if (!NT_STATUS_EQUAL(status, NT_STATUS_MORE_PROCESSING_REQUIRED) &&
     908        4964 :             !NT_STATUS_IS_OK(status)) {
     909         129 :                 tevent_req_nterror(req, status);
     910         129 :                 return;
     911             :         }
     912             : 
     913        6342 :         if (NT_STATUS_EQUAL(status, NT_STATUS_MORE_PROCESSING_REQUIRED)) {
     914        1507 :                 state->out_session_id = state->session->global->session_wire_id;
     915        1507 :                 state->smb2req->preauth = state->auth->preauth;
     916        1507 :                 tevent_req_nterror(req, status);
     917        1507 :                 return;
     918             :         }
     919             : 
     920        4835 :         status = gensec_session_info(state->auth->gensec,
     921             :                                      state,
     922             :                                      &state->session_info);
     923        4835 :         if (tevent_req_nterror(req, status)) {
     924           7 :                 return;
     925             :         }
     926             : 
     927        4828 :         if ((state->in_previous_session_id != 0) &&
     928           4 :              (state->session->global->session_wire_id !=
     929           4 :               state->in_previous_session_id))
     930             :         {
     931           4 :                 subreq = smb2srv_session_close_previous_send(state, state->ev,
     932           4 :                                                 state->smb2req->xconn,
     933             :                                                 state->session_info,
     934             :                                                 state->in_previous_session_id,
     935           4 :                                                 state->session->global->session_wire_id);
     936           4 :                 if (tevent_req_nomem(subreq, req)) {
     937           0 :                         return;
     938             :                 }
     939           4 :                 tevent_req_set_callback(subreq,
     940             :                                         smbd_smb2_session_setup_previous_done,
     941             :                                         req);
     942           4 :                 return;
     943             :         }
     944             : 
     945        4824 :         smbd_smb2_session_setup_auth_return(req);
     946             : }
     947             : 
     948           4 : static void smbd_smb2_session_setup_previous_done(struct tevent_req *subreq)
     949             : {
     950             :         struct tevent_req *req =
     951           4 :                 tevent_req_callback_data(subreq,
     952             :                 struct tevent_req);
     953             :         NTSTATUS status;
     954             : 
     955           4 :         status = smb2srv_session_close_previous_recv(subreq);
     956           4 :         TALLOC_FREE(subreq);
     957           4 :         if (tevent_req_nterror(req, status)) {
     958           0 :                 return;
     959             :         }
     960             : 
     961           4 :         smbd_smb2_session_setup_auth_return(req);
     962             : }
     963             : 
     964        4828 : static void smbd_smb2_session_setup_auth_return(struct tevent_req *req)
     965             : {
     966             :         struct smbd_smb2_session_setup_state *state =
     967        4828 :                 tevent_req_data(req,
     968             :                 struct smbd_smb2_session_setup_state);
     969             :         NTSTATUS status;
     970             : 
     971        4828 :         if (state->in_flags & SMB2_SESSION_FLAG_BINDING) {
     972          18 :                 status = smbd_smb2_bind_auth_return(state->session,
     973             :                                                     &state->auth,
     974             :                                                     state->smb2req,
     975             :                                                     state->session_info,
     976             :                                                     &state->out_session_flags,
     977             :                                                     &state->out_session_id);
     978          18 :                 if (tevent_req_nterror(req, status)) {
     979           2 :                         return;
     980             :                 }
     981          16 :                 tevent_req_done(req);
     982          16 :                 return;
     983             :         }
     984             : 
     985        4810 :         if (state->session->global->auth_session_info != NULL) {
     986          30 :                 status = smbd_smb2_reauth_generic_return(state->session,
     987             :                                                          &state->auth,
     988             :                                                          state->smb2req,
     989             :                                                          state->session_info,
     990             :                                                          &state->out_session_flags,
     991             :                                                          &state->out_session_id);
     992          30 :                 if (tevent_req_nterror(req, status)) {
     993           0 :                         return;
     994             :                 }
     995          30 :                 tevent_req_done(req);
     996          30 :                 return;
     997             :         }
     998             : 
     999        4780 :         status = smbd_smb2_auth_generic_return(state->session,
    1000             :                                                &state->auth,
    1001             :                                                state->smb2req,
    1002        4780 :                                                state->in_security_mode,
    1003             :                                                state->session_info,
    1004             :                                                &state->out_session_flags,
    1005             :                                                &state->out_session_id);
    1006        4780 :         if (tevent_req_nterror(req, status)) {
    1007           0 :                 return;
    1008             :         }
    1009             : 
    1010        4780 :         tevent_req_done(req);
    1011        4780 :         return;
    1012             : }
    1013             : 
    1014        6755 : static NTSTATUS smbd_smb2_session_setup_recv(struct tevent_req *req,
    1015             :                                         uint16_t *out_session_flags,
    1016             :                                         TALLOC_CTX *mem_ctx,
    1017             :                                         DATA_BLOB *out_security_buffer,
    1018             :                                         uint64_t *out_session_id)
    1019             : {
    1020             :         struct smbd_smb2_session_setup_state *state =
    1021        6755 :                 tevent_req_data(req,
    1022             :                 struct smbd_smb2_session_setup_state);
    1023             :         NTSTATUS status;
    1024             : 
    1025        6755 :         if (tevent_req_is_nterror(req, &status)) {
    1026        1929 :                 if (!NT_STATUS_EQUAL(status, NT_STATUS_MORE_PROCESSING_REQUIRED)) {
    1027         422 :                         tevent_req_received(req);
    1028         422 :                         return nt_status_squash(status);
    1029             :                 }
    1030             :         } else {
    1031        4826 :                 status = NT_STATUS_OK;
    1032             :         }
    1033             : 
    1034        6333 :         *out_session_flags = state->out_session_flags;
    1035        6333 :         *out_security_buffer = state->out_security_buffer;
    1036        6333 :         *out_session_id = state->out_session_id;
    1037             : 
    1038        6333 :         talloc_steal(mem_ctx, out_security_buffer->data);
    1039        6333 :         tevent_req_received(req);
    1040        6333 :         return status;
    1041             : }
    1042             : 
    1043             : struct smbd_smb2_session_setup_wrap_state {
    1044             :         struct tevent_context *ev;
    1045             :         struct smbd_smb2_request *smb2req;
    1046             :         uint64_t in_session_id;
    1047             :         uint8_t in_flags;
    1048             :         uint8_t in_security_mode;
    1049             :         uint64_t in_previous_session_id;
    1050             :         DATA_BLOB in_security_buffer;
    1051             :         uint16_t out_session_flags;
    1052             :         DATA_BLOB out_security_buffer;
    1053             :         uint64_t out_session_id;
    1054             :         NTSTATUS error;
    1055             : };
    1056             : 
    1057             : static void smbd_smb2_session_setup_wrap_setup_done(struct tevent_req *subreq);
    1058             : static void smbd_smb2_session_setup_wrap_shutdown_done(struct tevent_req *subreq);
    1059             : 
    1060        6755 : static struct tevent_req *smbd_smb2_session_setup_wrap_send(TALLOC_CTX *mem_ctx,
    1061             :                                         struct tevent_context *ev,
    1062             :                                         struct smbd_smb2_request *smb2req,
    1063             :                                         uint64_t in_session_id,
    1064             :                                         uint8_t in_flags,
    1065             :                                         uint8_t in_security_mode,
    1066             :                                         uint64_t in_previous_session_id,
    1067             :                                         DATA_BLOB in_security_buffer)
    1068             : {
    1069             :         struct tevent_req *req;
    1070             :         struct smbd_smb2_session_setup_wrap_state *state;
    1071             :         struct tevent_req *subreq;
    1072             : 
    1073        6755 :         req = tevent_req_create(mem_ctx, &state,
    1074             :                                 struct smbd_smb2_session_setup_wrap_state);
    1075        6755 :         if (req == NULL) {
    1076           0 :                 return NULL;
    1077             :         }
    1078        6755 :         state->ev = ev;
    1079        6755 :         state->smb2req = smb2req;
    1080        6755 :         state->in_session_id = in_session_id;
    1081        6755 :         state->in_flags = in_flags;
    1082        6755 :         state->in_security_mode = in_security_mode;
    1083        6755 :         state->in_previous_session_id = in_previous_session_id;
    1084        6755 :         state->in_security_buffer = in_security_buffer;
    1085             : 
    1086        6755 :         subreq = smbd_smb2_session_setup_send(state, state->ev,
    1087        6755 :                                               state->smb2req,
    1088        6755 :                                               state->in_session_id,
    1089        6755 :                                               state->in_flags,
    1090        6755 :                                               state->in_security_mode,
    1091        6755 :                                               state->in_previous_session_id,
    1092        6755 :                                               state->in_security_buffer);
    1093        6755 :         if (tevent_req_nomem(subreq, req)) {
    1094           0 :                 return tevent_req_post(req, ev);
    1095             :         }
    1096        6755 :         tevent_req_set_callback(subreq,
    1097             :                                 smbd_smb2_session_setup_wrap_setup_done, req);
    1098             : 
    1099        6755 :         return req;
    1100             : }
    1101             : 
    1102        6755 : static void smbd_smb2_session_setup_wrap_setup_done(struct tevent_req *subreq)
    1103             : {
    1104             :         struct tevent_req *req =
    1105        6755 :                 tevent_req_callback_data(subreq,
    1106             :                 struct tevent_req);
    1107             :         struct smbd_smb2_session_setup_wrap_state *state =
    1108        6755 :                 tevent_req_data(req,
    1109             :                 struct smbd_smb2_session_setup_wrap_state);
    1110             :         NTSTATUS status;
    1111             : 
    1112        6755 :         status = smbd_smb2_session_setup_recv(subreq,
    1113             :                                               &state->out_session_flags,
    1114             :                                               state,
    1115             :                                               &state->out_security_buffer,
    1116             :                                               &state->out_session_id);
    1117        6755 :         TALLOC_FREE(subreq);
    1118        6755 :         if (NT_STATUS_IS_OK(status)) {
    1119        4826 :                 tevent_req_done(req);
    1120        6619 :                 return;
    1121             :         }
    1122        1929 :         if (NT_STATUS_EQUAL(status, NT_STATUS_MORE_PROCESSING_REQUIRED)) {
    1123        1507 :                 tevent_req_nterror(req, status);
    1124        1507 :                 return;
    1125             :         }
    1126             : 
    1127         422 :         if (state->smb2req->session == NULL) {
    1128           0 :                 tevent_req_nterror(req, status);
    1129           0 :                 return;
    1130             :         }
    1131             : 
    1132         422 :         state->error = status;
    1133             : 
    1134         422 :         if (state->in_flags & SMB2_SESSION_FLAG_BINDING) {
    1135         146 :                 status = smbXsrv_session_remove_channel(state->smb2req->session,
    1136         146 :                                                         state->smb2req->xconn);
    1137         146 :                 if (tevent_req_nterror(req, status)) {
    1138           0 :                         return;
    1139             :                 }
    1140         146 :                 tevent_req_nterror(req, state->error);
    1141         146 :                 return;
    1142             :         }
    1143             : 
    1144         276 :         if (NT_STATUS_EQUAL(state->error, NT_STATUS_USER_SESSION_DELETED)) {
    1145         140 :                 tevent_req_nterror(req, state->error);
    1146         140 :                 return;
    1147             :         }
    1148             : 
    1149         136 :         subreq = smb2srv_session_shutdown_send(state, state->ev,
    1150         136 :                                                state->smb2req->session,
    1151             :                                                state->smb2req);
    1152         136 :         if (tevent_req_nomem(subreq, req)) {
    1153           0 :                 return;
    1154             :         }
    1155         136 :         tevent_req_set_callback(subreq,
    1156             :                                 smbd_smb2_session_setup_wrap_shutdown_done,
    1157             :                                 req);
    1158             : }
    1159             : 
    1160         136 : static void smbd_smb2_session_setup_wrap_shutdown_done(struct tevent_req *subreq)
    1161             : {
    1162             :         struct tevent_req *req =
    1163         136 :                 tevent_req_callback_data(subreq,
    1164             :                 struct tevent_req);
    1165             :         struct smbd_smb2_session_setup_wrap_state *state =
    1166         136 :                 tevent_req_data(req,
    1167             :                 struct smbd_smb2_session_setup_wrap_state);
    1168             :         NTSTATUS status;
    1169             : 
    1170         136 :         status = smb2srv_session_shutdown_recv(subreq);
    1171         136 :         TALLOC_FREE(subreq);
    1172         136 :         if (tevent_req_nterror(req, status)) {
    1173           0 :                 return;
    1174             :         }
    1175             : 
    1176             :         /*
    1177             :          * we may need to sign the response, so we need to keep
    1178             :          * the session until the response is sent to the wire.
    1179             :          */
    1180         136 :         talloc_steal(state->smb2req, state->smb2req->session);
    1181             : 
    1182         136 :         tevent_req_nterror(req, state->error);
    1183             : }
    1184             : 
    1185        6755 : static NTSTATUS smbd_smb2_session_setup_wrap_recv(struct tevent_req *req,
    1186             :                                         uint16_t *out_session_flags,
    1187             :                                         TALLOC_CTX *mem_ctx,
    1188             :                                         DATA_BLOB *out_security_buffer,
    1189             :                                         uint64_t *out_session_id)
    1190             : {
    1191             :         struct smbd_smb2_session_setup_wrap_state *state =
    1192        6755 :                 tevent_req_data(req,
    1193             :                 struct smbd_smb2_session_setup_wrap_state);
    1194             :         NTSTATUS status;
    1195             : 
    1196        6755 :         if (tevent_req_is_nterror(req, &status)) {
    1197        1929 :                 if (!NT_STATUS_EQUAL(status, NT_STATUS_MORE_PROCESSING_REQUIRED)) {
    1198         422 :                         tevent_req_received(req);
    1199         422 :                         return nt_status_squash(status);
    1200             :                 }
    1201             :         } else {
    1202        4826 :                 status = NT_STATUS_OK;
    1203             :         }
    1204             : 
    1205        6333 :         *out_session_flags = state->out_session_flags;
    1206        6333 :         *out_security_buffer = state->out_security_buffer;
    1207        6333 :         *out_session_id = state->out_session_id;
    1208             : 
    1209        6333 :         talloc_steal(mem_ctx, out_security_buffer->data);
    1210        6333 :         tevent_req_received(req);
    1211        6333 :         return status;
    1212             : }
    1213             : 
    1214             : static struct tevent_req *smbd_smb2_logoff_send(TALLOC_CTX *mem_ctx,
    1215             :                                         struct tevent_context *ev,
    1216             :                                         struct smbd_smb2_request *smb2req);
    1217             : static NTSTATUS smbd_smb2_logoff_recv(struct tevent_req *req);
    1218             : static void smbd_smb2_request_logoff_done(struct tevent_req *subreq);
    1219             : 
    1220           9 : NTSTATUS smbd_smb2_request_process_logoff(struct smbd_smb2_request *req)
    1221             : {
    1222             :         NTSTATUS status;
    1223           9 :         struct tevent_req *subreq = NULL;
    1224             : 
    1225           9 :         status = smbd_smb2_request_verify_sizes(req, 0x04);
    1226           9 :         if (!NT_STATUS_IS_OK(status)) {
    1227           0 :                 return smbd_smb2_request_error(req, status);
    1228             :         }
    1229             : 
    1230           9 :         subreq = smbd_smb2_logoff_send(req, req->sconn->ev_ctx, req);
    1231           9 :         if (subreq == NULL) {
    1232           0 :                 return smbd_smb2_request_error(req, NT_STATUS_NO_MEMORY);
    1233             :         }
    1234           9 :         tevent_req_set_callback(subreq, smbd_smb2_request_logoff_done, req);
    1235             : 
    1236             :         /*
    1237             :          * Avoid sending a STATUS_PENDING message, it's very likely
    1238             :          * the client won't expect that.
    1239             :          */
    1240           9 :         return smbd_smb2_request_pending_queue(req, subreq, 0);
    1241             : }
    1242             : 
    1243           9 : static void smbd_smb2_request_logoff_done(struct tevent_req *subreq)
    1244             : {
    1245             :         struct smbd_smb2_request *smb2req =
    1246           9 :                 tevent_req_callback_data(subreq,
    1247             :                 struct smbd_smb2_request);
    1248             :         DATA_BLOB outbody;
    1249             :         NTSTATUS status;
    1250             :         NTSTATUS error;
    1251             : 
    1252           9 :         status = smbd_smb2_logoff_recv(subreq);
    1253           9 :         TALLOC_FREE(subreq);
    1254           9 :         if (!NT_STATUS_IS_OK(status)) {
    1255           0 :                 error = smbd_smb2_request_error(smb2req, status);
    1256           0 :                 if (!NT_STATUS_IS_OK(error)) {
    1257           0 :                         smbd_server_connection_terminate(smb2req->xconn,
    1258             :                                                         nt_errstr(error));
    1259           0 :                         return;
    1260             :                 }
    1261           0 :                 return;
    1262             :         }
    1263             : 
    1264           9 :         outbody = smbd_smb2_generate_outbody(smb2req, 0x04);
    1265           9 :         if (outbody.data == NULL) {
    1266           0 :                 error = smbd_smb2_request_error(smb2req, NT_STATUS_NO_MEMORY);
    1267           0 :                 if (!NT_STATUS_IS_OK(error)) {
    1268           0 :                         smbd_server_connection_terminate(smb2req->xconn,
    1269             :                                                         nt_errstr(error));
    1270           0 :                         return;
    1271             :                 }
    1272           0 :                 return;
    1273             :         }
    1274             : 
    1275           9 :         SSVAL(outbody.data, 0x00, 0x04);        /* struct size */
    1276           9 :         SSVAL(outbody.data, 0x02, 0);           /* reserved */
    1277             : 
    1278           9 :         error = smbd_smb2_request_done(smb2req, outbody, NULL);
    1279           9 :         if (!NT_STATUS_IS_OK(error)) {
    1280           0 :                 smbd_server_connection_terminate(smb2req->xconn,
    1281             :                                                 nt_errstr(error));
    1282           0 :                 return;
    1283             :         }
    1284             : }
    1285             : 
    1286             : struct smbd_smb2_logoff_state {
    1287             :         struct smbd_smb2_request *smb2req;
    1288             : };
    1289             : 
    1290             : static void smbd_smb2_logoff_shutdown_done(struct tevent_req *subreq);
    1291             : 
    1292           9 : static struct tevent_req *smbd_smb2_logoff_send(TALLOC_CTX *mem_ctx,
    1293             :                                         struct tevent_context *ev,
    1294             :                                         struct smbd_smb2_request *smb2req)
    1295             : {
    1296             :         struct tevent_req *req;
    1297             :         struct smbd_smb2_logoff_state *state;
    1298             :         struct tevent_req *subreq;
    1299             : 
    1300           9 :         req = tevent_req_create(mem_ctx, &state,
    1301             :                         struct smbd_smb2_logoff_state);
    1302           9 :         if (req == NULL) {
    1303           0 :                 return NULL;
    1304             :         }
    1305           9 :         state->smb2req = smb2req;
    1306             : 
    1307           9 :         subreq = smb2srv_session_shutdown_send(state, ev,
    1308             :                                                smb2req->session,
    1309             :                                                smb2req);
    1310           9 :         if (tevent_req_nomem(subreq, req)) {
    1311           0 :                 return tevent_req_post(req, ev);
    1312             :         }
    1313           9 :         tevent_req_set_callback(subreq, smbd_smb2_logoff_shutdown_done, req);
    1314             : 
    1315           9 :         return req;
    1316             : }
    1317             : 
    1318           9 : static void smbd_smb2_logoff_shutdown_done(struct tevent_req *subreq)
    1319             : {
    1320           9 :         struct tevent_req *req = tevent_req_callback_data(
    1321             :                 subreq, struct tevent_req);
    1322           9 :         struct smbd_smb2_logoff_state *state = tevent_req_data(
    1323             :                 req, struct smbd_smb2_logoff_state);
    1324             :         NTSTATUS status;
    1325             :         bool ok;
    1326           9 :         const struct GUID *client_guid =
    1327           9 :                 &state->smb2req->session->client->global->client_guid;
    1328             : 
    1329           9 :         status = smb2srv_session_shutdown_recv(subreq);
    1330           9 :         if (tevent_req_nterror(req, status)) {
    1331           0 :                 return;
    1332             :         }
    1333           9 :         TALLOC_FREE(subreq);
    1334             : 
    1335           9 :         if (!GUID_all_zero(client_guid)) {
    1336           9 :                 ok = remote_arch_cache_delete(client_guid);
    1337           9 :                 if (!ok) {
    1338             :                         /* Most likely not an error, but not in cache */
    1339           7 :                         DBG_DEBUG("Deletion from remote arch cache failed\n");
    1340             :                 }
    1341             :         }
    1342             : 
    1343             :         /*
    1344             :          * As we've been awoken, we may have changed
    1345             :          * uid in the meantime. Ensure we're still
    1346             :          * root (SMB2_OP_LOGOFF has .as_root = true).
    1347             :          */
    1348           9 :         change_to_root_user();
    1349             : 
    1350           9 :         status = smbXsrv_session_logoff(state->smb2req->session);
    1351           9 :         if (tevent_req_nterror(req, status)) {
    1352           0 :                 return;
    1353             :         }
    1354             : 
    1355             :         /*
    1356             :          * we may need to sign the response, so we need to keep
    1357             :          * the session until the response is sent to the wire.
    1358             :          */
    1359           9 :         talloc_steal(state->smb2req, state->smb2req->session);
    1360             : 
    1361           9 :         tevent_req_done(req);
    1362             : }
    1363             : 
    1364           9 : static NTSTATUS smbd_smb2_logoff_recv(struct tevent_req *req)
    1365             : {
    1366           9 :         return tevent_req_simple_recv_ntstatus(req);
    1367             : }

Generated by: LCOV version 1.14