From mboxrd@z Thu Jan 1 00:00:00 1970 Content-Type: multipart/mixed; boundary="===============8962613518112432574==" MIME-Version: 1.0 From: Mat Martineau To: mptcp at lists.01.org Subject: [MPTCP] Re: [PATCH net 1/4] mptcp: fix security context on server socket Date: Wed, 16 Dec 2020 15:36:45 -0800 Message-ID: <79aeed3-e480-9e5c-6498-40893e81f1f4@linux.intel.com> In-Reply-To: 1bf3ee9b0c79a1e619fe4749d926aab71f0a7bcc.1608114076.git.pabeni@redhat.com X-Status: X-Keywords: X-UID: 7200 --===============8962613518112432574== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable On Wed, 16 Dec 2020, Paolo Abeni wrote: > Currently MPTCP is not propagating the security context > from the ingress request socket to newly created msk > at clone time. > > Address the issue invoking the missing security helper. > > Fixes: cf7da0d66cc1 ("mptcp: Create SUBFLOW socket for incoming connectio= ns") > Signed-off-by: Paolo Abeni > --- > net/mptcp/protocol.c | 2 ++ > 1 file changed, 2 insertions(+) > Reviewed-by: Mat Martineau -- Mat Martineau Intel --===============8962613518112432574==-- From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-13.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 829CAC4361B for ; Wed, 16 Dec 2020 23:38:32 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 4D48D23603 for ; Wed, 16 Dec 2020 23:38:32 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730789AbgLPXib (ORCPT ); Wed, 16 Dec 2020 18:38:31 -0500 Received: from mga04.intel.com ([192.55.52.120]:34417 "EHLO mga04.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726806AbgLPXib (ORCPT ); Wed, 16 Dec 2020 18:38:31 -0500 IronPort-SDR: lUQBRGrg7ZTOVArKCfHA+Exz4K3XNpWG3l8c0Kc2PgUn4cqSR7474CN/nIE8fY8gnk0MstOaBS ZGPgw7UWmcMw== X-IronPort-AV: E=McAfee;i="6000,8403,9837"; a="172583156" X-IronPort-AV: E=Sophos;i="5.78,425,1599548400"; d="scan'208";a="172583156" Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Dec 2020 15:36:45 -0800 IronPort-SDR: RaqASg+pB3JJYYbBYCEK1RjfnMIoK1AA+jTu2+jjwGtFeRzUSG+OnCDVWnUpDrw2Up79ITda2b UON1BDaN005A== X-IronPort-AV: E=Sophos;i="5.78,425,1599548400"; d="scan'208";a="352888758" Received: from jumaanew-mobl2.amr.corp.intel.com ([10.254.73.12]) by orsmga002-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Dec 2020 15:36:45 -0800 Date: Wed, 16 Dec 2020 15:36:45 -0800 (PST) From: Mat Martineau To: Paolo Abeni cc: netdev@vger.kernel.org, "David S. Miller" , Jakub Kicinski , mptcp@lists.01.org Subject: Re: [PATCH net 1/4] mptcp: fix security context on server socket In-Reply-To: <1bf3ee9b0c79a1e619fe4749d926aab71f0a7bcc.1608114076.git.pabeni@redhat.com> Message-ID: <79aeed3-e480-9e5c-6498-40893e81f1f4@linux.intel.com> References: <1bf3ee9b0c79a1e619fe4749d926aab71f0a7bcc.1608114076.git.pabeni@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org On Wed, 16 Dec 2020, Paolo Abeni wrote: > Currently MPTCP is not propagating the security context > from the ingress request socket to newly created msk > at clone time. > > Address the issue invoking the missing security helper. > > Fixes: cf7da0d66cc1 ("mptcp: Create SUBFLOW socket for incoming connections") > Signed-off-by: Paolo Abeni > --- > net/mptcp/protocol.c | 2 ++ > 1 file changed, 2 insertions(+) > Reviewed-by: Mat Martineau -- Mat Martineau Intel