From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751005AbeFAAyc (ORCPT ); Thu, 31 May 2018 20:54:32 -0400 Received: from mail-io0-f196.google.com ([209.85.223.196]:44779 "EHLO mail-io0-f196.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750729AbeFAAya (ORCPT ); Thu, 31 May 2018 20:54:30 -0400 X-Google-Smtp-Source: ADUXVKLGIZD3BkTsghG1Npk0WAGwwtP5ZWWgGlxlH2H5RRYMpGQEk2s6Ro1GhNYh5JcBBK4dQEX0Dn3Fu+10juKwfGQ= MIME-Version: 1.0 References: <20180601004233.37822-1-keescook@chromium.org> In-Reply-To: <20180601004233.37822-1-keescook@chromium.org> From: Linus Torvalds Date: Thu, 31 May 2018 19:54:18 -0500 Message-ID: Subject: Re: [PATCH v3 00/16] Provide saturating helpers for allocation To: Kees Cook Cc: Matthew Wilcox , Rasmus Villemoes , Matthew Wilcox , Linux Kernel Mailing List , linux-mm , Kernel Hardening Content-Type: text/plain; charset="UTF-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, May 31, 2018 at 7:43 PM Kees Cook wrote: > > So, while nothing does: > kmalloc_array(a, b, ...) -> kmalloc(array_size(a, b), ...) > the treewide changes DO perform changes like this: > kmalloc(a * b, ...) -> kmalloc(array_size(a, b), ...) Ugh. I really really still absolutely despise this. Why can't you just have a separate set of coccinelle scripts that do the simple and clean cases? So *before* doing any array_size() conversions, just do kzalloc(a*b, ...) -> kcalloc(a, b, ...) kmalloc(a*b,..) -> kmalloc_array(a,b, ...) and the obvious variations on that (devm_xyz() has all the same helpers). Only after doing the ones that don't have the nice obvious helpers, do the remaining ones with array_size(), ie *alloc(a*b, ..) -> *alloc(array_size(a,b), ...) because that really makes for much less legible code. Hmm? Linus