s3-auth rename auth_ntlmssp_state -> auth_generic_state
[mat/samba.git] / source3 / smbd / seal.c
index 26185062a6f1bd22732e10af1e5d8e480fbd7640..ab87d76b26dfd69f1f887e4b263a256ccdc52593 100644 (file)
@@ -2,17 +2,17 @@
    Unix SMB/CIFS implementation.
    SMB Transport encryption (sealing) code - server code.
    Copyright (C) Jeremy Allison 2007.
-   
+
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.
-   
+
    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.
-   
+
    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
 #include "smbd/smbd.h"
 #include "smbd/globals.h"
 #include "../libcli/auth/spnego.h"
-#include "../libcli/auth/ntlmssp.h"
+#include "../auth/ntlmssp/ntlmssp.h"
 #include "ntlmssp_wrap.h"
-#include "smb_crypt.h"
+#include "../libcli/smb/smb_seal.h"
 #include "../lib/util/asn1.h"
 #include "auth.h"
 #include "libsmb/libsmb.h"
+#include "../lib/tsocket/tsocket.h"
+#include "auth/gensec/gensec.h"
 
 /******************************************************************************
  Server side encryption.
 ******************************************************************************/
 
-/******************************************************************************
- Global server state.
-******************************************************************************/
-
-struct smb_srv_trans_enc_ctx {
-       struct smb_trans_enc_state *es;
-       struct auth_ntlmssp_state *auth_ntlmssp_state; /* Must be kept in sync with pointer in ec->ntlmssp_state. */
-};
-
 /******************************************************************************
  Return global enc context - this must change if we ever do multiple contexts.
 ******************************************************************************/
 
-uint16_t srv_enc_ctx(void)
+static uint16_t srv_enc_ctx(const struct smb_trans_enc_state *es)
 {
-       return srv_trans_enc_ctx->es->enc_ctx_num;
+       return es->enc_ctx_num;
 }
 
 /******************************************************************************
  Is this an incoming encrypted packet ?
 ******************************************************************************/
 
-bool is_encrypted_packet(const uint8_t *inbuf)
+bool is_encrypted_packet(struct smbd_server_connection *sconn,
+                        const uint8_t *inbuf)
 {
        NTSTATUS status;
        uint16_t enc_num;
@@ -72,7 +66,7 @@ bool is_encrypted_packet(const uint8_t *inbuf)
        }
 
        /* Encrypted messages are 0xFF'E'<ctx> */
