A farily large commit:
authorAndrew Bartlett <abartlet@samba.org>
Tue, 1 Jan 2002 03:10:32 +0000 (03:10 +0000)
committerAndrew Bartlett <abartlet@samba.org>
Tue, 1 Jan 2002 03:10:32 +0000 (03:10 +0000)
 - Move rpc_client/cli_trust.c to smbd/change_trust_pw.c
  - It hasn't been used by anything else since smbpasswd lost its -j

 - Add a TALLOC_CTX to the auth subsytem.  These are only valid for the length
   of the calls to the individual modules, if you want a longer context hide it
   in your private data.

   Similarly, all returns (like the server_info) should still be malloced.

 - Move the 'ntdomain' module (security=domain in oldspeak) over to use the new
   libsmb domain logon code.  Also rework much of the code to use some better
   helper functions for the connection - getting us much better error returns
   (the new code is NTSTATUS).

   The only remaining thing to do is to figure out if tpot's 0xdead 0xbeef for
   the LUID feilds is sufficient, or if we should do random LUIDs as per the old
   code.

   Similarly, I'll move winbind over to this when I get a chance.

This leaves the SPOOLSS code and some cli_pipe code as the only stuff still in
rpc_client, at least as far as smbd is concerned.

While I've given this a basic rundown, any testing is as always appriciated.

Andrew Bartlett

12 files changed:
source/Makefile.in
source/auth/auth.c
source/auth/auth_builtin.c
source/auth/auth_domain.c
source/auth/auth_info.c
source/auth/auth_rhosts.c
source/auth/auth_sam.c
source/auth/auth_server.c
source/auth/auth_unix.c
source/auth/auth_winbind.c
source/include/auth.h
source/smbd/change_trust_pw.c [moved from source/rpc_client/cli_trust.c with 98% similarity]

index 3b0795bd1d6e3151d4e4cb4fc39c9afe5a4d1df3..cc297c920749793683030ce9a383c0835072537e 100644 (file)
@@ -216,9 +216,7 @@ SMBD_OBJ1 = smbd/server.o smbd/files.o smbd/chgpasswd.o smbd/connection.o \
            smbd/process.o smbd/service.o smbd/error.o \
            printing/printfsp.o lib/util_seaccess.o smbd/srvstr.o \
             smbd/build_options.o \
-           rpc_client/cli_trust.o \
-           rpc_client/cli_netlogon.o \
-           rpc_client/cli_login.o \
+           smbd/change_trust_pw.o \
            rpc_client/cli_spoolss_notify.o
 
 
