winbindd: Do not overwrite domain list with conflicting info from a trusted domain
[sfrench/samba-autobuild/.git] / source3 / auth / auth_domain.c
index 54ee5a17df75ad4eb9d1521c14db7ac13a124053..937841c29cc1952bb78d3aa23a301d10392ea47b 100644 (file)
@@ -27,6 +27,7 @@
 #include "secrets.h"
 #include "passdb.h"
 #include "libsmb/libsmb.h"
+#include "libcli/auth/netlogon_creds_cli.h"
 
 #undef DBGC_CLASS
 #define DBGC_CLASS DBGC_AUTH
@@ -47,18 +48,32 @@ static struct named_mutex *mutex;
  *
  **/
 
-static NTSTATUS connect_to_domain_password_server(struct cli_state **cli,
+static NTSTATUS connect_to_domain_password_server(struct cli_state **cli_ret,
                                                const char *domain,
                                                const char *dc_name,
                                                const struct sockaddr_storage *dc_ss,
-                                               struct rpc_pipe_client **pipe_ret)
+                                               struct rpc_pipe_client **pipe_ret,
+                                               struct netlogon_creds_cli_context **creds_ret)
 {
-        NTSTATUS result;
+       TALLOC_CTX *frame = talloc_stackframe();
+       struct messaging_context *msg_ctx = server_messaging_context();
+       NTSTATUS result;
+       struct cli_state *cli = NULL;
        struct rpc_pipe_client *netlogon_pipe = NULL;
-
-       *cli = NULL;
+       struct netlogon_creds_cli_context *netlogon_creds = NULL;
+       struct netlogon_creds_CredentialState *creds = NULL;
+       uint32_t netlogon_flags = 0;
+       enum netr_SchannelType sec_chan_type = 0;
+       const char *_account_name = NULL;
+       const char *account_name = NULL;
+       struct samr_Password current_nt_hash;
+       struct samr_Password *previous_nt_hash = NULL;
+       bool ok;
+
+       *cli_ret = NULL;
 
        *pipe_ret = NULL;
+       *creds_ret = NULL;
 
        /* TODO: Send a SAMLOGON request to determine whether this is a valid
           logonserver.  We can avoid a 30-second timeout if the DC is down
@@ -76,11 +91,12 @@ static NTSTATUS connect_to_domain_password_server(struct cli_state **cli,
 
        mutex = grab_named_mutex(NULL, dc_name, 10);
        if (mutex == NULL) {
+               TALLOC_FREE(frame);
                return NT_STATUS_NO_LOGON_SERVERS;
        }
 
        /* Attempt connection */
-       result = cli_full_connection(cli, lp_netbios_name(), dc_name, dc_ss, 0,
+       result = cli_full_connection(&cli, lp_netbios_name(), dc_name, dc_ss, 0,
                "IPC$", "IPC", "", "", "", 0, SMB_SIGNING_DEFAULT);
 
        if (!NT_STATUS_IS_OK(result)) {
@@ -89,12 +105,8 @@ static NTSTATUS connect_to_domain_password_server(struct cli_state **cli,
                        result = NT_STATUS_NO_LOGON_SERVERS;
                }
 
-               if (*cli) {
-                       cli_shutdown(*cli);
-                       *cli = NULL;
-               }
-
                TALLOC_FREE(mutex);
+               TALLOC_FREE(frame);
                return result;
        }
 
@@ -102,85 +114,104 @@ static NTSTATUS connect_to_domain_password_server(struct cli_state **cli,
         * We now have an anonymous connection to IPC$ on the domain password server.
         */
 
-       /*
-        * Even if the connect succeeds we need to setup the netlogon
-        * pipe here. We do this as we may just have changed the domain
-        * account password on the PDC and yet we may be talking to
-        * a BDC that doesn't have this replicated yet. In this case
-        * a successful connect to a DC needs to take the netlogon connect
-        * into account also. This patch from "Bjart Kvarme" <bjart.kvarme@usit.uio.no>.
-        */
+       ok = get_trust_pw_hash(domain,
+                              current_nt_hash.hash,
+                              &_account_name,
+                              &sec_chan_type);
+       if (!ok) {
+               cli_shutdown(cli);
+               TALLOC_FREE(mutex);
+               TALLOC_FREE(frame);
+               return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
+       }
 
-       /* open the netlogon pipe. */
-       if (lp_client_schannel()) {
-               /* We also setup the creds chain in the open_schannel call. */
-               result = cli_rpc_pipe_open_schannel(
-                       *cli, &ndr_table_netlogon, NCACN_NP,
-                       DCERPC_AUTH_LEVEL_PRIVACY, domain, &netlogon_pipe);
-       } else {
-               result = cli_rpc_pipe_open_noauth(
-                       *cli, &ndr_table_netlogon, &netlogon_pipe);
+       account_name = talloc_asprintf(talloc_tos(), "%s$", _account_name);
+       if (account_name == NULL) {
+               cli_shutdown(cli);
+               TALLOC_FREE(mutex);
+               TALLOC_FREE(frame);
+               return NT_STATUS_NO_MEMORY;
        }
 
+       result = rpccli_create_netlogon_creds(dc_name,
+                                             domain,
+                                             account_name,
+                                             sec_chan_type,
+                                             msg_ctx,
+                                             talloc_tos(),
+                                             &netlogon_creds);
        if (!NT_STATUS_IS_OK(result)) {
-               DEBUG(0,("connect_to_domain_password_server: unable to open the domain client session to \
-machine %s. Error was : %s.\n", dc_name, nt_errstr(result)));
-               cli_shutdown(*cli);
-               *cli = NULL;
+               cli_shutdown(cli);
                TALLOC_FREE(mutex);
+               TALLOC_FREE(frame);
+               SAFE_FREE(previous_nt_hash);
                return result;
        }
 
-       if (!lp_client_schannel()) {
-               /* We need to set up a creds chain on an unauthenticated netlogon pipe. */
-               uint32_t neg_flags = NETLOGON_NEG_AUTH2_ADS_FLAGS;
-               enum netr_SchannelType sec_chan_type = 0;
-               unsigned char machine_pwd[16];
-               const char *account_name;
-
-               if (!get_trust_pw_hash(domain, machine_pwd, &account_name,
-                                      &sec_chan_type))
-               {
-                       DEBUG(0, ("connect_to_domain_password_server: could not fetch "
-                       "trust account password for domain '%s'\n",
-                               domain));
-                       cli_shutdown(*cli);
-                       *cli = NULL;
-                       TALLOC_FREE(mutex);
-                       return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
-               }
+       result = rpccli_setup_netlogon_creds(cli,
+                                            netlogon_creds,
+                                            false, /* force_reauth */
+                                            current_nt_hash,
+                                            previous_nt_hash);
+       SAFE_FREE(previous_nt_hash);
+       if (!NT_STATUS_IS_OK(result)) {
+               cli_shutdown(cli);
+               TALLOC_FREE(mutex);
+               TALLOC_FREE(frame);
+               return result;
+       }
 
-               result = rpccli_netlogon_setup_creds(netlogon_pipe,
-                                       dc_name, /* server name */
-                                       domain, /* domain */
-                                       lp_netbios_name(), /* client name */
-                                       account_name, /* machine account name */
-                                       machine_pwd,
-                                       sec_chan_type,
-                                       &neg_flags);
-
-               if (!NT_STATUS_IS_OK(result)) {
-                       cli_shutdown(*cli);
-                       *cli = NULL;
-                       TALLOC_FREE(mutex);
-                       return result;
-               }
+       result = netlogon_creds_cli_get(netlogon_creds,
+                                       talloc_tos(),
+                                       &creds);
+       if (!NT_STATUS_IS_OK(result)) {
+               cli_shutdown(cli);
+               TALLOC_FREE(mutex);
+               TALLOC_FREE(frame);
+               return result;
+       }
+       netlogon_flags = creds->negotiate_flags;
+       TALLOC_FREE(creds);
+
+       if (netlogon_flags & NETLOGON_NEG_AUTHENTICATED_RPC) {
+               result = cli_rpc_pipe_open_schannel_with_key(
+                       cli, &ndr_table_netlogon, NCACN_NP,
+                       domain, netlogon_creds, &netlogon_pipe);
+       } else {
+               result = cli_rpc_pipe_open_noauth(cli,
+                                       &ndr_table_netlogon,
+                                       &netlogon_pipe);
+       }
+
+       if (!NT_STATUS_IS_OK(result)) {
+               DEBUG(0,("connect_to_domain_password_server: "
+                        "unable to open the domain client session to "
+                        "machine %s. Flags[0x%08X] Error was : %s.\n",
+                        dc_name, (unsigned)netlogon_flags,
+                        nt_errstr(result)));
+               cli_shutdown(cli);
+               TALLOC_FREE(mutex);
+               TALLOC_FREE(frame);
+               return result;
        }
 
        if(!netlogon_pipe) {
                DEBUG(0, ("connect_to_domain_password_server: unable to open "
                          "the domain client session to machine %s. Error "
                          "was : %s.\n", dc_name, nt_errstr(result)));
-               cli_shutdown(*cli);
-               *cli = NULL;
+               cli_shutdown(cli);
                TALLOC_FREE(mutex);
+               TALLOC_FREE(frame);
                return NT_STATUS_NO_LOGON_SERVERS;
        }
 
        /* We exit here with the mutex *locked*. JRA */
 
+       *cli_ret = cli;
        *pipe_ret = netlogon_pipe;
+       *creds_ret = netlogon_creds;
 
+       TALLOC_FREE(frame);
        return NT_STATUS_OK;
 }
 
@@ -202,8 +233,11 @@ static NTSTATUS domain_client_validate(TALLOC_CTX *mem_ctx,
        struct netr_SamInfo3 *info3 = NULL;
        struct cli_state *cli = NULL;
        struct rpc_pipe_client *netlogon_pipe = NULL;
+       struct netlogon_creds_cli_context *netlogon_creds = NULL;
        NTSTATUS nt_status = NT_STATUS_NO_LOGON_SERVERS;
        int i;
+       uint8_t authoritative = 0;
+       uint32_t flags = 0;
 
        /*
         * At this point, smb_apasswd points to the lanman response to
@@ -220,7 +254,8 @@ static NTSTATUS domain_client_validate(TALLOC_CTX *mem_ctx,
                                                        domain,
                                                        dc_name,
                                                        dc_ss,
-                                                       &netlogon_pipe);
+                                                       &netlogon_pipe,
+                                                       &netlogon_creds);
        }
 
        if ( !NT_STATUS_IS_OK(nt_status) ) {
@@ -240,18 +275,19 @@ static NTSTATUS domain_client_validate(TALLOC_CTX *mem_ctx,
          * in the info3 structure.  
          */
 
-       nt_status = rpccli_netlogon_sam_network_logon(netlogon_pipe,
-                                                     mem_ctx,
-                                                     user_info->logon_parameters,         /* flags such as 'allow workstation logon' */
-                                                     dc_name,                             /* server name */
-                                                     user_info->client.account_name,      /* user name logging on. */
-                                                     user_info->client.domain_name,       /* domain name */
-                                                     user_info->workstation_name,         /* workstation name */
-                                                     chal,                                /* 8 byte challenge. */
-                                                     3,                                   /* validation level */
-                                                     user_info->password.response.lanman, /* lanman 24 byte response */
-                                                     user_info->password.response.nt,     /* nt 24 byte response */
-                                                     &info3);                             /* info3 out */
+       nt_status = rpccli_netlogon_network_logon(netlogon_creds,
+                                                 netlogon_pipe->binding_handle,
+                                                 mem_ctx,
+                                                 user_info->logon_parameters,         /* flags such as 'allow workstation logon' */
+                                                 user_info->client.account_name,      /* user name logging on. */
+                                                 user_info->client.domain_name,       /* domain name */
+                                                 user_info->workstation_name,         /* workstation name */
+                                                 chal,                                /* 8 byte challenge. */
+                                                 user_info->password.response.lanman, /* lanman 24 byte response */
+                                                 user_info->password.response.nt,     /* nt 24 byte response */
+                                                 &authoritative,
+                                                 &flags,
+                                                 &info3);                             /* info3 out */
 
        /* Let go as soon as possible so we avoid any potential deadlocks
           with winbind lookup up users or groups. */
@@ -377,8 +413,6 @@ static NTSTATUS check_trustdomain_security(const struct auth_context *auth_conte
                                           struct auth_serversupplied_info **server_info)
 {
        NTSTATUS nt_status = NT_STATUS_LOGON_FAILURE;
-       unsigned char trust_md4_password[16];
-       char *trust_password;
        fstring dc_name;
        struct sockaddr_storage dc_ss;
 
@@ -407,26 +441,6 @@ static NTSTATUS check_trustdomain_security(const struct auth_context *auth_conte
        if ( !is_trusted_domain( user_info->mapped.domain_name ) )
                return NT_STATUS_NOT_IMPLEMENTED;
 
-       /*
-        * Get the trusted account password for the trusted domain
-        * No need to become_root() as secrets_init() is done at startup.
-        */
-
-       if (!pdb_get_trusteddom_pw(user_info->mapped.domain_name, &trust_password,
-                                  NULL, NULL)) {
-               DEBUG(0, ("check_trustdomain_security: could not fetch trust "
-                         "account password for domain %s\n",
-                         user_info->mapped.domain_name));
-               return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
-       }
-
-#ifdef DEBUG_PASSWORD
-       DEBUG(100, ("Trust password for domain %s is %s\n", user_info->mapped.domain_name,
-                   trust_password));
-#endif
-       E_md4hash(trust_password, trust_md4_password);
-       SAFE_FREE(trust_password);
-
        /* use get_dc_name() for consistency even through we know that it will be 
           a netbios name */