2 Unix SMB/CIFS implementation.
4 Copyright (C) Andrew Tridgell 2001
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 perform a LDAP/SASL/SPNEGO/NTLMSSP bind (just how many layers can
27 we fit on one socket??)
29 static ADS_STATUS
ads_sasl_spnego_ntlmssp_bind(ADS_STRUCT
*ads
)
31 DATA_BLOB msg1
= data_blob(NULL
, 0);
32 DATA_BLOB blob
= data_blob(NULL
, 0);
33 DATA_BLOB blob_in
= data_blob(NULL
, 0);
34 DATA_BLOB blob_out
= data_blob(NULL
, 0);
35 struct berval cred
, *scred
= NULL
;
40 struct ntlmssp_state
*ntlmssp_state
;
42 if (!NT_STATUS_IS_OK(nt_status
= ntlmssp_client_start(&ntlmssp_state
))) {
43 return ADS_ERROR_NT(nt_status
);
45 ntlmssp_state
->neg_flags
&= ~NTLMSSP_NEGOTIATE_SIGN
;
47 if (!NT_STATUS_IS_OK(nt_status
= ntlmssp_set_username(ntlmssp_state
, ads
->auth
.user_name
))) {
48 return ADS_ERROR_NT(nt_status
);
50 if (!NT_STATUS_IS_OK(nt_status
= ntlmssp_set_domain(ntlmssp_state
, ads
->auth
.realm
))) {
51 return ADS_ERROR_NT(nt_status
);
53 if (!NT_STATUS_IS_OK(nt_status
= ntlmssp_set_password(ntlmssp_state
, ads
->auth
.password
))) {
54 return ADS_ERROR_NT(nt_status
);
57 blob_in
= data_blob(NULL
, 0);
60 nt_status
= ntlmssp_update(ntlmssp_state
,
62 data_blob_free(&blob_in
);
63 if ((NT_STATUS_EQUAL(nt_status
, NT_STATUS_MORE_PROCESSING_REQUIRED
)
64 || NT_STATUS_IS_OK(nt_status
))
67 /* and wrap it in a SPNEGO wrapper */
68 msg1
= gen_negTokenInit(OID_NTLMSSP
, blob_out
);
70 /* wrap it in SPNEGO */
71 msg1
= spnego_gen_auth(blob_out
);
74 data_blob_free(&blob_out
);
76 cred
.bv_val
= (char *)msg1
.data
;
77 cred
.bv_len
= msg1
.length
;
79 rc
= ldap_sasl_bind_s(ads
->ld
, NULL
, "GSS-SPNEGO", &cred
, NULL
, NULL
, &scred
);
80 data_blob_free(&msg1
);
81 if ((rc
!= LDAP_SASL_BIND_IN_PROGRESS
) && (rc
!= 0)) {
86 ntlmssp_end(&ntlmssp_state
);
90 blob
= data_blob(scred
->bv_val
, scred
->bv_len
);
93 blob
= data_blob(NULL
, 0);
98 ntlmssp_end(&ntlmssp_state
);
99 data_blob_free(&blob_out
);
100 return ADS_ERROR_NT(nt_status
);
104 (rc
== LDAP_SASL_BIND_IN_PROGRESS
)) {
105 DATA_BLOB tmp_blob
= data_blob(NULL
, 0);
106 /* the server might give us back two challenges */
107 if (!spnego_parse_challenge(blob
, &blob_in
,
110 ntlmssp_end(&ntlmssp_state
);
111 data_blob_free(&blob
);
112 DEBUG(3,("Failed to parse challenges\n"));
113 return ADS_ERROR_NT(NT_STATUS_INVALID_PARAMETER
);
115 data_blob_free(&tmp_blob
);
116 } else if (rc
== LDAP_SASL_BIND_IN_PROGRESS
) {
117 if (!spnego_parse_auth_response(blob
, nt_status
,
120 ntlmssp_end(&ntlmssp_state
);
121 data_blob_free(&blob
);
122 DEBUG(3,("Failed to parse auth response\n"));
123 return ADS_ERROR_NT(NT_STATUS_INVALID_PARAMETER
);
126 data_blob_free(&blob
);
127 data_blob_free(&blob_out
);
129 } while (rc
== LDAP_SASL_BIND_IN_PROGRESS
&& !NT_STATUS_IS_OK(nt_status
));
131 /* we have a reference conter on ntlmssp_state, if we are signing
132 then the state will be kept by the signing engine */
134 ntlmssp_end(&ntlmssp_state
);
136 return ADS_ERROR(rc
);
141 perform a LDAP/SASL/SPNEGO/KRB5 bind
143 static ADS_STATUS
ads_sasl_spnego_krb5_bind(ADS_STRUCT
*ads
, const char *principal
)
145 DATA_BLOB blob
= data_blob(NULL
, 0);
146 struct berval cred
, *scred
= NULL
;
147 DATA_BLOB session_key
= data_blob(NULL
, 0);
150 rc
= spnego_gen_negTokenTarg(principal
, ads
->auth
.time_offset
, &blob
, &session_key
, 0);
153 return ADS_ERROR_KRB5(rc
);
156 /* now send the auth packet and we should be done */
157 cred
.bv_val
= (char *)blob
.data
;
158 cred
.bv_len
= blob
.length
;
160 rc
= ldap_sasl_bind_s(ads
->ld
, NULL
, "GSS-SPNEGO", &cred
, NULL
, NULL
, &scred
);
162 data_blob_free(&blob
);
163 data_blob_free(&session_key
);
167 return ADS_ERROR(rc
);
172 this performs a SASL/SPNEGO bind
174 static ADS_STATUS
ads_sasl_spnego_bind(ADS_STRUCT
*ads
)
176 struct berval
*scred
=NULL
;
180 char *principal
= NULL
;
181 char *OIDs
[ASN1_MAX_OIDS
];
183 BOOL got_kerberos_mechanism
= False
;
186 rc
= ldap_sasl_bind_s(ads
->ld
, NULL
, "GSS-SPNEGO", NULL
, NULL
, NULL
, &scred
);
188 if (rc
!= LDAP_SASL_BIND_IN_PROGRESS
) {
189 status
= ADS_ERROR(rc
);
193 blob
= data_blob(scred
->bv_val
, scred
->bv_len
);
198 file_save("sasl_spnego.dat", blob
.data
, blob
.length
);
201 /* the server sent us the first part of the SPNEGO exchange in the negprot
203 if (!spnego_parse_negTokenInit(blob
, OIDs
, &principal
)) {
204 data_blob_free(&blob
);
205 status
= ADS_ERROR(LDAP_OPERATIONS_ERROR
);
208 data_blob_free(&blob
);
210 /* make sure the server understands kerberos */
211 for (i
=0;OIDs
[i
];i
++) {
212 DEBUG(3,("ads_sasl_spnego_bind: got OID=%s\n", OIDs
[i
]));
214 if (strcmp(OIDs
[i
], OID_KERBEROS5_OLD
) == 0 ||
215 strcmp(OIDs
[i
], OID_KERBEROS5
) == 0) {
216 got_kerberos_mechanism
= True
;
221 DEBUG(3,("ads_sasl_spnego_bind: got server principal name =%s\n", principal
));
224 if (!(ads
->auth
.flags
& ADS_AUTH_DISABLE_KERBEROS
) &&
225 got_kerberos_mechanism
) {
226 status
= ads_sasl_spnego_krb5_bind(ads
, principal
);
227 if (ADS_ERR_OK(status
)) {
228 SAFE_FREE(principal
);
232 status
= ADS_ERROR_KRB5(ads_kinit_password(ads
));
234 if (ADS_ERR_OK(status
)) {
235 status
= ads_sasl_spnego_krb5_bind(ads
, principal
);
238 /* only fallback to NTLMSSP if allowed */
239 if (ADS_ERR_OK(status
) ||
240 !(ads
->auth
.flags
& ADS_AUTH_ALLOW_NTLMSSP
)) {
241 SAFE_FREE(principal
);
247 SAFE_FREE(principal
);
249 /* lets do NTLMSSP ... this has the big advantage that we don't need
250 to sync clocks, and we don't rely on special versions of the krb5
251 library for HMAC_MD4 encryption */
252 return ads_sasl_spnego_ntlmssp_bind(ads
);
259 #define MAX_GSS_PASSES 3
261 /* this performs a SASL/gssapi bind
262 we avoid using cyrus-sasl to make Samba more robust. cyrus-sasl
263 is very dependent on correctly configured DNS whereas
264 this routine is much less fragile
265 see RFC2078 and RFC2222 for details
267 static ADS_STATUS
ads_sasl_gssapi_bind(ADS_STRUCT
*ads
)
270 gss_name_t serv_name
;
271 gss_buffer_desc input_name
;
272 gss_ctx_id_t context_handle
;
273 gss_OID mech_type
= GSS_C_NULL_OID
;
274 gss_buffer_desc output_token
, input_token
;
275 uint32 ret_flags
, conf_state
;
277 struct berval
*scred
= NULL
;
281 uint32 max_msg_size
= 0;
284 krb5_principal principal
;
285 krb5_context ctx
= NULL
;
286 krb5_enctype enc_types
[] = {
287 #ifdef ENCTYPE_ARCFOUR_HMAC
288 ENCTYPE_ARCFOUR_HMAC
,
292 gss_OID_desc nt_principal
=
293 {10, CONST_DISCARD(char *, "\052\206\110\206\367\022\001\002\002\002")};
295 /* we need to fetch a service ticket as the ldap user in the
296 servers realm, regardless of our realm */
297 asprintf(&sname
, "ldap/%s@%s", ads
->config
.ldap_server_name
, ads
->config
.realm
);
299 initialize_krb5_error_table();
300 status
= ADS_ERROR_KRB5(krb5_init_context(&ctx
));
301 if (!ADS_ERR_OK(status
)) {
304 status
= ADS_ERROR_KRB5(krb5_set_default_tgs_ktypes(ctx
, enc_types
));
305 if (!ADS_ERR_OK(status
)) {
308 status
= ADS_ERROR_KRB5(smb_krb5_parse_name(ctx
, sname
, &principal
));
309 if (!ADS_ERR_OK(status
)) {
314 krb5_free_context(ctx
);
316 input_name
.value
= &principal
;
317 input_name
.length
= sizeof(principal
);
319 gss_rc
= gss_import_name(&minor_status
, &input_name
, &nt_principal
, &serv_name
);
321 return ADS_ERROR_GSS(gss_rc
, minor_status
);
324 context_handle
= GSS_C_NO_CONTEXT
;
326 input_token
.value
= NULL
;
327 input_token
.length
= 0;
329 for (i
=0; i
< MAX_GSS_PASSES
; i
++) {
330 gss_rc
= gss_init_sec_context(&minor_status
,
335 GSS_C_MUTUAL_FLAG
| GSS_C_REPLAY_FLAG
,
344 if (input_token
.value
) {
345 gss_release_buffer(&minor_status
, &input_token
);
348 if (gss_rc
&& gss_rc
!= GSS_S_CONTINUE_NEEDED
) {
349 status
= ADS_ERROR_GSS(gss_rc
, minor_status
);
353 cred
.bv_val
= (char *)output_token
.value
;
354 cred
.bv_len
= output_token
.length
;
356 rc
= ldap_sasl_bind_s(ads
->ld
, NULL
, "GSSAPI", &cred
, NULL
, NULL
,
358 if (rc
!= LDAP_SASL_BIND_IN_PROGRESS
) {
359 status
= ADS_ERROR(rc
);
363 if (output_token
.value
) {
364 gss_release_buffer(&minor_status
, &output_token
);
368 input_token
.value
= scred
->bv_val
;
369 input_token
.length
= scred
->bv_len
;
371 input_token
.value
= NULL
;
372 input_token
.length
= 0;
375 if (gss_rc
== 0) break;
378 gss_release_name(&minor_status
, &serv_name
);
380 gss_rc
= gss_unwrap(&minor_status
,context_handle
,&input_token
,&output_token
,
381 (int *)&conf_state
,NULL
);
383 status
= ADS_ERROR_GSS(gss_rc
, minor_status
);
387 gss_release_buffer(&minor_status
, &input_token
);
389 p
= (uint8
*)output_token
.value
;
392 file_save("sasl_gssapi.dat", output_token
.value
, output_token
.length
);
396 max_msg_size
= (p
[1]<<16) | (p
[2]<<8) | p
[3];
399 gss_release_buffer(&minor_status
, &output_token
);
401 output_token
.value
= SMB_MALLOC(strlen(ads
->config
.bind_path
) + 8);
402 p
= (uint8
*)output_token
.value
;
404 *p
++ = 1; /* no sign & seal selection */
405 /* choose the same size as the server gave us */
406 *p
++ = max_msg_size
>>16;
407 *p
++ = max_msg_size
>>8;
409 snprintf((char *)p
, strlen(ads
->config
.bind_path
)+4, "dn:%s", ads
->config
.bind_path
);
410 p
+= strlen((const char *)p
);
412 output_token
.length
= PTR_DIFF(p
, output_token
.value
);
414 gss_rc
= gss_wrap(&minor_status
, context_handle
,0,GSS_C_QOP_DEFAULT
,
415 &output_token
, (int *)&conf_state
,
418 status
= ADS_ERROR_GSS(gss_rc
, minor_status
);
422 free(output_token
.value
);
424 cred
.bv_val
= (char *)input_token
.value
;
425 cred
.bv_len
= input_token
.length
;
427 rc
= ldap_sasl_bind_s(ads
->ld
, NULL
, "GSSAPI", &cred
, NULL
, NULL
,
429 status
= ADS_ERROR(rc
);
431 gss_release_buffer(&minor_status
, &input_token
);
438 #endif /* HAVE_GGSAPI */
440 /* mapping between SASL mechanisms and functions */
443 ADS_STATUS (*fn
)(ADS_STRUCT
*);
444 } sasl_mechanisms
[] = {
445 {"GSS-SPNEGO", ads_sasl_spnego_bind
},
447 {"GSSAPI", ads_sasl_gssapi_bind
}, /* doesn't work with .NET RC1. No idea why */
452 ADS_STATUS
ads_sasl_bind(ADS_STRUCT
*ads
)
454 const char *attrs
[] = {"supportedSASLMechanisms", NULL
};
460 /* get a list of supported SASL mechanisms */
461 status
= ads_do_search(ads
, "", LDAP_SCOPE_BASE
, "(objectclass=*)", attrs
, &res
);
462 if (!ADS_ERR_OK(status
)) return status
;
464 values
= ldap_get_values(ads
->ld
, res
, "supportedSASLMechanisms");
466 /* try our supported mechanisms in order */
467 for (i
=0;sasl_mechanisms
[i
].name
;i
++) {
468 /* see if the server supports it */
469 for (j
=0;values
&& values
[j
];j
++) {
470 if (strcmp(values
[j
], sasl_mechanisms
[i
].name
) == 0) {
471 DEBUG(4,("Found SASL mechanism %s\n", values
[j
]));
472 status
= sasl_mechanisms
[i
].fn(ads
);
473 ldap_value_free(values
);
480 ldap_value_free(values
);
482 return ADS_ERROR(LDAP_AUTH_METHOD_NOT_SUPPORTED
);
485 #endif /* HAVE_LDAP */