challange -> challenge
[samba.git] / source3 / auth / auth_server.c
index 9636094fa363bc1a7ee29336e24a099c1ecdbc31..a3cfc3a0e609fe8464d91f78102d2bb55b8efb18 100644 (file)
 
 #include "includes.h"
 
-extern int DEBUGLEVEL;
-
 extern pstring global_myname;
 
-/****************************************************************************
- Return the client state structure.
-****************************************************************************/
-
-struct cli_state *server_client(void)
-{
-       static struct cli_state pw_cli;
-       return &pw_cli;
-}
-
 /****************************************************************************
  Support for server level security.
 ****************************************************************************/
 
-struct cli_state *server_cryptkey(void)
+static struct cli_state *server_cryptkey(void)
 {
-       struct cli_state *cli;
+       struct cli_state *cli = NULL;
        fstring desthost;
        struct in_addr dest_ip;
        char *p, *pserver;
        BOOL connected_ok = False;
 
-       cli = server_client();
-
-       if (!cli_initialise(cli))
+       if (!(cli = cli_initialise(cli)))
                return NULL;
 
+       /* security = server just can't function with spnego */
+       cli->use_spnego = False;
+
         pserver = strdup(lp_passwordserver());
        p = pserver;
 
@@ -77,7 +66,7 @@ struct cli_state *server_cryptkey(void)
                }
        }
 
