2 Unix SMB/CIFS implementation.
3 simple kerberos5/SPNEGO routines
4 Copyright (C) Andrew Tridgell 2001
5 Copyright (C) Jim McDonough <jmcd@us.ibm.com> 2002
6 Copyright (C) Luke Howard 2003
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 3 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, see <http://www.gnu.org/licenses/>.
25 generate a negTokenInit packet given a GUID, a list of supported
26 OIDs (the mechanisms) and a principal name string
28 DATA_BLOB
spnego_gen_negTokenInit(char guid
[16],
30 const char *principal
)
36 memset(&data
, 0, sizeof(data
));
38 asn1_write(&data
, guid
, 16);
39 asn1_push_tag(&data
,ASN1_APPLICATION(0));
40 asn1_write_OID(&data
,OID_SPNEGO
);
41 asn1_push_tag(&data
,ASN1_CONTEXT(0));
42 asn1_push_tag(&data
,ASN1_SEQUENCE(0));
44 asn1_push_tag(&data
,ASN1_CONTEXT(0));
45 asn1_push_tag(&data
,ASN1_SEQUENCE(0));
46 for (i
=0; OIDs
[i
]; i
++) {
47 asn1_write_OID(&data
,OIDs
[i
]);
52 asn1_push_tag(&data
, ASN1_CONTEXT(3));
53 asn1_push_tag(&data
, ASN1_SEQUENCE(0));
54 asn1_push_tag(&data
, ASN1_CONTEXT(0));
55 asn1_write_GeneralString(&data
,principal
);
66 DEBUG(1,("Failed to build negTokenInit at offset %d\n", (int)data
.ofs
));
70 ret
= data_blob(data
.data
, data
.length
);
77 Generate a negTokenInit as used by the client side ... It has a mechType
78 (OID), and a mechToken (a security blob) ...
80 Really, we need to break out the NTLMSSP stuff as well, because it could be
83 DATA_BLOB
gen_negTokenInit(const char *OID
, DATA_BLOB blob
)
88 memset(&data
, 0, sizeof(data
));
90 asn1_push_tag(&data
, ASN1_APPLICATION(0));
91 asn1_write_OID(&data
,OID_SPNEGO
);
92 asn1_push_tag(&data
, ASN1_CONTEXT(0));
93 asn1_push_tag(&data
, ASN1_SEQUENCE(0));
95 asn1_push_tag(&data
, ASN1_CONTEXT(0));
96 asn1_push_tag(&data
, ASN1_SEQUENCE(0));
97 asn1_write_OID(&data
, OID
);
101 asn1_push_tag(&data
, ASN1_CONTEXT(2));
102 asn1_write_OctetString(&data
,blob
.data
,blob
.length
);
110 if (data
.has_error
) {
111 DEBUG(1,("Failed to build negTokenInit at offset %d\n", (int)data
.ofs
));
115 ret
= data_blob(data
.data
, data
.length
);
122 parse a negTokenInit packet giving a GUID, a list of supported
123 OIDs (the mechanisms) and a principal name string
125 bool spnego_parse_negTokenInit(DATA_BLOB blob
,
126 char *OIDs
[ASN1_MAX_OIDS
],
133 asn1_load(&data
, blob
);
135 asn1_start_tag(&data
,ASN1_APPLICATION(0));
136 asn1_check_OID(&data
,OID_SPNEGO
);
137 asn1_start_tag(&data
,ASN1_CONTEXT(0));
138 asn1_start_tag(&data
,ASN1_SEQUENCE(0));
140 asn1_start_tag(&data
,ASN1_CONTEXT(0));
141 asn1_start_tag(&data
,ASN1_SEQUENCE(0));
142 for (i
=0; asn1_tag_remaining(&data
) > 0 && i
< ASN1_MAX_OIDS
-1; i
++) {
143 char *oid_str
= NULL
;
144 asn1_read_OID(&data
,&oid_str
);
152 if (asn1_tag_remaining(&data
) > 0) {
153 asn1_start_tag(&data
, ASN1_CONTEXT(3));
154 asn1_start_tag(&data
, ASN1_SEQUENCE(0));
155 asn1_start_tag(&data
, ASN1_CONTEXT(0));
156 asn1_read_GeneralString(&data
,principal
);
167 ret
= !data
.has_error
;
168 if (data
.has_error
) {
170 SAFE_FREE(*principal
);
171 for(j
= 0; j
< i
&& j
< ASN1_MAX_OIDS
-1; j
++) {
181 generate a negTokenTarg packet given a list of OIDs and a security blob
183 DATA_BLOB
gen_negTokenTarg(const char *OIDs
[], DATA_BLOB blob
)
189 memset(&data
, 0, sizeof(data
));
191 asn1_push_tag(&data
, ASN1_APPLICATION(0));
192 asn1_write_OID(&data
,OID_SPNEGO
);
193 asn1_push_tag(&data
, ASN1_CONTEXT(0));
194 asn1_push_tag(&data
, ASN1_SEQUENCE(0));
196 asn1_push_tag(&data
, ASN1_CONTEXT(0));
197 asn1_push_tag(&data
, ASN1_SEQUENCE(0));
198 for (i
=0; OIDs
[i
]; i
++) {
199 asn1_write_OID(&data
,OIDs
[i
]);
204 asn1_push_tag(&data
, ASN1_CONTEXT(2));
205 asn1_write_OctetString(&data
,blob
.data
,blob
.length
);
213 if (data
.has_error
) {
214 DEBUG(1,("Failed to build negTokenTarg at offset %d\n", (int)data
.ofs
));
218 ret
= data_blob(data
.data
, data
.length
);
225 parse a negTokenTarg packet giving a list of OIDs and a security blob
227 bool parse_negTokenTarg(DATA_BLOB blob
, char *OIDs
[ASN1_MAX_OIDS
], DATA_BLOB
*secblob
)
232 asn1_load(&data
, blob
);
233 asn1_start_tag(&data
, ASN1_APPLICATION(0));
234 asn1_check_OID(&data
,OID_SPNEGO
);
235 asn1_start_tag(&data
, ASN1_CONTEXT(0));
236 asn1_start_tag(&data
, ASN1_SEQUENCE(0));
238 asn1_start_tag(&data
, ASN1_CONTEXT(0));
239 asn1_start_tag(&data
, ASN1_SEQUENCE(0));
240 for (i
=0; asn1_tag_remaining(&data
) > 0 && i
< ASN1_MAX_OIDS
-1; i
++) {
241 char *oid_str
= NULL
;
242 asn1_read_OID(&data
,&oid_str
);
249 /* Skip any optional req_flags that are sent per RFC 4178 */
250 if (asn1_check_tag(&data
, ASN1_CONTEXT(1))) {
253 asn1_start_tag(&data
, ASN1_CONTEXT(1));
254 asn1_start_tag(&data
, ASN1_BITFIELD
);
255 while (asn1_tag_remaining(&data
) > 0)
256 asn1_read_uint8(&data
, &flags
);
261 asn1_start_tag(&data
, ASN1_CONTEXT(2));
262 asn1_read_OctetString(&data
,secblob
);
270 if (data
.has_error
) {
272 data_blob_free(secblob
);
273 for(j
= 0; j
< i
&& j
< ASN1_MAX_OIDS
-1; j
++) {
276 DEBUG(1,("Failed to parse negTokenTarg at offset %d\n", (int)data
.ofs
));
286 generate a krb5 GSS-API wrapper packet given a ticket
288 DATA_BLOB
spnego_gen_krb5_wrap(const DATA_BLOB ticket
, const uint8 tok_id
[2])
293 memset(&data
, 0, sizeof(data
));
295 asn1_push_tag(&data
, ASN1_APPLICATION(0));
296 asn1_write_OID(&data
, OID_KERBEROS5
);
298 asn1_write(&data
, tok_id
, 2);
299 asn1_write(&data
, ticket
.data
, ticket
.length
);
302 if (data
.has_error
) {
303 DEBUG(1,("Failed to build krb5 wrapper at offset %d\n", (int)data
.ofs
));
307 ret
= data_blob(data
.data
, data
.length
);
314 parse a krb5 GSS-API wrapper packet giving a ticket
316 bool spnego_parse_krb5_wrap(DATA_BLOB blob
, DATA_BLOB
*ticket
, uint8 tok_id
[2])
322 asn1_load(&data
, blob
);
323 asn1_start_tag(&data
, ASN1_APPLICATION(0));
324 asn1_check_OID(&data
, OID_KERBEROS5
);
326 data_remaining
= asn1_tag_remaining(&data
);
328 if (data_remaining
< 3) {
329 data
.has_error
= True
;
331 asn1_read(&data
, tok_id
, 2);
333 *ticket
= data_blob(NULL
, data_remaining
);
334 asn1_read(&data
, ticket
->data
, ticket
->length
);
339 ret
= !data
.has_error
;
341 if (data
.has_error
) {
342 data_blob_free(ticket
);
352 generate a SPNEGO negTokenTarg packet, ready for a EXTENDED_SECURITY
353 kerberos session setup
355 int spnego_gen_negTokenTarg(const char *principal
, int time_offset
,
357 DATA_BLOB
*session_key_krb5
, uint32 extra_ap_opts
,
361 DATA_BLOB tkt
, tkt_wrapped
;
362 const char *krb_mechs
[] = {OID_KERBEROS5_OLD
, OID_KERBEROS5
, OID_NTLMSSP
, NULL
};
364 /* get a kerberos ticket for the service and extract the session key */
365 retval
= cli_krb5_get_ticket(principal
, time_offset
,
366 &tkt
, session_key_krb5
, extra_ap_opts
, NULL
,
372 /* wrap that up in a nice GSS-API wrapping */
373 tkt_wrapped
= spnego_gen_krb5_wrap(tkt
, TOK_ID_KRB_AP_REQ
);
375 /* and wrap that in a shiny SPNEGO wrapper */
376 *targ
= gen_negTokenTarg(krb_mechs
, tkt_wrapped
);
378 data_blob_free(&tkt_wrapped
);
379 data_blob_free(&tkt
);
386 parse a spnego NTLMSSP challenge packet giving two security blobs
388 bool spnego_parse_challenge(const DATA_BLOB blob
,
389 DATA_BLOB
*chal1
, DATA_BLOB
*chal2
)
397 asn1_load(&data
, blob
);
398 asn1_start_tag(&data
,ASN1_CONTEXT(1));
399 asn1_start_tag(&data
,ASN1_SEQUENCE(0));
401 asn1_start_tag(&data
,ASN1_CONTEXT(0));
402 asn1_check_enumerated(&data
,1);
405 asn1_start_tag(&data
,ASN1_CONTEXT(1));
406 asn1_check_OID(&data
, OID_NTLMSSP
);
409 asn1_start_tag(&data
,ASN1_CONTEXT(2));
410 asn1_read_OctetString(&data
, chal1
);
413 /* the second challenge is optional (XP doesn't send it) */
414 if (asn1_tag_remaining(&data
)) {
415 asn1_start_tag(&data
,ASN1_CONTEXT(3));
416 asn1_read_OctetString(&data
, chal2
);
423 ret
= !data
.has_error
;
425 if (data
.has_error
) {
426 data_blob_free(chal1
);
427 data_blob_free(chal2
);
436 generate a SPNEGO auth packet. This will contain the encrypted passwords
438 DATA_BLOB
spnego_gen_auth(DATA_BLOB blob
)
443 memset(&data
, 0, sizeof(data
));
445 asn1_push_tag(&data
, ASN1_CONTEXT(1));
446 asn1_push_tag(&data
, ASN1_SEQUENCE(0));
447 asn1_push_tag(&data
, ASN1_CONTEXT(2));
448 asn1_write_OctetString(&data
,blob
.data
,blob
.length
);
453 ret
= data_blob(data
.data
, data
.length
);
461 parse a SPNEGO auth packet. This contains the encrypted passwords
463 bool spnego_parse_auth(DATA_BLOB blob
, DATA_BLOB
*auth
)
467 asn1_load(&data
, blob
);
468 asn1_start_tag(&data
, ASN1_CONTEXT(1));
469 asn1_start_tag(&data
, ASN1_SEQUENCE(0));
470 asn1_start_tag(&data
, ASN1_CONTEXT(2));
471 asn1_read_OctetString(&data
,auth
);
476 if (data
.has_error
) {
477 DEBUG(3,("spnego_parse_auth failed at %d\n", (int)data
.ofs
));
478 data_blob_free(auth
);
488 generate a minimal SPNEGO response packet. Doesn't contain much.
490 DATA_BLOB
spnego_gen_auth_response(DATA_BLOB
*reply
, NTSTATUS nt_status
,
497 if (NT_STATUS_IS_OK(nt_status
)) {
498 negResult
= SPNEGO_NEG_RESULT_ACCEPT
;
499 } else if (NT_STATUS_EQUAL(nt_status
, NT_STATUS_MORE_PROCESSING_REQUIRED
)) {
500 negResult
= SPNEGO_NEG_RESULT_INCOMPLETE
;
502 negResult
= SPNEGO_NEG_RESULT_REJECT
;
507 asn1_push_tag(&data
, ASN1_CONTEXT(1));
508 asn1_push_tag(&data
, ASN1_SEQUENCE(0));
509 asn1_push_tag(&data
, ASN1_CONTEXT(0));
510 asn1_write_enumerated(&data
, negResult
);
514 asn1_push_tag(&data
,ASN1_CONTEXT(1));
515 asn1_write_OID(&data
, mechOID
);
519 if (reply
&& reply
->data
!= NULL
) {
520 asn1_push_tag(&data
,ASN1_CONTEXT(2));
521 asn1_write_OctetString(&data
, reply
->data
, reply
->length
);
528 ret
= data_blob(data
.data
, data
.length
);
534 parse a SPNEGO auth packet. This contains the encrypted passwords
536 bool spnego_parse_auth_response(DATA_BLOB blob
, NTSTATUS nt_status
,
543 if (NT_STATUS_IS_OK(nt_status
)) {
544 negResult
= SPNEGO_NEG_RESULT_ACCEPT
;
545 } else if (NT_STATUS_EQUAL(nt_status
, NT_STATUS_MORE_PROCESSING_REQUIRED
)) {
546 negResult
= SPNEGO_NEG_RESULT_INCOMPLETE
;
548 negResult
= SPNEGO_NEG_RESULT_REJECT
;
551 asn1_load(&data
, blob
);
552 asn1_start_tag(&data
, ASN1_CONTEXT(1));
553 asn1_start_tag(&data
, ASN1_SEQUENCE(0));
554 asn1_start_tag(&data
, ASN1_CONTEXT(0));
555 asn1_check_enumerated(&data
, negResult
);
558 *auth
= data_blob_null
;
560 if (asn1_tag_remaining(&data
)) {
561 asn1_start_tag(&data
,ASN1_CONTEXT(1));
562 asn1_check_OID(&data
, mechOID
);
565 if (asn1_tag_remaining(&data
)) {
566 asn1_start_tag(&data
,ASN1_CONTEXT(2));
567 asn1_read_OctetString(&data
, auth
);
570 } else if (negResult
== SPNEGO_NEG_RESULT_INCOMPLETE
) {
574 /* Binding against Win2K DC returns a duplicate of the responseToken in
575 * the optional mechListMIC field. This is a bug in Win2K. We ignore
576 * this field if it exists. Win2K8 may return a proper mechListMIC at
577 * which point we need to implement the integrity checking. */
578 if (asn1_tag_remaining(&data
)) {
579 DATA_BLOB mechList
= data_blob_null
;
580 asn1_start_tag(&data
, ASN1_CONTEXT(3));
581 asn1_read_OctetString(&data
, &mechList
);
583 data_blob_free(&mechList
);
584 DEBUG(5,("spnego_parse_auth_response received mechListMIC, "
591 if (data
.has_error
) {
592 DEBUG(3,("spnego_parse_auth_response failed at %d\n", (int)data
.ofs
));
594 data_blob_free(auth
);