summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2015-05-02 16:29:03 +0200
committerKarolin Seeger <kseeger@samba.org>2015-05-20 16:34:30 +0200
commit1b2cf28087197d8fc94de7358fe989e8b6aa542c (patch)
tree579dabe8891ae2deb9dba8bc0f36a2cf4d1fc36d /source3
parent3af2142f97e9b43a14c8a4e9d4869625e1137cde (diff)
downloadsamba-1b2cf28087197d8fc94de7358fe989e8b6aa542c.tar.gz
s3:smb2_sesssetup: remove unused smbd_smb2_session_setup_* destructors
The cleanup of a failing session setup is now handled in smbd_smb2_session_setup_wrap_*(). Bug: https://bugzilla.samba.org/show_bug.cgi?id=11182 Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org> (similar to commit 5871d3da871349cba058bb91218ae58107cf05c8)
Diffstat (limited to 'source3')
-rw-r--r--source3/smbd/smb2_sesssetup.c59
1 files changed, 0 insertions, 59 deletions
diff --git a/source3/smbd/smb2_sesssetup.c b/source3/smbd/smb2_sesssetup.c
index cfad834c0ba..9f34a09931d 100644
--- a/source3/smbd/smb2_sesssetup.c
+++ b/source3/smbd/smb2_sesssetup.c
@@ -442,53 +442,11 @@ struct smbd_smb2_session_setup_state {
uint16_t out_session_flags;
DATA_BLOB out_security_buffer;
uint64_t out_session_id;
- /* The following pointer is owned by state->session. */
- struct smbd_smb2_session_setup_state **pp_self_ref;
};
-static int pp_self_ref_destructor(struct smbd_smb2_session_setup_state **pp_state)
-{
- (*pp_state)->session = NULL;
- /*
- * To make things clearer, ensure the pp_self_ref
- * pointer is nulled out. We're never going to
- * access this again.
- */
- (*pp_state)->pp_self_ref = NULL;
- return 0;
-}
-
-static int smbd_smb2_session_setup_state_destructor(struct smbd_smb2_session_setup_state *state)
-{
- /*
- * if state->session is not NULL,
- * we remove the session on failure
- */
- TALLOC_FREE(state->session);
- return 0;
-}
-
static void smbd_smb2_session_setup_gensec_done(struct tevent_req *subreq);
static void smbd_smb2_session_setup_previous_done(struct tevent_req *subreq);
-/************************************************************************
- We have to tag the state->session pointer with memory talloc'ed
- on it to ensure it gets NULL'ed out if the underlying struct smbXsrv_session
- is deleted by shutdown whilst this request is in flight.
-************************************************************************/
-
-static NTSTATUS tag_state_session_ptr(struct smbd_smb2_session_setup_state *state)
-{
- state->pp_self_ref = talloc_zero(state->session,
- struct smbd_smb2_session_setup_state *);
- if (state->pp_self_ref == NULL) {
- return NT_STATUS_NO_MEMORY;
- }
- *state->pp_self_ref = state;
- talloc_set_destructor(state->pp_self_ref, pp_self_ref_destructor);
- return NT_STATUS_OK;
-}
-
static struct tevent_req *smbd_smb2_session_setup_send(TALLOC_CTX *mem_ctx,
struct tevent_context *ev,
struct smbd_smb2_request *smb2req,
@@ -530,8 +488,6 @@ static struct tevent_req *smbd_smb2_session_setup_send(TALLOC_CTX *mem_ctx,
return tevent_req_post(req, ev);
}
- talloc_set_destructor(state, smbd_smb2_session_setup_state_destructor);
-
if (state->in_session_id == 0) {
/* create a new session */
status = smbXsrv_session_create(state->smb2req->sconn->conn,
@@ -558,11 +514,6 @@ static struct tevent_req *smbd_smb2_session_setup_send(TALLOC_CTX *mem_ctx,
}
}
- status = tag_state_session_ptr(state);
- if (tevent_req_nterror(req, status)) {
- return tevent_req_post(req, ev);
- }
-
if (state->session->gensec == NULL) {
status = auth_generic_prepare(state->session,
state->session->connection->remote_address,
@@ -617,8 +568,6 @@ static void smbd_smb2_session_setup_gensec_done(struct tevent_req *subreq)
if (NT_STATUS_EQUAL(status, NT_STATUS_MORE_PROCESSING_REQUIRED)) {
state->out_session_id = state->session->global->session_wire_id;
- /* we want to keep the session */
- TALLOC_FREE(state->pp_self_ref);
tevent_req_nterror(req, status);
return;
}
@@ -657,8 +606,6 @@ static void smbd_smb2_session_setup_gensec_done(struct tevent_req *subreq)
if (tevent_req_nterror(req, status)) {
return;
}
- /* we want to keep the session */
- TALLOC_FREE(state->pp_self_ref);
tevent_req_done(req);
return;
}
@@ -673,8 +620,6 @@ static void smbd_smb2_session_setup_gensec_done(struct tevent_req *subreq)
return;
}
- /* we want to keep the session */
- TALLOC_FREE(state->pp_self_ref);
tevent_req_done(req);
return;
}
@@ -704,8 +649,6 @@ static void smbd_smb2_session_setup_previous_done(struct tevent_req *subreq)
if (tevent_req_nterror(req, status)) {
return;
}
- /* we want to keep the session */
- TALLOC_FREE(state->pp_self_ref);
tevent_req_done(req);
return;
}
@@ -720,8 +663,6 @@ static void smbd_smb2_session_setup_previous_done(struct tevent_req *subreq)
return;
}
- /* we want to keep the session */
- TALLOC_FREE(state->pp_self_ref);
tevent_req_done(req);
return;
}