2004-06-20 04:58:09 +04:00
/*
Unix SMB / CIFS implementation .
Generic Authentication Interface
Copyright ( C ) Andrew Tridgell 2003
2006-09-05 13:42:54 +04:00
Copyright ( C ) Andrew Bartlett < abartlet @ samba . org > 2004 - 2006
2004-06-20 04:58:09 +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
2007-07-10 06:07:03 +04:00
the Free Software Foundation ; either version 3 of the License , or
2004-06-20 04:58:09 +04:00
( 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
2007-07-10 06:07:03 +04:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
2004-06-20 04:58:09 +04:00
*/
# include "includes.h"
2009-12-16 15:27:20 +03:00
# include "system/network.h"
2005-06-16 15:36:09 +04:00
# include "lib/events/events.h"
2009-12-16 15:27:20 +03:00
# include "lib/socket/socket.h"
# include "lib/tsocket/tsocket.h"
2009-12-22 18:24:44 +03:00
# include "../lib/util/tevent_ntstatus.h"
2006-03-18 18:42:57 +03:00
# include "librpc/rpc/dcerpc.h"
2006-11-07 03:48:36 +03:00
# include "auth/credentials/credentials.h"
# include "auth/gensec/gensec.h"
2010-04-13 06:00:06 +04:00
# include "auth/auth.h"
# include "auth/system_session_proto.h"
2007-09-08 16:42:09 +04:00
# include "param/param.h"
2010-02-13 05:00:03 +03:00
# include "lib/util/tsort.h"
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
/* the list of currently registered GENSEC backends */
2006-01-28 15:15:24 +03:00
static struct gensec_security_ops * * generic_security_ops ;
2004-08-11 20:13:25 +04:00
static int gensec_num_backends ;
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
2006-01-28 15:15:24 +03:00
/* Return all the registered mechs. Don't modify the return pointer,
* but you may talloc_reference it if convient */
2008-04-02 06:53:27 +04:00
_PUBLIC_ struct gensec_security_ops * * gensec_security_all ( void )
2005-12-05 06:20:40 +03:00
{
return generic_security_ops ;
}
2009-09-26 22:55:18 +04:00
bool gensec_security_ops_enabled ( struct gensec_security_ops * ops , struct gensec_security * security )
2008-11-02 21:28:17 +03:00
{
2010-07-16 08:32:42 +04:00
return lpcfg_parm_bool ( security - > settings - > lp_ctx , NULL , " gensec " , ops - > name , ops - > enabled ) ;
2008-11-02 21:28:17 +03:00
}
2006-01-28 15:15:24 +03:00
/* Sometimes we want to force only kerberos, sometimes we want to
* force it ' s avoidance . The old list could be either
* gensec_security_all ( ) , or from cli_credentials_gensec_list ( ) ( ie ,
* an existing list we have trimmed down ) */
2008-04-02 06:53:27 +04:00
_PUBLIC_ struct gensec_security_ops * * gensec_use_kerberos_mechs ( TALLOC_CTX * mem_ctx ,
2006-01-28 15:15:24 +03:00
struct gensec_security_ops * * old_gensec_list ,
2007-09-29 19:16:38 +04:00
struct cli_credentials * creds )
2006-01-28 15:15:24 +03:00
{
struct gensec_security_ops * * new_gensec_list ;
int i , j , num_mechs_in ;
2007-09-29 19:16:38 +04:00
enum credentials_use_kerberos use_kerberos = CRED_AUTO_USE_KERBEROS ;
if ( creds ) {
use_kerberos = cli_credentials_get_kerberos_state ( creds ) ;
}
2006-01-28 15:15:24 +03:00
if ( use_kerberos = = CRED_AUTO_USE_KERBEROS ) {
2006-09-05 13:42:54 +04:00
if ( ! talloc_reference ( mem_ctx , old_gensec_list ) ) {
return NULL ;
}
2006-01-28 15:15:24 +03:00
return old_gensec_list ;
}
for ( num_mechs_in = 0 ; old_gensec_list & & old_gensec_list [ num_mechs_in ] ; num_mechs_in + + ) {
/* noop */
}
new_gensec_list = talloc_array ( mem_ctx , struct gensec_security_ops * , num_mechs_in + 1 ) ;
if ( ! new_gensec_list ) {
return NULL ;
}
j = 0 ;
for ( i = 0 ; old_gensec_list & & old_gensec_list [ i ] ; i + + ) {
int oid_idx ;
2008-11-02 21:28:17 +03:00
2006-01-28 15:15:24 +03:00
for ( oid_idx = 0 ; old_gensec_list [ i ] - > oid & & old_gensec_list [ i ] - > oid [ oid_idx ] ; oid_idx + + ) {
if ( strcmp ( old_gensec_list [ i ] - > oid [ oid_idx ] , GENSEC_OID_SPNEGO ) = = 0 ) {
new_gensec_list [ j ] = old_gensec_list [ i ] ;
j + + ;
break ;
}
}
switch ( use_kerberos ) {
case CRED_DONT_USE_KERBEROS :
2007-10-07 02:16:19 +04:00
if ( old_gensec_list [ i ] - > kerberos = = false ) {
2006-01-28 15:15:24 +03:00
new_gensec_list [ j ] = old_gensec_list [ i ] ;
j + + ;
}
break ;
case CRED_MUST_USE_KERBEROS :
2007-10-07 02:16:19 +04:00
if ( old_gensec_list [ i ] - > kerberos = = true ) {
2006-01-28 15:15:24 +03:00
new_gensec_list [ j ] = old_gensec_list [ i ] ;
j + + ;
}
break ;
2006-07-06 09:51:39 +04:00
default :
/* Can't happen or invalid parameter */
return NULL ;
2006-01-28 15:15:24 +03:00
}
}
new_gensec_list [ j ] = NULL ;
return new_gensec_list ;
}
struct gensec_security_ops * * gensec_security_mechs ( struct gensec_security * gensec_security ,
TALLOC_CTX * mem_ctx )
{
struct gensec_security_ops * * backends ;
backends = gensec_security_all ( ) ;
if ( ! gensec_security ) {
2006-09-05 13:42:54 +04:00
if ( ! talloc_reference ( mem_ctx , backends ) ) {
return NULL ;
}
2006-01-28 15:15:24 +03:00
return backends ;
} else {
struct cli_credentials * creds = gensec_get_credentials ( gensec_security ) ;
2006-01-31 04:48:07 +03:00
if ( ! creds ) {
2006-09-05 13:42:54 +04:00
if ( ! talloc_reference ( mem_ctx , backends ) ) {
return NULL ;
}
2006-01-31 04:48:07 +03:00
return backends ;
}
2007-09-29 19:16:38 +04:00
return gensec_use_kerberos_mechs ( mem_ctx , backends , creds ) ;
2006-01-28 15:15:24 +03:00
}
}
2005-12-05 06:20:40 +03:00
static const struct gensec_security_ops * gensec_security_by_authtype ( struct gensec_security * gensec_security ,
uint8_t auth_type )
2004-06-20 04:58:09 +04:00
{
int i ;
2006-01-28 15:15:24 +03:00
struct gensec_security_ops * * backends ;
const struct gensec_security_ops * backend ;
TALLOC_CTX * mem_ctx = talloc_new ( gensec_security ) ;
if ( ! mem_ctx ) {
return NULL ;
2005-12-05 06:20:40 +03:00
}
2006-01-28 15:15:24 +03:00
backends = gensec_security_mechs ( gensec_security , mem_ctx ) ;
2005-12-05 06:20:40 +03:00
for ( i = 0 ; backends & & backends [ i ] ; i + + ) {
2009-09-26 22:55:18 +04:00
if ( ! gensec_security_ops_enabled ( backends [ i ] , gensec_security ) )
continue ;
2005-12-05 06:20:40 +03:00
if ( backends [ i ] - > auth_type = = auth_type ) {
2006-01-28 15:15:24 +03:00
backend = backends [ i ] ;
talloc_free ( mem_ctx ) ;
return backend ;
2004-06-20 04:58:09 +04:00
}
}
2006-01-28 15:15:24 +03:00
talloc_free ( mem_ctx ) ;
2004-06-20 04:58:09 +04:00
return NULL ;
}
2005-12-11 11:31:46 +03:00
const struct gensec_security_ops * gensec_security_by_oid ( struct gensec_security * gensec_security ,
const char * oid_string )
2004-06-20 04:58:09 +04:00
{
2005-05-16 03:42:11 +04:00
int i , j ;
2006-01-28 15:15:24 +03:00
struct gensec_security_ops * * backends ;
const struct gensec_security_ops * backend ;
TALLOC_CTX * mem_ctx = talloc_new ( gensec_security ) ;
if ( ! mem_ctx ) {
return NULL ;
2005-12-05 06:20:40 +03:00
}
2006-01-28 15:15:24 +03:00
backends = gensec_security_mechs ( gensec_security , mem_ctx ) ;
2005-12-05 06:20:40 +03:00
for ( i = 0 ; backends & & backends [ i ] ; i + + ) {
2008-11-03 01:58:49 +03:00
if ( gensec_security ! = NULL & &
! gensec_security_ops_enabled ( backends [ i ] ,
2009-09-26 22:55:18 +04:00
gensec_security ) )
2008-11-02 21:28:17 +03:00
continue ;
2005-12-05 06:20:40 +03:00
if ( backends [ i ] - > oid ) {
for ( j = 0 ; backends [ i ] - > oid [ j ] ; j + + ) {
if ( backends [ i ] - > oid [ j ] & &
( strcmp ( backends [ i ] - > oid [ j ] , oid_string ) = = 0 ) ) {
2006-01-28 15:15:24 +03:00
backend = backends [ i ] ;
talloc_free ( mem_ctx ) ;
return backend ;
2005-05-16 03:42:11 +04:00
}
}
2004-06-20 04:58:09 +04:00
}
}
2006-01-28 15:15:24 +03:00
talloc_free ( mem_ctx ) ;
2004-06-20 04:58:09 +04:00
return NULL ;
}
2006-09-06 14:34:18 +04:00
const struct gensec_security_ops * gensec_security_by_sasl_name ( struct gensec_security * gensec_security ,
const char * sasl_name )
2004-06-20 04:58:09 +04:00
{
int i ;
2006-01-28 15:15:24 +03:00
struct gensec_security_ops * * backends ;
const struct gensec_security_ops * backend ;
TALLOC_CTX * mem_ctx = talloc_new ( gensec_security ) ;
if ( ! mem_ctx ) {
return NULL ;
2005-12-05 06:20:40 +03:00
}
2006-01-28 15:15:24 +03:00
backends = gensec_security_mechs ( gensec_security , mem_ctx ) ;
2005-12-05 06:20:40 +03:00
for ( i = 0 ; backends & & backends [ i ] ; i + + ) {
2009-09-26 22:55:18 +04:00
if ( ! gensec_security_ops_enabled ( backends [ i ] , gensec_security ) )
2008-11-02 21:28:17 +03:00
continue ;
2005-12-05 06:20:40 +03:00
if ( backends [ i ] - > sasl_name
& & ( strcmp ( backends [ i ] - > sasl_name , sasl_name ) = = 0 ) ) {
2006-01-28 15:15:24 +03:00
backend = backends [ i ] ;
talloc_free ( mem_ctx ) ;
return backend ;
2004-06-20 04:58:09 +04:00
}
}
2006-01-28 15:15:24 +03:00
talloc_free ( mem_ctx ) ;
2004-06-20 04:58:09 +04:00
return NULL ;
}
2005-12-05 06:20:40 +03:00
static const struct gensec_security_ops * gensec_security_by_name ( struct gensec_security * gensec_security ,
const char * name )
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
{
int i ;
2006-01-28 15:15:24 +03:00
struct gensec_security_ops * * backends ;
const struct gensec_security_ops * backend ;
TALLOC_CTX * mem_ctx = talloc_new ( gensec_security ) ;
if ( ! mem_ctx ) {
return NULL ;
2005-12-05 06:20:40 +03:00
}
2006-01-28 15:15:24 +03:00
backends = gensec_security_mechs ( gensec_security , mem_ctx ) ;
2005-12-05 06:20:40 +03:00
for ( i = 0 ; backends & & backends [ i ] ; i + + ) {
2008-11-03 01:58:49 +03:00
if ( gensec_security ! = NULL & &
2009-09-26 22:55:18 +04:00
! gensec_security_ops_enabled ( backends [ i ] , gensec_security ) )
2008-11-02 21:28:17 +03:00
continue ;
2005-12-05 06:20:40 +03:00
if ( backends [ i ] - > name
& & ( strcmp ( backends [ i ] - > name , name ) = = 0 ) ) {
2006-01-28 15:15:24 +03:00
backend = backends [ i ] ;
talloc_free ( mem_ctx ) ;
return backend ;
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
}
}
2006-01-28 15:15:24 +03:00
talloc_free ( mem_ctx ) ;
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 NULL ;
}
2005-11-05 14:02:37 +03:00
/**
* Return a unique list of security subsystems from those specified in
2005-12-05 06:20:40 +03:00
* the list of SASL names .
2005-11-05 14:02:37 +03:00
*
2005-12-05 06:20:40 +03:00
* Use the list of enabled GENSEC mechanisms from the credentials
* attached to the gensec_security , and return in our preferred order .
2005-11-05 14:02:37 +03:00
*/
2006-02-04 12:53:50 +03:00
const struct gensec_security_ops * * gensec_security_by_sasl_list ( struct gensec_security * gensec_security ,
TALLOC_CTX * mem_ctx ,
const char * * sasl_names )
2005-11-05 14:02:37 +03:00
{
const struct gensec_security_ops * * backends_out ;
2006-01-28 15:15:24 +03:00
struct gensec_security_ops * * backends ;
2005-11-05 14:02:37 +03:00
int i , k , sasl_idx ;
int num_backends_out = 0 ;
if ( ! sasl_names ) {
return NULL ;
}
2006-01-28 15:15:24 +03:00
backends = gensec_security_mechs ( gensec_security , mem_ctx ) ;
2005-11-05 14:02:37 +03:00
backends_out = talloc_array ( mem_ctx , const struct gensec_security_ops * , 1 ) ;
if ( ! backends_out ) {
return NULL ;
}
backends_out [ 0 ] = NULL ;
/* Find backends in our preferred order, by walking our list,
* then looking in the supplied list */
2005-12-05 06:20:40 +03:00
for ( i = 0 ; backends & & backends [ i ] ; i + + ) {
2008-11-03 01:58:49 +03:00
if ( gensec_security ! = NULL & &
2009-09-26 22:55:18 +04:00
! gensec_security_ops_enabled ( backends [ i ] , gensec_security ) )
2008-11-02 21:28:17 +03:00
continue ;
2005-11-05 14:02:37 +03:00
for ( sasl_idx = 0 ; sasl_names [ sasl_idx ] ; sasl_idx + + ) {
if ( ! backends [ i ] - > sasl_name | |
! ( strcmp ( backends [ i ] - > sasl_name ,
sasl_names [ sasl_idx ] ) = = 0 ) ) {
continue ;
}
for ( k = 0 ; backends_out [ k ] ; k + + ) {
if ( backends_out [ k ] = = backends [ i ] ) {
break ;
}
}
if ( k < num_backends_out ) {
/* already in there */
continue ;
}
backends_out = talloc_realloc ( mem_ctx , backends_out ,
const struct gensec_security_ops * ,
num_backends_out + 2 ) ;
if ( ! backends_out ) {
return NULL ;
}
backends_out [ num_backends_out ] = backends [ i ] ;
num_backends_out + + ;
backends_out [ num_backends_out ] = NULL ;
}
}
return backends_out ;
}
2005-05-16 03:42:11 +04:00
/**
* Return a unique list of security subsystems from those specified in
* the OID list . That is , where two OIDs refer to the same module ,
2005-12-05 06:20:40 +03:00
* return that module only once .
2005-05-16 03:42:11 +04:00
*
2005-12-05 06:20:40 +03:00
* Use the list of enabled GENSEC mechanisms from the credentials
* attached to the gensec_security , and return in our preferred order .
2005-05-16 03:42:11 +04:00
*/
2005-12-05 06:20:40 +03:00
const struct gensec_security_ops_wrapper * gensec_security_by_oid_list ( struct gensec_security * gensec_security ,
TALLOC_CTX * mem_ctx ,
2005-05-16 03:42:11 +04:00
const char * * oid_strings ,
const char * skip )
2004-08-11 20:13:25 +04:00
{
2005-05-16 03:42:11 +04:00
struct gensec_security_ops_wrapper * backends_out ;
2006-01-28 15:15:24 +03:00
struct gensec_security_ops * * backends ;
2005-05-16 03:42:11 +04:00
int i , j , k , oid_idx ;
int num_backends_out = 0 ;
if ( ! oid_strings ) {
return NULL ;
}
2006-01-28 15:15:24 +03:00
backends = gensec_security_mechs ( gensec_security , gensec_security ) ;
2005-05-16 03:42:11 +04:00
backends_out = talloc_array ( mem_ctx , struct gensec_security_ops_wrapper , 1 ) ;
if ( ! backends_out ) {
return NULL ;
}
backends_out [ 0 ] . op = NULL ;
backends_out [ 0 ] . oid = NULL ;
2005-11-05 14:02:37 +03:00
/* Find backends in our preferred order, by walking our list,
* then looking in the supplied list */
2005-12-05 06:20:40 +03:00
for ( i = 0 ; backends & & backends [ i ] ; i + + ) {
2008-11-03 01:58:49 +03:00
if ( gensec_security ! = NULL & &
2009-09-26 22:55:18 +04:00
! gensec_security_ops_enabled ( backends [ i ] , gensec_security ) )
2008-11-02 21:28:17 +03:00
continue ;
2005-11-05 14:02:37 +03:00
if ( ! backends [ i ] - > oid ) {
2005-05-16 03:42:11 +04:00
continue ;
}
2005-11-05 14:02:37 +03:00
for ( oid_idx = 0 ; oid_strings [ oid_idx ] ; oid_idx + + ) {
if ( strcmp ( oid_strings [ oid_idx ] , skip ) = = 0 ) {
2005-05-16 03:42:11 +04:00
continue ;
}
2005-11-05 14:02:37 +03:00
2005-05-16 03:42:11 +04:00
for ( j = 0 ; backends [ i ] - > oid [ j ] ; j + + ) {
if ( ! backends [ i ] - > oid [ j ] | |
! ( strcmp ( backends [ i ] - > oid [ j ] ,
oid_strings [ oid_idx ] ) = = 0 ) ) {
continue ;
}
for ( k = 0 ; backends_out [ k ] . op ; k + + ) {
if ( backends_out [ k ] . op = = backends [ i ] ) {
break ;
}
}
if ( k < num_backends_out ) {
/* already in there */
continue ;
}
backends_out = talloc_realloc ( mem_ctx , backends_out ,
struct gensec_security_ops_wrapper ,
num_backends_out + 2 ) ;
if ( ! backends_out ) {
return NULL ;
}
backends_out [ num_backends_out ] . op = backends [ i ] ;
backends_out [ num_backends_out ] . oid = backends [ i ] - > oid [ j ] ;
num_backends_out + + ;
backends_out [ num_backends_out ] . op = NULL ;
backends_out [ num_backends_out ] . oid = NULL ;
}
}
}
return backends_out ;
}
/**
* Return OIDS from the security subsystems listed
*/
2008-11-03 01:58:49 +03:00
const char * * gensec_security_oids_from_ops ( struct gensec_security * gensec_security ,
TALLOC_CTX * mem_ctx ,
2006-01-28 15:15:24 +03:00
struct gensec_security_ops * * ops ,
2005-05-16 03:42:11 +04:00
const char * skip )
{
int i ;
int j = 0 ;
int k ;
const char * * oid_list ;
2004-08-11 20:13:25 +04:00
if ( ! ops ) {
return NULL ;
}
2005-05-16 03:42:11 +04:00
oid_list = talloc_array ( mem_ctx , const char * , 1 ) ;
2004-08-11 20:13:25 +04:00
if ( ! oid_list ) {
return NULL ;
}
2005-12-05 06:20:40 +03:00
for ( i = 0 ; ops & & ops [ i ] ; i + + ) {
2008-11-03 01:58:49 +03:00
if ( gensec_security ! = NULL & &
2009-09-26 22:55:18 +04:00
! gensec_security_ops_enabled ( ops [ i ] , gensec_security ) ) {
2008-11-03 01:58:49 +03:00
continue ;
}
2004-08-11 20:13:25 +04:00
if ( ! ops [ i ] - > oid ) {
continue ;
}
2005-05-16 03:42:11 +04:00
for ( k = 0 ; ops [ i ] - > oid [ k ] ; k + + ) {
if ( skip & & strcmp ( skip , ops [ i ] - > oid [ k ] ) = = 0 ) {
} else {
oid_list = talloc_realloc ( mem_ctx , oid_list , const char * , j + 2 ) ;
if ( ! oid_list ) {
return NULL ;
}
oid_list [ j ] = ops [ i ] - > oid [ k ] ;
j + + ;
}
2004-08-11 20:13:25 +04:00
}
}
oid_list [ j ] = NULL ;
return oid_list ;
}
2005-05-16 03:42:11 +04:00
2005-08-20 10:14:14 +04:00
/**
* Return OIDS from the security subsystems listed
*/
const char * * gensec_security_oids_from_ops_wrapped ( TALLOC_CTX * mem_ctx ,
const struct gensec_security_ops_wrapper * wops )
{
int i ;
int j = 0 ;
int k ;
const char * * oid_list ;
if ( ! wops ) {
return NULL ;
}
oid_list = talloc_array ( mem_ctx , const char * , 1 ) ;
if ( ! oid_list ) {
return NULL ;
}
for ( i = 0 ; wops [ i ] . op ; i + + ) {
if ( ! wops [ i ] . op - > oid ) {
continue ;
}
for ( k = 0 ; wops [ i ] . op - > oid [ k ] ; k + + ) {
oid_list = talloc_realloc ( mem_ctx , oid_list , const char * , j + 2 ) ;
if ( ! oid_list ) {
return NULL ;
}
oid_list [ j ] = wops [ i ] . op - > oid [ k ] ;
j + + ;
}
}
oid_list [ j ] = NULL ;
return oid_list ;
}
2005-05-16 03:42:11 +04:00
/**
2005-12-05 06:20:40 +03:00
* Return all the security subsystems currently enabled on a GENSEC context .
*
2007-12-02 21:31:14 +03:00
* This is taken from a list attached to the cli_credentials , and
2005-12-05 06:20:40 +03:00
* skips the OID in ' skip ' . ( Typically the SPNEGO OID )
*
2005-05-16 03:42:11 +04:00
*/
2005-12-05 06:20:40 +03:00
const char * * gensec_security_oids ( struct gensec_security * gensec_security ,
TALLOC_CTX * mem_ctx ,
const char * skip )
2005-05-16 03:42:11 +04:00
{
2006-01-28 15:15:24 +03:00
struct gensec_security_ops * * ops
= gensec_security_mechs ( gensec_security , mem_ctx ) ;
2008-11-03 01:58:49 +03:00
return gensec_security_oids_from_ops ( gensec_security , mem_ctx , ops , skip ) ;
2005-05-16 03:42:11 +04:00
}
2005-01-05 06:21:45 +03:00
/**
Start the GENSEC system , returning a context pointer .
@ param mem_ctx The parent TALLOC memory context .
@ param gensec_security Returned GENSEC context pointer .
@ note The mem_ctx is only a parent and may be NULL .
2009-07-01 08:08:43 +04:00
@ note , the auth context is moved to be a child of the
@ gensec_security return
2004-09-25 16:08:57 +04:00
*/
2005-06-16 15:36:09 +04:00
static NTSTATUS gensec_start ( TALLOC_CTX * mem_ctx ,
2008-12-29 22:24:57 +03:00
struct tevent_context * ev ,
2008-11-02 04:05:48 +03:00
struct gensec_settings * settings ,
2009-02-13 02:24:16 +03:00
struct auth_context * auth_context ,
2006-07-31 18:05:08 +04:00
struct gensec_security * * gensec_security )
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
{
2008-04-22 01:58:23 +04:00
if ( ev = = NULL ) {
DEBUG ( 0 , ( " No event context available! \n " ) ) ;
return NT_STATUS_INTERNAL_ERROR ;
}
2010-09-27 08:11:42 +04:00
( * gensec_security ) = talloc_zero ( mem_ctx , struct gensec_security ) ;
2005-06-16 15:36:09 +04:00
NT_STATUS_HAVE_NO_MEMORY ( * gensec_security ) ;
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
2005-06-16 15:36:09 +04:00
( * gensec_security ) - > event_ctx = ev ;
2008-11-03 01:58:49 +03:00
SMB_ASSERT ( settings - > lp_ctx ! = NULL ) ;
2008-11-02 07:49:36 +03:00
( * gensec_security ) - > settings = talloc_reference ( * gensec_security , settings ) ;
2009-07-01 08:08:43 +04:00
( * gensec_security ) - > auth_context = talloc_steal ( * gensec_security , auth_context ) ;
2005-06-16 15:36: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 NT_STATUS_OK ;
}
2004-07-06 06:59:05 +04:00
/**
* Start a GENSEC subcontext , with a copy of the properties of the parent
2005-01-05 06:21:45 +03:00
* @ param mem_ctx The parent TALLOC memory context .
* @ param parent The parent GENSEC context
* @ param gensec_security Returned GENSEC context pointer .
r5902: A rather large change...
I wanted to add a simple 'workstation' argument to the DCERPC
authenticated binding calls, but this patch kind of grew from there.
With SCHANNEL, the 'workstation' name (the netbios name of the client)
matters, as this is what ties the session between the NETLOGON ops and
the SCHANNEL bind. This changes a lot of files, and these will again
be changed when jelmer does the credentials work.
I also correct some schannel IDL to distinguish between workstation
names and account names. The distinction matters for domain trust
accounts.
Issues in handling this (issues with lifetime of talloc pointers)
caused me to change the 'creds_CredentialsState' and 'struct
dcerpc_binding' pointers to always be talloc()ed pointers.
In the schannel DB, we now store both the domain and computername, and
query on both. This should ensure we fault correctly when the domain
is specified incorrectly in the SCHANNEL bind.
In the RPC-SCHANNEL test, I finally fixed a bug that vl pointed out,
where the comment claimed we re-used a connection, but in fact we made
a new connection.
This was achived by breaking apart some of the
dcerpc_secondary_connection() logic.
The addition of workstation handling was also propogated to NTLMSSP
and GENSEC, for completeness.
The RPC-SAMSYNC test has been cleaned up a little, using a loop over
usernames/passwords rather than manually expanded tests. This will be
expanded further (the code in #if 0 in this patch) to use a newly
created user account for testing.
In making this test pass test_rpc.sh, I found a bug in the RPC-ECHO
server, caused by the removal of [ref] and the assoicated pointer from
the IDL. This has been re-added, until the underlying pidl issues are
solved.
(This used to be commit 824289dcc20908ddec957a4a892a103eec2da9b9)
2005-03-19 11:34:43 +03:00
* @ note Used by SPNEGO in particular , for the actual implementation mechanism
2004-07-06 06:59:05 +04:00
*/
2006-03-05 20:15:19 +03:00
_PUBLIC_ NTSTATUS gensec_subcontext_start ( TALLOC_CTX * mem_ctx ,
2004-12-24 12:54:23 +03:00
struct gensec_security * parent ,
2004-07-06 06:59:05 +04:00
struct gensec_security * * gensec_security )
{
2010-09-27 08:11:42 +04:00
( * gensec_security ) = talloc_zero ( mem_ctx , struct gensec_security ) ;
2005-06-16 15:36:09 +04:00
NT_STATUS_HAVE_NO_MEMORY ( * gensec_security ) ;
2004-07-06 06:59:05 +04:00
( * * gensec_security ) = * parent ;
( * gensec_security ) - > ops = NULL ;
( * gensec_security ) - > private_data = NULL ;
2007-10-07 02:16:19 +04:00
( * gensec_security ) - > subcontext = true ;
2008-10-01 04:27:09 +04:00
( * gensec_security ) - > want_features = parent - > want_features ;
2005-06-16 15:36:09 +04:00
( * gensec_security ) - > event_ctx = parent - > event_ctx ;
2009-02-13 02:24:16 +03:00
( * gensec_security ) - > auth_context = talloc_reference ( * gensec_security , parent - > auth_context ) ;
2008-11-02 07:49:36 +03:00
( * gensec_security ) - > settings = talloc_reference ( * gensec_security , parent - > settings ) ;
2009-02-13 02:24:16 +03:00
( * gensec_security ) - > auth_context = talloc_reference ( * gensec_security , parent - > auth_context ) ;
2004-07-06 06:59:05 +04:00
2004-07-06 18:42:07 +04:00
return NT_STATUS_OK ;
2004-07-06 06:59:05 +04:00
}
2005-01-05 06:21:45 +03:00
/**
Start the GENSEC system , in client mode , returning a context pointer .
@ param mem_ctx The parent TALLOC memory context .
@ param gensec_security Returned GENSEC context pointer .
@ note The mem_ctx is only a parent and may be NULL .
*/
2006-03-05 20:15:19 +03:00
_PUBLIC_ NTSTATUS gensec_client_start ( TALLOC_CTX * mem_ctx ,
2005-06-16 15:36:09 +04:00
struct gensec_security * * gensec_security ,
2008-12-29 22:24:57 +03:00
struct tevent_context * ev ,
2008-11-02 04:05:48 +03:00
struct gensec_settings * settings )
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 status ;
2006-07-31 18:05:08 +04:00
2008-11-03 01:58:49 +03:00
if ( settings = = NULL ) {
DEBUG ( 0 , ( " gensec_client_start: no settings given! \n " ) ) ;
return NT_STATUS_INTERNAL_ERROR ;
}
2008-11-02 04:05:48 +03:00
status = gensec_start ( mem_ctx , ev , settings , NULL , gensec_security ) ;
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 ( status ) ) {
return status ;
}
( * gensec_security ) - > gensec_role = GENSEC_CLIENT ;
return status ;
}
2010-04-13 06:00:06 +04:00
2005-01-05 06:21:45 +03:00
/**
Start the GENSEC system , in server mode , returning a context pointer .
@ param mem_ctx The parent TALLOC memory context .
@ param gensec_security Returned GENSEC context pointer .
@ note The mem_ctx is only a parent and may be NULL .
*/
2008-04-02 06:53:27 +04:00
_PUBLIC_ NTSTATUS gensec_server_start ( TALLOC_CTX * mem_ctx ,
2009-02-13 02:24:16 +03:00
struct tevent_context * ev ,
struct gensec_settings * settings ,
struct auth_context * auth_context ,
struct gensec_security * * gensec_security )
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 status ;
2006-07-31 18:05:08 +04:00
if ( ! ev ) {
DEBUG ( 0 , ( " gensec_server_start: no event context given! \n " ) ) ;
return NT_STATUS_INTERNAL_ERROR ;
}
2008-11-03 01:58:49 +03:00
if ( ! settings ) {
DEBUG ( 0 , ( " gensec_server_start: no settings given! \n " ) ) ;
return NT_STATUS_INTERNAL_ERROR ;
}
2009-02-13 02:24:16 +03:00
status = gensec_start ( mem_ctx , ev , settings , auth_context , gensec_security ) ;
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 ( status ) ) {
return status ;
}
( * gensec_security ) - > gensec_role = GENSEC_SERVER ;
return status ;
}
static NTSTATUS gensec_start_mech ( struct gensec_security * gensec_security )
{
NTSTATUS status ;
2004-07-13 09:14:59 +04:00
DEBUG ( 5 , ( " Starting GENSEC %smechanism %s \n " ,
gensec_security - > subcontext ? " sub " : " " ,
gensec_security - > ops - > name ) ) ;
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
switch ( gensec_security - > gensec_role ) {
case GENSEC_CLIENT :
if ( gensec_security - > ops - > client_start ) {
2007-12-03 19:41:50 +03:00
status = gensec_security - > ops - > client_start ( gensec_security ) ;
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 ( status ) ) {
2005-07-26 09:07:15 +04:00
DEBUG ( 2 , ( " Failed to start GENSEC client mech %s: %s \n " ,
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
gensec_security - > ops - > name , nt_errstr ( status ) ) ) ;
}
return status ;
}
2006-03-15 05:39:05 +03:00
break ;
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
case GENSEC_SERVER :
if ( gensec_security - > ops - > server_start ) {
status = gensec_security - > ops - > server_start ( gensec_security ) ;
if ( ! NT_STATUS_IS_OK ( status ) ) {
2004-11-08 05:43:49 +03:00
DEBUG ( 1 , ( " Failed to start GENSEC server mech %s: %s \n " ,
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
gensec_security - > ops - > name , nt_errstr ( status ) ) ) ;
}
return status ;
}
2006-03-15 05:39:05 +03:00
break ;
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 NT_STATUS_INVALID_PARAMETER ;
}
2004-07-06 06:59:05 +04:00
/**
* Start a GENSEC sub - mechanism by DCERPC allocated ' auth type ' number
2005-01-05 06:21:45 +03:00
* @ param gensec_security GENSEC context pointer .
* @ param auth_type DCERPC auth type
* @ param auth_level DCERPC auth level
2004-07-06 06:59:05 +04:00
*/
2008-04-02 06:53:27 +04:00
_PUBLIC_ NTSTATUS gensec_start_mech_by_authtype ( struct gensec_security * gensec_security ,
2004-08-25 06:25:20 +04:00
uint8_t auth_type , uint8_t auth_level )
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
{
2005-12-05 06:20:40 +03:00
gensec_security - > ops = gensec_security_by_authtype ( gensec_security , auth_type ) ;
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 ( ! gensec_security - > ops ) {
2004-08-25 06:25:20 +04:00
DEBUG ( 3 , ( " Could not find GENSEC backend for auth_type=%d \n " , ( int ) auth_type ) ) ;
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 NT_STATUS_INVALID_PARAMETER ;
}
2004-12-21 15:39:39 +03:00
gensec_want_feature ( gensec_security , GENSEC_FEATURE_DCE_STYLE ) ;
2005-08-20 10:14:14 +04:00
gensec_want_feature ( gensec_security , GENSEC_FEATURE_ASYNC_REPLIES ) ;
2004-08-25 06:25:20 +04:00
if ( auth_level = = DCERPC_AUTH_LEVEL_INTEGRITY ) {
2004-12-06 18:44:17 +03:00
gensec_want_feature ( gensec_security , GENSEC_FEATURE_SIGN ) ;
2005-04-25 07:37:37 +04:00
} else if ( auth_level = = DCERPC_AUTH_LEVEL_PRIVACY ) {
2004-12-06 18:44:17 +03:00
gensec_want_feature ( gensec_security , GENSEC_FEATURE_SIGN ) ;
gensec_want_feature ( gensec_security , GENSEC_FEATURE_SEAL ) ;
2005-04-25 07:37:37 +04:00
} else if ( auth_level = = DCERPC_AUTH_LEVEL_CONNECT ) {
/* Default features */
} else {
DEBUG ( 2 , ( " auth_level %d not supported in DCE/RPC authentication \n " ,
auth_level ) ) ;
return NT_STATUS_INVALID_PARAMETER ;
2004-08-25 06:25:20 +04:00
}
2004-08-25 11:13:01 +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_start_mech ( gensec_security ) ;
}
2008-11-03 01:58:49 +03:00
_PUBLIC_ const char * gensec_get_name_by_authtype ( struct gensec_security * gensec_security , uint8_t authtype )
2004-08-10 08:28:00 +04:00
{
const struct gensec_security_ops * ops ;
2008-11-03 01:58:49 +03:00
ops = gensec_security_by_authtype ( gensec_security , authtype ) ;
2004-08-10 08:28:00 +04:00
if ( ops ) {
return ops - > name ;
}
return NULL ;
}
2008-11-03 01:58:49 +03:00
_PUBLIC_ const char * gensec_get_name_by_oid ( struct gensec_security * gensec_security ,
const char * oid_string )
2004-09-13 08:28:10 +04:00
{
const struct gensec_security_ops * ops ;
2008-11-03 01:58:49 +03:00
ops = gensec_security_by_oid ( gensec_security , oid_string ) ;
2004-09-13 08:28:10 +04:00
if ( ops ) {
return ops - > name ;
}
2005-10-20 07:47:55 +04:00
return oid_string ;
2004-09-13 08:28:10 +04:00
}
2010-09-23 00:57:07 +04:00
/**
* Start a GENSEC sub - mechanism with a specified mechansim structure , used in SPNEGO
2005-05-16 03:42:11 +04:00
*
*/
NTSTATUS gensec_start_mech_by_ops ( struct gensec_security * gensec_security ,
const struct gensec_security_ops * ops )
{
gensec_security - > ops = ops ;
return gensec_start_mech ( gensec_security ) ;
}
2004-07-06 06:59:05 +04:00
/**
* Start a GENSEC sub - mechanism by OID , used in SPNEGO
*
* @ note This should also be used when you wish to just start NLTMSSP ( for example ) , as it uses a
* well - known # define to hook it in .
*/
2008-04-02 06:53:27 +04:00
_PUBLIC_ NTSTATUS gensec_start_mech_by_oid ( struct gensec_security * gensec_security ,
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
const char * mech_oid )
{
2008-11-03 01:58:49 +03:00
SMB_ASSERT ( gensec_security ! = NULL ) ;
2005-12-05 06:20:40 +03:00
gensec_security - > ops = gensec_security_by_oid ( gensec_security , mech_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
if ( ! gensec_security - > ops ) {
2004-07-06 06:59:05 +04:00
DEBUG ( 3 , ( " Could not find GENSEC backend for oid=%s \n " , mech_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
return NT_STATUS_INVALID_PARAMETER ;
}
return gensec_start_mech ( gensec_security ) ;
}
2004-07-06 06:59:05 +04:00
/**
* Start a GENSEC sub - mechanism by a well know SASL name
*
*/
2008-04-02 06:53:27 +04:00
_PUBLIC_ NTSTATUS gensec_start_mech_by_sasl_name ( struct gensec_security * gensec_security ,
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
const char * sasl_name )
{
2005-12-05 06:20:40 +03:00
gensec_security - > ops = gensec_security_by_sasl_name ( gensec_security , sasl_name ) ;
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 ( ! gensec_security - > ops ) {
2004-07-06 06:59:05 +04:00
DEBUG ( 3 , ( " Could not find GENSEC backend for sasl_name=%s \n " , sasl_name ) ) ;
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 NT_STATUS_INVALID_PARAMETER ;
}
return gensec_start_mech ( gensec_security ) ;
2005-10-20 07:47:55 +04:00
}
2006-02-04 12:53:50 +03:00
/**
* Start a GENSEC sub - mechanism with the preferred option from a SASL name list
*
*/
2006-03-05 20:15:19 +03:00
_PUBLIC_ NTSTATUS gensec_start_mech_by_sasl_list ( struct gensec_security * gensec_security ,
2006-09-08 08:36:41 +04:00
const char * * sasl_names )
2006-02-04 12:53:50 +03:00
{
2006-09-10 14:00:42 +04:00
NTSTATUS nt_status = NT_STATUS_INVALID_PARAMETER ;
2006-02-04 12:53:50 +03:00
TALLOC_CTX * mem_ctx = talloc_new ( gensec_security ) ;
const struct gensec_security_ops * * ops ;
2006-09-08 08:36:41 +04:00
int i ;
2006-02-04 12:53:50 +03:00
if ( ! mem_ctx ) {
return NT_STATUS_NO_MEMORY ;
}
ops = gensec_security_by_sasl_list ( gensec_security , mem_ctx , sasl_names ) ;
if ( ! ops | | ! * ops ) {
DEBUG ( 3 , ( " Could not find GENSEC backend for any of sasl_name = %s \n " ,
str_list_join ( mem_ctx ,
sasl_names , ' ' ) ) ) ;
talloc_free ( mem_ctx ) ;
return NT_STATUS_INVALID_PARAMETER ;
}
2006-09-08 08:36:41 +04:00
for ( i = 0 ; ops [ i ] ; i + + ) {
nt_status = gensec_start_mech_by_ops ( gensec_security , ops [ i ] ) ;
if ( ! NT_STATUS_EQUAL ( nt_status , NT_STATUS_INVALID_PARAMETER ) ) {
break ;
}
}
2006-02-04 12:53:50 +03:00
talloc_free ( mem_ctx ) ;
return nt_status ;
}
2005-10-20 07:47:55 +04:00
/**
* Start a GENSEC sub - mechanism by an internal name
*
*/
2008-04-02 06:53:27 +04:00
_PUBLIC_ NTSTATUS gensec_start_mech_by_name ( struct gensec_security * gensec_security ,
2005-10-20 07:47:55 +04:00
const char * name )
{
2005-12-05 06:20:40 +03:00
gensec_security - > ops = gensec_security_by_name ( gensec_security , name ) ;
2005-10-20 07:47:55 +04:00
if ( ! gensec_security - > ops ) {
DEBUG ( 3 , ( " Could not find GENSEC backend for name=%s \n " , name ) ) ;
return NT_STATUS_INVALID_PARAMETER ;
}
return gensec_start_mech ( gensec_security ) ;
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
}
/*
wrappers for the gensec function pointers
*/
2008-04-02 06:53:27 +04:00
_PUBLIC_ NTSTATUS gensec_unseal_packet ( struct gensec_security * gensec_security ,
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
TALLOC_CTX * mem_ctx ,
2004-09-11 19:11:36 +04:00
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 )
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 14:29:54 +04:00
if ( ! gensec_security - > ops - > unseal_packet ) {
return NT_STATUS_NOT_IMPLEMENTED ;
}
2004-12-06 18:44:17 +03:00
if ( ! gensec_have_feature ( gensec_security , GENSEC_FEATURE_SEAL ) ) {
2004-10-07 18:44:18 +04:00
return NT_STATUS_INVALID_PARAMETER ;
}
2005-08-20 10:14:14 +04:00
2004-09-11 19:11:36 +04:00
return gensec_security - > ops - > unseal_packet ( gensec_security , mem_ctx ,
data , length ,
whole_pdu , pdu_length ,
sig ) ;
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
}
2008-04-02 06:53:27 +04:00
_PUBLIC_ NTSTATUS gensec_check_packet ( struct gensec_security * gensec_security ,
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
TALLOC_CTX * mem_ctx ,
const uint8_t * data , size_t length ,
2004-09-11 19:11:36 +04:00
const uint8_t * whole_pdu , size_t pdu_length ,
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
const DATA_BLOB * sig )
{
2004-07-11 14:29:54 +04:00
if ( ! gensec_security - > ops - > check_packet ) {
return NT_STATUS_NOT_IMPLEMENTED ;
}
2004-12-06 18:44:17 +03:00
if ( ! gensec_have_feature ( gensec_security , GENSEC_FEATURE_SIGN ) ) {
2004-08-25 06:25:20 +04:00
return NT_STATUS_INVALID_PARAMETER ;
}
2004-09-11 19:11:36 +04:00
return gensec_security - > ops - > check_packet ( gensec_security , mem_ctx , data , length , whole_pdu , pdu_length , sig ) ;
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
}
2008-04-02 06:53:27 +04:00
_PUBLIC_ NTSTATUS gensec_seal_packet ( struct gensec_security * gensec_security ,
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
TALLOC_CTX * mem_ctx ,
uint8_t * data , size_t length ,
2004-09-11 19:11:36 +04:00
const uint8_t * whole_pdu , size_t pdu_length ,
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
DATA_BLOB * sig )
{
2004-07-11 14:29:54 +04:00
if ( ! gensec_security - > ops - > seal_packet ) {
return NT_STATUS_NOT_IMPLEMENTED ;
}
2004-12-06 18:44:17 +03:00
if ( ! gensec_have_feature ( gensec_security , GENSEC_FEATURE_SEAL ) ) {
2004-08-25 06:25:20 +04:00
return NT_STATUS_INVALID_PARAMETER ;
}
2005-08-20 10:14:14 +04:00
2004-09-11 19:11:36 +04:00
return gensec_security - > ops - > seal_packet ( gensec_security , mem_ctx , data , length , whole_pdu , pdu_length , sig ) ;
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
}
2008-04-02 06:53:27 +04:00
_PUBLIC_ NTSTATUS gensec_sign_packet ( struct gensec_security * gensec_security ,
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
TALLOC_CTX * mem_ctx ,
const uint8_t * data , size_t length ,
2004-09-11 19:11:36 +04:00
const uint8_t * whole_pdu , size_t pdu_length ,
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
DATA_BLOB * sig )
{
2004-07-11 14:29:54 +04:00
if ( ! gensec_security - > ops - > sign_packet ) {
return NT_STATUS_NOT_IMPLEMENTED ;
}
2004-12-06 18:44:17 +03:00
if ( ! gensec_have_feature ( gensec_security , GENSEC_FEATURE_SIGN ) ) {
2004-08-25 06:25:20 +04:00
return NT_STATUS_INVALID_PARAMETER ;
}
2004-09-11 19:11:36 +04:00
return gensec_security - > ops - > sign_packet ( gensec_security , mem_ctx , data , length , whole_pdu , pdu_length , sig ) ;
}
2008-04-02 06:53:27 +04:00
_PUBLIC_ size_t gensec_sig_size ( struct gensec_security * gensec_security , size_t data_size )
2004-09-11 19:11:36 +04:00
{
if ( ! gensec_security - > ops - > sig_size ) {
return 0 ;
}
2004-12-06 18:44:17 +03:00
if ( ! gensec_have_feature ( gensec_security , GENSEC_FEATURE_SIGN ) ) {
2004-09-11 19:11:36 +04:00
return 0 ;
}
2005-09-11 15:19:02 +04:00
return gensec_security - > ops - > sig_size ( gensec_security , data_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
}
2006-09-05 13:42:54 +04:00
size_t gensec_max_wrapped_size ( struct gensec_security * gensec_security )
2006-07-21 05:44:24 +04:00
{
2006-09-05 13:42:54 +04:00
if ( ! gensec_security - > ops - > max_wrapped_size ) {
return ( 1 < < 17 ) ;
2006-07-21 05:44:24 +04:00
}
2006-09-05 13:42:54 +04:00
return gensec_security - > ops - > max_wrapped_size ( gensec_security ) ;
2006-07-21 05:44:24 +04:00
}
2006-09-05 13:42:54 +04:00
size_t gensec_max_input_size ( struct gensec_security * gensec_security )
2006-07-21 05:44:24 +04:00
{
2006-09-05 13:42:54 +04:00
if ( ! gensec_security - > ops - > max_input_size ) {
return ( 1 < < 17 ) - gensec_sig_size ( gensec_security , 1 < < 17 ) ;
2006-07-21 05:44:24 +04:00
}
2006-09-05 13:42:54 +04:00
return gensec_security - > ops - > max_input_size ( gensec_security ) ;
2006-07-21 05:44:24 +04:00
}
2008-04-02 06:53:27 +04:00
_PUBLIC_ NTSTATUS gensec_wrap ( struct gensec_security * gensec_security ,
2005-01-01 01:45:11 +03:00
TALLOC_CTX * mem_ctx ,
const DATA_BLOB * in ,
DATA_BLOB * out )
{
if ( ! gensec_security - > ops - > wrap ) {
return NT_STATUS_NOT_IMPLEMENTED ;
}
return gensec_security - > ops - > wrap ( gensec_security , mem_ctx , in , out ) ;
}
2008-04-02 06:53:27 +04:00
_PUBLIC_ NTSTATUS gensec_unwrap ( struct gensec_security * gensec_security ,
2005-01-01 01:45:11 +03:00
TALLOC_CTX * mem_ctx ,
const DATA_BLOB * in ,
DATA_BLOB * out )
{
if ( ! gensec_security - > ops - > unwrap ) {
return NT_STATUS_NOT_IMPLEMENTED ;
}
return gensec_security - > ops - > unwrap ( gensec_security , mem_ctx , in , out ) ;
}
2008-04-02 06:53:27 +04:00
_PUBLIC_ NTSTATUS gensec_session_key ( struct gensec_security * gensec_security ,
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
DATA_BLOB * session_key )
{
2004-07-11 14:29:54 +04:00
if ( ! gensec_security - > ops - > session_key ) {
return NT_STATUS_NOT_IMPLEMENTED ;
}
2005-08-20 10:14:14 +04:00
if ( ! gensec_have_feature ( gensec_security , GENSEC_FEATURE_SESSION_KEY ) ) {
return NT_STATUS_NO_USER_SESSION_KEY ;
}
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_security - > ops - > session_key ( gensec_security , session_key ) ;
}
2004-07-11 14:29:54 +04:00
/**
* Return the credentials of a logged on user , including session keys
* etc .
*
* Only valid after a successful authentication
*
* May only be called once per authentication .
*
*/
2008-04-02 06:53:27 +04:00
_PUBLIC_ NTSTATUS gensec_session_info ( struct gensec_security * gensec_security ,
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 auth_session_info * * session_info )
{
2004-08-12 01:06:11 +04:00
if ( ! gensec_security - > ops - > session_info ) {
return NT_STATUS_NOT_IMPLEMENTED ;
}
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_security - > ops - > session_info ( gensec_security , session_info ) ;
}
/**
* Next state function for the GENSEC state machine
*
* @ param gensec_security GENSEC State
* @ param out_mem_ctx The TALLOC_CTX for * out to be allocated on
* @ param in The request , as a DATA_BLOB
* @ param out The reply , as an talloc ( ) ed DATA_BLOB , on * out_mem_ctx
* @ return Error , MORE_PROCESSING_REQUIRED if a reply is sent ,
* or NT_STATUS_OK if the user is authenticated .
*/
2006-03-05 20:15:19 +03:00
_PUBLIC_ NTSTATUS gensec_update ( struct gensec_security * gensec_security , TALLOC_CTX * out_mem_ctx ,
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
const DATA_BLOB in , DATA_BLOB * out )
{
return gensec_security - > ops - > update ( gensec_security , out_mem_ctx , in , out ) ;
}
2009-12-22 18:24:44 +03:00
struct gensec_update_state {
struct tevent_immediate * im ;
struct gensec_security * gensec_security ;
DATA_BLOB in ;
DATA_BLOB out ;
} ;
2006-07-27 14:02:21 +04:00
2009-12-22 18:24:44 +03:00
static void gensec_update_async_trigger ( struct tevent_context * ctx ,
struct tevent_immediate * im ,
void * private_data ) ;
2006-07-27 14:02:21 +04:00
/**
* Next state function for the GENSEC state machine async version
2009-12-22 18:24:44 +03:00
*
* @ param mem_ctx The memory context for the request
* @ param ev The event context for the request
2006-07-27 14:02:21 +04:00
* @ param gensec_security GENSEC State
* @ param in The request , as a DATA_BLOB
2009-12-22 18:24:44 +03:00
*
* @ return The request handle or NULL on no memory failure
2006-07-27 14:02:21 +04:00
*/
2009-12-22 18:24:44 +03:00
_PUBLIC_ struct tevent_req * gensec_update_send ( TALLOC_CTX * mem_ctx ,
struct tevent_context * ev ,
struct gensec_security * gensec_security ,
const DATA_BLOB in )
{
struct tevent_req * req ;
struct gensec_update_state * state = NULL ;
req = tevent_req_create ( mem_ctx , & state ,
struct gensec_update_state ) ;
if ( req = = NULL ) {
return NULL ;
}
state - > gensec_security = gensec_security ;
state - > in = in ;
state - > out = data_blob ( NULL , 0 ) ;
state - > im = tevent_create_immediate ( state ) ;
if ( tevent_req_nomem ( state - > im , req ) ) {
return tevent_req_post ( req , ev ) ;
}
tevent_schedule_immediate ( state - > im , ev ,
gensec_update_async_trigger ,
req ) ;
return req ;
}
static void gensec_update_async_trigger ( struct tevent_context * ctx ,
struct tevent_immediate * im ,
void * private_data )
2006-07-27 14:02:21 +04:00
{
2009-12-22 18:24:44 +03:00
struct tevent_req * req =
talloc_get_type_abort ( private_data , struct tevent_req ) ;
struct gensec_update_state * state =
tevent_req_data ( req , struct gensec_update_state ) ;
NTSTATUS status ;
status = gensec_update ( state - > gensec_security , state ,
state - > in , & state - > out ) ;
if ( tevent_req_nterror ( req , status ) ) {
return ;
}
tevent_req_done ( req ) ;
2006-07-27 14:02:21 +04:00
}
/**
* Next state function for the GENSEC state machine
*
2009-12-22 18:24:44 +03:00
* @ param req request state
2006-07-27 14:02:21 +04:00
* @ param out_mem_ctx The TALLOC_CTX for * out to be allocated on
* @ param out The reply , as an talloc ( ) ed DATA_BLOB , on * out_mem_ctx
* @ return Error , MORE_PROCESSING_REQUIRED if a reply is sent ,
* or NT_STATUS_OK if the user is authenticated .
*/
2009-12-22 18:24:44 +03:00
_PUBLIC_ NTSTATUS gensec_update_recv ( struct tevent_req * req ,
TALLOC_CTX * out_mem_ctx ,
DATA_BLOB * out )
2006-07-27 14:02:21 +04:00
{
2009-12-22 18:24:44 +03:00
struct gensec_update_state * state =
tevent_req_data ( req , struct gensec_update_state ) ;
2006-07-27 14:02:21 +04:00
NTSTATUS status ;
2009-12-22 18:24:44 +03:00
if ( tevent_req_is_nterror ( req , & status ) ) {
if ( ! NT_STATUS_EQUAL ( status , NT_STATUS_MORE_PROCESSING_REQUIRED ) ) {
tevent_req_received ( req ) ;
return status ;
}
} else {
status = NT_STATUS_OK ;
}
2006-07-27 14:02:21 +04:00
2009-12-22 18:24:44 +03:00
* out = state - > out ;
2006-07-27 14:02:21 +04:00
talloc_steal ( out_mem_ctx , out - > data ) ;
2009-12-22 18:24:44 +03:00
tevent_req_received ( req ) ;
2006-07-27 14:02:21 +04:00
return status ;
}
2004-08-25 06:25:20 +04:00
/**
* Set the requirement for a certain feature on the connection
*
*/
2006-03-05 20:15:19 +03:00
_PUBLIC_ void gensec_want_feature ( struct gensec_security * gensec_security ,
2005-01-31 19:02:58 +03:00
uint32_t feature )
2004-08-25 06:25:20 +04:00
{
2008-10-01 04:27:09 +04:00
if ( ! gensec_security - > ops | | ! gensec_security - > ops - > want_feature ) {
gensec_security - > want_features | = feature ;
return ;
}
gensec_security - > ops - > want_feature ( gensec_security , feature ) ;
2004-08-25 06:25:20 +04:00
}
2004-10-08 15:29:43 +04:00
/**
* Check the requirement for a certain feature on the connection
*
*/
2007-10-07 02:16:19 +04:00
_PUBLIC_ bool gensec_have_feature ( struct gensec_security * gensec_security ,
2005-01-31 19:02:58 +03:00
uint32_t feature )
2004-10-08 15:29:43 +04:00
{
2005-01-01 01:45:11 +03:00
if ( ! gensec_security - > ops - > have_feature ) {
2007-10-07 02:16:19 +04:00
return false ;
2004-10-08 15:29:43 +04:00
}
2005-08-20 10:14:14 +04:00
2006-07-25 06:21:54 +04:00
/* We might 'have' features that we don't 'want', because the
* other end demanded them , or we can ' t neotiate them off */
return gensec_security - > ops - > have_feature ( gensec_security , feature ) ;
2004-10-08 15:29:43 +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
/**
2006-01-03 01:00:40 +03:00
* Associate a credentials structure with a GENSEC context - talloc_reference ( ) s it to the context
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
*
*/
2006-03-05 20:15:19 +03:00
_PUBLIC_ NTSTATUS gensec_set_credentials ( struct gensec_security * gensec_security , struct cli_credentials * credentials )
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
{
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
gensec_security - > credentials = talloc_reference ( gensec_security , credentials ) ;
2006-12-13 00:47:56 +03:00
NT_STATUS_HAVE_NO_MEMORY ( gensec_security - > credentials ) ;
gensec_want_feature ( gensec_security , cli_credentials_get_gensec_features ( gensec_security - > credentials ) ) ;
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 NT_STATUS_OK ;
}
/**
2006-01-03 01:00:40 +03:00
* Return the credentials structure associated with a GENSEC context
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
*
*/
2008-04-02 06:53:27 +04:00
_PUBLIC_ struct cli_credentials * gensec_get_credentials ( struct gensec_security * gensec_security )
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
{
2005-12-11 11:31:46 +03:00
if ( ! gensec_security ) {
return NULL ;
}
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
return gensec_security - > credentials ;
2004-07-11 14:29:54 +04:00
}
2004-07-13 09:14:59 +04:00
/**
* Set the target service ( such as ' http ' or ' host ' ) on a GENSEC context - ensures it is talloc ( ) ed
*
*/
2006-03-05 20:15:19 +03:00
_PUBLIC_ NTSTATUS gensec_set_target_service ( struct gensec_security * gensec_security , const char * service )
2004-07-13 09:14:59 +04:00
{
2004-09-25 16:08:57 +04:00
gensec_security - > target . service = talloc_strdup ( gensec_security , service ) ;
2004-07-13 09:14:59 +04:00
if ( ! gensec_security - > target . service ) {
return NT_STATUS_NO_MEMORY ;
}
return NT_STATUS_OK ;
}
2006-03-05 20:15:19 +03:00
_PUBLIC_ const char * gensec_get_target_service ( struct gensec_security * gensec_security )
2005-09-17 13:46:20 +04:00
{
if ( gensec_security - > target . service ) {
return gensec_security - > target . service ;
}
return " host " ;
}
2004-07-13 09:14:59 +04:00
/**
* Set the target hostname ( suitable for kerberos resolutation ) on a GENSEC context - ensures it is talloc ( ) ed
*
*/
2006-03-05 20:15:19 +03:00
_PUBLIC_ NTSTATUS gensec_set_target_hostname ( struct gensec_security * gensec_security , const char * hostname )
2004-07-13 09:14:59 +04:00
{
2004-09-25 16:08:57 +04:00
gensec_security - > target . hostname = talloc_strdup ( gensec_security , hostname ) ;
2006-10-13 16:54:13 +04:00
if ( hostname & & ! gensec_security - > target . hostname ) {
2004-07-13 09:14:59 +04:00
return NT_STATUS_NO_MEMORY ;
}
return NT_STATUS_OK ;
}
2006-03-05 20:15:19 +03:00
_PUBLIC_ const char * gensec_get_target_hostname ( struct gensec_security * gensec_security )
2004-07-13 09:14:59 +04:00
{
2006-03-25 14:30:06 +03:00
/* We allow the target hostname to be overriden for testing purposes */
2008-11-02 04:05:48 +03:00
if ( gensec_security - > settings - > target_hostname ) {
return gensec_security - > settings - > target_hostname ;
2006-03-25 14:30:06 +03:00
}
2004-07-13 09:14:59 +04:00
if ( gensec_security - > target . hostname ) {
return gensec_security - > target . hostname ;
}
2006-01-03 01:00:40 +03:00
/* We could add use the 'set sockaddr' call, and do a reverse
* lookup , but this would be both insecure ( compromising the
* way kerberos works ) and add DNS timeouts */
2004-07-13 09:14:59 +04:00
return NULL ;
}
2009-12-16 15:27:20 +03:00
/**
* Set ( and talloc_reference ) local and peer socket addresses onto a socket
* context on the GENSEC context .
2006-01-03 01:00:40 +03:00
*
* This is so that kerberos can include these addresses in
* cryptographic tokens , to avoid certain attacks .
*/
2009-12-16 15:27:20 +03:00
/**
* @ brief Set the local gensec address .
*
* @ param gensec_security The gensec security context to use .
*
* @ param remote The local address to set .
*
* @ return On success NT_STATUS_OK is returned or an NT_STATUS
* error .
*/
_PUBLIC_ NTSTATUS gensec_set_local_address ( struct gensec_security * gensec_security ,
const struct tsocket_address * local )
{
TALLOC_FREE ( gensec_security - > local_addr ) ;
2009-12-16 22:34:15 +03:00
if ( local = = NULL ) {
return NT_STATUS_OK ;
}
2009-12-16 15:27:20 +03:00
gensec_security - > local_addr = tsocket_address_copy ( local , gensec_security ) ;
if ( gensec_security - > local_addr = = NULL ) {
return NT_STATUS_NO_MEMORY ;
}
return NT_STATUS_OK ;
}
/**
* @ brief Set the remote gensec address .
*
* @ param gensec_security The gensec security context to use .
*
* @ param remote The remote address to set .
*
* @ return On success NT_STATUS_OK is returned or an NT_STATUS
* error .
*/
_PUBLIC_ NTSTATUS gensec_set_remote_address ( struct gensec_security * gensec_security ,
const struct tsocket_address * remote )
{
TALLOC_FREE ( gensec_security - > remote_addr ) ;
2009-12-16 22:34:15 +03:00
if ( remote = = NULL ) {
return NT_STATUS_OK ;
}
2009-12-16 15:27:20 +03:00
gensec_security - > remote_addr = tsocket_address_copy ( remote , gensec_security ) ;
if ( gensec_security - > remote_addr = = NULL ) {
return NT_STATUS_NO_MEMORY ;
}
return NT_STATUS_OK ;
}
/**
* @ brief Get the local address from a gensec security context .
*
* @ param gensec_security The security context to get the address from .
*
* @ return The address as tsocket_address which could be NULL if
* no address is set .
*/
_PUBLIC_ const struct tsocket_address * gensec_get_local_address ( struct gensec_security * gensec_security )
{
if ( gensec_security = = NULL ) {
return NULL ;
}
return gensec_security - > local_addr ;
}
/**
* @ brief Get the remote address from a gensec security context .
*
* @ param gensec_security The security context to get the address from .
*
* @ return The address as tsocket_address which could be NULL if
* no address is set .
*/
_PUBLIC_ const struct tsocket_address * gensec_get_remote_address ( struct gensec_security * gensec_security )
{
if ( gensec_security = = NULL ) {
return NULL ;
}
return gensec_security - > remote_addr ;
}
2005-09-17 13:46:20 +04:00
/**
* Set the target principal ( assuming it it known , say from the SPNEGO reply )
* - ensures it is talloc ( ) ed
*
*/
2010-05-13 01:59:41 +04:00
_PUBLIC_ NTSTATUS gensec_set_target_principal ( struct gensec_security * gensec_security , const char * principal )
2004-07-13 09:14:59 +04:00
{
2005-09-17 13:46:20 +04:00
gensec_security - > target . principal = talloc_strdup ( gensec_security , principal ) ;
if ( ! gensec_security - > target . principal ) {
return NT_STATUS_NO_MEMORY ;
}
return NT_STATUS_OK ;
}
const char * gensec_get_target_principal ( struct gensec_security * gensec_security )
{
if ( gensec_security - > target . principal ) {
return gensec_security - > target . principal ;
2004-07-13 09:14:59 +04:00
}
2005-09-17 13:46:20 +04:00
return NULL ;
2004-07-13 09:14:59 +04:00
}
2010-04-13 06:00:06 +04:00
NTSTATUS gensec_generate_session_info ( TALLOC_CTX * mem_ctx ,
struct gensec_security * gensec_security ,
struct auth_serversupplied_info * server_info ,
struct auth_session_info * * session_info )
{
NTSTATUS nt_status ;
if ( gensec_security - > auth_context ) {
2010-04-19 09:51:57 +04:00
uint32_t flags = AUTH_SESSION_INFO_DEFAULT_GROUPS ;
if ( server_info - > authenticated ) {
flags | = AUTH_SESSION_INFO_AUTHENTICATED ;
}
2010-04-13 06:00:06 +04:00
nt_status = gensec_security - > auth_context - > generate_session_info ( mem_ctx , gensec_security - > auth_context ,
2010-04-19 09:51:57 +04:00
server_info ,
flags ,
session_info ) ;
2010-04-13 06:00:06 +04:00
} else {
nt_status = auth_generate_simple_session_info ( mem_ctx ,
server_info , session_info ) ;
}
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
/*
register a GENSEC backend .
The ' name ' can be later used by other backends to find the operations
structure for this backend .
*/
2006-01-28 15:15:24 +03:00
NTSTATUS gensec_register ( const struct gensec_security_ops * 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
{
2005-12-05 06:20:40 +03:00
if ( gensec_security_by_name ( NULL , ops - > name ) ! = 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
/* its already registered! */
DEBUG ( 0 , ( " GENSEC backend '%s' already registered \n " ,
ops - > name ) ) ;
return NT_STATUS_OBJECT_NAME_COLLISION ;
}
2006-01-28 15:15:24 +03:00
generic_security_ops = talloc_realloc ( talloc_autofree_context ( ) ,
generic_security_ops ,
struct gensec_security_ops * ,
gensec_num_backends + 2 ) ;
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 ( ! generic_security_ops ) {
2006-03-20 03:28:12 +03:00
return NT_STATUS_NO_MEMORY ;
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
}
2007-09-07 17:31:15 +04:00
generic_security_ops [ gensec_num_backends ] = discard_const_p ( struct gensec_security_ops , ops ) ;
2004-08-11 20:13:25 +04:00
gensec_num_backends + + ;
2005-12-01 07:58:15 +03:00
generic_security_ops [ gensec_num_backends ] = 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
DEBUG ( 3 , ( " GENSEC backend '%s' registered \n " ,
ops - > name ) ) ;
return NT_STATUS_OK ;
}
/*
return the GENSEC interface version , and the size of some critical types
This can be used by backends to either detect compilation errors , or provide
multiple implementations for different smbd compilation options in one module
*/
const struct gensec_critical_sizes * gensec_interface_version ( void )
{
static const struct gensec_critical_sizes critical_sizes = {
GENSEC_INTERFACE_VERSION ,
sizeof ( struct gensec_security_ops ) ,
sizeof ( struct gensec_security ) ,
} ;
return & critical_sizes ;
}
2006-09-08 09:24:44 +04:00
static int sort_gensec ( struct gensec_security_ops * * gs1 , struct gensec_security_ops * * gs2 ) {
2006-09-08 10:21:02 +04:00
return ( * gs2 ) - > priority - ( * gs1 ) - > priority ;
2006-09-08 09:24:44 +04:00
}
2008-11-02 04:05:48 +03:00
int gensec_setting_int ( struct gensec_settings * settings , const char * mechanism , const char * name , int default_value )
{
2010-07-16 08:32:42 +04:00
return lpcfg_parm_int ( settings - > lp_ctx , NULL , mechanism , name , default_value ) ;
2008-11-02 04:05:48 +03:00
}
bool gensec_setting_bool ( struct gensec_settings * settings , const char * mechanism , const char * name , bool default_value )
{
2010-07-16 08:32:42 +04:00
return lpcfg_parm_bool ( settings - > lp_ctx , NULL , mechanism , name , default_value ) ;
2008-11-02 04:05:48 +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
/*
initialise the GENSEC subsystem
*/
2008-04-02 06:53:27 +04:00
_PUBLIC_ NTSTATUS gensec_init ( struct loadparm_context * lp_ctx )
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
{
2007-10-07 02:16:19 +04:00
static bool initialized = false ;
2008-02-26 03:20:55 +03:00
extern NTSTATUS gensec_sasl_init ( void ) ;
extern NTSTATUS gensec_krb5_init ( void ) ;
extern NTSTATUS gensec_schannel_init ( void ) ;
extern NTSTATUS gensec_spnego_init ( void ) ;
extern NTSTATUS gensec_gssapi_init ( void ) ;
extern NTSTATUS gensec_ntlmssp_init ( void ) ;
2005-12-31 01:46:16 +03:00
2007-12-24 10:28:22 +03:00
init_module_fn static_init [ ] = { STATIC_gensec_MODULES } ;
2006-04-06 20:08:46 +04:00
init_module_fn * shared_init ;
2005-12-26 19:46:55 +03:00
2005-12-31 01:46:16 +03:00
if ( initialized ) return NT_STATUS_OK ;
2007-10-07 02:16:19 +04:00
initialized = true ;
2006-04-06 20:08:46 +04:00
2007-12-02 19:09:43 +03:00
shared_init = load_samba_modules ( NULL , lp_ctx , " gensec " ) ;
2005-12-31 01:46:16 +03:00
2005-12-26 19:46:55 +03:00
run_init_functions ( static_init ) ;
run_init_functions ( shared_init ) ;
talloc_free ( shared_init ) ;
2006-09-08 09:24:44 +04:00
2010-02-13 05:00:03 +03:00
TYPESAFE_QSORT ( generic_security_ops , gensec_num_backends , sort_gensec ) ;
2005-12-26 19:46:55 +03:00
2004-11-07 02:23:15 +03:00
return NT_STATUS_OK ;
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
}