From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from casper.infradead.org (casper.infradead.org [90.155.50.34]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id CC0D768 for ; Fri, 3 Dec 2021 10:23:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=casper.20170209; h=In-Reply-To:Content-Type:MIME-Version: References:Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=WDJ7DRgTIJi/G608Ewn/RZmWDD8diylwBXPBUlmJ67Q=; b=tAGWACfEhPD9yiB9avdDZw/3D+ u1zeKcjJBBX7BlGGG9yjkYMGpDrMSUAsGinn9VupILRwY3PCGRQ0mBbTY5hbbArnNK07glNj3Wjrz 2DcKNoe59YMJW3ScyhGWJLlYbLAMYnJVoEixt7SfGMjHg+e/mbuiTdlDtQf7ciC+lgg1FVTxgjF5A IkSpa8q0dSesDMLHaXZjYUzpYF4fZuVzUP335nbXvDzpjGcbBebGeLo9Z8vxHTl1ppx3wEruwSLvC 84GoyS6A1M8FTLB4MJBtZgbRxyVjWXD3Ca8OrI7XEJ6zYB2p/YJi9DrRTEJGj0neUazl0QVpKocUD EMpJjwCA==; Received: from j217100.upc-j.chello.nl ([24.132.217.100] helo=noisy.programming.kicks-ass.net) by casper.infradead.org with esmtpsa (Exim 4.94.2 #2 (Red Hat Linux)) id 1mt5iy-008BaQ-Jh; Fri, 03 Dec 2021 10:23:29 +0000 Received: from hirez.programming.kicks-ass.net (hirez.programming.kicks-ass.net [192.168.1.225]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by noisy.programming.kicks-ass.net (Postfix) with ESMTPS id 5CF54300293; Fri, 3 Dec 2021 11:23:27 +0100 (CET) Received: by hirez.programming.kicks-ass.net (Postfix, from userid 1000) id 424512B36B3B7; Fri, 3 Dec 2021 11:23:27 +0100 (CET) Date: Fri, 3 Dec 2021 11:23:27 +0100 From: Peter Zijlstra To: Alexander Lobakin Cc: linux-hardening@vger.kernel.org, x86@kernel.org, Jesse Brandeburg , Kristen Carlson Accardi , Kees Cook , Miklos Szeredi , Ard Biesheuvel , Tony Luck , Bruce Schlobohm , Jessica Yu , kernel test robot , Miroslav Benes , Evgenii Shatokhin , Jonathan Corbet , Masahiro Yamada , Michal Marek , Nick Desaulniers , Herbert Xu , "David S. Miller" , Thomas Gleixner , Will Deacon , Ingo Molnar , Borislav Petkov , Dave Hansen , "H. Peter Anvin" , Andy Lutomirski , Arnd Bergmann , Josh Poimboeuf , Nathan Chancellor , Masami Hiramatsu , Marios Pomonis , Sami Tolvanen , linux-kernel@vger.kernel.org, linux-kbuild@vger.kernel.org, linux-arch@vger.kernel.org, live-patching@vger.kernel.org, llvm@lists.linux.dev Subject: Re: [PATCH v8 11/14] module: Reorder functions Message-ID: References: <20211202223214.72888-1-alexandr.lobakin@intel.com> <20211202223214.72888-12-alexandr.lobakin@intel.com> Precedence: bulk X-Mailing-List: llvm@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20211202223214.72888-12-alexandr.lobakin@intel.com> On Thu, Dec 02, 2021 at 11:32:11PM +0100, Alexander Lobakin wrote: > +/* > + * shuffle_text_list() > + * Use a Fisher Yates algorithm to shuffle a list of text sections. > + */ > +static void shuffle_text_list(Elf_Shdr **list, int size) > +{ > + u32 i, j; > + > + for (i = size - 1; i > 0; i--) { > + /* > + * pick a random index from 0 to i > + */ > + j = get_random_u32() % (i + 1); > + > + swap(list[i], list[j]); > + } > +} I'm sure I've seen pretty much that exact function earlier in this series; does we really need two of them? #define shuffle_me_harder(_base, _size, _nr) \ do { \ struct { unsigned char _[_size]; } _t, *_a = (void *)(_base); \ int _i, _j; \ for (_i = (_nr)-1; _i > 0; _i--) { \ _j = get_random_u32() % (_i + 1); \ _t = _a[_i]; \ _a[_i] = _a[_j]; \ _a[_j] = _t; \ } \ } while (0) #define shuffle_array(_array) shuffle_me_harder(_array, sizeof(_array[0]), sizeof(_array)/sizeof(_array[0])) Or something like that...