trust password
[kai/samba.git] / source / rpcclient / cmd_netlogon.c
1 /* 
2    Unix SMB/Netbios implementation.
3    Version 1.9.
4    NT Domain Authentication SMB / MSRPC client
5    Copyright (C) Andrew Tridgell 1994-1997
6    Copyright (C) Luke Kenneth Casson Leighton 1996-1997
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 2 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, write to the Free Software
20    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23
24
25 #ifdef SYSLOG
26 #undef SYSLOG
27 #endif
28
29 #include "includes.h"
30 #include "nterr.h"
31
32 extern int DEBUGLEVEL;
33
34 #define DEBUG_TESTING
35
36 extern struct cli_state *smb_cli;
37
38 extern FILE* out_hnd;
39
40
41 /****************************************************************************
42 experimental nt login.
43 ****************************************************************************/
44 void cmd_netlogon_login_test(struct client_info *info)
45 {
46         extern BOOL global_machine_password_needs_changing;
47
48         fstring nt_user_name;
49         fstring password;
50         BOOL res = True;
51         char *nt_password;
52         unsigned char trust_passwd[16];
53
54         /* machine account passwords */
55         pstring new_mach_pwd;
56
57         /* initialisation */
58         new_mach_pwd[0] = 0;
59
60         if (!next_token(NULL, nt_user_name, NULL, sizeof(nt_user_name)))
61         {
62                 fstrcpy(nt_user_name, smb_cli->user_name);
63                 if (nt_user_name[0] == 0)
64                 {
65                         fprintf(out_hnd,"ntlogin: must specify username with anonymous connection\n");
66                         return;
67                 }
68         }
69
70         if (next_token(NULL, password, NULL, sizeof(password)))
71         {
72                 nt_password = password;
73         }
74         else
75         {
76                 nt_password = getpass("Enter NT Login password:");
77         }
78
79         DEBUG(5,("do_nt_login_test: username %s\n", nt_user_name));
80
81         res = res ? trust_get_passwd(trust_passwd, smb_cli->domain, info->myhostname) : False;
82
83 #if 0
84         /* check whether the user wants to change their machine password */
85         res = res ? trust_account_check(info->dest_ip, info->dest_host,
86                                         info->myhostname, smb_cli->domain,
87                                         info->mach_acct, new_mach_pwd) : False;
88 #endif
89         /* open NETLOGON session.  negotiate credentials */
90         res = res ? cli_nt_session_open(smb_cli, PIPE_NETLOGON, False) : False;
91
92         res = res ? cli_nt_setup_creds(smb_cli, trust_passwd) : False;
93
94         /* change the machine password? */
95         if (global_machine_password_needs_changing)
96         {
97                 unsigned char new_trust_passwd[16];
98                 generate_random_buffer(new_trust_passwd, 16, True);
99                 res = res ? cli_nt_srv_pwset(smb_cli, new_trust_passwd) : False;
100
101                 if (res)
102                 {
103                         global_machine_password_needs_changing = !set_trust_account_password(new_trust_passwd);
104                 }
105
106                 memset(new_trust_passwd, 0, 16);
107         }
108
109         memset(trust_passwd, 0, 16);
110
111         /* do an NT login */
112         res = res ? cli_nt_login_interactive(smb_cli,
113                          smb_cli->domain, nt_user_name,
114                          getuid(), nt_password,
115                          &info->dom.ctr, &info->dom.user_info3) : False;
116
117         /*** clear out the password ***/
118         memset(password, 0, sizeof(password));
119
120         /* ok!  you're logged in!  do anything you like, then... */
121
122         /* do an NT logout */
123         res = res ? cli_nt_logoff(smb_cli, &info->dom.ctr) : False;
124
125         /* close the session */
126         cli_nt_session_close(smb_cli);
127
128         if (res)
129         {
130                 DEBUG(5,("cmd_nt_login: login test succeeded\n"));
131         }
132         else
133         {
134                 DEBUG(5,("cmd_nt_login: login test failed\n"));
135         }
136 }
137