Received: by 2002:a05:6a10:a0d1:0:0:0:0 with SMTP id j17csp3080331pxa; Tue, 18 Aug 2020 06:13:58 -0700 (PDT) X-Google-Smtp-Source: ABdhPJyNSMvdt6J1Agx7rompCN3LpvPs0rOGIsg2yDwI5y3WQhddw+uxWTYAOaQv9v8CtNb4ZAaV X-Received: by 2002:a50:8f44:: with SMTP id 62mr20460136edy.3.1597756438380; Tue, 18 Aug 2020 06:13:58 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1597756438; cv=none; d=google.com; s=arc-20160816; b=jG7NzU1wwZB6yR7Zd6Jp6tfJXaxm8aa+AWnkjnwoxmYJQuaVJ5Cyh0em0OAm/4efLx o4YDcZXTNcRdnolcHr5ZySKdGpte1NmmDxZxKW54LUhPHEua2wLFoNeTC5+6iyEsSK76 FG/h7kKnswrgRJje+JAteZ1AXkb8Kxo8IHwl9EZNukpJBEPCcbQLMqxDKQqU1xyzxvuN fXX5H57+WJ2wiNXehtvlQ0bcjRD+aYIMfX5qzOicFDXRZeKng4NdONYyyOJWnDe8HrQB 6LS1dFA62VU4ZJCByTyJDDH9Sq1tJwflMDwmpuZ/L5eVvpmykfE0Q7PouBcx9R2g6F6W 0H3w== 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 :message-id:date:subject:cc:to:from; bh=Vep2o1Y1RMCetlc/c0QTKxus//ukO5MPlBscGsF9Sww=; b=PbnwwE2X3vkM9zUtg8jnx0piH2/d+CKxVcrihbAz5BGuDhoUfSYKvmCrHegHvZKTSM lUsm8iKoxwgprd7ub4ZaYmcw5WkTtltUFduq9ks/4SnPO7fu/eIuDLduDt0nPOSOFIuB v7Dd0HA4xN/ASgEjvTcwjJZBLoCxoqfCrKVKcWRXrtiCayxejlMFcZ1AArJaEGTKUvti 0hHhkpdmoKjMrkbHAc7a7F9mZT4p6NldVfu7hvCzm5MP/1GdUXzf1m1mimd0obTpnVxp e1BD/580pC4x7HhemEFFMqlV9Fz0qz9zruBhM7ONO6YtR7d6Aus6SXxKe5cJ3WfPwr7h lfdQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id g21si12697223edr.544.2020.08.18.06.13.35; Tue, 18 Aug 2020 06:13:58 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726635AbgHRNM5 (ORCPT + 99 others); Tue, 18 Aug 2020 09:12:57 -0400 Received: from mx2.suse.de ([195.135.220.15]:33132 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726145AbgHRNM4 (ORCPT ); Tue, 18 Aug 2020 09:12:56 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.221.27]) by mx2.suse.de (Postfix) with ESMTP id 5645DB178; Tue, 18 Aug 2020 13:13:20 +0000 (UTC) From: Coly Li To: linux-block@vger.kernel.org, linux-nvme@lists.infradead.org, netdev@vger.kernel.org, open-iscsi@googlegroups.com, linux-scsi@vger.kernel.org, ceph-devel@vger.kernel.org Cc: linux-kernel@vger.kernel.org, Coly Li , Chaitanya Kulkarni , Chris Leech , Christoph Hellwig , Cong Wang , "David S . Miller" , Eric Dumazet , Hannes Reinecke , Ilya Dryomov , Jan Kara , Jeff Layton , Jens Axboe , Lee Duncan , Mike Christie , Mikhail Skorzhinskii , Philipp Reisner , Sagi Grimberg , Vasily Averin , Vlastimil Babka Subject: [PATCH v7 0/6] Introduce sendpage_ok() to detect misused sendpage in network related drivers Date: Tue, 18 Aug 2020 21:12:21 +0800 Message-Id: <20200818131227.37020-1-colyli@suse.de> X-Mailer: git-send-email 2.26.2 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 This series was original by a bug fix in nvme-over-tcp driver which only checked whether a page was allocated from slab allcoator, but forgot to check its page_count: The page handled by sendpage should be neither a Slab page nor 0 page_count page. As Sagi Grimberg suggested, the original fix is refind to a more common inline routine: static inline bool sendpage_ok(struct page *page) { return (!PageSlab(page) && page_count(page) >= 1); } If sendpage_ok() returns true, the checking page can be handled by the zero copy sendpage method in network layer. The first patch in this series introduces sendpage_ok() in header file include/linux/net.h, the second patch fixes the page checking issue in nvme-over-tcp driver, the third patch adds page_count check by using sendpage_ok() in do_tcp_sendpages() as Eric Dumazet suggested, and all rested patches just replace existing open coded checks with the inline sendpage_ok() routine. Coly Li Cc: Chaitanya Kulkarni Cc: Chris Leech Cc: Christoph Hellwig Cc: Cong Wang Cc: David S. Miller Cc: Eric Dumazet Cc: Hannes Reinecke Cc: Ilya Dryomov Cc: Jan Kara Cc: Jeff Layton Cc: Jens Axboe Cc: Lee Duncan Cc: Mike Christie Cc: Mikhail Skorzhinskii Cc: Philipp Reisner Cc: Sagi Grimberg Cc: Vasily Averin Cc: Vlastimil Babka --- Changelog: v7: remove outer brackets from the return line of sendpage_ok() as Eric Dumazet suggested. v6: fix page check in do_tcp_sendpages(), as Eric Dumazet suggested. replace other open coded checks with sendpage_ok() in libceph, iscsi drivers. v5, include linux/mm.h in include/linux/net.h v4, change sendpage_ok() as an inline helper, and post it as separate patch, as Christoph Hellwig suggested. v3, introduce a more common sendpage_ok() as Sagi Grimberg suggested. v2, fix typo in patch subject v1, the initial version. Coly Li (6): net: introduce helper sendpage_ok() in include/linux/net.h nvme-tcp: check page by sendpage_ok() before calling kernel_sendpage() tcp: use sendpage_ok() to detect misused .sendpage drbd: code cleanup by using sendpage_ok() to check page for kernel_sendpage() scsi: libiscsi: use sendpage_ok() in iscsi_tcp_segment_map() libceph: use sendpage_ok() in ceph_tcp_sendpage() drivers/block/drbd/drbd_main.c | 2 +- drivers/nvme/host/tcp.c | 7 +++---- drivers/scsi/libiscsi_tcp.c | 2 +- include/linux/net.h | 16 ++++++++++++++++ net/ceph/messenger.c | 2 +- net/ipv4/tcp.c | 3 ++- 6 files changed, 24 insertions(+), 8 deletions(-) -- 2.26.2