-       if (srv_trans_enc_ctx && enc_num == srv_enc_ctx()) {
+       if (srv_trans_enc_ctx && enc_num == srv_enc_ctx(srv_trans_enc_ctx)) {
                return true;
        }
        return false;
@@ -82,37 +76,32 @@ bool is_encrypted_packet(const uint8_t *inbuf)
  Create an auth_ntlmssp_state and ensure pointer copy is correct.
 ******************************************************************************/
 
-static NTSTATUS make_auth_ntlmssp(struct smb_srv_trans_enc_ctx *ec)
+static NTSTATUS make_auth_ntlmssp(const struct tsocket_address *remote_address,
+                                 struct smb_trans_enc_state *es)
 {
-       NTSTATUS status = auth_ntlmssp_start(&ec->auth_ntlmssp_state);
+       struct auth_generic_state *auth_ntlmssp_state;
+       NTSTATUS status = auth_ntlmssp_prepare(remote_address,
+                                              &auth_ntlmssp_state);
        if (!NT_STATUS_IS_OK(status)) {
                return nt_status_squash(status);
        }
 
-       /*
-        * We must remember to update the pointer copy for the common
-        * functions after any auth_ntlmssp_start/auth_ntlmssp_end.
-        */
-       ec->es->s.ntlmssp_state = auth_ntlmssp_get_ntlmssp_state(ec->auth_ntlmssp_state);
-       return status;
-}
+       gensec_want_feature(auth_ntlmssp_state->gensec_security, GENSEC_FEATURE_SEAL);
 
-/******************************************************************************
- Destroy an auth_ntlmssp_state and ensure pointer copy is correct.
-******************************************************************************/
+       status = auth_ntlmssp_start(auth_ntlmssp_state);
 
-static void destroy_auth_ntlmssp(struct smb_srv_trans_enc_ctx *ec)
-{
-       /*
-        * We must remember to update the pointer copy for the common
-        * functions after any auth_ntlmssp_start/auth_ntlmssp_end.
-        */
-
-       if (ec->auth_ntlmssp_state) {
-               TALLOC_FREE(ec->auth_ntlmssp_state);
-               /* The auth_ntlmssp_end killed this already. */
-               ec->es->s.ntlmssp_state = NULL;
+       if (!NT_STATUS_IS_OK(status)) {
+               TALLOC_FREE(auth_ntlmssp_state);
+               return nt_status_squash(status);
        }
+
+       /* We do not need the auth_ntlmssp layer any more, which was
+        * allocated on NULL, so promote gensec_security to the NULL
+        * context */
+       es->s.gensec_security = talloc_move(NULL, &auth_ntlmssp_state->gensec_security);
+       TALLOC_FREE(auth_ntlmssp_state);
+
+       return status;
 }
 
 #if defined(HAVE_GSSAPI) && defined(HAVE_KRB5)
@@ -190,7 +179,7 @@ static NTSTATUS get_srv_gss_creds(const char *service,
  host/server@realm.
 ******************************************************************************/
 
-static NTSTATUS make_auth_gss(struct smb_srv_trans_enc_ctx *ec)
+static NTSTATUS make_auth_gss(struct smb_trans_enc_state *es)
 {
        NTSTATUS status;
        gss_cred_id_t srv_cred;
@@ -207,17 +196,17 @@ static NTSTATUS make_auth_gss(struct smb_srv_trans_enc_ctx *ec)
                }
        }
 
-       ec->es->s.gss_state = SMB_MALLOC_P(struct smb_tran_enc_state_gss);
-       if (!ec->es->s.gss_state) {
+       es->s.gss_state = SMB_MALLOC_P(struct smb_tran_enc_state_gss);
+       if (!es->s.gss_state) {
                OM_uint32 min;
                gss_release_cred(&min, &srv_cred);
                return NT_STATUS_NO_MEMORY;
        }
-       ZERO_STRUCTP(ec->es->s.gss_state);
-       ec->es->s.gss_state->creds = srv_cred;
+       ZERO_STRUCTP(es->s.gss_state);
+       es->s.gss_state->creds = srv_cred;
 
        /* No context yet. */
-       ec->es->s.gss_state->gss_ctx = GSS_C_NO_CONTEXT;
+       es->s.gss_state->gss_ctx = GSS_C_NO_CONTEXT;
 
        return NT_STATUS_OK;
 }
@@ -227,59 +216,46 @@ static NTSTATUS make_auth_gss(struct smb_srv_trans_enc_ctx *ec)
  Shutdown a server encryption context.
 ******************************************************************************/
 
-static void srv_free_encryption_context(struct smb_srv_trans_enc_ctx **pp_ec)
+static void srv_free_encryption_context(struct smb_trans_enc_state **pp_es)
 {
-       struct smb_srv_trans_enc_ctx *ec = *pp_ec;
+       struct smb_trans_enc_state *es = *pp_es;
 
-       if (!ec) {
+       if (!es) {
                return;
        }
 
-       if (ec->es) {
-               switch (ec->es->smb_enc_type) {
-                       case SMB_TRANS_ENC_NTLM:
-                               destroy_auth_ntlmssp(ec);
-                               break;
-#if defined(HAVE_GSSAPI) && defined(HAVE_KRB5)
-                       case SMB_TRANS_ENC_GSS:
-                               break;
-#endif
-               }
-               common_free_encryption_state(&ec->es);
-       }
+       common_free_encryption_state(&es);
 
-       SAFE_FREE(ec);
-       *pp_ec = NULL;
+       SAFE_FREE(es);
+       *pp_es = NULL;
 }
 
 /******************************************************************************
  Create a server encryption context.
 ******************************************************************************/
 
-static NTSTATUS make_srv_encryption_context(enum smb_trans_enc_type smb_enc_type, struct smb_srv_trans_enc_ctx **pp_ec)
+static NTSTATUS make_srv_encryption_context(const struct tsocket_address *remote_address,
+                                           enum smb_trans_enc_type smb_enc_type,
+                                           struct smb_trans_enc_state **pp_es)
 {
-       struct smb_srv_trans_enc_ctx *ec;
+       struct smb_trans_enc_state *es;
 
-       *pp_ec = NULL;
+       *pp_es = NULL;
 
-       ec = SMB_MALLOC_P(struct smb_srv_trans_enc_ctx);
-       if (!ec) {
-               return NT_STATUS_NO_MEMORY;
-       }
        ZERO_STRUCTP(partial_srv_trans_enc_ctx);
-       ec->es = SMB_MALLOC_P(struct smb_trans_enc_state);
-       if (!ec->es) {
-               SAFE_FREE(ec);
+       es = SMB_MALLOC_P(struct smb_trans_enc_state);
+       if (!es) {
                return NT_STATUS_NO_MEMORY;
        }
-       ZERO_STRUCTP(ec->es);
-       ec->es->smb_enc_type = smb_enc_type;
+       ZERO_STRUCTP(es);
+       es->smb_enc_type = smb_enc_type;
        switch (smb_enc_type) {
                case SMB_TRANS_ENC_NTLM:
                        {
-                               NTSTATUS status = make_auth_ntlmssp(ec);
+                               NTSTATUS status = make_auth_ntlmssp(remote_address,
+                                                                   es);
                                if (!NT_STATUS_IS_OK(status)) {
-                                       srv_free_encryption_context(&ec);
+                                       srv_free_encryption_context(&es);
                                        return status;
                                }
                        }
@@ -289,19 +265,19 @@ static NTSTATUS make_srv_encryption_context(enum smb_trans_enc_type smb_enc_type
                case SMB_TRANS_ENC_GSS:
                        /* Acquire our credentials by calling gss_acquire_cred here. */
                        {
-                               NTSTATUS status = make_auth_gss(ec);
+                               NTSTATUS status = make_auth_gss(es);
                                if (!NT_STATUS_IS_OK(status)) {
-                                       srv_free_encryption_context(&ec);
+                                       srv_free_encryption_context(&es);
                                        return status;
                                }
                        }
                        break;
 #endif
                default:
-                       srv_free_encryption_context(&ec);
+                       srv_free_encryption_context(&es);
                        return NT_STATUS_INVALID_PARAMETER;
        }
-       *pp_ec = ec;
+       *pp_es = es;
        return NT_STATUS_OK;
 }
 
@@ -309,7 +285,7 @@ static NTSTATUS make_srv_encryption_context(enum smb_trans_enc_type smb_enc_type
  Free an encryption-allocated buffer.
 ******************************************************************************/
 
-void srv_free_enc_buffer(char *buf)
+void srv_free_enc_buffer(struct smbd_server_connection *sconn, char *buf)
 {
        /* We know this is an smb buffer, and we
         * didn't malloc, only copy, for a keepalive,
@@ -320,7 +296,7 @@ void srv_free_enc_buffer(char *buf)
        }
 
        if (srv_trans_enc_ctx) {
-               common_free_enc_buffer(srv_trans_enc_ctx->es, buf);
+               common_free_enc_buffer(srv_trans_enc_ctx, buf);
        }
 }
 
@@ -328,7 +304,7 @@ void srv_free_enc_buffer(char *buf)
  Decrypt an incoming buffer.
 ******************************************************************************/
 
-NTSTATUS srv_decrypt_buffer(char *buf)
+NTSTATUS srv_decrypt_buffer(struct smbd_server_connection *sconn, char *buf)
 {
        /* Ignore non-session messages. */
        if(CVAL(buf,0)) {
@@ -336,7 +312,7 @@ NTSTATUS srv_decrypt_buffer(char *buf)
        }
 
        if (srv_trans_enc_ctx) {
-               return common_decrypt_buffer(srv_trans_enc_ctx->es, buf);
+               return common_decrypt_buffer(srv_trans_enc_ctx, buf);
        }
 
        return NT_STATUS_OK;
@@ -346,7 +322,8 @@ NTSTATUS srv_decrypt_buffer(char *buf)
  Encrypt an outgoing buffer. Return the encrypted pointer in buf_out.
 ******************************************************************************/
 
-NTSTATUS srv_encrypt_buffer(char *buf, char **buf_out)
+NTSTATUS srv_encrypt_buffer(struct smbd_server_connection *sconn, char *buf,
+                           char **buf_out)
 {
        *buf_out = buf;
 
@@ -356,7 +333,7 @@ NTSTATUS srv_encrypt_buffer(char *buf, char **buf_out)
        }
 
        if (srv_trans_enc_ctx) {
-               return common_encrypt_buffer(srv_trans_enc_ctx->es, buf, buf_out);
+               return common_encrypt_buffer(srv_trans_enc_ctx, buf, buf_out);
        }
        /* Not encrypting. */
        return NT_STATUS_OK;
@@ -368,7 +345,10 @@ NTSTATUS srv_encrypt_buffer(char *buf, char **buf_out)
 ******************************************************************************/
 
 #if defined(HAVE_GSSAPI) && defined(HAVE_KRB5)
-static NTSTATUS srv_enc_spnego_gss_negotiate(unsigned char **ppdata, size_t *p_data_size, DATA_BLOB secblob)
+static NTSTATUS srv_enc_spnego_gss_negotiate(const struct tsocket_address *remote_address,
+                                            unsigned char **ppdata,
+                                            size_t *p_data_size,
+                                            DATA_BLOB secblob)
 {
        OM_uint32 ret;
        OM_uint32 min;
@@ -380,13 +360,15 @@ static NTSTATUS srv_enc_spnego_gss_negotiate(unsigned char **ppdata, size_t *p_d
        NTSTATUS status;
 
        if (!partial_srv_trans_enc_ctx) {
-               status = make_srv_encryption_context(SMB_TRANS_ENC_GSS, &partial_srv_trans_enc_ctx);
+               status = make_srv_encryption_context(remote_address,
+                                                    SMB_TRANS_ENC_GSS,
+                                                    &partial_srv_trans_enc_ctx);
                if (!NT_STATUS_IS_OK(status)) {
                        return status;
                }
        }
 
-       gss_state = partial_srv_trans_enc_ctx->es->s.gss_state;
+       gss_state = partial_srv_trans_enc_ctx->s.gss_state;
 
        in_buf.value = secblob.data;
        in_buf.length = secblob.length;
@@ -450,18 +432,26 @@ static NTSTATUS srv_enc_spnego_gss_negotiate(unsigned char **ppdata, size_t *p_d
  Until success we do everything on the partial enc ctx.
 ******************************************************************************/
 
-static NTSTATUS srv_enc_ntlm_negotiate(unsigned char **ppdata, size_t *p_data_size, DATA_BLOB secblob, bool spnego_wrap)
+static NTSTATUS srv_enc_ntlm_negotiate(const struct tsocket_address *remote_address,
+                                      unsigned char **ppdata,
+                                      size_t *p_data_size,
+                                      DATA_BLOB secblob,
+                                      bool spnego_wrap)
 {
        NTSTATUS status;
        DATA_BLOB chal = data_blob_null;
        DATA_BLOB response = data_blob_null;
 
-       status = make_srv_encryption_context(SMB_TRANS_ENC_NTLM, &partial_srv_trans_enc_ctx);
+       status = make_srv_encryption_context(remote_address,
+                                            SMB_TRANS_ENC_NTLM,
+                                            &partial_srv_trans_enc_ctx);
        if (!NT_STATUS_IS_OK(status)) {
                return status;
        }
 
-       status = auth_ntlmssp_update(partial_srv_trans_enc_ctx->auth_ntlmssp_state, secblob, &chal);
+       status = gensec_update(partial_srv_trans_enc_ctx->s.gensec_security,
+                              talloc_tos(), NULL,
+                              secblob, &chal);
 
        /* status here should be NT_STATUS_MORE_PROCESSING_REQUIRED
         * for success ... */
@@ -517,14 +507,21 @@ static NTSTATUS srv_enc_spnego_negotiate(connection_struct *conn,
                TALLOC_FREE(kerb_mech);
 
 #if defined(HAVE_GSSAPI) && defined(HAVE_KRB5)
-               status = srv_enc_spnego_gss_negotiate(ppdata, p_data_size, secblob);
+               status = srv_enc_spnego_gss_negotiate(conn->sconn->remote_address,
+                                                     ppdata,
+                                                     p_data_size,
+                                                     secblob);
 #else
                /* Currently we don't SPNEGO negotiate
                 * back to NTLMSSP as we do in sessionsetupX. We should... */
                return NT_STATUS_LOGON_FAILURE;
 #endif
        } else {
-               status = srv_enc_ntlm_negotiate(ppdata, p_data_size, secblob, true);
+               status = srv_enc_ntlm_negotiate(conn->sconn->remote_address,
+                                               ppdata,
+                                               p_data_size,
+                                               secblob,
+                                               true);
        }
 
        data_blob_free(&secblob);
@@ -539,7 +536,7 @@ static NTSTATUS srv_enc_spnego_negotiate(connection_struct *conn,
                if (!(*pparam = SMB_MALLOC_ARRAY(unsigned char, 2))) {
                        return NT_STATUS_NO_MEMORY;
                }
-               SSVAL(*pparam,0,partial_srv_trans_enc_ctx->es->enc_ctx_num);
+               SSVAL(*pparam,0,partial_srv_trans_enc_ctx->enc_ctx_num);
                *p_param_size = 2;
        }
 
@@ -562,11 +559,11 @@ static NTSTATUS srv_enc_spnego_ntlm_auth(connection_struct *conn,
        DATA_BLOB auth = data_blob_null;
        DATA_BLOB auth_reply = data_blob_null;
        DATA_BLOB response = data_blob_null;
-       struct smb_srv_trans_enc_ctx *ec = partial_srv_trans_enc_ctx;
+       struct smb_trans_enc_state *es = partial_srv_trans_enc_ctx;
 
        /* We must have a partial context here. */
 
-       if (!ec || !ec->es || ec->auth_ntlmssp_state == NULL || ec->es->smb_enc_type != SMB_TRANS_ENC_NTLM) {
+       if (!es || es->s.gensec_security == NULL || es->smb_enc_type != SMB_TRANS_ENC_NTLM) {
                srv_free_encryption_context(&partial_srv_trans_enc_ctx);
                return NT_STATUS_INVALID_PARAMETER;
        }
@@ -577,7 +574,7 @@ static NTSTATUS srv_enc_spnego_ntlm_auth(connection_struct *conn,
                return NT_STATUS_INVALID_PARAMETER;
        }
 
-       status = auth_ntlmssp_update(ec->auth_ntlmssp_state, auth, &auth_reply);
+       status = gensec_update(es->s.gensec_security, talloc_tos(), NULL, auth, &auth_reply);
        data_blob_free(&auth);
 
        /* From RFC4178.
@@ -597,7 +594,7 @@ static NTSTATUS srv_enc_spnego_ntlm_auth(connection_struct *conn,
                if (!(*pparam = SMB_MALLOC_ARRAY(unsigned char, 2))) {
                        return NT_STATUS_NO_MEMORY;
                }
-               SSVAL(*pparam,0,ec->es->enc_ctx_num);
+               SSVAL(*pparam,0,es->enc_ctx_num);
                *p_param_size = 2;
        }
 
@@ -624,11 +621,15 @@ static NTSTATUS srv_enc_raw_ntlm_auth(connection_struct *conn,
        NTSTATUS status;
        DATA_BLOB blob = data_blob_const(*ppdata, *p_data_size);
        DATA_BLOB response = data_blob_null;
-       struct smb_srv_trans_enc_ctx *ec;
+       struct smb_trans_enc_state *es;
 
        if (!partial_srv_trans_enc_ctx) {
                /* This is the initial step. */
-               status = srv_enc_ntlm_negotiate(ppdata, p_data_size, blob, false);
+               status = srv_enc_ntlm_negotiate(conn->sconn->remote_address,
+                                               ppdata,
+                                               p_data_size,
+                                               blob,
+                                               false);
                if (!NT_STATUS_EQUAL(status,NT_STATUS_MORE_PROCESSING_REQUIRED) && !NT_STATUS_IS_OK(status)) {
                        srv_free_encryption_context(&partial_srv_trans_enc_ctx);
                        return nt_status_squash(status);
@@ -636,21 +637,23 @@ static NTSTATUS srv_enc_raw_ntlm_auth(connection_struct *conn,
                return status;
        }
 
-       ec = partial_srv_trans_enc_ctx;
-       if (!ec || !ec->es || ec->auth_ntlmssp_state == NULL || ec->es->smb_enc_type != SMB_TRANS_ENC_NTLM) {
+       es = partial_srv_trans_enc_ctx;
+       if (!es || es->s.gensec_security == NULL || es->smb_enc_type != SMB_TRANS_ENC_NTLM) {
                srv_free_encryption_context(&partial_srv_trans_enc_ctx);
                return NT_STATUS_INVALID_PARAMETER;
        }
 
        /* Second step. */
-       status = auth_ntlmssp_update(partial_srv_trans_enc_ctx->auth_ntlmssp_state, blob, &response);
+       status = gensec_update(partial_srv_trans_enc_ctx->s.gensec_security,
+                              talloc_tos(), NULL,
+                              blob, &response);
 
        if (NT_STATUS_IS_OK(status)) {
                /* Return the context we're using for this encryption state. */
                if (!(*pparam = SMB_MALLOC_ARRAY(unsigned char, 2))) {
                        return NT_STATUS_NO_MEMORY;
                }
-               SSVAL(*pparam,0,ec->es->enc_ctx_num);
+               SSVAL(*pparam, 0, es->enc_ctx_num);
                *p_param_size = 2;
        }
 
@@ -711,18 +714,18 @@ NTSTATUS srv_request_encryption_setup(connection_struct *conn,
  Negotiation was successful - turn on server-side encryption.
 ******************************************************************************/
 
-static NTSTATUS check_enc_good(struct smb_srv_trans_enc_ctx *ec)
+static NTSTATUS check_enc_good(struct smb_trans_enc_state *es)
 {
-       if (!ec || !ec->es) {
+       if (!es) {
                return NT_STATUS_LOGON_FAILURE;
        }
 
-       if (ec->es->smb_enc_type == SMB_TRANS_ENC_NTLM) {
-               if (!auth_ntlmssp_negotiated_sign((ec->auth_ntlmssp_state))) {
+       if (es->smb_enc_type == SMB_TRANS_ENC_NTLM) {
+               if (!gensec_have_feature(es->s.gensec_security, GENSEC_FEATURE_SIGN)) {
                        return NT_STATUS_INVALID_PARAMETER;
                }
 
-               if (!auth_ntlmssp_negotiated_seal((ec->auth_ntlmssp_state))) {
+               if (!gensec_have_feature(es->s.gensec_security, GENSEC_FEATURE_SEAL)) {
                        return NT_STATUS_INVALID_PARAMETER;
                }
        }
@@ -749,7 +752,7 @@ NTSTATUS srv_encryption_start(connection_struct *conn)
 
        /* Steal the partial pointer. Deliberate shallow copy. */
        srv_trans_enc_ctx = partial_srv_trans_enc_ctx;
-       srv_trans_enc_ctx->es->enc_on = true;
+       srv_trans_enc_ctx->enc_on = true;
 
        partial_srv_trans_enc_ctx = NULL;
 
@@ -761,7 +764,7 @@ NTSTATUS srv_encryption_start(connection_struct *conn)
  Shutdown all server contexts.
 ******************************************************************************/
 
-void server_encryption_shutdown(void)
+void server_encryption_shutdown(struct smbd_server_connection *sconn)
 {
        srv_free_encryption_context(&partial_srv_trans_enc_ctx);
        srv_free_encryption_context(&srv_trans_enc_ctx);