Changes to test in configure if capabilities are enabled on a system.
[kai/samba.git] / source3 / libsmb / pwd_cache.c
1 /* 
2    Unix SMB/Netbios implementation.
3    Version 1.9.
4    Password cacheing.  obfuscation is planned
5    Copyright (C) Luke Kenneth Casson Leighton 1996-1998
6    
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11    
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22 #include "includes.h"
23
24 extern int DEBUGLEVEL;
25
26
27 /****************************************************************************
28 initialises a password structure
29 ****************************************************************************/
30 void pwd_init(struct pwd_info *pwd)
31 {
32         bzero(pwd->password  , sizeof(pwd->password  ));
33         bzero(pwd->smb_lm_pwd, sizeof(pwd->smb_lm_pwd));
34         bzero(pwd->smb_nt_pwd, sizeof(pwd->smb_nt_pwd));
35         bzero(pwd->smb_lm_owf, sizeof(pwd->smb_lm_owf));
36         bzero(pwd->smb_nt_owf, sizeof(pwd->smb_nt_owf));
37
38         pwd->null_pwd  = True; /* safest option... */
39         pwd->cleartext = False;
40         pwd->crypted   = False;
41 }
42
43 /****************************************************************************
44 de-obfuscates a password
45 ****************************************************************************/
46 static void pwd_deobfuscate(struct pwd_info *pwd)
47 {
48 }
49
50 /****************************************************************************
51 obfuscates a password
52 ****************************************************************************/
53 static void pwd_obfuscate(struct pwd_info *pwd)
54 {
55 }
56
57 /****************************************************************************
58 sets the obfuscation key info
59 ****************************************************************************/
60 void pwd_obfuscate_key(struct pwd_info *pwd, uint32 int_key, char *str_key)
61 {
62 }
63
64 /****************************************************************************
65 reads a password
66 ****************************************************************************/
67 void pwd_read(struct pwd_info *pwd, char *passwd_report, BOOL do_encrypt)
68 {
69         /* grab a password */
70         char *user_pass;
71
72         pwd_init(pwd);
73
74         user_pass = (char*)getpass(passwd_report);
75
76         if (user_pass == NULL || user_pass[0] == 0)
77         {
78                 pwd_set_nullpwd(pwd);
79         }
80         else if (do_encrypt)
81         {
82                 pwd_make_lm_nt_16(pwd, user_pass);
83         }
84         else
85         {
86                 pwd_set_cleartext(pwd, user_pass);
87         }
88 }
89
90 /****************************************************************************
91  stores a cleartext password
92  ****************************************************************************/
93 void pwd_set_nullpwd(struct pwd_info *pwd)
94 {
95         pwd_init(pwd);
96
97         pwd->cleartext = False;
98         pwd->null_pwd  = True;
99         pwd->crypted   = False;
100 }
101
102 /****************************************************************************
103  stores a cleartext password
104  ****************************************************************************/
105 void pwd_set_cleartext(struct pwd_info *pwd, char *clr)
106 {
107         pwd_init(pwd);
108         fstrcpy(pwd->password, clr);
109         pwd->cleartext = True;
110         pwd->null_pwd  = False;
111         pwd->crypted   = False;
112
113         pwd_obfuscate(pwd);
114 }
115
116 /****************************************************************************
117  gets a cleartext password
118  ****************************************************************************/
119 void pwd_get_cleartext(struct pwd_info *pwd, char *clr)
120 {
121         pwd_deobfuscate(pwd);
122         if (pwd->cleartext)
123         {
124                 fstrcpy(clr, pwd->password);
125         }
126         else
127         {
128                 clr[0] = 0;
129         }
130         pwd_obfuscate(pwd);
131 }
132
133 /****************************************************************************
134  stores lm and nt hashed passwords
135  ****************************************************************************/
136 void pwd_set_lm_nt_16(struct pwd_info *pwd, uchar lm_pwd[16], uchar nt_pwd[16])
137 {
138         pwd_init(pwd);
139
140         if (lm_pwd)
141         {
142                 memcpy(pwd->smb_lm_pwd, lm_pwd, 16);
143         }
144         else
145         {
146                 bzero(pwd->smb_lm_pwd, 16);
147         }
148
149         if (nt_pwd)
150         {
151                 memcpy(pwd->smb_nt_pwd, nt_pwd, 16);
152         }
153         else
154         {
155                 bzero(pwd->smb_nt_pwd, 16);
156         }
157
158         pwd->null_pwd  = False;
159         pwd->cleartext = False;
160         pwd->crypted   = False;
161
162         pwd_obfuscate(pwd);
163 }
164
165 /****************************************************************************
166  gets lm and nt hashed passwords
167  ****************************************************************************/
168 void pwd_get_lm_nt_16(struct pwd_info *pwd, uchar lm_pwd[16], uchar nt_pwd[16])
169 {
170         pwd_deobfuscate(pwd);
171         memcpy(lm_pwd, pwd->smb_lm_pwd, 16);
172         memcpy(nt_pwd, pwd->smb_nt_pwd, 16);
173         pwd_obfuscate(pwd);
174 }
175
176 /****************************************************************************
177  makes lm and nt hashed passwords
178  ****************************************************************************/
179 void pwd_make_lm_nt_16(struct pwd_info *pwd, char *clr)
180 {
181         pwd_init(pwd);
182
183         nt_lm_owf_gen(clr, pwd->smb_nt_pwd, pwd->smb_lm_pwd);
184         pwd->null_pwd  = False;
185         pwd->cleartext = False;
186         pwd->crypted = False;
187
188         pwd_obfuscate(pwd);
189 }
190
191 /****************************************************************************
192  makes lm and nt OWF crypts
193  ****************************************************************************/
194 void pwd_make_lm_nt_owf(struct pwd_info *pwd, uchar cryptkey[8])
195 {
196         pwd_deobfuscate(pwd);
197
198 #ifdef DEBUG_PASSWORD
199         DEBUG(100,("client cryptkey: "));
200         dump_data(100, cryptkey, 8);
201 #endif
202
203         SMBOWFencrypt(pwd->smb_nt_pwd, cryptkey, pwd->smb_nt_owf);
204
205 #ifdef DEBUG_PASSWORD
206         DEBUG(100,("nt_owf_passwd: "));
207         dump_data(100, pwd->smb_nt_owf, sizeof(pwd->smb_nt_owf));
208         DEBUG(100,("nt_sess_pwd: "));
209         dump_data(100, pwd->smb_nt_pwd, sizeof(pwd->smb_nt_pwd));
210 #endif
211
212         SMBOWFencrypt(pwd->smb_lm_pwd, cryptkey, pwd->smb_lm_owf);
213
214 #ifdef DEBUG_PASSWORD
215         DEBUG(100,("lm_owf_passwd: "));
216         dump_data(100, pwd->smb_nt_owf, sizeof(pwd->smb_nt_owf));
217         DEBUG(100,("lm_sess_pwd: "));
218         dump_data(100, pwd->smb_lm_pwd, sizeof(pwd->smb_lm_pwd));
219 #endif
220
221         pwd->crypted = True;
222
223         pwd_obfuscate(pwd);
224 }
225
226 /****************************************************************************
227  gets lm and nt crypts
228  ****************************************************************************/
229 void pwd_get_lm_nt_owf(struct pwd_info *pwd, uchar lm_owf[24], uchar nt_owf[24])
230 {
231         pwd_deobfuscate(pwd);
232         memcpy(lm_owf, pwd->smb_lm_owf, 24);
233         memcpy(nt_owf, pwd->smb_nt_owf, 24);
234         pwd_obfuscate(pwd);
235 }