2 Unix SMB/Netbios implementation.
4 NT Domain Authentication SMB / MSRPC client
5 Copyright (C) Andrew Tridgell 1994-1997
6 Copyright (C) Luke Kenneth Casson Leighton 1996-1997
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.
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.
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.
30 extern int DEBUGLEVEL
;
33 /************************************************************************
34 check workstation trust account status
35 ************************************************************************/
36 BOOL
trust_account_check(struct in_addr dest_ip
, char *dest_host
,
37 char *myhostname
, char *domain
, fstring mach_acct
,
42 struct cli_state cli_trust
;
43 uchar lm_owf_mach_pwd
[16];
44 uchar nt_owf_mach_pwd
[16];
45 uchar lm_sess_pwd
[24];
46 uchar nt_sess_pwd
[24];
48 BOOL right_error_code
= False
;
53 char *change_mach_pwd
;
55 /* initial machine password */
56 fstrcpy(mach_pwd
, myhostname
);
59 slprintf(tmp
, sizeof(tmp
) - 1,"Enter Workstation Trust Account password for [%s].\nDefault is [%s].\nPassword:",
62 start_mach_pwd
= (char*)getpass(tmp
);
64 if (start_mach_pwd
[0] != 0)
66 fstrcpy(mach_pwd
, start_mach_pwd
);
69 slprintf(tmp
, sizeof(tmp
)-1, "Enter new Workstation Trust Account password for [%s]\nPress Return to leave at old value.\nNew Password:",
72 change_mach_pwd
= (char*)getpass(tmp
);
74 if (change_mach_pwd
[0] != 0)
76 fstrcpy(new_mach_pwd
, change_mach_pwd
);
80 DEBUG(1,("trust_account_check: password change not requested\n"));
81 change_mach_pwd
[0] = 0;
84 DEBUG(1,("initialise cli_trust connection\n"));
86 if (!cli_initialise(&cli_trust
))
88 DEBUG(1,("cli_initialise failed for cli_trust\n"));
92 DEBUG(1,("server connect for cli_trust\n"));
94 if (!server_connect_init(&cli_trust
, myhostname
, dest_ip
, dest_host
))
96 cli_error(&cli_trust
, &err_cls
, &err_num
);
97 DEBUG(1,("server_connect_init failed (%s)\n", cli_errstr(&cli_trust
)));
99 cli_shutdown(&cli_trust
);
103 DEBUG(1,("server connect cli_trust succeeded\n"));
105 nt_lm_owf_gen(mach_pwd
, nt_owf_mach_pwd
, lm_owf_mach_pwd
);
107 DEBUG(5,("generating nt owf from initial machine pwd: %s\n", mach_pwd
));
109 #ifdef DEBUG_PASSWORD
110 DEBUG(100,("client cryptkey: "));
111 dump_data(100, cli_trust
.cryptkey
, sizeof(cli_trust
.cryptkey
));
114 SMBencrypt(nt_owf_mach_pwd
, cli_trust
.cryptkey
, nt_sess_pwd
);
116 #ifdef DEBUG_PASSWORD
117 DEBUG(100,("nt_owf_mach_pwd: "));
118 dump_data(100, nt_owf_mach_pwd
, sizeof(lm_owf_mach_pwd
));
119 DEBUG(100,("nt_sess_pwd: "));
120 dump_data(100, nt_sess_pwd
, sizeof(nt_sess_pwd
));
123 SMBencrypt(lm_owf_mach_pwd
, cli_trust
.cryptkey
, lm_sess_pwd
);
125 #ifdef DEBUG_PASSWORD
126 DEBUG(100,("lm_owf_mach_pwd: "));
127 dump_data(100, lm_owf_mach_pwd
, sizeof(lm_owf_mach_pwd
));
128 DEBUG(100,("lm_sess_pwd: "));
129 dump_data(100, lm_sess_pwd
, sizeof(lm_sess_pwd
));
132 right_error_code
= False
;
134 if (cli_session_setup(&cli_trust
, mach_acct
,
135 nt_owf_mach_pwd
, sizeof(nt_owf_mach_pwd
),
136 nt_owf_mach_pwd
, sizeof(nt_owf_mach_pwd
), domain
))
138 DEBUG(0,("cli_session_setup: NO ERROR! AAAGH! BUG IN SERVER DETECTED!!!\n"));
139 cli_shutdown(&cli_trust
);
144 cli_error(&cli_trust
, &err_cls
, &err_num
);
146 if (err_num
== (0xC0000000 | NT_STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT
))
148 DEBUG(1,("cli_send_tconX: valid workstation trust account exists\n"));
149 right_error_code
= True
;
152 if (err_num
== (0xC0000000 | NT_STATUS_NO_SUCH_USER
))
154 DEBUG(1,("cli_send_tconX: workstation trust account does not exist\n"));
155 right_error_code
= False
;
158 if (!right_error_code
)
160 DEBUG(1,("server_validate failed (%s)\n", cli_errstr(&cli_trust
)));
163 cli_shutdown(&cli_trust
);
164 return right_error_code
;