From owner-freebsd-stable@FreeBSD.ORG Thu Sep 29 23:29:23 2011 Return-Path: Delivered-To: freebsd-stable@FreeBSD.org Received: from [127.0.0.1] (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by hub.freebsd.org (Postfix) with ESMTP id F18ED106566B; Thu, 29 Sep 2011 23:29:22 +0000 (UTC) (envelope-from jkim@FreeBSD.org) From: Jung-uk Kim To: freebsd-stable@FreeBSD.org Date: Thu, 29 Sep 2011 19:29:10 -0400 User-Agent: KMail/1.6.2 References: <289481317219917@web124.yandex.ru> <20110929195001.GF2677@vim.isi.edu> <20110929220659.00002e73@unknown> In-Reply-To: <20110929220659.00002e73@unknown> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <201109291929.12766.jkim@FreeBSD.org> Cc: Alexander Leidinger , Ted Faber Subject: Re: linux-f10-flashplugin X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Sep 2011 23:29:23 -0000 On Thursday 29 September 2011 04:06 pm, Alexander Leidinger wrote: > On Thu, 29 Sep 2011 12:50:01 -0700 Ted Faber wrote: > > On Thu, Sep 29, 2011 at 02:41:39PM -0400, Michael Butler wrote: > > > On 09/29/11 13:57, Norbert Augenstein wrote: > > > > On Wed, Sep 28, 2011 at 10:08:25PM +0400, S.N.Grigoriev wrote: > > > >> 28.09.2011, 21:10, "Conrad J. Sabatier": > > > >>> On Wed, 28 Sep 2011 11:50:08 -0500 > > > >>> "Conrad J. Sabatier" wrote: > > > > I see that as well as: > > > > (process:5430): Gtk-WARNING **: Locale not supported by C > > library. Using the fallback 'C' locale. > > > > (npviewer.bin:5430): GLib-WARNING **: getpwuid_r(): failed due > > to unknown user id (2139) > > > > (npviewer.bin:5430): Gtk-WARNING **: cannot open display: :0.0 > > *** NSPlugin Wrapper *** ERROR: failed to initialize > > plugin-side RPC client connection > > NOTE: child process received `Goodbye', closing down > > > > > > I haven't explored the getpwuid_r thing. > > Can you all please confirm that you run the most recent FreeBSD > version (of your branch), as in "with the recent security fixes"? > There are reports that one of them may have caused what you see. Linux does not have sun_len field for Unix domain socket and it does not care when sa_family is AF_UNIX. One example from nspluginwrapper itself: nspluginwrapper-1.4.4/src/rpc.c: 709: #ifdef HAVE_SOCKADDR_UN_SUN_LEN 710: connection->socket_addr.sun_len = connection->socket_addr_len; 711: #endif We can hack up nspluginwrapper and rebuild Linux binary but Linuxulator has to correct it now, I guess. Jung-uk Kim