2001-10-19 20:51:26 +04:00
/*
Samba Unix / Linux SMB client library
Version 3.0
Distributed SMB / CIFS Server Management Utility
Copyright ( C ) 2001 Steve French ( sfrench @ us . ibm . com )
Copyright ( C ) 2001 Jim McDonough ( jmcd @ us . ibm . com )
2001-11-24 16:26:01 +03:00
Copyright ( C ) 2001 Andrew Tridgell ( tridge @ samba . org )
2001-10-19 20:51:26 +04:00
2001-11-24 16:26:01 +03:00
Originally written by Steve and Jim . Largely rewritten by tridge in
November 2001.
2001-10-19 20:51:26 +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
2001-11-24 16:26:01 +03:00
Foundation , Inc . , 675 Mass Ave , Cambridge , MA 0213 9 , USA . */
2001-10-19 20:51:26 +04:00
/*****************************************************/
/* */
/* Distributed SMB/CIFS Server Management Utility */
/* */
/* The intent was to make the syntax similar */
/* to the NET utility (first developed in DOS */
/* with additional interesting & useful functions */
/* added in later SMB server network operating */
/* systems). */
/* */
/*****************************************************/
2001-11-25 03:18:11 +03:00
# include "includes.h"
2001-10-19 20:51:26 +04:00
/***********************************************************************/
/* Beginning of internationalization section. Translatable constants */
/* should be kept in this area and referenced in the rest of the code. */
/* */
/* No functions, outside of Samba or LSB (Linux Standards Base) should */
/* be used (if possible). */
/***********************************************************************/
# define PASSWORD_PROMPT "Password: "
# define YES_STRING "Yes"
# define NO_STRING "No"
# define NET_USAGE \
" \n Usage: \n " \
" net domain \t to list domains \n " \
" net file \t to list open files on a server \n " \
" net group \t to list user groups \n " \
" net groupmember to list users in a group \n " \
2001-11-13 01:50:48 +03:00
" net password \t to change the password of a user \n " \
2001-10-19 20:51:26 +04:00
" net printq \t to list the print queues on a server \n " \
" net server \t to list servers in a domain \n " \
" net session \t to list clients with open sessions to a server \n " \
" net share \t to list shares exported by a server \n " \
" net user \t to list users \n " \
" net validate \t to check whether a user and the corresponding password are valid \n " \
" net help \n " \
" \n Type \" net help <option> \" to get more information on that option \n "
# define NET_FILE_USAGE \
" \n net file [misc. options] [targets] " \
" \n \t enumerates all open files on file server \n " \
2001-11-24 16:26:01 +03:00
" \n net file USER <username> [misc. options] [targets] " \
2001-10-19 20:51:26 +04:00
" \n \t enumerates all files opened by username on file server \n " \
" \n net file CLOSE <id> [misc. options] [targets] " \
" \n \t closes specified file on target server \n "
# define FILE_INFO_DISPLAY \
" File ID %d \n " \
" User name %s \n " \
" Locks 0x%-4.2x \n " \
" Path %s \n " \
" Permissions 0x%x \n "
# define FILE_ENUM_DISPLAY \
" \n Enumerating open files on remote server: \n \n " \
" \n \t FileId Opened by Perms Locks Path \n " \
" \t ------ --------- ----- ----- ---- \n "
# define NET_SHARE_USAGE \
" \n net share [misc. options] [targets] \n " \
" \t enumerates all exported resources (network shares) on target server \n " \
" \n net share ADD <name=serverpath> [misc. options] [targets] " \
" \n \t Add a share from a server (makes the export active) \n " \
" \n net share DELETE <sharename> [misc. options] [targets] \n " \
" \t or " \
" \n net share CLOSE <sharename> [misc. options] [targets] " \
" \n \t Deletes a share from a server (makes the export inactive) \n "
# define SHARE_ENUM_DISPLAY \
" \n Enumerating shared resources (exports) on remote server: \n \n " \
" \n Share name Type Description \n " \
" ---------- ---- ----------- \n "
# define NET_SESSION_USAGE \
" \n net session [misc. options] [targets] " \
" \n \t enumerates all active SMB/CIFS sessions on target server \n " \
" \n net session DELETE <client_name> [misc. options] [targets] \n " \
" \t or " \
" \n net session CLOSE <client_name> [misc. options] [targets] " \
" \n \t Deletes (closes) a session from specified client to server \n "
# define SESSION_ENUM_DISPLAY \
" Computer User name Client Type Opens Idle time \n \n " \
" ------------------------------------------------------------------------------ \n "
# define SESSION_DISPLAY_ONE \
" User name %-20.20s \n " \
" Computer %-20.20s \n " \
" Guest logon %-20.20s \n " \
" Client Type %-40.40s \n " \
" Sess time %2.2d:%2.2d:%2.2d \n " \
" Idle time %2.2d:%2.2d:%2.2d \n "
# define SESSION_DISPLAY_CONNS \
" Share name Type # Opens \n " \
" ------------------------------------------------------------------------------ \n "
# define NET_SERVER_USAGE \
" \n Usage: \n " \
" net server [domain] \t lists the servers in the specified domain or workgroup. \n " \
" If domain is not specified, it uses the current domain or workgroup as \n " \
" the default. \n "
# define SERVER_ENUM_DISPLAY "\nEnumerating servers in this domain or workgroup: \n\n" \
" \n \t Server name Server description \n " \
" \t ------------- ---------------------------- \n "
# define NET_DOMAIN_USAGE \
" \n Usage: \n " \
" net domain [misc. options] [target] \n \t lists the domains " \
" or workgroups visible on the current network \n "
# define DOMAIN_ENUM_DISPLAY \
" \n Enumerating domains: \n \n " \
" \n \t Domain name Server name of Browse Master \n " \
" \t ------------- ---------------------------- \n "
# define NET_PRINTQ_USAGE \
" \n Usage: \n " \
" net printq [misc. options] [targets] \n " \
" \t or \n " \
" net printq list [<queue_name>] [misc. options] [targets] \n " \
" \t lists the specified queue and jobs on the target server. \n " \
" \t If the queue name is not specified, all queues are listed. \n \n " \
" net printq delete [<queue name>] [misc. options] [targets] \n " \
" \t deletes the specified job number on the target server, or the \n " \
" \t printer queue if no job number is specified \n "
# define PRINTQ_ENUM_DISPLAY \
" Print queues at \\ \\ %s \n \n " \
" Name Job # Size Status \n \n " \
" ------------------------------------------------------------------ " \
" ------------- \n "
# define PRINTQ_DISPLAY_ONE "%-23.23s %5d jobs %-22.22s\n"
# define PRINTQ_PRINTER_ACTIVE "*Printer Active*"
# define PRINTQ_PRINTER_PAUSED "*Printer Paused*"
# define PRINTQ_PRINTER_ERROR "*Printer error*"
# define PRINTQ_PRINTER_DELPEND "*Delete Pending*"
# define PRINTQ_PRINTER_STATUNK "**UNKNOWN STATUS**"
# define PRINTQ_DISPLAY_JOB " %-23.23s %5d %9d %-22.22s\n"
# define PRINTQ_JOB_PRINTING "Printing"
# define PRINTQ_JOB_QUEUED "Waiting"
# define PRINTQ_JOB_PAUSED "Held in queue"
# define PRINTQ_JOB_SPOOLING "Spooling"
# define PRINTQ_QUEUE_WORD " Queue"
# define NET_USER_USAGE \
" \n net user [misc. options] [targets] \n \t Enumerate users \n " \
" \n net user DELETE <name> [misc. options] [targets] " \
" \n \t Delete specified user \n " \
2001-11-04 00:11:28 +03:00
" \n net user INFO <name> [misc. options] [targets] " \
" \n \t List the domain groups of the specified user \n " \
" \n net user ADD <name> [-F user flags] [misc. options] [targets] " \
2001-10-19 20:51:26 +04:00
" \n \t Add specified user \n "
# define USER_ENUM_DISPLAY \
" \n Enumerating shared resources (exports) on remote server: \n \n " \
" \n User name Description Home Directory Profile Directory \n " \
" --------- ----------- -------------- ----------------- \n "
# define NET_GROUP_USAGE \
" \n net group [misc. options] [targets] " \
" \n \t Enumerate user groups \n " \
" \n net group DELETE <name> [misc. options] [targets] " \
" \n \t Delete specified group \n " \
" \n net group ADD <name> [-C comment] [misc. options] [targets] " \
" \n \t Create specified group \n "
# define NET_GROUPMEMBER_USAGE \
" \n net groupmember LIST <group name> [misc. options] [targets] " \
" \n \t Enumerate users in a group \n " \
" \n net groupmember DELETE <group name> <user name> [misc. options] " \
" [targets] \n \t Delete sepcified user from specified group \n " \
" \n net groupmember ADD <group name> <user name> [misc. options] [targets] " \
" \n \t Add specified user to specified group \n "
2001-11-04 00:11:28 +03:00
# define NET_ADMIN_USAGE \
" \n net admin <remote command to execute> [cmd arguments [environment]] [misc_options] [targets] \n " \
" \t executes a remote command on an os/2 target server \n "
# define NET_PASSWORD_USAGE \
" \n net password <user> <old password> <new password> [misc_options] [targets] \n " \
" \t changes the password for the specified user on a remote server \n "
# define NET_SERVICE_USAGE \
" \n net service [misc. options] [targets] \n " \
" \t enumerates all running service daemons on target server \n " \
" \n net service ADD <name> [service startup arguments] [misc. options] [targets] " \
" \n \t Start named service on remote server \n " \
" \n net service DELETE <name> [misc. options] [targets] \n " \
" \n \t Stop named service on remote server \n "
2001-10-19 20:51:26 +04:00
# define NET_VALIDATE_USAGE \
" \n net validate <username> [password] \n " \
" \t Validate user and password to check whether they can access target server or domain \n "
# define TARGET_USAGE "\nValid targets: choose one (none defaults to using the %s)\n"
# define GLBL_LCL_MASTER "global browsemaster or local browse master if that is not found"
# define DOMAIN_MASTER "local domain browse master"
# define LOCAL_HOST "localhost"
# define MISC_OPT_USAGE "\nValid miscellaneous options are:\n"
# define SERVER_USAGE "\t-S or --server=<server>\t\tserver name\n"
# define IPADDRESS_USAGE "\t-I or --ipaddress=<ipaddr>\tip address of target server\n"
# define PORT_USAGE "\t-p or --port=<port number>\tconnection port on target server\n"
# define WORKGROUP_USAGE "\t-w or --workgroup=<wg>\t\ttarget workgroup or domain name\n"
# define COMMENT_USAGE "\t-C or --comment=<comment>\tdescriptive comment (for add only)\n"
# define MYWORKGROUP_USAGE "\t-W or --myworkgroup=<wg>\tclient workgroup\n"
2001-11-13 01:50:48 +03:00
# define DEBUG_USAGE "\t-d or --debug=<level>\t\tdebug level (0-10)\n"
2001-10-19 20:51:26 +04:00
# define MYNAME_USAGE "\t-n or --myname=<name>\t\tclient name\n"
# define USER_USAGE "\t-U or --user=<name>\t\tuser name\n"
# define CONF_USAGE "\t-s or --conf=<path>\t\tpathname of smb.conf file\n"
# define JOBID_USAGE "\t-j or --jobid=<job id>\t\tjob id\n"
# define MAXUSERS_USAGE "\t-M or --maxusers=<num>\t\tmax users allowed for share\n"
# define LONG_USAGE "\t-l or --long\t\t\tDisplay full information\n"
# define ERRMSG_NOCONN_TARGET_SRVR "\nUnable to connect to target server\n"
# define ERRMSG_NOCONN_BROWSE_MSTR "\nUnable to connect to browse master\n"
# define ERRMSG_NOT_IMPLEMENTED "\nNot implemented\n"
# define ERRMSG_FILEID_MISSING "\nMissing fileid of file to close\n\n"
# define ERRMSG_GROUPNAME_MISSING "\n\nGroup name not specified\n"
# define ERRMSG_USERNAME_MISSING "\n\nUser name not specified\n"
# define ERRMSG_SHARENAME_MISSING "\n\nShare name not specified\n"
# define ERRMSG_TARGET_WG_NOT_VALID "\nTarget workgroup option not valid "\
" except on net server command, ignored "
# define ERRMSG_INVALID_HELP_OPTION "\nInvalid help option\n"
# define ERRMSG_INVALID_OPTION "\nInvalid option %c (%d)\n"
# define ERRMSG_INVALID_IPADDRESS "\nInvalid ip address specified\n"
# define ERRMSG_SPURIOUS_PARM "\nInvalid paramater ignored: %s\n"
# define ERRMSG_BOTH_SERVER_IPADDRESS "\nTarget server and IP address both "\
" specified. Do not set both at the same time. The target IP address was used \n "
# define ERRMSG_INVALID_DOMAIN_ACTION "\nInvalid action for NET DOMAIN command"\
" ignored. Only listing domains permitted. \n "
/* Column headers */
# define COMMENT_STR "Comment "
# define USER_STR "User name "
# define GROUP_STR "Group name "
2001-11-04 00:11:28 +03:00
# define SERVICE_STR "Service name"
2001-10-19 20:51:26 +04:00
# define HOMED_STR "Home directory "
# define LOGONS_STR "Logon script "
2001-11-24 16:26:01 +03:00
# define FLAGS_MASTER 1
# define FLAGS_DMB 2
static const char * share_type [ ] = {
" Disk " ,
" Print " ,
" Dev " ,
" IPC "
} ;
2001-10-19 20:51:26 +04:00
/************************************************************************************/
/* end of internationalization section */
/************************************************************************************/
extern int optind , opterr , optopt ;
2001-11-24 16:26:01 +03:00
static struct cli_state * cli ;
static char * opt_requester_name ;
static char * opt_host ;
static char * opt_password ;
static char * opt_user_name ;
static char * opt_workgroup ;
static int opt_long_list_entries ;
static int opt_port ;
static int opt_maxusers = - 1 ;
static char * opt_comment = " " ;
static int opt_flags = - 1 ;
static int opt_jobid ;
static char * opt_target_workgroup ;
2001-10-19 20:51:26 +04:00
static BOOL got_pass = False ;
static BOOL have_ip = False ;
2001-11-24 16:26:01 +03:00
static struct in_addr dest_ip ;
2001-10-19 20:51:26 +04:00
2001-11-24 16:26:01 +03:00
/*
run a function from a function table . If not found then
call the specified usage function
*/
2001-11-24 17:16:41 +03:00
int net_run_function ( int argc , const char * * argv , struct functable * table ,
2001-11-26 07:53:08 +03:00
int ( * usage_fn ) ( int argc , const char * * argv ) )
2001-10-19 20:51:26 +04:00
{
2001-11-24 16:26:01 +03:00
int i ;
2001-11-26 07:53:08 +03:00
if ( argc < 1 )
return usage_fn ( argc , argv ) ;
2001-11-24 16:26:01 +03:00
for ( i = 0 ; table [ i ] . funcname ; i + + ) {
2001-11-26 07:53:08 +03:00
if ( StrCaseCmp ( argv [ 0 ] , table [ i ] . funcname ) = = 0 )
2001-11-24 16:26:01 +03:00
return table [ i ] . fn ( argc - 1 , argv + 1 ) ;
}
d_printf ( " No command: %s \n " , argv [ 0 ] ) ;
2001-11-26 07:53:08 +03:00
return usage_fn ( argc , argv ) ;
2001-10-19 20:51:26 +04:00
}
/****************************************************************************
2001-11-24 16:26:01 +03:00
connect to \ \ server \ ipc $
2001-10-19 20:51:26 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-11-24 16:26:01 +03:00
static struct cli_state * connect_to_ipc ( char * server )
{
struct cli_state * c ;
struct nmb_name called , calling ;
struct in_addr ip ;
char * server_n ;
fstring servicename ;
char * sharename ;
/* make a copy so we don't modify the global string 'service' */
safe_strcpy ( servicename , " IPC$ " , sizeof ( servicename ) - 1 ) ;
sharename = servicename ;
if ( * sharename = = ' \\ ' ) {
server = sharename + 2 ;
sharename = strchr ( server , ' \\ ' ) ;
if ( ! sharename ) return NULL ;
* sharename = 0 ;
sharename + + ;
}
if ( server = = NULL )
return NULL ; /* if ip addr specified, ascii version of ip address is used as host name */
server_n = server ;
2001-11-26 06:11:44 +03:00
zero_ip ( & ip ) ;
2001-11-24 16:26:01 +03:00
make_nmb_name ( & calling , opt_requester_name , 0x0 ) ;
make_nmb_name ( & called , server , 0x20 ) ;
again :
if ( have_ip )
ip = dest_ip ;
2001-11-26 06:11:44 +03:00
else
zero_ip ( & ip ) ;
2001-11-24 16:26:01 +03:00
DEBUG ( 3 , ( " Connecting to host=%s \\ share=%s \n \n " ,
server , " IPC$ " ) ) ;
2001-10-19 20:51:26 +04:00
2001-11-24 16:26:01 +03:00
/* have to open a new connection */
if ( ! ( c = cli_initialise ( NULL ) ) | | cli_set_port ( c , opt_port ) ! = opt_port | |
! cli_connect ( c , server_n , & ip ) ) {
DEBUG ( 1 , ( " Connection to %s failed \n " , server_n ) ) ;
return NULL ;
}
c - > protocol = PROTOCOL_NT1 ;
if ( ! cli_session_request ( c , & calling , & called ) ) {
char * p ;
DEBUG ( 1 , ( " session request to %s failed (%s) \n " ,
called . name , cli_errstr ( c ) ) ) ;
cli_shutdown ( c ) ;
if ( ( p = strchr ( called . name , ' . ' ) ) ) {
* p = 0 ;
goto again ;
}
if ( strcmp ( called . name , " *SMBSERVER " ) ) {
make_nmb_name ( & called , " *SMBSERVER " , 0x20 ) ;
goto again ;
}
return NULL ;
}
DEBUG ( 4 , ( " session request ok \n " ) ) ;
if ( ! cli_negprot ( c ) ) {
DEBUG ( 1 , ( " protocol negotiation failed \n " ) ) ;
cli_shutdown ( c ) ;
return NULL ;
}
if ( ! got_pass ) {
char * pass = getpass ( PASSWORD_PROMPT ) ;
if ( pass ) {
opt_password = strdup ( pass ) ;
}
}
2001-10-19 20:51:26 +04:00
2001-11-24 16:26:01 +03:00
if ( ! cli_session_setup ( c , opt_user_name ,
opt_password , strlen ( opt_password ) ,
opt_password , strlen ( opt_password ) ,
opt_workgroup ) ) {
/* try again with a null username */
if ( ! cli_session_setup ( c , " " , " " , 0 , " " , 0 , opt_workgroup ) ) {
DEBUG ( 1 , ( " session setup failed: %s \n " , cli_errstr ( c ) ) ) ;
cli_shutdown ( c ) ;
return NULL ;
}
DEBUG ( 3 , ( " Anonymous login successful \n " ) ) ;
}
DEBUG ( 4 , ( " session setup ok \n " ) ) ;
if ( ! cli_send_tconX ( c , sharename , " ????? " ,
opt_password , strlen ( opt_password ) + 1 ) ) {
DEBUG ( 1 , ( " tree connect failed: %s \n " , cli_errstr ( c ) ) ) ;
cli_shutdown ( c ) ;
return NULL ;
}
2001-10-19 20:51:26 +04:00
2001-11-24 16:26:01 +03:00
DEBUG ( 4 , ( " tconx ok \n " ) ) ;
2001-10-19 20:51:26 +04:00
2001-11-24 16:26:01 +03:00
return c ;
}
2001-10-19 20:51:26 +04:00
2001-11-24 16:26:01 +03:00
static BOOL make_ipc_connection ( unsigned flags )
{
if ( ! opt_host & & have_ip ) {
opt_host = strdup ( inet_ntoa ( dest_ip ) ) ;
} else if ( ! opt_host & & ( flags & FLAGS_DMB ) ) {
struct in_addr * ip_list ;
int addr_count ;
char * our_workgroup = lp_workgroup ( ) ;
struct in_addr msbrow_ip ;
/* if (!resolve_name(MSBROWSE, &msbrow_ip, 1)) */
if ( ! get_dmb_list ( & ip_list , & addr_count ) ) {
DEBUG ( 1 , ( " Unable to resolve global master browser via name lookup " ) ) ;
if ( ! resolve_name ( our_workgroup , & msbrow_ip , 0x1D ) ) {
DEBUG ( 1 , ( " Unable to resolve domain browser via name lookup \n " ) ) ;
return False ;
} else {
have_ip = True ;
dest_ip = msbrow_ip ;
}
} else {
have_ip = True ;
dest_ip = * ip_list ;
}
} else if ( ! opt_host & & ( flags & FLAGS_MASTER ) ) {
char * temp_workgroup = lp_workgroup ( ) ;
char our_workgroup [ 16 ] ;
struct in_addr brow_ips ;
/* find target server based on workgroup or domain */
if ( ( temp_workgroup = = 0 ) | | ( temp_workgroup [ 0 ] = = 0 ) )
temp_workgroup = lp_workgroup ( ) ; /* by default enum our local workgroup or domain */
safe_strcpy ( our_workgroup , temp_workgroup , 15 ) ;
if ( ! resolve_name ( our_workgroup , & brow_ips , 0x1D ) ) {
/* go looking for workgroups */
DEBUG ( 1 , ( " Unable to resolve master browser via name lookup \n " ) ) ;
return False ;
} else {
have_ip = True ;
dest_ip = brow_ips ;
}
} else {
extern struct in_addr loopback_ip ;
dest_ip = loopback_ip ;
have_ip = True ;
}
2001-10-19 20:51:26 +04:00
2001-11-24 16:26:01 +03:00
if ( ! opt_host & & ! have_ip ) {
DEBUG ( 1 , ( " no server to connect to \n " ) ) ;
return False ;
}
if ( ! opt_host ) {
opt_host = strdup ( inet_ntoa ( dest_ip ) ) ;
}
cli = connect_to_ipc ( opt_host ) ;
if ( ! cli ) {
d_printf ( ERRMSG_NOCONN_TARGET_SRVR ) ;
return False ;
}
return True ;
2001-10-19 20:51:26 +04:00
}
2001-11-26 07:53:08 +03:00
static int general_usage ( int argc , const char * * argv )
2001-10-19 20:51:26 +04:00
{
2001-11-24 16:26:01 +03:00
d_printf ( TARGET_USAGE , LOCAL_HOST ) ; /* target options */
d_printf ( SERVER_USAGE ) ;
d_printf ( IPADDRESS_USAGE ) ;
d_printf ( MISC_OPT_USAGE ) ; /* misc options */
d_printf ( PORT_USAGE ) ;
d_printf ( MYWORKGROUP_USAGE ) ;
d_printf ( DEBUG_USAGE ) ;
d_printf ( MYNAME_USAGE ) ;
d_printf ( USER_USAGE ) ;
d_printf ( CONF_USAGE ) ;
return - 1 ;
2001-10-19 20:51:26 +04:00
}
2001-11-26 07:53:08 +03:00
static int net_usage ( int argc , const char * * argv )
2001-11-24 17:16:41 +03:00
{
d_printf ( NET_USAGE ) ;
return - 1 ;
}
2001-11-26 07:53:08 +03:00
static int file_usage ( int argc , const char * * argv )
2001-11-24 17:16:41 +03:00
{
d_printf ( NET_FILE_USAGE ) ; /* command syntax */
2001-11-26 07:53:08 +03:00
general_usage ( argc , argv ) ;
2001-11-24 17:16:41 +03:00
return - 1 ;
}
2001-11-24 16:26:01 +03:00
2001-10-19 20:51:26 +04:00
/***************************************************************************
list info on an open file
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-11-24 16:26:01 +03:00
static void file_fn ( const char * pPath , const char * pUser , uint16 perms ,
uint16 locks , uint32 id )
2001-10-19 20:51:26 +04:00
{
2001-11-24 16:26:01 +03:00
d_printf ( " \t %-7.1d %-20.20s 0x%-4.2x %-6.1d %s \n " ,
id , pUser , perms , locks , pPath ) ;
2001-10-19 20:51:26 +04:00
}
2001-11-24 16:26:01 +03:00
static void one_file_fn ( const char * pPath , const char * pUser , uint16 perms ,
uint16 locks , uint32 id )
2001-10-19 20:51:26 +04:00
{
2001-11-24 16:26:01 +03:00
d_printf ( FILE_INFO_DISPLAY , id , pUser , locks , pPath , perms ) ;
2001-10-19 20:51:26 +04:00
}
2001-11-24 16:26:01 +03:00
static int net_file_close ( int argc , const char * * argv )
2001-10-19 20:51:26 +04:00
{
2001-11-26 07:53:08 +03:00
if ( argc = = 0 )
return file_usage ( argc , argv ) ;
if ( ! make_ipc_connection ( 0 ) )
return - 1 ;
2001-11-24 16:26:01 +03:00
return cli_NetFileClose ( cli , atoi ( argv [ 0 ] ) ) ;
}
static int net_file_info ( int argc , const char * * argv )
{
2001-11-26 07:53:08 +03:00
if ( argc = = 0 )
return file_usage ( argc , argv ) ;
if ( ! make_ipc_connection ( 0 ) )
return - 1 ;
2001-11-24 16:26:01 +03:00
return cli_NetFileGetInfo ( cli , atoi ( argv [ 0 ] ) , one_file_fn ) ;
}
static int net_file_user ( int argc , const char * * argv )
{
2001-11-26 07:53:08 +03:00
if ( argc = = 0 )
return file_usage ( argc , argv ) ;
2001-11-24 16:26:01 +03:00
d_printf ( " net file user not implemented yet \n " ) ;
return - 1 ;
}
static int net_file ( int argc , const char * * argv )
{
struct functable func [ ] = {
{ " CLOSE " , net_file_close } ,
{ " USER " , net_file_user } ,
{ " INFO " , net_file_info } ,
{ NULL , NULL }
} ;
2001-10-19 20:51:26 +04:00
2001-11-24 16:26:01 +03:00
if ( argc = = 0 ) {
2001-11-26 07:53:08 +03:00
if ( ! make_ipc_connection ( 0 ) )
return - 1 ;
2001-11-24 16:26:01 +03:00
/* list open files */
d_printf ( FILE_ENUM_DISPLAY ) ; /* file list header */
return cli_NetFileEnum ( cli , NULL , NULL , file_fn ) ;
}
2001-11-24 17:16:41 +03:00
return net_run_function ( argc , argv , func , file_usage ) ;
2001-10-19 20:51:26 +04:00
}
2001-11-26 07:53:08 +03:00
static int share_usage ( int argc , const char * * argv )
2001-10-19 20:51:26 +04:00
{
2001-11-24 16:26:01 +03:00
d_printf ( NET_SHARE_USAGE ) ; /* command syntax */
2001-11-26 07:53:08 +03:00
general_usage ( argc , argv ) ;
2001-11-24 16:26:01 +03:00
return - 1 ;
}
2001-11-06 19:28:50 +03:00
2001-11-24 16:26:01 +03:00
static void long_share_fn ( const char * share_name , uint32 type , const char * comment , void * state )
{
d_printf ( " %-12.12s %-8.8s %-50.50s \n " , share_name , share_type [ type ] , comment ) ;
}
2001-11-06 19:28:50 +03:00
2001-11-24 16:26:01 +03:00
static void share_fn ( const char * share_name , uint32 type , const char * comment , void * state )
{
d_printf ( " %-12.12s \n " , share_name ) ;
2001-10-19 20:51:26 +04:00
}
2001-11-24 16:26:01 +03:00
static int net_share_delete ( int argc , const char * * argv )
2001-10-19 20:51:26 +04:00
{
2001-11-24 16:26:01 +03:00
if ( argc = = 0 ) {
d_printf ( ERRMSG_SHARENAME_MISSING ) ;
return - 1 ;
}
2001-11-26 07:53:08 +03:00
if ( ! make_ipc_connection ( 0 ) )
return - 1 ;
2001-11-24 16:26:01 +03:00
return cli_NetShareDelete ( cli , argv [ 0 ] ) ;
2001-10-19 20:51:26 +04:00
}
2001-11-24 16:26:01 +03:00
static int net_share_add ( int argc , const char * * argv )
2001-10-19 20:51:26 +04:00
{
2001-11-24 16:26:01 +03:00
RAP_SHARE_INFO_2 sinfo ;
char * p ;
char * sharename ;
if ( argc = = 0 ) {
d_printf ( ERRMSG_SHARENAME_MISSING ) ;
return - 1 ;
}
2001-11-26 07:53:08 +03:00
if ( ! make_ipc_connection ( 0 ) )
return - 1 ;
2001-11-24 16:26:01 +03:00
sharename = strdup ( argv [ 0 ] ) ;
p = strchr ( sharename , ' = ' ) ;
* p = 0 ;
strlcpy ( sinfo . share_name , sharename , sizeof ( sinfo . share_name ) ) ;
sinfo . reserved1 = ' \0 ' ;
sinfo . share_type = 0 ;
sinfo . comment = opt_comment ;
sinfo . perms = 0 ;
sinfo . maximum_users = opt_maxusers ;
sinfo . active_users = 0 ;
sinfo . path = p + 1 ;
memset ( sinfo . password , ' \0 ' , sizeof ( sinfo . password ) ) ;
sinfo . reserved2 = ' \0 ' ;
return cli_NetShareAdd ( cli , & sinfo ) ;
2001-10-19 20:51:26 +04:00
}
2001-11-24 16:26:01 +03:00
static int net_share ( int argc , const char * * argv )
2001-10-19 20:51:26 +04:00
{
2001-11-24 16:26:01 +03:00
struct functable func [ ] = {
{ " DELETE " , net_share_delete } ,
{ " CLOSE " , net_share_delete } ,
{ " ADD " , net_share_add } ,
{ NULL , NULL }
} ;
if ( argc = = 0 ) {
2001-11-26 07:53:08 +03:00
if ( ! make_ipc_connection ( 0 ) )
return - 1 ;
2001-11-24 16:26:01 +03:00
if ( opt_long_list_entries ) {
d_printf ( SHARE_ENUM_DISPLAY ) ;
return cli_RNetShareEnum ( cli , long_share_fn , NULL ) ;
}
return cli_RNetShareEnum ( cli , share_fn , NULL ) ;
}
2001-11-24 17:16:41 +03:00
return net_run_function ( argc , argv , func , share_usage ) ;
2001-10-19 20:51:26 +04:00
}
2001-11-26 07:53:08 +03:00
static int session_usage ( int argc , const char * * argv )
2001-10-19 20:51:26 +04:00
{
2001-11-24 16:26:01 +03:00
d_printf ( NET_SESSION_USAGE ) ; /* command syntax */
2001-11-26 07:53:08 +03:00
general_usage ( argc , argv ) ;
2001-11-24 16:26:01 +03:00
return - 1 ;
2001-10-19 20:51:26 +04:00
}
2001-11-24 16:26:01 +03:00
static void list_sessions_func ( char * wsname , char * username , uint16 conns ,
2001-10-19 20:51:26 +04:00
uint16 opens , uint16 users , uint32 sess_time ,
uint32 idle_time , uint32 user_flags , char * clitype )
{
2001-11-24 16:26:01 +03:00
int hrs = idle_time / 3600 ;
int min = ( idle_time / 60 ) % 60 ;
int sec = idle_time % 60 ;
d_printf ( " \\ \\ %-18.18s %-20.20s %-18.18s %5d %2.2d:%2.2d:%2.2d \n " ,
wsname , username , clitype , opens , hrs , min , sec ) ;
2001-10-19 20:51:26 +04:00
}
2001-11-24 16:26:01 +03:00
static void display_session_func ( const char * wsname , const char * username , uint16 conns ,
uint16 opens , uint16 users , uint32 sess_time ,
uint32 idle_time , uint32 user_flags , const char * clitype )
2001-10-19 20:51:26 +04:00
{
2001-11-24 16:26:01 +03:00
int ihrs = idle_time / 3600 ;
int imin = ( idle_time / 60 ) % 60 ;
int isec = idle_time % 60 ;
int shrs = sess_time / 3600 ;
int smin = ( sess_time / 60 ) % 60 ;
int ssec = sess_time % 60 ;
d_printf ( SESSION_DISPLAY_ONE , username , wsname ,
( user_flags & 0x0 ) ? YES_STRING : NO_STRING , clitype ,
shrs , smin , ssec , ihrs , imin , isec ) ;
2001-10-19 20:51:26 +04:00
}
2001-11-24 16:26:01 +03:00
static void display_conns_func ( uint16 conn_id , uint16 conn_type , uint16 opens , uint16 users , uint32 conn_time , const char * username , const char * netname )
2001-10-19 20:51:26 +04:00
{
2001-11-24 16:26:01 +03:00
d_printf ( " %-14.14s %-8.8s %5d \n " , netname , share_type [ conn_type ] , opens ) ;
2001-10-19 20:51:26 +04:00
}
2001-11-24 16:26:01 +03:00
static int net_session_info ( int argc , const char * * argv )
2001-10-19 20:51:26 +04:00
{
2001-11-24 16:26:01 +03:00
int res ;
const char * sessname ;
2001-11-26 07:53:08 +03:00
if ( ! make_ipc_connection ( 0 ) )
return - 1 ;
2001-11-24 16:26:01 +03:00
2001-11-26 07:53:08 +03:00
if ( argc = = 0 )
return session_usage ( argc , argv ) ;
2001-11-24 16:26:01 +03:00
sessname = argv [ 0 ] ;
2001-10-19 20:51:26 +04:00
res = cli_NetSessionGetInfo ( cli , sessname , display_session_func ) ;
2001-11-26 07:53:08 +03:00
if ( res < 0 )
return res ;
2001-11-24 16:26:01 +03:00
d_printf ( SESSION_DISPLAY_CONNS ) ;
return cli_NetConnectionEnum ( cli , sessname , display_conns_func ) ;
}
static int net_session_delete ( int argc , const char * * argv )
{
if ( ! make_ipc_connection ( 0 ) ) return - 1 ;
2001-11-26 07:53:08 +03:00
if ( argc = = 0 )
return session_usage ( argc , argv ) ;
2001-11-24 16:26:01 +03:00
return cli_NetSessionDel ( cli , argv [ 0 ] ) ;
}
static int net_session ( int argc , const char * * argv )
{
struct functable func [ ] = {
{ " INFO " , net_session_info } ,
{ " DELETE " , net_session_delete } ,
{ " CLOSE " , net_session_delete } ,
{ NULL , NULL }
} ;
if ( argc = = 0 ) {
2001-11-26 07:53:08 +03:00
if ( ! make_ipc_connection ( 0 ) )
return - 1 ;
2001-11-24 16:26:01 +03:00
return cli_NetSessionEnum ( cli , list_sessions_func ) ;
}
2001-11-24 17:16:41 +03:00
return net_run_function ( argc , argv , func , session_usage ) ;
2001-10-19 20:51:26 +04:00
}
/****************************************************************************
list a server name
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static void display_server_func ( const char * name , uint32 m , const char * comment , void * reserved )
{
2001-11-24 16:26:01 +03:00
d_printf ( " \t %-16.16s %s \n " , name , comment ) ;
2001-10-19 20:51:26 +04:00
}
2001-11-26 07:53:08 +03:00
static int server_usage ( int argc , const char * * argv )
2001-10-19 20:51:26 +04:00
{
2001-11-24 16:26:01 +03:00
d_printf ( NET_SERVER_USAGE ) ; /* command syntax */
2001-11-26 07:53:08 +03:00
general_usage ( argc , argv ) ;
2001-11-24 16:26:01 +03:00
return - 1 ;
2001-10-19 20:51:26 +04:00
}
2001-11-24 16:26:01 +03:00
static int net_server ( int argc , const char * * argv )
2001-10-19 20:51:26 +04:00
{
2001-11-26 07:53:08 +03:00
if ( ! make_ipc_connection ( FLAGS_MASTER ) )
return - 1 ;
2001-11-24 16:26:01 +03:00
d_printf ( SERVER_ENUM_DISPLAY ) ; /* header for list of servers */
return cli_NetServerEnum ( cli , cli - > server_domain , SV_TYPE_ALL , display_server_func , NULL ) ;
}
2001-11-26 07:53:08 +03:00
static int domain_usage ( int argc , const char * * argv )
2001-11-24 16:26:01 +03:00
{
d_printf ( NET_DOMAIN_USAGE ) ; /* command syntax */
2001-10-19 20:51:26 +04:00
2001-11-26 07:53:08 +03:00
general_usage ( argc , argv ) ;
2001-11-24 16:26:01 +03:00
return - 1 ;
}
static int net_domain ( int argc , const char * * argv )
{
2001-11-26 07:53:08 +03:00
if ( ! make_ipc_connection ( FLAGS_DMB ) )
return - 1 ;
2001-11-24 16:26:01 +03:00
d_printf ( DOMAIN_ENUM_DISPLAY ) ; /* header for list of domains */
return cli_NetServerEnum ( cli , cli - > server_domain , SV_TYPE_DOMAIN_ENUM , display_server_func , NULL ) ;
2001-10-19 20:51:26 +04:00
}
2001-11-26 07:53:08 +03:00
static int printq_usage ( int argc , const char * * argv )
2001-10-19 20:51:26 +04:00
{
2001-11-24 16:26:01 +03:00
d_printf ( NET_PRINTQ_USAGE ) ;
2001-11-26 07:53:08 +03:00
general_usage ( argc , argv ) ;
2001-11-24 16:26:01 +03:00
return - 1 ;
}
2001-10-19 20:51:26 +04:00
2001-11-24 16:26:01 +03:00
static void enum_queue ( const char * queuename , uint16 pri , uint16 start , uint16 until ,
const char * sep , const char * pproc , const char * dest ,
const char * qparms , const char * qcomment , uint16 status ,
uint16 jobcount ) {
pstring queuecol ;
pstring statcol ;
pstrcpy ( queuecol , queuename ) ;
pstrcat ( queuecol , PRINTQ_QUEUE_WORD ) ;
switch ( status ) {
case 0 :
pstrcpy ( statcol , PRINTQ_PRINTER_ACTIVE ) ;
break ;
case 1 :
pstrcpy ( statcol , PRINTQ_PRINTER_PAUSED ) ;
break ;
case 2 :
pstrcpy ( statcol , PRINTQ_PRINTER_ERROR ) ;
break ;
case 3 :
pstrcpy ( statcol , PRINTQ_PRINTER_DELPEND ) ;
break ;
default :
pstrcpy ( statcol , PRINTQ_PRINTER_STATUNK ) ;
}
d_printf ( PRINTQ_DISPLAY_ONE , queuecol , jobcount , statcol ) ;
2001-10-19 20:51:26 +04:00
}
2001-11-24 16:26:01 +03:00
static void enum_jobs ( uint16 jobid , const char * ownername , const char * notifyname ,
const char * datatype , const char * jparms , uint16 pos ,
uint16 status , const char * jstatus , uint submitted , uint jobsize ,
const char * comment ) {
pstring statcol ;
switch ( status ) {
case 0 :
pstrcpy ( statcol , PRINTQ_JOB_QUEUED ) ;
break ;
case 1 :
pstrcpy ( statcol , PRINTQ_JOB_PAUSED ) ;
break ;
case 2 :
pstrcpy ( statcol , PRINTQ_JOB_SPOOLING ) ;
break ;
case 3 :
pstrcpy ( statcol , PRINTQ_JOB_PRINTING ) ;
break ;
default :
pstrcpy ( statcol , PRINTQ_PRINTER_STATUNK ) ;
}
d_printf ( PRINTQ_DISPLAY_JOB , ownername , jobid , jobsize , statcol ) ;
}
static int net_printq_info ( int argc , const char * * argv )
2001-10-19 20:51:26 +04:00
{
2001-11-26 07:53:08 +03:00
if ( argc = = 0 )
return printq_usage ( argc , argv ) ;
2001-11-24 16:26:01 +03:00
2001-11-26 07:53:08 +03:00
if ( ! make_ipc_connection ( 0 ) )
return - 1 ;
2001-10-19 20:51:26 +04:00
2001-11-24 16:26:01 +03:00
return cli_NetPrintQGetInfo ( cli , argv [ 0 ] , enum_queue , enum_jobs ) ;
2001-10-19 20:51:26 +04:00
}
2001-11-24 16:26:01 +03:00
static int net_printq_delete ( int argc , const char * * argv )
{
2001-11-26 07:53:08 +03:00
if ( argc = = 0 )
return printq_usage ( argc , argv ) ;
2001-11-24 16:26:01 +03:00
2001-11-26 07:53:08 +03:00
if ( ! make_ipc_connection ( 0 ) )
return - 1 ;
2001-11-24 16:26:01 +03:00
return cli_printjob_del ( cli , atoi ( argv [ 0 ] ) ) ;
2001-10-19 20:51:26 +04:00
}
2001-11-24 16:26:01 +03:00
static int net_printq ( int argc , const char * * argv )
{
struct functable func [ ] = {
{ " INFO " , net_printq_info } ,
{ " DELETE " , net_printq_delete } ,
{ NULL , NULL }
} ;
if ( argc = = 0 ) {
2001-11-26 07:53:08 +03:00
if ( ! make_ipc_connection ( 0 ) )
return - 1 ;
2001-11-24 16:26:01 +03:00
return cli_NetPrintQEnum ( cli , enum_queue , enum_jobs ) ;
}
2001-11-24 17:16:41 +03:00
return net_run_function ( argc , argv , func , printq_usage ) ;
2001-11-24 16:26:01 +03:00
}
2001-10-19 20:51:26 +04:00
2001-11-26 07:53:08 +03:00
static int user_usage ( int argc , const char * * argv )
2001-10-19 20:51:26 +04:00
{
2001-11-24 16:26:01 +03:00
d_printf ( NET_USER_USAGE ) ; /* command syntax */
2001-11-26 07:53:08 +03:00
general_usage ( argc , argv ) ;
2001-11-24 16:26:01 +03:00
return - 1 ;
2001-10-19 20:51:26 +04:00
}
2001-11-24 16:26:01 +03:00
static void user_fn ( const char * user_name , const char * comment , const char * home_dir ,
const char * logon_script , void * state )
2001-10-19 20:51:26 +04:00
{
2001-11-24 16:26:01 +03:00
d_printf ( " %-21.21s \n " , user_name ) ;
2001-10-19 20:51:26 +04:00
}
void long_user_fn ( const char * user_name , const char * comment , const char * home_dir , const char * logon_script , void * state )
{
2001-11-24 16:26:01 +03:00
d_printf ( " %-21.21s %-47.47s %-35.35s %35.35s \n " , user_name , comment , home_dir , logon_script ) ;
2001-10-19 20:51:26 +04:00
}
2001-11-04 00:11:28 +03:00
void group_member_fn ( const char * user_name , void * state )
{
2001-11-24 16:26:01 +03:00
d_printf ( " %-21.21s \n " , user_name ) ;
2001-11-04 00:11:28 +03:00
}
2001-11-24 16:26:01 +03:00
static int net_user_delete ( int argc , const char * * argv )
2001-10-19 20:51:26 +04:00
{
2001-11-26 07:53:08 +03:00
if ( argc = = 0 )
return user_usage ( argc , argv ) ;
2001-11-24 16:26:01 +03:00
2001-11-26 07:53:08 +03:00
if ( ! make_ipc_connection ( 0 ) )
return - 1 ;
2001-11-24 16:26:01 +03:00
return cli_NetUserDelete ( cli , argv [ 0 ] ) ;
}
static int net_user_add ( int argc , const char * * argv )
{
RAP_USER_INFO_1 userinfo ;
2001-11-26 07:53:08 +03:00
if ( argc = = 0 )
return user_usage ( argc , argv ) ;
2001-11-24 16:26:01 +03:00
2001-11-26 07:53:08 +03:00
if ( ! make_ipc_connection ( 0 ) )
return - 1 ;
2001-11-24 16:26:01 +03:00
safe_strcpy ( userinfo . user_name , argv [ 0 ] , sizeof ( userinfo . user_name ) ) ;
2001-11-26 07:53:08 +03:00
if ( opt_flags = = - 1 )
opt_flags = 0x21 ;
2001-11-24 16:26:01 +03:00
userinfo . userflags = opt_flags ;
userinfo . reserved1 = ' \0 ' ;
userinfo . comment = opt_comment ;
userinfo . priv = 1 ;
userinfo . home_dir = NULL ;
userinfo . logon_script = NULL ;
return cli_NetUserAdd ( cli , & userinfo ) ;
2001-10-19 20:51:26 +04:00
}
2001-11-24 16:26:01 +03:00
static int net_user_info ( int argc , const char * * argv )
2001-10-19 20:51:26 +04:00
{
2001-11-26 07:53:08 +03:00
if ( argc = = 0 )
return user_usage ( argc , argv ) ;
2001-11-24 16:26:01 +03:00
2001-11-26 07:53:08 +03:00
if ( ! make_ipc_connection ( 0 ) )
return - 1 ;
2001-11-24 16:26:01 +03:00
return cli_NetUserGetGroups ( cli , argv [ 0 ] , group_member_fn , NULL ) ;
2001-10-19 20:51:26 +04:00
}
2001-11-24 16:26:01 +03:00
int net_user ( int argc , const char * * argv )
2001-11-04 00:11:28 +03:00
{
2001-11-24 16:26:01 +03:00
struct functable func [ ] = {
{ " ADD " , net_user_add } ,
{ " INFO " , net_user_info } ,
{ " DELETE " , net_user_delete } ,
{ NULL , NULL }
} ;
if ( argc = = 0 ) {
2001-11-26 07:53:08 +03:00
if ( ! make_ipc_connection ( 0 ) )
return - 1 ;
2001-11-24 16:26:01 +03:00
if ( opt_long_list_entries ) {
d_printf ( USER_ENUM_DISPLAY ) ;
return cli_RNetUserEnum ( cli , long_user_fn , NULL ) ;
}
return cli_RNetUserEnum ( cli , user_fn , NULL ) ;
}
2001-11-24 17:16:41 +03:00
return net_run_function ( argc , argv , func , user_usage ) ;
2001-11-04 00:11:28 +03:00
}
2001-11-26 07:53:08 +03:00
static int group_usage ( int argc , const char * * argv )
2001-11-04 00:11:28 +03:00
{
2001-11-24 16:26:01 +03:00
d_printf ( NET_GROUP_USAGE ) ; /* command syntax */
2001-11-26 07:53:08 +03:00
general_usage ( argc , argv ) ;
2001-11-24 16:26:01 +03:00
return - 1 ;
}
static void long_group_fn ( const char * group_name , const char * comment , void * state )
{
d_printf ( " %-21.21s %-50.50s \n " , group_name , comment ) ;
}
static void group_fn ( const char * group_name , const char * comment , void * state )
{
d_printf ( " %-21.21s \n " , group_name ) ;
2001-11-04 00:11:28 +03:00
}
2001-11-24 16:26:01 +03:00
static int net_group_delete ( int argc , const char * * argv )
{
2001-11-26 07:53:08 +03:00
if ( argc = = 0 )
return group_usage ( argc , argv ) ;
if ( ! make_ipc_connection ( 0 ) )
return - 1 ;
2001-11-24 16:26:01 +03:00
return cli_NetGroupDelete ( cli , argv [ 0 ] ) ;
}
static int net_group_add ( int argc , const char * * argv )
{
RAP_GROUP_INFO_1 grinfo ;
2001-11-26 07:53:08 +03:00
if ( argc = = 0 )
return group_usage ( argc , argv ) ;
if ( ! make_ipc_connection ( 0 ) )
return - 1 ;
2001-11-24 16:26:01 +03:00
/* BB check for length 21 or smaller explicitly ? BB */
safe_strcpy ( grinfo . group_name , argv [ 0 ] , sizeof ( grinfo . group_name ) ) ;
grinfo . reserved1 = ' \0 ' ;
grinfo . comment = opt_comment ;
return cli_NetGroupAdd ( cli , & grinfo ) ;
}
static int net_group ( int argc , const char * * argv )
{
struct functable func [ ] = {
{ " ADD " , net_group_add } ,
{ " DELETE " , net_group_delete } ,
{ NULL , NULL }
} ;
if ( argc = = 0 ) {
2001-11-26 07:53:08 +03:00
if ( ! make_ipc_connection ( 0 ) )
return - 1 ;
2001-11-24 16:26:01 +03:00
if ( opt_long_list_entries ) {
d_printf ( " %-21.21s %-50.50s \n " , GROUP_STR , COMMENT_STR ) ;
d_printf ( " ----------------------------- \n " ) ;
return cli_RNetGroupEnum ( cli , long_group_fn , NULL ) ;
}
return cli_RNetGroupEnum ( cli , group_fn , NULL ) ;
}
2001-11-24 17:16:41 +03:00
return net_run_function ( argc , argv , func , group_usage ) ;
2001-11-24 16:26:01 +03:00
}
2001-11-26 07:53:08 +03:00
static int groupmember_usage ( int argc , const char * * argv )
2001-11-24 16:26:01 +03:00
{
d_printf ( NET_GROUPMEMBER_USAGE ) ; /* command syntax */
2001-11-26 07:53:08 +03:00
general_usage ( argc , argv ) ;
2001-11-24 16:26:01 +03:00
return - 1 ;
}
static int net_groupmember_add ( int argc , const char * * argv )
{
2001-11-26 07:53:08 +03:00
if ( argc ! = 2 )
return groupmember_usage ( argc , argv ) ;
2001-11-24 16:26:01 +03:00
2001-11-26 07:53:08 +03:00
if ( ! make_ipc_connection ( 0 ) )
return - 1 ;
2001-11-24 16:26:01 +03:00
return cli_NetGroupAddUser ( cli , argv [ 0 ] , argv [ 1 ] ) ;
}
static int net_groupmember_delete ( int argc , const char * * argv )
{
2001-11-26 07:53:08 +03:00
if ( argc ! = 2 )
return groupmember_usage ( argc , argv ) ;
2001-11-24 16:26:01 +03:00
2001-11-26 07:53:08 +03:00
if ( ! make_ipc_connection ( 0 ) )
return - 1 ;
2001-11-24 16:26:01 +03:00
return cli_NetGroupDelUser ( cli , argv [ 0 ] , argv [ 1 ] ) ;
}
2001-11-04 00:11:28 +03:00
2001-11-24 16:26:01 +03:00
static int net_groupmember_list ( int argc , const char * * argv )
2001-11-04 00:11:28 +03:00
{
2001-11-26 07:53:08 +03:00
if ( argc = = 0 )
return groupmember_usage ( argc , argv ) ;
2001-11-04 00:11:28 +03:00
2001-11-26 07:53:08 +03:00
if ( ! make_ipc_connection ( 0 ) )
return - 1 ;
2001-11-24 16:26:01 +03:00
return cli_NetGroupGetUsers ( cli , argv [ 0 ] , group_member_fn , NULL ) ;
}
static int net_groupmember ( int argc , const char * * argv )
{
struct functable func [ ] = {
{ " ADD " , net_groupmember_add } ,
{ " LIST " , net_groupmember_list } ,
{ " DELETE " , net_groupmember_delete } ,
{ NULL , NULL }
} ;
2001-11-24 17:16:41 +03:00
return net_run_function ( argc , argv , func , groupmember_usage ) ;
2001-11-04 00:11:28 +03:00
}
2001-11-26 07:53:08 +03:00
static int validate_usage ( int argc , const char * * argv )
2001-11-24 16:26:01 +03:00
{
d_printf ( NET_VALIDATE_USAGE ) ; /* command syntax */
2001-11-26 07:53:08 +03:00
general_usage ( argc , argv ) ;
2001-11-24 16:26:01 +03:00
return - 1 ;
}
static int net_validate ( int argc , const char * * argv )
{
d_printf ( ERRMSG_NOT_IMPLEMENTED ) ;
return 0 ;
}
2001-11-26 07:53:08 +03:00
static int service_usage ( int argc , const char * * argv )
2001-11-24 16:26:01 +03:00
{
d_printf ( NET_SERVICE_USAGE ) ; /* command syntax */
2001-11-26 07:53:08 +03:00
general_usage ( argc , argv ) ;
2001-11-24 16:26:01 +03:00
return - 1 ;
}
static int net_service_add ( int argc , const char * * argv )
{
d_printf ( ERRMSG_NOT_IMPLEMENTED ) ;
return 0 ;
}
static int net_service_delete ( int argc , const char * * argv )
2001-11-13 01:50:48 +03:00
{
d_printf ( ERRMSG_NOT_IMPLEMENTED ) ;
2001-11-24 16:26:01 +03:00
return 0 ;
}
static int net_service ( int argc , const char * * argv )
{
struct functable func [ ] = {
{ " ADD " , net_service_add } ,
{ " DELETE " , net_service_delete } ,
{ NULL , NULL }
} ;
if ( argc = = 0 ) {
2001-11-26 07:53:08 +03:00
if ( ! make_ipc_connection ( 0 ) )
return - 1 ;
2001-11-24 16:26:01 +03:00
if ( opt_long_list_entries ) {
d_printf ( " %-15.15s %-50.50s \n " , SERVICE_STR , COMMENT_STR ) ;
d_printf ( " ----------------------------- \n " ) ;
return cli_RNetServiceEnum ( cli , long_group_fn , NULL ) ;
}
return cli_RNetServiceEnum ( cli , group_fn , NULL ) ;
}
2001-11-24 17:16:41 +03:00
return net_run_function ( argc , argv , func , service_usage ) ;
2001-11-24 16:26:01 +03:00
}
2001-11-26 07:53:08 +03:00
static int password_usage ( int argc , const char * * argv )
2001-11-24 16:26:01 +03:00
{
d_printf ( NET_PASSWORD_USAGE ) ; /* command syntax */
2001-11-26 07:53:08 +03:00
general_usage ( argc , argv ) ;
2001-11-24 16:26:01 +03:00
return - 1 ;
}
static int net_password ( int argc , const char * * argv )
{
2001-11-26 07:53:08 +03:00
if ( argc < 3 )
return password_usage ( argc , argv ) ;
2001-11-24 16:26:01 +03:00
2001-11-26 07:53:08 +03:00
if ( ! make_ipc_connection ( 0 ) )
return - 1 ;
2001-11-24 16:26:01 +03:00
/* BB Add check for password lengths? */
return cli_oem_change_password ( cli , argv [ 0 ] , argv [ 2 ] , argv [ 1 ] ) ;
2001-11-13 01:50:48 +03:00
}
2001-11-26 07:53:08 +03:00
static int admin_usage ( int argc , const char * * argv )
2001-11-24 16:26:01 +03:00
{
d_printf ( NET_ADMIN_USAGE ) ; /* command syntax */
2001-11-26 07:53:08 +03:00
general_usage ( argc , argv ) ;
2001-11-24 16:26:01 +03:00
return - 1 ;
}
static int net_admin ( int argc , const char * * argv )
{
d_printf ( ERRMSG_NOT_IMPLEMENTED ) ;
return 0 ;
}
2001-11-26 07:53:08 +03:00
static int help_usage ( int argc , const char * * argv )
2001-11-24 16:26:01 +03:00
{
d_printf ( " \n " \
" Usage: net help <function> \n " \
" \n " \
" Valid functions are: \n " \
" FILE SHARE SESSION SERVER DOMAIN PRINTQ USER GROUP \n " \
2001-11-25 03:18:11 +03:00
" VALIDATE GROUPMEMBER ADMIN SERVICE PASSWORD ADS \n " ) ;
2001-11-24 16:26:01 +03:00
return - 1 ;
}
/*
handle " net help * " subcommands
*/
static int net_help ( int argc , const char * * argv )
{
struct functable func [ ] = {
{ " FILE " , file_usage } ,
{ " SHARE " , share_usage } ,
{ " SESSION " , session_usage } ,
{ " SERVER " , server_usage } ,
{ " DOMAIN " , domain_usage } ,
{ " PRINTQ " , printq_usage } ,
{ " USER " , user_usage } ,
{ " GROUP " , group_usage } ,
{ " VALIDATE " , validate_usage } ,
{ " GROUPMEMBER " , groupmember_usage } ,
{ " ADMIN " , admin_usage } ,
{ " SERVICE " , service_usage } ,
{ " PASSWORD " , password_usage } ,
2001-11-25 03:18:11 +03:00
{ " ADS " , net_ads_usage } ,
2001-11-24 16:26:01 +03:00
{ NULL , NULL } } ;
2001-11-24 17:16:41 +03:00
return net_run_function ( argc , argv , func , help_usage ) ;
2001-11-25 16:32:28 +03:00
}
2001-11-24 16:26:01 +03:00
/* main function table */
static struct functable net_func [ ] = {
{ " FILE " , net_file } ,
{ " SHARE " , net_share } ,
{ " SESSION " , net_session } ,
{ " SERVER " , net_server } ,
{ " DOMAIN " , net_domain } ,
{ " PRINTQ " , net_printq } ,
{ " USER " , net_user } ,
{ " GROUP " , net_group } ,
{ " VALIDATE " , net_validate } ,
{ " GROUPMEMBER " , net_groupmember } ,
{ " ADMIN " , net_admin } ,
{ " SERVICE " , net_service } ,
{ " PASSWORD " , net_password } ,
2001-11-25 03:18:11 +03:00
{ " ADS " , net_ads } ,
2001-11-24 16:26:01 +03:00
{ " HELP " , net_help } ,
{ NULL , NULL }
} ;
2001-11-13 01:50:48 +03:00
2001-10-19 20:51:26 +04:00
/****************************************************************************
main program
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-11-26 08:59:43 +03:00
int main ( int argc , const char * * argv )
2001-10-19 20:51:26 +04:00
{
2001-11-24 16:26:01 +03:00
int opt , i ;
char * p ;
int rc = 0 ;
int argc_new = 0 ;
const char * * argv_new ;
poptContext pc ;
2001-11-25 16:36:02 +03:00
static char * servicesf = dyn_CONFIGFILE ;
2001-11-24 17:16:41 +03:00
extern pstring global_myname ;
2001-11-25 16:36:02 +03:00
static int debuglevel ;
2001-11-24 16:26:01 +03:00
struct poptOption long_options [ ] = {
{ " help " , ' h ' , POPT_ARG_NONE , 0 , ' h ' } ,
{ " workgroup " , ' w ' , POPT_ARG_STRING , & opt_target_workgroup } ,
{ " myworkgroup " , ' W ' , POPT_ARG_STRING , & opt_workgroup } ,
{ " user " , ' U ' , POPT_ARG_STRING , & opt_user_name , ' U ' } ,
{ " ipaddress " , ' I ' , POPT_ARG_STRING , 0 , ' I ' } ,
{ " port " , ' p ' , POPT_ARG_INT , & opt_port } ,
{ " myname " , ' n ' , POPT_ARG_STRING , & opt_requester_name } ,
{ " conf " , ' s ' , POPT_ARG_STRING , & servicesf } ,
2001-11-25 16:36:02 +03:00
{ " debug " , ' d ' , POPT_ARG_INT , & debuglevel , ' d ' } ,
{ " debuglevel " , ' d ' , POPT_ARG_INT , & debuglevel , ' d ' } ,
2001-11-24 16:26:01 +03:00
{ " server " , ' S ' , POPT_ARG_STRING , & opt_host } ,
{ " comment " , ' C ' , POPT_ARG_STRING , & opt_comment } ,
{ " maxusers " , ' M ' , POPT_ARG_INT , & opt_maxusers } ,
{ " flags " , ' F ' , POPT_ARG_INT , & opt_flags } ,
{ " jobid " , ' j ' , POPT_ARG_INT , & opt_jobid } ,
{ " long " , ' l ' , POPT_ARG_NONE , & opt_long_list_entries } ,
{ 0 , 0 , 0 , 0 }
} ;
got_pass = 0 ;
2001-11-26 06:11:44 +03:00
zero_ip ( & dest_ip ) ;
2001-11-24 16:26:01 +03:00
dbf = x_stdout ;
pc = poptGetContext ( NULL , argc , ( const char * * ) argv , long_options ,
POPT_CONTEXT_KEEP_FIRST ) ;
while ( ( opt = poptGetNextOpt ( pc ) ) ! = - 1 ) {
switch ( opt ) {
case ' h ' :
2001-11-26 07:53:08 +03:00
net_usage ( argc , argv ) ;
2001-11-24 16:26:01 +03:00
exit ( 0 ) ;
break ;
case ' I ' :
dest_ip = * interpret_addr2 ( poptGetOptArg ( pc ) ) ;
2001-11-26 06:11:44 +03:00
if ( is_zero_ip ( dest_ip ) )
2001-11-24 16:26:01 +03:00
d_printf ( ERRMSG_INVALID_IPADDRESS ) ;
else
have_ip = True ;
break ;
case ' U ' :
opt_user_name = strdup ( opt_user_name ) ;
p = strchr ( opt_user_name , ' % ' ) ;
if ( p ) {
* p = 0 ;
opt_password = p + 1 ;
got_pass = 1 ;
}
break ;
default :
d_printf ( ERRMSG_INVALID_OPTION , ( char ) opt , opt ) ;
2001-11-26 07:53:08 +03:00
net_usage ( argc , argv ) ;
2001-11-24 16:26:01 +03:00
}
2001-10-23 18:16:59 +04:00
}
2001-10-19 20:51:26 +04:00
2001-11-25 16:36:02 +03:00
DEBUGLEVEL = debuglevel ;
2001-11-24 16:26:01 +03:00
lp_load ( servicesf , True , False , False ) ;
2001-10-19 20:51:26 +04:00
2001-11-24 16:26:01 +03:00
argv_new = ( const char * * ) poptGetArgs ( pc ) ;
2001-10-19 20:51:26 +04:00
2001-11-24 16:26:01 +03:00
argc_new = argc ;
for ( i = 0 ; i < argc ; i + + ) {
if ( argv_new [ i ] = = NULL ) {
argc_new = i ;
break ;
}
}
if ( ! opt_requester_name ) {
static fstring myname ;
get_myname ( myname ) ;
opt_requester_name = myname ;
}
if ( ! opt_user_name & & getenv ( " LOGNAME " ) ) {
opt_user_name = getenv ( " LOGNAME " ) ;
}
if ( ! opt_workgroup ) {
opt_workgroup = lp_workgroup ( ) ;
}
2001-11-24 17:16:41 +03:00
if ( ! * global_myname ) {
2001-11-26 07:53:08 +03:00
char * p2 ;
2001-11-24 17:16:41 +03:00
fstrcpy ( global_myname , myhostname ( ) ) ;
2001-11-26 07:53:08 +03:00
p2 = strchr_m ( global_myname , ' . ' ) ;
if ( p2 )
* p2 = 0 ;
2001-11-24 17:16:41 +03:00
}
2001-11-24 16:26:01 +03:00
load_interfaces ( ) ;
2001-10-19 20:51:26 +04:00
2001-11-24 17:16:41 +03:00
rc = net_run_function ( argc_new - 1 , argv_new + 1 , net_func , net_usage ) ;
2001-11-24 16:26:01 +03:00
DEBUG ( 2 , ( " return code = %d \n " , rc ) ) ;
return rc ;
}