2005-05-02 14:17:19 +00:00
/*
Samba Unix / Linux SMB client library
Distributed SMB / CIFS Server Management Utility
Copyright ( C ) 2004 Stefan Metzmacher < metze @ samba . org >
Copyright ( C ) 2005 Andrew Bartlett < abartlet @ samba . org >
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 02:07:03 +00:00
the Free Software Foundation ; either version 3 of the License , or
2005-05-02 14:17:19 +00: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 02:07:03 +00:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
2005-05-02 14:17:19 +00:00
*/
# include "includes.h"
# include "utils/net/net.h"
# include "libnet/libnet.h"
2006-03-16 00:23:11 +00:00
# include "librpc/gen_ndr/samr.h"
2006-01-14 06:17:24 +00:00
# include "auth/auth.h"
2009-07-06 16:41:42 +10:00
# include "libcli/security/security.h"
2007-12-03 15:53:28 +01:00
# include "param/param.h"
2008-04-14 12:43:37 -04:00
# include "lib/events/events.h"
2005-05-02 14:17:19 +00:00
2005-12-21 22:02:52 +00:00
static int net_samdump_keytab_usage ( struct net_context * ctx , int argc , const char * * argv )
{
d_printf ( " net samdump keytab <keytab> \n " ) ;
return 0 ;
}
static int net_samdump_keytab_help ( struct net_context * ctx , int argc , const char * * argv )
{
d_printf ( " Dumps kerberos keys of a domain into a keytab. \n " ) ;
return 0 ;
}
static int net_samdump_keytab ( struct net_context * ctx , int argc , const char * * argv )
{
NTSTATUS status ;
struct libnet_context * libnetctx ;
struct libnet_SamDump_keytab r ;
switch ( argc ) {
case 0 :
return net_samdump_keytab_usage ( ctx , argc , argv ) ;
break ;
case 1 :
2006-01-12 09:33:49 +00:00
r . in . keytab_name = argv [ 0 ] ;
2005-12-21 22:02:52 +00:00
break ;
}
2008-04-16 22:30:15 +02:00
libnetctx = libnet_context_init ( ctx - > event_ctx , ctx - > lp_ctx ) ;
2005-12-21 22:02:52 +00:00
if ( ! libnetctx ) {
return - 1 ;
}
libnetctx - > cred = ctx - > credentials ;
2006-01-12 09:33:49 +00:00
r . out . error_string = NULL ;
r . in . machine_account = NULL ;
r . in . binding_string = NULL ;
2005-12-21 22:02:52 +00:00
2008-04-14 12:43:37 -04:00
status = libnet_SamDump_keytab ( libnetctx , ctx , & r ) ;
2005-12-21 22:02:52 +00:00
if ( ! NT_STATUS_IS_OK ( status ) ) {
DEBUG ( 0 , ( " libnet_SamDump returned %s: %s \n " ,
nt_errstr ( status ) ,
2006-01-12 09:33:49 +00:00
r . out . error_string ) ) ;
2005-12-21 22:02:52 +00:00
return - 1 ;
}
talloc_free ( libnetctx ) ;
return 0 ;
}
/* main function table */
static const struct net_functable net_samdump_functable [ ] = {
{ " keytab " , " dump keys into a keytab \n " , net_samdump_keytab , net_samdump_keytab_usage } ,
{ NULL , NULL , NULL , NULL }
} ;
2005-05-02 14:17:19 +00:00
int net_samdump ( struct net_context * ctx , int argc , const char * * argv )
{
NTSTATUS status ;
struct libnet_context * libnetctx ;
2005-07-25 04:15:57 +00:00
struct libnet_SamDump r ;
2005-12-21 22:02:52 +00:00
int rc ;
switch ( argc ) {
case 0 :
break ;
case 1 :
default :
rc = net_run_function ( ctx , argc , argv , net_samdump_functable ,
net_samdump_usage ) ;
return rc ;
}
2005-05-02 14:17:19 +00:00
2008-04-16 22:30:15 +02:00
libnetctx = libnet_context_init ( ctx - > event_ctx , ctx - > lp_ctx ) ;
2005-05-02 14:17:19 +00:00
if ( ! libnetctx ) {
return - 1 ;
}
2005-06-03 21:30:07 +00:00
libnetctx - > cred = ctx - > credentials ;
2005-05-02 14:17:19 +00:00
2006-01-12 09:33:49 +00:00
r . out . error_string = NULL ;
r . in . machine_account = NULL ;
r . in . binding_string = NULL ;
2005-05-02 14:17:19 +00:00
2008-04-14 12:43:37 -04:00
status = libnet_SamDump ( libnetctx , ctx , & r ) ;
2005-05-02 14:17:19 +00:00
if ( ! NT_STATUS_IS_OK ( status ) ) {
DEBUG ( 0 , ( " libnet_SamDump returned %s: %s \n " ,
nt_errstr ( status ) ,
2006-01-12 09:33:49 +00:00
r . out . error_string ) ) ;
2005-05-02 14:17:19 +00:00
return - 1 ;
}
2005-06-16 11:36:09 +00:00
talloc_free ( libnetctx ) ;
2005-05-02 14:17:19 +00:00
return 0 ;
}
int net_samdump_usage ( struct net_context * ctx , int argc , const char * * argv )
{
d_printf ( " net samdump \n " ) ;
2005-12-21 22:02:52 +00:00
d_printf ( " net samdump keytab <keytab> \n " ) ;
2005-05-02 14:17:19 +00:00
return 0 ;
}
int net_samdump_help ( struct net_context * ctx , int argc , const char * * argv )
{
d_printf ( " Dumps the sam of the domain we are joined to. \n " ) ;
return 0 ;
}
2005-07-25 06:33:51 +00:00
int net_samsync_ldb ( struct net_context * ctx , int argc , const char * * argv )
{
NTSTATUS status ;
struct libnet_context * libnetctx ;
struct libnet_samsync_ldb r ;
2008-04-16 22:30:15 +02:00
libnetctx = libnet_context_init ( ctx - > event_ctx , ctx - > lp_ctx ) ;
2005-07-25 06:33:51 +00:00
if ( ! libnetctx ) {
return - 1 ;
}
libnetctx - > cred = ctx - > credentials ;
2006-01-12 09:33:49 +00:00
r . out . error_string = NULL ;
r . in . machine_account = NULL ;
r . in . binding_string = NULL ;
2005-07-25 06:33:51 +00:00
2006-01-14 06:17:24 +00:00
/* Needed to override the ACLs on ldb */
2007-12-04 19:33:00 +01:00
r . in . session_info = system_session ( libnetctx , ctx - > lp_ctx ) ;
2006-01-14 06:17:24 +00:00
status = libnet_samsync_ldb ( libnetctx , libnetctx , & r ) ;
2005-07-25 06:33:51 +00:00
if ( ! NT_STATUS_IS_OK ( status ) ) {
DEBUG ( 0 , ( " libnet_samsync_ldb returned %s: %s \n " ,
nt_errstr ( status ) ,
2006-01-12 09:33:49 +00:00
r . out . error_string ) ) ;
2005-07-25 06:33:51 +00:00
return - 1 ;
}
talloc_free ( libnetctx ) ;
return 0 ;
}
int net_samsync_ldb_usage ( struct net_context * ctx , int argc , const char * * argv )
{
2008-04-09 14:59:32 +10:00
d_printf ( " net samsync \n " ) ;
2005-07-25 06:33:51 +00:00
return 0 ;
}
int net_samsync_ldb_help ( struct net_context * ctx , int argc , const char * * argv )
{
2006-05-07 13:40:56 +00:00
d_printf ( " Synchronise into the local ldb the SAM of a domain. \n " ) ;
2005-07-25 06:33:51 +00:00
return 0 ;
}
2009-07-06 16:41:42 +10:00
int net_vampire ( struct net_context * ctx , int argc , const char * * argv )
{
NTSTATUS status ;
struct libnet_context * libnetctx ;
struct libnet_Vampire * r ;
char * tmp , * targetdir = NULL ;
const char * domain_name ;
switch ( argc ) {
case 0 : /* no args -> fail */
return net_vampire_usage ( ctx , argc , argv ) ;
case 1 : /* only DOMAIN */
tmp = talloc_strdup ( ctx , argv [ 0 ] ) ;
break ;
case 2 : /* domain and target dir */
tmp = talloc_strdup ( ctx , argv [ 0 ] ) ;
targetdir = talloc_strdup ( ctx , argv [ 1 ] ) ;
break ;
default : /* too many args -> fail */
return net_vampire_usage ( ctx , argc , argv ) ;
}
domain_name = tmp ;
libnetctx = libnet_context_init ( ctx - > event_ctx , ctx - > lp_ctx ) ;
if ( ! libnetctx ) {
return - 1 ;
}
libnetctx - > cred = ctx - > credentials ;
r = talloc ( ctx , struct libnet_Vampire ) ;
if ( ! r ) {
return - 1 ;
}
/* prepare parameters for the vampire */
r - > in . netbios_name = lp_netbios_name ( ctx - > lp_ctx ) ;
r - > in . domain_name = domain_name ;
r - > in . targetdir = targetdir ;
r - > out . error_string = NULL ;
/* do the domain vampire */
status = libnet_Vampire ( libnetctx , r , r ) ;
if ( ! NT_STATUS_IS_OK ( status ) ) {
d_fprintf ( stderr , " Vampire of domain failed: %s \n " ,
r - > out . error_string ? r - > out . error_string : nt_errstr ( status ) ) ;
talloc_free ( r ) ;
talloc_free ( libnetctx ) ;
return - 1 ;
}
d_printf ( " Vampired domain %s (%s) \n " , r - > out . domain_name , dom_sid_string ( ctx , r - > out . domain_sid ) ) ;
talloc_free ( libnetctx ) ;
return 0 ;
}
int net_vampire_usage ( struct net_context * ctx , int argc , const char * * argv )
{
d_printf ( " net vampire <domain> [options] \n " ) ;
return 0 ;
}
int net_vampire_help ( struct net_context * ctx , int argc , const char * * argv )
{
d_printf ( " Join and synchronise a remote AD domain to the local server. \n " ) ;
return 0 ;
}