From 7cf1a2986fcc1654f254f22edf29bcde1e393c1d Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Fri, 7 May 2010 22:10:51 +0200 Subject: s4-smbtorture: add smbcli_rap_netoemchangepassword(). Guenther --- source4/torture/rap/rap.c | 49 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) (limited to 'source4/torture/rap/rap.c') 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) { -- cgit