From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/4682 Path: news.gmane.org!not-for-mail From: Andy Lutomirski Newsgroups: gmane.linux.lib.musl.general Subject: Re: vDSO parsing bug? Date: Thu, 20 Mar 2014 13:02:22 -0700 Message-ID: <532B494E.9080808@mit.edu> References: <20140320170245.GC26358@brightrain.aerifal.cx> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1395345749 27630 80.91.229.3 (20 Mar 2014 20:02:29 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 20 Mar 2014 20:02:29 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-4686-gllmg-musl=m.gmane.org@lists.openwall.com Thu Mar 20 21:02:39 2014 Return-path: Envelope-to: gllmg-musl@plane.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by plane.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1WQjAk-0002up-JV for gllmg-musl@plane.gmane.org; Thu, 20 Mar 2014 21:02:38 +0100 Original-Received: (qmail 20141 invoked by uid 550); 20 Mar 2014 20:02:37 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Original-Received: (qmail 20133 invoked from network); 20 Mar 2014 20:02:36 -0000 X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:user-agent:mime-version:to :subject:references:in-reply-to:content-type :content-transfer-encoding; bh=dgyjClgrID2ltfqVEtU4uSlbBS2j6lCF8vcTA4doK4k=; b=Xm/6kcspRGnDEzQCxfR3MqY8Th5HkMcdWx8FUQgdVzvZxlb5Tbndpj3h6qHV/JBJQY ZspuKlrUBCiVKiGmTJ31FW1STBfnvVWM9s8ODH782XK/7FOTGlYDaCnHqGcsIGVbHy/c jv6+If+XXg+UxRZKPiwZNPS1Sd/BdaDJJwgwNcffRkQ4eMcA5UqnwzA36GZdUhFSy1Tc P53fXFBzXVfav4fYinhln/PEjF646MSfK/kkZ1A36iR7US3roJRDBi3zm/stGCPnbHWz 19kGvfDgIA+DhLtm7GAd2iW0B4oj1bghtMtQMHCnhbL604OErDqIz6/uo0ZjWcs7GTFv Aa7g== X-Gm-Message-State: ALoCoQk4C+UttLTwsCzLy+Rwf5Cq0p4/NN2zGSB3ccm2Bu9RgREAbzqfrCKn4cXvXgamt00/TeS5 X-Received: by 10.66.65.134 with SMTP id x6mr48620272pas.12.1395345744883; Thu, 20 Mar 2014 13:02:24 -0700 (PDT) User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 In-Reply-To: <20140320170245.GC26358@brightrain.aerifal.cx> Xref: news.gmane.org gmane.linux.lib.musl.general:4682 Archived-At: On 03/20/2014 10:02 AM, Rich Felker wrote: > On Thu, Mar 20, 2014 at 08:23:24AM -0700, Andy Lutomirski wrote: >> Hi- >> >> It looks like musl can't handle vDSO images with more than one PT_LOAD >> segment. Both glibc and the reference code in >> Documentation/vDSO/parse_vdso.c can handle this. > > I'm not clear on what you think is wrong. The computation of > vdso->base? That's all musl uses the PT_LOAD header for. Hmm. I guess if all the PT_LOAD segments have the same offset-vaddr, then all is well. I'm not sure what happens if there's a filesz=0 PT_LOAD segment, though. > >> It's not currently an issue, since I don't think that any >> architectures provide such a vDSO, but they might want to in the >> future. >> >> Also, using the name "linux-gate.so.1" is sort of wrong on x86_64, >> where the convention is "linux-vdso.so.1". Wouldn't it be better to >> just read the name out of the SONAME header? > > Yes, that sounds like a better solution. I just didn't realize it was > an option. > > BTW the vdso usage is currently broken as far as I can tell. Due to > the way musl binds function references at link time, the weak-alias > setup that's intended to allow the vdso functions to interpose does > not actually work. > > I'm thinking it might be better to avoid accessing the vdso through > the dynamic linker like this and simply parsing it directly in code > that can be used in static-linked programs too. Then it's not clear to > me whether the dynamic linker would even need to report the vdso in > the link map, but maybe it still should to assist gdb...? > > I'd welcome further input on this topic. It's almost certainly a bad idea to expose vdso symbols as normal symbols (in the RTLD_GLOBAL sense). For example, the 64-bit vdso defines gettimeofday, and that version of gettimeofday doesn't set errno. That being said, it is useful to be able to fish out symbols with dlsym. And gdb may care. But statically-linked programs should be able to use the vdso, too. Go can do this. --Andy