Received: by 10.223.185.116 with SMTP id b49csp1021433wrg; Wed, 21 Feb 2018 10:42:24 -0800 (PST) X-Google-Smtp-Source: AH8x226wKdz6P8gYx93SLCbZ/1ogsPAY5xSmg5WkKYSXhHP/RCae8G3MjGEFuTw0LupMjVWNNR/j X-Received: by 10.99.116.16 with SMTP id p16mr1552524pgc.194.1519238544335; Wed, 21 Feb 2018 10:42:24 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1519238544; cv=none; d=google.com; s=arc-20160816; b=j/h7PtvTg6Vd5f9FpeuDrilsR7vPjiTxfYD2x6H7XqoYv7lzGi9XD1Zt0SYcRF7rQL x6FEUIw+yJ17QVhv1NBwtt/IgxCSoZ+GlJG2MouA1zxvOTkznsCUsPws9fALlIrVfKQ8 sr3O2iFq57nqrAk7gNPcd29WJyZtCXRnnryI294oLoo+CZlX7L6G18OImompVWfFtijv CXRHeJzKkCJrKxyG5rdv2PknzKyclDYfgfT/icofivqEEcboEFwq/RtzNXftMK1zz6VT KUzbwKlqqFH64BNoLgejgIL5LduHWQ3YrW64lMU5oWKcXVW5LOXV2upS0/CpyERKS+Xm 5/Vw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:user-agent:references :in-reply-to:message-id:date:subject:cc:to:from :arc-authentication-results; bh=dYHdFifZ26HcY22pIHUurlVzYmC+VOGUF06UJg3+lRk=; b=EwEpsqpyepYkt2aAGS/h5Y0M31FlUlSeMjK3Ruvi3CXs+beXu5pRYHjuQx1SRpJgym aeKf7zwfgD0NUr3eLn1RDz2+nFykUtJD4gi5uO4dd3UKv3mmxZqiFPmGu9XGD+Q0n9p6 SNskYvxt2MxaoTs2sK8ykXR4F36VOA7ycp+rvqf73m+jdNt+CAm5DJoCanxsD9esWX2y 5FuGGtx1WGsLNAtTwYrx9l+rIqdFzxFZwN7xQVEWWS5nRQ2jzB4FjTuZnrHE09VqZ6JU 4S/rm12UwCIlm2Co8IFJoCb8i08s/64pIoEE1zv25kUATGIzYGwDCFC+BuFHl6WOor2W /spQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id 4si1323924pgh.771.2018.02.21.10.42.09; Wed, 21 Feb 2018 10:42:24 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S936667AbeBUNYe (ORCPT + 99 others); Wed, 21 Feb 2018 08:24:34 -0500 Received: from mail.linuxfoundation.org ([140.211.169.12]:44816 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S936387AbeBUNLY (ORCPT ); Wed, 21 Feb 2018 08:11:24 -0500 Received: from localhost (LFbn-1-12258-90.w90-92.abo.wanadoo.fr [90.92.71.90]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id C6876727; Wed, 21 Feb 2018 13:11:23 +0000 (UTC) From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, "David S. Miller" , "Eric W. Biederman" , Dan Williams Subject: [PATCH 4.15 126/163] mpls, nospec: Sanitize array index in mpls_label_ok() Date: Wed, 21 Feb 2018 13:49:15 +0100 Message-Id: <20180221124537.097119821@linuxfoundation.org> X-Mailer: git-send-email 2.16.2 In-Reply-To: <20180221124529.931834518@linuxfoundation.org> References: <20180221124529.931834518@linuxfoundation.org> User-Agent: quilt/0.65 X-stable: review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 4.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Dan Williams commit 3968523f855050b8195134da951b87c20bd66130 upstream. mpls_label_ok() validates that the 'platform_label' array index from a userspace netlink message payload is valid. Under speculation the mpls_label_ok() result may not resolve in the CPU pipeline until after the index is used to access an array element. Sanitize the index to zero to prevent userspace-controlled arbitrary out-of-bounds speculation, a precursor for a speculative execution side channel vulnerability. Cc: Cc: "David S. Miller" Cc: Eric W. Biederman Signed-off-by: Dan Williams Signed-off-by: David S. Miller Signed-off-by: Greg Kroah-Hartman --- net/mpls/af_mpls.c | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) --- a/net/mpls/af_mpls.c +++ b/net/mpls/af_mpls.c @@ -8,6 +8,7 @@ #include #include #include +#include #include #include #include @@ -935,24 +936,27 @@ errout: return err; } -static bool mpls_label_ok(struct net *net, unsigned int index, +static bool mpls_label_ok(struct net *net, unsigned int *index, struct netlink_ext_ack *extack) { + bool is_ok = true; + /* Reserved labels may not be set */ - if (index < MPLS_LABEL_FIRST_UNRESERVED) { + if (*index < MPLS_LABEL_FIRST_UNRESERVED) { NL_SET_ERR_MSG(extack, "Invalid label - must be MPLS_LABEL_FIRST_UNRESERVED or higher"); - return false; + is_ok = false; } /* The full 20 bit range may not be supported. */ - if (index >= net->mpls.platform_labels) { + if (is_ok && *index >= net->mpls.platform_labels) { NL_SET_ERR_MSG(extack, "Label >= configured maximum in platform_labels"); - return false; + is_ok = false; } - return true; + *index = array_index_nospec(*index, net->mpls.platform_labels); + return is_ok; } static int mpls_route_add(struct mpls_route_config *cfg, @@ -975,7 +979,7 @@ static int mpls_route_add(struct mpls_ro index = find_free_label(net); } - if (!mpls_label_ok(net, index, extack)) + if (!mpls_label_ok(net, &index, extack)) goto errout; /* Append makes no sense with mpls */ @@ -1052,7 +1056,7 @@ static int mpls_route_del(struct mpls_ro index = cfg->rc_label; - if (!mpls_label_ok(net, index, extack)) + if (!mpls_label_ok(net, &index, extack)) goto errout; mpls_route_update(net, index, NULL, &cfg->rc_nlinfo); @@ -1810,7 +1814,7 @@ static int rtm_to_route_config(struct sk goto errout; if (!mpls_label_ok(cfg->rc_nlinfo.nl_net, - cfg->rc_label, extack)) + &cfg->rc_label, extack)) goto errout; break; } @@ -2137,7 +2141,7 @@ static int mpls_getroute(struct sk_buff goto errout; } - if (!mpls_label_ok(net, in_label, extack)) { + if (!mpls_label_ok(net, &in_label, extack)) { err = -EINVAL; goto errout; }