diff options
author | Xin Long <lucien.xin@gmail.com> | 2021-11-02 08:02:49 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-11-03 11:09:20 +0000 |
commit | 7c2ef0240e6abfd3cc59511339517358350a8910 (patch) | |
tree | 9bd085132416fef41a076ecac30cdcc8fa461385 /net | |
parent | e215dab1c49070cd75620afd801f777207a5b65c (diff) | |
download | linux-stable-7c2ef0240e6abfd3cc59511339517358350a8910.tar.gz linux-stable-7c2ef0240e6abfd3cc59511339517358350a8910.tar.bz2 linux-stable-7c2ef0240e6abfd3cc59511339517358350a8910.zip |
security: add sctp_assoc_established hook
security_sctp_assoc_established() is added to replace
security_inet_conn_established() called in
sctp_sf_do_5_1E_ca(), so that asoc can be accessed in security
subsystem and save the peer secid to asoc->peer_secid.
v1->v2:
- fix the return value of security_sctp_assoc_established() in
security.h, found by kernel test robot and Ondrej.
Fixes: 72e89f50084c ("security: Add support for SCTP security hooks")
Reported-by: Prashanth Prahlad <pprahlad@redhat.com>
Reviewed-by: Richard Haines <richard_c_haines@btinternet.com>
Tested-by: Richard Haines <richard_c_haines@btinternet.com>
Signed-off-by: Xin Long <lucien.xin@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/sctp/sm_statefuns.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sctp/sm_statefuns.c b/net/sctp/sm_statefuns.c index b818532c3fc2..5fabaa54b77d 100644 --- a/net/sctp/sm_statefuns.c +++ b/net/sctp/sm_statefuns.c @@ -946,7 +946,7 @@ enum sctp_disposition sctp_sf_do_5_1E_ca(struct net *net, sctp_add_cmd_sf(commands, SCTP_CMD_INIT_COUNTER_RESET, SCTP_NULL()); /* Set peer label for connection. */ - security_inet_conn_established(ep->base.sk, chunk->skb); + security_sctp_assoc_established((struct sctp_association *)asoc, chunk->skb); /* RFC 2960 5.1 Normal Establishment of an Association * |