s3: Convert unexpected.tdb to use tdb_wrap_open
[sfrench/samba-autobuild/.git] / source3 / rpc_client / cli_samr.c
1 /* 
2    Unix SMB/CIFS implementation.
3    RPC pipe client
4    Copyright (C) Tim Potter                        2000-2001,
5    Copyright (C) Andrew Tridgell              1992-1997,2000,
6    Copyright (C) Rafal Szczesniak                       2002.
7    Copyright (C) Jeremy Allison                         2005.
8    Copyright (C) Guenther Deschner                      2008.
9    
10    This program is free software; you can redistribute it and/or modify
11    it under the terms of the GNU General Public License as published by
12    the Free Software Foundation; either version 3 of the License, or
13    (at your option) any later version.
14    
15    This program is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18    GNU General Public License for more details.
19    
20    You should have received a copy of the GNU General Public License
21    along with this program.  If not, see <http://www.gnu.org/licenses/>.
22 */
23
24 #include "includes.h"
25 #include "../libcli/auth/libcli_auth.h"
26 #include "../librpc/gen_ndr/cli_samr.h"
27
28 /* User change password */
29
30 NTSTATUS rpccli_samr_chgpasswd_user(struct rpc_pipe_client *cli,
31                                     TALLOC_CTX *mem_ctx,
32                                     struct policy_handle *user_handle,
33                                     const char *newpassword,
34                                     const char *oldpassword)
35 {
36         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
37         struct samr_Password hash1, hash2, hash3, hash4, hash5, hash6;
38
39         uchar old_nt_hash[16];
40         uchar old_lm_hash[16];
41         uchar new_nt_hash[16];
42         uchar new_lm_hash[16];
43
44         ZERO_STRUCT(old_nt_hash);
45         ZERO_STRUCT(old_lm_hash);
46         ZERO_STRUCT(new_nt_hash);
47         ZERO_STRUCT(new_lm_hash);
48
49         DEBUG(10,("rpccli_samr_chgpasswd_user\n"));
50
51         E_md4hash(oldpassword, old_nt_hash);
52         E_md4hash(newpassword, new_nt_hash);
53
54         E_deshash(oldpassword, old_lm_hash);
55         E_deshash(newpassword, new_lm_hash);
56
57         E_old_pw_hash(new_lm_hash, old_lm_hash, hash1.hash);
58         E_old_pw_hash(old_lm_hash, new_lm_hash, hash2.hash);
59         E_old_pw_hash(new_nt_hash, old_nt_hash, hash3.hash);
60         E_old_pw_hash(old_nt_hash, new_nt_hash, hash4.hash);
61         E_old_pw_hash(old_lm_hash, new_nt_hash, hash5.hash);
62         E_old_pw_hash(old_nt_hash, new_lm_hash, hash6.hash);
63
64         result = rpccli_samr_ChangePasswordUser(cli, mem_ctx,
65                                                 user_handle,
66                                                 true,
67                                                 &hash1,
68                                                 &hash2,
69                                                 true,
70                                                 &hash3,
71                                                 &hash4,
72                                                 true,
73                                                 &hash5,
74                                                 true,
75                                                 &hash6);
76
77         return result;
78 }
79
80
81 /* User change password */
82
83 NTSTATUS rpccli_samr_chgpasswd_user2(struct rpc_pipe_client *cli,
84                                      TALLOC_CTX *mem_ctx,
85                                      const char *username,
86                                      const char *newpassword,
87                                      const char *oldpassword)
88 {
89         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
90         struct samr_CryptPassword new_nt_password;
91         struct samr_CryptPassword new_lm_password;
92         struct samr_Password old_nt_hash_enc;
93         struct samr_Password old_lanman_hash_enc;
94
95         uchar old_nt_hash[16];
96         uchar old_lanman_hash[16];
97         uchar new_nt_hash[16];
98         uchar new_lanman_hash[16];
99         struct lsa_String server, account;
100
101         DEBUG(10,("rpccli_samr_chgpasswd_user2\n"));
102
103         init_lsa_String(&server, cli->srv_name_slash);
104         init_lsa_String(&account, username);
105
106         /* Calculate the MD4 hash (NT compatible) of the password */
107         E_md4hash(oldpassword, old_nt_hash);
108         E_md4hash(newpassword, new_nt_hash);
109
110         if (lp_client_lanman_auth() &&
111             E_deshash(newpassword, new_lanman_hash) &&
112             E_deshash(oldpassword, old_lanman_hash)) {
113                 /* E_deshash returns false for 'long' passwords (> 14
114                    DOS chars).  This allows us to match Win2k, which
115                    does not store a LM hash for these passwords (which
116                    would reduce the effective password length to 14) */
117
118                 encode_pw_buffer(new_lm_password.data, newpassword, STR_UNICODE);
119
120                 arcfour_crypt(new_lm_password.data, old_nt_hash, 516);
121                 E_old_pw_hash(new_nt_hash, old_lanman_hash, old_lanman_hash_enc.hash);
122         } else {
123                 ZERO_STRUCT(new_lm_password);
124                 ZERO_STRUCT(old_lanman_hash_enc);
125         }
126
127         encode_pw_buffer(new_nt_password.data, newpassword, STR_UNICODE);
128
129         arcfour_crypt(new_nt_password.data, old_nt_hash, 516);
130         E_old_pw_hash(new_nt_hash, old_nt_hash, old_nt_hash_enc.hash);
131
132         result = rpccli_samr_ChangePasswordUser2(cli, mem_ctx,
133                                                  &server,
134                                                  &account,
135                                                  &new_nt_password,
136                                                  &old_nt_hash_enc,
137                                                  true,
138                                                  &new_lm_password,
139                                                  &old_lanman_hash_enc);
140
141         return result;
142 }
143
144 /* User change password given blobs */
145
146 NTSTATUS rpccli_samr_chng_pswd_auth_crap(struct rpc_pipe_client *cli,
147                                          TALLOC_CTX *mem_ctx,
148                                          const char *username,
149                                          DATA_BLOB new_nt_password_blob,
150                                          DATA_BLOB old_nt_hash_enc_blob,
151                                          DATA_BLOB new_lm_password_blob,
152                                          DATA_BLOB old_lm_hash_enc_blob)
153 {
154         NTSTATUS result = NT_STATUS_UNSUCCESSFUL;
155         struct samr_CryptPassword new_nt_password;
156         struct samr_CryptPassword new_lm_password;
157         struct samr_Password old_nt_hash_enc;
158         struct samr_Password old_lm_hash_enc;
159         struct lsa_String server, account;
160
161         DEBUG(10,("rpccli_samr_chng_pswd_auth_crap\n"));
162
163         init_lsa_String(&server, cli->srv_name_slash);
164         init_lsa_String(&account, username);
165
166         memcpy(&new_nt_password.data, new_nt_password_blob.data, 516);
167         memcpy(&new_lm_password.data, new_lm_password_blob.data, 516);
168         memcpy(&old_nt_hash_enc.hash, old_nt_hash_enc_blob.data, 16);
169         memcpy(&old_lm_hash_enc.hash, old_lm_hash_enc_blob.data, 16);
170
171         result = rpccli_samr_ChangePasswordUser2(cli, mem_ctx,
172                                                  &server,
173                                                  &account,
174                                                  &new_nt_password,
175                                                  &old_nt_hash_enc,
176                                                  true,
177                                                  &new_lm_password,
178                                                  &old_lm_hash_enc);
179         return result;
180 }
181
182
183 /* change password 3 */
184
185 NTSTATUS rpccli_samr_chgpasswd_user3(struct rpc_pipe_client *cli,
186                                      TALLOC_CTX *mem_ctx,
187                                      const char *username,
188                                      const char *newpassword,
189                                      const char *oldpassword,
190                                      struct samr_DomInfo1 **dominfo1,
191                                      struct userPwdChangeFailureInformation **reject)
192 {
193         NTSTATUS status;
194
195         struct samr_CryptPassword new_nt_password;
196         struct samr_CryptPassword new_lm_password;
197         struct samr_Password old_nt_hash_enc;
198         struct samr_Password old_lanman_hash_enc;
199
200         uchar old_nt_hash[16];
201         uchar old_lanman_hash[16];
202         uchar new_nt_hash[16];
203         uchar new_lanman_hash[16];
204
205         struct lsa_String server, account;
206
207         DEBUG(10,("rpccli_samr_chgpasswd_user3\n"));
208
209         init_lsa_String(&server, cli->srv_name_slash);
210         init_lsa_String(&account, username);
211
212         /* Calculate the MD4 hash (NT compatible) of the password */
213         E_md4hash(oldpassword, old_nt_hash);
214         E_md4hash(newpassword, new_nt_hash);
215
216         if (lp_client_lanman_auth() &&
217             E_deshash(newpassword, new_lanman_hash) &&
218             E_deshash(oldpassword, old_lanman_hash)) {
219                 /* E_deshash returns false for 'long' passwords (> 14
220                    DOS chars).  This allows us to match Win2k, which
221                    does not store a LM hash for these passwords (which
222                    would reduce the effective password length to 14) */
223
224                 encode_pw_buffer(new_lm_password.data, newpassword, STR_UNICODE);
225
226                 arcfour_crypt(new_lm_password.data, old_nt_hash, 516);
227                 E_old_pw_hash(new_nt_hash, old_lanman_hash, old_lanman_hash_enc.hash);
228         } else {
229                 ZERO_STRUCT(new_lm_password);
230                 ZERO_STRUCT(old_lanman_hash_enc);
231         }
232
233         encode_pw_buffer(new_nt_password.data, newpassword, STR_UNICODE);
234
235         arcfour_crypt(new_nt_password.data, old_nt_hash, 516);
236         E_old_pw_hash(new_nt_hash, old_nt_hash, old_nt_hash_enc.hash);
237
238         status = rpccli_samr_ChangePasswordUser3(cli, mem_ctx,
239                                                  &server,
240                                                  &account,
241                                                  &new_nt_password,
242                                                  &old_nt_hash_enc,
243                                                  true,
244                                                  &new_lm_password,
245                                                  &old_lanman_hash_enc,
246                                                  NULL,
247                                                  dominfo1,
248                                                  reject);
249         return status;
250 }
251
252 /* This function returns the bizzare set of (max_entries, max_size) required
253    for the QueryDisplayInfo RPC to actually work against a domain controller
254    with large (10k and higher) numbers of users.  These values were 
255    obtained by inspection using ethereal and NT4 running User Manager. */
256
257 void get_query_dispinfo_params(int loop_count, uint32 *max_entries,
258                                uint32 *max_size)
259 {
260         switch(loop_count) {
261         case 0:
262                 *max_entries = 512;
263                 *max_size = 16383;
264                 break;
265         case 1:
266                 *max_entries = 1024;
267                 *max_size = 32766;
268                 break;
269         case 2:
270                 *max_entries = 2048;
271                 *max_size = 65532;
272                 break;
273         case 3:
274                 *max_entries = 4096;
275                 *max_size = 131064;
276                 break;
277         default:              /* loop_count >= 4 */
278                 *max_entries = 4096;
279                 *max_size = 131071;
280                 break;
281         }
282 }
283
284 NTSTATUS rpccli_try_samr_connects(struct rpc_pipe_client *cli,
285                                   TALLOC_CTX *mem_ctx,
286                                   uint32_t access_mask,
287                                   struct policy_handle *connect_pol)
288 {
289         NTSTATUS status;
290         union samr_ConnectInfo info_in, info_out;
291         struct samr_ConnectInfo1 info1;
292         uint32_t lvl_out = 0;
293
294         ZERO_STRUCT(info1);
295
296         info1.client_version = SAMR_CONNECT_W2K;
297         info_in.info1 = info1;
298
299         status = rpccli_samr_Connect5(cli, mem_ctx,
300                                       cli->srv_name_slash,
301                                       access_mask,
302                                       1,
303                                       &info_in,
304                                       &lvl_out,
305                                       &info_out,
306                                       connect_pol);
307         if (NT_STATUS_IS_OK(status)) {
308                 return status;
309         }
310
311         status = rpccli_samr_Connect4(cli, mem_ctx,
312                                       cli->srv_name_slash,
313                                       SAMR_CONNECT_W2K,
314                                       access_mask,
315                                       connect_pol);
316         if (NT_STATUS_IS_OK(status)) {
317                 return status;
318         }
319
320         status = rpccli_samr_Connect2(cli, mem_ctx,
321                                       cli->srv_name_slash,
322                                       access_mask,
323                                       connect_pol);
324         return status;
325 }
326