2021-04-07 10:13:25 +03:00
/*
* Unix SMB / CIFS implementation .
*
* 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"
# include "rpc_worker.h"
# include "librpc/gen_ndr/ndr_srvsvc.h"
# include "librpc/gen_ndr/ndr_srvsvc_scompat.h"
# include "librpc/gen_ndr/ndr_dfs.h"
# include "librpc/gen_ndr/ndr_dfs_scompat.h"
# include "librpc/gen_ndr/ndr_wkssvc.h"
# include "librpc/gen_ndr/ndr_wkssvc_scompat.h"
# include "librpc/gen_ndr/ndr_svcctl.h"
# include "librpc/gen_ndr/ndr_svcctl_scompat.h"
# include "librpc/gen_ndr/ndr_ntsvcs.h"
# include "librpc/gen_ndr/ndr_ntsvcs_scompat.h"
# include "librpc/gen_ndr/ndr_eventlog.h"
# include "librpc/gen_ndr/ndr_eventlog_scompat.h"
# include "librpc/gen_ndr/ndr_initshutdown.h"
# include "librpc/gen_ndr/ndr_initshutdown_scompat.h"
# include "source3/include/secrets.h"
# include "locking/share_mode_lock.h"
2022-07-08 15:14:22 +03:00
# include "source3/smbd/proto.h"
2021-04-07 10:13:25 +03:00
static size_t classic_interfaces (
const struct ndr_interface_table * * * pifaces ,
void * private_data )
{
static const struct ndr_interface_table * ifaces [ ] = {
& ndr_table_srvsvc ,
& ndr_table_netdfs ,
2023-09-12 03:28:49 +03:00
& ndr_table_initshutdown ,
2021-04-07 10:13:25 +03:00
& ndr_table_svcctl ,
& ndr_table_ntsvcs ,
& ndr_table_eventlog ,
2023-09-12 03:28:49 +03:00
/*
* This last item is truncated from the list by the
* num_ifaces - = 1 below . Take care when adding new
* services .
*/
& ndr_table_wkssvc ,
2021-04-07 10:13:25 +03:00
} ;
2023-09-12 03:28:49 +03:00
size_t num_ifaces = ARRAY_SIZE ( ifaces ) ;
switch ( lp_server_role ( ) ) {
case ROLE_ACTIVE_DIRECTORY_DC :
/*
* On the AD DC wkssvc is provided by the ' samba '
* binary from source4 /
*/
num_ifaces - = 1 ;
break ;
default :
break ;
}
2021-04-07 10:13:25 +03:00
* pifaces = ifaces ;
2023-09-12 03:28:49 +03:00
return num_ifaces ;
2021-04-07 10:13:25 +03:00
}
2023-08-09 17:06:06 +03:00
static NTSTATUS classic_servers (
2021-04-07 10:13:25 +03:00
struct dcesrv_context * dce_ctx ,
const struct dcesrv_endpoint_server * * * _ep_servers ,
2023-08-09 17:06:06 +03:00
size_t * _num_ep_servers ,
2021-04-07 10:13:25 +03:00
void * private_data )
{
static const struct dcesrv_endpoint_server * ep_servers [ 7 ] = { NULL } ;
2023-09-12 03:28:49 +03:00
size_t num_servers = ARRAY_SIZE ( ep_servers ) ;
2023-08-09 17:41:33 +03:00
NTSTATUS status ;
2021-04-07 10:13:25 +03:00
bool ok ;
ep_servers [ 0 ] = srvsvc_get_ep_server ( ) ;
ep_servers [ 1 ] = netdfs_get_ep_server ( ) ;
2023-09-12 03:28:49 +03:00
ep_servers [ 2 ] = initshutdown_get_ep_server ( ) ;
2021-04-07 10:13:25 +03:00
ep_servers [ 3 ] = svcctl_get_ep_server ( ) ;
ep_servers [ 4 ] = ntsvcs_get_ep_server ( ) ;
ep_servers [ 5 ] = eventlog_get_ep_server ( ) ;
2023-09-12 03:28:49 +03:00
ep_servers [ 6 ] = wkssvc_get_ep_server ( ) ;
switch ( lp_server_role ( ) ) {
case ROLE_ACTIVE_DIRECTORY_DC :
/*
* On the AD DC wkssvc is provided by the ' samba '
* binary from source4 /
*/
num_servers - = 1 ;
break ;
default :
break ;
}
2021-04-07 10:13:25 +03:00
ok = secrets_init ( ) ;
if ( ! ok ) {
DBG_ERR ( " secrets_init() failed \n " ) ;
exit ( 1 ) ;
}
ok = locking_init ( ) ;
if ( ! ok ) {
DBG_ERR ( " locking_init() failed \n " ) ;
exit ( 1 ) ;
}
2023-12-13 14:07:00 +03:00
status = share_info_db_init ( ) ;
if ( ! NT_STATUS_IS_OK ( status ) ) {
DBG_ERR ( " share_info_db_init failed: %s \n " , nt_errstr ( status ) ) ;
exit ( 1 ) ;
}
2021-04-07 10:13:25 +03:00
lp_load_with_shares ( get_dyn_CONFIGFILE ( ) ) ;
2022-07-08 15:14:22 +03:00
mangle_reset_cache ( ) ;
2023-08-09 17:41:33 +03:00
status = dcesrv_register_default_auth_types_machine_principal ( dce_ctx ) ;
if ( ! NT_STATUS_IS_OK ( status ) ) {
return status ;
}
2021-04-07 10:13:25 +03:00
* _ep_servers = ep_servers ;
2023-08-09 17:06:06 +03:00
* _num_ep_servers = num_servers ;
return NT_STATUS_OK ;
2021-04-07 10:13:25 +03:00
}
int main ( int argc , const char * argv [ ] )
{
return rpc_worker_main (
argc ,
argv ,
" rpcd_classic " ,
5 ,
60 ,
classic_interfaces ,
classic_servers ,
NULL ) ;
}