From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from charlotte.tuxdriver.com ([70.61.120.58]:48139 "EHLO smtp.tuxdriver.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751854AbeCONVA (ORCPT ); Thu, 15 Mar 2018 09:21:00 -0400 Date: Thu, 15 Mar 2018 09:20:17 -0400 From: Neil Horman To: Xin Long Cc: network dev , linux-sctp@vger.kernel.org, Marcelo Ricardo Leitner , davem@davemloft.net Subject: Re: [PATCH net-next 0/5] sctp: add support for some sctp auth APIs from RFC6458 Message-ID: <20180315132017.GA15724@hmswarspite.think-freely.org> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Sender: netdev-owner@vger.kernel.org List-ID: On Wed, Mar 14, 2018 at 07:05:29PM +0800, Xin Long wrote: > This patchset mainly adds support for SCTP AUTH Information for sendmsg, > described in RFC6458: > > 5.3.8. SCTP AUTH Information Structure (SCTP_AUTHINFO) > > and also adds a sockopt described in RFC6458: > > 8.3.4. Deactivate a Shared Key (SCTP_AUTH_DEACTIVATE_KEY) > > and two types of events for AUTHENTICATION_EVENT described in RFC6458: > > 6.1.8. SCTP_AUTHENTICATION_EVENT: > - SCTP_AUTH_NO_AUTH > - SCTP_AUTH_FREE_KEY > > After this patchset, we have fully support for sctp_sendv in kernel. > > Note that this patchset won't touch that sctp options merge conflict. > > Xin Long (5): > sctp: add refcnt support for sh_key > sctp: add support for SCTP AUTH Information for sendmsg > sctp: add sockopt SCTP_AUTH_DEACTIVATE_KEY > sctp: add SCTP_AUTH_FREE_KEY type for AUTHENTICATION_EVENT > sctp: add SCTP_AUTH_NO_AUTH type for AUTHENTICATION_EVENT > > include/net/sctp/auth.h | 21 ++++--- > include/net/sctp/command.h | 1 + > include/net/sctp/sm.h | 3 +- > include/net/sctp/structs.h | 10 +++- > include/uapi/linux/sctp.h | 22 ++++++- > net/sctp/auth.c | 146 +++++++++++++++++++++++++++++++-------------- > net/sctp/chunk.c | 14 +++++ > net/sctp/output.c | 18 +++++- > net/sctp/sm_make_chunk.c | 33 +++++++++- > net/sctp/sm_sideeffect.c | 13 ++++ > net/sctp/sm_statefuns.c | 56 ++++++++++++++--- > net/sctp/socket.c | 77 ++++++++++++++++++++++++ > 12 files changed, 342 insertions(+), 72 deletions(-) > > -- > 2.1.0 > > Series Acked-by: Neil Horman