From patchwork Tue Feb 3 14:39:17 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?Micha=C5=82_Winiarski?= X-Patchwork-Id: 5768901 Return-Path: X-Original-To: patchwork-intel-gfx@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 340869F399 for ; Tue, 3 Feb 2015 14:45:35 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 650E320212 for ; Tue, 3 Feb 2015 14:45:34 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) by mail.kernel.org (Postfix) with ESMTP id 731AB201FE for ; Tue, 3 Feb 2015 14:45:33 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 020FB6E606; Tue, 3 Feb 2015 06:45:33 -0800 (PST) X-Original-To: intel-gfx@lists.freedesktop.org Delivered-To: intel-gfx@lists.freedesktop.org Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by gabe.freedesktop.org (Postfix) with ESMTP id 7B0186E606 for ; Tue, 3 Feb 2015 06:45:31 -0800 (PST) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga101.jf.intel.com with ESMTP; 03 Feb 2015 06:45:31 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.97,862,1389772800"; d="scan'208";a="449209982" Received: from irsmsx101.ger.corp.intel.com ([163.33.3.153]) by FMSMGA003.fm.intel.com with ESMTP; 03 Feb 2015 06:31:21 -0800 Received: from mwiniars-desk1.igk.intel.com (172.28.173.140) by IRSMSX101.ger.corp.intel.com (163.33.3.153) with Microsoft SMTP Server id 14.3.195.1; Tue, 3 Feb 2015 14:45:28 +0000 From: =?UTF-8?q?Micha=C5=82=20Winiarski?= To: Date: Tue, 3 Feb 2015 15:39:17 +0100 Message-ID: <1422974357-25100-1-git-send-email-michal.winiarski@intel.com> X-Mailer: git-send-email 2.1.0 MIME-Version: 1.0 X-Originating-IP: [172.28.173.140] Subject: [Intel-gfx] [PATCH] tests/gem_userptr_blits: Race between close and invalidate X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" X-Spam-Status: No, score=-4.2 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_MED, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP It was possible for invalidate range start mmu notifier callback to race with releasing userptr object. If the object is released prior to taking a spinlock in the callback, we'll encounter a null pointer dereference. Cc: Chris Wilson Signed-off-by: Micha? Winiarski --- tests/gem_userptr_blits.c | 68 +++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 66 insertions(+), 2 deletions(-) diff --git a/tests/gem_userptr_blits.c b/tests/gem_userptr_blits.c index be2fdf9..5864e4f 100644 --- a/tests/gem_userptr_blits.c +++ b/tests/gem_userptr_blits.c @@ -1179,6 +1179,8 @@ static void test_unmap_cycles(int fd, int expected) test_unmap(fd, expected); } +#define MM_STRESS_LOOPS 100000 + struct stress_thread_data { unsigned int stop; int exit_code; @@ -1211,7 +1213,7 @@ static void test_stress_mm(int fd) { int ret; pthread_t t; - unsigned int loops = 100000; + unsigned int loops = MM_STRESS_LOOPS; uint32_t handle; void *ptr; struct stress_thread_data stdata; @@ -1239,6 +1241,62 @@ static void test_stress_mm(int fd) igt_assert(stdata.exit_code == 0); } +struct userptr_close_thread_data { + int fd; + void *ptr; + bool overlap; + bool stop; +}; + +static void *mm_userptr_close_thread(void *data) +{ + int ret; + struct userptr_close_thread_data *t_data = (struct userptr_close_thread_data *)data; + int fd = t_data->fd; + void *ptr = t_data->ptr; + int handle_num = t_data->overlap ? 2 : 1; + + uint32_t handle[handle_num]; + + while (!t_data->stop) { + for (int i = 0; i < handle_num; i++) + ret = gem_userptr(fd, ptr, PAGE_SIZE, 0, &handle[i]); + igt_assert(ret == 0); + for (int i = 0; i < handle_num; i++) { + gem_close(fd, handle[i]); + } + } + + return NULL; +} + +static void test_invalidate_close_race(int fd, bool overlap) +{ + int ret; + pthread_t t; + unsigned int loops = MM_STRESS_LOOPS; + struct userptr_close_thread_data t_data; + + memset(&t_data, 0, sizeof(t_data)); + t_data.fd = fd; + t_data.overlap = overlap; + igt_assert(posix_memalign(&t_data.ptr, PAGE_SIZE, PAGE_SIZE) == 0); + + ret = pthread_create(&t, NULL, mm_userptr_close_thread, &t_data); + igt_assert(ret == 0); + + while (loops--) { + mprotect(t_data.ptr, PAGE_SIZE, PROT_READ | PROT_WRITE | PROT_EXEC); + mprotect(t_data.ptr, PAGE_SIZE, PROT_READ | PROT_WRITE); + } + + t_data.stop = 1; + + pthread_join(t, NULL); + + free(t_data.ptr); +} + unsigned int total_ram; uint64_t aperture_size; int fd, count; @@ -1407,7 +1465,13 @@ int main(int argc, char **argv) test_unmap_after_close(fd); igt_subtest("stress-mm") - test_stress_mm(fd); + test_stress_mm(fd); + + igt_subtest("stress-mm-invalidate-close") + test_invalidate_close_race(fd, false); + + igt_subtest("stress-mm-invalidate-close-overlap") + test_invalidate_close_race(fd, true); igt_subtest("coherency-sync") test_coherency(fd, count);