From owner-freebsd-current@freebsd.org Wed Feb 28 19:46:00 2018 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B9134F406F8 for ; Wed, 28 Feb 2018 19:46:00 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from kib.kiev.ua (kib.kiev.ua [IPv6:2001:470:d5e7:1::1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3BAB88A031; Wed, 28 Feb 2018 19:46:00 +0000 (UTC) (envelope-from kostikbel@gmail.com) Received: from tom.home (kib@localhost [127.0.0.1]) by kib.kiev.ua (8.15.2/8.15.2) with ESMTPS id w1SJjlgJ070573 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Wed, 28 Feb 2018 21:45:50 +0200 (EET) (envelope-from kostikbel@gmail.com) DKIM-Filter: OpenDKIM Filter v2.10.3 kib.kiev.ua w1SJjlgJ070573 Received: (from kostik@localhost) by tom.home (8.15.2/8.15.2/Submit) id w1SJjl7H070572; Wed, 28 Feb 2018 21:45:47 +0200 (EET) (envelope-from kostikbel@gmail.com) X-Authentication-Warning: tom.home: kostik set sender to kostikbel@gmail.com using -f Date: Wed, 28 Feb 2018 21:45:47 +0200 From: Konstantin Belousov To: John Baldwin Cc: freebsd-current@freebsd.org, cem@freebsd.org, Ronald Klop Subject: Re: pkg does not recognize correct kernel version Message-ID: <20180228194547.GA7123@kib.kiev.ua> References: <20287587.l4BUZnE1AB@ralph.baldwin.cx> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20287587.l4BUZnE1AB@ralph.baldwin.cx> User-Agent: Mutt/1.9.3 (2018-01-21) X-Spam-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,BAYES_00, DKIM_ADSP_CUSTOM_MED,FREEMAIL_FROM,NML_ADSP_CUSTOM_MED autolearn=no autolearn_force=no version=3.4.1 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on tom.home X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Feb 2018 19:46:01 -0000 On Wed, Feb 28, 2018 at 10:57:53AM -0800, John Baldwin wrote: > On Tuesday, February 20, 2018 10:19:02 AM Conrad Meyer wrote: > > On Mon, Feb 19, 2018 at 2:38 PM, Ronald Klop wrote: > > > On Mon, 19 Feb 2018 22:05:51 +0100, Konstantin Belousov > > > wrote: > > > > > >> Look at the man page. pkg reads version from the /bin/sh ELF FreeBSD > > > > > > > > > Which man page? I can't find it in pkg help update or pkg help upgrade or > > > man pkg. > > > > I had to dig for quite a while to find a reference (pkg.conf(5)): > > > > ABI: string The ABI of the package you want to install. Default: > > derived from the ABI of the /bin/sh binary. > > > > >> version note: > > >> orion% file /bin/ls > > >> /bin/ls: ELF 64-bit LSB executable, x86-64, version 1 (FreeBSD), > > >> dynamically linked, interpreter /libexec/ld-elf.so.1, for FreeBSD 11.1 > > >> (1101506), FreeBSD-style, stripped > > >> > > >> Update world past the __FreeBSD_version which is reported for the > > >> repository. > > > > > > > > > Does this mean I always have to do a *clean* buildworld after every version > > > bump? This takes ages. > > > > You could also do a -DNO_CLEAN buildworld. > > > > Or you can continue to override with "-o OSVERSION=foo", although that > > may eventually result in broken packages. In general the OSVERSION is > > bumped conservatively (more often than will actually result in > > breakage), so you can get away with the easy workaround for a while > > between buildworlds. > > NO_CLEAN=yes doesn't work. A clean buildworld is required. The reason is that > the __FreeBSD_version embedded in binaries is stored in /usr/lib/crt*.o, but > that the dependency rules in lib/csu/Makefile do not rebuild these .o files > everytime changes (so a NO_CLEAN=yes buildworld won't rebuild them > leaving them with a stale version). Furthermore, when binaries and shared > libraries are built, our Makefiles do not specify that the relevant > /usr/lib/crt*.o files are dependencies, so even if we fixed the missing > dependency, no binaries would relink to pick up the updated > __FreeBSD_version file unless some other input to the binary changed. This > one could perhaps be mostly mitigated by forcing libc to depend on the > relevant crt*.o files explicitly (or even having it depend on > to force relinking of everything when changes). libc already depends on sys/param.h. I think it would be enough to specify that crt1.o depends on sys/param.h as well. Although it is also strange, because e.g. for amd64 the dep thread is csu/amd64/crt1.c->csu/common/crtbrand.c->sys/param.h, which should be detected by the include file calculation. > > This matters for more than just pkg as the kernel also looks at the embedded > __FreeBSD_version in binaries to make decisions about compat shims to enable > (grep for P_OSREL in sys/). > > -- > John Baldwin > _______________________________________________ > freebsd-current@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org"