From patchwork Thu Jun 18 13:28:16 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Martin Doucha X-Patchwork-Id: 1312099 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=lists.linux.it (client-ip=2001:1418:10:5::2; helo=picard.linux.it; envelope-from=ltp-bounces+incoming=patchwork.ozlabs.org@lists.linux.it; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=suse.cz Received: from picard.linux.it (picard.linux.it [IPv6:2001:1418:10:5::2]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 49njS73xqqz9sRR for ; Thu, 18 Jun 2020 23:28:23 +1000 (AEST) Received: from picard.linux.it (localhost [IPv6:::1]) by picard.linux.it (Postfix) with ESMTP id 433053C2C89 for ; Thu, 18 Jun 2020 15:28:20 +0200 (CEST) X-Original-To: ltp@lists.linux.it Delivered-To: ltp@picard.linux.it Received: from in-4.smtp.seeweb.it (in-4.smtp.seeweb.it [217.194.8.4]) by picard.linux.it (Postfix) with ESMTP id CCD653C2C7C for ; Thu, 18 Jun 2020 15:28:18 +0200 (CEST) Received: from mx2.suse.de (mx2.suse.de [195.135.220.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by in-4.smtp.seeweb.it (Postfix) with ESMTPS id 79C88100044C for ; Thu, 18 Jun 2020 15:28:18 +0200 (CEST) Received: from relay2.suse.de (unknown [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id 28CEBAFF2 for ; Thu, 18 Jun 2020 13:28:17 +0000 (UTC) From: Martin Doucha To: ltp@lists.linux.it Date: Thu, 18 Jun 2020 15:28:16 +0200 Message-Id: <20200618132816.22086-1-mdoucha@suse.cz> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 X-Virus-Scanned: clamav-milter 0.99.2 at in-4.smtp.seeweb.it X-Virus-Status: Clean X-Spam-Status: No, score=0.0 required=7.0 tests=SPF_HELO_NONE,SPF_PASS autolearn=disabled version=3.4.0 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on in-4.smtp.seeweb.it Subject: [LTP] [PATCH] pty03: Add CVE reference and add it to the CVE runfile X-BeenThere: ltp@lists.linux.it X-Mailman-Version: 2.1.29 Precedence: list List-Id: Linux Test Project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: ltp-bounces+incoming=patchwork.ozlabs.org@lists.linux.it Sender: "ltp" Signed-off-by: Martin Doucha --- runtest/cve | 1 + testcases/kernel/pty/pty03.c | 3 +++ 2 files changed, 4 insertions(+) diff --git a/runtest/cve b/runtest/cve index bbbe965d4..a3a25dbe1 100644 --- a/runtest/cve +++ b/runtest/cve @@ -53,3 +53,4 @@ cve-2018-1000204 ioctl_sg01 cve-2018-18559 bind06 cve-2018-19854 crypto_user01 cve-2020-11494 pty04 +cve-2020-14416 pty03 diff --git a/testcases/kernel/pty/pty03.c b/testcases/kernel/pty/pty03.c index 8e05ad3be..e71739a71 100644 --- a/testcases/kernel/pty/pty03.c +++ b/testcases/kernel/pty/pty03.c @@ -2,6 +2,8 @@ /* * Copyright (c) 2020 SUSE * + * CVE-2020-14416 + * * Test based on Syzkaller reproducer: * https://syzkaller.appspot.com/bug?id=680c24ff647dd7241998e19da52e8136d2fd3523 * @@ -148,6 +150,7 @@ static struct tst_test test = { .needs_root = 1, .tags = (const struct tst_tag[]) { {"linux-git", "0ace17d568241"}, + {"CVE", "2020-14416"}, {} } };