r13584: Another try at SPNEGO stuff. I need to write a better testsuite for this.
authorAndrew Bartlett <abartlet@samba.org>
Tue, 21 Feb 2006 00:17:52 +0000 (00:17 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 18:51:58 +0000 (13:51 -0500)
This tries to ensure that when we are a client, we cope with mechs
(like GSSAPI) that only abort (unknown server) at first runtime.

Andrew Bartlett
(This used to be commit cb5d18c6190fa1809478aeb60e352cb93c4214f6)

source4/auth/gensec/spnego.c

index 6f38576a3f0c7e0975d4c1b940c4488f83de82eb..32b4ff96be668ee13fdae8119b6e90e710d32b97 100644 (file)
@@ -358,6 +358,10 @@ static NTSTATUS gensec_spnego_parse_negTokenInit(struct gensec_security *gensec_
                }
        }
        
+       /* Having tried any optomisitc token from the client (if we
+        * were the server), if we didn't get anywhere, walk our list
+        * in our preference order */
+       
        if (!spnego_state->sub_sec_security) {
                for (i=0; all_sec && all_sec[i].op; i++) {
                        nt_status = gensec_subcontext_start(spnego_state,
@@ -382,6 +386,25 @@ static NTSTATUS gensec_spnego_parse_negTokenInit(struct gensec_security *gensec_
                                                  out_mem_ctx, 
                                                  null_data_blob, 
                                                  unwrapped_out);
+
+                       /* it is likely that a NULL input token will
+                        * not be liked by most server mechs, but if
+                        * we are in the client, we want the first
+                        * update packet to be able to abort the use
+                        * of this mech */
+                       if (spnego_state->state_position != SPNEGO_SERVER_START) {
+                               if (NT_STATUS_EQUAL(nt_status, NT_STATUS_INVALID_PARAMETER) || 
+                                   NT_STATUS_EQUAL(nt_status, NT_STATUS_CANT_ACCESS_DOMAIN_INFO)) {
+                                       /* Pretend we never started it (lets the first run find some incompatible demand) */
+                                       
+                                       DEBUG(1, ("SPNEGO(%s) NEG_TOKEN_INIT failed to parse: %s\n", 
+                                                 spnego_state->sub_sec_security->ops->name, nt_errstr(nt_status)));
+                                       talloc_free(spnego_state->sub_sec_security);
+                                       spnego_state->sub_sec_security = NULL;
+                                       continue;
+                               }
+                       }
+
                        break;
                }
        }