2007-09-18 01:04:10 +04:00
/*
Samba Unix / Linux SMB client library
2001-11-25 03:18:11 +03:00
net ads commands
Copyright ( C ) 2001 Andrew Tridgell ( tridge @ samba . org )
2001-12-20 06:54:52 +03:00
Copyright ( C ) 2001 Remus Koos ( remuskoos @ yahoo . com )
2002-02-02 05:06:03 +03:00
Copyright ( C ) 2002 Jim McDonough ( jmcd @ us . ibm . com )
2006-05-13 08:39:19 +04:00
Copyright ( C ) 2006 Gerald ( Jerry ) Carter ( jerry @ samba . org )
2001-11-25 03:18:11 +03: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-09 23:25:36 +04:00
the Free Software Foundation ; either version 3 of the License , or
2001-11-25 03:18:11 +03:00
( at your option ) any later version .
2007-09-18 01:04:10 +04:00
2001-11-25 03:18:11 +03:00
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 .
2007-09-18 01:04:10 +04:00
2001-11-25 03:18:11 +03:00
You should have received a copy of the GNU General Public License
2007-09-18 01:04:10 +04:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
2001-11-25 03:18:11 +03:00
*/
# include "includes.h"
2004-10-07 08:01:18 +04:00
# include "utils/net.h"
2001-11-25 03:18:11 +03:00
2008-02-28 13:55:36 +03:00
# include "libnet/libnet.h"
2001-11-25 03:18:11 +03:00
# ifdef HAVE_ADS
2008-05-15 12:14:41 +04:00
int net_ads_help ( struct net_context * c , int argc , const char * * argv )
2001-11-25 03:18:11 +03:00
{
2006-07-26 19:26:51 +04:00
d_printf ( " join [createupn[=principal]] [createcomputer=<org_unit>] \n " ) ;
d_printf ( " Join the local machine to a ADS realm \n " ) ;
d_printf ( " leave \n " ) ;
d_printf ( " Remove the local machine from a ADS realm \n " ) ;
d_printf ( " testjoin \n " ) ;
d_printf ( " Validates the machine account in the domain \n " ) ;
d_printf ( " user \n " ) ;
d_printf ( " List, add, or delete users in the realm \n " ) ;
d_printf ( " group \n " ) ;
d_printf ( " List, add, or delete groups in the realm \n " ) ;
d_printf ( " info \n " ) ;
d_printf ( " Displays details regarding a specific AD server \n " ) ;
d_printf ( " status \n " ) ;
d_printf ( " Display details regarding the machine's account in AD \n " ) ;
d_printf ( " lookup \n " ) ;
d_printf ( " Performs CLDAP query of AD domain controllers \n " ) ;
d_printf ( " password <username@realm> <password> -Uadmin_username@realm%%admin_pass \n " ) ;
d_printf ( " Change a user's password using an admin account \n " ) ;
d_printf ( " (note: use realm in UPPERCASE, prompts if password is obmitted) \n " ) ;
d_printf ( " changetrustpw \n " ) ;
d_printf ( " Change the trust account password of this machine in the AD tree \n " ) ;
d_printf ( " printer [info | publish | remove] <printername> <servername> \n " ) ;
d_printf ( " Lookup, add, or remove directory entry for a printer \n " ) ;
d_printf ( " {search,dn,sid} \n " ) ;
d_printf ( " Issue LDAP search queries using a general filter, by DN, or by SID \n " ) ;
d_printf ( " keytab \n " ) ;
d_printf ( " Manage a local keytab file based on the machine account in AD \n " ) ;
2006-08-24 19:43:32 +04:00
d_printf ( " dns \n " ) ;
d_printf ( " Issue a dynamic DNS update request the server's hostname \n " ) ;
d_printf ( " (using the machine credentials) \n " ) ;
2007-09-18 01:04:10 +04:00
2001-11-25 03:18:11 +03:00
return - 1 ;
}
2006-07-17 15:04:47 +04:00
/* when we do not have sufficient input parameters to contact a remote domain
* we always fall back to our own realm - Guenther */
2008-05-10 01:22:12 +04:00
static const char * assume_own_realm ( struct net_context * c )
2006-07-17 15:04:47 +04:00
{
2008-05-10 01:22:12 +04:00
if ( ! c - > opt_host & & strequal ( lp_workgroup ( ) , c - > opt_target_workgroup ) ) {
2006-07-17 15:04:47 +04:00
return lp_realm ( ) ;
}
return NULL ;
}
2001-12-13 16:19:20 +03:00
2006-05-12 19:17:35 +04:00
/*
do a cldap netlogon query
*/
2008-05-10 01:22:12 +04:00
static int net_ads_cldap_netlogon ( struct net_context * c , ADS_STRUCT * ads )
2006-05-12 19:17:35 +04:00
{
2007-10-25 01:16:54 +04:00
char addr [ INET6_ADDRSTRLEN ] ;
2008-04-21 21:26:32 +04:00
struct nbt_cldap_netlogon_5 reply ;
2006-05-12 19:17:35 +04:00
2007-10-25 01:16:54 +04:00
print_sockaddr ( addr , sizeof ( addr ) , & ads - > ldap . ss ) ;
2008-05-07 17:49:09 +04:00
if ( ! ads_cldap_netlogon_5 ( talloc_tos ( ) , addr , ads - > server . realm , & reply ) ) {
2006-05-12 19:17:35 +04:00
d_fprintf ( stderr , " CLDAP query failed! \n " ) ;
return - 1 ;
}
2007-09-18 01:04:10 +04:00
d_printf ( " Information for Domain Controller: %s \n \n " ,
2007-10-25 01:16:54 +04:00
addr ) ;
2006-05-12 19:17:35 +04:00
d_printf ( " Response Type: " ) ;
switch ( reply . type ) {
case SAMLOGON_AD_UNK_R :
d_printf ( " SAMLOGON \n " ) ;
break ;
case SAMLOGON_AD_R :
d_printf ( " SAMLOGON_USER \n " ) ;
break ;
default :
d_printf ( " 0x%x \n " , reply . type ) ;
break ;
}
2007-11-25 12:10:52 +03:00
2008-04-21 21:26:32 +04:00
d_printf ( " GUID: %s \n " , smb_uuid_string ( talloc_tos ( ) , reply . domain_uuid ) ) ;
2007-11-25 12:10:52 +03:00
2006-05-12 19:17:35 +04:00
d_printf ( " Flags: \n "
" \t Is a PDC: %s \n "
" \t Is a GC of the forest: %s \n "
" \t Is an LDAP server: %s \n "
" \t Supports DS: %s \n "
" \t Is running a KDC: %s \n "
" \t Is running time services: %s \n "
" \t Is the closest DC: %s \n "
" \t Is writable: %s \n "
" \t Has a hardware clock: %s \n "
" \t Is a non-domain NC serviced by LDAP server: %s \n " ,
2008-04-21 21:59:27 +04:00
( reply . server_type & NBT_SERVER_PDC ) ? " yes " : " no " ,
( reply . server_type & NBT_SERVER_GC ) ? " yes " : " no " ,
( reply . server_type & NBT_SERVER_LDAP ) ? " yes " : " no " ,
( reply . server_type & NBT_SERVER_DS ) ? " yes " : " no " ,
( reply . server_type & NBT_SERVER_KDC ) ? " yes " : " no " ,
( reply . server_type & NBT_SERVER_TIMESERV ) ? " yes " : " no " ,
( reply . server_type & NBT_SERVER_CLOSEST ) ? " yes " : " no " ,
( reply . server_type & NBT_SERVER_WRITABLE ) ? " yes " : " no " ,
( reply . server_type & NBT_SERVER_GOOD_TIMESERV ) ? " yes " : " no " ,
( reply . server_type & DS_SERVER_NDNC ) ? " yes " : " no " ) ;
2006-05-12 19:17:35 +04:00
printf ( " Forest: \t \t \t %s \n " , reply . forest ) ;
2008-04-21 21:26:32 +04:00
printf ( " Domain: \t \t \t %s \n " , reply . dns_domain ) ;
printf ( " Domain Controller: \t %s \n " , reply . pdc_dns_name ) ;
2006-05-12 19:17:35 +04:00
2008-04-21 21:26:32 +04:00
printf ( " Pre-Win2k Domain: \t %s \n " , reply . domain ) ;
printf ( " Pre-Win2k Hostname: \t %s \n " , reply . pdc_name ) ;
2006-05-12 19:17:35 +04:00
if ( * reply . user_name ) printf ( " User name: \t %s \n " , reply . user_name ) ;
2008-04-21 21:26:32 +04:00
printf ( " Server Site Name : \t \t %s \n " , reply . server_site ) ;
printf ( " Client Site Name : \t \t %s \n " , reply . client_site ) ;
2006-05-12 19:17:35 +04:00
2008-04-21 21:26:32 +04:00
d_printf ( " NT Version: %d \n " , reply . nt_version ) ;
2006-05-12 19:17:35 +04:00
d_printf ( " LMNT Token: %.2x \n " , reply . lmnt_token ) ;
d_printf ( " LM20 Token: %.2x \n " , reply . lm20_token ) ;
2006-05-13 05:29:04 +04:00
return 0 ;
2006-05-12 19:17:35 +04:00
}
2002-09-25 19:19:00 +04:00
/*
this implements the CLDAP based netlogon lookup requests
for finding the domain controller of a ADS domain
*/
2008-05-10 01:22:12 +04:00
static int net_ads_lookup ( struct net_context * c , int argc , const char * * argv )
2002-09-25 19:19:00 +04:00
{
ADS_STRUCT * ads ;
2008-05-10 01:22:12 +04:00
if ( ! ADS_ERR_OK ( ads_startup_nobind ( c , false , & ads ) ) ) {
2006-01-18 00:22:00 +03:00
d_fprintf ( stderr , " Didn't find the cldap server! \n " ) ;
2002-09-25 19:19:00 +04:00
return - 1 ;
2006-03-29 19:30:26 +04:00
}
2006-10-13 01:03:28 +04:00
2006-03-29 19:30:26 +04:00
if ( ! ads - > config . realm ) {
2008-05-10 01:22:12 +04:00
ads - > config . realm = CONST_DISCARD ( char * , c - > opt_target_workgroup ) ;
2007-07-16 15:08:00 +04:00
ads - > ldap . port = 389 ;
2002-09-25 19:19:00 +04:00
}
2008-05-10 01:22:12 +04:00
return net_ads_cldap_netlogon ( c , ads ) ;
2002-09-25 19:19:00 +04:00
}
2008-05-10 01:22:12 +04:00
static int net_ads_info ( struct net_context * c , int argc , const char * * argv )
2001-12-13 16:19:20 +03:00
{
ADS_STRUCT * ads ;
2007-10-25 01:16:54 +04:00
char addr [ INET6_ADDRSTRLEN ] ;
2001-12-13 16:19:20 +03:00
2008-05-10 01:22:12 +04:00
if ( ! ADS_ERR_OK ( ads_startup_nobind ( c , false , & ads ) ) ) {
2006-10-13 01:03:28 +04:00
d_fprintf ( stderr , " Didn't find the ldap server! \n " ) ;
return - 1 ;
2002-08-17 18:45:04 +04:00
}
if ( ! ads | | ! ads - > config . realm ) {
2006-01-18 00:22:00 +03:00
d_fprintf ( stderr , " Didn't find the ldap server! \n " ) ;
2001-12-13 16:19:20 +03:00
return - 1 ;
}
2006-05-12 19:17:35 +04:00
/* Try to set the server's current time since we didn't do a full
TCP LDAP session initially */
if ( ! ADS_ERR_OK ( ads_current_time ( ads ) ) ) {
d_fprintf ( stderr , " Failed to get server's current time! \n " ) ;
}
2007-10-25 01:16:54 +04:00
print_sockaddr ( addr , sizeof ( addr ) , & ads - > ldap . ss ) ;
d_printf ( " LDAP server: %s \n " , addr ) ;
2002-08-17 18:45:04 +04:00
d_printf ( " LDAP server name: %s \n " , ads - > config . ldap_server_name ) ;
d_printf ( " Realm: %s \n " , ads - > config . realm ) ;
d_printf ( " Bind Path: %s \n " , ads - > config . bind_path ) ;
2007-07-16 15:08:00 +04:00
d_printf ( " LDAP port: %d \n " , ads - > ldap . port ) ;
2002-09-25 19:19:00 +04:00
d_printf ( " Server time: %s \n " , http_timestring ( ads - > config . current_time ) ) ;
2001-12-13 16:19:20 +03:00
2004-06-23 04:20:31 +04:00
d_printf ( " KDC server: %s \n " , ads - > auth . kdc_server ) ;
d_printf ( " Server time offset: %d \n " , ads - > auth . time_offset ) ;
2003-05-04 06:48:11 +04:00
2001-12-13 16:19:20 +03:00
return 0 ;
}
2003-02-24 06:06:45 +03:00
static void use_in_memory_ccache ( void ) {
/* Use in-memory credentials cache so we do not interfere with
* existing credentials */
setenv ( KRB5_ENV_CCNAME , " MEMORY:net_ads " , 1 ) ;
}
2001-12-13 16:19:20 +03:00
2008-05-10 01:22:12 +04:00
static ADS_STATUS ads_startup_int ( struct net_context * c , bool only_own_domain ,
uint32 auth_flags , ADS_STRUCT * * ads_ret )
2001-11-25 03:18:11 +03:00
{
2006-10-13 01:03:28 +04:00
ADS_STRUCT * ads = NULL ;
2001-12-19 15:21:12 +03:00
ADS_STATUS status ;
2008-05-12 13:53:23 +04:00
bool need_password = false ;
bool second_time = false ;
2003-09-04 23:45:04 +04:00
char * cp ;
2006-07-17 15:04:47 +04:00
const char * realm = NULL ;
2008-05-12 13:53:23 +04:00
bool tried_closest_dc = false ;
2006-10-13 01:03:28 +04:00
2007-09-18 01:04:10 +04:00
/* lp_realm() should be handled by a command line param,
2003-09-04 23:45:04 +04:00
However , the join requires that realm be set in smb . conf
and compares our realm with the remote server ' s so this is
ok until someone needs more flexibility */
2006-07-17 15:04:47 +04:00
2006-10-13 01:03:28 +04:00
* ads_ret = NULL ;
retry_connect :
2006-07-17 15:04:47 +04:00
if ( only_own_domain ) {
realm = lp_realm ( ) ;
2006-10-13 01:03:28 +04:00
} else {
2008-05-10 01:22:12 +04:00
realm = assume_own_realm ( c ) ;
2006-07-17 15:04:47 +04:00
}
2006-10-13 01:03:28 +04:00
2008-05-10 01:22:12 +04:00
ads = ads_init ( realm , c - > opt_target_workgroup , c - > opt_host ) ;
2001-11-25 04:06:56 +03:00
2008-05-10 01:22:12 +04:00
if ( ! c - > opt_user_name ) {
c - > opt_user_name = " administrator " ;
2001-12-08 14:18:56 +03:00
}
2008-05-10 01:22:12 +04:00
if ( c - > opt_user_specified ) {
2008-05-12 13:53:23 +04:00
need_password = true ;
2003-02-24 06:06:45 +03:00
}
2002-01-26 01:07:46 +03:00
retry :
2008-05-10 01:22:12 +04:00
if ( ! c - > opt_password & & need_password & & ! c - > opt_machine_pass ) {
c - > opt_password = net_prompt_pass ( c , c - > opt_user_name ) ;
if ( ! c - > opt_password ) {
2006-10-13 01:03:28 +04:00
ads_destroy ( & ads ) ;
return ADS_ERROR ( LDAP_NO_MEMORY ) ;
}
2001-12-08 14:18:56 +03:00
}
2002-01-26 01:07:46 +03:00
2008-05-10 01:22:12 +04:00
if ( c - > opt_password ) {
2003-03-18 01:33:34 +03:00
use_in_memory_ccache ( ) ;
2006-10-13 01:03:28 +04:00
SAFE_FREE ( ads - > auth . password ) ;
2008-05-10 01:22:12 +04:00
ads - > auth . password = smb_xstrdup ( c - > opt_password ) ;
2003-03-18 01:33:34 +03:00
}
2002-02-17 01:11:49 +03:00
2006-10-13 01:03:28 +04:00
ads - > auth . flags | = auth_flags ;
SAFE_FREE ( ads - > auth . user_name ) ;
2008-05-10 01:22:12 +04:00
ads - > auth . user_name = smb_xstrdup ( c - > opt_user_name ) ;
2003-05-04 06:48:11 +04:00
/*
2007-09-18 01:04:10 +04:00
* If the username is of the form " name@realm " ,
2003-05-04 06:48:11 +04:00
* extract the realm and convert to upper case .
* This is only used to establish the connection .
*/
2006-10-13 01:03:28 +04:00
if ( ( cp = strchr_m ( ads - > auth . user_name , ' @ ' ) ) ! = 0 ) {
* cp + + = ' \0 ' ;
SAFE_FREE ( ads - > auth . realm ) ;
ads - > auth . realm = smb_xstrdup ( cp ) ;
strupper_m ( ads - > auth . realm ) ;
2003-05-04 06:48:11 +04:00
}
2001-12-08 14:18:56 +03:00
2006-10-13 01:03:28 +04:00
status = ads_connect ( ads ) ;
2003-05-04 06:48:11 +04:00
2001-12-19 15:21:12 +03:00
if ( ! ADS_ERR_OK ( status ) ) {
2006-10-25 16:10:48 +04:00
2007-09-18 01:04:10 +04:00
if ( NT_STATUS_EQUAL ( ads_ntstatus ( status ) ,
2006-10-25 16:10:48 +04:00
NT_STATUS_NO_LOGON_SERVERS ) ) {
DEBUG ( 0 , ( " ads_connect: %s \n " , ads_errstr ( status ) ) ) ;
ads_destroy ( & ads ) ;
return status ;
}
2007-09-18 01:04:10 +04:00
2007-01-17 21:25:35 +03:00
if ( ! need_password & & ! second_time & & ! ( auth_flags & ADS_AUTH_NO_BIND ) ) {
2008-05-12 13:53:23 +04:00
need_password = true ;
second_time = true ;
2002-01-26 01:07:46 +03:00
goto retry ;
} else {
2006-10-13 01:03:28 +04:00
ads_destroy ( & ads ) ;
return status ;
}
}
/* when contacting our own domain, make sure we use the closest DC.
* This is done by reconnecting to ADS because only the first call to
* ads_connect will give us our own sitename */
2008-05-10 01:22:12 +04:00
if ( ( only_own_domain | | ! c - > opt_host ) & & ! tried_closest_dc ) {
2006-10-13 01:03:28 +04:00
2008-05-12 13:53:23 +04:00
tried_closest_dc = true ; /* avoid loop */
2006-10-13 01:03:28 +04:00
2007-01-17 21:25:35 +03:00
if ( ! ads - > config . tried_closest_dc ) {
2006-10-13 01:03:28 +04:00
namecache_delete ( ads - > server . realm , 0x1C ) ;
namecache_delete ( ads - > server . workgroup , 0x1C ) ;
ads_destroy ( & ads ) ;
ads = NULL ;
goto retry_connect ;
2002-01-26 01:07:46 +03:00
}
2001-11-25 04:31:07 +03:00
}
2006-10-13 01:03:28 +04:00
* ads_ret = ads ;
2006-08-17 16:44:59 +04:00
return status ;
2001-11-25 04:31:07 +03:00
}
2008-05-10 01:22:12 +04:00
ADS_STATUS ads_startup ( struct net_context * c , bool only_own_domain , ADS_STRUCT * * ads )
2006-10-13 01:03:28 +04:00
{
2008-05-10 01:22:12 +04:00
return ads_startup_int ( c , only_own_domain , 0 , ads ) ;
2006-10-13 01:03:28 +04:00
}
2008-05-10 01:22:12 +04:00
ADS_STATUS ads_startup_nobind ( struct net_context * c , bool only_own_domain , ADS_STRUCT * * ads )
2006-10-13 01:03:28 +04:00
{
2008-05-10 01:22:12 +04:00
return ads_startup_int ( c , only_own_domain , ADS_AUTH_NO_BIND , ads ) ;
2006-10-13 01:03:28 +04:00
}
2002-04-04 20:47:24 +04:00
/*
Check to see if connection can be made via ads .
ads_startup ( ) stores the password in opt_password if it needs to so
that rpc or rap can use it without re - prompting .
*/
2006-07-17 15:04:47 +04:00
static int net_ads_check_int ( const char * realm , const char * workgroup , const char * host )
2002-04-04 20:47:24 +04:00
{
ADS_STRUCT * ads ;
2006-05-12 19:17:35 +04:00
ADS_STATUS status ;
2002-04-04 20:47:24 +04:00
2006-07-17 15:04:47 +04:00
if ( ( ads = ads_init ( realm , workgroup , host ) ) = = NULL ) {
2002-04-04 20:47:24 +04:00
return - 1 ;
2006-05-12 19:17:35 +04:00
}
ads - > auth . flags | = ADS_AUTH_NO_BIND ;
status = ads_connect ( ads ) ;
if ( ! ADS_ERR_OK ( status ) ) {
return - 1 ;
}
2002-04-04 20:47:24 +04:00
ads_destroy ( & ads ) ;
return 0 ;
}
2008-05-10 01:22:12 +04:00
int net_ads_check_our_domain ( struct net_context * c )
2006-07-17 15:04:47 +04:00
{
return net_ads_check_int ( lp_realm ( ) , lp_workgroup ( ) , NULL ) ;
}
2008-05-10 01:22:12 +04:00
int net_ads_check ( struct net_context * c )
2006-07-17 15:04:47 +04:00
{
2008-05-10 01:22:12 +04:00
return net_ads_check_int ( NULL , c - > opt_workgroup , c - > opt_host ) ;
2006-07-17 15:04:47 +04:00
}
2007-09-18 01:04:10 +04:00
/*
2002-08-17 18:45:04 +04:00
determine the netbios workgroup name for a domain
*/
2008-05-10 01:22:12 +04:00
static int net_ads_workgroup ( struct net_context * c , int argc , const char * * argv )
2002-08-17 18:45:04 +04:00
{
ADS_STRUCT * ads ;
2007-10-25 01:16:54 +04:00
char addr [ INET6_ADDRSTRLEN ] ;
2008-04-21 21:26:32 +04:00
struct nbt_cldap_netlogon_5 reply ;
2002-08-17 18:45:04 +04:00
2008-05-10 01:22:12 +04:00
if ( ! ADS_ERR_OK ( ads_startup_nobind ( c , false , & ads ) ) ) {
2006-05-12 19:17:35 +04:00
d_fprintf ( stderr , " Didn't find the cldap server! \n " ) ;
return - 1 ;
}
2007-09-18 01:04:10 +04:00
2006-05-12 19:17:35 +04:00
if ( ! ads - > config . realm ) {
2008-05-10 01:22:12 +04:00
ads - > config . realm = CONST_DISCARD ( char * , c - > opt_target_workgroup ) ;
2007-07-16 15:08:00 +04:00
ads - > ldap . port = 389 ;
2006-05-12 19:17:35 +04:00
}
2007-09-18 01:04:10 +04:00
2007-10-25 01:16:54 +04:00
print_sockaddr ( addr , sizeof ( addr ) , & ads - > ldap . ss ) ;
2008-05-07 17:49:09 +04:00
if ( ! ads_cldap_netlogon_5 ( talloc_tos ( ) , addr , ads - > server . realm , & reply ) ) {
2006-05-12 19:17:35 +04:00
d_fprintf ( stderr , " CLDAP query failed! \n " ) ;
2002-08-17 18:45:04 +04:00
return - 1 ;
}
2002-04-04 20:47:24 +04:00
2008-04-21 21:26:32 +04:00
d_printf ( " Workgroup: %s \n " , reply . domain ) ;
2002-08-17 18:45:04 +04:00
2004-06-23 04:20:31 +04:00
ads_destroy ( & ads ) ;
2007-09-18 01:04:10 +04:00
2002-08-17 18:45:04 +04:00
return 0 ;
}
2007-10-19 04:40:25 +04:00
static bool usergrp_display ( ADS_STRUCT * ads , char * field , void * * values , void * data_area )
2002-03-30 00:09:44 +03:00
{
char * * disp_fields = ( char * * ) data_area ;
if ( ! field ) { /* must be end of record */
2005-05-17 02:54:46 +04:00
if ( disp_fields [ 0 ] ) {
if ( ! strchr_m ( disp_fields [ 0 ] , ' $ ' ) ) {
if ( disp_fields [ 1 ] )
2007-09-18 01:04:10 +04:00
d_printf ( " %-21.21s %s \n " ,
2005-05-17 02:54:46 +04:00
disp_fields [ 0 ] , disp_fields [ 1 ] ) ;
else
d_printf ( " %s \n " , disp_fields [ 0 ] ) ;
}
2002-04-05 23:28:02 +04:00
}
2002-03-30 00:09:44 +03:00
SAFE_FREE ( disp_fields [ 0 ] ) ;
SAFE_FREE ( disp_fields [ 1 ] ) ;
2008-05-12 13:53:23 +04:00
return true ;
2002-03-30 00:09:44 +03:00
}
2002-07-15 14:35:28 +04:00
if ( ! values ) /* must be new field, indicate string field */
2008-05-12 13:53:23 +04:00
return true ;
2002-03-30 00:09:44 +03:00
if ( StrCaseCmp ( field , " sAMAccountName " ) = = 0 ) {
2004-12-07 21:25:53 +03:00
disp_fields [ 0 ] = SMB_STRDUP ( ( char * ) values [ 0 ] ) ;
2002-03-30 00:09:44 +03:00
}
if ( StrCaseCmp ( field , " description " ) = = 0 )
2004-12-07 21:25:53 +03:00
disp_fields [ 1 ] = SMB_STRDUP ( ( char * ) values [ 0 ] ) ;
2008-05-12 13:53:23 +04:00
return true ;
2002-03-30 00:09:44 +03:00
}
2008-05-10 01:22:12 +04:00
static int net_ads_user_usage ( struct net_context * c , int argc , const char * * argv )
2002-04-04 06:53:42 +04:00
{
2008-05-13 14:51:09 +04:00
return net_user_usage ( c , argc , argv ) ;
2007-09-18 01:04:10 +04:00
}
2002-04-04 06:53:42 +04:00
2008-05-10 01:22:12 +04:00
static int ads_user_add ( struct net_context * c , int argc , const char * * argv )
2002-04-04 06:53:42 +04:00
{
ADS_STRUCT * ads ;
ADS_STATUS status ;
2002-07-15 14:35:28 +04:00
char * upn , * userdn ;
2006-09-04 01:07:16 +04:00
LDAPMessage * res = NULL ;
2002-04-04 06:53:42 +04:00
int rc = - 1 ;
2006-11-01 14:19:33 +03:00
char * ou_str = NULL ;
2002-04-04 06:53:42 +04:00
2008-05-10 01:22:12 +04:00
if ( argc < 1 ) return net_ads_user_usage ( c , argc , argv ) ;
2007-09-18 01:04:10 +04:00
2008-05-10 01:22:12 +04:00
if ( ! ADS_ERR_OK ( ads_startup ( c , false , & ads ) ) ) {
2004-06-23 04:20:31 +04:00
return - 1 ;
}
2002-04-04 06:53:42 +04:00
status = ads_find_user_acct ( ads , & res , argv [ 0 ] ) ;
if ( ! ADS_ERR_OK ( status ) ) {
2006-01-18 00:22:00 +03:00
d_fprintf ( stderr , " ads_user_add: %s \n " , ads_errstr ( status ) ) ;
2002-04-04 06:53:42 +04:00
goto done ;
}
2007-09-18 01:04:10 +04:00
2002-04-04 06:53:42 +04:00
if ( ads_count_replies ( ads , res ) ) {
2006-01-18 00:22:00 +03:00
d_fprintf ( stderr , " ads_user_add: User %s already exists \n " , argv [ 0 ] ) ;
2002-04-04 06:53:42 +04:00
goto done ;
}
2008-05-10 01:22:12 +04:00
if ( c - > opt_container ) {
ou_str = SMB_STRDUP ( c - > opt_container ) ;
2006-11-01 14:19:33 +03:00
} else {
ou_str = ads_default_ou_string ( ads , WELL_KNOWN_GUID_USERS ) ;
2004-10-06 20:21:35 +04:00
}
2008-05-10 01:22:12 +04:00
status = ads_add_user_acct ( ads , argv [ 0 ] , ou_str , c - > opt_comment ) ;
2002-04-04 06:53:42 +04:00
2002-07-15 14:35:28 +04:00
if ( ! ADS_ERR_OK ( status ) ) {
2006-01-18 00:22:00 +03:00
d_fprintf ( stderr , " Could not add user %s: %s \n " , argv [ 0 ] ,
2002-07-15 14:35:28 +04:00
ads_errstr ( status ) ) ;
goto done ;
}
/* if no password is to be set, we're done */
2007-09-18 01:04:10 +04:00
if ( argc = = 1 ) {
2002-07-15 14:35:28 +04:00
d_printf ( " User %s added \n " , argv [ 0 ] ) ;
rc = 0 ;
goto done ;
}
/* try setting the password */
2002-08-17 18:45:04 +04:00
asprintf ( & upn , " %s@%s " , argv [ 0 ] , ads - > config . realm ) ;
2007-09-18 01:04:10 +04:00
status = ads_krb5_set_password ( ads - > auth . kdc_server , upn , argv [ 1 ] ,
2003-05-30 23:51:09 +04:00
ads - > auth . time_offset ) ;
2002-07-15 14:35:28 +04:00
safe_free ( upn ) ;
2002-04-04 06:53:42 +04:00
if ( ADS_ERR_OK ( status ) ) {
d_printf ( " User %s added \n " , argv [ 0 ] ) ;
rc = 0 ;
2002-07-15 14:35:28 +04:00
goto done ;
}
/* password didn't set, delete account */
2006-01-18 00:22:00 +03:00
d_fprintf ( stderr , " Could not add user %s. Error setting password %s \n " ,
2002-07-15 14:35:28 +04:00
argv [ 0 ] , ads_errstr ( status ) ) ;
ads_msgfree ( ads , res ) ;
status = ads_find_user_acct ( ads , & res , argv [ 0 ] ) ;
if ( ADS_ERR_OK ( status ) ) {
userdn = ads_get_dn ( ads , res ) ;
ads_del_dn ( ads , userdn ) ;
ads_memfree ( ads , userdn ) ;
2002-04-04 06:53:42 +04:00
}
done :
if ( res )
ads_msgfree ( ads , res ) ;
ads_destroy ( & ads ) ;
2006-11-01 14:19:33 +03:00
SAFE_FREE ( ou_str ) ;
2002-04-04 06:53:42 +04:00
return rc ;
}
2008-05-10 01:22:12 +04:00
static int ads_user_info ( struct net_context * c , int argc , const char * * argv )
2001-11-25 04:31:07 +03:00
{
ADS_STRUCT * ads ;
2001-12-19 15:21:12 +03:00
ADS_STATUS rc ;
2006-09-04 01:07:16 +04:00
LDAPMessage * res ;
2002-04-04 06:53:42 +04:00
const char * attrs [ ] = { " memberOf " , NULL } ;
char * searchstring = NULL ;
char * * grouplist ;
2005-05-19 14:52:36 +04:00
char * escaped_user ;
2002-04-04 06:53:42 +04:00
2004-06-23 04:20:31 +04:00
if ( argc < 1 ) {
2008-05-10 01:22:12 +04:00
return net_ads_user_usage ( c , argc , argv ) ;
2004-06-23 04:20:31 +04:00
}
2005-05-19 14:52:36 +04:00
escaped_user = escape_ldap_string_alloc ( argv [ 0 ] ) ;
2001-11-25 04:31:07 +03:00
2003-02-01 10:59:29 +03:00
if ( ! escaped_user ) {
2006-01-18 00:22:00 +03:00
d_fprintf ( stderr , " ads_user_info: failed to escape user %s \n " , argv [ 0 ] ) ;
2006-03-09 23:51:22 +03:00
return - 1 ;
}
2008-05-10 01:22:12 +04:00
if ( ! ADS_ERR_OK ( ads_startup ( c , false , & ads ) ) ) {
2006-03-09 23:51:22 +03:00
SAFE_FREE ( escaped_user ) ;
return - 1 ;
2003-02-01 10:59:29 +03:00
}
asprintf ( & searchstring , " (sAMAccountName=%s) " , escaped_user ) ;
2002-04-04 06:53:42 +04:00
rc = ads_search ( ads , & res , searchstring , attrs ) ;
safe_free ( searchstring ) ;
2001-11-25 04:31:07 +03:00
2002-03-20 01:16:19 +03:00
if ( ! ADS_ERR_OK ( rc ) ) {
2006-01-18 00:22:00 +03:00
d_fprintf ( stderr , " ads_search: %s \n " , ads_errstr ( rc ) ) ;
2004-06-23 04:20:31 +04:00
ads_destroy ( & ads ) ;
2006-03-09 23:51:22 +03:00
SAFE_FREE ( escaped_user ) ;
2002-03-20 01:16:19 +03:00
return - 1 ;
}
2007-09-18 01:04:10 +04:00
2007-07-16 15:08:00 +04:00
grouplist = ldap_get_values ( ( LDAP * ) ads - > ldap . ld ,
2006-07-11 22:01:26 +04:00
( LDAPMessage * ) res , " memberOf " ) ;
2002-04-04 06:53:42 +04:00
if ( grouplist ) {
int i ;
char * * groupname ;
for ( i = 0 ; grouplist [ i ] ; i + + ) {
groupname = ldap_explode_dn ( grouplist [ i ] , 1 ) ;
2002-07-15 14:35:28 +04:00
d_printf ( " %s \n " , groupname [ 0 ] ) ;
2002-04-04 06:53:42 +04:00
ldap_value_free ( groupname ) ;
}
ldap_value_free ( grouplist ) ;
}
2007-09-18 01:04:10 +04:00
2002-03-30 00:09:44 +03:00
ads_msgfree ( ads , res ) ;
2001-11-29 09:21:56 +03:00
ads_destroy ( & ads ) ;
2006-03-09 23:51:22 +03:00
SAFE_FREE ( escaped_user ) ;
2001-11-25 04:31:07 +03:00
return 0 ;
}
2008-05-10 01:22:12 +04:00
static int ads_user_delete ( struct net_context * c , int argc , const char * * argv )
2002-04-04 06:53:42 +04:00
{
ADS_STRUCT * ads ;
ADS_STATUS rc ;
2006-11-01 13:38:54 +03:00
LDAPMessage * res = NULL ;
2002-04-04 06:53:42 +04:00
char * userdn ;
2004-06-23 04:20:31 +04:00
if ( argc < 1 ) {
2008-05-10 01:22:12 +04:00
return net_ads_user_usage ( c , argc , argv ) ;
2004-06-23 04:20:31 +04:00
}
2007-09-18 01:04:10 +04:00
2008-05-10 01:22:12 +04:00
if ( ! ADS_ERR_OK ( ads_startup ( c , false , & ads ) ) ) {
2004-06-23 04:20:31 +04:00
return - 1 ;
}
2002-04-04 06:53:42 +04:00
rc = ads_find_user_acct ( ads , & res , argv [ 0 ] ) ;
2006-11-01 13:38:54 +03:00
if ( ! ADS_ERR_OK ( rc ) | | ads_count_replies ( ads , res ) ! = 1 ) {
2006-08-15 13:53:16 +04:00
d_printf ( " User %s does not exist. \n " , argv [ 0 ] ) ;
2006-11-01 13:38:54 +03:00
ads_msgfree ( ads , res ) ;
2004-06-23 04:20:31 +04:00
ads_destroy ( & ads ) ;
2002-04-04 06:53:42 +04:00
return - 1 ;
}
userdn = ads_get_dn ( ads , res ) ;
ads_msgfree ( ads , res ) ;
rc = ads_del_dn ( ads , userdn ) ;
ads_memfree ( ads , userdn ) ;
2006-11-01 13:38:54 +03:00
if ( ADS_ERR_OK ( rc ) ) {
2002-04-04 06:53:42 +04:00
d_printf ( " User %s deleted \n " , argv [ 0 ] ) ;
2004-06-23 04:20:31 +04:00
ads_destroy ( & ads ) ;
2002-04-04 06:53:42 +04:00
return 0 ;
}
2007-09-18 01:04:10 +04:00
d_fprintf ( stderr , " Error deleting user %s: %s \n " , argv [ 0 ] ,
2002-04-04 07:06:22 +04:00
ads_errstr ( rc ) ) ;
2004-06-23 04:20:31 +04:00
ads_destroy ( & ads ) ;
2002-04-04 06:53:42 +04:00
return - 1 ;
}
2008-05-10 01:22:12 +04:00
int net_ads_user ( struct net_context * c , int argc , const char * * argv )
2002-04-04 06:53:42 +04:00
{
struct functable func [ ] = {
{ " ADD " , ads_user_add } ,
{ " INFO " , ads_user_info } ,
{ " DELETE " , ads_user_delete } ,
{ NULL , NULL }
} ;
ADS_STRUCT * ads ;
ADS_STATUS rc ;
const char * shortattrs [ ] = { " sAMAccountName " , NULL } ;
const char * longattrs [ ] = { " sAMAccountName " , " description " , NULL } ;
char * disp_fields [ 2 ] = { NULL , NULL } ;
2007-09-18 01:04:10 +04:00
2002-04-04 06:53:42 +04:00
if ( argc = = 0 ) {
2008-05-10 01:22:12 +04:00
if ( ! ADS_ERR_OK ( ads_startup ( c , false , & ads ) ) ) {
2004-06-23 04:20:31 +04:00
return - 1 ;
}
2002-04-04 06:53:42 +04:00
2008-05-10 01:22:12 +04:00
if ( c - > opt_long_list_entries )
2002-04-04 06:53:42 +04:00
d_printf ( " \n User name Comment " \
" \n ----------------------------- \n " ) ;
2007-09-18 01:04:10 +04:00
rc = ads_do_search_all_fn ( ads , ads - > config . bind_path ,
2002-04-10 17:29:23 +04:00
LDAP_SCOPE_SUBTREE ,
2007-09-18 01:04:10 +04:00
" (objectCategory=user) " ,
2008-05-10 01:22:12 +04:00
c - > opt_long_list_entries ? longattrs :
2007-09-18 01:04:10 +04:00
shortattrs , usergrp_display ,
2002-04-10 17:29:23 +04:00
disp_fields ) ;
2002-04-04 06:53:42 +04:00
ads_destroy ( & ads ) ;
2006-07-11 22:01:26 +04:00
return ADS_ERR_OK ( rc ) ? 0 : - 1 ;
2002-04-04 06:53:42 +04:00
}
2008-05-10 01:22:12 +04:00
return net_run_function ( c , argc , argv , func , net_ads_user_usage ) ;
2002-04-04 06:53:42 +04:00
}
2008-05-10 01:22:12 +04:00
static int net_ads_group_usage ( struct net_context * c , int argc , const char * * argv )
2002-07-15 14:35:28 +04:00
{
2008-05-13 15:44:28 +04:00
return net_group_usage ( c , argc , argv ) ;
2007-09-18 01:04:10 +04:00
}
2002-07-15 14:35:28 +04:00
2008-05-10 01:22:12 +04:00
static int ads_group_add ( struct net_context * c , int argc , const char * * argv )
2002-07-15 14:35:28 +04:00
{
ADS_STRUCT * ads ;
ADS_STATUS status ;
2006-09-04 01:07:16 +04:00
LDAPMessage * res = NULL ;
2002-07-15 14:35:28 +04:00
int rc = - 1 ;
2006-11-01 14:19:33 +03:00
char * ou_str = NULL ;
2002-07-15 14:35:28 +04:00
2004-06-23 04:20:31 +04:00
if ( argc < 1 ) {
2008-05-10 01:22:12 +04:00
return net_ads_group_usage ( c , argc , argv ) ;
2004-06-23 04:20:31 +04:00
}
2007-09-18 01:04:10 +04:00
2008-05-10 01:22:12 +04:00
if ( ! ADS_ERR_OK ( ads_startup ( c , false , & ads ) ) ) {
2004-06-23 04:20:31 +04:00
return - 1 ;
}
2002-07-15 14:35:28 +04:00
status = ads_find_user_acct ( ads , & res , argv [ 0 ] ) ;
if ( ! ADS_ERR_OK ( status ) ) {
2006-01-18 00:22:00 +03:00
d_fprintf ( stderr , " ads_group_add: %s \n " , ads_errstr ( status ) ) ;
2002-07-15 14:35:28 +04:00
goto done ;
}
2007-09-18 01:04:10 +04:00
2002-07-15 14:35:28 +04:00
if ( ads_count_replies ( ads , res ) ) {
2006-01-18 00:22:00 +03:00
d_fprintf ( stderr , " ads_group_add: Group %s already exists \n " , argv [ 0 ] ) ;
2002-07-15 14:35:28 +04:00
goto done ;
}
2008-05-10 01:22:12 +04:00
if ( c - > opt_container ) {
ou_str = SMB_STRDUP ( c - > opt_container ) ;
2006-11-01 14:19:33 +03:00
} else {
ou_str = ads_default_ou_string ( ads , WELL_KNOWN_GUID_USERS ) ;
2004-10-06 20:21:35 +04:00
}
2008-05-10 01:22:12 +04:00
status = ads_add_group_acct ( ads , argv [ 0 ] , ou_str , c - > opt_comment ) ;
2002-07-15 14:35:28 +04:00
if ( ADS_ERR_OK ( status ) ) {
d_printf ( " Group %s added \n " , argv [ 0 ] ) ;
rc = 0 ;
} else {
2006-01-18 00:22:00 +03:00
d_fprintf ( stderr , " Could not add group %s: %s \n " , argv [ 0 ] ,
2002-07-15 14:35:28 +04:00
ads_errstr ( status ) ) ;
}
done :
if ( res )
ads_msgfree ( ads , res ) ;
ads_destroy ( & ads ) ;
2006-11-01 14:19:33 +03:00
SAFE_FREE ( ou_str ) ;
2002-07-15 14:35:28 +04:00
return rc ;
}
2008-05-10 01:22:12 +04:00
static int ads_group_delete ( struct net_context * c , int argc , const char * * argv )
2002-07-15 14:35:28 +04:00
{
ADS_STRUCT * ads ;
ADS_STATUS rc ;
2006-11-01 13:59:28 +03:00
LDAPMessage * res = NULL ;
2002-07-15 14:35:28 +04:00
char * groupdn ;
2004-06-23 04:20:31 +04:00
if ( argc < 1 ) {
2008-05-10 01:22:12 +04:00
return net_ads_group_usage ( c , argc , argv ) ;
2004-06-23 04:20:31 +04:00
}
2007-09-18 01:04:10 +04:00
2008-05-10 01:22:12 +04:00
if ( ! ADS_ERR_OK ( ads_startup ( c , false , & ads ) ) ) {
2004-06-23 04:20:31 +04:00
return - 1 ;
}
2002-07-15 14:35:28 +04:00
rc = ads_find_user_acct ( ads , & res , argv [ 0 ] ) ;
2006-11-01 13:59:28 +03:00
if ( ! ADS_ERR_OK ( rc ) | | ads_count_replies ( ads , res ) ! = 1 ) {
2006-08-15 13:53:16 +04:00
d_printf ( " Group %s does not exist. \n " , argv [ 0 ] ) ;
2006-11-01 13:59:28 +03:00
ads_msgfree ( ads , res ) ;
2004-06-23 04:20:31 +04:00
ads_destroy ( & ads ) ;
2002-07-15 14:35:28 +04:00
return - 1 ;
}
groupdn = ads_get_dn ( ads , res ) ;
ads_msgfree ( ads , res ) ;
rc = ads_del_dn ( ads , groupdn ) ;
ads_memfree ( ads , groupdn ) ;
2006-11-01 13:59:28 +03:00
if ( ADS_ERR_OK ( rc ) ) {
2002-07-15 14:35:28 +04:00
d_printf ( " Group %s deleted \n " , argv [ 0 ] ) ;
2004-06-23 04:20:31 +04:00
ads_destroy ( & ads ) ;
2002-07-15 14:35:28 +04:00
return 0 ;
}
2007-09-18 01:04:10 +04:00
d_fprintf ( stderr , " Error deleting group %s: %s \n " , argv [ 0 ] ,
2002-07-15 14:35:28 +04:00
ads_errstr ( rc ) ) ;
2004-06-23 04:20:31 +04:00
ads_destroy ( & ads ) ;
2002-07-15 14:35:28 +04:00
return - 1 ;
}
2008-05-10 01:22:12 +04:00
int net_ads_group ( struct net_context * c , int argc , const char * * argv )
2001-11-25 04:31:07 +03:00
{
2002-07-15 14:35:28 +04:00
struct functable func [ ] = {
{ " ADD " , ads_group_add } ,
{ " DELETE " , ads_group_delete } ,
{ NULL , NULL }
} ;
2001-11-25 04:31:07 +03:00
ADS_STRUCT * ads ;
2001-12-19 15:21:12 +03:00
ADS_STATUS rc ;
2002-03-30 00:09:44 +03:00
const char * shortattrs [ ] = { " sAMAccountName " , NULL } ;
const char * longattrs [ ] = { " sAMAccountName " , " description " , NULL } ;
char * disp_fields [ 2 ] = { NULL , NULL } ;
2001-11-25 04:31:07 +03:00
2002-07-15 14:35:28 +04:00
if ( argc = = 0 ) {
2008-05-10 01:22:12 +04:00
if ( ! ADS_ERR_OK ( ads_startup ( c , false , & ads ) ) ) {
2004-06-23 04:20:31 +04:00
return - 1 ;
}
2001-11-25 04:31:07 +03:00
2008-05-10 01:22:12 +04:00
if ( c - > opt_long_list_entries )
2002-07-15 14:35:28 +04:00
d_printf ( " \n Group name Comment " \
" \n ----------------------------- \n " ) ;
2007-09-18 01:04:10 +04:00
rc = ads_do_search_all_fn ( ads , ads - > config . bind_path ,
LDAP_SCOPE_SUBTREE ,
" (objectCategory=group) " ,
2008-05-10 01:22:12 +04:00
c - > opt_long_list_entries ? longattrs :
2007-09-18 01:04:10 +04:00
shortattrs , usergrp_display ,
2002-07-15 14:35:28 +04:00
disp_fields ) ;
2002-03-30 00:09:44 +03:00
2002-07-15 14:35:28 +04:00
ads_destroy ( & ads ) ;
2006-07-11 22:01:26 +04:00
return ADS_ERR_OK ( rc ) ? 0 : - 1 ;
2002-07-15 14:35:28 +04:00
}
2008-05-10 01:22:12 +04:00
return net_run_function ( c , argc , argv , func , net_ads_group_usage ) ;
2001-11-25 04:31:07 +03:00
}
2008-05-10 01:22:12 +04:00
static int net_ads_status ( struct net_context * c , int argc , const char * * argv )
2001-11-25 04:31:07 +03:00
{
ADS_STRUCT * ads ;
2001-12-19 15:21:12 +03:00
ADS_STATUS rc ;
2006-09-04 01:07:16 +04:00
LDAPMessage * res ;
2001-11-25 04:31:07 +03:00
2008-05-10 01:22:12 +04:00
if ( ! ADS_ERR_OK ( ads_startup ( c , true , & ads ) ) ) {
2004-06-23 04:20:31 +04:00
return - 1 ;
}
2001-11-25 04:31:07 +03:00
2002-11-13 02:20:50 +03:00
rc = ads_find_machine_acct ( ads , & res , global_myname ( ) ) ;
2001-12-19 15:21:12 +03:00
if ( ! ADS_ERR_OK ( rc ) ) {
2006-01-18 00:22:00 +03:00
d_fprintf ( stderr , " ads_find_machine_acct: %s \n " , ads_errstr ( rc ) ) ;
2004-06-23 04:20:31 +04:00
ads_destroy ( & ads ) ;
2001-11-25 04:06:56 +03:00
return - 1 ;
}
if ( ads_count_replies ( ads , res ) = = 0 ) {
2006-01-18 00:22:00 +03:00
d_fprintf ( stderr , " No machine account for '%s' found \n " , global_myname ( ) ) ;
2004-06-23 04:20:31 +04:00
ads_destroy ( & ads ) ;
2001-11-25 04:06:56 +03:00
return - 1 ;
}
ads_dump ( ads , res ) ;
2004-06-23 04:20:31 +04:00
ads_destroy ( & ads ) ;
2001-11-25 04:06:56 +03:00
return 0 ;
}
2006-05-19 00:12:45 +04:00
/*******************************************************************
Leave an AD domain . Windows XP disables the machine account .
We ' ll try the same . The old code would do an LDAP delete .
That only worked using the machine creds because added the machine
with full control to the computer object ' s ACL .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2006-09-13 17:28:42 +04:00
2008-05-10 01:22:12 +04:00
static int net_ads_leave ( struct net_context * c , int argc , const char * * argv )
2001-11-25 04:06:56 +03:00
{
2006-05-19 00:12:45 +04:00
TALLOC_CTX * ctx ;
2008-02-28 13:55:36 +03:00
struct libnet_UnjoinCtx * r = NULL ;
WERROR werr ;
2001-11-25 04:31:07 +03:00
2008-04-15 00:58:38 +04:00
if ( ! * lp_realm ( ) ) {
d_fprintf ( stderr , " No realm set, are we joined ? \n " ) ;
return - 1 ;
}
2006-05-19 00:12:45 +04:00
if ( ! ( ctx = talloc_init ( " net_ads_leave " ) ) ) {
2006-08-15 13:53:16 +04:00
d_fprintf ( stderr , " Could not initialise talloc context. \n " ) ;
2006-05-19 00:12:45 +04:00
return - 1 ;
2002-03-10 04:52:09 +03:00
}
2008-02-28 13:55:36 +03:00
use_in_memory_ccache ( ) ;
2006-05-19 00:12:45 +04:00
2008-02-28 13:55:36 +03:00
werr = libnet_init_UnjoinCtx ( ctx , & r ) ;
if ( ! W_ERROR_IS_OK ( werr ) ) {
d_fprintf ( stderr , " Could not initialise unjoin context. \n " ) ;
2001-11-25 03:18:11 +03:00
return - 1 ;
}
2008-03-07 20:18:35 +03:00
r - > in . debug = true ;
2008-05-10 01:22:12 +04:00
r - > in . dc_name = c - > opt_host ;
2008-02-28 13:55:36 +03:00
r - > in . domain_name = lp_realm ( ) ;
2008-05-10 01:22:12 +04:00
r - > in . admin_account = c - > opt_user_name ;
r - > in . admin_password = net_prompt_pass ( c , c - > opt_user_name ) ;
2008-04-15 01:07:55 +04:00
r - > in . modify_config = lp_config_backend_is_registry ( ) ;
2008-02-28 13:55:36 +03:00
r - > in . unjoin_flags = WKSSVC_JOIN_FLAGS_JOIN_TYPE |
WKSSVC_JOIN_FLAGS_ACCOUNT_DELETE ;
2006-05-19 00:12:45 +04:00
2008-02-28 13:55:36 +03:00
werr = libnet_Unjoin ( ctx , r ) ;
if ( ! W_ERROR_IS_OK ( werr ) ) {
2008-02-28 16:08:32 +03:00
d_printf ( " Failed to leave domain: %s \n " ,
r - > out . error_string ? r - > out . error_string :
get_friendly_werror_msg ( werr ) ) ;
2006-05-19 00:12:45 +04:00
goto done ;
}
2007-09-18 01:04:10 +04:00
2008-02-28 13:55:36 +03:00
if ( W_ERROR_IS_OK ( werr ) ) {
d_printf ( " Deleted account for '%s' in realm '%s' \n " ,
r - > in . machine_name , r - > out . dns_domain_name ) ;
2006-05-19 00:12:45 +04:00
goto done ;
}
2008-02-28 13:55:36 +03:00
/* We couldn't delete it - see if the disable succeeded. */
if ( r - > out . disabled_machine_account ) {
d_printf ( " Disabled account for '%s' in realm '%s' \n " ,
r - > in . machine_name , r - > out . dns_domain_name ) ;
werr = WERR_OK ;
goto done ;
2006-09-13 13:03:42 +04:00
}
2008-02-28 13:55:36 +03:00
d_fprintf ( stderr , " Failed to disable machine account for '%s' in realm '%s' \n " ,
r - > in . machine_name , r - > out . dns_domain_name ) ;
2006-09-13 17:28:42 +04:00
2008-02-28 13:55:36 +03:00
done :
TALLOC_FREE ( r ) ;
TALLOC_FREE ( ctx ) ;
2001-11-25 03:18:11 +03:00
2008-02-28 13:55:36 +03:00
if ( W_ERROR_IS_OK ( werr ) ) {
return 0 ;
}
2006-05-19 00:12:45 +04:00
2008-02-28 13:55:36 +03:00
return - 1 ;
2002-08-17 18:45:04 +04:00
}
2008-05-10 01:22:12 +04:00
static NTSTATUS net_ads_join_ok ( struct net_context * c )
2002-08-17 18:45:04 +04:00
{
ADS_STRUCT * ads = NULL ;
2006-08-18 16:45:51 +04:00
ADS_STATUS status ;
2002-08-17 18:45:04 +04:00
if ( ! secrets_init ( ) ) {
DEBUG ( 1 , ( " Failed to initialise secrets database \n " ) ) ;
2006-08-18 16:45:51 +04:00
return NT_STATUS_ACCESS_DENIED ;
2002-08-17 18:45:04 +04:00
}
2008-05-10 01:22:12 +04:00
net_use_krb_machine_account ( c ) ;
2001-11-25 03:18:11 +03:00
2008-05-10 01:22:12 +04:00
status = ads_startup ( c , true , & ads ) ;
2006-08-18 16:45:51 +04:00
if ( ! ADS_ERR_OK ( status ) ) {
return ads_ntstatus ( status ) ;
2002-08-17 18:45:04 +04:00
}
ads_destroy ( & ads ) ;
2006-08-18 16:45:51 +04:00
return NT_STATUS_OK ;
2001-11-25 03:18:11 +03:00
}
2002-08-17 18:45:04 +04:00
/*
check that an existing join is OK
*/
2008-05-10 01:22:12 +04:00
int net_ads_testjoin ( struct net_context * c , int argc , const char * * argv )
2002-08-17 18:45:04 +04:00
{
2006-08-18 16:45:51 +04:00
NTSTATUS status ;
2003-02-24 06:06:45 +03:00
use_in_memory_ccache ( ) ;
2002-08-17 18:45:04 +04:00
/* Display success or failure */
2008-05-10 01:22:12 +04:00
status = net_ads_join_ok ( c ) ;
2006-08-18 16:45:51 +04:00
if ( ! NT_STATUS_IS_OK ( status ) ) {
2007-09-18 01:04:10 +04:00
fprintf ( stderr , " Join to domain is not valid: %s \n " ,
2006-08-18 16:45:51 +04:00
get_friendly_nt_error_msg ( status ) ) ;
2002-08-17 18:45:04 +04:00
return - 1 ;
}
printf ( " Join is OK \n " ) ;
return 0 ;
}
2006-05-12 19:17:35 +04:00
/*******************************************************************
Simple configu checks before beginning the join
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-12-17 14:16:22 +03:00
2008-04-14 18:13:52 +04:00
static WERROR check_ads_config ( void )
2006-05-12 19:17:35 +04:00
{
if ( lp_server_role ( ) ! = ROLE_DOMAIN_MEMBER ) {
d_printf ( " Host is not configured as a member server. \n " ) ;
2008-04-14 18:13:52 +04:00
return WERR_INVALID_DOMAIN_ROLE ;
2006-04-18 17:22:14 +04:00
}
2006-04-19 19:43:48 +04:00
if ( strlen ( global_myname ( ) ) > 15 ) {
2006-05-06 17:33:14 +04:00
d_printf ( " Our netbios name can be at most 15 chars long, "
2006-08-18 16:39:21 +04:00
" \" %s \" is %u chars long \n " , global_myname ( ) ,
( unsigned int ) strlen ( global_myname ( ) ) ) ;
2008-04-14 18:13:52 +04:00
return WERR_INVALID_COMPUTER_NAME ;
2006-04-19 19:43:48 +04:00
}
2006-04-18 17:22:14 +04:00
2006-05-12 19:17:35 +04:00
if ( lp_security ( ) = = SEC_ADS & & ! * lp_realm ( ) ) {
2007-01-19 17:29:42 +03:00
d_fprintf ( stderr , " realm must be set in in %s for ADS "
2007-12-10 22:30:37 +03:00
" join to succeed. \n " , get_dyn_CONFIGFILE ( ) ) ;
2008-04-14 18:13:52 +04:00
return WERR_INVALID_PARAM ;
2004-06-23 04:20:31 +04:00
}
2001-11-25 03:18:11 +03:00
2008-04-14 18:13:52 +04:00
return WERR_OK ;
2006-05-12 19:17:35 +04:00
}
2001-12-17 14:16:22 +03:00
2006-08-24 19:43:32 +04:00
/*******************************************************************
Send a DNS update request
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
# if defined(WITH_DNS_UPDATES)
2006-11-18 00:46:26 +03:00
# include "dns.h"
2006-12-14 20:00:10 +03:00
DNS_ERROR DoDNSUpdate ( char * pszServerName ,
2008-01-15 00:38:16 +03:00
const char * pszDomainName , const char * pszHostName ,
const struct sockaddr_storage * sslist ,
size_t num_addrs ) ;
2006-11-18 00:46:26 +03:00
static NTSTATUS net_update_dns_internal ( TALLOC_CTX * ctx , ADS_STRUCT * ads ,
const char * machine_name ,
2008-01-15 00:38:16 +03:00
const struct sockaddr_storage * addrs ,
2006-11-18 00:46:26 +03:00
int num_addrs )
2006-08-24 19:43:32 +04:00
{
struct dns_rr_ns * nameservers = NULL ;
int ns_count = 0 ;
2006-11-18 00:46:26 +03:00
NTSTATUS status = NT_STATUS_UNSUCCESSFUL ;
DNS_ERROR dns_err ;
2006-08-24 19:43:32 +04:00
fstring dns_server ;
2007-09-18 01:04:10 +04:00
const char * dnsdomain = NULL ;
char * root_domain = NULL ;
2006-08-24 19:43:32 +04:00
if ( ( dnsdomain = strchr_m ( machine_name , ' . ' ) ) = = NULL ) {
2006-11-18 00:46:26 +03:00
d_printf ( " No DNS domain configured for %s. "
" Unable to perform DNS Update. \n " , machine_name ) ;
status = NT_STATUS_INVALID_PARAMETER ;
2006-08-24 19:43:32 +04:00
goto done ;
}
dnsdomain + + ;
2006-11-18 00:46:26 +03:00
status = ads_dns_lookup_ns ( ctx , dnsdomain , & nameservers , & ns_count ) ;
if ( ! NT_STATUS_IS_OK ( status ) | | ( ns_count = = 0 ) ) {
2006-12-14 20:00:10 +03:00
/* Child domains often do not have NS records. Look
2007-09-18 01:04:10 +04:00
for the NS record for the forest root domain
2006-12-14 20:00:10 +03:00
( rootDomainNamingContext in therootDSE ) */
const char * rootname_attrs [ ] = { " rootDomainNamingContext " , NULL } ;
LDAPMessage * msg = NULL ;
char * root_dn ;
ADS_STATUS ads_status ;
2007-09-18 01:04:10 +04:00
2007-07-16 15:08:00 +04:00
if ( ! ads - > ldap . ld ) {
2006-12-14 20:00:10 +03:00
ads_status = ads_connect ( ads ) ;
if ( ! ADS_ERR_OK ( ads_status ) ) {
DEBUG ( 0 , ( " net_update_dns_internal: Failed to connect to our DC! \n " ) ) ;
2007-09-18 01:04:10 +04:00
goto done ;
}
2006-12-14 20:00:10 +03:00
}
2007-09-18 01:04:10 +04:00
ads_status = ads_do_search ( ads , " " , LDAP_SCOPE_BASE ,
2006-12-14 20:00:10 +03:00
" (objectclass=*) " , rootname_attrs , & msg ) ;
if ( ! ADS_ERR_OK ( ads_status ) ) {
goto done ;
}
root_dn = ads_pull_string ( ads , ctx , msg , " rootDomainNamingContext " ) ;
if ( ! root_dn ) {
2007-09-18 01:04:10 +04:00
ads_msgfree ( ads , msg ) ;
2006-12-14 20:00:10 +03:00
goto done ;
}
root_domain = ads_build_domain ( root_dn ) ;
/* cleanup */
ads_msgfree ( ads , msg ) ;
/* try again for NS servers */
status = ads_dns_lookup_ns ( ctx , root_domain , & nameservers , & ns_count ) ;
2007-09-18 01:04:10 +04:00
if ( ! NT_STATUS_IS_OK ( status ) | | ( ns_count = = 0 ) ) {
2006-12-14 20:00:10 +03:00
DEBUG ( 3 , ( " net_ads_join: Failed to find name server for the %s "
2006-11-18 00:46:26 +03:00
" realm \n " , ads - > config . realm ) ) ;
2006-12-14 20:00:10 +03:00
goto done ;
}
2007-09-18 01:04:10 +04:00
dnsdomain = root_domain ;
2006-08-24 19:43:32 +04:00
}
2006-11-18 00:46:26 +03:00
/* Now perform the dns update - we'll try non-secure and if we fail,
we ' ll follow it up with a secure update */
2006-08-24 19:43:32 +04:00
2006-11-18 00:46:26 +03:00
fstrcpy ( dns_server , nameservers [ 0 ] . hostname ) ;
2006-08-24 19:43:32 +04:00
2006-12-14 20:00:10 +03:00
dns_err = DoDNSUpdate ( dns_server , dnsdomain , machine_name , addrs , num_addrs ) ;
2006-11-18 00:46:26 +03:00
if ( ! ERR_DNS_IS_OK ( dns_err ) ) {
status = NT_STATUS_UNSUCCESSFUL ;
2006-08-24 19:43:32 +04:00
}
2006-11-18 00:46:26 +03:00
done :
2006-12-14 20:00:10 +03:00
SAFE_FREE ( root_domain ) ;
2007-09-18 01:04:10 +04:00
2006-11-18 00:46:26 +03:00
return status ;
2006-12-14 20:00:10 +03:00
}
2006-08-24 19:43:32 +04:00
2006-11-18 00:46:26 +03:00
static NTSTATUS net_update_dns ( TALLOC_CTX * mem_ctx , ADS_STRUCT * ads )
{
int num_addrs ;
2008-01-15 00:38:16 +03:00
struct sockaddr_storage * iplist = NULL ;
2006-11-18 00:46:26 +03:00
fstring machine_name ;
NTSTATUS status ;
2006-08-24 19:43:32 +04:00
2006-11-18 00:46:26 +03:00
name_to_fqdn ( machine_name , global_myname ( ) ) ;
strlower_m ( machine_name ) ;
2006-08-24 19:43:32 +04:00
2006-11-18 00:46:26 +03:00
/* Get our ip address (not the 127.0.0.x address but a real ip
* address ) */
2006-08-24 19:43:32 +04:00
2006-11-18 00:46:26 +03:00
num_addrs = get_my_ip_address ( & iplist ) ;
if ( num_addrs < = 0 ) {
2007-09-18 00:01:47 +04:00
DEBUG ( 4 , ( " net_update_dns: Failed to find my non-loopback IP "
2006-11-18 00:46:26 +03:00
" addresses! \n " ) ) ;
return NT_STATUS_INVALID_PARAMETER ;
2006-08-24 19:43:32 +04:00
}
2006-11-18 00:46:26 +03:00
status = net_update_dns_internal ( mem_ctx , ads , machine_name ,
iplist , num_addrs ) ;
2006-08-24 19:43:32 +04:00
SAFE_FREE ( iplist ) ;
2006-11-18 00:46:26 +03:00
return status ;
2006-08-24 19:43:32 +04:00
}
# endif
2006-07-26 19:26:51 +04:00
/*******************************************************************
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2007-09-18 01:04:10 +04:00
2008-05-10 01:22:12 +04:00
static int net_ads_join_usage ( struct net_context * c , int argc , const char * * argv )
2006-07-26 19:26:51 +04:00
{
d_printf ( " net ads join [options] \n " ) ;
d_printf ( " Valid options: \n " ) ;
d_printf ( " createupn[=UPN] Set the userPrincipalName attribute during the join. \n " ) ;
d_printf ( " The deault UPN is in the form host/netbiosname@REALM. \n " ) ;
d_printf ( " createcomputer=OU Precreate the computer account in a specific OU. \n " ) ;
d_printf ( " The OU string read from top to bottom without RDNs and delimited by a '/'. \n " ) ;
d_printf ( " E.g. \" createcomputer=Computers/Servers/Unix \" \n " ) ;
2006-12-12 19:40:57 +03:00
d_printf ( " NB: A backslash ' \\ ' is used as escape at multiple levels and may \n " ) ;
2007-05-07 02:18:44 +04:00
d_printf ( " need to be doubled or even quadrupled. It is not used as a separator. \n " ) ;
d_printf ( " osName=string Set the operatingSystem attribute during the join. \n " ) ;
d_printf ( " osVer=string Set the operatingSystemVersion attribute during the join. \n " ) ;
d_printf ( " NB: osName and osVer must be specified together for either to take effect. \n " ) ;
d_printf ( " Also, the operatingSystemService attribute is also set when along with \n " ) ;
d_printf ( " the two other attributes. \n " ) ;
2006-07-26 19:26:51 +04:00
return - 1 ;
}
2006-05-12 19:17:35 +04:00
/*******************************************************************
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2007-09-18 01:04:10 +04:00
2008-05-10 01:22:12 +04:00
int net_ads_join ( struct net_context * c , int argc , const char * * argv )
2006-05-12 19:17:35 +04:00
{
2006-08-17 18:38:59 +04:00
TALLOC_CTX * ctx = NULL ;
2008-02-28 16:29:44 +03:00
struct libnet_JoinCtx * r = NULL ;
2008-02-28 16:18:03 +03:00
const char * domain = lp_realm ( ) ;
2008-02-28 16:29:44 +03:00
WERROR werr = WERR_SETUP_NOT_JOINED ;
2008-05-12 13:53:23 +04:00
bool createupn = false ;
2006-07-20 18:39:06 +04:00
const char * machineupn = NULL ;
const char * create_in_ou = NULL ;
int i ;
2007-03-20 18:29:33 +03:00
const char * os_name = NULL ;
const char * os_version = NULL ;
2008-04-15 01:07:55 +04:00
bool modify_config = lp_config_backend_is_registry ( ) ;
2007-09-18 01:04:10 +04:00
2008-04-15 01:07:55 +04:00
if ( ! modify_config ) {
werr = check_ads_config ( ) ;
if ( ! W_ERROR_IS_OK ( werr ) ) {
d_fprintf ( stderr , " Invalid configuration. Exiting.... \n " ) ;
goto fail ;
}
2001-11-25 03:18:11 +03:00
}
2008-03-04 13:04:36 +03:00
if ( ! ( ctx = talloc_init ( " net_ads_join " ) ) ) {
d_fprintf ( stderr , " Could not initialise talloc context. \n " ) ;
werr = WERR_NOMEM ;
goto fail ;
}
2008-02-28 16:18:03 +03:00
use_in_memory_ccache ( ) ;
2003-08-20 02:47:10 +04:00
2008-02-28 16:18:03 +03:00
werr = libnet_init_JoinCtx ( ctx , & r ) ;
if ( ! W_ERROR_IS_OK ( werr ) ) {
2006-08-03 16:41:20 +04:00
goto fail ;
2001-11-25 03:18:11 +03:00
}
2006-07-20 18:39:06 +04:00
/* process additional command line args */
2007-09-18 01:04:10 +04:00
2006-07-20 18:39:06 +04:00
for ( i = 0 ; i < argc ; i + + ) {
if ( ! StrnCaseCmp ( argv [ i ] , " createupn " , strlen ( " createupn " ) ) ) {
2008-05-12 13:53:23 +04:00
createupn = true ;
2006-07-20 18:39:06 +04:00
machineupn = get_string_param ( argv [ i ] ) ;
}
else if ( ! StrnCaseCmp ( argv [ i ] , " createcomputer " , strlen ( " createcomputer " ) ) ) {
if ( ( create_in_ou = get_string_param ( argv [ i ] ) ) = = NULL ) {
2007-03-20 18:29:33 +03:00
d_fprintf ( stderr , " Please supply a valid OU path. \n " ) ;
2008-02-28 16:29:44 +03:00
werr = WERR_INVALID_PARAM ;
2007-03-20 18:29:33 +03:00
goto fail ;
2007-09-18 01:04:10 +04:00
}
2007-03-20 18:29:33 +03:00
}
else if ( ! StrnCaseCmp ( argv [ i ] , " osName " , strlen ( " osName " ) ) ) {
if ( ( os_name = get_string_param ( argv [ i ] ) ) = = NULL ) {
d_fprintf ( stderr , " Please supply a operating system name. \n " ) ;
2008-02-28 16:29:44 +03:00
werr = WERR_INVALID_PARAM ;
2007-03-20 18:29:33 +03:00
goto fail ;
2007-09-18 01:04:10 +04:00
}
2007-03-20 18:29:33 +03:00
}
else if ( ! StrnCaseCmp ( argv [ i ] , " osVer " , strlen ( " osVer " ) ) ) {
if ( ( os_version = get_string_param ( argv [ i ] ) ) = = NULL ) {
d_fprintf ( stderr , " Please supply a valid operating system version. \n " ) ;
2008-02-28 16:29:44 +03:00
werr = WERR_INVALID_PARAM ;
2006-08-03 16:41:20 +04:00
goto fail ;
2007-09-18 01:04:10 +04:00
}
2006-07-20 18:39:06 +04:00
}
else {
2008-02-28 16:18:03 +03:00
domain = argv [ i ] ;
2006-05-13 08:39:19 +04:00
}
}
2008-04-14 18:16:25 +04:00
if ( ! * domain ) {
d_fprintf ( stderr , " Please supply a valid domain name \n " ) ;
werr = WERR_INVALID_PARAM ;
goto fail ;
}
2006-05-12 19:17:35 +04:00
/* Do the domain join here */
2008-02-28 16:18:03 +03:00
r - > in . domain_name = domain ;
r - > in . create_upn = createupn ;
r - > in . upn = machineupn ;
r - > in . account_ou = create_in_ou ;
r - > in . os_name = os_name ;
r - > in . os_version = os_version ;
2008-05-10 01:22:12 +04:00
r - > in . dc_name = c - > opt_host ;
r - > in . admin_account = c - > opt_user_name ;
r - > in . admin_password = net_prompt_pass ( c , c - > opt_user_name ) ;
2008-03-07 20:18:35 +03:00
r - > in . debug = true ;
2008-04-15 01:07:55 +04:00
r - > in . modify_config = modify_config ;
2008-02-28 16:18:03 +03:00
r - > in . join_flags = WKSSVC_JOIN_FLAGS_JOIN_TYPE |
WKSSVC_JOIN_FLAGS_ACCOUNT_CREATE |
WKSSVC_JOIN_FLAGS_DOMAIN_JOIN_IF_JOINED ;
2007-09-18 01:04:10 +04:00
2008-02-28 16:18:03 +03:00
werr = libnet_Join ( ctx , r ) ;
if ( ! W_ERROR_IS_OK ( werr ) ) {
2006-08-03 16:41:20 +04:00
goto fail ;
2003-09-05 21:57:45 +04:00
}
2006-11-17 02:48:46 +03:00
2006-05-12 19:17:35 +04:00
/* Check the short name of the domain */
2007-09-18 01:04:10 +04:00
2008-04-17 02:06:00 +04:00
if ( ! modify_config & & ! strequal ( lp_workgroup ( ) , r - > out . netbios_domain_name ) ) {
2007-12-10 22:30:37 +03:00
d_printf ( " The workgroup in %s does not match the short \n " , get_dyn_CONFIGFILE ( ) ) ;
2006-11-17 02:48:46 +03:00
d_printf ( " domain name obtained from the server. \n " ) ;
2008-02-28 16:18:03 +03:00
d_printf ( " Using the name [%s] from the server. \n " , r - > out . netbios_domain_name ) ;
2007-09-18 01:04:10 +04:00
d_printf ( " You should set \" workgroup = %s \" in %s. \n " ,
2008-02-28 16:18:03 +03:00
r - > out . netbios_domain_name , get_dyn_CONFIGFILE ( ) ) ;
2007-09-18 01:04:10 +04:00
}
2006-05-12 19:17:35 +04:00
2008-02-28 16:18:03 +03:00
d_printf ( " Using short domain name -- %s \n " , r - > out . netbios_domain_name ) ;
2006-05-12 19:17:35 +04:00
2008-04-17 02:06:00 +04:00
if ( r - > out . dns_domain_name ) {
d_printf ( " Joined '%s' to realm '%s' \n " , r - > in . machine_name ,
r - > out . dns_domain_name ) ;
} else {
d_printf ( " Joined '%s' to domain '%s' \n " , r - > in . machine_name ,
r - > out . netbios_domain_name ) ;
}
2007-09-18 01:04:10 +04:00
2008-02-28 15:04:30 +03:00
# if defined(WITH_DNS_UPDATES)
2008-04-17 02:06:00 +04:00
if ( r - > out . domain_is_ad ) {
2008-02-28 15:04:30 +03:00
/* We enter this block with user creds */
ADS_STRUCT * ads_dns = NULL ;
if ( ( ads_dns = ads_init ( lp_realm ( ) , NULL , NULL ) ) ! = NULL ) {
/* kinit with the machine password */
use_in_memory_ccache ( ) ;
asprintf ( & ads_dns - > auth . user_name , " %s$ " , global_myname ( ) ) ;
ads_dns - > auth . password = secrets_fetch_machine_password (
2008-04-15 01:07:55 +04:00
r - > out . netbios_domain_name , NULL , NULL ) ;
ads_dns - > auth . realm = SMB_STRDUP ( r - > out . dns_domain_name ) ;
2008-05-13 02:33:01 +04:00
strupper_m ( ads_dns - > auth . realm ) ;
2008-02-28 15:04:30 +03:00
ads_kinit_password ( ads_dns ) ;
}
2006-11-18 00:46:26 +03:00
2008-02-28 15:04:30 +03:00
if ( ! ads_dns | | ! NT_STATUS_IS_OK ( net_update_dns ( ctx , ads_dns ) ) ) {
d_fprintf ( stderr , " DNS update failed! \n " ) ;
}
2007-09-18 01:04:10 +04:00
2008-02-28 15:04:30 +03:00
/* exit from this block using machine creds */
ads_destroy ( & ads_dns ) ;
2006-08-24 19:43:32 +04:00
}
# endif
2008-02-28 16:18:03 +03:00
TALLOC_FREE ( r ) ;
2006-05-12 19:17:35 +04:00
TALLOC_FREE ( ctx ) ;
2007-09-18 01:04:10 +04:00
2001-11-25 03:18:11 +03:00
return 0 ;
2006-08-03 16:41:20 +04:00
fail :
2006-08-15 13:53:16 +04:00
/* issue an overall failure message at the end. */
2008-02-28 16:18:03 +03:00
d_printf ( " Failed to join domain: %s \n " ,
2008-02-28 16:29:44 +03:00
r & & r - > out . error_string ? r - > out . error_string :
2008-02-28 16:18:03 +03:00
get_friendly_werror_msg ( werr ) ) ;
2006-08-24 19:43:32 +04:00
TALLOC_FREE ( ctx ) ;
return - 1 ;
}
/*******************************************************************
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2007-09-18 01:04:10 +04:00
2008-05-10 01:22:12 +04:00
static int net_ads_dns_usage ( struct net_context * c , int argc , const char * * argv )
2006-08-24 19:43:32 +04:00
{
# if defined(WITH_DNS_UPDATES)
d_printf ( " net ads dns <command> \n " ) ;
d_printf ( " Valid commands: \n " ) ;
d_printf ( " register Issue a dynamic DNS update request for our hostname \n " ) ;
return 0 ;
# else
d_fprintf ( stderr , " DNS update support not enabled at compile time! \n " ) ;
return - 1 ;
# endif
}
/*******************************************************************
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2007-09-18 01:04:10 +04:00
2008-05-10 01:22:12 +04:00
static int net_ads_dns_register ( struct net_context * c , int argc , const char * * argv )
2006-08-24 19:43:32 +04:00
{
# if defined(WITH_DNS_UPDATES)
ADS_STRUCT * ads ;
ADS_STATUS status ;
TALLOC_CTX * ctx ;
2007-09-18 01:04:10 +04:00
2006-11-18 00:46:26 +03:00
# ifdef DEVELOPER
talloc_enable_leak_report ( ) ;
# endif
2007-09-18 01:04:10 +04:00
2006-12-14 20:00:10 +03:00
if ( argc > 0 ) {
2007-07-31 23:15:27 +04:00
d_fprintf ( stderr , " net ads dns register \n " ) ;
2006-08-24 19:43:32 +04:00
return - 1 ;
}
if ( ! ( ctx = talloc_init ( " net_ads_dns " ) ) ) {
2006-11-18 00:46:26 +03:00
d_fprintf ( stderr , " Could not initialise talloc context \n " ) ;
2006-08-24 19:43:32 +04:00
return - 1 ;
}
2008-05-12 13:53:23 +04:00
status = ads_startup ( c , true , & ads ) ;
2006-11-18 00:46:26 +03:00
if ( ! ADS_ERR_OK ( status ) ) {
DEBUG ( 1 , ( " error on ads_startup: %s \n " , ads_errstr ( status ) ) ) ;
TALLOC_FREE ( ctx ) ;
return - 1 ;
}
2007-09-18 01:04:10 +04:00
if ( ! NT_STATUS_IS_OK ( net_update_dns ( ctx , ads ) ) ) {
2006-08-24 19:43:32 +04:00
d_fprintf ( stderr , " DNS update failed! \n " ) ;
ads_destroy ( & ads ) ;
TALLOC_FREE ( ctx ) ;
return - 1 ;
}
2007-09-18 01:04:10 +04:00
2006-08-24 19:43:32 +04:00
d_fprintf ( stderr , " Successfully registered hostname with DNS \n " ) ;
2006-08-03 16:41:20 +04:00
ads_destroy ( & ads ) ;
2006-08-17 18:38:59 +04:00
TALLOC_FREE ( ctx ) ;
2007-09-18 01:04:10 +04:00
2006-08-24 19:43:32 +04:00
return 0 ;
# else
d_fprintf ( stderr , " DNS update support not enabled at compile time! \n " ) ;
2006-08-03 16:41:20 +04:00
return - 1 ;
2006-08-24 19:43:32 +04:00
# endif
2001-11-25 03:18:11 +03:00
}
2006-11-18 00:46:26 +03:00
# if defined(WITH_DNS_UPDATES)
DNS_ERROR do_gethostbyname ( const char * server , const char * host ) ;
# endif
2008-05-10 01:22:12 +04:00
static int net_ads_dns_gethostbyname ( struct net_context * c , int argc , const char * * argv )
2006-11-18 00:46:26 +03:00
{
# if defined(WITH_DNS_UPDATES)
DNS_ERROR err ;
2007-09-18 01:04:10 +04:00
2006-11-18 00:46:26 +03:00
# ifdef DEVELOPER
talloc_enable_leak_report ( ) ;
# endif
if ( argc ! = 2 ) {
d_fprintf ( stderr , " net ads dns gethostbyname <server> "
" <name> \n " ) ;
return - 1 ;
}
err = do_gethostbyname ( argv [ 0 ] , argv [ 1 ] ) ;
d_printf ( " do_gethostbyname returned %d \n " , ERROR_DNS_V ( err ) ) ;
# endif
return 0 ;
}
2008-05-10 01:22:12 +04:00
static int net_ads_dns ( struct net_context * c , int argc , const char * argv [ ] )
2006-11-18 00:46:26 +03:00
{
struct functable func [ ] = {
{ " REGISTER " , net_ads_dns_register } ,
{ " GETHOSTBYNAME " , net_ads_dns_gethostbyname } ,
{ NULL , NULL }
} ;
2008-05-10 01:22:12 +04:00
return net_run_function ( c , argc , argv , func , net_ads_dns_usage ) ;
2006-11-18 00:46:26 +03:00
}
2006-05-12 19:17:35 +04:00
/*******************************************************************
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2008-05-10 01:22:12 +04:00
int net_ads_printer_usage ( struct net_context * c , int argc , const char * * argv )
2002-02-02 05:06:03 +03:00
{
d_printf (
2003-07-03 09:08:51 +04:00
" \n net ads printer search <printer> "
2004-09-29 13:56:35 +04:00
" \n \t search for a printer in the directory \n "
2002-02-02 05:06:03 +03:00
" \n net ads printer info <printer> <server> "
" \n \t lookup info in directory for printer on server "
" \n \t (note: printer defaults to \" * \" , server defaults to local) \n "
" \n net ads printer publish <printername> "
" \n \t publish printer in directory "
" \n \t (note: printer name is required) \n "
" \n net ads printer remove <printername> "
" \n \t remove printer from directory "
" \n \t (note: printer name is required) \n " ) ;
return - 1 ;
}
2006-05-12 19:17:35 +04:00
/*******************************************************************
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2008-05-10 01:22:12 +04:00
static int net_ads_printer_search ( struct net_context * c , int argc , const char * * argv )
2003-07-03 09:08:51 +04:00
{
ADS_STRUCT * ads ;
ADS_STATUS rc ;
2006-09-04 01:07:16 +04:00
LDAPMessage * res = NULL ;
2003-07-03 09:08:51 +04:00
2008-05-10 01:22:12 +04:00
if ( ! ADS_ERR_OK ( ads_startup ( c , false , & ads ) ) ) {
2003-07-03 09:08:51 +04:00
return - 1 ;
2004-06-23 04:20:31 +04:00
}
2003-07-03 09:08:51 +04:00
rc = ads_find_printers ( ads , & res ) ;
if ( ! ADS_ERR_OK ( rc ) ) {
2006-01-18 00:22:00 +03:00
d_fprintf ( stderr , " ads_find_printer: %s \n " , ads_errstr ( rc ) ) ;
2003-07-03 09:08:51 +04:00
ads_msgfree ( ads , res ) ;
2004-06-23 04:20:31 +04:00
ads_destroy ( & ads ) ;
return - 1 ;
2003-07-03 09:08:51 +04:00
}
if ( ads_count_replies ( ads , res ) = = 0 ) {
2006-01-18 00:22:00 +03:00
d_fprintf ( stderr , " No results found \n " ) ;
2003-07-03 09:08:51 +04:00
ads_msgfree ( ads , res ) ;
2004-06-23 04:20:31 +04:00
ads_destroy ( & ads ) ;
2003-07-03 09:08:51 +04:00
return - 1 ;
}
ads_dump ( ads , res ) ;
ads_msgfree ( ads , res ) ;
2004-06-23 04:20:31 +04:00
ads_destroy ( & ads ) ;
2003-07-03 09:08:51 +04:00
return 0 ;
}
2008-05-10 01:22:12 +04:00
static int net_ads_printer_info ( struct net_context * c , int argc , const char * * argv )
2002-02-02 05:06:03 +03:00
{
ADS_STRUCT * ads ;
ADS_STATUS rc ;
2002-07-15 14:35:28 +04:00
const char * servername , * printername ;
2006-09-04 01:07:16 +04:00
LDAPMessage * res = NULL ;
2002-02-02 05:06:03 +03:00
2008-05-10 01:22:12 +04:00
if ( ! ADS_ERR_OK ( ads_startup ( c , false , & ads ) ) ) {
2004-06-23 04:20:31 +04:00
return - 1 ;
}
2002-02-02 05:06:03 +03:00
2004-06-23 04:20:31 +04:00
if ( argc > 0 ) {
2002-02-02 05:06:03 +03:00
printername = argv [ 0 ] ;
2004-06-23 04:20:31 +04:00
} else {
2002-02-02 05:06:03 +03:00
printername = " * " ;
2004-06-23 04:20:31 +04:00
}
2002-02-02 05:06:03 +03:00
2004-06-23 04:20:31 +04:00
if ( argc > 1 ) {
2002-02-02 05:06:03 +03:00
servername = argv [ 1 ] ;
2004-06-23 04:20:31 +04:00
} else {
2002-11-13 02:20:50 +03:00
servername = global_myname ( ) ;
2004-06-23 04:20:31 +04:00
}
2002-02-02 05:06:03 +03:00
rc = ads_find_printer_on_server ( ads , & res , printername , servername ) ;
if ( ! ADS_ERR_OK ( rc ) ) {
2007-09-18 01:04:10 +04:00
d_fprintf ( stderr , " Server '%s' not found: %s \n " ,
2006-10-02 16:06:49 +04:00
servername , ads_errstr ( rc ) ) ;
2002-02-02 05:06:03 +03:00
ads_msgfree ( ads , res ) ;
2004-06-23 04:20:31 +04:00
ads_destroy ( & ads ) ;
2002-02-02 05:06:03 +03:00
return - 1 ;
}
if ( ads_count_replies ( ads , res ) = = 0 ) {
2006-01-18 00:22:00 +03:00
d_fprintf ( stderr , " Printer '%s' not found \n " , printername ) ;
2002-02-02 05:06:03 +03:00
ads_msgfree ( ads , res ) ;
2004-06-23 04:20:31 +04:00
ads_destroy ( & ads ) ;
2002-02-02 05:06:03 +03:00
return - 1 ;
}
ads_dump ( ads , res ) ;
2002-03-30 00:09:44 +03:00
ads_msgfree ( ads , res ) ;
2004-06-23 04:20:31 +04:00
ads_destroy ( & ads ) ;
2002-02-02 05:06:03 +03:00
return 0 ;
}
2008-05-10 01:22:12 +04:00
static int net_ads_printer_publish ( struct net_context * c , int argc , const char * * argv )
2002-02-02 05:06:03 +03:00
{
ADS_STRUCT * ads ;
ADS_STATUS rc ;
2003-07-03 09:58:55 +04:00
const char * servername , * printername ;
2002-11-18 23:23:05 +03:00
struct cli_state * cli ;
2005-09-30 21:13:37 +04:00
struct rpc_pipe_client * pipe_hnd ;
2007-10-25 01:16:54 +04:00
struct sockaddr_storage server_ss ;
2002-11-18 23:23:05 +03:00
NTSTATUS nt_status ;
2002-12-20 23:21:31 +03:00
TALLOC_CTX * mem_ctx = talloc_init ( " net_ads_printer_publish " ) ;
2002-11-18 23:23:05 +03:00
ADS_MODLIST mods = ads_init_mods ( mem_ctx ) ;
char * prt_dn , * srv_dn , * * srv_cn ;
2007-03-01 04:17:36 +03:00
char * srv_cn_escaped = NULL , * printername_escaped = NULL ;
2006-09-04 01:07:16 +04:00
LDAPMessage * res = NULL ;
2002-02-02 05:06:03 +03:00
2008-05-10 01:22:12 +04:00
if ( ! ADS_ERR_OK ( ads_startup ( c , true , & ads ) ) ) {
2007-03-01 05:43:33 +03:00
talloc_destroy ( mem_ctx ) ;
2004-06-23 04:20:31 +04:00
return - 1 ;
}
2002-02-02 05:06:03 +03:00
2004-06-23 04:20:31 +04:00
if ( argc < 1 ) {
2007-03-01 05:43:33 +03:00
talloc_destroy ( mem_ctx ) ;
2008-05-10 01:22:12 +04:00
return net_ads_printer_usage ( c , argc , argv ) ;
2004-06-23 04:20:31 +04:00
}
2007-09-18 01:04:10 +04:00
2003-07-03 09:58:55 +04:00
printername = argv [ 0 ] ;
2004-06-23 04:20:31 +04:00
if ( argc = = 2 ) {
2002-11-18 23:23:05 +03:00
servername = argv [ 1 ] ;
2004-06-23 04:20:31 +04:00
} else {
2002-11-18 23:23:05 +03:00
servername = global_myname ( ) ;
2004-06-23 04:20:31 +04:00
}
2007-09-18 01:04:10 +04:00
2003-07-03 09:58:55 +04:00
/* Get printer data from SPOOLSS */
2002-11-18 23:23:05 +03:00
2007-10-25 01:16:54 +04:00
resolve_name ( servername , & server_ss , 0x20 ) ;
2002-11-18 23:23:05 +03:00
2007-09-18 01:04:10 +04:00
nt_status = cli_full_connection ( & cli , global_myname ( ) , servername ,
2007-10-25 01:16:54 +04:00
& server_ss , 0 ,
2007-09-18 01:04:10 +04:00
" IPC$ " , " IPC " ,
2008-05-10 01:22:12 +04:00
c - > opt_user_name , c - > opt_workgroup ,
c - > opt_password ? c - > opt_password : " " ,
2007-09-18 01:04:10 +04:00
CLI_FULL_CONNECTION_USE_KERBEROS ,
2003-07-31 03:49:29 +04:00
Undefined , NULL ) ;
2002-11-18 23:23:05 +03:00
2003-07-03 09:58:55 +04:00
if ( NT_STATUS_IS_ERR ( nt_status ) ) {
2006-01-18 00:22:00 +03:00
d_fprintf ( stderr , " Unable to open a connnection to %s to obtain data "
2003-07-03 09:58:55 +04:00
" for %s \n " , servername , printername ) ;
2004-06-23 04:20:31 +04:00
ads_destroy ( & ads ) ;
2007-03-01 05:43:33 +03:00
talloc_destroy ( mem_ctx ) ;
2003-07-03 09:58:55 +04:00
return - 1 ;
}
/* Publish on AD server */
ads_find_machine_acct ( ads , & res , servername ) ;
if ( ads_count_replies ( ads , res ) = = 0 ) {
2006-01-18 00:22:00 +03:00
d_fprintf ( stderr , " Could not find machine account for server %s \n " ,
2003-07-03 09:58:55 +04:00
servername ) ;
2004-06-23 04:20:31 +04:00
ads_destroy ( & ads ) ;
2007-03-01 05:43:33 +03:00
talloc_destroy ( mem_ctx ) ;
2003-07-03 09:58:55 +04:00
return - 1 ;
}
2007-07-16 15:08:00 +04:00
srv_dn = ldap_get_dn ( ( LDAP * ) ads - > ldap . ld , ( LDAPMessage * ) res ) ;
2003-07-03 09:58:55 +04:00
srv_cn = ldap_explode_dn ( srv_dn , 1 ) ;
2007-03-01 03:49:28 +03:00
srv_cn_escaped = escape_rdn_val_string_alloc ( srv_cn [ 0 ] ) ;
printername_escaped = escape_rdn_val_string_alloc ( printername ) ;
if ( ! srv_cn_escaped | | ! printername_escaped ) {
2007-03-01 04:17:36 +03:00
SAFE_FREE ( srv_cn_escaped ) ;
SAFE_FREE ( printername_escaped ) ;
2007-03-01 03:49:28 +03:00
d_fprintf ( stderr , " Internal error, out of memory! " ) ;
ads_destroy ( & ads ) ;
2007-03-01 05:43:33 +03:00
talloc_destroy ( mem_ctx ) ;
2007-03-01 03:49:28 +03:00
return - 1 ;
}
asprintf ( & prt_dn , " cn=%s-%s,%s " , srv_cn_escaped , printername_escaped , srv_dn ) ;
2003-07-03 09:58:55 +04:00
2007-03-01 04:17:36 +03:00
SAFE_FREE ( srv_cn_escaped ) ;
SAFE_FREE ( printername_escaped ) ;
2005-09-30 21:13:37 +04:00
pipe_hnd = cli_rpc_pipe_open_noauth ( cli , PI_SPOOLSS , & nt_status ) ;
2006-03-31 04:47:08 +04:00
if ( ! pipe_hnd ) {
d_fprintf ( stderr , " Unable to open a connnection to the spoolss pipe on %s \n " ,
servername ) ;
2007-03-01 04:17:36 +03:00
SAFE_FREE ( prt_dn ) ;
2006-03-31 04:47:08 +04:00
ads_destroy ( & ads ) ;
2007-03-01 05:43:33 +03:00
talloc_destroy ( mem_ctx ) ;
2006-03-31 04:47:08 +04:00
return - 1 ;
}
2006-09-06 16:29:45 +04:00
if ( ! W_ERROR_IS_OK ( get_remote_printer_publishing_data ( pipe_hnd , mem_ctx , & mods ,
printername ) ) ) {
2007-03-01 04:17:36 +03:00
SAFE_FREE ( prt_dn ) ;
2006-09-06 16:29:45 +04:00
ads_destroy ( & ads ) ;
2007-03-01 05:43:33 +03:00
talloc_destroy ( mem_ctx ) ;
2006-09-06 16:29:45 +04:00
return - 1 ;
}
2002-11-18 23:23:05 +03:00
rc = ads_add_printer_entry ( ads , prt_dn , mem_ctx , & mods ) ;
2002-02-02 05:06:03 +03:00
if ( ! ADS_ERR_OK ( rc ) ) {
2006-01-18 00:22:00 +03:00
d_fprintf ( stderr , " ads_publish_printer: %s \n " , ads_errstr ( rc ) ) ;
2007-03-01 04:17:36 +03:00
SAFE_FREE ( prt_dn ) ;
2004-06-23 04:20:31 +04:00
ads_destroy ( & ads ) ;
2007-03-01 05:43:33 +03:00
talloc_destroy ( mem_ctx ) ;
2002-02-02 05:06:03 +03:00
return - 1 ;
}
2007-09-18 01:04:10 +04:00
2002-02-02 05:06:03 +03:00
d_printf ( " published printer \n " ) ;
2007-03-01 04:17:36 +03:00
SAFE_FREE ( prt_dn ) ;
2004-06-23 04:20:31 +04:00
ads_destroy ( & ads ) ;
2007-03-01 05:43:33 +03:00
talloc_destroy ( mem_ctx ) ;
2007-09-18 01:04:10 +04:00
2002-02-02 05:06:03 +03:00
return 0 ;
}
2008-05-10 01:22:12 +04:00
static int net_ads_printer_remove ( struct net_context * c , int argc , const char * * argv )
2002-02-02 05:06:03 +03:00
{
ADS_STRUCT * ads ;
ADS_STATUS rc ;
2002-11-13 02:20:50 +03:00
const char * servername ;
char * prt_dn ;
2006-09-04 01:07:16 +04:00
LDAPMessage * res = NULL ;
2002-02-02 05:06:03 +03:00
2008-05-10 01:22:12 +04:00
if ( ! ADS_ERR_OK ( ads_startup ( c , true , & ads ) ) ) {
2004-06-23 04:20:31 +04:00
return - 1 ;
}
2002-02-02 05:06:03 +03:00
2004-06-23 04:20:31 +04:00
if ( argc < 1 ) {
2008-05-10 01:22:12 +04:00
return net_ads_printer_usage ( c , argc , argv ) ;
2004-06-23 04:20:31 +04:00
}
2002-02-02 05:06:03 +03:00
2004-06-23 04:20:31 +04:00
if ( argc > 1 ) {
2002-02-02 05:06:03 +03:00
servername = argv [ 1 ] ;
2004-06-23 04:20:31 +04:00
} else {
2002-11-13 02:20:50 +03:00
servername = global_myname ( ) ;
2004-06-23 04:20:31 +04:00
}
2002-02-02 05:06:03 +03:00
rc = ads_find_printer_on_server ( ads , & res , argv [ 0 ] , servername ) ;
if ( ! ADS_ERR_OK ( rc ) ) {
2006-01-18 00:22:00 +03:00
d_fprintf ( stderr , " ads_find_printer_on_server: %s \n " , ads_errstr ( rc ) ) ;
2002-02-02 05:06:03 +03:00
ads_msgfree ( ads , res ) ;
2004-06-23 04:20:31 +04:00
ads_destroy ( & ads ) ;
2002-02-02 05:06:03 +03:00
return - 1 ;
}
if ( ads_count_replies ( ads , res ) = = 0 ) {
2006-01-18 00:22:00 +03:00
d_fprintf ( stderr , " Printer '%s' not found \n " , argv [ 1 ] ) ;
2002-02-02 05:06:03 +03:00
ads_msgfree ( ads , res ) ;
2004-06-23 04:20:31 +04:00
ads_destroy ( & ads ) ;
2002-02-02 05:06:03 +03:00
return - 1 ;
}
prt_dn = ads_get_dn ( ads , res ) ;
ads_msgfree ( ads , res ) ;
rc = ads_del_dn ( ads , prt_dn ) ;
ads_memfree ( ads , prt_dn ) ;
if ( ! ADS_ERR_OK ( rc ) ) {
2006-01-18 00:22:00 +03:00
d_fprintf ( stderr , " ads_del_dn: %s \n " , ads_errstr ( rc ) ) ;
2004-06-23 04:20:31 +04:00
ads_destroy ( & ads ) ;
2002-02-02 05:06:03 +03:00
return - 1 ;
}
2004-06-23 04:20:31 +04:00
ads_destroy ( & ads ) ;
2002-02-02 05:06:03 +03:00
return 0 ;
}
2008-05-10 01:22:12 +04:00
static int net_ads_printer ( struct net_context * c , int argc , const char * * argv )
2002-02-02 05:06:03 +03:00
{
struct functable func [ ] = {
2003-07-03 09:08:51 +04:00
{ " SEARCH " , net_ads_printer_search } ,
2002-02-02 05:06:03 +03:00
{ " INFO " , net_ads_printer_info } ,
{ " PUBLISH " , net_ads_printer_publish } ,
{ " REMOVE " , net_ads_printer_remove } ,
{ NULL , NULL }
} ;
2007-09-18 01:04:10 +04:00
2008-05-10 01:22:12 +04:00
return net_run_function ( c , argc , argv , func , net_ads_printer_usage ) ;
2002-02-02 05:06:03 +03:00
}
2001-12-20 06:54:52 +03:00
2008-05-10 01:22:12 +04:00
static int net_ads_password ( struct net_context * c , int argc , const char * * argv )
2001-12-20 06:54:52 +03:00
{
2004-06-23 01:58:35 +04:00
ADS_STRUCT * ads ;
2008-05-10 01:22:12 +04:00
const char * auth_principal = c - > opt_user_name ;
const char * auth_password = c - > opt_password ;
2004-06-23 01:58:35 +04:00
char * realm = NULL ;
char * new_password = NULL ;
2008-05-10 01:22:12 +04:00
char * chr , * prompt ;
2004-06-23 01:58:35 +04:00
const char * user ;
ADS_STATUS ret ;
2008-05-10 01:22:12 +04:00
if ( c - > opt_user_name = = NULL | | c - > opt_password = = NULL ) {
2006-01-18 00:22:00 +03:00
d_fprintf ( stderr , " You must supply an administrator username/password \n " ) ;
2004-06-23 01:58:35 +04:00
return - 1 ;
}
2003-06-10 08:15:55 +04:00
2004-06-23 01:58:35 +04:00
if ( argc < 1 ) {
2006-01-18 00:22:00 +03:00
d_fprintf ( stderr , " ERROR: You must say which username to change password for \n " ) ;
2004-06-23 01:58:35 +04:00
return - 1 ;
}
user = argv [ 0 ] ;
if ( ! strchr_m ( user , ' @ ' ) ) {
2008-05-10 01:22:12 +04:00
asprintf ( & chr , " %s@%s " , argv [ 0 ] , lp_realm ( ) ) ;
user = chr ;
2004-06-23 01:58:35 +04:00
}
2007-09-18 01:04:10 +04:00
use_in_memory_ccache ( ) ;
2008-05-10 01:22:12 +04:00
chr = strchr_m ( auth_principal , ' @ ' ) ;
if ( chr ) {
realm = + + chr ;
2004-06-23 01:58:35 +04:00
} else {
realm = lp_realm ( ) ;
}
2007-09-18 01:04:10 +04:00
/* use the realm so we can eventually change passwords for users
2004-06-23 01:58:35 +04:00
in realms other than default */
2008-05-10 01:22:12 +04:00
if ( ! ( ads = ads_init ( realm , c - > opt_workgroup , c - > opt_host ) ) ) {
2004-06-23 01:58:35 +04:00
return - 1 ;
}
/* we don't actually need a full connect, but it's the easy way to
fill in the KDC ' s addresss */
ads_connect ( ads ) ;
2007-09-18 01:04:10 +04:00
2008-03-23 19:53:05 +03:00
if ( ! ads - > config . realm ) {
2006-01-18 00:22:00 +03:00
d_fprintf ( stderr , " Didn't find the kerberos server! \n " ) ;
2004-06-23 01:58:35 +04:00
return - 1 ;
}
2003-03-18 01:58:24 +03:00
2004-06-23 01:58:35 +04:00
if ( argv [ 1 ] ) {
2005-05-31 17:46:45 +04:00
new_password = ( char * ) argv [ 1 ] ;
2004-06-23 01:58:35 +04:00
} else {
asprintf ( & prompt , " Enter new password for %s: " , user ) ;
new_password = getpass ( prompt ) ;
free ( prompt ) ;
}
2001-12-20 06:54:52 +03:00
2007-09-18 01:04:10 +04:00
ret = kerberos_set_password ( ads - > auth . kdc_server , auth_principal ,
2003-06-10 08:15:55 +04:00
auth_password , user , new_password , ads - > auth . time_offset ) ;
2004-06-23 01:58:35 +04:00
if ( ! ADS_ERR_OK ( ret ) ) {
2006-06-15 20:09:31 +04:00
d_fprintf ( stderr , " Password change failed: %s \n " , ads_errstr ( ret ) ) ;
2004-06-23 01:58:35 +04:00
ads_destroy ( & ads ) ;
return - 1 ;
}
2001-12-20 06:54:52 +03:00
2004-06-23 01:58:35 +04:00
d_printf ( " Password change for %s completed. \n " , user ) ;
ads_destroy ( & ads ) ;
2001-12-20 06:54:52 +03:00
2004-06-23 01:58:35 +04:00
return 0 ;
2001-12-20 06:54:52 +03:00
}
2008-05-10 01:22:12 +04:00
int net_ads_changetrustpw ( struct net_context * c , int argc , const char * * argv )
2007-09-18 01:04:10 +04:00
{
2004-06-23 01:58:35 +04:00
ADS_STRUCT * ads ;
char * host_principal ;
2004-07-08 19:36:23 +04:00
fstring my_name ;
2004-06-23 01:58:35 +04:00
ADS_STATUS ret ;
2001-12-20 06:54:52 +03:00
2004-06-23 01:58:35 +04:00
if ( ! secrets_init ( ) ) {
DEBUG ( 1 , ( " Failed to initialise secrets database \n " ) ) ;
return - 1 ;
}
2002-08-17 18:45:04 +04:00
2008-05-10 01:22:12 +04:00
net_use_krb_machine_account ( c ) ;
2002-08-17 18:45:04 +04:00
2004-06-23 01:58:35 +04:00
use_in_memory_ccache ( ) ;
2003-02-24 06:06:45 +03:00
2008-05-10 01:22:12 +04:00
if ( ! ADS_ERR_OK ( ads_startup ( c , true , & ads ) ) ) {
2004-06-23 01:58:35 +04:00
return - 1 ;
}
2004-07-08 19:36:23 +04:00
fstrcpy ( my_name , global_myname ( ) ) ;
strlower_m ( my_name ) ;
2006-06-09 14:50:28 +04:00
asprintf ( & host_principal , " %s$@%s " , my_name , ads - > config . realm ) ;
d_printf ( " Changing password for principal: %s \n " , host_principal ) ;
2004-06-23 01:58:35 +04:00
ret = ads_change_trust_account_password ( ads , host_principal ) ;
2001-12-20 06:54:52 +03:00
2004-06-23 01:58:35 +04:00
if ( ! ADS_ERR_OK ( ret ) ) {
2006-06-09 14:50:28 +04:00
d_fprintf ( stderr , " Password change failed: %s \n " , ads_errstr ( ret ) ) ;
2004-06-23 01:58:35 +04:00
ads_destroy ( & ads ) ;
SAFE_FREE ( host_principal ) ;
return - 1 ;
}
2007-09-18 01:04:10 +04:00
2006-06-09 14:50:28 +04:00
d_printf ( " Password change for principal %s succeeded. \n " , host_principal ) ;
2004-06-23 01:58:35 +04:00
if ( lp_use_kerberos_keytab ( ) ) {
d_printf ( " Attempting to update system keytab with new password. \n " ) ;
if ( ads_keytab_create_default ( ads ) ) {
d_printf ( " Failed to update system keytab. \n " ) ;
}
}
2001-12-20 06:54:52 +03:00
ads_destroy ( & ads ) ;
SAFE_FREE ( host_principal ) ;
2004-06-23 01:58:35 +04:00
return 0 ;
2001-12-20 06:54:52 +03:00
}
2002-07-15 14:35:28 +04:00
/*
help for net ads search
*/
2008-05-10 01:22:12 +04:00
static int net_ads_search_usage ( struct net_context * c , int argc , const char * * argv )
2002-07-15 14:35:28 +04:00
{
d_printf (
" \n net ads search <expression> <attributes...> \n " \
" \n perform a raw LDAP search on a ADS server and dump the results \n " \
" The expression is a standard LDAP search expression, and the \n " \
" attributes are a list of LDAP fields to show in the results \n \n " \
" Example: net ads search '(objectCategory=group)' sAMAccountName \n \n "
) ;
2008-05-10 01:22:12 +04:00
net_common_flags_usage ( c , argc , argv ) ;
2002-07-15 14:35:28 +04:00
return - 1 ;
}
/*
general ADS search function . Useful in diagnosing problems in ADS
*/
2008-05-10 01:22:12 +04:00
static int net_ads_search ( struct net_context * c , int argc , const char * * argv )
2002-07-15 14:35:28 +04:00
{
ADS_STRUCT * ads ;
ADS_STATUS rc ;
2003-06-30 09:45:27 +04:00
const char * ldap_exp ;
2002-07-15 14:35:28 +04:00
const char * * attrs ;
2006-09-04 01:07:16 +04:00
LDAPMessage * res = NULL ;
2002-07-15 14:35:28 +04:00
if ( argc < 1 ) {
2008-05-10 01:22:12 +04:00
return net_ads_search_usage ( c , argc , argv ) ;
2002-07-15 14:35:28 +04:00
}
2008-05-10 01:22:12 +04:00
if ( ! ADS_ERR_OK ( ads_startup ( c , false , & ads ) ) ) {
2002-07-15 14:35:28 +04:00
return - 1 ;
}
2003-06-30 09:45:27 +04:00
ldap_exp = argv [ 0 ] ;
2002-07-15 14:35:28 +04:00
attrs = ( argv + 1 ) ;
2003-03-18 01:33:34 +03:00
rc = ads_do_search_all ( ads , ads - > config . bind_path ,
2002-07-15 14:35:28 +04:00
LDAP_SCOPE_SUBTREE ,
2003-06-30 09:45:27 +04:00
ldap_exp , attrs , & res ) ;
2002-07-15 14:35:28 +04:00
if ( ! ADS_ERR_OK ( rc ) ) {
2006-01-18 00:22:00 +03:00
d_fprintf ( stderr , " search failed: %s \n " , ads_errstr ( rc ) ) ;
2004-06-23 04:20:31 +04:00
ads_destroy ( & ads ) ;
2002-07-15 14:35:28 +04:00
return - 1 ;
2007-09-18 01:04:10 +04:00
}
2002-07-15 14:35:28 +04:00
d_printf ( " Got %d replies \n \n " , ads_count_replies ( ads , res ) ) ;
/* dump the results */
ads_dump ( ads , res ) ;
ads_msgfree ( ads , res ) ;
ads_destroy ( & ads ) ;
return 0 ;
}
2003-03-18 01:33:34 +03:00
/*
help for net ads search
*/
2008-05-10 01:22:12 +04:00
static int net_ads_dn_usage ( struct net_context * c , int argc , const char * * argv )
2003-03-18 01:33:34 +03:00
{
d_printf (
" \n net ads dn <dn> <attributes...> \n " \
" \n perform a raw LDAP search on a ADS server and dump the results \n " \
" The DN standard LDAP DN, and the attributes are a list of LDAP fields \n " \
" to show in the results \n \n " \
" Example: net ads dn 'CN=administrator,CN=Users,DC=my,DC=domain' sAMAccountName \n \n "
2007-03-01 03:49:28 +03:00
" Note: the DN must be provided properly escaped. See RFC 4514 for details \n \n "
2003-03-18 01:33:34 +03:00
) ;
2008-05-10 01:22:12 +04:00
net_common_flags_usage ( c , argc , argv ) ;
2003-03-18 01:33:34 +03:00
return - 1 ;
}
/*
general ADS search function . Useful in diagnosing problems in ADS
*/
2008-05-10 01:22:12 +04:00
static int net_ads_dn ( struct net_context * c , int argc , const char * * argv )
2003-03-18 01:33:34 +03:00
{
ADS_STRUCT * ads ;
ADS_STATUS rc ;
const char * dn ;
const char * * attrs ;
2006-09-04 01:07:16 +04:00
LDAPMessage * res = NULL ;
2003-03-18 01:33:34 +03:00
if ( argc < 1 ) {
2008-05-10 01:22:12 +04:00
return net_ads_dn_usage ( c , argc , argv ) ;
2003-03-18 01:33:34 +03:00
}
2008-05-10 01:22:12 +04:00
if ( ! ADS_ERR_OK ( ads_startup ( c , false , & ads ) ) ) {
2003-03-18 01:33:34 +03:00
return - 1 ;
}
dn = argv [ 0 ] ;
attrs = ( argv + 1 ) ;
2007-09-18 01:04:10 +04:00
rc = ads_do_search_all ( ads , dn ,
2003-03-18 01:33:34 +03:00
LDAP_SCOPE_BASE ,
" (objectclass=*) " , attrs , & res ) ;
if ( ! ADS_ERR_OK ( rc ) ) {
2006-01-18 00:22:00 +03:00
d_fprintf ( stderr , " search failed: %s \n " , ads_errstr ( rc ) ) ;
2004-06-23 04:20:31 +04:00
ads_destroy ( & ads ) ;
2003-03-18 01:33:34 +03:00
return - 1 ;
2007-09-18 01:04:10 +04:00
}
2003-03-18 01:33:34 +03:00
d_printf ( " Got %d replies \n \n " , ads_count_replies ( ads , res ) ) ;
/* dump the results */
ads_dump ( ads , res ) ;
ads_msgfree ( ads , res ) ;
ads_destroy ( & ads ) ;
return 0 ;
}
2006-04-28 18:44:43 +04:00
/*
help for net ads sid search
*/
2008-05-10 01:22:12 +04:00
static int net_ads_sid_usage ( struct net_context * c , int argc , const char * * argv )
2006-04-28 18:44:43 +04:00
{
d_printf (
" \n net ads sid <sid> <attributes...> \n " \
" \n perform a raw LDAP search on a ADS server and dump the results \n " \
" The SID is in string format, and the attributes are a list of LDAP fields \n " \
" to show in the results \n \n " \
" Example: net ads sid 'S-1-5-32' distinguishedName \n \n "
) ;
2008-05-10 01:22:12 +04:00
net_common_flags_usage ( c , argc , argv ) ;
2006-04-28 18:44:43 +04:00
return - 1 ;
}
/*
general ADS search function . Useful in diagnosing problems in ADS
*/
2008-05-10 01:22:12 +04:00
static int net_ads_sid ( struct net_context * c , int argc , const char * * argv )
2006-04-28 18:44:43 +04:00
{
ADS_STRUCT * ads ;
ADS_STATUS rc ;
const char * sid_string ;
const char * * attrs ;
2006-09-04 01:07:16 +04:00
LDAPMessage * res = NULL ;
2006-04-28 18:44:43 +04:00
DOM_SID sid ;
if ( argc < 1 ) {
2008-05-10 01:22:12 +04:00
return net_ads_sid_usage ( c , argc , argv ) ;
2006-04-28 18:44:43 +04:00
}
2008-05-10 01:22:12 +04:00
if ( ! ADS_ERR_OK ( ads_startup ( c , false , & ads ) ) ) {
2006-04-28 18:44:43 +04:00
return - 1 ;
}
sid_string = argv [ 0 ] ;
attrs = ( argv + 1 ) ;
if ( ! string_to_sid ( & sid , sid_string ) ) {
2006-04-30 03:41:09 +04:00
d_fprintf ( stderr , " could not convert sid \n " ) ;
2006-04-28 18:44:43 +04:00
ads_destroy ( & ads ) ;
return - 1 ;
}
rc = ads_search_retry_sid ( ads , & res , & sid , attrs ) ;
if ( ! ADS_ERR_OK ( rc ) ) {
d_fprintf ( stderr , " search failed: %s \n " , ads_errstr ( rc ) ) ;
ads_destroy ( & ads ) ;
return - 1 ;
2007-09-18 01:04:10 +04:00
}
2006-04-28 18:44:43 +04:00
d_printf ( " Got %d replies \n \n " , ads_count_replies ( ads , res ) ) ;
/* dump the results */
ads_dump ( ads , res ) ;
ads_msgfree ( ads , res ) ;
ads_destroy ( & ads ) ;
return 0 ;
}
2008-05-10 01:22:12 +04:00
static int net_ads_keytab_usage ( struct net_context * c , int argc , const char * * argv )
2004-06-23 01:58:35 +04:00
{
d_printf (
" net ads keytab <COMMAND> \n " \
" <COMMAND> can be either: \n " \
" ADD Adds new service principal \n " \
2007-04-23 12:40:54 +04:00
" CREATE Creates a fresh keytab \n " \
2004-06-23 01:58:35 +04:00
" FLUSH Flushes out all keytab entries \n " \
" HELP Prints this help message \n " \
2007-04-23 12:40:54 +04:00
" LIST List the keytab \n " \
2007-06-29 13:01:29 +04:00
" The ADD and LIST command will take arguments, the other commands \n " \
2004-06-23 01:58:35 +04:00
" will not take any arguments. The arguments given to ADD \n " \
" should be a list of principals to add. For example, \n " \
" net ads keytab add srv1 srv2 \n " \
" will add principals for the services srv1 and srv2 to the \n " \
" system's keytab. \n " \
2007-06-29 13:01:29 +04:00
" The LIST command takes a keytabname. \n " \
2004-06-23 01:58:35 +04:00
" \n "
) ;
return - 1 ;
}
2008-05-10 01:22:12 +04:00
static int net_ads_keytab_flush ( struct net_context * c , int argc , const char * * argv )
2004-06-23 01:58:35 +04:00
{
int ret ;
ADS_STRUCT * ads ;
2008-05-10 01:22:12 +04:00
if ( ! ADS_ERR_OK ( ads_startup ( c , true , & ads ) ) ) {
2004-06-23 01:58:35 +04:00
return - 1 ;
}
ret = ads_keytab_flush ( ads ) ;
ads_destroy ( & ads ) ;
return ret ;
}
2008-05-10 01:22:12 +04:00
static int net_ads_keytab_add ( struct net_context * c , int argc , const char * * argv )
2004-06-23 01:58:35 +04:00
{
int i ;
int ret = 0 ;
ADS_STRUCT * ads ;
d_printf ( " Processing principals to add... \n " ) ;
2008-05-10 01:22:12 +04:00
if ( ! ADS_ERR_OK ( ads_startup ( c , true , & ads ) ) ) {
2004-06-23 01:58:35 +04:00
return - 1 ;
}
for ( i = 0 ; i < argc ; i + + ) {
ret | = ads_keytab_add_entry ( ads , argv [ i ] ) ;
}
ads_destroy ( & ads ) ;
return ret ;
}
2008-05-10 01:22:12 +04:00
static int net_ads_keytab_create ( struct net_context * c , int argc , const char * * argv )
2004-06-23 01:58:35 +04:00
{
ADS_STRUCT * ads ;
int ret ;
2008-05-10 01:22:12 +04:00
if ( ! ADS_ERR_OK ( ads_startup ( c , true , & ads ) ) ) {
2004-06-23 01:58:35 +04:00
return - 1 ;
}
ret = ads_keytab_create_default ( ads ) ;
ads_destroy ( & ads ) ;
return ret ;
}
2008-05-10 01:22:12 +04:00
static int net_ads_keytab_list ( struct net_context * c , int argc , const char * * argv )
2007-04-23 12:40:54 +04:00
{
2007-06-29 13:01:29 +04:00
const char * keytab = NULL ;
if ( argc > = 1 ) {
keytab = argv [ 0 ] ;
}
return ads_keytab_list ( keytab ) ;
2007-04-23 12:40:54 +04:00
}
2008-05-10 01:22:12 +04:00
int net_ads_keytab ( struct net_context * c , int argc , const char * * argv )
2004-06-23 01:58:35 +04:00
{
struct functable func [ ] = {
{ " ADD " , net_ads_keytab_add } ,
2007-06-29 13:01:29 +04:00
{ " CREATE " , net_ads_keytab_create } ,
2004-06-23 01:58:35 +04:00
{ " FLUSH " , net_ads_keytab_flush } ,
{ " HELP " , net_ads_keytab_usage } ,
2007-04-23 12:40:54 +04:00
{ " LIST " , net_ads_keytab_list } ,
2004-06-23 01:58:35 +04:00
{ NULL , NULL }
} ;
if ( ! lp_use_kerberos_keytab ( ) ) {
d_printf ( " \n Warning: \" use kerberos keytab \" must be set to \" true \" in order to \
use keytab functions . \ n " );
}
2008-05-10 01:22:12 +04:00
return net_run_function ( c , argc , argv , func , net_ads_keytab_usage ) ;
2004-06-23 01:58:35 +04:00
}
2003-03-18 01:33:34 +03:00
2008-05-10 01:22:12 +04:00
static int net_ads_kerberos_usage ( struct net_context * c , int argc , const char * * argv )
2007-07-19 17:47:53 +04:00
{
d_printf (
" net ads kerberos <COMMAND> \n " \
" <COMMAND> can be either: \n " \
" RENEW Renew TGT from existing credential cache \n " \
" PAC Dumps the Kerberos PAC \n " \
" KINIT Retrieve Ticket Granting Ticket (TGT) \n " \
" \n "
) ;
return - 1 ;
}
2008-05-10 01:22:12 +04:00
static int net_ads_kerberos_renew ( struct net_context * c , int argc , const char * * argv )
2007-07-19 17:47:53 +04:00
{
int ret = smb_krb5_renew_ticket ( NULL , NULL , NULL , NULL ) ;
if ( ret ) {
d_printf ( " failed to renew kerberos ticket: %s \n " ,
error_message ( ret ) ) ;
}
return ret ;
}
2008-05-10 01:22:12 +04:00
static int net_ads_kerberos_pac ( struct net_context * c , int argc , const char * * argv )
2007-07-19 17:47:53 +04:00
{
2008-02-17 04:01:30 +03:00
struct PAC_DATA * pac = NULL ;
struct PAC_LOGON_INFO * info = NULL ;
2007-07-19 17:47:53 +04:00
TALLOC_CTX * mem_ctx = NULL ;
NTSTATUS status ;
int ret = - 1 ;
mem_ctx = talloc_init ( " net_ads_kerberos_pac " ) ;
if ( ! mem_ctx ) {
goto out ;
}
2008-05-10 01:22:12 +04:00
c - > opt_password = net_prompt_pass ( c , c - > opt_user_name ) ;
2007-07-19 17:47:53 +04:00
status = kerberos_return_pac ( mem_ctx ,
2008-05-10 01:22:12 +04:00
c - > opt_user_name ,
c - > opt_password ,
2007-08-14 23:47:57 +04:00
0 ,
NULL ,
NULL ,
NULL ,
2008-05-10 01:22:12 +04:00
true ,
true ,
2007-08-14 23:47:57 +04:00
2592000 , /* one month */
& pac ) ;
2007-07-19 17:47:53 +04:00
if ( ! NT_STATUS_IS_OK ( status ) ) {
d_printf ( " failed to query kerberos PAC: %s \n " ,
nt_errstr ( status ) ) ;
goto out ;
}
info = get_logon_info_from_pac ( pac ) ;
if ( info ) {
2008-02-17 04:01:30 +03:00
const char * s ;
s = NDR_PRINT_STRUCT_STRING ( mem_ctx , PAC_LOGON_INFO , info ) ;
d_printf ( " The Pac: %s \n " , s ) ;
2007-07-19 17:47:53 +04:00
}
ret = 0 ;
out :
TALLOC_FREE ( mem_ctx ) ;
return ret ;
}
2008-05-10 01:22:12 +04:00
static int net_ads_kerberos_kinit ( struct net_context * c , int argc , const char * * argv )
2007-07-19 17:47:53 +04:00
{
TALLOC_CTX * mem_ctx = NULL ;
int ret = - 1 ;
NTSTATUS status ;
mem_ctx = talloc_init ( " net_ads_kerberos_kinit " ) ;
if ( ! mem_ctx ) {
goto out ;
}
2008-05-10 01:22:12 +04:00
c - > opt_password = net_prompt_pass ( c , c - > opt_user_name ) ;
2007-07-19 17:47:53 +04:00
2008-05-10 01:22:12 +04:00
ret = kerberos_kinit_password_ext ( c - > opt_user_name ,
c - > opt_password ,
2007-07-19 17:47:53 +04:00
0 ,
NULL ,
NULL ,
NULL ,
2008-05-10 01:22:12 +04:00
true ,
true ,
2007-07-19 17:47:53 +04:00
2592000 , /* one month */
& status ) ;
if ( ret ) {
d_printf ( " failed to kinit password: %s \n " ,
nt_errstr ( status ) ) ;
}
out :
return ret ;
}
2008-05-10 01:22:12 +04:00
int net_ads_kerberos ( struct net_context * c , int argc , const char * * argv )
2007-07-19 17:47:53 +04:00
{
struct functable func [ ] = {
{ " KINIT " , net_ads_kerberos_kinit } ,
{ " RENEW " , net_ads_kerberos_renew } ,
{ " PAC " , net_ads_kerberos_pac } ,
{ " HELP " , net_ads_kerberos_usage } ,
{ NULL , NULL }
} ;
2008-05-10 01:22:12 +04:00
return net_run_function ( c , argc , argv , func , net_ads_kerberos_usage ) ;
2007-07-19 17:47:53 +04:00
}
2008-05-15 12:14:41 +04:00
int net_ads_usage ( struct net_context * c , int argc , const char * * argv )
2002-04-04 06:53:42 +04:00
{
struct functable func [ ] = {
{ " USER " , net_ads_user_usage } ,
2002-07-15 14:35:28 +04:00
{ " GROUP " , net_ads_group_usage } ,
{ " PRINTER " , net_ads_printer_usage } ,
{ " SEARCH " , net_ads_search_usage } ,
2002-04-04 06:53:42 +04:00
{ " INFO " , net_ads_info } ,
2006-07-26 19:26:51 +04:00
{ " JOIN " , net_ads_join_usage } ,
2006-08-24 19:43:32 +04:00
{ " DNS " , net_ads_dns_usage } ,
2002-04-04 06:53:42 +04:00
{ " LEAVE " , net_ads_leave } ,
{ " STATUS " , net_ads_status } ,
{ " PASSWORD " , net_ads_password } ,
2003-04-15 02:27:09 +04:00
{ " CHANGETRUSTPW " , net_ads_changetrustpw } ,
2002-04-04 06:53:42 +04:00
{ NULL , NULL }
} ;
2008-05-15 12:14:41 +04:00
return net_run_function ( c , argc , argv , func , net_ads_help ) ;
2002-04-04 06:53:42 +04:00
}
2001-12-20 06:54:52 +03:00
2008-05-10 01:22:12 +04:00
int net_ads ( struct net_context * c , int argc , const char * * argv )
2001-11-25 03:18:11 +03:00
{
struct functable func [ ] = {
2001-12-13 16:19:20 +03:00
{ " INFO " , net_ads_info } ,
2001-11-25 03:18:11 +03:00
{ " JOIN " , net_ads_join } ,
2002-08-17 18:45:04 +04:00
{ " TESTJOIN " , net_ads_testjoin } ,
2001-11-25 03:18:11 +03:00
{ " LEAVE " , net_ads_leave } ,
2001-11-25 04:06:56 +03:00
{ " STATUS " , net_ads_status } ,
2001-11-25 04:31:07 +03:00
{ " USER " , net_ads_user } ,
{ " GROUP " , net_ads_group } ,
2006-08-24 19:43:32 +04:00
{ " DNS " , net_ads_dns } ,
2001-12-20 06:54:52 +03:00
{ " PASSWORD " , net_ads_password } ,
2003-04-15 02:27:09 +04:00
{ " CHANGETRUSTPW " , net_ads_changetrustpw } ,
2002-02-02 05:06:03 +03:00
{ " PRINTER " , net_ads_printer } ,
2002-07-15 14:35:28 +04:00
{ " SEARCH " , net_ads_search } ,
2003-03-18 01:33:34 +03:00
{ " DN " , net_ads_dn } ,
2006-04-28 18:44:43 +04:00
{ " SID " , net_ads_sid } ,
2002-08-17 18:45:04 +04:00
{ " WORKGROUP " , net_ads_workgroup } ,
2002-09-25 19:19:00 +04:00
{ " LOOKUP " , net_ads_lookup } ,
2004-06-23 01:58:35 +04:00
{ " KEYTAB " , net_ads_keytab } ,
2006-09-29 21:15:45 +04:00
{ " GPO " , net_ads_gpo } ,
2007-07-19 17:47:53 +04:00
{ " KERBEROS " , net_ads_kerberos } ,
2002-04-04 06:53:42 +04:00
{ " HELP " , net_ads_help } ,
2001-11-25 03:18:11 +03:00
{ NULL , NULL }
} ;
2007-09-18 01:04:10 +04:00
2008-05-15 12:14:41 +04:00
return net_run_function ( c , argc , argv , func , net_ads_help ) ;
2001-11-25 03:18:11 +03:00
}
# else
2004-06-24 23:25:20 +04:00
static int net_ads_noads ( void )
2001-11-25 03:18:11 +03:00
{
2006-01-18 00:22:00 +03:00
d_fprintf ( stderr , " ADS support not compiled in \n " ) ;
2001-11-25 03:18:11 +03:00
return - 1 ;
}
2008-05-10 01:22:12 +04:00
int net_ads_keytab ( struct net_context * c , int argc , const char * * argv )
2004-06-23 01:58:35 +04:00
{
return net_ads_noads ( ) ;
}
2008-05-10 01:22:12 +04:00
int net_ads_kerberos ( struct net_context * c , int argc , const char * * argv )
2007-07-19 17:47:53 +04:00
{
return net_ads_noads ( ) ;
}
2008-05-10 01:22:12 +04:00
int net_ads_usage ( struct net_context * c , int argc , const char * * argv )
2002-04-04 20:47:24 +04:00
{
return net_ads_noads ( ) ;
}
2008-05-10 01:22:12 +04:00
int net_ads_help ( struct net_context * c , int argc , const char * * argv )
2002-04-04 07:14:25 +04:00
{
2002-04-04 20:47:24 +04:00
return net_ads_noads ( ) ;
2002-04-04 07:14:25 +04:00
}
2008-05-10 01:22:12 +04:00
int net_ads_changetrustpw ( struct net_context * c , int argc , const char * * argv )
2003-04-15 02:27:09 +04:00
{
return net_ads_noads ( ) ;
}
2008-05-10 01:22:12 +04:00
int net_ads_join ( struct net_context * c , int argc , const char * * argv )
2002-04-04 20:47:24 +04:00
{
return net_ads_noads ( ) ;
}
2008-05-10 01:22:12 +04:00
int net_ads_user ( struct net_context * c , int argc , const char * * argv )
2002-04-04 20:47:24 +04:00
{
return net_ads_noads ( ) ;
}
2008-05-10 01:22:12 +04:00
int net_ads_group ( struct net_context * c , int argc , const char * * argv )
2002-07-15 14:35:28 +04:00
{
return net_ads_noads ( ) ;
}
2002-04-04 20:47:24 +04:00
/* this one shouldn't display a message */
2008-05-10 01:22:12 +04:00
int net_ads_check ( struct net_context * c )
2002-03-16 04:30:09 +03:00
{
return - 1 ;
}
2008-05-10 01:22:12 +04:00
int net_ads_check_our_domain ( struct net_context * c )
2006-07-17 15:04:47 +04:00
{
return - 1 ;
}
2008-05-10 01:22:12 +04:00
int net_ads ( struct net_context * c , int argc , const char * * argv )
2001-11-25 03:18:11 +03:00
{
2008-05-10 01:22:12 +04:00
return net_ads_usage ( c , argc , argv ) ;
2001-11-25 03:18:11 +03:00
}
2006-07-20 00:56:11 +04:00
# endif /* WITH_ADS */