aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVlad Yasevich <vladislav.yasevich@hp.com>2008-07-19 02:06:07 -0400
committerDavid S. Miller <davem@davemloft.net>2008-07-19 02:06:07 -0400
commit23b29ed80bd7184398317a111dc488605cb66c7f (patch)
treebe2d87726f00ebb21d10fc62c2b4ba557a7392eb
parent7dab83de50c7b2b7ceac695a0b56fa6c0f95b0bc (diff)
sctp: Do not leak memory on multiple listen() calls
SCTP permits multiple listen call and on subsequent calls we leak he memory allocated for the crypto transforms. Signed-off-by: Vlad Yasevich <vladislav.yasevich@hp.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--net/sctp/socket.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/net/sctp/socket.c b/net/sctp/socket.c
index a0e879bb202d..fd7ed9d46a48 100644
--- a/net/sctp/socket.c
+++ b/net/sctp/socket.c
@@ -5773,7 +5773,7 @@ int sctp_inet_listen(struct socket *sock, int backlog)
5773 goto out; 5773 goto out;
5774 5774
5775 /* Allocate HMAC for generating cookie. */ 5775 /* Allocate HMAC for generating cookie. */
5776 if (sctp_hmac_alg) { 5776 if (!sctp_sk(sk)->hmac && sctp_hmac_alg) {
5777 tfm = crypto_alloc_hash(sctp_hmac_alg, 0, CRYPTO_ALG_ASYNC); 5777 tfm = crypto_alloc_hash(sctp_hmac_alg, 0, CRYPTO_ALG_ASYNC);
5778 if (IS_ERR(tfm)) { 5778 if (IS_ERR(tfm)) {
5779 if (net_ratelimit()) { 5779 if (net_ratelimit()) {
@@ -5801,7 +5801,8 @@ int sctp_inet_listen(struct socket *sock, int backlog)
5801 goto cleanup; 5801 goto cleanup;
5802 5802
5803 /* Store away the transform reference. */ 5803 /* Store away the transform reference. */
5804 sctp_sk(sk)->hmac = tfm; 5804 if (!sctp_sk(sk)->hmac)
5805 sctp_sk(sk)->hmac = tfm;
5805out: 5806out:
5806 sctp_release_sock(sk); 5807 sctp_release_sock(sk);
5807 return err; 5808 return err;