-       free(pserver);
+       SAFE_FREE(pserver);
 
        if (!connected_ok) {
                DEBUG(0,("password server not available\n"));
@@ -87,7 +76,11 @@ struct cli_state *server_cryptkey(void)
 
        if (!attempt_netbios_session_request(cli, global_myname, desthost, &dest_ip))
                return NULL;
-
+       
+       if (strequal(desthost,myhostname())) {
+               exit_server("Password server loop!");
+       }
+       
        DEBUG(3,("got session\n"));
 
        if (!cli_negprot(cli)) {
@@ -108,32 +101,121 @@ struct cli_state *server_cryptkey(void)
        return cli;
 }
 
+/****************************************************************************
+ Clean up our allocated cli.
+****************************************************************************/
+
+static void free_server_private_data(void **private_data_pointer) 
+{
+       struct cli_state **cli = (struct cli_state **)private_data_pointer;
+       if (*cli && (*cli)->initialised) {
+               cli_shutdown(*cli);
+               
+               SAFE_FREE(*cli);
+       }
+}
+
+/****************************************************************************
+ Send a 'keepalive' packet down the cli pipe.
+****************************************************************************/
+
+static void send_server_keepalive(void **private_data_pointer) 
+{
+       struct cli_state **cli = (struct cli_state **)private_data_pointer;
+       
+       /* also send a keepalive to the password server if its still
+          connected */
+       if (cli && *cli && (*cli)->initialised) {
+               if (!send_keepalive((*cli)->fd)) {
+                       DEBUG( 2, ( "password server keepalive failed.\n"));
+                       cli_shutdown(*cli);
+                       SAFE_FREE(*cli);
+               }
+       }
+}
+
+/****************************************************************************
+ Get the challenge out of a password server.
+****************************************************************************/
+
+static DATA_BLOB auth_get_challenge_server(void **my_private_data, const struct authsupplied_info *auth_info) 
+{
+       struct cli_state *cli = server_cryptkey();
+       
+       if (cli) {
+               DEBUG(3,("using password server validation\n"));
+               if ((cli->sec_mode & 2) == 0) {
+                       /* We can't work with unencrypted password servers
+                          unless 'encrypt passwords = no' */
+                       DEBUG(5,("make_auth_info_server: Server is unencrypted, no challenge available..\n"));
+
+                       *my_private_data = (void *)cli;
+                       return data_blob(NULL, 0);
+                       
+               } else if (cli->secblob.length < 8) {
+                       /* We can't do much if we don't get a full challenge */
+                       DEBUG(2,("make_auth_info_server: Didn't receive a full challenge from server\n"));
+                       cli_shutdown(cli);
+                       return data_blob(NULL, 0);
+               }
+
+               *my_private_data = (void *)cli;
+               
+               return data_blob(cli->secblob.data,8);
+       } else {
+               return data_blob(NULL, 0);
+       }
+}
+
 
 /****************************************************************************
- Validate a password with the password server.
+ Check for a valid username and password in security=server mode.
+  - Validate a password with the password server.
 ****************************************************************************/
 
-static uint32 server_validate(const auth_usersupplied_info *user_info, auth_serversupplied_info *server_info)
+static NTSTATUS check_smbserver_security(void *my_private_data, 
+                                 const auth_usersupplied_info *user_info, 
+                                 const auth_authsupplied_info *auth_info,
+                                 auth_serversupplied_info **server_info)
 {
        struct cli_state *cli;
        static unsigned char badpass[24];
        static fstring baduser; 
        static BOOL tested_password_server = False;
        static BOOL bad_password_server = False;
-       uint32 nt_status = NT_STATUS_LOGON_FAILURE;
+       NTSTATUS nt_status = NT_STATUS_LOGON_FAILURE;
+       BOOL locally_made_cli = False;
 
-       cli = server_client();
+       cli = my_private_data;
+       
+       if (cli) {
+       } else {
+               cli = server_cryptkey();
+               locally_made_cli = True;
+       }
 
-       if (!cli->initialised) {
+       if (!cli || !cli->initialised) {
                DEBUG(1,("password server %s is not connected\n", cli->desthost));
-               return(NT_STATUS_LOGON_FAILURE);
+               return NT_STATUS_LOGON_FAILURE;
        }  
+       
+       if ((cli->sec_mode & 2) == 0) {
+               if (user_info->encrypted) {
+                       DEBUG(1,("password server %s is plaintext, but we are encrypted. This just can't work :-(\n", cli->desthost));
+                       return NT_STATUS_LOGON_FAILURE;         
+               }
+       } else {
+               if (memcmp(cli->secblob.data, auth_info->challenge.data, 8) != 0) {
+                       DEBUG(1,("the challenge that the password server (%s) supplied us is not the one we gave our client. This just can't work :-(\n", cli->desthost));
+                       return NT_STATUS_LOGON_FAILURE;         
+               }
+       }
 
        if(badpass[0] == 0)
                memset(badpass, 0x1f, sizeof(badpass));
 
-       if((user_info->nt_resp.len == sizeof(badpass)) && 
-          !memcmp(badpass, user_info->nt_resp.buffer, sizeof(badpass))) {
+       if((user_info->nt_resp.length == sizeof(badpass)) && 
+          !memcmp(badpass, user_info->nt_resp.data, sizeof(badpass))) {
                /* 
                 * Very unlikely, our random bad password is the same as the users
                 * password.
@@ -204,17 +286,32 @@ use this machine as the password server.\n"));
         * not guest enabled, we can try with the real password.
         */
 
-       if (!cli_session_setup(cli, user_info->smb_username.str, 
-                              (char *)user_info->lm_resp.buffer, 
-                              user_info->lm_resp.len, 
-                              (char *)user_info->nt_resp.buffer, 
-                              user_info->nt_resp.len, 
-                              user_info->domain.str)) {
-               DEBUG(1,("password server %s rejected the password\n", cli->desthost));
-               /* Make this cli_nt_error() when the conversion is in */
-               nt_status = NT_STATUS_LOGON_FAILURE;
+       if (!user_info->encrypted) {
+               /* Plaintext available */
+               if (!cli_session_setup(cli, user_info->smb_name.str, 
+                                      (char *)user_info->plaintext_password.data, 
+                                      user_info->plaintext_password.length, 
+                                      NULL, 0,
+                                      user_info->domain.str)) {
+                       DEBUG(1,("password server %s rejected the password\n", cli->desthost));
+                       /* Make this cli_nt_error() when the conversion is in */
+                       nt_status = cli_nt_error(cli);
+               } else {
+                       nt_status = NT_STATUS_OK;
+               }
        } else {
-               nt_status = NT_STATUS_OK;
+               if (!cli_session_setup(cli, user_info->smb_name.str, 
+                                      (char *)user_info->lm_resp.data, 
+                                      user_info->lm_resp.length, 
+                                      (char *)user_info->nt_resp.data, 
+                                      user_info->nt_resp.length, 
+                                      user_info->domain.str)) {
+                       DEBUG(1,("password server %s rejected the password\n", cli->desthost));
+                       /* Make this cli_nt_error() when the conversion is in */
+                       nt_status = cli_nt_error(cli);
+               } else {
+                       nt_status = NT_STATUS_OK;
+               }
        }
 
        /* if logged in as guest then reject */
@@ -225,21 +322,33 @@ use this machine as the password server.\n"));
 
        cli_ulogoff(cli);
 
+       if NT_STATUS_IS_OK(nt_status) {
+               struct passwd *pass = Get_Pwnam(user_info->internal_username.str);
+               if (pass) {
+                       if (!make_server_info_pw(server_info, pass)) { 
+                               nt_status = NT_STATUS_NO_MEMORY;
+                       }
+               } else {
+                       nt_status = NT_STATUS_NO_SUCH_USER;
+               }
+       }
+
+       if (locally_made_cli) {
+               cli_shutdown(cli);
+               SAFE_FREE(cli);
+       }
+
        return(nt_status);
 }
 
-/****************************************************************************
- Check for a valid username and password in security=server mode.
-****************************************************************************/
-
-uint32 check_server_security(const auth_usersupplied_info *user_info, auth_serversupplied_info *server_info)
+BOOL auth_init_smbserver(auth_methods **auth_method) 
 {
-       
-       if(lp_security() != SEC_SERVER)
-               return NT_STATUS_LOGON_FAILURE;
-       
-       return server_validate(user_info, server_info);
-
+       if (!make_auth_methods(auth_method)) {
+               return False;
+       }
+       (*auth_method)->auth = check_smbserver_security;
+       (*auth_method)->get_chal = auth_get_challenge_server;
+       (*auth_method)->send_keepalive = send_server_keepalive;
+       (*auth_method)->free_private_data = free_server_private_data;
+       return True;
 }
-
-