diff options
author | Luke Leighton <lkcl@samba.org> | 1999-11-23 20:32:52 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1999-11-23 20:32:52 +0000 |
commit | 14713d00b515af95288e9b92d9dfbf8a82eed1f2 (patch) | |
tree | b3993bed81eaef6baf92347634298d2976d013c3 /source3/rpcclient | |
parent | 7bd8fd1a102045de38e0e0471e2cf7e2aee47eda (diff) | |
download | samba-14713d00b515af95288e9b92d9dfbf8a82eed1f2.tar.gz samba-14713d00b515af95288e9b92d9dfbf8a82eed1f2.tar.bz2 samba-14713d00b515af95288e9b92d9dfbf8a82eed1f2.zip |
oops!!!! wrong command!!!
(This used to be commit cbbfef6d2a5335a6daa4fe09ea2d73197417894f)
Diffstat (limited to 'source3/rpcclient')
-rw-r--r-- | source3/rpcclient/cmd_svcctl.c | 85 | ||||
-rw-r--r-- | source3/rpcclient/rpcclient.c | 7 |
2 files changed, 90 insertions, 2 deletions
diff --git a/source3/rpcclient/cmd_svcctl.c b/source3/rpcclient/cmd_svcctl.c index 9e9e3c82bb..6d2311b962 100644 --- a/source3/rpcclient/cmd_svcctl.c +++ b/source3/rpcclient/cmd_svcctl.c @@ -341,12 +341,12 @@ void cmd_svc_start(struct client_info *info, int argc, char *argv[]) return; } - argc++; + argv++; argc--; svc_name = argv[0]; - argc++; + argv++; argc--; /* open SVCCTL session. */ @@ -382,3 +382,84 @@ void cmd_svc_start(struct client_info *info, int argc, char *argv[]) } } +/**************************************************************************** +nt test service +****************************************************************************/ +void cmd_svc_test(struct client_info *info, int argc, char *argv[]) +{ + uint16 fnum; + BOOL res = True; + BOOL res1 = True; + char *svc_name; + BOOL res2 = True; + POLICY_HND pol_svc; + POLICY_HND pol_scm; + uint32 num_items = 0; + uint32 **items = NULL; + + fstring srv_name; + + fstrcpy(srv_name, "\\\\"); + fstrcat(srv_name, info->myhostname); + strupper(srv_name); + + DEBUG(4,("cmd_svc_test: server:%s\n", srv_name)); + + if (argc < 2) + { + report(out_hnd,"svctest <service name>]\n"); + return; + } + + argv++; + argc--; + + svc_name = argv[0]; + + argv++; + argc--; + + /* open SVCCTL session. */ + res = res ? cli_nt_session_open(smb_cli, PIPE_SVCCTL, &fnum) : False; + + /* open service control manager receive a policy handle */ + res = res ? svc_open_sc_man(smb_cli, fnum, + srv_name, NULL, 0x80000000, + &pol_scm) : False; + + res1 = res ? svc_open_service(smb_cli, fnum, + &pol_scm, + svc_name, 0x80000010, + &pol_svc) : False; + res2 = res1 ? svc_query_unknown_1b(smb_cli, fnum, + &pol_svc, 1, 0x227, + &num_items, &items) : False; + + res1 = res1 ? svc_close(smb_cli, fnum, &pol_svc) : False; + res = res ? svc_close(smb_cli, fnum, &pol_scm) : False; + + /* close the session */ + cli_nt_session_close(smb_cli, fnum); + + if (res2) + { + uint32 i; + report(out_hnd,"Test 0x1b Service %s\n", svc_name); + for (i = 0; i < num_items; i++) + { + if (items[i] != NULL) + { + report(out_hnd, "%x\n", *items[i]); + } + } + DEBUG(5,("cmd_svc_test: succeeded\n")); + } + else + report(out_hnd,"Failed Test 0x1b (%s)\n", svc_name); + { + DEBUG(5,("cmd_svc_test: failed\n")); + } + + free_uint32_array(num_items, items); +} + diff --git a/source3/rpcclient/rpcclient.c b/source3/rpcclient/rpcclient.c index 33890749ea..de0f72c65d 100644 --- a/source3/rpcclient/rpcclient.c +++ b/source3/rpcclient/rpcclient.c @@ -158,6 +158,13 @@ commands[] = }, { + "svctest", + cmd_svc_test, + "<service> Test Service", + {COMPL_SVCLST, COMPL_NONE} + }, + + { "svcstop", cmd_svc_stop, "<service> Stop Service", |