Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754726AbcLOCGq (ORCPT ); Wed, 14 Dec 2016 21:06:46 -0500 Received: from mail-pf0-f194.google.com ([209.85.192.194]:36099 "EHLO mail-pf0-f194.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752366AbcLOCGn (ORCPT ); Wed, 14 Dec 2016 21:06:43 -0500 Date: Thu, 15 Dec 2016 12:06:15 +1000 From: Nicholas Piggin To: Hannes Frederic Sowa Cc: Greg Kroah-Hartman , Stanislav Kozina , Don Zickus , Linus Torvalds , Ben Hutchings , Michal Marek , Adam Borowski , Linux Kbuild mailing list , Debian kernel maintainers , "linux-arch@vger.kernel.org" , Arnd Bergmann , Ingo Molnar , Linux Kernel Mailing List Subject: Re: [PATCH] x86/kbuild: enable modversions for symbols exported from asm Message-ID: <20161215120615.34fd0f22@roar.ozlabs.ibm.com> In-Reply-To: <27aafb3b-adb2-47b8-7964-6e36fcb57676@redhat.com> References: <20161201051852.28dc335f@roar.ozlabs.ibm.com> <20161201041325.GX35881@redhat.com> <20161201153215.43b6cec7@roar.ozlabs.ibm.com> <20161201152039.GB35881@redhat.com> <20161209135041.5ff12770@roar.ozlabs.ibm.com> <0937c184-1946-c494-56b6-c38fd0b632c2@redhat.com> <20161209181459.1f0a4fed@roar.ozlabs.ibm.com> <249321c0-bcb1-f9d8-50f4-c083b656d02e@redhat.com> <20161210015653.5b0dc872@roar.ozlabs.ibm.com> <20161209160337.GA3061@kroah.com> <27aafb3b-adb2-47b8-7964-6e36fcb57676@redhat.com> Organization: IBM X-Mailer: Claws Mail 3.14.1 (GTK+ 2.24.31; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3209 Lines: 62 On Wed, 14 Dec 2016 15:04:36 +0100 Hannes Frederic Sowa wrote: > On 09.12.2016 17:03, Greg Kroah-Hartman wrote: > > On Sat, Dec 10, 2016 at 01:56:53AM +1000, Nicholas Piggin wrote: > >> On Fri, 9 Dec 2016 15:36:04 +0100 > >> Stanislav Kozina wrote: > >> > >>>>>>> The question is how to provide a similar guarantee if a different way? > >>>>>> As a tool to aid distro reviewers, modversions has some value, but the > >>>>>> debug info parsing tools that have been mentioned in this thread seem > >>>>>> superior (not that I've tested them). > >>>>> On the other hand the big advantage of modversions is that it also > >>>>> verifies the checksum during runtime (module loading). In other words, I > >>>>> believe that any other solution should still generate some form of > >>>>> checksum/watermark which can be easily checked for compatibility on > >>>>> module load. > >>>>> It should not be hard to add to the DWARF based tools though. We'd just > >>>>> parse DWARF data instead of the C code. > >>>> A runtime check is still done, with per-module vermagic which distros > >>>> can change when they bump the ABI version. Is it really necessary to > >>>> have more than that (i.e., per-symbol versioning)? > >>> > >>> From my point of view, it is. We need to allow changing ABI for some > >>> modules while maintaining it for others. > >>> In fact I think that there should be version not only for every exported > >>> symbol (in the EXPORT_SYMBOL() sense), but also for every public type > >>> (in the sense of eg. structure defined in the public header file). > >> > >> Well the distro can just append _v2, _v3 to the name of the function > >> or type if it has to break compat for some reason. Would that be enough? > > > > There are other ways that distros can work around when upstream "breaks" > > the ABI, sometimes they can rename functions, and others they can > > "preload" structures with padding in anticipation for when/if fields get > > added to them. But that's all up to the distros, no need for us to > > worry about that at all :) > > The _v2 and _v3 functions are probably the ones that also get used by > future backports in the distro kernel itself and are probably the reason > for the ABI change in the first place. Thus going down this route will > basically require distros to touch every future backport patch and will > in general generate a big mess internally. What kind of big mess? You have to check the logic of each backport even if it does apply cleanly, so the added overhead of the name change should be relatively tiny, no? > > I think it is important to keep versioning information outside of the > source code. Some kind of modversions will still be required, but > distros should be able to decide if they put in some kind of checksum or > a string, what suites them most. The module crc symbols are just an integer that requires a match, so it could easily be populated by a list that the distro keeps, rather than by genksyms. Most of the complexity is on the build side, so that would still be an improvement for the kernel. So we *could* do this if the distros need it. Thanks, Nick