diff options
author | Günther Deschner <gd@samba.org> | 2010-05-07 22:10:51 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-05-10 21:30:27 +0200 |
commit | 7cf1a2986fcc1654f254f22edf29bcde1e393c1d (patch) | |
tree | 84197c53257f1cd93ccf70119ec282ce089b1b56 /source4/torture/rap/rap.c | |
parent | 732a132c4f9699de629d3d12a14b4345ac51fb9a (diff) | |
download | samba-7cf1a2986fcc1654f254f22edf29bcde1e393c1d.tar.gz samba-7cf1a2986fcc1654f254f22edf29bcde1e393c1d.tar.xz samba-7cf1a2986fcc1654f254f22edf29bcde1e393c1d.zip |
s4-smbtorture: add smbcli_rap_netoemchangepassword().
Guenther
Diffstat (limited to 'source4/torture/rap/rap.c')
-rw-r--r-- | source4/torture/rap/rap.c | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/source4/torture/rap/rap.c b/source4/torture/rap/rap.c index 0e9900a11a..c116dde493 100644 --- a/source4/torture/rap/rap.c +++ b/source4/torture/rap/rap.c @@ -1648,6 +1648,55 @@ NTSTATUS smbcli_rap_netuserpasswordset2(struct smbcli_tree *tree, return result; } +NTSTATUS smbcli_rap_netoemchangepassword(struct smbcli_tree *tree, + struct smb_iconv_convenience *iconv_convenience, + TALLOC_CTX *mem_ctx, + struct rap_NetOEMChangePassword *r) +{ + struct rap_call *call; + NTSTATUS result = NT_STATUS_UNSUCCESSFUL; + + if (!(call = new_rap_cli_call(mem_ctx, iconv_convenience, RAP_SamOEMChgPasswordUser2_P))) { + return NT_STATUS_NO_MEMORY; + } + + rap_cli_push_string(call, r->in.UserName); + rap_cli_push_sendbuf(call, 532); + ndr_push_bytes(call->ndr_push_param, r->in.crypt_password, 516); + ndr_push_bytes(call->ndr_push_param, r->in.password_hash, 16); + + rap_cli_expect_format(call, ""); + rap_cli_expect_extra_format(call, "B516B16"); + + if (DEBUGLEVEL >= 10) { + NDR_PRINT_IN_DEBUG(rap_NetOEMChangePassword, r); + } + + result = rap_cli_do_call(tree, iconv_convenience, call); + + if (!NT_STATUS_IS_OK(result)) + goto done; + + result = NT_STATUS_INVALID_PARAMETER; + + NDR_GOTO(ndr_pull_rap_status(call->ndr_pull_param, NDR_SCALARS, &r->out.status)); + NDR_GOTO(ndr_pull_uint16(call->ndr_pull_param, NDR_SCALARS, &r->out.convert)); + + result = NT_STATUS_OK; + + if (!NT_STATUS_IS_OK(result)) { + goto done; + } + + if (DEBUGLEVEL >= 10) { + NDR_PRINT_OUT_DEBUG(rap_NetOEMChangePassword, r); + } + + done: + talloc_free(call); + return result; +} + static bool test_netservergetinfo(struct torture_context *tctx, struct smbcli_state *cli) { |