index 94927fe96e382793a122b6dc749fe12b1a7f2618..bfd15dff34685962ddb1913bd239d896191e97f2 100644 (file)
@@ -82,13 +82,14 @@ static BOOL check_domain_match(const char *user, const char *domain)
  **/
 
 NTSTATUS check_password(const auth_usersupplied_info *user_info, 
-                            const auth_authsupplied_info *auth_info,
-                            auth_serversupplied_info **server_info)
+                       const auth_authsupplied_info *auth_info,
+                       auth_serversupplied_info **server_info)
 {
        
        NTSTATUS nt_status = NT_STATUS_LOGON_FAILURE;
        const char *pdb_username;
        auth_methods *auth_method;
+       TALLOC_CTX *mem_ctx;
 
        if (!user_info || !auth_info || !server_info) {
                return NT_STATUS_LOGON_FAILURE;
@@ -121,7 +122,10 @@ NTSTATUS check_password(const auth_usersupplied_info *user_info,
 
        for (auth_method = auth_info->auth_method_list;auth_method; auth_method = auth_method->next)
        {
-               nt_status = auth_method->auth(auth_method->private_data, user_info, auth_info, server_info);
+               mem_ctx = talloc_init_named("%s authentication for user %s\\%s", auth_method->name, 
+                                           user_info->domain.str, user_info->smb_name.str);
+
+               nt_status = auth_method->auth(auth_method->private_data, mem_ctx, user_info, auth_info, server_info);
                if (NT_STATUS_IS_OK(nt_status)) {
                        DEBUG(3, ("check_password: %s authentication for user [%s] suceeded\n", 
                                  auth_method->name, user_info->smb_name.str));
@@ -129,7 +133,9 @@ NTSTATUS check_password(const auth_usersupplied_info *user_info,
                        DEBUG(5, ("check_password: %s authentication for user [%s] FAILED with error %s\n", 
                                  auth_method->name, user_info->smb_name.str, get_nt_error_msg(nt_status)));
                }
-               
+
+               talloc_destroy(mem_ctx);
+
                if (NT_STATUS_IS_OK(nt_status)) {
                        break;
                }
index 8f283fd8564a4fcb892ccbf6a2c077b1d56bd094..b5bb673e2cb59988aa46b0219e6cac323bc5d258 100644 (file)
  **/
 
 static NTSTATUS check_guest_security(void *my_private_data, 
-                             const auth_usersupplied_info *user_info, 
-                             const auth_authsupplied_info *auth_info,
-                             auth_serversupplied_info **server_info)
+                                    TALLOC_CTX *mem_ctx,
+                                    const auth_usersupplied_info *user_info, 
+                                    const auth_authsupplied_info *auth_info,
+                                    auth_serversupplied_info **server_info)
 {
        NTSTATUS nt_status = NT_STATUS_LOGON_FAILURE;
 
@@ -73,6 +74,7 @@ BOOL auth_init_guest(auth_methods **auth_method)
  **/
 
 static NTSTATUS check_name_to_ntstatus_security(void *my_private_data,
+                                               TALLOC_CTX *mem_ctx,
                                                const auth_usersupplied_info *user_info, 
                                                const auth_authsupplied_info *auth_info,
                                                auth_serversupplied_info **server_info)
index a5e90aff39a0e8260cb7952d6920fe2ea9b76144..6e3eb643d8c208e4cde93338ddd172d9da1f858d 100644 (file)
@@ -27,23 +27,24 @@ BOOL global_machine_password_needs_changing = False;
 extern pstring global_myname;
 extern userdom_struct current_user_info;
 
-/***********************************************************************
- Connect to a remote machine for domain security authentication
- given a name or IP address.
- ***********************************************************************/
-
-static BOOL connect_to_domain_password_server(struct cli_state *pcli, 
-                                             char *server, unsigned char *trust_passwd)
+/**
+ * Connect to a remote server for domain security authenticaion.
+ *
+ * @param cli the cli to return containing the active connection
+ * @param server either a machine name or text IP address to
+ *               connect to.
+ * @param trust_password the trust password to establish the
+ *                       credentials with.
+ *
+ **/
+
+static NTSTATUS connect_to_domain_password_server(struct cli_state **cli, 
+                                                 char *server, unsigned char *trust_passwd)
 {
        struct in_addr dest_ip;
        fstring remote_machine;
         NTSTATUS result;
 
-       if (cli_initialise(pcli) == NULL) {
-               DEBUG(0,("connect_to_domain_password_server: unable to initialize client connection.\n"));
-               return False;
-       }
-
        if (is_ipaddress(server)) {
                struct in_addr to_ip;
          
@@ -51,13 +52,13 @@ static BOOL connect_to_domain_password_server(struct cli_state *pcli,
                   a password server anyways */
                if ((to_ip.s_addr=inet_addr(server)) == 0xFFFFFFFF) {
                        DEBUG (0,("connect_to_domain_password_server: inet_addr(%s) returned 0xFFFFFFFF!\n", server));
-                       return False;
+                       return NT_STATUS_UNSUCCESSFUL;
                }
 
                if (!name_status_find("*", 0x20, 0x20, to_ip, remote_machine)) {
                        DEBUG(0, ("connect_to_domain_password_server: Can't "
                                  "resolve name for IP %s\n", server));
-                       return False;
+                       return NT_STATUS_UNSUCCESSFUL;
                }
        } else {
                fstrcpy(remote_machine, server);
@@ -68,69 +69,20 @@ static BOOL connect_to_domain_password_server(struct cli_state *pcli,
 
        if(!resolve_name( remote_machine, &dest_ip, 0x20)) {
                DEBUG(1,("connect_to_domain_password_server: Can't resolve address for %s\n", remote_machine));
-               cli_shutdown(pcli);
-               return False;
+               return NT_STATUS_UNSUCCESSFUL;
        }
   
        if (ismyip(dest_ip)) {
                DEBUG(1,("connect_to_domain_password_server: Password server loop - not using password server %s\n",
                         remote_machine));
-               cli_shutdown(pcli);
-               return False;
-       }
-  
-       if (!cli_connect(pcli, remote_machine, &dest_ip)) {
-               DEBUG(0,("connect_to_domain_password_server: unable to connect to SMB server on \
-machine %s. Error was : %s.\n", remote_machine, cli_errstr(pcli) ));
-               cli_shutdown(pcli);
-               return False;
-       }
-  
-       if (!attempt_netbios_session_request(pcli, global_myname, remote_machine, &dest_ip)) {
-               DEBUG(0,("connect_to_password_server: machine %s rejected the NetBIOS \
-session request. Error was : %s.\n", remote_machine, cli_errstr(pcli) ));
-               return False;
+               return NT_STATUS_UNSUCCESSFUL;
        }
   
-       pcli->protocol = PROTOCOL_NT1;
-
-       if (!cli_negprot(pcli)) {
-               DEBUG(0,("connect_to_domain_password_server: machine %s rejected the negotiate protocol. \
-Error was : %s.\n", remote_machine, cli_errstr(pcli) ));
-               cli_shutdown(pcli);
-               return False;
-       }
-
-       if (pcli->protocol != PROTOCOL_NT1) {
-               DEBUG(0,("connect_to_domain_password_server: machine %s didn't negotiate NT protocol.\n",
-                        remote_machine));
-               cli_shutdown(pcli);
-               return False;
-       }
-
-       /*
-        * Do an anonymous session setup.
-        */
-
-       if (!cli_session_setup(pcli, "", "", 0, "", 0, "")) {
-               DEBUG(0,("connect_to_domain_password_server: machine %s rejected the session setup. \
-Error was : %s.\n", remote_machine, cli_errstr(pcli) ));
-               cli_shutdown(pcli);
-               return False;
-       }
-
-       if (!(pcli->sec_mode & 1)) {
-               DEBUG(1,("connect_to_domain_password_server: machine %s isn't in user level security mode\n",
-                        remote_machine));
-               cli_shutdown(pcli);
-               return False;
-       }
-
-       if (!cli_send_tconX(pcli, "IPC$", "IPC", "", 1)) {
-               DEBUG(0,("connect_to_domain_password_server: machine %s rejected the tconX on the IPC$ share. \
-Error was : %s.\n", remote_machine, cli_errstr(pcli) ));
-               cli_shutdown(pcli);
-               return False;
+       result = cli_full_connection(cli, global_myname, server,
+                                    &dest_ip, 0, "IPC$", "IPC", "", "", "", 0);
+       
+       if (!NT_STATUS_IS_OK(result)) {
+               return result;
        }
 
        /*
@@ -146,34 +98,34 @@ Error was : %s.\n", remote_machine, cli_errstr(pcli) ));
         * into account also. This patch from "Bjart Kvarme" <bjart.kvarme@usit.uio.no>.
         */
 
-       if(cli_nt_session_open(pcli, PIPE_NETLOGON) == False) {
+       if(cli_nt_session_open(*cli, PIPE_NETLOGON) == False) {
                DEBUG(0,("connect_to_domain_password_server: unable to open the domain client session to \
-machine %s. Error was : %s.\n", remote_machine, cli_errstr(pcli)));
-               cli_nt_session_close(pcli);
-               cli_ulogoff(pcli);
-               cli_shutdown(pcli);
-               return False;
+machine %s. Error was : %s.\n", remote_machine, cli_errstr(*cli)));
+               cli_nt_session_close(*cli);
+               cli_ulogoff(*cli);
+               cli_shutdown(*cli);
+               return NT_STATUS_UNSUCCESSFUL;
        }
 
-       result = cli_nt_setup_creds(pcli, trust_passwd);
+       result = new_cli_nt_setup_creds(*cli, trust_passwd);
 
         if (!NT_STATUS_IS_OK(result)) {
                DEBUG(0,("connect_to_domain_password_server: unable to setup the PDC credentials to machine \
 %s. Error was : %s.\n", remote_machine, get_nt_error_msg(result)));
-               cli_nt_session_close(pcli);
-               cli_ulogoff(pcli);
-               cli_shutdown(pcli);
-               return(False);
+               cli_nt_session_close(*cli);
+               cli_ulogoff(*cli);
+               cli_shutdown(*cli);
+               return result;
        }
 
-       return True;
+       return NT_STATUS_OK;
 }
 
 /***********************************************************************
  Utility function to attempt a connection to an IP address of a DC.
 ************************************************************************/
 
-static BOOL attempt_connect_to_dc(struct cli_state *pcli, struct in_addr *ip, 
+static NTSTATUS attempt_connect_to_dc(struct cli_state **cli, struct in_addr *ip, 
                                  unsigned char *trust_passwd)
 {
        fstring dc_name;
@@ -183,26 +135,26 @@ static BOOL attempt_connect_to_dc(struct cli_state *pcli, struct in_addr *ip,
         */
 
        if (is_zero_ip(*ip))
-               return False;
+               return NT_STATUS_UNSUCCESSFUL;
 
        if (!lookup_dc_name(global_myname, lp_workgroup(), ip, dc_name))
-               return False;
+               return NT_STATUS_UNSUCCESSFUL;
 
-       return connect_to_domain_password_server(pcli, dc_name, trust_passwd);
+       return connect_to_domain_password_server(cli, dc_name, trust_passwd);
 }
 
 /***********************************************************************
  We have been asked to dynamcially determine the IP addresses of
  the PDC and BDC's for this DOMAIN, and query them in turn.
 ************************************************************************/
-static BOOL find_connect_pdc(struct cli_state *pcli, 
-                            unsigned char *trust_passwd, 
-                            time_t last_change_time)
+static NTSTATUS find_connect_pdc(struct cli_state **cli, 
+                               unsigned char *trust_passwd, 
+                               time_t last_change_time)
 {
        struct in_addr *ip_list = NULL;
        int count = 0;
        int i;
-       BOOL connected_ok = False;
+       NTSTATUS nt_status = NT_STATUS_UNSUCCESSFUL;
        time_t time_now = time(NULL);
        BOOL use_pdc_only = False;
 
@@ -218,7 +170,7 @@ static BOOL find_connect_pdc(struct cli_state *pcli,
                use_pdc_only = True;
 
        if (!get_dc_list(use_pdc_only, lp_workgroup(), &ip_list, &count))
-               return False;
+               return NT_STATUS_UNSUCCESSFUL;
 
        /*
         * Firstly try and contact a PDC/BDC who has the same
@@ -228,7 +180,7 @@ static BOOL find_connect_pdc(struct cli_state *pcli,
                if(!is_local_net(ip_list[i]))
                        continue;
 
-               if((connected_ok = attempt_connect_to_dc(pcli, &ip_list[i], trust_passwd))) 
+               if(NT_STATUS_IS_OK(nt_status = attempt_connect_to_dc(cli, &ip_list[i], trust_passwd))) 
                        break;
                
                zero_ip(&ip_list[i]); /* Tried and failed. */
@@ -237,10 +189,10 @@ static BOOL find_connect_pdc(struct cli_state *pcli,
        /*
         * Secondly try and contact a random PDC/BDC.
         */
-       if(!connected_ok) {
+       if(!NT_STATUS_IS_OK(nt_status)) {
                i = (sys_random() % count);
 
-               if (!(connected_ok = attempt_connect_to_dc(pcli, &ip_list[i], trust_passwd)))
+               if (!NT_STATUS_IS_OK(nt_status = attempt_connect_to_dc(cli, &ip_list[i], trust_passwd)))
                         zero_ip(&ip_list[i]); /* Tried and failed. */
        }
 
@@ -248,21 +200,20 @@ static BOOL find_connect_pdc(struct cli_state *pcli,
         * Finally go through the IP list in turn, ignoring any addresses
         * we have already tried.
         */
-       if(!connected_ok) {
+       if(!NT_STATUS_IS_OK(nt_status)) {
                /*
                 * Try and connect to any of the other IP addresses in the PDC/BDC list.
                 * Note that from a WINS server the #1 IP address is the PDC.
                 */
                for(i = 0; i < count; i++) {
-                       if((connected_ok = attempt_connect_to_dc(pcli, &ip_list[i], trust_passwd)))
+                       if (NT_STATUS_IS_OK(nt_status = attempt_connect_to_dc(cli, &ip_list[i], trust_passwd)))
                                break;
                }
        }
 
        SAFE_FREE(ip_list);
 
-
-       return connected_ok;
+       return nt_status;
 }
 
 /***********************************************************************
@@ -271,19 +222,17 @@ static BOOL find_connect_pdc(struct cli_state *pcli,
  use it, otherwise figure out a server from the 'password server' param.
 ************************************************************************/
 
-static NTSTATUS domain_client_validate(const auth_usersupplied_info *user_info, 
+static NTSTATUS domain_client_validate(TALLOC_CTX *mem_ctx,
+                                      const auth_usersupplied_info *user_info, 
                                       uchar chal[8],
                                       auth_serversupplied_info **server_info, 
                                       char *server, unsigned char *trust_passwd,
                                       time_t last_change_time)
 {
        fstring remote_machine;
-       NET_ID_INFO_CTR ctr;
        NET_USER_INFO_3 info3;
-       struct cli_state cli;
-       uint32 smb_uid_low;
-       BOOL connected_ok = False;
-       NTSTATUS status;
+       struct cli_state *cli;
+       NTSTATUS nt_status;
        struct passwd *pass;
 
        /*
@@ -294,26 +243,21 @@ static NTSTATUS domain_client_validate(const auth_usersupplied_info *user_info,
         * see if they were valid.
         */
 
-       ZERO_STRUCT(cli);
-
-       while (!connected_ok &&
+       while (!NT_STATUS_IS_OK(nt_status) &&
               next_token(&server,remote_machine,LIST_SEP,sizeof(remote_machine))) {
                if(strequal(remote_machine, "*")) {
-                       connected_ok = find_connect_pdc(&cli, trust_passwd, last_change_time);
+                       nt_status = find_connect_pdc(&cli, trust_passwd, last_change_time);
                } else {
-                       connected_ok = connect_to_domain_password_server(&cli, remote_machine, trust_passwd);
+                       nt_status = connect_to_domain_password_server(&cli, remote_machine, trust_passwd);
                }
        }
 
-       if (!connected_ok) {
+       if (!NT_STATUS_IS_OK(nt_status)) {
                DEBUG(0,("domain_client_validate: Domain password server not available.\n"));
-               cli_shutdown(&cli);
-               return NT_STATUS_LOGON_FAILURE;
+               cli_shutdown(cli);
+               return nt_status;
        }
 
-       /* We really don't care what LUID we give the user. */
-       generate_random_buffer( (unsigned char *)&smb_uid_low, 4, False);
-
        ZERO_STRUCT(info3);
 
         /*
@@ -321,43 +265,50 @@ static NTSTATUS domain_client_validate(const auth_usersupplied_info *user_info,
          * in the info3 structure.  
          */
 
-       status = cli_nt_login_network(&cli, user_info, chal, smb_uid_low, 
-                                     &ctr, &info3);
+       nt_status = cli_netlogon_sam_network_logon(cli, mem_ctx,
+                                                  user_info->internal_username.str, user_info->domain.str, 
+                                                  user_info->wksta_name.str, chal, 
+                                                  user_info->lm_resp, user_info->nt_resp, 
+                                                  &info3);
         
-       if (!NT_STATUS_IS_OK(status)) {
+       if (!NT_STATUS_IS_OK(nt_status)) {
                DEBUG(0,("domain_client_validate: unable to validate password "
                          "for user %s in domain %s to Domain controller %s. "
                          "Error was %s.\n", user_info->smb_name.str,
-                         user_info->domain.str, cli.srv_name_slash, 
-                         get_nt_error_msg(status)));
+                         user_info->domain.str, cli->srv_name_slash, 
+                         get_nt_error_msg(nt_status)));
        } else {
                 char *dom_user;
 
                 /* Check DOMAIN\username first to catch winbind users, then
                    just the username for local users. */
 
-                asprintf(&dom_user, "%s%s%s", user_info->domain.str,
-                         lp_winbind_separator(),
-                         user_info->internal_username.str);
-
-                if (!(pass = Get_Pwnam(dom_user)))
-                        pass = Get_Pwnam(user_info->internal_username.str);
-
-                free(dom_user);
-
-               if (pass) {
-                       make_server_info_pw(server_info, pass);
-                       if (!server_info) {
-                               status = NT_STATUS_NO_MEMORY;
+                dom_user = talloc_asprintf(mem_ctx, "%s%s%s", user_info->domain.str,
+                                          lp_winbind_separator(),
+                                          user_info->internal_username.str);
+               
+               if (!dom_user) {
+                       DEBUG(0, ("talloc_asprintf failed!\n"));
+                       nt_status = NT_STATUS_NO_MEMORY;
+               } else { 
+
+                       if (!(pass = Get_Pwnam(dom_user)))
+                               pass = Get_Pwnam(user_info->internal_username.str);
+                       
+                       if (pass) {
+                               make_server_info_pw(server_info, pass);
+                               if (!server_info) {
+                                       nt_status = NT_STATUS_NO_MEMORY;
+                               }
+                       } else {
+                               nt_status = NT_STATUS_NO_SUCH_USER;
                        }
-               } else {
-                       status = NT_STATUS_NO_SUCH_USER;
                }
        }
 
        /* Store the user group information in the server_info returned to the caller. */
        
-       if (NT_STATUS_IS_OK(status) && (info3.num_groups2 != 0)) {
+       if (NT_STATUS_IS_OK(nt_status) && (info3.num_groups2 != 0)) {
                DOM_SID domain_sid;
                int i;
                NT_USER_TOKEN *ptok;
@@ -365,7 +316,7 @@ static NTSTATUS domain_client_validate(const auth_usersupplied_info *user_info,
 
                if ((pserver_info->ptok = malloc( sizeof(NT_USER_TOKEN) ) ) == NULL) {
                        DEBUG(0, ("domain_client_validate: out of memory allocating rid group membership\n"));
-                       status = NT_STATUS_NO_MEMORY;
+                       nt_status = NT_STATUS_NO_MEMORY;
                        free_server_info(server_info);
                        goto done;
                }
@@ -375,14 +326,14 @@ static NTSTATUS domain_client_validate(const auth_usersupplied_info *user_info,
 
                if ((ptok->user_sids = (DOM_SID *)malloc( sizeof(DOM_SID) * ptok->num_sids )) == NULL) {
                        DEBUG(0, ("domain_client_validate: Out of memory allocating group SIDS\n"));
-                       status = NT_STATUS_NO_MEMORY;
+                       nt_status = NT_STATUS_NO_MEMORY;
                        free_server_info(server_info);
                        goto done;
                }
  
                if (!secrets_fetch_domain_sid(lp_workgroup(), &domain_sid)) {
                        DEBUG(0, ("domain_client_validate: unable to fetch domain sid.\n"));
-                       status = NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
+                       nt_status = NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
                        free_server_info(server_info);
                        goto done;
                }
@@ -404,7 +355,7 @@ static NTSTATUS domain_client_validate(const auth_usersupplied_info *user_info,
                if(cli_nt_logoff(&cli, &ctr) == False) {
                        DEBUG(0,("domain_client_validate: unable to log off user %s in domain \
 %s to Domain controller %s. Error was %s.\n", user, domain, remote_machine, cli_errstr(&cli)));        
-                       status = NT_STATUS_LOGON_FAILURE;
+                       nt_status = NT_STATUS_LOGON_FAILURE;
                }
        }
 #endif /* 0 */
@@ -415,10 +366,10 @@ static NTSTATUS domain_client_validate(const auth_usersupplied_info *user_info,
           to allocate the other_sids and gids structures has been deleted - so
           these pointers are no longer valid..... */
 
-       cli_nt_session_close(&cli);
-       cli_ulogoff(&cli);
-       cli_shutdown(&cli);
-       return status;
+       cli_nt_session_close(cli);
+       cli_ulogoff(cli);
+       cli_shutdown(cli);
+       return nt_status;
 }
 
 /****************************************************************************
@@ -426,6 +377,7 @@ static NTSTATUS domain_client_validate(const auth_usersupplied_info *user_info,
 ****************************************************************************/
 
 static NTSTATUS check_ntdomain_security(void *my_private_data,
+                                       TALLOC_CTX *mem_ctx,
                                        const auth_usersupplied_info *user_info, 
                                        const auth_authsupplied_info *auth_info,
                                        auth_serversupplied_info **server_info)
@@ -461,7 +413,7 @@ static NTSTATUS check_ntdomain_security(void *my_private_data,
        {
                DEBUG(0, ("check_domain_security: could not fetch trust account password for domain %s\n", lp_workgroup()));
                unbecome_root();
-               return NT_STATUS_LOGON_FAILURE;
+               return NT_STATUS_CANT_ACCESS_DOMAIN_INFO;
        }
 
        unbecome_root();
@@ -481,9 +433,9 @@ static NTSTATUS check_ntdomain_security(void *my_private_data,
        if (! *pserver) pserver = "*";
        p = pserver;
 
-       nt_status = domain_client_validate(user_info, (uchar *)auth_info->challenge.data,server_info, 
+       nt_status = domain_client_validate(mem_ctx, user_info, (uchar *)auth_info->challenge.data,server_info, 
                                           p, trust_passwd, last_change_time);
-
+       
        return nt_status;
 }
 
index bdd490d3ef848b22a642827f17cf2c814b5ce85c..9d399a88ebe22ca1450c4a2c7d5d56a15d021193 100644 (file)
@@ -253,6 +253,7 @@ DATA_BLOB auth_get_challenge(auth_authsupplied_info *auth_info)
        DATA_BLOB challenge = data_blob(NULL, 0);
        char *challenge_set_by = NULL;
        auth_methods *auth_method;
+       TALLOC_CTX *mem_ctx;
 
        if (auth_info->challenge.length) {
                DEBUG(5, ("auth_get_challenge: returning previous challenge (normal)\n"));
@@ -267,7 +268,12 @@ DATA_BLOB auth_get_challenge(auth_authsupplied_info *auth_info)
                                DEBUG(1, ("auth_get_challenge: CONFIGURATION ERROR: authenticaion method %s has already specified a challenge.  Challenge by %s ignored.\n", 
                                          challenge_set_by, auth_method->name));
                        } else {
-                               challenge = auth_method->get_chal(&auth_method->private_data, auth_info);
+                               mem_ctx = talloc_init_named("auth_get_challange for module %s", auth_method->name);
+                               if (!mem_ctx) {
+                                       smb_panic("talloc_init_named() failed!");
+                               }
+                               
+                               challenge = auth_method->get_chal(&auth_method->private_data, mem_ctx, auth_info);
                                if (challenge.length) {
                                        DEBUG(5, ("auth_get_challenge: sucessfully got challenge from module %s\n", auth_method->name));
                                        auth_info->challenge = challenge;
@@ -277,6 +283,7 @@ DATA_BLOB auth_get_challenge(auth_authsupplied_info *auth_info)
                                        DEBUG(3, ("auth_get_challenge: getting challenge from authenticaion method %s FAILED.\n", 
                                                  auth_method->name));
                                }
+                               talloc_destroy(mem_ctx);
                        }
                } else {
                        DEBUG(5, ("auth_get_challenge: module %s did not want to specify a challenge\n", auth_method->name));
index 2605f0770a225d5077fa828700efc9072a288477..1dd97872da0e8d9f8c626b6bc69295c6dc1c7ad3 100644 (file)
@@ -156,6 +156,7 @@ static BOOL check_hosts_equiv(struct passwd *pass)
 ****************************************************************************/
 
 static NTSTATUS check_hostsequiv_security(void *my_private_data, 
+                                         TALLOC_CTX *mem_ctx,
                                          const auth_usersupplied_info *user_info, 
                                          const auth_authsupplied_info *auth_info,
                                          auth_serversupplied_info **server_info)
@@ -181,6 +182,7 @@ static NTSTATUS check_hostsequiv_security(void *my_private_data,
 ****************************************************************************/
 
 static NTSTATUS check_rhosts_security(void *my_private_data, 
+                                     TALLOC_CTX *mem_ctx,
                                      const auth_usersupplied_info *user_info, 
                                      const auth_authsupplied_info *auth_info,
                                      auth_serversupplied_info **server_info)
index d899006cf8b8e52946e13aeefe4d3be16efe4cad..b75e3006552728c35fcc51773ff70e53e6251131 100644 (file)
@@ -132,7 +132,8 @@ static BOOL smb_pwd_check_ntlmv2(const DATA_BLOB ntv2_response,
  Do a specific test for an smb password being correct, given a smb_password and
  the lanman and NT responses.
 ****************************************************************************/
-static NTSTATUS sam_password_ok(SAM_ACCOUNT *sampass, 
+static NTSTATUS sam_password_ok(TALLOC_CTX *mem_ctx,
+                               SAM_ACCOUNT *sampass, 
                                const auth_usersupplied_info *user_info, 
                                const auth_authsupplied_info *auth_info,
                                uint8 user_sess_key[16])
@@ -243,7 +244,9 @@ static NTSTATUS sam_password_ok(SAM_ACCOUNT *sampass,
  Do a specific test for a SAM_ACCOUNT being vaild for this connection 
  (ie not disabled, expired and the like).
 ****************************************************************************/
-static NTSTATUS sam_account_ok(SAM_ACCOUNT *sampass, const auth_usersupplied_info *user_info)
+static NTSTATUS sam_account_ok(TALLOC_CTX *mem_ctx,
+                              SAM_ACCOUNT *sampass, 
+                              const auth_usersupplied_info *user_info)
 {
        uint16  acct_ctrl = pdb_get_acct_ctrl(sampass);
        char *workstation_list;
@@ -286,7 +289,7 @@ static NTSTATUS sam_account_ok(SAM_ACCOUNT *sampass, const auth_usersupplied_inf
 
        /* Test workstation. Workstation list is comma separated. */
 
-       workstation_list = strdup(pdb_get_workstations(sampass));
+       workstation_list = talloc_strdup(mem_ctx, pdb_get_workstations(sampass));
 
        if (!workstation_list) return NT_STATUS_NO_MEMORY;
 
@@ -305,11 +308,8 @@ static NTSTATUS sam_account_ok(SAM_ACCOUNT *sampass, const auth_usersupplied_inf
                        }
                }
                
-               SAFE_FREE(workstation_list);            
                if (invalid_ws) 
                        return NT_STATUS_INVALID_WORKSTATION;
-       } else {
-               SAFE_FREE(workstation_list);
        }
 
        if (acct_ctrl & ACB_DOMTRUST) {
@@ -338,9 +338,10 @@ return an NT_STATUS constant.
 ****************************************************************************/
 
 static NTSTATUS check_sam_security(void *my_private_data,
-                           const auth_usersupplied_info *user_info, 
-                           const auth_authsupplied_info *auth_info,
-                           auth_serversupplied_info **server_info)
+                                  TALLOC_CTX *mem_ctx,
+                                  const auth_usersupplied_info *user_info, 
+                                  const auth_authsupplied_info *auth_info,
+                                  auth_serversupplied_info **server_info)
 {
        SAM_ACCOUNT *sampass=NULL;
        BOOL ret;
@@ -369,14 +370,14 @@ static NTSTATUS check_sam_security(void *my_private_data,
                return NT_STATUS_NO_SUCH_USER;
        }
 
-       nt_status = sam_password_ok(sampass, user_info, auth_info, user_sess_key);
+       nt_status = sam_password_ok(mem_ctx, sampass, user_info, auth_info, user_sess_key);
 
        if (!NT_STATUS_IS_OK(nt_status)) {
                pdb_free_sam(&sampass);
                return nt_status;
        }
 
-       nt_status = sam_account_ok(sampass, user_info);
+       nt_status = sam_account_ok(mem_ctx, sampass, user_info);
        
        if (!NT_STATUS_IS_OK(nt_status)) {
                pdb_free_sam(&sampass);
@@ -415,9 +416,10 @@ return an NT_STATUS constant.
 ****************************************************************************/
 
 static NTSTATUS check_samstrict_security(void *my_private_data,
-                                 const auth_usersupplied_info *user_info, 
-                                 const auth_authsupplied_info *auth_info,
-                                 auth_serversupplied_info **server_info)
+                                        TALLOC_CTX *mem_ctx,
+                                        const auth_usersupplied_info *user_info, 
+                                        const auth_authsupplied_info *auth_info,
+                                        auth_serversupplied_info **server_info)
 {
 
        if (!user_info || !auth_info) {
@@ -432,7 +434,7 @@ static NTSTATUS check_samstrict_security(void *my_private_data,
                return NT_STATUS_NO_SUCH_USER;
        }
        
-       return check_sam_security(my_private_data, user_info, auth_info, server_info);
+       return check_sam_security(my_private_data, mem_ctx, user_info, auth_info, server_info);
 }
 
 BOOL auth_init_samstrict(auth_methods **auth_method) 
index 7e43d529d2752ffdec9fb948e0986a11fc8fd82c..7178e3147c4fcfba7302dd3d42bc255dfa08001c 100644 (file)
@@ -29,7 +29,7 @@ extern userdom_struct current_user_info;
  Support for server level security.
 ****************************************************************************/
 
-static struct cli_state *server_cryptkey(void)
+static struct cli_state *server_cryptkey(TALLOC_CTX *mem_ctx)
 {
        struct cli_state *cli = NULL;
        fstring desthost;
@@ -43,7 +43,7 @@ static struct cli_state *server_cryptkey(void)
        /* security = server just can't function with spnego */
        cli->use_spnego = False;
 
-        pserver = strdup(lp_passwordserver());
+        pserver = talloc_strdup(mem_ctx, lp_passwordserver());
        p = pserver;
 
         while(next_token( &p, desthost, LIST_SEP, sizeof(desthost))) {
@@ -67,8 +67,6 @@ static struct cli_state *server_cryptkey(void)
                }
        }
 
-       SAFE_FREE(pserver);
-
        if (!connected_ok) {
                DEBUG(0,("password server not available\n"));
                cli_shutdown(cli);
@@ -136,9 +134,11 @@ static void send_server_keepalive(void **private_data_pointer)
  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) 
+static DATA_BLOB auth_get_challenge_server(void **my_private_data, 
+                                          TALLOC_CTX *mem_ctx,
+                                          const struct authsupplied_info *auth_info) 
 {
-       struct cli_state *cli = server_cryptkey();
+       struct cli_state *cli = server_cryptkey(mem_ctx);
        
        if (cli) {
                DEBUG(3,("using password server validation\n"));
@@ -175,9 +175,10 @@ static DATA_BLOB auth_get_challenge_server(void **my_private_data, const struct
 ****************************************************************************/
 
 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)
+                                        TALLOC_CTX *mem_ctx,
+                                        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];
@@ -202,7 +203,7 @@ static NTSTATUS check_smbserver_security(void *my_private_data,
        
        if (cli) {
        } else {
-               cli = server_cryptkey();
+               cli = server_cryptkey(mem_ctx);
                locally_made_cli = True;
        }
 
index 2e753cb29ca8b82c8ac0ef7a19f415902911c31f..fa889af5f6ced0e4fa02127164b267a7df163420 100644 (file)
@@ -83,7 +83,8 @@ static BOOL update_smbpassword_file(char *user, char *password)
  * unless the account has a null password.
  **/
 
-NTSTATUS check_unix_security(void *my_private_data,
+NTSTATUS check_unix_security(void *my_private_data, 
+                            TALLOC_CTX *mem_ctx,
                             const auth_usersupplied_info *user_info, 
                             const auth_authsupplied_info *auth_info,
                             auth_serversupplied_info **server_info)
index 9ca87fe0ddccd9228efcefaef11331a3aa4c5016..74654f8bba2a00282159986394cdbc169043cbea 100644 (file)
@@ -34,9 +34,10 @@ NSS_STATUS winbindd_request(int req_type,
 /* Authenticate a user with a challenge/response */
 
 static NTSTATUS check_winbind_security(void *my_private_data,
-                               const auth_usersupplied_info *user_info, 
-                               const auth_authsupplied_info *auth_info,
-                               auth_serversupplied_info **server_info)
+                                      TALLOC_CTX *mem_ctx,
+                                      const auth_usersupplied_info *user_info, 
+                                      const auth_authsupplied_info *auth_info,
+                                      auth_serversupplied_info **server_info)
 {
        struct winbindd_request request;
        struct winbindd_response response;
index 270b8d388ab6d3efff40e280bc6119ffa820a9d8..b823e7bf4be39445590b42d95e9eef02c7fc8064 100644 (file)
@@ -95,7 +95,7 @@ typedef struct authsupplied_info {
        DATA_BLOB challenge; 
 
        /* Who set this up in the first place? */ 
-       char *challenge_set_by; \
+       char *challenge_set_by; 
 
        struct auth_methods *challenge_set_method; 
        /* What order are the various methods in?   Try to stop it changing under us */ 
@@ -108,11 +108,14 @@ typedef struct auth_methods
        char *name; /* What name got this module */
 
        NTSTATUS (*auth)(void *my_private_data, 
+                        TALLOC_CTX *mem_ctx,
                         const auth_usersupplied_info *user_info, 
                         const struct authsupplied_info *auth_info,
                         auth_serversupplied_info **server_info);
 
-       DATA_BLOB (*get_chal)(void **my_private_data, const struct authsupplied_info *auth_info);
+       DATA_BLOB (*get_chal)(void **my_private_data, 
+                             TALLOC_CTX *mem_ctx, 
+                             const struct authsupplied_info *auth_info);
        
        /* Used to keep tabs on things like the cli for SMB server authentication */
        void *private_data;
similarity index 98%
rename from source/rpc_client/cli_trust.c
rename to source/smbd/change_trust_pw.c
index 5322c4756fc012fada2b2952606986bb6fb40de5..8a16793843a8b2b45ee9ec177581921237bd623f 100644 (file)
@@ -1,7 +1,7 @@
 /* 
  *  Unix SMB/Netbios implementation.
- *  Version 1.9.
- *  RPC Pipe client / server routines
+ *  Version 3.0
+ *  Periodic Trust account password changing.
  *  Copyright (C) Andrew Tridgell              1992-1997,
  *  Copyright (C) Luke Kenneth Casson Leighton 1996-1997,
  *  Copyright (C) Paul Ashton                       1997.