2008-05-17 03:52:47 +04:00
/*
Unix SMB / CIFS implementation .
helper functions for NAMED PIPE servers
Copyright ( C ) Stefan ( metze ) Metzmacher 2008
This program is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation ; either version 3 of the License , or
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
along with this program . If not , see < http : //www.gnu.org/licenses/>.
*/
# include "includes.h"
2009-01-03 17:24:31 +03:00
# include <tevent.h>
2008-05-17 03:52:47 +04:00
# include "smbd/service.h"
# include "param/param.h"
2010-04-13 06:00:06 +04:00
# include "auth/auth.h"
2008-05-17 03:52:47 +04:00
# include "auth/session.h"
2009-01-21 12:43:15 +03:00
# include "auth/auth_sam_reply.h"
2010-02-04 19:03:04 +03:00
# include "lib/socket/socket.h"
# include "lib/tsocket/tsocket.h"
# include "libcli/util/tstream.h"
2008-05-17 03:52:47 +04:00
# include "librpc/gen_ndr/ndr_named_pipe_auth.h"
# include "system/passwd.h"
2010-02-04 19:03:04 +03:00
# include "system/network.h"
2009-04-21 06:55:42 +04:00
# include "libcli/raw/smb.h"
2009-09-17 20:41:00 +04:00
# include "auth/credentials/credentials.h"
# include "auth/credentials/credentials_krb5.h"
2010-09-20 11:42:13 +04:00
# include "libcli/security/security.h"
2010-05-21 20:29:22 +04:00
# include "libcli/named_pipe_auth/npa_tstream.h"
2008-05-17 03:52:47 +04:00
struct named_pipe_socket {
const char * pipe_name ;
const char * pipe_path ;
const struct stream_server_ops * ops ;
void * private_data ;
} ;
2010-05-21 20:29:22 +04:00
static void named_pipe_accept_done ( struct tevent_req * subreq ) ;
2009-09-17 20:41:00 +04:00
2010-02-04 19:03:04 +03:00
static void named_pipe_accept ( struct stream_connection * conn )
{
2010-05-21 20:29:22 +04:00
struct tstream_context * plain_tstream ;
int fd ;
2010-02-04 19:03:04 +03:00
struct tevent_req * subreq ;
2010-05-21 20:29:22 +04:00
int ret ;
2010-02-04 19:03:04 +03:00
2010-05-21 20:29:22 +04:00
/* Let tstream take over fd operations */
2008-05-17 03:52:47 +04:00
2010-05-21 20:29:22 +04:00
fd = socket_get_fd ( conn - > socket ) ;
socket_set_flags ( conn - > socket , SOCKET_FLAG_NOCLOSE ) ;
2010-02-04 19:03:04 +03:00
TALLOC_FREE ( conn - > event . fde ) ;
2010-05-21 20:29:22 +04:00
TALLOC_FREE ( conn - > socket ) ;
2010-02-04 19:03:04 +03:00
2010-05-21 20:29:22 +04:00
ret = tstream_bsd_existing_socket ( conn , fd , & plain_tstream ) ;
if ( ret ! = 0 ) {
2010-02-04 19:03:04 +03:00
stream_terminate_connection ( conn ,
" named_pipe_accept: out of memory " ) ;
return ;
}
2010-02-04 19:03:04 +03:00
2010-05-21 20:29:22 +04:00
subreq = tstream_npa_accept_existing_send ( conn , conn - > event . ctx ,
plain_tstream ,
FILE_TYPE_MESSAGE_MODE_PIPE ,
0xff | 0x0400 | 0x0100 ,
4096 ) ;
2010-02-04 19:03:04 +03:00
if ( subreq = = NULL ) {
2010-05-21 20:29:22 +04:00
stream_terminate_connection ( conn ,
" named_pipe_accept: "
" no memory for tstream_npa_accept_existing_send " ) ;
2010-02-04 19:03:04 +03:00
return ;
}
2010-05-21 20:29:22 +04:00
tevent_req_set_callback ( subreq , named_pipe_accept_done , conn ) ;
2010-02-25 00:35:35 +03:00
}
2010-02-04 19:03:04 +03:00
2010-05-21 20:29:22 +04:00
static void named_pipe_accept_done ( struct tevent_req * subreq )
2008-05-17 03:52:47 +04:00
{
2010-05-21 20:29:22 +04:00
struct stream_connection * conn = tevent_req_callback_data ( subreq ,
struct stream_connection ) ;
struct named_pipe_socket * pipe_sock =
talloc_get_type ( conn - > private_data ,
struct named_pipe_socket ) ;
struct tsocket_address * client ;
char * client_name ;
struct tsocket_address * server ;
char * server_name ;
struct netr_SamInfo3 * info3 ;
DATA_BLOB session_key ;
DATA_BLOB delegated_creds ;
2008-05-17 03:52:47 +04:00
union netr_Validation val ;
struct auth_serversupplied_info * server_info ;
2010-04-13 06:00:06 +04:00
struct auth_context * auth_context ;
2010-04-19 09:51:57 +04:00
uint32_t session_flags = 0 ;
struct dom_sid * anonymous_sid ;
2010-05-21 20:29:22 +04:00
const char * reason = NULL ;
TALLOC_CTX * tmp_ctx ;
2008-05-17 03:52:47 +04:00
NTSTATUS status ;
2010-05-21 20:29:22 +04:00
int error ;
2010-04-26 15:56:06 +04:00
int ret ;
2008-05-17 03:52:47 +04:00
2010-05-21 20:29:22 +04:00
tmp_ctx = talloc_new ( conn ) ;
if ( ! tmp_ctx ) {
reason = " Out of memory! \n " ;
goto out ;
2010-02-04 19:03:04 +03:00
}
2010-05-21 20:29:22 +04:00
ret = tstream_npa_accept_existing_recv ( subreq , & error , tmp_ctx ,
& conn - > tstream ,
& client ,
& client_name ,
& server ,
& server_name ,
& info3 ,
& session_key ,
& delegated_creds ) ;
2010-02-04 19:03:04 +03:00
TALLOC_FREE ( subreq ) ;
2010-05-21 20:29:22 +04:00
if ( ret ! = 0 ) {
reason = talloc_asprintf ( conn ,
" tstream_npa_accept_existing_recv() "
" failed: %s " , strerror ( error ) ) ;
goto out ;
2008-05-17 03:52:47 +04:00
}
2010-05-21 20:29:22 +04:00
DEBUG ( 10 , ( " Accepted npa connection from %s. "
" Client: %s (%s). Server: %s (%s) \n " ,
tsocket_address_string ( conn - > remote_address , tmp_ctx ) ,
client_name , tsocket_address_string ( client , tmp_ctx ) ,
server_name , tsocket_address_string ( server , tmp_ctx ) ) ) ;
if ( info3 ) {
val . sam3 = info3 ;
status = make_server_info_netlogon_validation ( conn ,
val . sam3 - > base . account_name . string ,
3 , & val , & server_info ) ;
if ( ! NT_STATUS_IS_OK ( status ) ) {
reason = talloc_asprintf ( conn ,
" make_server_info_netlogon_validation "
" returned: %s " , nt_errstr ( status ) ) ;
goto out ;
2008-05-17 03:52:47 +04:00
}
2010-05-21 20:29:22 +04:00
status = auth_context_create ( conn , conn - > event . ctx ,
conn - > msg_ctx , conn - > lp_ctx ,
& auth_context ) ;
if ( ! NT_STATUS_IS_OK ( status ) ) {
reason = talloc_asprintf ( conn ,
" auth_context_create returned: %s " ,
nt_errstr ( status ) ) ;
goto out ;
2010-04-13 06:00:06 +04:00
}
2010-05-21 20:29:22 +04:00
anonymous_sid = dom_sid_parse_talloc ( auth_context ,
SID_NT_ANONYMOUS ) ;
2010-04-19 09:51:57 +04:00
if ( anonymous_sid = = NULL ) {
talloc_free ( auth_context ) ;
2010-05-21 20:29:22 +04:00
reason = " Failed to parse Anonymous SID " ;
goto out ;
2010-04-19 09:51:57 +04:00
}
session_flags = AUTH_SESSION_INFO_DEFAULT_GROUPS ;
2011-01-20 15:39:37 +03:00
if ( server_info - > num_sids > 1 & & ! dom_sid_equal ( anonymous_sid , & server_info - > sids [ 0 ] ) ) {
2010-04-19 09:51:57 +04:00
session_flags | = AUTH_SESSION_INFO_AUTHENTICATED ;
}
2010-04-13 06:00:06 +04:00
2009-04-21 06:55:42 +04:00
/* setup the session_info on the connection */
2010-05-21 20:29:22 +04:00
status = auth_context - > generate_session_info ( conn ,
auth_context ,
server_info ,
session_flags ,
& conn - > session_info ) ;
2010-04-13 06:00:06 +04:00
talloc_free ( auth_context ) ;
2010-05-21 20:29:22 +04:00
if ( ! NT_STATUS_IS_OK ( status ) ) {
reason = talloc_asprintf ( conn ,
" auth_generate_session_info "
" returned: %s " , nt_errstr ( status ) ) ;
goto out ;
2010-02-04 19:03:04 +03:00
}
2008-05-17 03:52:47 +04:00
}
2010-05-21 20:29:22 +04:00
if ( session_key . length ) {
conn - > session_info - > session_key = session_key ;
talloc_steal ( conn - > session_info , session_key . data ) ;
2009-04-21 06:55:42 +04:00
}
2010-05-21 20:29:22 +04:00
if ( delegated_creds . length ) {
struct cli_credentials * creds ;
OM_uint32 minor_status ;
gss_buffer_desc cred_token ;
gss_cred_id_t cred_handle ;
const char * error_string ;
2010-02-04 19:03:04 +03:00
2010-05-21 20:29:22 +04:00
DEBUG ( 10 , ( " Delegated credentials supplied by client \n " ) ) ;
2010-02-04 19:03:04 +03:00
2010-05-21 20:29:22 +04:00
cred_token . value = delegated_creds . data ;
cred_token . length = delegated_creds . length ;
2008-05-17 03:52:47 +04:00
2010-05-21 20:29:22 +04:00
ret = gss_import_cred ( & minor_status ,
& cred_token ,
& cred_handle ) ;
if ( ret ! = GSS_S_COMPLETE ) {
reason = " Internal error in gss_import_cred() " ;
goto out ;
2010-02-04 19:03:04 +03:00
}
2008-05-17 03:52:47 +04:00
2010-05-21 20:29:22 +04:00
creds = cli_credentials_init ( conn - > session_info ) ;
if ( ! creds ) {
reason = " Out of memory in cli_credentials_init() " ;
goto out ;
}
conn - > session_info - > credentials = creds ;
cli_credentials_set_conf ( creds , conn - > lp_ctx ) ;
/* Just so we don't segfault trying to get at a username */
cli_credentials_set_anonymous ( creds ) ;
ret = cli_credentials_set_client_gss_creds ( creds ,
conn - > lp_ctx ,
cred_handle ,
CRED_SPECIFIED ,
& error_string ) ;
if ( ret ) {
reason = talloc_asprintf ( conn ,
" Failed to set pipe forwarded "
" creds: %s \n " , error_string ) ;
goto out ;
2010-02-04 19:03:04 +03:00
}
2010-05-21 20:29:22 +04:00
/* This credential handle isn't useful for password
* authentication , so ensure nobody tries to do that */
cli_credentials_set_kerberos_state ( creds ,
CRED_MUST_USE_KERBEROS ) ;
2010-02-04 19:03:04 +03:00
}
/*
* hand over to the real pipe implementation ,
* now that we have setup the transport session_info
*/
2010-05-21 20:29:22 +04:00
conn - > ops = pipe_sock - > ops ;
conn - > private_data = pipe_sock - > private_data ;
2010-02-04 19:03:04 +03:00
conn - > ops - > accept_connection ( conn ) ;
2010-05-21 20:29:22 +04:00
DEBUG ( 10 , ( " named pipe connection [%s] established \n " ,
conn - > ops - > name ) ) ;
2010-02-04 19:03:04 +03:00
2010-05-21 20:29:22 +04:00
talloc_free ( tmp_ctx ) ;
return ;
out :
talloc_free ( tmp_ctx ) ;
if ( ! reason ) {
reason = " Internal error " ;
}
stream_terminate_connection ( conn , reason ) ;
2008-05-17 03:52:47 +04:00
}
/*
2010-02-04 19:03:04 +03:00
called when a pipe socket becomes readable
2008-05-17 03:52:47 +04:00
*/
2010-02-04 19:03:04 +03:00
static void named_pipe_recv ( struct stream_connection * conn , uint16_t flags )
2008-05-17 03:52:47 +04:00
{
2010-05-21 20:29:22 +04:00
stream_terminate_connection ( conn , " named_pipe_recv: called " ) ;
2010-02-25 00:35:35 +03:00
}
/*
2010-02-04 19:03:04 +03:00
called when a pipe socket becomes writable
2010-02-25 00:35:35 +03:00
*/
2010-02-04 19:03:04 +03:00
static void named_pipe_send ( struct stream_connection * conn , uint16_t flags )
2010-02-25 00:35:35 +03:00
{
2010-05-21 20:29:22 +04:00
stream_terminate_connection ( conn , " named_pipe_send: called " ) ;
2008-05-17 03:52:47 +04:00
}
static const struct stream_server_ops named_pipe_stream_ops = {
. name = " named_pipe " ,
. accept_connection = named_pipe_accept ,
. recv_handler = named_pipe_recv ,
. send_handler = named_pipe_send ,
} ;
2010-11-15 02:12:22 +03:00
NTSTATUS tstream_setup_named_pipe ( TALLOC_CTX * mem_ctx ,
struct tevent_context * event_context ,
2010-05-21 20:29:22 +04:00
struct loadparm_context * lp_ctx ,
const struct model_ops * model_ops ,
const struct stream_server_ops * stream_ops ,
const char * pipe_name ,
void * private_data )
2008-05-17 03:52:47 +04:00
{
char * dirname ;
struct named_pipe_socket * pipe_sock ;
NTSTATUS status = NT_STATUS_NO_MEMORY ; ;
2010-11-15 02:12:22 +03:00
pipe_sock = talloc ( mem_ctx , struct named_pipe_socket ) ;
2008-05-17 03:52:47 +04:00
if ( pipe_sock = = NULL ) {
goto fail ;
}
/* remember the details about the pipe */
pipe_sock - > pipe_name = talloc_strdup ( pipe_sock , pipe_name ) ;
if ( pipe_sock - > pipe_name = = NULL ) {
goto fail ;
}
2010-07-16 08:32:42 +04:00
dirname = talloc_asprintf ( pipe_sock , " %s/np " , lpcfg_ncalrpc_dir ( lp_ctx ) ) ;
2008-05-17 03:52:47 +04:00
if ( dirname = = NULL ) {
goto fail ;
}
if ( ! directory_create_or_exist ( dirname , geteuid ( ) , 0700 ) ) {
status = map_nt_error_from_unix ( errno ) ;
2009-09-19 05:05:55 +04:00
DEBUG ( 0 , ( __location__ " : Failed to create stream pipe directory %s - %s \n " ,
dirname , nt_errstr ( status ) ) ) ;
2008-05-17 03:52:47 +04:00
goto fail ;
}
if ( strncmp ( pipe_name , " \\ pipe \\ " , 6 ) = = 0 ) {
pipe_name + = 6 ;
}
pipe_sock - > pipe_path = talloc_asprintf ( pipe_sock , " %s/%s " , dirname ,
pipe_name ) ;
if ( pipe_sock - > pipe_path = = NULL ) {
goto fail ;
}
talloc_free ( dirname ) ;
2010-05-21 20:29:22 +04:00
pipe_sock - > ops = stream_ops ;
pipe_sock - > private_data = private_data ;
2008-05-17 03:52:47 +04:00
2010-11-15 02:12:22 +03:00
status = stream_setup_socket ( pipe_sock ,
event_context ,
2008-05-17 03:52:47 +04:00
lp_ctx ,
model_ops ,
& named_pipe_stream_ops ,
" unix " ,
pipe_sock - > pipe_path ,
NULL ,
NULL ,
pipe_sock ) ;
if ( ! NT_STATUS_IS_OK ( status ) ) {
goto fail ;
}
return NT_STATUS_OK ;
fail :
talloc_free ( pipe_sock ) ;
return status ;
}