2004-06-19 12:15:41 +04:00
/*
Unix SMB / CIFS implementation .
RFC2478 Compliant SPNEGO implementation
2004-06-20 04:58:09 +04:00
Copyright ( C ) Jim McDonough < jmcd @ us . ibm . com > 2003
Copyright ( C ) Andrew Bartlett < abartlet @ samba . org > 2004
2004-06-19 12:15:41 +04:00
This program is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation ; either version 2 of the License , or
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
along with this program ; if not , write to the Free Software
Foundation , Inc . , 675 Mass Ave , Cambridge , MA 0213 9 , USA .
*/
# include "includes.h"
2004-11-02 05:57:18 +03:00
# include "auth/auth.h"
2004-06-19 12:15:41 +04:00
r1294: A nice, large, commit...
This implements gensec for Samba's server side, and brings gensec up
to the standards of a full subsystem.
This means that use of the subsystem is by gensec_* functions, not
function pointers in structures (this is internal). This causes
changes in all the existing gensec users.
Our RPC server no longer contains it's own generalised security
scheme, and now calls gensec directly.
Gensec has also taken over the role of auth/auth_ntlmssp.c
An important part of gensec, is the output of the 'session_info'
struct. This is now reference counted, so that we can correctly free
it when a pipe is closed, no matter if it was inherited, or created by
per-pipe authentication.
The schannel code is reworked, to be in the same file for client and
server.
ntlm_auth is reworked to use gensec.
The major problem with this code is the way it relies on subsystem
auto-initialisation. The primary reason for this commit now.is to
allow these problems to be looked at, and fixed.
There are problems with the new code:
- I've tested it with smbtorture, but currently don't have VMware and
valgrind working (this I'll fix soon).
- The SPNEGO code is client-only at this point.
- We still do not do kerberos.
Andrew Bartlett
(This used to be commit 07fd885fd488fd1051eacc905a2d4962f8a018ec)
2004-06-29 13:40:10 +04:00
enum spnego_state_position {
SPNEGO_SERVER_START ,
2004-07-06 07:02:33 +04:00
SPNEGO_CLIENT_START ,
2004-07-06 21:53:44 +04:00
SPNEGO_SERVER_TARG ,
SPNEGO_CLIENT_TARG ,
r1294: A nice, large, commit...
This implements gensec for Samba's server side, and brings gensec up
to the standards of a full subsystem.
This means that use of the subsystem is by gensec_* functions, not
function pointers in structures (this is internal). This causes
changes in all the existing gensec users.
Our RPC server no longer contains it's own generalised security
scheme, and now calls gensec directly.
Gensec has also taken over the role of auth/auth_ntlmssp.c
An important part of gensec, is the output of the 'session_info'
struct. This is now reference counted, so that we can correctly free
it when a pipe is closed, no matter if it was inherited, or created by
per-pipe authentication.
The schannel code is reworked, to be in the same file for client and
server.
ntlm_auth is reworked to use gensec.
The major problem with this code is the way it relies on subsystem
auto-initialisation. The primary reason for this commit now.is to
allow these problems to be looked at, and fixed.
There are problems with the new code:
- I've tested it with smbtorture, but currently don't have VMware and
valgrind working (this I'll fix soon).
- The SPNEGO code is client-only at this point.
- We still do not do kerberos.
Andrew Bartlett
(This used to be commit 07fd885fd488fd1051eacc905a2d4962f8a018ec)
2004-06-29 13:40:10 +04:00
SPNEGO_FALLBACK ,
SPNEGO_DONE
} ;
struct spnego_state {
uint_t ref_count ;
enum spnego_message_type expected_packet ;
2004-07-07 03:20:23 +04:00
enum spnego_state_position state_position ;
r1294: A nice, large, commit...
This implements gensec for Samba's server side, and brings gensec up
to the standards of a full subsystem.
This means that use of the subsystem is by gensec_* functions, not
function pointers in structures (this is internal). This causes
changes in all the existing gensec users.
Our RPC server no longer contains it's own generalised security
scheme, and now calls gensec directly.
Gensec has also taken over the role of auth/auth_ntlmssp.c
An important part of gensec, is the output of the 'session_info'
struct. This is now reference counted, so that we can correctly free
it when a pipe is closed, no matter if it was inherited, or created by
per-pipe authentication.
The schannel code is reworked, to be in the same file for client and
server.
ntlm_auth is reworked to use gensec.
The major problem with this code is the way it relies on subsystem
auto-initialisation. The primary reason for this commit now.is to
allow these problems to be looked at, and fixed.
There are problems with the new code:
- I've tested it with smbtorture, but currently don't have VMware and
valgrind working (this I'll fix soon).
- The SPNEGO code is client-only at this point.
- We still do not do kerberos.
Andrew Bartlett
(This used to be commit 07fd885fd488fd1051eacc905a2d4962f8a018ec)
2004-06-29 13:40:10 +04:00
struct gensec_security * sub_sec_security ;
2005-01-01 03:19:08 +03:00
BOOL no_response_expected ;
2005-05-16 03:42:11 +04:00
const char * neg_oid ;
r1294: A nice, large, commit...
This implements gensec for Samba's server side, and brings gensec up
to the standards of a full subsystem.
This means that use of the subsystem is by gensec_* functions, not
function pointers in structures (this is internal). This causes
changes in all the existing gensec users.
Our RPC server no longer contains it's own generalised security
scheme, and now calls gensec directly.
Gensec has also taken over the role of auth/auth_ntlmssp.c
An important part of gensec, is the output of the 'session_info'
struct. This is now reference counted, so that we can correctly free
it when a pipe is closed, no matter if it was inherited, or created by
per-pipe authentication.
The schannel code is reworked, to be in the same file for client and
server.
ntlm_auth is reworked to use gensec.
The major problem with this code is the way it relies on subsystem
auto-initialisation. The primary reason for this commit now.is to
allow these problems to be looked at, and fixed.
There are problems with the new code:
- I've tested it with smbtorture, but currently don't have VMware and
valgrind working (this I'll fix soon).
- The SPNEGO code is client-only at this point.
- We still do not do kerberos.
Andrew Bartlett
(This used to be commit 07fd885fd488fd1051eacc905a2d4962f8a018ec)
2004-06-29 13:40:10 +04:00
} ;
2004-12-24 12:54:23 +03:00
r1294: A nice, large, commit...
This implements gensec for Samba's server side, and brings gensec up
to the standards of a full subsystem.
This means that use of the subsystem is by gensec_* functions, not
function pointers in structures (this is internal). This causes
changes in all the existing gensec users.
Our RPC server no longer contains it's own generalised security
scheme, and now calls gensec directly.
Gensec has also taken over the role of auth/auth_ntlmssp.c
An important part of gensec, is the output of the 'session_info'
struct. This is now reference counted, so that we can correctly free
it when a pipe is closed, no matter if it was inherited, or created by
per-pipe authentication.
The schannel code is reworked, to be in the same file for client and
server.
ntlm_auth is reworked to use gensec.
The major problem with this code is the way it relies on subsystem
auto-initialisation. The primary reason for this commit now.is to
allow these problems to be looked at, and fixed.
There are problems with the new code:
- I've tested it with smbtorture, but currently don't have VMware and
valgrind working (this I'll fix soon).
- The SPNEGO code is client-only at this point.
- We still do not do kerberos.
Andrew Bartlett
(This used to be commit 07fd885fd488fd1051eacc905a2d4962f8a018ec)
2004-06-29 13:40:10 +04:00
static NTSTATUS gensec_spnego_client_start ( struct gensec_security * gensec_security )
2004-06-19 12:15:41 +04:00
{
2004-06-20 04:58:09 +04:00
struct spnego_state * spnego_state ;
2004-09-26 06:16:25 +04:00
2005-01-27 10:08:20 +03:00
spnego_state = talloc ( gensec_security , struct spnego_state ) ;
2004-06-20 04:58:09 +04:00
if ( ! spnego_state ) {
return NT_STATUS_NO_MEMORY ;
2004-06-19 12:15:41 +04:00
}
2004-06-20 04:58:09 +04:00
spnego_state - > expected_packet = SPNEGO_NEG_TOKEN_INIT ;
2004-07-06 07:02:33 +04:00
spnego_state - > state_position = SPNEGO_CLIENT_START ;
r1294: A nice, large, commit...
This implements gensec for Samba's server side, and brings gensec up
to the standards of a full subsystem.
This means that use of the subsystem is by gensec_* functions, not
function pointers in structures (this is internal). This causes
changes in all the existing gensec users.
Our RPC server no longer contains it's own generalised security
scheme, and now calls gensec directly.
Gensec has also taken over the role of auth/auth_ntlmssp.c
An important part of gensec, is the output of the 'session_info'
struct. This is now reference counted, so that we can correctly free
it when a pipe is closed, no matter if it was inherited, or created by
per-pipe authentication.
The schannel code is reworked, to be in the same file for client and
server.
ntlm_auth is reworked to use gensec.
The major problem with this code is the way it relies on subsystem
auto-initialisation. The primary reason for this commit now.is to
allow these problems to be looked at, and fixed.
There are problems with the new code:
- I've tested it with smbtorture, but currently don't have VMware and
valgrind working (this I'll fix soon).
- The SPNEGO code is client-only at this point.
- We still do not do kerberos.
Andrew Bartlett
(This used to be commit 07fd885fd488fd1051eacc905a2d4962f8a018ec)
2004-06-29 13:40:10 +04:00
spnego_state - > sub_sec_security = NULL ;
2005-01-01 03:19:08 +03:00
spnego_state - > no_response_expected = False ;
2004-06-19 12:15:41 +04:00
2004-06-20 04:58:09 +04:00
gensec_security - > private_data = spnego_state ;
return NT_STATUS_OK ;
2004-06-19 12:15:41 +04:00
}
2004-08-11 22:09:40 +04:00
static NTSTATUS gensec_spnego_server_start ( struct gensec_security * gensec_security )
{
struct spnego_state * spnego_state ;
2004-09-26 06:16:25 +04:00
2005-01-27 10:08:20 +03:00
spnego_state = talloc ( gensec_security , struct spnego_state ) ;
2004-08-11 22:09:40 +04:00
if ( ! spnego_state ) {
return NT_STATUS_NO_MEMORY ;
}
spnego_state - > expected_packet = SPNEGO_NEG_TOKEN_INIT ;
spnego_state - > state_position = SPNEGO_SERVER_START ;
spnego_state - > sub_sec_security = NULL ;
2005-01-01 03:19:08 +03:00
spnego_state - > no_response_expected = False ;
2004-08-11 22:09:40 +04:00
gensec_security - > private_data = spnego_state ;
return NT_STATUS_OK ;
}
2004-06-20 04:58:09 +04:00
/*
wrappers for the spnego_ * ( ) functions
*/
r1294: A nice, large, commit...
This implements gensec for Samba's server side, and brings gensec up
to the standards of a full subsystem.
This means that use of the subsystem is by gensec_* functions, not
function pointers in structures (this is internal). This causes
changes in all the existing gensec users.
Our RPC server no longer contains it's own generalised security
scheme, and now calls gensec directly.
Gensec has also taken over the role of auth/auth_ntlmssp.c
An important part of gensec, is the output of the 'session_info'
struct. This is now reference counted, so that we can correctly free
it when a pipe is closed, no matter if it was inherited, or created by
per-pipe authentication.
The schannel code is reworked, to be in the same file for client and
server.
ntlm_auth is reworked to use gensec.
The major problem with this code is the way it relies on subsystem
auto-initialisation. The primary reason for this commit now.is to
allow these problems to be looked at, and fixed.
There are problems with the new code:
- I've tested it with smbtorture, but currently don't have VMware and
valgrind working (this I'll fix soon).
- The SPNEGO code is client-only at this point.
- We still do not do kerberos.
Andrew Bartlett
(This used to be commit 07fd885fd488fd1051eacc905a2d4962f8a018ec)
2004-06-29 13:40:10 +04:00
static NTSTATUS gensec_spnego_unseal_packet ( struct gensec_security * gensec_security ,
2004-09-11 19:11:36 +04:00
TALLOC_CTX * mem_ctx ,
uint8_t * data , size_t length ,
const uint8_t * whole_pdu , size_t pdu_length ,
2005-05-04 10:24:53 +04:00
const DATA_BLOB * sig )
2004-06-19 12:15:41 +04:00
{
2004-06-20 04:58:09 +04:00
struct spnego_state * spnego_state = gensec_security - > private_data ;
2004-06-19 12:15:41 +04:00
2004-06-20 04:58:09 +04:00
if ( spnego_state - > state_position ! = SPNEGO_DONE
& & spnego_state - > state_position ! = SPNEGO_FALLBACK ) {
return NT_STATUS_INVALID_PARAMETER ;
2004-06-19 12:15:41 +04:00
}
2004-06-20 04:58:09 +04:00
r1294: A nice, large, commit...
This implements gensec for Samba's server side, and brings gensec up
to the standards of a full subsystem.
This means that use of the subsystem is by gensec_* functions, not
function pointers in structures (this is internal). This causes
changes in all the existing gensec users.
Our RPC server no longer contains it's own generalised security
scheme, and now calls gensec directly.
Gensec has also taken over the role of auth/auth_ntlmssp.c
An important part of gensec, is the output of the 'session_info'
struct. This is now reference counted, so that we can correctly free
it when a pipe is closed, no matter if it was inherited, or created by
per-pipe authentication.
The schannel code is reworked, to be in the same file for client and
server.
ntlm_auth is reworked to use gensec.
The major problem with this code is the way it relies on subsystem
auto-initialisation. The primary reason for this commit now.is to
allow these problems to be looked at, and fixed.
There are problems with the new code:
- I've tested it with smbtorture, but currently don't have VMware and
valgrind working (this I'll fix soon).
- The SPNEGO code is client-only at this point.
- We still do not do kerberos.
Andrew Bartlett
(This used to be commit 07fd885fd488fd1051eacc905a2d4962f8a018ec)
2004-06-29 13:40:10 +04:00
return gensec_unseal_packet ( spnego_state - > sub_sec_security ,
2004-09-11 19:11:36 +04:00
mem_ctx ,
data , length ,
whole_pdu , pdu_length ,
sig ) ;
2004-06-20 04:58:09 +04:00
}
2004-06-19 12:15:41 +04:00
r1294: A nice, large, commit...
This implements gensec for Samba's server side, and brings gensec up
to the standards of a full subsystem.
This means that use of the subsystem is by gensec_* functions, not
function pointers in structures (this is internal). This causes
changes in all the existing gensec users.
Our RPC server no longer contains it's own generalised security
scheme, and now calls gensec directly.
Gensec has also taken over the role of auth/auth_ntlmssp.c
An important part of gensec, is the output of the 'session_info'
struct. This is now reference counted, so that we can correctly free
it when a pipe is closed, no matter if it was inherited, or created by
per-pipe authentication.
The schannel code is reworked, to be in the same file for client and
server.
ntlm_auth is reworked to use gensec.
The major problem with this code is the way it relies on subsystem
auto-initialisation. The primary reason for this commit now.is to
allow these problems to be looked at, and fixed.
There are problems with the new code:
- I've tested it with smbtorture, but currently don't have VMware and
valgrind working (this I'll fix soon).
- The SPNEGO code is client-only at this point.
- We still do not do kerberos.
Andrew Bartlett
(This used to be commit 07fd885fd488fd1051eacc905a2d4962f8a018ec)
2004-06-29 13:40:10 +04:00
static NTSTATUS gensec_spnego_check_packet ( struct gensec_security * gensec_security ,
2004-09-11 19:11:36 +04:00
TALLOC_CTX * mem_ctx ,
const uint8_t * data , size_t length ,
const uint8_t * whole_pdu , size_t pdu_length ,
const DATA_BLOB * sig )
2004-06-20 04:58:09 +04:00
{
struct spnego_state * spnego_state = gensec_security - > private_data ;
2004-06-19 12:15:41 +04:00
2004-06-20 04:58:09 +04:00
if ( spnego_state - > state_position ! = SPNEGO_DONE
& & spnego_state - > state_position ! = SPNEGO_FALLBACK ) {
return NT_STATUS_INVALID_PARAMETER ;
2004-06-19 12:15:41 +04:00
}
2004-06-20 04:58:09 +04:00
r1294: A nice, large, commit...
This implements gensec for Samba's server side, and brings gensec up
to the standards of a full subsystem.
This means that use of the subsystem is by gensec_* functions, not
function pointers in structures (this is internal). This causes
changes in all the existing gensec users.
Our RPC server no longer contains it's own generalised security
scheme, and now calls gensec directly.
Gensec has also taken over the role of auth/auth_ntlmssp.c
An important part of gensec, is the output of the 'session_info'
struct. This is now reference counted, so that we can correctly free
it when a pipe is closed, no matter if it was inherited, or created by
per-pipe authentication.
The schannel code is reworked, to be in the same file for client and
server.
ntlm_auth is reworked to use gensec.
The major problem with this code is the way it relies on subsystem
auto-initialisation. The primary reason for this commit now.is to
allow these problems to be looked at, and fixed.
There are problems with the new code:
- I've tested it with smbtorture, but currently don't have VMware and
valgrind working (this I'll fix soon).
- The SPNEGO code is client-only at this point.
- We still do not do kerberos.
Andrew Bartlett
(This used to be commit 07fd885fd488fd1051eacc905a2d4962f8a018ec)
2004-06-29 13:40:10 +04:00
return gensec_check_packet ( spnego_state - > sub_sec_security ,
2004-09-11 19:11:36 +04:00
mem_ctx ,
data , length ,
whole_pdu , pdu_length ,
sig ) ;
2004-06-20 04:58:09 +04:00
}
2004-06-19 12:15:41 +04:00
r1294: A nice, large, commit...
This implements gensec for Samba's server side, and brings gensec up
to the standards of a full subsystem.
This means that use of the subsystem is by gensec_* functions, not
function pointers in structures (this is internal). This causes
changes in all the existing gensec users.
Our RPC server no longer contains it's own generalised security
scheme, and now calls gensec directly.
Gensec has also taken over the role of auth/auth_ntlmssp.c
An important part of gensec, is the output of the 'session_info'
struct. This is now reference counted, so that we can correctly free
it when a pipe is closed, no matter if it was inherited, or created by
per-pipe authentication.
The schannel code is reworked, to be in the same file for client and
server.
ntlm_auth is reworked to use gensec.
The major problem with this code is the way it relies on subsystem
auto-initialisation. The primary reason for this commit now.is to
allow these problems to be looked at, and fixed.
There are problems with the new code:
- I've tested it with smbtorture, but currently don't have VMware and
valgrind working (this I'll fix soon).
- The SPNEGO code is client-only at this point.
- We still do not do kerberos.
Andrew Bartlett
(This used to be commit 07fd885fd488fd1051eacc905a2d4962f8a018ec)
2004-06-29 13:40:10 +04:00
static NTSTATUS gensec_spnego_seal_packet ( struct gensec_security * gensec_security ,
2004-09-11 19:11:36 +04:00
TALLOC_CTX * mem_ctx ,
uint8_t * data , size_t length ,
const uint8_t * whole_pdu , size_t pdu_length ,
DATA_BLOB * sig )
2004-06-20 04:58:09 +04:00
{
struct spnego_state * spnego_state = gensec_security - > private_data ;
2004-06-19 12:15:41 +04:00
2004-06-20 04:58:09 +04:00
if ( spnego_state - > state_position ! = SPNEGO_DONE
& & spnego_state - > state_position ! = SPNEGO_FALLBACK ) {
return NT_STATUS_INVALID_PARAMETER ;
2004-06-19 12:15:41 +04:00
}
2004-06-20 04:58:09 +04:00
r1294: A nice, large, commit...
This implements gensec for Samba's server side, and brings gensec up
to the standards of a full subsystem.
This means that use of the subsystem is by gensec_* functions, not
function pointers in structures (this is internal). This causes
changes in all the existing gensec users.
Our RPC server no longer contains it's own generalised security
scheme, and now calls gensec directly.
Gensec has also taken over the role of auth/auth_ntlmssp.c
An important part of gensec, is the output of the 'session_info'
struct. This is now reference counted, so that we can correctly free
it when a pipe is closed, no matter if it was inherited, or created by
per-pipe authentication.
The schannel code is reworked, to be in the same file for client and
server.
ntlm_auth is reworked to use gensec.
The major problem with this code is the way it relies on subsystem
auto-initialisation. The primary reason for this commit now.is to
allow these problems to be looked at, and fixed.
There are problems with the new code:
- I've tested it with smbtorture, but currently don't have VMware and
valgrind working (this I'll fix soon).
- The SPNEGO code is client-only at this point.
- We still do not do kerberos.
Andrew Bartlett
(This used to be commit 07fd885fd488fd1051eacc905a2d4962f8a018ec)
2004-06-29 13:40:10 +04:00
return gensec_seal_packet ( spnego_state - > sub_sec_security ,
2004-09-11 19:11:36 +04:00
mem_ctx ,
data , length ,
whole_pdu , pdu_length ,
sig ) ;
2004-06-20 04:58:09 +04:00
}
2004-06-19 12:15:41 +04:00
r1294: A nice, large, commit...
This implements gensec for Samba's server side, and brings gensec up
to the standards of a full subsystem.
This means that use of the subsystem is by gensec_* functions, not
function pointers in structures (this is internal). This causes
changes in all the existing gensec users.
Our RPC server no longer contains it's own generalised security
scheme, and now calls gensec directly.
Gensec has also taken over the role of auth/auth_ntlmssp.c
An important part of gensec, is the output of the 'session_info'
struct. This is now reference counted, so that we can correctly free
it when a pipe is closed, no matter if it was inherited, or created by
per-pipe authentication.
The schannel code is reworked, to be in the same file for client and
server.
ntlm_auth is reworked to use gensec.
The major problem with this code is the way it relies on subsystem
auto-initialisation. The primary reason for this commit now.is to
allow these problems to be looked at, and fixed.
There are problems with the new code:
- I've tested it with smbtorture, but currently don't have VMware and
valgrind working (this I'll fix soon).
- The SPNEGO code is client-only at this point.
- We still do not do kerberos.
Andrew Bartlett
(This used to be commit 07fd885fd488fd1051eacc905a2d4962f8a018ec)
2004-06-29 13:40:10 +04:00
static NTSTATUS gensec_spnego_sign_packet ( struct gensec_security * gensec_security ,
2004-09-11 19:11:36 +04:00
TALLOC_CTX * mem_ctx ,
const uint8_t * data , size_t length ,
const uint8_t * whole_pdu , size_t pdu_length ,
DATA_BLOB * sig )
2004-06-20 04:58:09 +04:00
{
struct spnego_state * spnego_state = gensec_security - > private_data ;
2004-06-19 12:15:41 +04:00
2004-06-20 04:58:09 +04:00
if ( spnego_state - > state_position ! = SPNEGO_DONE
& & spnego_state - > state_position ! = SPNEGO_FALLBACK ) {
return NT_STATUS_INVALID_PARAMETER ;
}
r1294: A nice, large, commit...
This implements gensec for Samba's server side, and brings gensec up
to the standards of a full subsystem.
This means that use of the subsystem is by gensec_* functions, not
function pointers in structures (this is internal). This causes
changes in all the existing gensec users.
Our RPC server no longer contains it's own generalised security
scheme, and now calls gensec directly.
Gensec has also taken over the role of auth/auth_ntlmssp.c
An important part of gensec, is the output of the 'session_info'
struct. This is now reference counted, so that we can correctly free
it when a pipe is closed, no matter if it was inherited, or created by
per-pipe authentication.
The schannel code is reworked, to be in the same file for client and
server.
ntlm_auth is reworked to use gensec.
The major problem with this code is the way it relies on subsystem
auto-initialisation. The primary reason for this commit now.is to
allow these problems to be looked at, and fixed.
There are problems with the new code:
- I've tested it with smbtorture, but currently don't have VMware and
valgrind working (this I'll fix soon).
- The SPNEGO code is client-only at this point.
- We still do not do kerberos.
Andrew Bartlett
(This used to be commit 07fd885fd488fd1051eacc905a2d4962f8a018ec)
2004-06-29 13:40:10 +04:00
return gensec_sign_packet ( spnego_state - > sub_sec_security ,
2004-09-11 19:11:36 +04:00
mem_ctx ,
data , length ,
whole_pdu , pdu_length ,
sig ) ;
}
2005-01-01 01:45:11 +03:00
static NTSTATUS gensec_spnego_wrap ( struct gensec_security * gensec_security ,
TALLOC_CTX * mem_ctx ,
const DATA_BLOB * in ,
DATA_BLOB * out )
{
struct spnego_state * spnego_state = gensec_security - > private_data ;
if ( spnego_state - > state_position ! = SPNEGO_DONE
& & spnego_state - > state_position ! = SPNEGO_FALLBACK ) {
DEBUG ( 1 , ( " gensec_spnego_wrap: wrong state for wrap \n " ) ) ;
return NT_STATUS_INVALID_PARAMETER ;
}
return gensec_wrap ( spnego_state - > sub_sec_security ,
mem_ctx , in , out ) ;
}
static NTSTATUS gensec_spnego_unwrap ( struct gensec_security * gensec_security ,
TALLOC_CTX * mem_ctx ,
const DATA_BLOB * in ,
DATA_BLOB * out )
{
struct spnego_state * spnego_state = gensec_security - > private_data ;
if ( spnego_state - > state_position ! = SPNEGO_DONE
& & spnego_state - > state_position ! = SPNEGO_FALLBACK ) {
DEBUG ( 1 , ( " gensec_spnego_unwrap: wrong state for unwrap \n " ) ) ;
return NT_STATUS_INVALID_PARAMETER ;
}
return gensec_unwrap ( spnego_state - > sub_sec_security ,
mem_ctx , in , out ) ;
}
2004-09-11 19:11:36 +04:00
static size_t gensec_spnego_sig_size ( struct gensec_security * gensec_security )
{
struct spnego_state * spnego_state = gensec_security - > private_data ;
if ( spnego_state - > state_position ! = SPNEGO_DONE
& & spnego_state - > state_position ! = SPNEGO_FALLBACK ) {
return 0 ;
}
return gensec_sig_size ( spnego_state - > sub_sec_security ) ;
2004-06-19 12:15:41 +04:00
}
r1294: A nice, large, commit...
This implements gensec for Samba's server side, and brings gensec up
to the standards of a full subsystem.
This means that use of the subsystem is by gensec_* functions, not
function pointers in structures (this is internal). This causes
changes in all the existing gensec users.
Our RPC server no longer contains it's own generalised security
scheme, and now calls gensec directly.
Gensec has also taken over the role of auth/auth_ntlmssp.c
An important part of gensec, is the output of the 'session_info'
struct. This is now reference counted, so that we can correctly free
it when a pipe is closed, no matter if it was inherited, or created by
per-pipe authentication.
The schannel code is reworked, to be in the same file for client and
server.
ntlm_auth is reworked to use gensec.
The major problem with this code is the way it relies on subsystem
auto-initialisation. The primary reason for this commit now.is to
allow these problems to be looked at, and fixed.
There are problems with the new code:
- I've tested it with smbtorture, but currently don't have VMware and
valgrind working (this I'll fix soon).
- The SPNEGO code is client-only at this point.
- We still do not do kerberos.
Andrew Bartlett
(This used to be commit 07fd885fd488fd1051eacc905a2d4962f8a018ec)
2004-06-29 13:40:10 +04:00
static NTSTATUS gensec_spnego_session_key ( struct gensec_security * gensec_security ,
2004-09-11 19:11:36 +04:00
DATA_BLOB * session_key )
2004-06-19 12:15:41 +04:00
{
2004-06-20 04:58:09 +04:00
struct spnego_state * spnego_state = gensec_security - > private_data ;
2004-07-16 06:54:57 +04:00
if ( ! spnego_state - > sub_sec_security ) {
2004-06-20 04:58:09 +04:00
return NT_STATUS_INVALID_PARAMETER ;
2004-06-19 12:15:41 +04:00
}
2004-06-20 04:58:09 +04:00
r1294: A nice, large, commit...
This implements gensec for Samba's server side, and brings gensec up
to the standards of a full subsystem.
This means that use of the subsystem is by gensec_* functions, not
function pointers in structures (this is internal). This causes
changes in all the existing gensec users.
Our RPC server no longer contains it's own generalised security
scheme, and now calls gensec directly.
Gensec has also taken over the role of auth/auth_ntlmssp.c
An important part of gensec, is the output of the 'session_info'
struct. This is now reference counted, so that we can correctly free
it when a pipe is closed, no matter if it was inherited, or created by
per-pipe authentication.
The schannel code is reworked, to be in the same file for client and
server.
ntlm_auth is reworked to use gensec.
The major problem with this code is the way it relies on subsystem
auto-initialisation. The primary reason for this commit now.is to
allow these problems to be looked at, and fixed.
There are problems with the new code:
- I've tested it with smbtorture, but currently don't have VMware and
valgrind working (this I'll fix soon).
- The SPNEGO code is client-only at this point.
- We still do not do kerberos.
Andrew Bartlett
(This used to be commit 07fd885fd488fd1051eacc905a2d4962f8a018ec)
2004-06-29 13:40:10 +04:00
return gensec_session_key ( spnego_state - > sub_sec_security ,
session_key ) ;
2004-06-19 12:15:41 +04:00
}
2004-08-11 22:09:40 +04:00
static NTSTATUS gensec_spnego_session_info ( struct gensec_security * gensec_security ,
struct auth_session_info * * session_info )
{
struct spnego_state * spnego_state = gensec_security - > private_data ;
if ( ! spnego_state - > sub_sec_security ) {
return NT_STATUS_INVALID_PARAMETER ;
}
return gensec_session_info ( spnego_state - > sub_sec_security ,
session_info ) ;
}
2004-07-06 07:02:33 +04:00
/** Fallback to another GENSEC mechanism, based on magic strings
*
2004-07-12 13:11:13 +04:00
* This is the ' fallback ' case , where we don ' t get SPNEGO , and have to
2004-07-06 07:02:33 +04:00
* try all the other options ( and hope they all have a magic string
* they check )
*/
2004-07-12 13:11:13 +04:00
static NTSTATUS gensec_spnego_server_try_fallback ( struct gensec_security * gensec_security ,
2004-07-06 07:02:33 +04:00
struct spnego_state * spnego_state ,
TALLOC_CTX * out_mem_ctx ,
const DATA_BLOB in , DATA_BLOB * out )
{
2005-05-16 03:42:11 +04:00
int i , j ;
2004-07-06 07:02:33 +04:00
int num_ops ;
const struct gensec_security_ops * * all_ops = gensec_security_all ( & num_ops ) ;
for ( i = 0 ; i < num_ops ; i + + ) {
2005-05-16 03:42:11 +04:00
BOOL is_spnego ;
2004-07-06 07:02:33 +04:00
NTSTATUS nt_status ;
if ( ! all_ops [ i ] - > oid ) {
continue ;
}
2005-05-16 03:42:11 +04:00
is_spnego = False ;
for ( j = 0 ; all_ops [ i ] - > oid [ j ] ; j + + ) {
if ( strcasecmp ( GENSEC_OID_SPNEGO , all_ops [ i ] - > oid [ j ] ) = = 0 ) {
is_spnego = True ;
}
}
if ( is_spnego ) {
2004-11-15 23:31:12 +03:00
continue ;
}
2005-06-22 06:12:26 +04:00
if ( ! all_ops [ i ] - > magic ) {
continue ;
}
nt_status = all_ops [ i ] - > magic ( gensec_security , & in ) ;
if ( ! NT_STATUS_IS_OK ( nt_status ) ) {
continue ;
}
spnego_state - > state_position = SPNEGO_FALLBACK ;
2004-12-24 12:54:23 +03:00
nt_status = gensec_subcontext_start ( spnego_state ,
gensec_security ,
2004-07-06 07:02:33 +04:00
& spnego_state - > sub_sec_security ) ;
2005-06-22 06:12:26 +04:00
2004-07-06 07:02:33 +04:00
if ( ! NT_STATUS_IS_OK ( nt_status ) ) {
return nt_status ;
}
/* select the sub context */
2005-05-16 03:42:11 +04:00
nt_status = gensec_start_mech_by_ops ( spnego_state - > sub_sec_security ,
all_ops [ i ] ) ;
2004-07-06 07:02:33 +04:00
if ( ! NT_STATUS_IS_OK ( nt_status ) ) {
2005-06-22 06:12:26 +04:00
return nt_status ;
2004-07-06 07:02:33 +04:00
}
nt_status = gensec_update ( spnego_state - > sub_sec_security ,
2005-05-16 03:42:11 +04:00
out_mem_ctx , in , out ) ;
2005-06-22 06:12:26 +04:00
return nt_status ;
2004-07-06 07:02:33 +04:00
}
2004-07-12 13:11:13 +04:00
DEBUG ( 1 , ( " Failed to parse SPNEGO request \n " ) ) ;
2004-07-06 07:02:33 +04:00
return NT_STATUS_INVALID_PARAMETER ;
}
2005-01-21 14:10:03 +03:00
/*
2005-05-16 03:42:11 +04:00
Parse the netTokenInit , either from the client , to the server , or
from the server to the client .
2005-01-21 14:10:03 +03:00
*/
2005-05-16 03:42:11 +04:00
static NTSTATUS gensec_spnego_parse_negTokenInit ( struct gensec_security * gensec_security ,
struct spnego_state * spnego_state ,
TALLOC_CTX * out_mem_ctx ,
const char * * mechType ,
const DATA_BLOB unwrapped_in , DATA_BLOB * unwrapped_out )
2004-08-11 22:09:40 +04:00
{
int i ;
2005-05-16 03:42:11 +04:00
NTSTATUS nt_status = NT_STATUS_INVALID_PARAMETER ;
2004-08-11 22:09:40 +04:00
DATA_BLOB null_data_blob = data_blob ( NULL , 0 ) ;
2005-05-16 03:42:11 +04:00
const struct gensec_security_ops_wrapper * all_sec
= gensec_security_by_oid_list ( out_mem_ctx ,
mechType ,
GENSEC_OID_SPNEGO ) ;
for ( i = 0 ; all_sec & & all_sec [ i ] . op ; i + + ) {
2004-12-24 12:54:23 +03:00
nt_status = gensec_subcontext_start ( spnego_state ,
gensec_security ,
2004-08-11 22:09:40 +04:00
& spnego_state - > sub_sec_security ) ;
if ( ! NT_STATUS_IS_OK ( nt_status ) ) {
2005-05-16 03:42:11 +04:00
return nt_status ;
2004-08-11 22:09:40 +04:00
}
/* select the sub context */
2005-05-16 03:42:11 +04:00
nt_status = gensec_start_mech_by_ops ( spnego_state - > sub_sec_security ,
all_sec [ i ] . op ) ;
2004-08-11 22:09:40 +04:00
if ( ! NT_STATUS_IS_OK ( nt_status ) ) {
2004-12-25 02:02:39 +03:00
talloc_free ( spnego_state - > sub_sec_security ) ;
spnego_state - > sub_sec_security = NULL ;
2004-08-11 22:09:40 +04:00
continue ;
}
2005-05-16 03:42:11 +04:00
if ( ( i = = 0 ) & & ( strcmp ( all_sec [ 0 ] . oid , mechType [ 0 ] ) = = 0 ) ) {
2004-08-11 22:09:40 +04:00
nt_status = gensec_update ( spnego_state - > sub_sec_security ,
out_mem_ctx ,
unwrapped_in ,
unwrapped_out ) ;
} else {
/* only get the helping start blob for the first OID */
nt_status = gensec_update ( spnego_state - > sub_sec_security ,
out_mem_ctx ,
null_data_blob ,
unwrapped_out ) ;
2005-05-16 03:42:11 +04:00
/* it is likely that a NULL input token will
* not be liked by most mechs , so just push us
* along the merry - go - round again , and hope
* for better luck next time */
if ( NT_STATUS_EQUAL ( nt_status , NT_STATUS_INVALID_PARAMETER ) ) {
2005-08-11 02:27:04 +04:00
* unwrapped_out = data_blob ( NULL , 0 ) ;
2005-05-16 03:42:11 +04:00
nt_status = NT_STATUS_MORE_PROCESSING_REQUIRED ;
}
2004-08-11 22:09:40 +04:00
}
2005-05-16 03:42:11 +04:00
if ( ! NT_STATUS_EQUAL ( nt_status , NT_STATUS_INVALID_PARAMETER )
& & ! NT_STATUS_EQUAL ( nt_status , NT_STATUS_MORE_PROCESSING_REQUIRED )
& & ! NT_STATUS_IS_OK ( nt_status ) ) {
2004-08-11 22:09:40 +04:00
DEBUG ( 1 , ( " SPNEGO(%s) NEG_TOKEN_INIT failed: %s \n " ,
spnego_state - > sub_sec_security - > ops - > name , nt_errstr ( nt_status ) ) ) ;
2004-12-25 02:02:39 +03:00
talloc_free ( spnego_state - > sub_sec_security ) ;
spnego_state - > sub_sec_security = NULL ;
2005-05-16 03:42:11 +04:00
/* We started the mech correctly, and the
* input from the other side was valid .
* Return the error ( say bad password , invalid
* ticket ) */
return nt_status ;
} else if ( NT_STATUS_EQUAL ( nt_status , NT_STATUS_INVALID_PARAMETER ) ) {
/* 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 ;
2005-05-15 07:07:20 +04:00
continue ;
2004-08-11 22:09:40 +04:00
}
2005-05-16 03:42:11 +04:00
spnego_state - > neg_oid = all_sec [ i ] . oid ;
return nt_status ; /* OK, INVALID_PARAMETER ore MORE PROCESSING */
2004-08-11 22:09:40 +04:00
}
2005-05-16 03:42:11 +04:00
DEBUG ( 1 , ( " SPNEGO: Could not find a suitable mechtype in NEG_TOKEN_INIT \n " ) ) ;
/* we could re-negotiate here, but it would only work
* if the client or server lied about what it could
* support the first time . Lets keep this code to
* reality */
2004-10-21 12:52:01 +04:00
return NT_STATUS_INVALID_PARAMETER ;
2004-08-11 22:09:40 +04:00
}
2005-08-20 10:14:14 +04:00
/** create a negTokenInit
2004-07-06 22:07:00 +04:00
*
2005-08-20 10:14:14 +04:00
* This is the same packet , no matter if the client or server sends it first , but it is always the first packet
2004-07-06 22:07:00 +04:00
*/
2005-08-20 10:14:14 +04:00
static NTSTATUS gensec_spnego_create_negTokenInit ( struct gensec_security * gensec_security ,
2004-07-06 22:07:00 +04:00
struct spnego_state * spnego_state ,
TALLOC_CTX * out_mem_ctx ,
const DATA_BLOB in , DATA_BLOB * out )
{
2005-08-20 10:14:14 +04:00
int i ;
NTSTATUS nt_status = NT_STATUS_INVALID_PARAMETER ;
DATA_BLOB null_data_blob = data_blob ( NULL , 0 ) ;
2004-08-11 22:09:40 +04:00
const char * * mechTypes = NULL ;
2005-05-16 03:42:11 +04:00
DATA_BLOB unwrapped_out = data_blob ( NULL , 0 ) ;
2005-08-20 10:36:35 +04:00
const struct gensec_security_ops_wrapper * all_sec ;
2004-07-06 22:07:00 +04:00
2004-12-05 19:29:27 +03:00
mechTypes = gensec_security_oids ( out_mem_ctx , GENSEC_OID_SPNEGO ) ;
2004-07-06 22:07:00 +04:00
2005-08-20 10:36:35 +04:00
all_sec = gensec_security_by_oid_list ( out_mem_ctx ,
2005-08-20 10:14:14 +04:00
mechTypes ,
GENSEC_OID_SPNEGO ) ;
for ( i = 0 ; all_sec & & all_sec [ i ] . op ; i + + ) {
2004-07-06 22:07:00 +04:00
struct spnego_data spnego_out ;
2005-08-20 10:14:14 +04:00
nt_status = gensec_subcontext_start ( spnego_state ,
gensec_security ,
& spnego_state - > sub_sec_security ) ;
if ( ! NT_STATUS_IS_OK ( nt_status ) ) {
return nt_status ;
}
/* select the sub context */
nt_status = gensec_start_mech_by_ops ( spnego_state - > sub_sec_security ,
all_sec [ i ] . op ) ;
if ( ! NT_STATUS_IS_OK ( nt_status ) ) {
talloc_free ( spnego_state - > sub_sec_security ) ;
spnego_state - > sub_sec_security = NULL ;
continue ;
}
2005-08-20 10:36:35 +04:00
/* In the client, try and produce the first (optimistic) packet */
2005-08-20 11:04:13 +04:00
if ( spnego_state - > state_position = = SPNEGO_CLIENT_START ) {
2005-08-20 10:36:35 +04:00
nt_status = gensec_update ( spnego_state - > sub_sec_security ,
out_mem_ctx ,
null_data_blob ,
& unwrapped_out ) ;
if ( ! NT_STATUS_EQUAL ( nt_status , NT_STATUS_MORE_PROCESSING_REQUIRED )
& & ! NT_STATUS_IS_OK ( nt_status ) ) {
DEBUG ( 1 , ( " SPNEGO(%s) creating NEG_TOKEN_INIT failed: %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 ;
/* Pretend we never started it (lets the first run find some incompatible demand) */
continue ;
}
2005-08-20 10:14:14 +04:00
}
2005-08-20 10:36:35 +04:00
2004-07-06 22:07:00 +04:00
spnego_out . type = SPNEGO_NEG_TOKEN_INIT ;
2005-08-20 10:36:35 +04:00
/* List the remaining mechs as options */
2005-08-20 10:14:14 +04:00
spnego_out . negTokenInit . mechTypes = gensec_security_oids_from_ops_wrapped ( out_mem_ctx ,
& all_sec [ i ] ) ;
2004-07-06 22:07:00 +04:00
spnego_out . negTokenInit . reqFlags = 0 ;
2005-08-20 10:36:35 +04:00
2005-08-20 11:04:13 +04:00
if ( spnego_state - > state_position = = SPNEGO_SERVER_START ) {
2005-08-20 10:36:35 +04:00
spnego_out . negTokenInit . mechListMIC
= data_blob_string_const ( talloc_asprintf ( out_mem_ctx , " %s$@%s " , lp_netbios_name ( ) , lp_realm ( ) ) ) ;
} else {
spnego_out . negTokenInit . mechListMIC = null_data_blob ;
}
2004-07-06 22:07:00 +04:00
spnego_out . negTokenInit . mechToken = unwrapped_out ;
if ( spnego_write_data ( out_mem_ctx , out , & spnego_out ) = = - 1 ) {
2005-08-20 10:14:14 +04:00
DEBUG ( 1 , ( " Failed to write NEG_TOKEN_INIT \n " ) ) ;
2004-07-06 22:07:00 +04:00
return NT_STATUS_INVALID_PARAMETER ;
}
/* set next state */
spnego_state - > expected_packet = SPNEGO_NEG_TOKEN_TARG ;
2005-01-01 03:19:08 +03:00
if ( NT_STATUS_IS_OK ( nt_status ) ) {
spnego_state - > no_response_expected = True ;
}
return NT_STATUS_MORE_PROCESSING_REQUIRED ;
2005-01-01 01:45:11 +03:00
}
2004-12-25 02:02:39 +03:00
talloc_free ( spnego_state - > sub_sec_security ) ;
spnego_state - > sub_sec_security = NULL ;
2004-07-06 22:07:00 +04:00
2005-01-01 01:45:11 +03:00
DEBUG ( 1 , ( " Failed to setup SPNEGO negTokenInit request: %s \n " , nt_errstr ( nt_status ) ) ) ;
2004-07-06 22:07:00 +04:00
return NT_STATUS_INVALID_PARAMETER ;
}
2004-08-11 22:09:40 +04:00
/** create a client negTokenTarg
*
* This is the case , where the client is the first one who sends data
*/
static NTSTATUS gensec_spnego_server_negTokenTarg ( struct gensec_security * gensec_security ,
struct spnego_state * spnego_state ,
TALLOC_CTX * out_mem_ctx ,
NTSTATUS nt_status ,
const DATA_BLOB unwrapped_out , DATA_BLOB * out )
{
struct spnego_data spnego_out ;
DATA_BLOB null_data_blob = data_blob ( NULL , 0 ) ;
/* compose reply */
spnego_out . type = SPNEGO_NEG_TOKEN_TARG ;
spnego_out . negTokenTarg . responseToken = unwrapped_out ;
spnego_out . negTokenTarg . mechListMIC = null_data_blob ;
2004-12-02 21:15:39 +03:00
spnego_out . negTokenTarg . supportedMech = NULL ;
2005-05-16 03:42:11 +04:00
if ( NT_STATUS_EQUAL ( nt_status , NT_STATUS_MORE_PROCESSING_REQUIRED ) ) {
spnego_out . negTokenTarg . supportedMech = spnego_state - > neg_oid ;
2004-08-11 22:09:40 +04:00
spnego_out . negTokenTarg . negResult = SPNEGO_ACCEPT_INCOMPLETE ;
spnego_state - > state_position = SPNEGO_SERVER_TARG ;
} else if ( NT_STATUS_IS_OK ( nt_status ) ) {
2004-12-02 21:15:39 +03:00
if ( unwrapped_out . data ) {
2005-05-16 03:42:11 +04:00
spnego_out . negTokenTarg . supportedMech = spnego_state - > neg_oid ;
2004-12-02 21:15:39 +03:00
}
2004-08-11 22:09:40 +04:00
spnego_out . negTokenTarg . negResult = SPNEGO_ACCEPT_COMPLETED ;
spnego_state - > state_position = SPNEGO_DONE ;
} else {
spnego_out . negTokenTarg . negResult = SPNEGO_REJECT ;
2004-12-30 14:24:49 +03:00
DEBUG ( 2 , ( " SPNEGO login failed: %s \n " , nt_errstr ( nt_status ) ) ) ;
2004-08-11 22:09:40 +04:00
spnego_state - > state_position = SPNEGO_DONE ;
}
2004-12-02 21:15:39 +03:00
2004-08-11 22:09:40 +04:00
if ( spnego_write_data ( out_mem_ctx , out , & spnego_out ) = = - 1 ) {
DEBUG ( 1 , ( " Failed to write SPNEGO reply to NEG_TOKEN_TARG \n " ) ) ;
return NT_STATUS_INVALID_PARAMETER ;
}
spnego_state - > expected_packet = SPNEGO_NEG_TOKEN_TARG ;
return nt_status ;
}
r1294: A nice, large, commit...
This implements gensec for Samba's server side, and brings gensec up
to the standards of a full subsystem.
This means that use of the subsystem is by gensec_* functions, not
function pointers in structures (this is internal). This causes
changes in all the existing gensec users.
Our RPC server no longer contains it's own generalised security
scheme, and now calls gensec directly.
Gensec has also taken over the role of auth/auth_ntlmssp.c
An important part of gensec, is the output of the 'session_info'
struct. This is now reference counted, so that we can correctly free
it when a pipe is closed, no matter if it was inherited, or created by
per-pipe authentication.
The schannel code is reworked, to be in the same file for client and
server.
ntlm_auth is reworked to use gensec.
The major problem with this code is the way it relies on subsystem
auto-initialisation. The primary reason for this commit now.is to
allow these problems to be looked at, and fixed.
There are problems with the new code:
- I've tested it with smbtorture, but currently don't have VMware and
valgrind working (this I'll fix soon).
- The SPNEGO code is client-only at this point.
- We still do not do kerberos.
Andrew Bartlett
(This used to be commit 07fd885fd488fd1051eacc905a2d4962f8a018ec)
2004-06-29 13:40:10 +04:00
static NTSTATUS gensec_spnego_update ( struct gensec_security * gensec_security , TALLOC_CTX * out_mem_ctx ,
2004-09-13 08:28:10 +04:00
const DATA_BLOB in , DATA_BLOB * out )
2004-06-19 12:15:41 +04:00
{
2004-06-20 04:58:09 +04:00
struct spnego_state * spnego_state = gensec_security - > private_data ;
DATA_BLOB null_data_blob = data_blob ( NULL , 0 ) ;
2004-07-12 13:11:13 +04:00
DATA_BLOB unwrapped_out = data_blob ( NULL , 0 ) ;
2004-06-20 04:58:09 +04:00
struct spnego_data spnego_out ;
struct spnego_data spnego ;
2004-06-19 12:15:41 +04:00
2004-06-20 04:58:09 +04:00
ssize_t len ;
2004-06-19 12:15:41 +04:00
2004-08-11 22:09:40 +04:00
* out = data_blob ( NULL , 0 ) ;
2004-06-20 04:58:09 +04:00
if ( ! out_mem_ctx ) {
2004-09-26 06:16:25 +04:00
out_mem_ctx = spnego_state ;
2004-06-19 12:15:41 +04:00
}
2004-07-06 07:02:33 +04:00
/* and switch into the state machine */
switch ( spnego_state - > state_position ) {
case SPNEGO_FALLBACK :
r1294: A nice, large, commit...
This implements gensec for Samba's server side, and brings gensec up
to the standards of a full subsystem.
This means that use of the subsystem is by gensec_* functions, not
function pointers in structures (this is internal). This causes
changes in all the existing gensec users.
Our RPC server no longer contains it's own generalised security
scheme, and now calls gensec directly.
Gensec has also taken over the role of auth/auth_ntlmssp.c
An important part of gensec, is the output of the 'session_info'
struct. This is now reference counted, so that we can correctly free
it when a pipe is closed, no matter if it was inherited, or created by
per-pipe authentication.
The schannel code is reworked, to be in the same file for client and
server.
ntlm_auth is reworked to use gensec.
The major problem with this code is the way it relies on subsystem
auto-initialisation. The primary reason for this commit now.is to
allow these problems to be looked at, and fixed.
There are problems with the new code:
- I've tested it with smbtorture, but currently don't have VMware and
valgrind working (this I'll fix soon).
- The SPNEGO code is client-only at this point.
- We still do not do kerberos.
Andrew Bartlett
(This used to be commit 07fd885fd488fd1051eacc905a2d4962f8a018ec)
2004-06-29 13:40:10 +04:00
return gensec_update ( spnego_state - > sub_sec_security ,
out_mem_ctx , in , out ) ;
2004-07-06 07:02:33 +04:00
case SPNEGO_SERVER_START :
{
2005-08-20 10:14:14 +04:00
NTSTATUS nt_status ;
2004-07-06 07:02:33 +04:00
if ( in . length ) {
2004-08-11 22:09:40 +04:00
2004-07-06 07:02:33 +04:00
len = spnego_read_data ( in , & spnego ) ;
if ( len = = - 1 ) {
2004-07-12 13:11:13 +04:00
return gensec_spnego_server_try_fallback ( gensec_security , spnego_state , out_mem_ctx , in , out ) ;
2004-07-06 07:02:33 +04:00
}
2004-08-11 22:09:40 +04:00
/* client sent NegTargetInit, we send NegTokenTarg */
/* OK, so it's real SPNEGO, check the packet's the one we expect */
if ( spnego . type ! = spnego_state - > expected_packet ) {
DEBUG ( 1 , ( " Invalid SPNEGO request: %d, expected %d \n " , spnego . type ,
spnego_state - > expected_packet ) ) ;
2004-11-15 23:31:12 +03:00
dump_data ( 1 , in . data , in . length ) ;
2004-08-11 22:09:40 +04:00
spnego_free_data ( & spnego ) ;
return NT_STATUS_INVALID_PARAMETER ;
}
2005-05-16 03:42:11 +04:00
nt_status = gensec_spnego_parse_negTokenInit ( gensec_security ,
2004-08-11 22:09:40 +04:00
spnego_state ,
out_mem_ctx ,
spnego . negTokenInit . mechTypes ,
spnego . negTokenInit . mechToken ,
& unwrapped_out ) ;
nt_status = gensec_spnego_server_negTokenTarg ( gensec_security ,
spnego_state ,
out_mem_ctx ,
nt_status ,
unwrapped_out ,
out ) ;
spnego_free_data ( & spnego ) ;
return nt_status ;
2004-07-06 07:02:33 +04:00
} else {
2005-08-20 11:31:29 +04:00
nt_status = gensec_spnego_create_negTokenInit ( gensec_security , spnego_state ,
2005-08-20 10:14:14 +04:00
out_mem_ctx , in , out ) ;
2005-08-20 11:31:29 +04:00
spnego_state - > state_position = SPNEGO_SERVER_TARG ;
return nt_status ;
2004-07-06 07:02:33 +04:00
}
2004-06-19 12:15:41 +04:00
}
2004-07-07 03:20:23 +04:00
2004-07-06 07:02:33 +04:00
case SPNEGO_CLIENT_START :
{
/* The server offers a list of mechanisms */
2004-10-28 16:46:59 +04:00
const char * my_mechs [ ] = { NULL , NULL } ;
2004-07-09 16:29:33 +04:00
NTSTATUS nt_status = NT_STATUS_INVALID_PARAMETER ;
2004-07-06 07:02:33 +04:00
if ( ! in . length ) {
/* client to produce negTokenInit */
2005-08-20 11:31:29 +04:00
nt_status = gensec_spnego_create_negTokenInit ( gensec_security , spnego_state ,
2004-12-25 02:02:39 +03:00
out_mem_ctx , in , out ) ;
2005-08-20 11:31:29 +04:00
spnego_state - > state_position = SPNEGO_CLIENT_TARG ;
return nt_status ;
2004-07-06 07:02:33 +04:00
}
len = spnego_read_data ( in , & spnego ) ;
if ( len = = - 1 ) {
2004-07-09 16:29:33 +04:00
DEBUG ( 1 , ( " Invalid SPNEGO request: \n " ) ) ;
2004-11-15 23:31:12 +03:00
dump_data ( 1 , in . data , in . length ) ;
2004-07-06 07:02:33 +04:00
return NT_STATUS_INVALID_PARAMETER ;
}
/* OK, so it's real SPNEGO, check the packet's the one we expect */
if ( spnego . type ! = spnego_state - > expected_packet ) {
2004-07-12 13:11:13 +04:00
DEBUG ( 1 , ( " Invalid SPNEGO request: %d, expected %d \n " , spnego . type ,
2004-07-06 07:02:33 +04:00
spnego_state - > expected_packet ) ) ;
2004-11-15 23:31:12 +03:00
dump_data ( 1 , in . data , in . length ) ;
2004-07-09 16:29:33 +04:00
spnego_free_data ( & spnego ) ;
2004-07-06 07:02:33 +04:00
return NT_STATUS_INVALID_PARAMETER ;
}
2004-07-12 13:11:13 +04:00
if ( spnego . negTokenInit . targetPrincipal ) {
r6028: A MAJOR update to intergrate the new credentails system fully with
GENSEC, and to pull SCHANNEL into GENSEC, by making it less 'special'.
GENSEC now no longer has it's own handling of 'set username' etc,
instead it uses cli_credentials calls.
In order to link the credentails code right though Samba, a lot of
interfaces have changed to remove 'username, domain, password'
arguments, and these have been replaced with a single 'struct
cli_credentials'.
In the session setup code, a new parameter 'workgroup' contains the
client/server current workgroup, which seems unrelated to the
authentication exchange (it was being filled in from the auth info).
This allows in particular kerberos to only call back for passwords
when it actually needs to perform the kinit.
The kerberos code has been modified not to use the SPNEGO provided
'principal name' (in the mechListMIC), but to instead use the name the
host was connected to as. This better matches Microsoft behaviour,
is more secure and allows better use of standard kerberos functions.
To achieve this, I made changes to our socket code so that the
hostname (before name resolution) is now recorded on the socket.
In schannel, most of the code from librpc/rpc/dcerpc_schannel.c is now
in libcli/auth/schannel.c, and it looks much more like a standard
GENSEC module. The actual sign/seal code moved to
libcli/auth/schannel_sign.c in a previous commit.
The schannel credentails structure is now merged with the rest of the
credentails, as many of the values (username, workstation, domain)
where already present there. This makes handling this in a generic
manner much easier, as there is no longer a custom entry-point.
The auth_domain module continues to be developed, but is now just as
functional as auth_winbind. The changes here are consequential to the
schannel changes.
The only removed function at this point is the RPC-LOGIN test
(simulating the load of a WinXP login), which needs much more work to
clean it up (it contains copies of too much code from all over the
torture suite, and I havn't been able to penetrate its 'structure').
Andrew Bartlett
(This used to be commit 2301a4b38a21aa60917973451687063d83d18d66)
2005-03-24 07:14:06 +03:00
DEBUG ( 5 , ( " Server claims it's principal name is %s (ignored) \n " , spnego . negTokenInit . targetPrincipal ) ) ;
2004-07-12 13:11:13 +04:00
}
2005-05-16 03:42:11 +04:00
nt_status = gensec_spnego_parse_negTokenInit ( gensec_security ,
2004-08-11 22:09:40 +04:00
spnego_state ,
out_mem_ctx ,
spnego . negTokenInit . mechTypes ,
spnego . negTokenInit . mechToken ,
& unwrapped_out ) ;
2004-07-12 13:11:13 +04:00
if ( ! NT_STATUS_EQUAL ( nt_status , NT_STATUS_MORE_PROCESSING_REQUIRED ) & & ! NT_STATUS_IS_OK ( nt_status ) ) {
2004-09-24 10:51:14 +04:00
spnego_free_data ( & spnego ) ;
2004-07-06 07:02:33 +04:00
return nt_status ;
}
2004-08-11 22:09:40 +04:00
2005-05-16 03:42:11 +04:00
my_mechs [ 0 ] = spnego_state - > neg_oid ;
2004-07-06 07:02:33 +04:00
/* compose reply */
spnego_out . type = SPNEGO_NEG_TOKEN_INIT ;
spnego_out . negTokenInit . mechTypes = my_mechs ;
spnego_out . negTokenInit . reqFlags = 0 ;
spnego_out . negTokenInit . mechListMIC = null_data_blob ;
spnego_out . negTokenInit . mechToken = unwrapped_out ;
if ( spnego_write_data ( out_mem_ctx , out , & spnego_out ) = = - 1 ) {
2004-07-12 13:11:13 +04:00
DEBUG ( 1 , ( " Failed to write SPNEGO reply to NEG_TOKEN_INIT \n " ) ) ;
2004-07-06 07:02:33 +04:00
return NT_STATUS_INVALID_PARAMETER ;
}
/* set next state */
spnego_state - > expected_packet = SPNEGO_NEG_TOKEN_TARG ;
2004-07-06 21:53:44 +04:00
spnego_state - > state_position = SPNEGO_CLIENT_TARG ;
2005-01-01 03:19:08 +03:00
if ( NT_STATUS_IS_OK ( nt_status ) ) {
spnego_state - > no_response_expected = True ;
}
2004-07-06 07:02:33 +04:00
2004-07-12 13:11:13 +04:00
return NT_STATUS_MORE_PROCESSING_REQUIRED ;
2004-07-06 07:02:33 +04:00
}
2004-07-06 21:53:44 +04:00
case SPNEGO_SERVER_TARG :
2004-07-06 07:02:33 +04:00
{
NTSTATUS nt_status ;
if ( ! in . length ) {
return NT_STATUS_INVALID_PARAMETER ;
}
len = spnego_read_data ( in , & spnego ) ;
if ( len = = - 1 ) {
2004-07-09 16:29:33 +04:00
DEBUG ( 1 , ( " Invalid SPNEGO request: \n " ) ) ;
2004-11-15 23:31:12 +03:00
dump_data ( 1 , in . data , in . length ) ;
2004-07-06 07:02:33 +04:00
return NT_STATUS_INVALID_PARAMETER ;
}
/* OK, so it's real SPNEGO, check the packet's the one we expect */
2004-07-06 04:09:10 +04:00
if ( spnego . type ! = spnego_state - > expected_packet ) {
2004-07-12 13:11:13 +04:00
DEBUG ( 1 , ( " Invalid SPNEGO request: %d, expected %d \n " , spnego . type ,
2004-07-06 04:09:10 +04:00
spnego_state - > expected_packet ) ) ;
2004-11-15 23:31:12 +03:00
dump_data ( 1 , in . data , in . length ) ;
2004-07-09 16:29:33 +04:00
spnego_free_data ( & spnego ) ;
2004-07-06 04:09:10 +04:00
return NT_STATUS_INVALID_PARAMETER ;
}
2004-08-11 22:09:40 +04:00
2005-01-21 14:10:03 +03:00
if ( ! spnego_state - > sub_sec_security ) {
DEBUG ( 1 , ( " SPNEGO: Did not setup a mech in NEG_TOKEN_INIT \n " ) ) ;
return NT_STATUS_INVALID_PARAMETER ;
}
2004-07-12 13:11:13 +04:00
nt_status = gensec_update ( spnego_state - > sub_sec_security ,
out_mem_ctx ,
2004-08-11 22:09:40 +04:00
spnego . negTokenTarg . responseToken ,
2004-07-12 13:11:13 +04:00
& unwrapped_out ) ;
2004-08-11 22:09:40 +04:00
nt_status = gensec_spnego_server_negTokenTarg ( gensec_security ,
spnego_state ,
out_mem_ctx ,
nt_status ,
unwrapped_out ,
out ) ;
2004-07-06 07:02:33 +04:00
spnego_free_data ( & spnego ) ;
2004-07-06 21:53:44 +04:00
return nt_status ;
}
case SPNEGO_CLIENT_TARG :
{
NTSTATUS nt_status ;
if ( ! in . length ) {
return NT_STATUS_INVALID_PARAMETER ;
}
len = spnego_read_data ( in , & spnego ) ;
if ( len = = - 1 ) {
2004-07-09 16:29:33 +04:00
DEBUG ( 1 , ( " Invalid SPNEGO request: \n " ) ) ;
2004-11-15 23:31:12 +03:00
dump_data ( 1 , in . data , in . length ) ;
2004-07-06 21:53:44 +04:00
return NT_STATUS_INVALID_PARAMETER ;
}
/* OK, so it's real SPNEGO, check the packet's the one we expect */
if ( spnego . type ! = spnego_state - > expected_packet ) {
2004-07-09 16:29:33 +04:00
DEBUG ( 1 , ( " Invalid SPNEGO request: %d, expected %d \n " , spnego . type ,
2004-07-06 21:53:44 +04:00
spnego_state - > expected_packet ) ) ;
2004-11-15 23:31:12 +03:00
dump_data ( 1 , in . data , in . length ) ;
2004-07-09 16:29:33 +04:00
spnego_free_data ( & spnego ) ;
2004-07-06 21:53:44 +04:00
return NT_STATUS_INVALID_PARAMETER ;
}
if ( spnego . negTokenTarg . negResult = = SPNEGO_REJECT ) {
return NT_STATUS_ACCESS_DENIED ;
}
2004-07-12 13:11:13 +04:00
2005-01-01 03:19:08 +03:00
if ( spnego_state - > no_response_expected ) {
2005-01-10 13:48:19 +03:00
if ( spnego . negTokenTarg . negResult ! = SPNEGO_ACCEPT_COMPLETED ) {
2005-01-11 23:20:27 +03:00
DEBUG ( 3 , ( " GENSEC SPNEGO: client GENSEC accepted, but server rejected (bad password?) \n " ) ) ;
nt_status = NT_STATUS_INVALID_PARAMETER ;
} else if ( spnego . negTokenTarg . responseToken . length ) {
DEBUG ( 2 , ( " GENSEC SPNEGO: client GENSEC accepted, but server continued negotiation! \n " ) ) ;
2005-01-10 13:48:19 +03:00
nt_status = NT_STATUS_INVALID_PARAMETER ;
} else {
nt_status = NT_STATUS_OK ;
}
2005-01-01 03:19:08 +03:00
} else {
nt_status = gensec_update ( spnego_state - > sub_sec_security ,
out_mem_ctx ,
spnego . negTokenTarg . responseToken ,
& unwrapped_out ) ;
2005-01-10 13:48:19 +03:00
if ( NT_STATUS_IS_OK ( nt_status ) ) {
spnego_state - > no_response_expected = True ;
}
2004-07-16 06:54:57 +04:00
}
2004-07-06 21:53:44 +04:00
spnego_free_data ( & spnego ) ;
2004-07-16 06:54:57 +04:00
2005-01-10 13:48:19 +03:00
if ( ! NT_STATUS_EQUAL ( nt_status , NT_STATUS_MORE_PROCESSING_REQUIRED )
& & ! NT_STATUS_IS_OK ( nt_status ) ) {
DEBUG ( 1 , ( " SPNEGO(%s) login failed: %s \n " ,
spnego_state - > sub_sec_security - > ops - > name ,
nt_errstr ( nt_status ) ) ) ;
return nt_status ;
}
if ( unwrapped_out . length ) {
2004-07-29 14:33:36 +04:00
/* compose reply */
2004-07-16 06:54:57 +04:00
spnego_out . type = SPNEGO_NEG_TOKEN_TARG ;
spnego_out . negTokenTarg . negResult = SPNEGO_NONE_RESULT ;
spnego_out . negTokenTarg . supportedMech = NULL ;
spnego_out . negTokenTarg . responseToken = unwrapped_out ;
spnego_out . negTokenTarg . mechListMIC = null_data_blob ;
if ( spnego_write_data ( out_mem_ctx , out , & spnego_out ) = = - 1 ) {
DEBUG ( 1 , ( " Failed to write SPNEGO reply to NEG_TOKEN_TARG \n " ) ) ;
return NT_STATUS_INVALID_PARAMETER ;
}
2004-07-06 21:53:44 +04:00
spnego_state - > state_position = SPNEGO_CLIENT_TARG ;
2005-01-10 13:48:19 +03:00
nt_status = NT_STATUS_MORE_PROCESSING_REQUIRED ;
} else {
2004-07-16 06:54:57 +04:00
/* all done - server has accepted, and we agree */
2005-01-10 13:48:19 +03:00
* out = null_data_blob ;
2004-07-29 14:33:36 +04:00
2005-01-10 13:48:19 +03:00
if ( spnego . negTokenTarg . negResult ! = SPNEGO_ACCEPT_COMPLETED ) {
/* unless of course it did not accept */
DEBUG ( 1 , ( " gensec_update ok but not accepted \n " ) ) ;
nt_status = NT_STATUS_INVALID_PARAMETER ;
}
2004-06-19 12:15:41 +04:00
}
2005-01-10 13:48:19 +03:00
spnego_state - > state_position = SPNEGO_DONE ;
2004-07-06 07:02:33 +04:00
return nt_status ;
}
2004-07-07 03:20:23 +04:00
case SPNEGO_DONE :
return NT_STATUS_OK ;
2004-06-19 12:15:41 +04:00
}
2004-07-07 03:20:23 +04:00
return NT_STATUS_INVALID_PARAMETER ;
2004-06-19 12:15:41 +04:00
}
2005-01-01 01:45:11 +03:00
static BOOL gensec_spnego_have_feature ( struct gensec_security * gensec_security ,
2005-02-10 08:09:35 +03:00
uint32_t feature )
2005-01-01 01:45:11 +03:00
{
struct spnego_state * spnego_state = gensec_security - > private_data ;
if ( ! spnego_state - > sub_sec_security ) {
return False ;
}
return gensec_have_feature ( spnego_state - > sub_sec_security ,
feature ) ;
}
2005-05-16 03:42:11 +04:00
static const char * gensec_spnego_oids [ ] = {
GENSEC_OID_SPNEGO ,
NULL
} ;
r1294: A nice, large, commit...
This implements gensec for Samba's server side, and brings gensec up
to the standards of a full subsystem.
This means that use of the subsystem is by gensec_* functions, not
function pointers in structures (this is internal). This causes
changes in all the existing gensec users.
Our RPC server no longer contains it's own generalised security
scheme, and now calls gensec directly.
Gensec has also taken over the role of auth/auth_ntlmssp.c
An important part of gensec, is the output of the 'session_info'
struct. This is now reference counted, so that we can correctly free
it when a pipe is closed, no matter if it was inherited, or created by
per-pipe authentication.
The schannel code is reworked, to be in the same file for client and
server.
ntlm_auth is reworked to use gensec.
The major problem with this code is the way it relies on subsystem
auto-initialisation. The primary reason for this commit now.is to
allow these problems to be looked at, and fixed.
There are problems with the new code:
- I've tested it with smbtorture, but currently don't have VMware and
valgrind working (this I'll fix soon).
- The SPNEGO code is client-only at this point.
- We still do not do kerberos.
Andrew Bartlett
(This used to be commit 07fd885fd488fd1051eacc905a2d4962f8a018ec)
2004-06-29 13:40:10 +04:00
static const struct gensec_security_ops gensec_spnego_security_ops = {
. name = " spnego " ,
. sasl_name = " GSS-SPNEGO " ,
2004-07-06 05:03:36 +04:00
. auth_type = DCERPC_AUTH_TYPE_SPNEGO ,
2005-05-16 03:42:11 +04:00
. oid = gensec_spnego_oids ,
r1294: A nice, large, commit...
This implements gensec for Samba's server side, and brings gensec up
to the standards of a full subsystem.
This means that use of the subsystem is by gensec_* functions, not
function pointers in structures (this is internal). This causes
changes in all the existing gensec users.
Our RPC server no longer contains it's own generalised security
scheme, and now calls gensec directly.
Gensec has also taken over the role of auth/auth_ntlmssp.c
An important part of gensec, is the output of the 'session_info'
struct. This is now reference counted, so that we can correctly free
it when a pipe is closed, no matter if it was inherited, or created by
per-pipe authentication.
The schannel code is reworked, to be in the same file for client and
server.
ntlm_auth is reworked to use gensec.
The major problem with this code is the way it relies on subsystem
auto-initialisation. The primary reason for this commit now.is to
allow these problems to be looked at, and fixed.
There are problems with the new code:
- I've tested it with smbtorture, but currently don't have VMware and
valgrind working (this I'll fix soon).
- The SPNEGO code is client-only at this point.
- We still do not do kerberos.
Andrew Bartlett
(This used to be commit 07fd885fd488fd1051eacc905a2d4962f8a018ec)
2004-06-29 13:40:10 +04:00
. client_start = gensec_spnego_client_start ,
2004-08-11 22:09:40 +04:00
. server_start = gensec_spnego_server_start ,
r1294: A nice, large, commit...
This implements gensec for Samba's server side, and brings gensec up
to the standards of a full subsystem.
This means that use of the subsystem is by gensec_* functions, not
function pointers in structures (this is internal). This causes
changes in all the existing gensec users.
Our RPC server no longer contains it's own generalised security
scheme, and now calls gensec directly.
Gensec has also taken over the role of auth/auth_ntlmssp.c
An important part of gensec, is the output of the 'session_info'
struct. This is now reference counted, so that we can correctly free
it when a pipe is closed, no matter if it was inherited, or created by
per-pipe authentication.
The schannel code is reworked, to be in the same file for client and
server.
ntlm_auth is reworked to use gensec.
The major problem with this code is the way it relies on subsystem
auto-initialisation. The primary reason for this commit now.is to
allow these problems to be looked at, and fixed.
There are problems with the new code:
- I've tested it with smbtorture, but currently don't have VMware and
valgrind working (this I'll fix soon).
- The SPNEGO code is client-only at this point.
- We still do not do kerberos.
Andrew Bartlett
(This used to be commit 07fd885fd488fd1051eacc905a2d4962f8a018ec)
2004-06-29 13:40:10 +04:00
. update = gensec_spnego_update ,
. seal_packet = gensec_spnego_seal_packet ,
. sign_packet = gensec_spnego_sign_packet ,
2004-09-11 19:11:36 +04:00
. sig_size = gensec_spnego_sig_size ,
r1294: A nice, large, commit...
This implements gensec for Samba's server side, and brings gensec up
to the standards of a full subsystem.
This means that use of the subsystem is by gensec_* functions, not
function pointers in structures (this is internal). This causes
changes in all the existing gensec users.
Our RPC server no longer contains it's own generalised security
scheme, and now calls gensec directly.
Gensec has also taken over the role of auth/auth_ntlmssp.c
An important part of gensec, is the output of the 'session_info'
struct. This is now reference counted, so that we can correctly free
it when a pipe is closed, no matter if it was inherited, or created by
per-pipe authentication.
The schannel code is reworked, to be in the same file for client and
server.
ntlm_auth is reworked to use gensec.
The major problem with this code is the way it relies on subsystem
auto-initialisation. The primary reason for this commit now.is to
allow these problems to be looked at, and fixed.
There are problems with the new code:
- I've tested it with smbtorture, but currently don't have VMware and
valgrind working (this I'll fix soon).
- The SPNEGO code is client-only at this point.
- We still do not do kerberos.
Andrew Bartlett
(This used to be commit 07fd885fd488fd1051eacc905a2d4962f8a018ec)
2004-06-29 13:40:10 +04:00
. check_packet = gensec_spnego_check_packet ,
. unseal_packet = gensec_spnego_unseal_packet ,
2005-01-01 01:45:11 +03:00
. wrap = gensec_spnego_wrap ,
. unwrap = gensec_spnego_unwrap ,
r1294: A nice, large, commit...
This implements gensec for Samba's server side, and brings gensec up
to the standards of a full subsystem.
This means that use of the subsystem is by gensec_* functions, not
function pointers in structures (this is internal). This causes
changes in all the existing gensec users.
Our RPC server no longer contains it's own generalised security
scheme, and now calls gensec directly.
Gensec has also taken over the role of auth/auth_ntlmssp.c
An important part of gensec, is the output of the 'session_info'
struct. This is now reference counted, so that we can correctly free
it when a pipe is closed, no matter if it was inherited, or created by
per-pipe authentication.
The schannel code is reworked, to be in the same file for client and
server.
ntlm_auth is reworked to use gensec.
The major problem with this code is the way it relies on subsystem
auto-initialisation. The primary reason for this commit now.is to
allow these problems to be looked at, and fixed.
There are problems with the new code:
- I've tested it with smbtorture, but currently don't have VMware and
valgrind working (this I'll fix soon).
- The SPNEGO code is client-only at this point.
- We still do not do kerberos.
Andrew Bartlett
(This used to be commit 07fd885fd488fd1051eacc905a2d4962f8a018ec)
2004-06-29 13:40:10 +04:00
. session_key = gensec_spnego_session_key ,
2004-08-11 22:09:40 +04:00
. session_info = gensec_spnego_session_info ,
2005-01-03 12:00:37 +03:00
. have_feature = gensec_spnego_have_feature ,
. enabled = True
r1294: A nice, large, commit...
This implements gensec for Samba's server side, and brings gensec up
to the standards of a full subsystem.
This means that use of the subsystem is by gensec_* functions, not
function pointers in structures (this is internal). This causes
changes in all the existing gensec users.
Our RPC server no longer contains it's own generalised security
scheme, and now calls gensec directly.
Gensec has also taken over the role of auth/auth_ntlmssp.c
An important part of gensec, is the output of the 'session_info'
struct. This is now reference counted, so that we can correctly free
it when a pipe is closed, no matter if it was inherited, or created by
per-pipe authentication.
The schannel code is reworked, to be in the same file for client and
server.
ntlm_auth is reworked to use gensec.
The major problem with this code is the way it relies on subsystem
auto-initialisation. The primary reason for this commit now.is to
allow these problems to be looked at, and fixed.
There are problems with the new code:
- I've tested it with smbtorture, but currently don't have VMware and
valgrind working (this I'll fix soon).
- The SPNEGO code is client-only at this point.
- We still do not do kerberos.
Andrew Bartlett
(This used to be commit 07fd885fd488fd1051eacc905a2d4962f8a018ec)
2004-06-29 13:40:10 +04:00
} ;
2004-07-11 16:15:58 +04:00
NTSTATUS gensec_spnego_init ( void )
r1294: A nice, large, commit...
This implements gensec for Samba's server side, and brings gensec up
to the standards of a full subsystem.
This means that use of the subsystem is by gensec_* functions, not
function pointers in structures (this is internal). This causes
changes in all the existing gensec users.
Our RPC server no longer contains it's own generalised security
scheme, and now calls gensec directly.
Gensec has also taken over the role of auth/auth_ntlmssp.c
An important part of gensec, is the output of the 'session_info'
struct. This is now reference counted, so that we can correctly free
it when a pipe is closed, no matter if it was inherited, or created by
per-pipe authentication.
The schannel code is reworked, to be in the same file for client and
server.
ntlm_auth is reworked to use gensec.
The major problem with this code is the way it relies on subsystem
auto-initialisation. The primary reason for this commit now.is to
allow these problems to be looked at, and fixed.
There are problems with the new code:
- I've tested it with smbtorture, but currently don't have VMware and
valgrind working (this I'll fix soon).
- The SPNEGO code is client-only at this point.
- We still do not do kerberos.
Andrew Bartlett
(This used to be commit 07fd885fd488fd1051eacc905a2d4962f8a018ec)
2004-06-29 13:40:10 +04:00
{
NTSTATUS ret ;
2004-11-15 01:23:23 +03:00
ret = gensec_register ( & gensec_spnego_security_ops ) ;
r1294: A nice, large, commit...
This implements gensec for Samba's server side, and brings gensec up
to the standards of a full subsystem.
This means that use of the subsystem is by gensec_* functions, not
function pointers in structures (this is internal). This causes
changes in all the existing gensec users.
Our RPC server no longer contains it's own generalised security
scheme, and now calls gensec directly.
Gensec has also taken over the role of auth/auth_ntlmssp.c
An important part of gensec, is the output of the 'session_info'
struct. This is now reference counted, so that we can correctly free
it when a pipe is closed, no matter if it was inherited, or created by
per-pipe authentication.
The schannel code is reworked, to be in the same file for client and
server.
ntlm_auth is reworked to use gensec.
The major problem with this code is the way it relies on subsystem
auto-initialisation. The primary reason for this commit now.is to
allow these problems to be looked at, and fixed.
There are problems with the new code:
- I've tested it with smbtorture, but currently don't have VMware and
valgrind working (this I'll fix soon).
- The SPNEGO code is client-only at this point.
- We still do not do kerberos.
Andrew Bartlett
(This used to be commit 07fd885fd488fd1051eacc905a2d4962f8a018ec)
2004-06-29 13:40:10 +04:00
if ( ! NT_STATUS_IS_OK ( ret ) ) {
DEBUG ( 0 , ( " Failed to register '%s' gensec backend! \n " ,
gensec_spnego_security_ops . name ) ) ;
return ret ;
}
return ret ;
}