auth: Do not set emtpy passwords for credentials
[metze/samba/wip.git] / auth / credentials / credentials.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    User credentials handling
5
6    Copyright (C) Jelmer Vernooij 2005
7    Copyright (C) Tim Potter 2001
8    Copyright (C) Andrew Bartlett <abartlet@samba.org> 2005
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 "librpc/gen_ndr/samr.h" /* for struct samrPassword */
26 #include "auth/credentials/credentials.h"
27 #include "auth/credentials/credentials_internal.h"
28 #include "auth/gensec/gensec.h"
29 #include "libcli/auth/libcli_auth.h"
30 #include "tevent.h"
31 #include "param/param.h"
32 #include "system/filesys.h"
33
34 /**
35  * Create a new credentials structure
36  * @param mem_ctx TALLOC_CTX parent for credentials structure 
37  */
38 _PUBLIC_ struct cli_credentials *cli_credentials_init(TALLOC_CTX *mem_ctx) 
39 {
40         struct cli_credentials *cred = talloc_zero(mem_ctx, struct cli_credentials);
41         if (cred == NULL) {
42                 return cred;
43         }
44
45         cred->winbind_separator = '\\';
46
47         return cred;
48 }
49
50 _PUBLIC_ void cli_credentials_set_callback_data(struct cli_credentials *cred,
51                                                 void *callback_data)
52 {
53         cred->priv_data = callback_data;
54 }
55
56 _PUBLIC_ void *_cli_credentials_callback_data(struct cli_credentials *cred)
57 {
58         return cred->priv_data;
59 }
60
61 /**
62  * Create a new anonymous credential
63  * @param mem_ctx TALLOC_CTX parent for credentials structure 
64  */
65 _PUBLIC_ struct cli_credentials *cli_credentials_init_anon(TALLOC_CTX *mem_ctx)
66 {
67         struct cli_credentials *anon_credentials;
68
69         anon_credentials = cli_credentials_init(mem_ctx);
70         cli_credentials_set_anonymous(anon_credentials);
71
72         return anon_credentials;
73 }
74
75 _PUBLIC_ void cli_credentials_set_kerberos_state(struct cli_credentials *creds, 
76                                         enum credentials_use_kerberos use_kerberos)
77 {
78         creds->use_kerberos = use_kerberos;
79 }
80
81 _PUBLIC_ void cli_credentials_set_forced_sasl_mech(struct cli_credentials *creds,
82                                                    const char *sasl_mech)
83 {
84         TALLOC_FREE(creds->forced_sasl_mech);
85         creds->forced_sasl_mech = talloc_strdup(creds, sasl_mech);
86 }
87
88 _PUBLIC_ void cli_credentials_set_krb_forwardable(struct cli_credentials *creds,
89                                                   enum credentials_krb_forwardable krb_forwardable)
90 {
91         creds->krb_forwardable = krb_forwardable;
92 }
93
94 _PUBLIC_ enum credentials_use_kerberos cli_credentials_get_kerberos_state(struct cli_credentials *creds)
95 {
96         return creds->use_kerberos;
97 }
98
99 _PUBLIC_ const char *cli_credentials_get_forced_sasl_mech(struct cli_credentials *creds)
100 {
101         return creds->forced_sasl_mech;
102 }
103
104 _PUBLIC_ enum credentials_krb_forwardable cli_credentials_get_krb_forwardable(struct cli_credentials *creds)
105 {
106         return creds->krb_forwardable;
107 }
108
109 _PUBLIC_ void cli_credentials_set_gensec_features(struct cli_credentials *creds, uint32_t gensec_features)
110 {
111         creds->gensec_features = gensec_features;
112 }
113
114 _PUBLIC_ uint32_t cli_credentials_get_gensec_features(struct cli_credentials *creds)
115 {
116         return creds->gensec_features;
117 }
118
119
120 /**
121  * Obtain the username for this credentials context.
122  * @param cred credentials context
123  * @retval The username set on this context.
124  * @note Return value will never be NULL except by programmer error.
125  */
126 _PUBLIC_ const char *cli_credentials_get_username(struct cli_credentials *cred)
127 {
128         if (cred->machine_account_pending) {
129                 cli_credentials_set_machine_account(cred, 
130                                         cred->machine_account_pending_lp_ctx);
131         }
132
133         if (cred->username_obtained == CRED_CALLBACK && 
134             !cred->callback_running) {
135                 cred->callback_running = true;
136                 cred->username = cred->username_cb(cred);
137                 cred->callback_running = false;
138                 if (cred->username_obtained == CRED_CALLBACK) {
139                         cred->username_obtained = CRED_CALLBACK_RESULT;
140                         cli_credentials_invalidate_ccache(cred, cred->username_obtained);
141                 }
142         }
143
144         return cred->username;
145 }
146
147 _PUBLIC_ bool cli_credentials_set_username(struct cli_credentials *cred, 
148                                   const char *val, enum credentials_obtained obtained)
149 {
150         if (obtained >= cred->username_obtained) {
151                 cred->username = talloc_strdup(cred, val);
152                 cred->username_obtained = obtained;
153                 cli_credentials_invalidate_ccache(cred, cred->username_obtained);
154                 return true;
155         }
156
157         return false;
158 }
159
160 _PUBLIC_ bool cli_credentials_set_username_callback(struct cli_credentials *cred,
161                                   const char *(*username_cb) (struct cli_credentials *))
162 {
163         if (cred->username_obtained < CRED_CALLBACK) {
164                 cred->username_cb = username_cb;
165                 cred->username_obtained = CRED_CALLBACK;
166                 return true;
167         }
168
169         return false;
170 }
171
172 _PUBLIC_ bool cli_credentials_set_bind_dn(struct cli_credentials *cred, 
173                                  const char *bind_dn)
174 {
175         cred->bind_dn = talloc_strdup(cred, bind_dn);
176         return true;
177 }
178
179 /**
180  * Obtain the BIND DN for this credentials context.
181  * @param cred credentials context
182  * @retval The username set on this context.
183  * @note Return value will be NULL if not specified explictly
184  */
185 _PUBLIC_ const char *cli_credentials_get_bind_dn(struct cli_credentials *cred)
186 {
187         return cred->bind_dn;
188 }
189
190
191 /**
192  * Obtain the client principal for this credentials context.
193  * @param cred credentials context
194  * @retval The username set on this context.
195  * @note Return value will never be NULL except by programmer error.
196  */
197 _PUBLIC_ char *cli_credentials_get_principal_and_obtained(struct cli_credentials *cred, TALLOC_CTX *mem_ctx, enum credentials_obtained *obtained)
198 {
199         if (cred->machine_account_pending) {
200                 cli_credentials_set_machine_account(cred,
201                                         cred->machine_account_pending_lp_ctx);
202         }
203
204         if (cred->principal_obtained == CRED_CALLBACK && 
205             !cred->callback_running) {
206                 cred->callback_running = true;
207                 cred->principal = cred->principal_cb(cred);
208                 cred->callback_running = false;
209                 if (cred->principal_obtained == CRED_CALLBACK) {
210                         cred->principal_obtained = CRED_CALLBACK_RESULT;
211                         cli_credentials_invalidate_ccache(cred, cred->principal_obtained);
212                 }
213         }
214
215         if (cred->principal_obtained < cred->username_obtained
216             || cred->principal_obtained < MAX(cred->domain_obtained, cred->realm_obtained)) {
217                 const char *effective_username = NULL;
218                 const char *effective_realm = NULL;
219                 enum credentials_obtained effective_obtained;
220
221                 effective_username = cli_credentials_get_username(cred);
222                 if (effective_username == NULL || strlen(effective_username) == 0) {
223                         *obtained = cred->username_obtained;
224                         return NULL;
225                 }
226
227                 if (cred->domain_obtained > cred->realm_obtained) {
228                         effective_realm = cli_credentials_get_domain(cred);
229                         effective_obtained = MIN(cred->domain_obtained,
230                                                  cred->username_obtained);
231                 } else {
232                         effective_realm = cli_credentials_get_realm(cred);
233                         effective_obtained = MIN(cred->realm_obtained,
234                                                  cred->username_obtained);
235                 }
236
237                 if (effective_realm == NULL || strlen(effective_realm) == 0) {
238                         effective_realm = cli_credentials_get_domain(cred);
239                         effective_obtained = MIN(cred->domain_obtained,
240                                                  cred->username_obtained);
241                 }
242
243                 if (effective_realm != NULL && strlen(effective_realm) != 0) {
244                         *obtained = effective_obtained;
245                         return talloc_asprintf(mem_ctx, "%s@%s", 
246                                                effective_username,
247                                                effective_realm);
248                 }
249         }
250         *obtained = cred->principal_obtained;
251         return talloc_strdup(mem_ctx, cred->principal);
252 }
253
254 /**
255  * Obtain the client principal for this credentials context.
256  * @param cred credentials context
257  * @retval The username set on this context.
258  * @note Return value will never be NULL except by programmer error.
259  */
260 _PUBLIC_ char *cli_credentials_get_principal(struct cli_credentials *cred, TALLOC_CTX *mem_ctx)
261 {
262         enum credentials_obtained obtained;
263         return cli_credentials_get_principal_and_obtained(cred, mem_ctx, &obtained);
264 }
265
266 _PUBLIC_ bool cli_credentials_set_principal(struct cli_credentials *cred, 
267                                    const char *val, 
268                                    enum credentials_obtained obtained)
269 {
270         if (obtained >= cred->principal_obtained) {
271                 cred->principal = talloc_strdup(cred, val);
272                 if (cred->principal == NULL) {
273                         return false;
274                 }
275                 cred->principal_obtained = obtained;
276
277                 cli_credentials_invalidate_ccache(cred, cred->principal_obtained);
278                 return true;
279         }
280
281         return false;
282 }
283
284 /* Set a callback to get the principal.  This could be a popup dialog,
285  * a terminal prompt or similar.  */
286 _PUBLIC_ bool cli_credentials_set_principal_callback(struct cli_credentials *cred,
287                                   const char *(*principal_cb) (struct cli_credentials *))
288 {
289         if (cred->principal_obtained < CRED_CALLBACK) {
290                 cred->principal_cb = principal_cb;
291                 cred->principal_obtained = CRED_CALLBACK;
292                 return true;
293         }
294
295         return false;
296 }
297
298 /* Some of our tools are 'anonymous by default'.  This is a single
299  * function to determine if authentication has been explicitly
300  * requested */
301
302 _PUBLIC_ bool cli_credentials_authentication_requested(struct cli_credentials *cred) 
303 {
304         uint32_t gensec_features = 0;
305
306         if (cred->bind_dn) {
307                 return true;
308         }
309
310         /*
311          * If we forced the mech we clearly want authentication. E.g. to use
312          * SASL/EXTERNAL which has no credentials.
313          */
314         if (cred->forced_sasl_mech) {
315                 return true;
316         }
317
318         if (cli_credentials_is_anonymous(cred)){
319                 return false;
320         }
321
322         if (cred->principal_obtained >= CRED_SPECIFIED) {
323                 return true;
324         }
325         if (cred->username_obtained >= CRED_SPECIFIED) {
326                 return true;
327         }
328
329         if (cli_credentials_get_kerberos_state(cred) == CRED_MUST_USE_KERBEROS) {
330                 return true;
331         }
332
333         gensec_features = cli_credentials_get_gensec_features(cred);
334         if (gensec_features & GENSEC_FEATURE_NTLM_CCACHE) {
335                 return true;
336         }
337
338         if (gensec_features & GENSEC_FEATURE_SIGN) {
339                 return true;
340         }
341
342         if (gensec_features & GENSEC_FEATURE_SEAL) {
343                 return true;
344         }
345
346         return false;
347 }
348
349 /**
350  * Obtain the password for this credentials context.
351  * @param cred credentials context
352  * @retval If set, the cleartext password, otherwise NULL
353  */
354 _PUBLIC_ const char *cli_credentials_get_password(struct cli_credentials *cred)
355 {
356         if (cred->machine_account_pending) {
357                 cli_credentials_set_machine_account(cred,
358                                                     cred->machine_account_pending_lp_ctx);
359         }
360
361         if (cred->password_obtained == CRED_CALLBACK && 
362             !cred->callback_running &&
363             !cred->password_will_be_nt_hash) {
364                 cred->callback_running = true;
365                 cred->password = cred->password_cb(cred);
366                 cred->callback_running = false;
367                 if (cred->password_obtained == CRED_CALLBACK) {
368                         cred->password_obtained = CRED_CALLBACK_RESULT;
369                         cli_credentials_invalidate_ccache(cred, cred->password_obtained);
370                 }
371         }
372
373         return cred->password;
374 }
375
376 /* Set a password on the credentials context, including an indication
377  * of 'how' the password was obtained */
378
379 _PUBLIC_ bool cli_credentials_set_password(struct cli_credentials *cred, 
380                                   const char *val, 
381                                   enum credentials_obtained obtained)
382 {
383         if (obtained >= cred->password_obtained) {
384
385                 cred->lm_response = data_blob_null;
386                 cred->nt_response = data_blob_null;
387                 cred->nt_hash = NULL;
388                 cred->password = NULL;
389
390                 cli_credentials_invalidate_ccache(cred, obtained);
391
392                 cred->password_tries = 0;
393
394                 if (val == NULL) {
395                         cred->password_obtained = obtained;
396                         return true;
397                 }
398
399                 if (cred->password_will_be_nt_hash) {
400                         struct samr_Password *nt_hash = NULL;
401                         size_t val_len = strlen(val);
402                         size_t converted;
403
404                         nt_hash = talloc(cred, struct samr_Password);
405                         if (nt_hash == NULL) {
406                                 return false;
407                         }
408
409                         converted = strhex_to_str((char *)nt_hash->hash,
410                                                   sizeof(nt_hash->hash),
411                                                   val, val_len);
412                         if (converted != sizeof(nt_hash->hash)) {
413                                 TALLOC_FREE(nt_hash);
414                                 return false;
415                         }
416
417                         cred->nt_hash = nt_hash;
418                         cred->password_obtained = obtained;
419                         return true;
420                 }
421
422                 cred->password = talloc_strdup(cred, val);
423                 if (cred->password == NULL) {
424                         return false;
425                 }
426
427                 /* Don't print the actual password in talloc memory dumps */
428                 talloc_set_name_const(cred->password,
429                         "password set via cli_credentials_set_password");
430                 cred->password_obtained = obtained;
431
432                 return true;
433         }
434
435         return false;
436 }
437
438 _PUBLIC_ bool cli_credentials_set_password_callback(struct cli_credentials *cred,
439                                            const char *(*password_cb) (struct cli_credentials *))
440 {
441         if (cred->password_obtained < CRED_CALLBACK) {
442                 cred->password_tries = 3;
443                 cred->password_cb = password_cb;
444                 cred->password_obtained = CRED_CALLBACK;
445                 cli_credentials_invalidate_ccache(cred, cred->password_obtained);
446                 return true;
447         }
448
449         return false;
450 }
451
452 /**
453  * Obtain the 'old' password for this credentials context (used for join accounts).
454  * @param cred credentials context
455  * @retval If set, the cleartext password, otherwise NULL
456  */
457 _PUBLIC_ const char *cli_credentials_get_old_password(struct cli_credentials *cred)
458 {
459         if (cred->machine_account_pending) {
460                 cli_credentials_set_machine_account(cred,
461                                                     cred->machine_account_pending_lp_ctx);
462         }
463
464         return cred->old_password;
465 }
466
467 _PUBLIC_ bool cli_credentials_set_old_password(struct cli_credentials *cred, 
468                                       const char *val, 
469                                       enum credentials_obtained obtained)
470 {
471         cred->old_password = talloc_strdup(cred, val);
472         if (cred->old_password) {
473                 /* Don't print the actual password in talloc memory dumps */
474                 talloc_set_name_const(cred->old_password, "password set via cli_credentials_set_old_password");
475         }
476         cred->old_nt_hash = NULL;
477         return true;
478 }
479
480 /**
481  * Obtain the password, in the form MD4(unicode(password)) for this credentials context.
482  *
483  * Sometimes we only have this much of the password, while the rest of
484  * the time this call avoids calling E_md4hash themselves.
485  *
486  * @param cred credentials context
487  * @retval If set, the cleartext password, otherwise NULL
488  */
489 _PUBLIC_ struct samr_Password *cli_credentials_get_nt_hash(struct cli_credentials *cred,
490                                                            TALLOC_CTX *mem_ctx)
491 {
492         enum credentials_obtained password_obtained;
493         enum credentials_obtained ccache_threshold;
494         enum credentials_obtained client_gss_creds_threshold;
495         bool password_is_nt_hash;
496         const char *password = NULL;
497         struct samr_Password *nt_hash = NULL;
498
499         if (cred->nt_hash != NULL) {
500                 /*
501                  * If we already have a hash it's easy.
502                  */
503                 goto return_hash;
504         }
505
506         /*
507          * This is a bit tricky, with password_will_be_nt_hash
508          * we still need to get the value via the password_callback
509          * but if we did that we should not remember it's state
510          * in the long run so we need to undo it.
511          */
512
513         password_obtained = cred->password_obtained;
514         ccache_threshold = cred->ccache_threshold;
515         client_gss_creds_threshold = cred->client_gss_creds_threshold;
516         password_is_nt_hash = cred->password_will_be_nt_hash;
517
518         cred->password_will_be_nt_hash = false;
519         password = cli_credentials_get_password(cred);
520
521         cred->password_will_be_nt_hash = password_is_nt_hash;
522         if (password_is_nt_hash && password_obtained == CRED_CALLBACK) {
523                 /*
524                  * We got the nt_hash as string via the callback,
525                  * so we need to undo the state change.
526                  *
527                  * And also don't remember it as plaintext password.
528                  */
529                 cred->client_gss_creds_threshold = client_gss_creds_threshold;
530                 cred->ccache_threshold = ccache_threshold;
531                 cred->password_obtained = password_obtained;
532                 cred->password = NULL;
533         }
534
535         if (password == NULL) {
536                 return NULL;
537         }
538
539         nt_hash = talloc(cred, struct samr_Password);
540         if (nt_hash == NULL) {
541                 return NULL;
542         }
543
544         if (password_is_nt_hash) {
545                 size_t password_len = strlen(password);
546                 size_t converted;
547
548                 converted = strhex_to_str((char *)nt_hash->hash,
549                                           sizeof(nt_hash->hash),
550                                           password, password_len);
551                 if (converted != sizeof(nt_hash->hash)) {
552                         TALLOC_FREE(nt_hash);
553                         return NULL;
554                 }
555         } else {
556                 E_md4hash(password, nt_hash->hash);
557         }
558
559         cred->nt_hash = nt_hash;
560         nt_hash = NULL;
561
562 return_hash:
563         nt_hash = talloc(mem_ctx, struct samr_Password);
564         if (nt_hash == NULL) {
565                 return NULL;
566         }
567
568         *nt_hash = *cred->nt_hash;
569
570         return nt_hash;
571 }
572
573 /**
574  * Obtain the old password, in the form MD4(unicode(password)) for this credentials context.
575  *
576  * Sometimes we only have this much of the password, while the rest of
577  * the time this call avoids calling E_md4hash themselves.
578  *
579  * @param cred credentials context
580  * @retval If set, the cleartext password, otherwise NULL
581  */
582 _PUBLIC_ struct samr_Password *cli_credentials_get_old_nt_hash(struct cli_credentials *cred,
583                                                                TALLOC_CTX *mem_ctx)
584 {
585         const char *old_password = NULL;
586
587         if (cred->old_nt_hash != NULL) {
588                 struct samr_Password *nt_hash = talloc(mem_ctx, struct samr_Password);
589                 if (!nt_hash) {
590                         return NULL;
591                 }
592
593                 *nt_hash = *cred->old_nt_hash;
594
595                 return nt_hash;
596         }
597
598         old_password = cli_credentials_get_old_password(cred);
599         if (old_password) {
600                 struct samr_Password *nt_hash = talloc(mem_ctx, struct samr_Password);
601                 if (!nt_hash) {
602                         return NULL;
603                 }
604
605                 E_md4hash(old_password, nt_hash->hash);
606
607                 return nt_hash;
608         }
609
610         return NULL;
611 }
612
613 /**
614  * Obtain the 'short' or 'NetBIOS' domain for this credentials context.
615  * @param cred credentials context
616  * @retval The domain set on this context. 
617  * @note Return value will never be NULL except by programmer error.
618  */
619 _PUBLIC_ const char *cli_credentials_get_domain(struct cli_credentials *cred)
620 {
621         if (cred->machine_account_pending) {
622                 cli_credentials_set_machine_account(cred,
623                                                     cred->machine_account_pending_lp_ctx);
624         }
625
626         if (cred->domain_obtained == CRED_CALLBACK && 
627             !cred->callback_running) {
628                 cred->callback_running = true;
629                 cred->domain = cred->domain_cb(cred);
630                 cred->callback_running = false;
631                 if (cred->domain_obtained == CRED_CALLBACK) {
632                         cred->domain_obtained = CRED_CALLBACK_RESULT;
633                         cli_credentials_invalidate_ccache(cred, cred->domain_obtained);
634                 }
635         }
636
637         return cred->domain;
638 }
639
640
641 _PUBLIC_ bool cli_credentials_set_domain(struct cli_credentials *cred, 
642                                 const char *val, 
643                                 enum credentials_obtained obtained)
644 {
645         if (obtained >= cred->domain_obtained) {
646                 /* it is important that the domain be in upper case,
647                  * particularly for the sensitive NTLMv2
648                  * calculations */
649                 cred->domain = strupper_talloc(cred, val);
650                 cred->domain_obtained = obtained;
651                 /* setting domain does not mean we have to invalidate ccache 
652                  * because domain in not used for Kerberos operations.
653                  * If ccache invalidation is required, one will anyway specify
654                  * a password to kinit, and that will force invalidation of the ccache
655                  */
656                 return true;
657         }
658
659         return false;
660 }
661
662 bool cli_credentials_set_domain_callback(struct cli_credentials *cred,
663                                          const char *(*domain_cb) (struct cli_credentials *))
664 {
665         if (cred->domain_obtained < CRED_CALLBACK) {
666                 cred->domain_cb = domain_cb;
667                 cred->domain_obtained = CRED_CALLBACK;
668                 return true;
669         }
670
671         return false;
672 }
673
674 /**
675  * Obtain the Kerberos realm for this credentials context.
676  * @param cred credentials context
677  * @retval The realm set on this context. 
678  * @note Return value will never be NULL except by programmer error.
679  */
680 _PUBLIC_ const char *cli_credentials_get_realm(struct cli_credentials *cred)
681 {       
682         if (cred->machine_account_pending) {
683                 cli_credentials_set_machine_account(cred,
684                                                     cred->machine_account_pending_lp_ctx);
685         }
686
687         if (cred->realm_obtained == CRED_CALLBACK && 
688             !cred->callback_running) {
689                 cred->callback_running = true;
690                 cred->realm = cred->realm_cb(cred);
691                 cred->callback_running = false;
692                 if (cred->realm_obtained == CRED_CALLBACK) {
693                         cred->realm_obtained = CRED_CALLBACK_RESULT;
694                         cli_credentials_invalidate_ccache(cred, cred->realm_obtained);
695                 }
696         }
697
698         return cred->realm;
699 }
700
701 /**
702  * Set the realm for this credentials context, and force it to
703  * uppercase for the sanity of our local kerberos libraries
704  */
705 _PUBLIC_ bool cli_credentials_set_realm(struct cli_credentials *cred, 
706                                const char *val, 
707                                enum credentials_obtained obtained)
708 {
709         if (obtained >= cred->realm_obtained) {
710                 cred->realm = strupper_talloc(cred, val);
711                 cred->realm_obtained = obtained;
712                 cli_credentials_invalidate_ccache(cred, cred->realm_obtained);
713                 return true;
714         }
715
716         return false;
717 }
718
719 bool cli_credentials_set_realm_callback(struct cli_credentials *cred,
720                                         const char *(*realm_cb) (struct cli_credentials *))
721 {
722         if (cred->realm_obtained < CRED_CALLBACK) {
723                 cred->realm_cb = realm_cb;
724                 cred->realm_obtained = CRED_CALLBACK;
725                 return true;
726         }
727
728         return false;
729 }
730
731 /**
732  * Obtain the 'short' or 'NetBIOS' workstation name for this credentials context.
733  *
734  * @param cred credentials context
735  * @retval The workstation name set on this context. 
736  * @note Return value will never be NULL except by programmer error.
737  */
738 _PUBLIC_ const char *cli_credentials_get_workstation(struct cli_credentials *cred)
739 {
740         if (cred->workstation_obtained == CRED_CALLBACK && 
741             !cred->callback_running) {
742                 cred->callback_running = true;
743                 cred->workstation = cred->workstation_cb(cred);
744                 cred->callback_running = false;
745                 if (cred->workstation_obtained == CRED_CALLBACK) {
746                         cred->workstation_obtained = CRED_CALLBACK_RESULT;
747                 }
748         }
749
750         return cred->workstation;
751 }
752
753 _PUBLIC_ bool cli_credentials_set_workstation(struct cli_credentials *cred, 
754                                      const char *val, 
755                                      enum credentials_obtained obtained)
756 {
757         if (obtained >= cred->workstation_obtained) {
758                 cred->workstation = talloc_strdup(cred, val);
759                 cred->workstation_obtained = obtained;
760                 return true;
761         }
762
763         return false;
764 }
765
766 bool cli_credentials_set_workstation_callback(struct cli_credentials *cred,
767                                               const char *(*workstation_cb) (struct cli_credentials *))
768 {
769         if (cred->workstation_obtained < CRED_CALLBACK) {
770                 cred->workstation_cb = workstation_cb;
771                 cred->workstation_obtained = CRED_CALLBACK;
772                 return true;
773         }
774
775         return false;
776 }
777
778 /**
779  * Given a string, typically obtained from a -U argument, parse it into domain, username, realm and password fields
780  *
781  * The format accepted is [domain\\]user[%password] or user[@realm][%password]
782  *
783  * @param credentials Credentials structure on which to set the password
784  * @param data the string containing the username, password etc
785  * @param obtained This enum describes how 'specified' this password is
786  */
787
788 _PUBLIC_ void cli_credentials_parse_string(struct cli_credentials *credentials, const char *data, enum credentials_obtained obtained)
789 {
790         char *uname, *p;
791
792         if (strcmp("%",data) == 0) {
793                 cli_credentials_set_anonymous(credentials);
794                 return;
795         }
796
797         uname = talloc_strdup(credentials, data); 
798         if ((p = strchr_m(uname,'%'))) {
799                 const char *password;
800
801                 *p = '\0';
802                 password = p + 1;
803                 if (password[0] != '\0') {
804                         cli_credentials_set_password(credentials,
805                                                      password,
806                                                      obtained);
807                 }
808         }
809
810         if ((p = strchr_m(uname,'@'))) {
811                 /*
812                  * We also need to set username and domain
813                  * in order to undo the effect of
814                  * cli_credentials_guess().
815                  */
816                 cli_credentials_set_username(credentials, uname, obtained);
817                 cli_credentials_set_domain(credentials, "", obtained);
818
819                 cli_credentials_set_principal(credentials, uname, obtained);
820                 *p = 0;
821                 cli_credentials_set_realm(credentials, p+1, obtained);
822                 return;
823         } else if ((p = strchr_m(uname,'\\'))
824                    || (p = strchr_m(uname, '/'))
825                    || (p = strchr_m(uname, credentials->winbind_separator)))
826         {
827                 const char *domain = NULL;
828
829                 domain = uname;
830                 *p = 0;
831                 uname = p+1;
832
833                 if (obtained == credentials->realm_obtained &&
834                     !strequal_m(credentials->domain, domain))
835                 {
836                         /*
837                          * We need to undo a former set with the same level
838                          * in order to get the expected result from
839                          * cli_credentials_get_principal().
840                          *
841                          * But we only need to do that if the domain
842                          * actually changes.
843                          */
844                         cli_credentials_set_realm(credentials, domain, obtained);
845                 }
846                 cli_credentials_set_domain(credentials, domain, obtained);
847         }
848         if (obtained == credentials->principal_obtained &&
849             !strequal_m(credentials->username, uname))
850         {
851                 /*
852                  * We need to undo a former set with the same level
853                  * in order to get the expected result from
854                  * cli_credentials_get_principal().
855                  *
856                  * But we only need to do that if the username
857                  * actually changes.
858                  */
859                 credentials->principal_obtained = CRED_UNINITIALISED;
860                 credentials->principal = NULL;
861         }
862         cli_credentials_set_username(credentials, uname, obtained);
863 }
864
865 /**
866  * Given a a credentials structure, print it as a string
867  *
868  * The format output is [domain\\]user[%password] or user[@realm][%password]
869  *
870  * @param credentials Credentials structure on which to set the password
871  * @param mem_ctx The memory context to place the result on
872  */
873
874 _PUBLIC_ char *cli_credentials_get_unparsed_name(struct cli_credentials *credentials, TALLOC_CTX *mem_ctx)
875 {
876         const char *bind_dn = cli_credentials_get_bind_dn(credentials);
877         const char *domain = NULL;
878         const char *username = NULL;
879         char *name = NULL;
880
881         if (bind_dn) {
882                 name = talloc_strdup(mem_ctx, bind_dn);
883         } else {
884                 cli_credentials_get_ntlm_username_domain(credentials, mem_ctx, &username, &domain);
885                 if (domain && domain[0]) {
886                         name = talloc_asprintf(mem_ctx, "%s\\%s", 
887                                                domain, username);
888                 } else {
889                         name = talloc_asprintf(mem_ctx, "%s", 
890                                                username);
891                 }
892         }
893         return name;
894 }
895
896 /**
897  * Specifies default values for domain, workstation and realm
898  * from the smb.conf configuration file
899  *
900  * @param cred Credentials structure to fill in
901  */
902 _PUBLIC_ void cli_credentials_set_conf(struct cli_credentials *cred, 
903                               struct loadparm_context *lp_ctx)
904 {
905         const char *sep = NULL;
906         const char *realm = lpcfg_realm(lp_ctx);
907
908         cli_credentials_set_username(cred, "", CRED_UNINITIALISED);
909         if (lpcfg_parm_is_cmdline(lp_ctx, "workgroup")) {
910                 cli_credentials_set_domain(cred, lpcfg_workgroup(lp_ctx), CRED_SPECIFIED);
911         } else {
912                 cli_credentials_set_domain(cred, lpcfg_workgroup(lp_ctx), CRED_UNINITIALISED);
913         }
914         if (lpcfg_parm_is_cmdline(lp_ctx, "netbios name")) {
915                 cli_credentials_set_workstation(cred, lpcfg_netbios_name(lp_ctx), CRED_SPECIFIED);
916         } else {
917                 cli_credentials_set_workstation(cred, lpcfg_netbios_name(lp_ctx), CRED_UNINITIALISED);
918         }
919         if (realm != NULL && strlen(realm) == 0) {
920                 realm = NULL;
921         }
922         if (lpcfg_parm_is_cmdline(lp_ctx, "realm")) {
923                 cli_credentials_set_realm(cred, realm, CRED_SPECIFIED);
924         } else {
925                 cli_credentials_set_realm(cred, realm, CRED_UNINITIALISED);
926         }
927
928         sep = lpcfg_winbind_separator(lp_ctx);
929         if (sep != NULL && sep[0] != '\0') {
930                 cred->winbind_separator = *lpcfg_winbind_separator(lp_ctx);
931         }
932 }
933
934 /**
935  * Guess defaults for credentials from environment variables, 
936  * and from the configuration file
937  * 
938  * @param cred Credentials structure to fill in
939  */
940 _PUBLIC_ void cli_credentials_guess(struct cli_credentials *cred,
941                            struct loadparm_context *lp_ctx)
942 {
943         char *p;
944         const char *error_string;
945
946         if (lp_ctx != NULL) {
947                 cli_credentials_set_conf(cred, lp_ctx);
948         }
949         
950         if (getenv("LOGNAME")) {
951                 cli_credentials_set_username(cred, getenv("LOGNAME"), CRED_GUESS_ENV);
952         }
953
954         if (getenv("USER")) {
955                 cli_credentials_parse_string(cred, getenv("USER"), CRED_GUESS_ENV);
956                 if ((p = strchr_m(getenv("USER"),'%'))) {
957                         memset(p,0,strlen(cred->password));
958                 }
959         }
960
961         if (getenv("PASSWD")) {
962                 cli_credentials_set_password(cred, getenv("PASSWD"), CRED_GUESS_ENV);
963         }
964
965         if (getenv("PASSWD_FD")) {
966                 cli_credentials_parse_password_fd(cred, atoi(getenv("PASSWD_FD")), 
967                                                   CRED_GUESS_FILE);
968         }
969         
970         p = getenv("PASSWD_FILE");
971         if (p && p[0]) {
972                 cli_credentials_parse_password_file(cred, p, CRED_GUESS_FILE);
973         }
974         
975         if (cli_credentials_get_kerberos_state(cred) != CRED_DONT_USE_KERBEROS) {
976                 cli_credentials_set_ccache(cred, lp_ctx, NULL, CRED_GUESS_FILE,
977                                            &error_string);
978         }
979 }
980
981 /**
982  * Attach NETLOGON credentials for use with SCHANNEL
983  */
984
985 _PUBLIC_ void cli_credentials_set_netlogon_creds(
986         struct cli_credentials *cred,
987         const struct netlogon_creds_CredentialState *netlogon_creds)
988 {
989         TALLOC_FREE(cred->netlogon_creds);
990         if (netlogon_creds == NULL) {
991                 return;
992         }
993         cred->netlogon_creds = netlogon_creds_copy(cred, netlogon_creds);
994 }
995
996 /**
997  * Return attached NETLOGON credentials 
998  */
999
1000 _PUBLIC_ struct netlogon_creds_CredentialState *cli_credentials_get_netlogon_creds(struct cli_credentials *cred)
1001 {
1002         return cred->netlogon_creds;
1003 }
1004
1005 /** 
1006  * Set NETLOGON secure channel type
1007  */
1008
1009 _PUBLIC_ void cli_credentials_set_secure_channel_type(struct cli_credentials *cred,
1010                                              enum netr_SchannelType secure_channel_type)
1011 {
1012         cred->secure_channel_type = secure_channel_type;
1013 }
1014
1015 /**
1016  * Return NETLOGON secure chanel type
1017  */
1018
1019 _PUBLIC_ time_t cli_credentials_get_password_last_changed_time(struct cli_credentials *cred)
1020 {
1021         return cred->password_last_changed_time;
1022 }
1023
1024 /** 
1025  * Set NETLOGON secure channel type
1026  */
1027
1028 _PUBLIC_ void cli_credentials_set_password_last_changed_time(struct cli_credentials *cred,
1029                                                              time_t last_changed_time)
1030 {
1031         cred->password_last_changed_time = last_changed_time;
1032 }
1033
1034 /**
1035  * Return NETLOGON secure chanel type
1036  */
1037
1038 _PUBLIC_ enum netr_SchannelType cli_credentials_get_secure_channel_type(struct cli_credentials *cred)
1039 {
1040         return cred->secure_channel_type;
1041 }
1042
1043 /**
1044  * Fill in a credentials structure as the anonymous user
1045  */
1046 _PUBLIC_ void cli_credentials_set_anonymous(struct cli_credentials *cred) 
1047 {
1048         cli_credentials_set_username(cred, "", CRED_SPECIFIED);
1049         cli_credentials_set_domain(cred, "", CRED_SPECIFIED);
1050         cli_credentials_set_password(cred, NULL, CRED_SPECIFIED);
1051         cli_credentials_set_principal(cred, NULL, CRED_SPECIFIED);
1052         cli_credentials_set_realm(cred, NULL, CRED_SPECIFIED);
1053         cli_credentials_set_workstation(cred, "", CRED_UNINITIALISED);
1054         cli_credentials_set_kerberos_state(cred, CRED_DONT_USE_KERBEROS);
1055 }
1056
1057 /**
1058  * Describe a credentials context as anonymous or authenticated
1059  * @retval true if anonymous, false if a username is specified
1060  */
1061
1062 _PUBLIC_ bool cli_credentials_is_anonymous(struct cli_credentials *cred)
1063 {
1064         const char *username;
1065         
1066         /* if bind dn is set it's not anonymous */
1067         if (cred->bind_dn) {
1068                 return false;
1069         }
1070
1071         if (cred->machine_account_pending) {
1072                 cli_credentials_set_machine_account(cred,
1073                                                     cred->machine_account_pending_lp_ctx);
1074         }
1075
1076         /* if principal is set, it's not anonymous */
1077         if ((cred->principal != NULL) && cred->principal_obtained >= cred->username_obtained) {
1078                 return false;
1079         }
1080
1081         username = cli_credentials_get_username(cred);
1082         
1083         /* Yes, it is deliberate that we die if we have a NULL pointer
1084          * here - anonymous is "", not NULL, which is 'never specified,
1085          * never guessed', ie programmer bug */
1086         if (!username[0]) {
1087                 return true;
1088         }
1089
1090         return false;
1091 }
1092
1093 /**
1094  * Mark the current password for a credentials struct as wrong. This will 
1095  * cause the password to be prompted again (if a callback is set).
1096  *
1097  * This will decrement the number of times the password can be tried.
1098  *
1099  * @retval whether the credentials struct is finished
1100  */
1101 _PUBLIC_ bool cli_credentials_wrong_password(struct cli_credentials *cred)
1102 {
1103         if (cred->password_obtained != CRED_CALLBACK_RESULT) {
1104                 return false;
1105         }
1106
1107         if (cred->password_tries == 0) {
1108                 return false;
1109         }
1110
1111         cred->password_tries--;
1112
1113         if (cred->password_tries == 0) {
1114                 return false;
1115         }
1116
1117         cred->password_obtained = CRED_CALLBACK;
1118         return true;
1119 }
1120
1121 _PUBLIC_ void cli_credentials_get_ntlm_username_domain(struct cli_credentials *cred, TALLOC_CTX *mem_ctx, 
1122                                               const char **username, 
1123                                               const char **domain) 
1124 {
1125         if (cred->principal_obtained > cred->username_obtained) {
1126                 *domain = talloc_strdup(mem_ctx, "");
1127                 *username = cli_credentials_get_principal(cred, mem_ctx);
1128         } else {
1129                 *domain = cli_credentials_get_domain(cred);
1130                 *username = cli_credentials_get_username(cred);
1131         }
1132 }
1133
1134 /**
1135  * Read a named file, and parse it for username, domain, realm and password
1136  *
1137  * @param credentials Credentials structure on which to set the password
1138  * @param file a named file to read the details from 
1139  * @param obtained This enum describes how 'specified' this password is
1140  */
1141
1142 _PUBLIC_ bool cli_credentials_parse_file(struct cli_credentials *cred, const char *file, enum credentials_obtained obtained) 
1143 {
1144         uint16_t len = 0;
1145         char *ptr, *val, *param;
1146         char **lines;
1147         int i, numlines;
1148         const char *realm = NULL;
1149         const char *domain = NULL;
1150         const char *password = NULL;
1151         const char *username = NULL;
1152
1153         lines = file_lines_load(file, &numlines, 0, NULL);
1154
1155         if (lines == NULL)
1156         {
1157                 /* fail if we can't open the credentials file */
1158                 d_printf("ERROR: Unable to open credentials file!\n");
1159                 return false;
1160         }
1161
1162         for (i = 0; i < numlines; i++) {
1163                 len = strlen(lines[i]);
1164
1165                 if (len == 0)
1166                         continue;
1167
1168                 /* break up the line into parameter & value.
1169                  * will need to eat a little whitespace possibly */
1170                 param = lines[i];
1171                 if (!(ptr = strchr_m (lines[i], '=')))
1172                         continue;
1173
1174                 val = ptr+1;
1175                 *ptr = '\0';
1176
1177                 /* eat leading white space */
1178                 while ((*val!='\0') && ((*val==' ') || (*val=='\t')))
1179                         val++;
1180
1181                 if (strwicmp("password", param) == 0) {
1182                         password = val;
1183                 } else if (strwicmp("username", param) == 0) {
1184                         username = val;
1185                 } else if (strwicmp("domain", param) == 0) {
1186                         domain = val;
1187                 } else if (strwicmp("realm", param) == 0) {
1188                         realm = val;
1189                 }
1190
1191                 /*
1192                  * We need to readd '=' in order to let
1193                  * the strlen() work in the last loop
1194                  * that clears the memory.
1195                  */
1196                 *ptr = '=';
1197         }
1198
1199         if (realm != NULL && strlen(realm) != 0) {
1200                 /*
1201                  * only overwrite with a valid string
1202                  */
1203                 cli_credentials_set_realm(cred, realm, obtained);
1204         }
1205
1206         if (domain != NULL && strlen(domain) != 0) {
1207                 /*
1208                  * only overwrite with a valid string
1209                  */
1210                 cli_credentials_set_domain(cred, domain, obtained);
1211         }
1212
1213         if (password != NULL) {
1214                 /*
1215                  * Here we allow "".
1216                  */
1217                 cli_credentials_set_password(cred, password, obtained);
1218         }
1219
1220         if (username != NULL) {
1221                 /*
1222                  * The last "username" line takes preference
1223                  * if the string also contains domain, realm or
1224                  * password.
1225                  */
1226                 cli_credentials_parse_string(cred, username, obtained);
1227         }
1228
1229         for (i = 0; i < numlines; i++) {
1230                 len = strlen(lines[i]);
1231                 memset(lines[i], 0, len);
1232         }
1233         talloc_free(lines);
1234
1235         return true;
1236 }
1237
1238 /**
1239  * Read a named file, and parse it for a password
1240  *
1241  * @param credentials Credentials structure on which to set the password
1242  * @param file a named file to read the password from 
1243  * @param obtained This enum describes how 'specified' this password is
1244  */
1245
1246 _PUBLIC_ bool cli_credentials_parse_password_file(struct cli_credentials *credentials, const char *file, enum credentials_obtained obtained)
1247 {
1248         int fd = open(file, O_RDONLY, 0);
1249         bool ret;
1250
1251         if (fd < 0) {
1252                 fprintf(stderr, "Error opening password file %s: %s\n",
1253                                 file, strerror(errno));
1254                 return false;
1255         }
1256
1257         ret = cli_credentials_parse_password_fd(credentials, fd, obtained);
1258
1259         close(fd);
1260         
1261         return ret;
1262 }
1263
1264
1265 /**
1266  * Read a file descriptor, and parse it for a password (eg from a file or stdin)
1267  *
1268  * @param credentials Credentials structure on which to set the password
1269  * @param fd open file descriptor to read the password from 
1270  * @param obtained This enum describes how 'specified' this password is
1271  */
1272
1273 _PUBLIC_ bool cli_credentials_parse_password_fd(struct cli_credentials *credentials, 
1274                                        int fd, enum credentials_obtained obtained)
1275 {
1276         char *p;
1277         char pass[128];
1278
1279         for(p = pass, *p = '\0'; /* ensure that pass is null-terminated */
1280                 p && p - pass < sizeof(pass);) {
1281                 switch (read(fd, p, 1)) {
1282                 case 1:
1283                         if (*p != '\n' && *p != '\0') {
1284                                 *++p = '\0'; /* advance p, and null-terminate pass */
1285                                 break;
1286                         }
1287
1288                         FALL_THROUGH;
1289                 case 0:
1290                         if (p - pass) {
1291                                 *p = '\0'; /* null-terminate it, just in case... */
1292                                 p = NULL; /* then force the loop condition to become false */
1293                                 break;
1294                         }
1295
1296                         fprintf(stderr,
1297                                 "Error reading password from file descriptor "
1298                                 "%d: empty password\n",
1299                                 fd);
1300                         return false;
1301
1302                 default:
1303                         fprintf(stderr, "Error reading password from file descriptor %d: %s\n",
1304                                         fd, strerror(errno));
1305                         return false;
1306                 }
1307         }
1308
1309         cli_credentials_set_password(credentials, pass, obtained);
1310         return true;
1311 }
1312
1313
1314 /**
1315  * Encrypt a data blob using the session key and the negotiated encryption
1316  * algorithm
1317  *
1318  * @param state Credential state, contains the session key and algorithm
1319  * @param data Data blob containing the data to be encrypted.
1320  *
1321  */
1322 _PUBLIC_ NTSTATUS netlogon_creds_session_encrypt(
1323         struct netlogon_creds_CredentialState *state,
1324         DATA_BLOB data)
1325 {
1326         if (data.data == NULL || data.length == 0) {
1327                 DBG_ERR("Nothing to encrypt "
1328                         "data.data == NULL or data.length == 0");
1329                 return NT_STATUS_INVALID_PARAMETER;
1330         }
1331         /*
1332          * Don't crypt an all-zero password it will give away the
1333          * NETLOGON pipe session key .
1334          */
1335         if (all_zero(data.data, data.length)) {
1336                 DBG_ERR("Supplied data all zeros, could leak session key");
1337                 return NT_STATUS_INVALID_PARAMETER;
1338         }
1339         if (state->negotiate_flags & NETLOGON_NEG_SUPPORTS_AES) {
1340                 netlogon_creds_aes_encrypt(state,
1341                                            data.data,
1342                                            data.length);
1343         } else if (state->negotiate_flags & NETLOGON_NEG_ARCFOUR) {
1344                 netlogon_creds_arcfour_crypt(state,
1345                                              data.data,
1346                                              data.length);
1347         } else {
1348                 DBG_ERR("Unsupported encryption option negotiated");
1349                 return NT_STATUS_NOT_SUPPORTED;
1350         }
1351         return NT_STATUS_OK;
1352 }
1353