From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 18C37C43381 for ; Tue, 16 Mar 2021 12:53:09 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id D0DBE65057 for ; Tue, 16 Mar 2021 12:53:08 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234336AbhCPMwb (ORCPT ); Tue, 16 Mar 2021 08:52:31 -0400 Received: from zeniv-ca.linux.org.uk ([142.44.231.140]:57978 "EHLO zeniv-ca.linux.org.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232915AbhCPMuG (ORCPT ); Tue, 16 Mar 2021 08:50:06 -0400 Received: from viro by zeniv-ca.linux.org.uk with local (Exim 4.94 #2 (Red Hat Linux)) id 1lM92W-006Vrv-M5; Tue, 16 Mar 2021 12:43:12 +0000 Date: Tue, 16 Mar 2021 12:43:12 +0000 From: Al Viro To: Greg Kroah-Hartman Cc: Kees Cook , Andrew Morton , Michal Hocko , Alexey Dobriyan , Lee Duncan , Chris Leech , Adam Nichols , linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org, linux-hardening@vger.kernel.org Subject: Re: [PATCH v2] seq_file: Unconditionally use vmalloc for buffer Message-ID: References: <20210315174851.622228-1-keescook@chromium.org> <202103151336.78360DB34D@keescook> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Sender: Al Viro Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Mar 16, 2021 at 08:24:50AM +0100, Greg Kroah-Hartman wrote: > > Completely agreed. seq_get_buf() should be totally ripped out. > > Unfortunately, this is going to be a long road because of sysfs's ATTR > > stuff, there are something like 5000 callers, and the entire API was > > designed to avoid refactoring all those callers from > > sysfs_kf_seq_show(). > > What is wrong with the sysfs ATTR stuff? That should make it so that we > do not have to change any caller for any specific change like this, why > can't sysfs or kernfs handle it automatically? Hard to tell, since that would require _finding_ the sodding ->show() instances first. Good luck with that, seeing that most of those appear to come from templates-done-with-cpp... AFAICS, Kees wants to protect against ->show() instances stomping beyond the page size. What I don't get is what do you get from using seq_file if you insist on doing raw access to the buffer rather than using seq_printf() and friends. What's the point?