Received: by 2002:ac0:a5a6:0:0:0:0:0 with SMTP id m35-v6csp4009830imm; Mon, 17 Sep 2018 06:52:46 -0700 (PDT) X-Google-Smtp-Source: ANB0VdYmo0wvZ4mGn2VZbehDuFZaKWHGBv1aRxiBPoWMKd4/YL/qs+b+V10Q31d04QCEwCM/9YUT X-Received: by 2002:a17:902:28a4:: with SMTP id f33-v6mr25078417plb.297.1537192366061; Mon, 17 Sep 2018 06:52:46 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1537192366; cv=none; d=google.com; s=arc-20160816; b=mSaTn3RzckZwFn8dL0VQXTFi1MMflCyBkak0jyIfI3PrMPTd6pCqjRoXFWeKex8qrp ZSPASkrNLMr2vdMM6lhsalVbORHxKXHzEq+1hoeQr7PG8HiveG2LkSgJvf3Y0BwM6qDc Y1KhD1GZ1r63s+mCaDQLMbSfcLOO5KoWuPDqYu5MnPmCx7i/WFojj3abW9Xzs7N64amu TdZtx/Iu15qSA/h0FhmNjn+EYNY4WkkbT/1U7x9OFBXA63pdJ60QGyhyVVrFvheiGZ3H birxeaF2hJiYUaJCGjwuRnb5hCDo1n5Z8iOg5t7UF5iLUQq8kAdrlMYJ25WPvCITCwVn q4+A== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=hkuVveTQGfaLz5DMvnfI6kN65tPJRyp9TKmFpiW8wdk=; b=CAW3nPdad41Od5UO2GiohKMTn5nUm9vdH78iF4LLAWBfD0CzYQdZNkDw9Cdnf8KOLX zM4q7Wmzs9F+hpQXT1hM/AkaccOrGFOlFUzCpFIO1TFNtTRqX5wnArdfdfDMDDLIvRrA tHkwesWfQz/BYXj0J9aUIv+EnjkkKHHwOBLZDPHzZAB8M6/yrGUxgW/oLcDCpaGmDnda PfdMrcayWN7G607HGBlOKXAu0bYvGHzozlvZHwv5kamcqJWLp7DuL3xsgOJdqScYvc/5 uDsKe6OUJJRt4SWR/j33AOd5lY0QFkQp0ENqEfaIe3r++NX9gIuCfKmAy01JdByVDkvy houg== 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 w3-v6si15793111ply.370.2018.09.17.06.52.26; Mon, 17 Sep 2018 06:52:46 -0700 (PDT) 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 S1728621AbeIQTTj (ORCPT + 99 others); Mon, 17 Sep 2018 15:19:39 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:55894 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728317AbeIQTTi (ORCPT ); Mon, 17 Sep 2018 15:19:38 -0400 Received: from localhost (ip-213-127-77-73.ip.prioritytelecom.net [213.127.77.73]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id 24660D98; Mon, 17 Sep 2018 13:52:10 +0000 (UTC) From: Greg Kroah-Hartman To: sameo@linux.intel.com, davem@davemloft.net, netdev@vger.kernel.org Cc: allen.pais@oracle.com, keescook@chromium.org, surenb@google.com, linux-wireless@vger.kernel.org, linux-kernel@vger.kernel.org, stable , Greg Kroah-Hartman Subject: [PATCH 2/2] NFC: Fix the number of pipes Date: Mon, 17 Sep 2018 15:51:41 +0200 Message-Id: <20180917135141.28328-3-gregkh@linuxfoundation.org> X-Mailer: git-send-email 2.19.0 In-Reply-To: <20180917135141.28328-1-gregkh@linuxfoundation.org> References: <20180917135141.28328-1-gregkh@linuxfoundation.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Suren Baghdasaryan According to ETSI TS 102 622 specification chapter 4.4 pipe identifier is 7 bits long which allows for 128 unique pipe IDs. Because NFC_HCI_MAX_PIPES is used as the number of pipes supported and not as the max pipe ID, its value should be 128 instead of 127. nfc_hci_recv_from_llc extracts pipe ID from packet header using NFC_HCI_FRAGMENT(0x7F) mask which allows for pipe ID value of 127. Same happens when NCI_HCP_MSG_GET_PIPE() is being used. With pipes array having only 127 elements and pipe ID of 127 the OOB memory access will result. Cc: Samuel Ortiz Cc: Allen Pais Cc: "David S. Miller" Suggested-by: Dan Carpenter Signed-off-by: Suren Baghdasaryan Reviewed-by: Kees Cook Cc: stable Signed-off-by: Greg Kroah-Hartman --- include/net/nfc/hci.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/net/nfc/hci.h b/include/net/nfc/hci.h index 316694dafa5b..008f466d1da7 100644 --- a/include/net/nfc/hci.h +++ b/include/net/nfc/hci.h @@ -87,7 +87,7 @@ struct nfc_hci_pipe { * According to specification 102 622 chapter 4.4 Pipes, * the pipe identifier is 7 bits long. */ -#define NFC_HCI_MAX_PIPES 127 +#define NFC_HCI_MAX_PIPES 128 struct nfc_hci_init_data { u8 gate_count; struct nfc_hci_gate gates[NFC_HCI_MAX_CUSTOM_GATES]; -- 2.19.0