mirror of
https://github.com/samba-team/samba.git
synced 2025-01-12 09:18:10 +03:00
s4:torture:smb2: add a session.reauth2 test.
* open a file, * reauth anonymously * try to access file via handle * reauth as user * try to access file again Autobuild-User: Michael Adam <obnox@samba.org> Autobuild-Date: Wed Apr 18 16:53:35 CEST 2012 on sn-devel-104
This commit is contained in:
parent
f3ac212d8b
commit
2085c20bb1
@ -26,6 +26,8 @@
|
|||||||
#include "torture/smb2/proto.h"
|
#include "torture/smb2/proto.h"
|
||||||
#include "../libcli/smb/smbXcli_base.h"
|
#include "../libcli/smb/smbXcli_base.h"
|
||||||
#include "lib/cmdline/popt_common.h"
|
#include "lib/cmdline/popt_common.h"
|
||||||
|
#include "auth/credentials/credentials.h"
|
||||||
|
|
||||||
|
|
||||||
#define CHECK_VAL(v, correct) do { \
|
#define CHECK_VAL(v, correct) do { \
|
||||||
if ((v) != (correct)) { \
|
if ((v) != (correct)) { \
|
||||||
@ -175,6 +177,19 @@ bool test_session_reauth1(struct torture_context *tctx, struct smb2_tree *tree)
|
|||||||
status = smb2_getinfo_file(tree, mem_ctx, &qfinfo);
|
status = smb2_getinfo_file(tree, mem_ctx, &qfinfo);
|
||||||
CHECK_STATUS(status, NT_STATUS_OK);
|
CHECK_STATUS(status, NT_STATUS_OK);
|
||||||
|
|
||||||
|
status = smb2_session_setup_spnego(tree->session,
|
||||||
|
cmdline_credentials,
|
||||||
|
0 /* previous_session_id */);
|
||||||
|
CHECK_STATUS(status, NT_STATUS_OK);
|
||||||
|
|
||||||
|
/* try to access the file via the old handle */
|
||||||
|
|
||||||
|
ZERO_STRUCT(qfinfo);
|
||||||
|
qfinfo.generic.level = RAW_FILEINFO_POSITION_INFORMATION;
|
||||||
|
qfinfo.generic.in.file.handle = _h1;
|
||||||
|
status = smb2_getinfo_file(tree, mem_ctx, &qfinfo);
|
||||||
|
CHECK_STATUS(status, NT_STATUS_OK);
|
||||||
|
|
||||||
done:
|
done:
|
||||||
if (h1 != NULL) {
|
if (h1 != NULL) {
|
||||||
smb2_util_close(tree, *h1);
|
smb2_util_close(tree, *h1);
|
||||||
@ -189,6 +204,83 @@ done:
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool test_session_reauth2(struct torture_context *tctx, struct smb2_tree *tree)
|
||||||
|
{
|
||||||
|
NTSTATUS status;
|
||||||
|
TALLOC_CTX *mem_ctx = talloc_new(tctx);
|
||||||
|
char fname[256];
|
||||||
|
struct smb2_handle _h1;
|
||||||
|
struct smb2_handle *h1 = NULL;
|
||||||
|
struct smb2_create io1;
|
||||||
|
bool ret = true;
|
||||||
|
union smb_fileinfo qfinfo;
|
||||||
|
struct cli_credentials *anon_creds = NULL;
|
||||||
|
|
||||||
|
/* Add some random component to the file name. */
|
||||||
|
snprintf(fname, 256, "session_reauth2_%s.dat",
|
||||||
|
generate_random_str(tctx, 8));
|
||||||
|
|
||||||
|
smb2_util_unlink(tree, fname);
|
||||||
|
|
||||||
|
smb2_oplock_create_share(&io1, fname,
|
||||||
|
smb2_util_share_access(""),
|
||||||
|
smb2_util_oplock_level("b"));
|
||||||
|
|
||||||
|
status = smb2_create(tree, mem_ctx, &io1);
|
||||||
|
CHECK_STATUS(status, NT_STATUS_OK);
|
||||||
|
_h1 = io1.out.file.handle;
|
||||||
|
h1 = &_h1;
|
||||||
|
CHECK_CREATED(&io1, CREATED, FILE_ATTRIBUTE_ARCHIVE);
|
||||||
|
CHECK_VAL(io1.out.oplock_level, smb2_util_oplock_level("b"));
|
||||||
|
|
||||||
|
/* re-authenticate as anonymous */
|
||||||
|
|
||||||
|
anon_creds = cli_credentials_init_anon(mem_ctx);
|
||||||
|
torture_assert(tctx, (anon_creds != NULL), "talloc error");
|
||||||
|
|
||||||
|
status = smb2_session_setup_spnego(tree->session,
|
||||||
|
anon_creds,
|
||||||
|
0 /* previous_session_id */);
|
||||||
|
CHECK_STATUS(status, NT_STATUS_OK);
|
||||||
|
|
||||||
|
/* try to access the file via the old handle */
|
||||||
|
|
||||||
|
ZERO_STRUCT(qfinfo);
|
||||||
|
qfinfo.generic.level = RAW_FILEINFO_POSITION_INFORMATION;
|
||||||
|
qfinfo.generic.in.file.handle = _h1;
|
||||||
|
status = smb2_getinfo_file(tree, mem_ctx, &qfinfo);
|
||||||
|
CHECK_STATUS(status, NT_STATUS_OK);
|
||||||
|
|
||||||
|
/* re-authenticate as original user again */
|
||||||
|
|
||||||
|
status = smb2_session_setup_spnego(tree->session,
|
||||||
|
cmdline_credentials,
|
||||||
|
0 /* previous_session_id */);
|
||||||
|
CHECK_STATUS(status, NT_STATUS_OK);
|
||||||
|
|
||||||
|
/* try to access the file via the old handle */
|
||||||
|
|
||||||
|
ZERO_STRUCT(qfinfo);
|
||||||
|
qfinfo.generic.level = RAW_FILEINFO_POSITION_INFORMATION;
|
||||||
|
qfinfo.generic.in.file.handle = _h1;
|
||||||
|
status = smb2_getinfo_file(tree, mem_ctx, &qfinfo);
|
||||||
|
CHECK_STATUS(status, NT_STATUS_OK);
|
||||||
|
|
||||||
|
done:
|
||||||
|
if (h1 != NULL) {
|
||||||
|
smb2_util_close(tree, *h1);
|
||||||
|
}
|
||||||
|
|
||||||
|
smb2_util_unlink(tree, fname);
|
||||||
|
|
||||||
|
talloc_free(tree);
|
||||||
|
|
||||||
|
talloc_free(mem_ctx);
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
struct torture_suite *torture_smb2_session_init(void)
|
struct torture_suite *torture_smb2_session_init(void)
|
||||||
{
|
{
|
||||||
struct torture_suite *suite =
|
struct torture_suite *suite =
|
||||||
@ -196,6 +288,7 @@ struct torture_suite *torture_smb2_session_init(void)
|
|||||||
|
|
||||||
torture_suite_add_1smb2_test(suite, "reconnect", test_session_reconnect);
|
torture_suite_add_1smb2_test(suite, "reconnect", test_session_reconnect);
|
||||||
torture_suite_add_1smb2_test(suite, "reauth1", test_session_reauth1);
|
torture_suite_add_1smb2_test(suite, "reauth1", test_session_reauth1);
|
||||||
|
torture_suite_add_1smb2_test(suite, "reauth2", test_session_reauth2);
|
||||||
|
|
||||||
suite->description = talloc_strdup(suite, "SMB2-SESSION tests");
|
suite->description = talloc_strdup(suite, "SMB2-SESSION tests");
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user