From owner-freebsd-threads@FreeBSD.ORG Mon Mar 9 06:00:08 2009 Return-Path: Delivered-To: threads@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0C4C01065672; Mon, 9 Mar 2009 06:00:08 +0000 (UTC) (envelope-from davidxu@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D189E8FC17; Mon, 9 Mar 2009 06:00:07 +0000 (UTC) (envelope-from davidxu@freebsd.org) Received: from apple.my.domain (root@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n29606Zg025015; Mon, 9 Mar 2009 06:00:07 GMT (envelope-from davidxu@freebsd.org) Message-ID: <49B4B0EF.5080507@freebsd.org> Date: Mon, 09 Mar 2009 14:02:23 +0800 From: David Xu User-Agent: Thunderbird 2.0.0.9 (X11/20080612) MIME-Version: 1.0 To: Daniel Eischen References: <49B480F7.8040800@freebsd.org> <49B4A571.7000302@freebsd.org> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: threads@freebsd.org, Pawel Worach Subject: Re: libthr does not obey WITHOUT_SYSCALL_COMPAT X-BeenThere: freebsd-threads@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Threading on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Mar 2009 06:00:08 -0000 Daniel Eischen wrote: > On Mon, 9 Mar 2009, David Xu wrote: > >> Daniel Eischen wrote: >>> On Mon, 9 Mar 2009, David Xu wrote: >>> >>>> Pawel Worach wrote: >>>>> Hi, >>>>> >>>>> If libc is built using WITHOUT_SYSCALL_COMPAT applications linked with >>>>> libthr end up having unresolved symbols since libthr references >>>>> __fcntl_compat unconditionally. >>>>> Here is a patch to make libthr also obey WITHOUT_SYSCALL_COMPAT >>>>> http://www.vlakno.cz/~pwo/libthr.diff >>>>> >>>>> Regards >>>> >>>> Committed! >>> >>> I never got around to replying to this... >>> >>> I don't quite understand why __fcntl_compat is there. We have >>> F_GETFD, F_SETFD, F_DUPFD, F_DUP2FD, F_GETFL, F_SETFL, F_GETOWN, >>> and F_SETOWN according to fcntl(2). But thr_syscalls.c only >>> handles F_DUPFD, F_SETFD, F_SETFL, F_GETFD, and F_GETFL, leaving >>> F_DUP2FD, F_GETOWN, and F_SETOWN to be handled by the default >>> case. And the default case does nothing now if WITHOUT_SYSCALL_COMPAT >>> is defined. So how do F_DUP2FD, F_GETOWN, and F_SETOWN get >>> handled? >>> >>> Do we really need to call __sys_fcntl_compat() from libthr? >>> When did the ABI change, before or after libc.so.7? >>> >> >> I don't know when it appeared. Would this patch eliminate the shit ? > > I think so. But I think for future ABI changes to cancellation > points, wouldn't we need syscall wrappers in libc? Reason, libc > and libthr are now symbol-versioned, so there will no longer be > library bumps for ABI changes. But if a syscall is a cancellation > point and libthr has to play games with it, like fcntl, I think > there should be a wrapper around it in libc. If the ABI changes, > then both libc and libthr would need to provide a compat version > for it. I think. ;-) > Yes, it is better to use versioning instead, I don't know why fcntl_compat is there without using this feature.