1998-09-26 01:01:52 +04:00
/*
Unix SMB / Netbios implementation .
2001-01-12 01:49:30 +03:00
Version 2.2
RPC pipe client
2001-01-16 02:35:59 +03:00
Copyright ( C ) Andrew Tridgell 1992 - 2000 ,
Copyright ( C ) Luke Kenneth Casson Leighton 1996 - 2000 ,
Copyright ( C ) Elrond 2000
2001-01-12 01:49:30 +03:00
Copyright ( C ) Tim Potter 2000
1998-09-26 01:01:52 +04:00
This program is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation ; either version 2 of the License , or
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
along with this program ; if not , write to the Free Software
Foundation , Inc . , 675 Mass Ave , Cambridge , MA 0213 9 , USA .
*/
# include "includes.h"
2001-01-16 02:35:59 +03:00
extern DOM_SID domain_sid ;
1998-09-26 01:01:52 +04:00
2001-01-16 02:35:59 +03:00
/****************************************************************************
display sam_user_info_21 structure
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static void display_sam_user_info_21 ( SAM_USER_INFO_21 * usr )
{
fstring temp ;
unistr2_to_ascii ( temp , & usr - > uni_user_name , sizeof ( temp ) - 1 ) ;
printf ( " \t User Name : \t %s \n " , temp ) ;
unistr2_to_ascii ( temp , & usr - > uni_full_name , sizeof ( temp ) - 1 ) ;
printf ( " \t Full Name : \t %s \n " , temp ) ;
unistr2_to_ascii ( temp , & usr - > uni_home_dir , sizeof ( temp ) - 1 ) ;
printf ( " \t Home Drive : \t %s \n " , temp ) ;
unistr2_to_ascii ( temp , & usr - > uni_dir_drive , sizeof ( temp ) - 1 ) ;
printf ( " \t Dir Drive : \t %s \n " , temp ) ;
unistr2_to_ascii ( temp , & usr - > uni_profile_path , sizeof ( temp ) - 1 ) ;
printf ( " \t Profile Path: \t %s \n " , temp ) ;
unistr2_to_ascii ( temp , & usr - > uni_logon_script , sizeof ( temp ) - 1 ) ;
printf ( " \t Logon Script: \t %s \n " , temp ) ;
unistr2_to_ascii ( temp , & usr - > uni_acct_desc , sizeof ( temp ) - 1 ) ;
printf ( " \t Description : \t %s \n " , temp ) ;
unistr2_to_ascii ( temp , & usr - > uni_workstations , sizeof ( temp ) - 1 ) ;
printf ( " \t Workstations: \t %s \n " , temp ) ;
unistr2_to_ascii ( temp , & usr - > uni_unknown_str , sizeof ( temp ) - 1 ) ;
printf ( " \t Unknown Str : \t %s \n " , temp ) ;
unistr2_to_ascii ( temp , & usr - > uni_munged_dial , sizeof ( temp ) - 1 ) ;
printf ( " \t Remote Dial : \t %s \n " , temp ) ;
printf ( " \t Logon Time : \t %s \n " ,
http_timestring ( nt_time_to_unix ( & usr - > logon_time ) ) ) ;
printf ( " \t Logoff Time : \t %s \n " ,
http_timestring ( nt_time_to_unix ( & usr - > logoff_time ) ) ) ;
printf ( " \t Kickoff Time : \t %s \n " ,
http_timestring ( nt_time_to_unix ( & usr - > kickoff_time ) ) ) ;
printf ( " \t Password last set Time : \t %s \n " ,
http_timestring ( nt_time_to_unix ( & usr - > pass_last_set_time ) ) ) ;
printf ( " \t Password can change Time : \t %s \n " ,
http_timestring ( nt_time_to_unix ( & usr - > pass_can_change_time ) ) ) ;
printf ( " \t Password must change Time: \t %s \n " ,
http_timestring ( nt_time_to_unix ( & usr - > pass_must_change_time ) ) ) ;
printf ( " \t unknown_2[0..31]... \n " ) ; /* user passwords? */
printf ( " \t user_rid : \t %x \n " , usr - > user_rid ) ; /* User ID */
printf ( " \t group_rid: \t %x \n " , usr - > group_rid ) ; /* Group ID */
printf ( " \t acb_info : \t %04x \n " , usr - > acb_info ) ; /* Account Control Info */
printf ( " \t unknown_3: \t %08x \n " , usr - > unknown_3 ) ; /* 0x00ff ffff */
printf ( " \t logon_divs: \t %d \n " , usr - > logon_divs ) ; /* 0x0000 00a8 which is 168 which is num hrs in a week */
printf ( " \t unknown_5: \t %08x \n " , usr - > unknown_5 ) ; /* 0x0002 0000 */
printf ( " \t padding1[0..7]... \n " ) ;
if ( usr - > ptr_logon_hrs ) {
printf ( " \t logon_hrs[0..%d]... \n " , usr - > logon_hrs . len ) ;
}
}
2001-03-14 23:22:57 +03:00
/**********************************************************************
* Query user information
*/
static uint32 cmd_samr_query_user ( struct cli_state * cli , int argc , char * * argv )
1999-02-24 04:52:30 +03:00
{
2001-01-16 02:35:59 +03:00
POLICY_HND connect_pol , domain_pol , user_pol ;
2001-03-14 23:22:57 +03:00
uint32 result = NT_STATUS_UNSUCCESSFUL ,
info_level = 21 ;
BOOL got_connect_pol = False ,
got_domain_pol = False ,
2001-01-16 02:35:59 +03:00
got_user_pol = False ;
SAM_USERINFO_CTR user_ctr ;
SAM_USER_INFO_21 info_21 ;
2001-03-16 01:06:53 +03:00
fstring server ;
2001-01-16 02:35:59 +03:00
if ( argc ! = 1 ) {
printf ( " Usage: %s \n " , argv [ 0 ] ) ;
return 0 ;
}
2001-03-14 23:22:57 +03:00
/* Initialise RPC connection */
if ( ! cli_nt_session_open ( cli , PIPE_SAMR ) ) {
fprintf ( stderr , " Could not initialize samr pipe! \n " ) ;
return NT_STATUS_UNSUCCESSFUL ;
2001-01-16 02:35:59 +03:00
}
2001-04-09 00:22:39 +04:00
slprintf ( server , sizeof ( fstring ) - 1 , " \\ \\ %s " , cli - > desthost ) ;
2001-03-16 01:06:53 +03:00
strupper ( server ) ;
2001-03-14 23:22:57 +03:00
if ( ( result = cli_samr_connect ( cli , server , MAXIMUM_ALLOWED_ACCESS ,
2001-01-16 02:35:59 +03:00
& connect_pol ) ) ! =
NT_STATUS_NOPROBLEMO ) {
goto done ;
}
got_connect_pol = True ;
2001-03-14 23:22:57 +03:00
fetch_domain_sid ( cli ) ;
2001-01-16 02:35:59 +03:00
2001-03-14 23:22:57 +03:00
if ( ( result = cli_samr_open_domain ( cli , & connect_pol ,
2001-01-16 02:35:59 +03:00
MAXIMUM_ALLOWED_ACCESS ,
& domain_sid , & domain_pol ) )
! = NT_STATUS_NOPROBLEMO ) {
goto done ;
}
got_domain_pol = True ;
2001-03-14 23:22:57 +03:00
if ( ( result = cli_samr_open_user ( cli , & domain_pol ,
2001-01-16 02:35:59 +03:00
MAXIMUM_ALLOWED_ACCESS ,
0x1f4 , & user_pol ) )
! = NT_STATUS_NOPROBLEMO ) {
goto done ;
}
got_user_pol = True ;
ZERO_STRUCT ( user_ctr ) ;
ZERO_STRUCT ( info_21 ) ;
user_ctr . info . id21 = & info_21 ;
2001-03-14 23:22:57 +03:00
if ( ( result = cli_samr_query_userinfo ( cli , & user_pol , info_level ,
2001-01-16 02:35:59 +03:00
& user_ctr ) )
! = NT_STATUS_NOPROBLEMO ) {
goto done ;
}
1998-12-04 19:30:00 +03:00
2001-01-16 02:35:59 +03:00
display_sam_user_info_21 ( & info_21 ) ;
2001-03-14 23:22:57 +03:00
done :
if ( got_user_pol ) cli_samr_close ( cli , & user_pol ) ;
if ( got_domain_pol ) cli_samr_close ( cli , & domain_pol ) ;
if ( got_connect_pol ) cli_samr_close ( cli , & connect_pol ) ;
2001-01-16 02:35:59 +03:00
2001-03-14 23:22:57 +03:00
cli_nt_session_close ( cli ) ;
2001-01-16 02:35:59 +03:00
return result ;
}
/****************************************************************************
display group info
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static void display_group_info1 ( GROUP_INFO1 * info1 )
{
fstring temp ;
unistr2_to_ascii ( temp , & info1 - > uni_acct_name , sizeof ( temp ) - 1 ) ;
printf ( " \t Group Name: \t %s \n " , temp ) ;
unistr2_to_ascii ( temp , & info1 - > uni_acct_desc , sizeof ( temp ) - 1 ) ;
printf ( " \t Description: \t %s \n " , temp ) ;
printf ( " \t unk1:%d \n " , info1 - > unknown_1 ) ;
printf ( " \t Num Members:%d \n " , info1 - > num_members ) ;
}
/****************************************************************************
display group info
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static void display_group_info4 ( GROUP_INFO4 * info4 )
{
fstring desc ;
unistr2_to_ascii ( desc , & info4 - > uni_acct_desc , sizeof ( desc ) - 1 ) ;
printf ( " \t Group Description:%s \n " , desc ) ;
}
/****************************************************************************
display sam sync structure
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static void display_group_info_ctr ( GROUP_INFO_CTR * ctr )
{
switch ( ctr - > switch_value1 ) {
case 1 : {
display_group_info1 ( & ctr - > group . info1 ) ;
break ;
}
case 4 : {
display_group_info4 ( & ctr - > group . info4 ) ;
break ;
}
}
}
2001-03-14 23:22:57 +03:00
/***********************************************************************
* Query group information
*/
static uint32 cmd_samr_query_group ( struct cli_state * cli , int argc , char * * argv )
2001-01-16 02:35:59 +03:00
{
POLICY_HND connect_pol , domain_pol , group_pol ;
uint32 result = NT_STATUS_UNSUCCESSFUL , info_level = 1 ;
BOOL got_connect_pol = False , got_domain_pol = False ,
got_group_pol = False ;
GROUP_INFO_CTR group_ctr ;
2001-03-16 01:06:53 +03:00
fstring server ;
2001-01-16 02:35:59 +03:00
if ( argc ! = 1 ) {
2001-01-12 01:49:30 +03:00
printf ( " Usage: %s \n " , argv [ 0 ] ) ;
return 0 ;
1998-12-04 19:30:00 +03:00
}
1999-11-22 22:02:39 +03:00
2001-03-14 23:22:57 +03:00
/* Initialise RPC connection */
if ( ! cli_nt_session_open ( cli , PIPE_SAMR ) ) {
fprintf ( stderr , " Could not initialize samr pipe! \n " ) ;
return NT_STATUS_UNSUCCESSFUL ;
1999-12-13 16:27:58 +03:00
}
2001-01-16 02:35:59 +03:00
2001-04-09 00:22:39 +04:00
slprintf ( server , sizeof ( fstring ) - 1 , " \\ \\ %s " , cli - > desthost ) ;
2001-03-16 01:06:53 +03:00
strupper ( server ) ;
2001-03-14 23:22:57 +03:00
if ( ( result = cli_samr_connect ( cli , server , MAXIMUM_ALLOWED_ACCESS ,
2001-01-16 02:35:59 +03:00
& connect_pol ) ) ! =
NT_STATUS_NOPROBLEMO ) {
goto done ;
}
got_connect_pol = True ;
2001-03-14 23:22:57 +03:00
fetch_domain_sid ( cli ) ;
1998-12-04 19:30:00 +03:00
2001-03-14 23:22:57 +03:00
if ( ( result = cli_samr_open_domain ( cli , & connect_pol ,
2001-01-16 02:35:59 +03:00
MAXIMUM_ALLOWED_ACCESS ,
& domain_sid , & domain_pol ) )
! = NT_STATUS_NOPROBLEMO ) {
2001-01-12 01:49:30 +03:00
goto done ;
- lib/unix_sec_ctxt.c
attempt at taking lib/uid.c and getting a unix security context
change module that is independent of "cnums" and "snums".
a security context is needed for pipes, not just IPC$ or other
services.
- group database API
added add_group/alias_member, del_group/alias_member,
del_group/alias_entry functions. del_builtin_entry() is
deliberately set to NULL to cause an exception, you cannot
delete builtin aliases.
- parse_lsa.c srv_lsa.c
fixed lookup_names code, it was a load of trash and didn't do
anything.
- cmd_samr.c rpcclient.c srv_samr.c
added "deletegroup", "deletealias", "delaliasmem", "delgroupmem",
"addgroupmem", "addaliasmem", "createalias", "creategroup", to
both client and server code.
server code calls into unix stubs right now, which don't actually
do anything. the only instance where they are expected to do
anything is in appliance mode NOT even in the ldap code or anything.
client code modified to call samr_lookup_names() for group code
(because we can) and lsa_lookup_names() for alias code (because
we have to).
- srv_lookup.c
oops, lookup on unsplit name, we got lookup on DOMAIN, DOMAIN\name
instead of DOMAIN, name.
(This used to be commit b8175702ef61b8b37b078f38e81452c00a5e2986)
1998-12-07 20:23:48 +03:00
}
2001-01-16 02:35:59 +03:00
got_domain_pol = True ;
1999-12-13 16:27:58 +03:00
2001-03-14 23:22:57 +03:00
if ( ( result = cli_samr_open_group ( cli , & domain_pol ,
2001-01-16 02:35:59 +03:00
MAXIMUM_ALLOWED_ACCESS ,
0x202 , & group_pol ) )
! = NT_STATUS_NOPROBLEMO ) {
goto done ;
}
got_group_pol = True ;
1999-12-13 16:27:58 +03:00
2001-01-16 02:35:59 +03:00
ZERO_STRUCT ( group_ctr ) ;
2001-03-14 23:22:57 +03:00
if ( ( result = cli_samr_query_groupinfo ( cli , & group_pol , info_level ,
2001-01-16 02:35:59 +03:00
& group_ctr ) )
2001-01-12 01:49:30 +03:00
! = NT_STATUS_NOPROBLEMO ) {
goto done ;
- lib/unix_sec_ctxt.c
attempt at taking lib/uid.c and getting a unix security context
change module that is independent of "cnums" and "snums".
a security context is needed for pipes, not just IPC$ or other
services.
- group database API
added add_group/alias_member, del_group/alias_member,
del_group/alias_entry functions. del_builtin_entry() is
deliberately set to NULL to cause an exception, you cannot
delete builtin aliases.
- parse_lsa.c srv_lsa.c
fixed lookup_names code, it was a load of trash and didn't do
anything.
- cmd_samr.c rpcclient.c srv_samr.c
added "deletegroup", "deletealias", "delaliasmem", "delgroupmem",
"addgroupmem", "addaliasmem", "createalias", "creategroup", to
both client and server code.
server code calls into unix stubs right now, which don't actually
do anything. the only instance where they are expected to do
anything is in appliance mode NOT even in the ldap code or anything.
client code modified to call samr_lookup_names() for group code
(because we can) and lsa_lookup_names() for alias code (because
we have to).
- srv_lookup.c
oops, lookup on unsplit name, we got lookup on DOMAIN, DOMAIN\name
instead of DOMAIN, name.
(This used to be commit b8175702ef61b8b37b078f38e81452c00a5e2986)
1998-12-07 20:23:48 +03:00
}
1999-12-13 16:27:58 +03:00
2001-01-16 02:35:59 +03:00
display_group_info_ctr ( & group_ctr ) ;
2001-03-14 23:22:57 +03:00
done :
if ( got_group_pol ) cli_samr_close ( cli , & group_pol ) ;
if ( got_domain_pol ) cli_samr_close ( cli , & domain_pol ) ;
if ( got_connect_pol ) cli_samr_close ( cli , & connect_pol ) ;
2001-01-16 02:35:59 +03:00
2001-03-14 23:22:57 +03:00
cli_nt_session_close ( cli ) ;
2001-01-16 02:35:59 +03:00
return result ;
}
/* Query groups a user is a member of */
2001-03-14 23:22:57 +03:00
static uint32 cmd_samr_query_usergroups ( struct cli_state * cli , int argc , char * * argv )
2001-01-16 02:35:59 +03:00
{
2001-03-16 01:06:53 +03:00
POLICY_HND connect_pol ,
domain_pol ,
user_pol ;
uint32 result = NT_STATUS_UNSUCCESSFUL ;
BOOL got_connect_pol = False ,
got_domain_pol = False ,
got_user_pol = False ;
uint32 num_groups ,
user_rid ;
DOM_GID * user_gids ;
int i ;
fstring server ;
2001-01-16 02:35:59 +03:00
if ( argc ! = 2 ) {
2001-03-28 09:01:54 +04:00
printf ( " Usage: %s rid \n " , argv [ 0 ] ) ;
2001-01-16 02:35:59 +03:00
return 0 ;
}
sscanf ( argv [ 1 ] , " %i " , & user_rid ) ;
2001-03-14 23:22:57 +03:00
/* Initialise RPC connection */
if ( ! cli_nt_session_open ( cli , PIPE_SAMR ) ) {
fprintf ( stderr , " Could not initialize samr pipe! \n " ) ;
return NT_STATUS_UNSUCCESSFUL ;
2001-01-16 02:35:59 +03:00
}
2001-03-16 01:06:53 +03:00
2001-04-09 00:22:39 +04:00
slprintf ( server , sizeof ( fstring ) - 1 , " \\ \\ %s " , cli - > desthost ) ;
2001-03-16 01:06:53 +03:00
strupper ( server ) ;
2001-03-14 23:22:57 +03:00
if ( ( result = cli_samr_connect ( cli , server , MAXIMUM_ALLOWED_ACCESS ,
2001-01-16 02:35:59 +03:00
& connect_pol ) ) ! =
NT_STATUS_NOPROBLEMO ) {
goto done ;
}
got_connect_pol = True ;
2001-03-14 23:22:57 +03:00
fetch_domain_sid ( cli ) ;
2001-01-16 02:35:59 +03:00
2001-03-14 23:22:57 +03:00
if ( ( result = cli_samr_open_domain ( cli , & connect_pol ,
2001-01-16 02:35:59 +03:00
MAXIMUM_ALLOWED_ACCESS ,
& domain_sid , & domain_pol ) )
! = NT_STATUS_NOPROBLEMO ) {
goto done ;
}
got_domain_pol = True ;
- lib/unix_sec_ctxt.c
attempt at taking lib/uid.c and getting a unix security context
change module that is independent of "cnums" and "snums".
a security context is needed for pipes, not just IPC$ or other
services.
- group database API
added add_group/alias_member, del_group/alias_member,
del_group/alias_entry functions. del_builtin_entry() is
deliberately set to NULL to cause an exception, you cannot
delete builtin aliases.
- parse_lsa.c srv_lsa.c
fixed lookup_names code, it was a load of trash and didn't do
anything.
- cmd_samr.c rpcclient.c srv_samr.c
added "deletegroup", "deletealias", "delaliasmem", "delgroupmem",
"addgroupmem", "addaliasmem", "createalias", "creategroup", to
both client and server code.
server code calls into unix stubs right now, which don't actually
do anything. the only instance where they are expected to do
anything is in appliance mode NOT even in the ldap code or anything.
client code modified to call samr_lookup_names() for group code
(because we can) and lsa_lookup_names() for alias code (because
we have to).
- srv_lookup.c
oops, lookup on unsplit name, we got lookup on DOMAIN, DOMAIN\name
instead of DOMAIN, name.
(This used to be commit b8175702ef61b8b37b078f38e81452c00a5e2986)
1998-12-07 20:23:48 +03:00
2001-03-14 23:22:57 +03:00
if ( ( result = cli_samr_open_user ( cli , & domain_pol ,
2001-01-16 02:35:59 +03:00
MAXIMUM_ALLOWED_ACCESS ,
user_rid , & user_pol ) )
! = NT_STATUS_NOPROBLEMO ) {
goto done ;
}
got_user_pol = True ;
2001-03-14 23:22:57 +03:00
if ( ( result = cli_samr_query_usergroups ( cli , & user_pol ,
2001-01-16 02:35:59 +03:00
& num_groups , & user_gids ) )
2001-01-12 01:49:30 +03:00
! = NT_STATUS_NOPROBLEMO ) {
goto done ;
- lib/unix_sec_ctxt.c
attempt at taking lib/uid.c and getting a unix security context
change module that is independent of "cnums" and "snums".
a security context is needed for pipes, not just IPC$ or other
services.
- group database API
added add_group/alias_member, del_group/alias_member,
del_group/alias_entry functions. del_builtin_entry() is
deliberately set to NULL to cause an exception, you cannot
delete builtin aliases.
- parse_lsa.c srv_lsa.c
fixed lookup_names code, it was a load of trash and didn't do
anything.
- cmd_samr.c rpcclient.c srv_samr.c
added "deletegroup", "deletealias", "delaliasmem", "delgroupmem",
"addgroupmem", "addaliasmem", "createalias", "creategroup", to
both client and server code.
server code calls into unix stubs right now, which don't actually
do anything. the only instance where they are expected to do
anything is in appliance mode NOT even in the ldap code or anything.
client code modified to call samr_lookup_names() for group code
(because we can) and lsa_lookup_names() for alias code (because
we have to).
- srv_lookup.c
oops, lookup on unsplit name, we got lookup on DOMAIN, DOMAIN\name
instead of DOMAIN, name.
(This used to be commit b8175702ef61b8b37b078f38e81452c00a5e2986)
1998-12-07 20:23:48 +03:00
}
2001-01-16 02:35:59 +03:00
for ( i = 0 ; i < num_groups ; i + + ) {
printf ( " \t group rid:[0x%x] attr:[0x%x] \n " ,
user_gids [ i ] . g_rid , user_gids [ i ] . attr ) ;
}
done :
2001-03-14 23:22:57 +03:00
if ( got_user_pol ) cli_samr_close ( cli , & user_pol ) ;
if ( got_domain_pol ) cli_samr_close ( cli , & domain_pol ) ;
if ( got_connect_pol ) cli_samr_close ( cli , & connect_pol ) ;
2001-01-16 02:35:59 +03:00
2001-03-14 23:22:57 +03:00
cli_nt_session_close ( cli ) ;
2001-01-16 02:35:59 +03:00
return result ;
}
/* Query members of a group */
2001-03-14 23:22:57 +03:00
static uint32 cmd_samr_query_groupmem ( struct cli_state * cli , int argc , char * * argv )
2001-01-16 02:35:59 +03:00
{
POLICY_HND connect_pol , domain_pol , group_pol ;
uint32 result = NT_STATUS_UNSUCCESSFUL ;
2001-03-14 23:22:57 +03:00
BOOL got_connect_pol = False ,
got_domain_pol = False ,
2001-01-16 02:35:59 +03:00
got_group_pol = False ;
uint32 num_members , * group_rids , * group_attrs , group_rid ;
int i ;
2001-03-16 01:06:53 +03:00
fstring server ;
2001-01-16 02:35:59 +03:00
if ( argc ! = 2 ) {
2001-03-28 09:01:54 +04:00
printf ( " Usage: %s rid \n " , argv [ 0 ] ) ;
2001-01-16 02:35:59 +03:00
return 0 ;
}
sscanf ( argv [ 1 ] , " %i " , & group_rid ) ;
2001-03-14 23:22:57 +03:00
/* Initialise RPC connection */
if ( ! cli_nt_session_open ( cli , PIPE_SAMR ) ) {
fprintf ( stderr , " Could not initialize samr pipe! \n " ) ;
return NT_STATUS_UNSUCCESSFUL ;
2001-01-16 02:35:59 +03:00
}
2001-03-14 23:22:57 +03:00
2001-04-09 00:22:39 +04:00
slprintf ( server , sizeof ( fstring ) - 1 , " \\ \\ %s " , cli - > desthost ) ;
2001-03-16 01:06:53 +03:00
strupper ( server ) ;
2001-03-14 23:22:57 +03:00
if ( ( result = cli_samr_connect ( cli , server , MAXIMUM_ALLOWED_ACCESS ,
2001-01-16 02:35:59 +03:00
& connect_pol ) ) ! =
NT_STATUS_NOPROBLEMO ) {
goto done ;
}
got_connect_pol = True ;
2001-03-14 23:22:57 +03:00
fetch_domain_sid ( cli ) ;
2001-01-16 02:35:59 +03:00
2001-03-14 23:22:57 +03:00
if ( ( result = cli_samr_open_domain ( cli , & connect_pol ,
2001-01-16 02:35:59 +03:00
MAXIMUM_ALLOWED_ACCESS ,
& domain_sid , & domain_pol ) )
! = NT_STATUS_NOPROBLEMO ) {
goto done ;
}
got_domain_pol = True ;
2001-03-14 23:22:57 +03:00
if ( ( result = cli_samr_open_group ( cli , & domain_pol ,
2001-01-16 02:35:59 +03:00
MAXIMUM_ALLOWED_ACCESS ,
group_rid , & group_pol ) )
! = NT_STATUS_NOPROBLEMO ) {
goto done ;
}
got_group_pol = True ;
2001-03-14 23:22:57 +03:00
if ( ( result = cli_samr_query_groupmem ( cli , & group_pol ,
2001-01-16 02:35:59 +03:00
& num_members , & group_rids ,
& group_attrs ) )
! = NT_STATUS_NOPROBLEMO ) {
goto done ;
}
for ( i = 0 ; i < num_members ; i + + ) {
printf ( " \t rid:[0x%x] attr:[0x%x] \n " , group_rids [ i ] ,
group_attrs [ i ] ) ;
}
done :
2001-03-14 23:22:57 +03:00
if ( got_group_pol ) cli_samr_close ( cli , & group_pol ) ;
if ( got_domain_pol ) cli_samr_close ( cli , & domain_pol ) ;
if ( got_connect_pol ) cli_samr_close ( cli , & connect_pol ) ;
2001-01-16 02:35:59 +03:00
2001-03-14 23:22:57 +03:00
cli_nt_session_close ( cli ) ;
1999-12-13 16:27:58 +03:00
2001-01-12 01:49:30 +03:00
return result ;
1999-12-13 16:27:58 +03:00
}
1998-12-04 01:20:30 +03:00
2001-01-12 01:49:30 +03:00
/* List of commands exported by this module */
1999-11-16 01:43:08 +03:00
2001-01-12 01:49:30 +03:00
struct cmd_set samr_commands [ ] = {
2001-03-15 05:15:05 +03:00
{ " SAMR " , NULL , " " } ,
2001-03-14 23:22:57 +03:00
{ " queryuser " , cmd_samr_query_user , " Query user info " } ,
{ " querygroup " , cmd_samr_query_group , " Query group info " } ,
{ " queryusergroups " , cmd_samr_query_usergroups , " Query user groups " } ,
{ " querygroupmem " , cmd_samr_query_groupmem , " Query group membership " } ,
2001-01-12 01:49:30 +03:00
{ NULL , NULL , NULL }
} ;
2001-03-14 23:22:57 +03:00