summaryrefslogtreecommitdiff
path: root/source3/rpcclient/cmd_srvsvc.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2001-05-24 00:20:32 +0000
committerTim Potter <tpot@samba.org>2001-05-24 00:20:32 +0000
commit40ff4007c7ea1c1512592c8a0cb3833be2fe97d1 (patch)
treeaa5fbaec09687ce62c380f15822659753fc89483 /source3/rpcclient/cmd_srvsvc.c
parentb065de612caef016876328a3ab8cf842f700921b (diff)
downloadsamba-40ff4007c7ea1c1512592c8a0cb3833be2fe97d1.tar.gz
samba-40ff4007c7ea1c1512592c8a0cb3833be2fe97d1.tar.bz2
samba-40ff4007c7ea1c1512592c8a0cb3833be2fe97d1.zip
Added stubs for SRVSVC and NETLOGON rpcclient commands.
(This used to be commit 3343c9f0d67d98687e5933e1a73c0ff487279160)
Diffstat (limited to 'source3/rpcclient/cmd_srvsvc.c')
-rw-r--r--source3/rpcclient/cmd_srvsvc.c317
1 files changed, 21 insertions, 296 deletions
diff --git a/source3/rpcclient/cmd_srvsvc.c b/source3/rpcclient/cmd_srvsvc.c
index e1d95af381..636e708a09 100644
--- a/source3/rpcclient/cmd_srvsvc.c
+++ b/source3/rpcclient/cmd_srvsvc.c
@@ -1,10 +1,10 @@
/*
Unix SMB/Netbios implementation.
- Version 1.9.
- NT Domain Authentication SMB / MSRPC client
- Copyright (C) Andrew Tridgell 1994-1997
- Copyright (C) Luke Kenneth Casson Leighton 1996-1997
-
+ Version 2.2
+ RPC pipe client
+
+ Copyright (C) Tim Potter 2000
+
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
@@ -20,308 +20,33 @@
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-
-
-#ifdef SYSLOG
-#undef SYSLOG
-#endif
-
#include "includes.h"
extern int DEBUGLEVEL;
-#define DEBUG_TESTING
+/* Server query info */
-extern struct cli_state *smb_cli;
-
-extern FILE* out_hnd;
-
-
-/****************************************************************************
-server get info query
-****************************************************************************/
-void cmd_srv_query_info(struct client_info *info)
+static uint32 cmd_srvsvc_srv_query_info(struct cli_state *cli, int argc,
+ char **argv)
{
- fstring dest_srv;
- fstring tmp;
- SRV_INFO_CTR ctr;
uint32 info_level = 101;
+ SRV_INFO_CTR ctr;
+ TALLOC_CTX *mem_ctx;
- BOOL res = True;
-
- memset((char *)&ctr, '\0', sizeof(ctr));
-
- fstrcpy(dest_srv, "\\\\");
- fstrcat(dest_srv, info->dest_host);
- strupper(dest_srv);
-
- if (next_token(NULL, tmp, NULL, sizeof(tmp)-1))
- {
- info_level = (uint32)strtol(tmp, (char**)NULL, 10);
- }
-
- DEBUG(4,("cmd_srv_query_info: server:%s info level: %d\n",
- dest_srv, (int)info_level));
-
- DEBUG(5, ("cmd_srv_query_info: smb_cli->fd:%d\n", smb_cli->fd));
-
- /* open LSARPC session. */
- res = res ? cli_nt_session_open(smb_cli, PIPE_SRVSVC) : False;
-
- /* send info level: receive requested info. hopefully. */
- res = res ? do_srv_net_srv_get_info(smb_cli,
- dest_srv, info_level, &ctr) : False;
-
- /* close the session */
- cli_nt_session_close(smb_cli);
-
- if (res)
- {
- DEBUG(5,("cmd_srv_query_info: query succeeded\n"));
-
- display_srv_info_ctr(out_hnd, ACTION_HEADER , &ctr);
- display_srv_info_ctr(out_hnd, ACTION_ENUMERATE, &ctr);
- display_srv_info_ctr(out_hnd, ACTION_FOOTER , &ctr);
- }
- else
- {
- DEBUG(5,("cmd_srv_query_info: query failed\n"));
- }
-}
-
-/****************************************************************************
-server enum connections
-****************************************************************************/
-void cmd_srv_enum_conn(struct client_info *info)
-{
- fstring dest_srv;
- fstring qual_srv;
- fstring tmp;
- SRV_CONN_INFO_CTR ctr;
- ENUM_HND hnd;
- uint32 info_level = 0;
-
- BOOL res = True;
-
- memset((char *)&ctr, '\0', sizeof(ctr));
-
- fstrcpy(qual_srv, "\\\\");
- fstrcat(qual_srv, info->myhostname);
- strupper(qual_srv);
-
- fstrcpy(dest_srv, "\\\\");
- fstrcat(dest_srv, info->dest_host);
- strupper(dest_srv);
-
- if (next_token(NULL, tmp, NULL, sizeof(tmp)-1))
- {
- info_level = (uint32)strtol(tmp, (char**)NULL, 10);
- }
-
- DEBUG(4,("cmd_srv_enum_conn: server:%s info level: %d\n",
- dest_srv, (int)info_level));
-
- DEBUG(5, ("cmd_srv_enum_conn: smb_cli->fd:%d\n", smb_cli->fd));
-
- /* open srvsvc session. */
- res = res ? cli_nt_session_open(smb_cli, PIPE_SRVSVC) : False;
-
- hnd.ptr_hnd = 1;
- hnd.handle = 0;
-
- /* enumerate connections on server */
- res = res ? do_srv_net_srv_conn_enum(smb_cli,
- dest_srv, qual_srv,
- info_level, &ctr, 0xffffffff, &hnd) : False;
-
- if (res)
- {
- display_srv_conn_info_ctr(out_hnd, ACTION_HEADER , &ctr);
- display_srv_conn_info_ctr(out_hnd, ACTION_ENUMERATE, &ctr);
- display_srv_conn_info_ctr(out_hnd, ACTION_FOOTER , &ctr);
- }
-
- /* close the session */
- cli_nt_session_close(smb_cli);
-
- if (res)
- {
- DEBUG(5,("cmd_srv_enum_conn: query succeeded\n"));
- }
- else
- {
- DEBUG(5,("cmd_srv_enum_conn: query failed\n"));
- }
-}
-
-/****************************************************************************
-server enum shares
-****************************************************************************/
-void cmd_srv_enum_shares(struct client_info *info)
-{
- fstring dest_srv;
- fstring tmp;
- SRV_R_NET_SHARE_ENUM r_o;
- ENUM_HND hnd;
- uint32 info_level = 1;
-
- BOOL res = True;
-
- fstrcpy(dest_srv, "\\\\");
- fstrcat(dest_srv, info->dest_host);
- strupper(dest_srv);
-
- if (next_token(NULL, tmp, NULL, sizeof(tmp)-1))
- {
- info_level = (uint32)strtol(tmp, (char**)NULL, 10);
- }
-
- DEBUG(4,("cmd_srv_enum_shares: server:%s info level: %d\n",
- dest_srv, (int)info_level));
-
- DEBUG(5, ("cmd_srv_enum_shares: smb_cli->fd:%d\n", smb_cli->fd));
-
- /* open srvsvc session. */
- res = res ? cli_nt_session_open(smb_cli, PIPE_SRVSVC) : False;
-
- hnd.ptr_hnd = 0;
- hnd.handle = 0;
-
- /* enumerate shares_files on server */
- res = res ? do_srv_net_srv_share_enum(smb_cli,
- dest_srv,
- info_level, &r_o, 0xffffffff, &hnd) : False;
-
- if (res)
- {
- display_srv_share_info_ctr(out_hnd, ACTION_HEADER , &r_o.ctr);
- display_srv_share_info_ctr(out_hnd, ACTION_ENUMERATE, &r_o.ctr);
- display_srv_share_info_ctr(out_hnd, ACTION_FOOTER , &r_o.ctr);
- free_srv_r_net_share_enum(&r_o);
+ if (argc > 2) {
+ printf("Usage: %s [infolevel]\n", argv[0]);
+ return 0;
}
- /* close the session */
- cli_nt_session_close(smb_cli);
+ if (argc == 2)
+ info_level = atoi(argv[1]);
- if (res)
- {
- DEBUG(5,("cmd_srv_enum_shares: query succeeded\n"));
- }
- else
- {
- DEBUG(5,("cmd_srv_enum_shares: query failed\n"));
- }
+ return 0;
}
-/****************************************************************************
-server enum sessions
-****************************************************************************/
-void cmd_srv_enum_sess(struct client_info *info)
-{
- fstring dest_srv;
- fstring tmp;
- SRV_SESS_INFO_CTR ctr;
- ENUM_HND hnd;
- uint32 info_level = 0;
-
- BOOL res = True;
-
- memset((char *)&ctr, '\0', sizeof(ctr));
-
- fstrcpy(dest_srv, "\\\\");
- fstrcat(dest_srv, info->dest_host);
- strupper(dest_srv);
-
- if (next_token(NULL, tmp, NULL, sizeof(tmp)-1))
- {
- info_level = (uint32)strtol(tmp, (char**)NULL, 10);
- }
-
- DEBUG(4,("cmd_srv_enum_sess: server:%s info level: %d\n",
- dest_srv, (int)info_level));
-
- DEBUG(5, ("cmd_srv_enum_sess: smb_cli->fd:%d\n", smb_cli->fd));
-
- /* open srvsvc session. */
- res = res ? cli_nt_session_open(smb_cli, PIPE_SRVSVC) : False;
-
- hnd.ptr_hnd = 1;
- hnd.handle = 0;
-
- /* enumerate sessions on server */
- res = res ? do_srv_net_srv_sess_enum(smb_cli,
- dest_srv, NULL, info_level, &ctr, 0x1000, &hnd) : False;
-
- /* close the session */
- cli_nt_session_close(smb_cli);
-
- if (res)
- {
- DEBUG(5,("cmd_srv_enum_sess: query succeeded\n"));
- }
- else
- {
- DEBUG(5,("cmd_srv_enum_sess: query failed\n"));
- }
-}
-
-/****************************************************************************
-server enum files
-****************************************************************************/
-void cmd_srv_enum_files(struct client_info *info)
-{
- fstring dest_srv;
- fstring tmp;
- SRV_FILE_INFO_CTR ctr;
- ENUM_HND hnd;
- uint32 info_level = 3;
-
- BOOL res = True;
-
- memset((char *)&ctr, '\0', sizeof(ctr));
-
- fstrcpy(dest_srv, "\\\\");
- fstrcat(dest_srv, info->dest_host);
- strupper(dest_srv);
-
- if (next_token(NULL, tmp, NULL, sizeof(tmp)-1))
- {
- info_level = (uint32)strtol(tmp, (char**)NULL, 10);
- }
-
- DEBUG(4,("cmd_srv_enum_files: server:%s info level: %d\n",
- dest_srv, (int)info_level));
-
- DEBUG(5, ("cmd_srv_enum_files: smb_cli->fd:%d\n", smb_cli->fd));
-
- /* open srvsvc session. */
- res = res ? cli_nt_session_open(smb_cli, PIPE_SRVSVC) : False;
-
- hnd.ptr_hnd = 1;
- hnd.handle = 0;
-
- /* enumerate files on server */
- res = res ? do_srv_net_srv_file_enum(smb_cli,
- dest_srv, NULL, info_level, &ctr, 0x1000, &hnd) : False;
-
-
- if (res)
- {
- display_srv_file_info_ctr(out_hnd, ACTION_HEADER , &ctr);
- display_srv_file_info_ctr(out_hnd, ACTION_ENUMERATE, &ctr);
- display_srv_file_info_ctr(out_hnd, ACTION_FOOTER , &ctr);
- }
-
- /* close the session */
- cli_nt_session_close(smb_cli);
-
- if (res)
- {
- DEBUG(5,("cmd_srv_enum_files: query succeeded\n"));
- }
- else
- {
- DEBUG(5,("cmd_srv_enum_files: query failed\n"));
- }
-}
+/* List of commands exported by this module */
+struct cmd_set srvsvc_commands[] = {
+ { "SRVSVC", NULL, "" },
+ { NULL, NULL, NULL }
+};