From owner-freebsd-java@FreeBSD.ORG Sun Sep 7 02:06:14 2014 Return-Path: Delivered-To: freebsd-java@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C9761245 for ; Sun, 7 Sep 2014 02:06:14 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AA2371FBF for ; Sun, 7 Sep 2014 02:06:14 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id s8726EdH009831 for ; Sun, 7 Sep 2014 02:06:14 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-java@FreeBSD.org Subject: [Bug 193246] Bug in IPv6 multicast join(), uncovered by Jenkins Date: Sun, 07 Sep 2014 02:06:14 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 10.0-RELEASE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: rodrigc@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-net@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Sep 2014 02:06:14 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193246 --- Comment #11 from Craig Rodrigues --- -------- Forwarded Message -------- Subject: Re: [Bug 193246] Bug in IPv6 multicast join(), uncovered by Jenkins Date: Fri, 05 Sep 2014 03:05:14 +0100 From: Bruce Simpson To: bugzilla-noreply@freebsd.org On 04/09/2014 19:16, bugzilla-noreply@freebsd.org wrote: > I think what this means is that in_mcast6.c is very much tied to doing MLDv6 > (or whatever the v6 equivalent of IGMP is), but for these groups, you need to > be somehow calling into in_mcast.c to do IGMP instead. However, I'm not sure > at what level in_mcast6.c needs to call into in_mcast.c myself. I do think > Bruce is your best bet for someone to ask. > Unfortunately I'm fully booked. But yes, that is a good summary. If Craig (or someone else) is willing to volunteer to support v4-mapped addresses: one approach would be to extend in6_mship{} to include them. Pushing state down to IGMP will need to be added as a special case. To keep it simple, assume that only the legacy any-source multicast (ASM) model will be supported, i.e. listeners will not specify source filters. Looking at the JDK source, it appears they used to handle the v4/v6 swizzle themselves because of limitations in Linux 2.4/2.6. In other words, we do not support RFC 3493 Sec 3.7 for multicast groups at the moment. A more appropriate errno value to return is EPROTONOOPT. [Interestingly, Sec 5.2 discusses IPv6 multicast options, but does not contain any reference to IPv4 at all.] There now follows a late-night writeup of the rationale behind this code -- and this is as concise as I can make it, I'm afraid. in[6]_mcast.c is split into a top half (i.e. per-socket state) and a bottom half (i.e. stack-wide state, and the IGMPv1/2/3 and MLDv1/2 wire protocols). IPv6 mcast options are processed separately from IPv4. Both implement a transaction scheme to protect global membership state (in the bottom half) from failures at the granularity of a single socket (or PCB) in the top half. Why all the complexity? Well, this is to support source-specific multicast (SSM, aka "inclusive mode"). To cut a long story short: as the size of an internetwork increases, it gets more difficult for routers to track the state of multicast listeners, unless they are aware of where the traffic originates from. The book "Interdomain Multicast Routing" by Brian M. Edwards discusses this in lurid detail. So, SSM was introduced to support inter-domain multicast. In this model, joining a multicast group is no longer a simple matter of registering for a channel -- you must also specify the sources you are interested in. However, the majority of multicast applications are built on the older model: i.e. they do not cross more than one IP network hop, and do not specify sources ("any-source multicast", aka ASM). The network stack must be able to cope with both of these uses. It does so by representing the legacy ASM scheme as "exclusive mode". The RFC 3678 APIs also have the advantage that the application can block unwanted senders, even if ASM is in use. [The main API it specifies, setsourcefilter(), does not explicitly mandate v4-mapped support.] So, in the bottom half of mcast, each group has a shared RB-tree of listener state. This is created from the set union of the filter state on each subscribed socket. If there are no filters for a particular group, i.e. all of the sockets/PCBs in the system are in "exclusive" mode and have no filters, then of course the RB-tree for that group will be empty. Otherwise, if there is a mix of "exclusive" and "inclusive" mode listeners, the tree will need to be recomputed. The shared tree is then used to fill out the IGMP/MLD messages sent to on-link routers to request group subscription. It is also used to filter input traffic from within the relevant transports (e.g. UDP, raw sockets). Previously, this filtering required that the network layer take a socket-layer lock. In closing: this isn't just a simple matter of adding a few defines. The v6 code will need to check that a v4-mapped group was passed, and make sure to perform the transaction pushdown to IGMP. -- You are receiving this mail because: You are on the CC list for the bug. From owner-freebsd-java@FreeBSD.ORG Sun Sep 7 10:06:45 2014 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DAF90467; Sun, 7 Sep 2014 10:06:45 +0000 (UTC) Received: from mail-gw5.york.ac.uk (mail-gw5.york.ac.uk [144.32.129.29]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 969CE1BC8; Sun, 7 Sep 2014 10:06:44 +0000 (UTC) Received: from ury.york.ac.uk ([144.32.64.162]:38295) by mail-gw5.york.ac.uk with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.76) (envelope-from ) id 1XQZHd-000625-Nj; Sun, 07 Sep 2014 11:01:21 +0100 Received: from csteach0.york.ac.uk ([144.32.196.9] helo=[127.0.0.1]) by ury.org.uk with esmtpsa (TLSv1:DHE-RSA-AES128-SHA:128) (Exim 4.84 (FreeBSD)) (envelope-from ) id 1XQZHZ-000NKj-JC; Sun, 07 Sep 2014 11:01:21 +0100 Message-ID: <540C2CEC.3020303@ury.york.ac.uk> Date: Sun, 07 Sep 2014 11:01:16 +0100 From: Anthony Williams Reply-To: anthony@ury.york.ac.uk User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Icedove/24.7.0 MIME-Version: 1.0 To: Craig Rodrigues References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Sender: anthony@ury.org.uk X-SA-Exim-Connect-IP: 144.32.196.9 X-SA-Exim-Mail-From: anthony@ury.org.uk X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on ury.york.ac.uk X-Spam-Level: X-Spam-Status: No, score=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS autolearn=no autolearn_force=no version=3.4.0 Subject: Re: Jenkins and PAM problem with JNA 4.1 X-SA-Exim-Version: 4.2 X-SA-Exim-Scanned: Yes (on ury.org.uk) Cc: "jenkins-admin@freebsd.org" , "freebsd-java@freebsd.org" X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Sep 2014 10:06:46 -0000 Hi Craig, Looks like you didn't include a link for your jenkins.war file, so I built my own using your branch of jenkins at https://github.com/rodrigc/jenkins/tree/JENKINS-24521-2 (built on Ubuntu 12.04 with Oracle/Sun Java 7). For my own .war, UNIX local account logins are working normally using FreeBSD 10.0-RELEASE, with nothing of note in the log file, so I'm not sure why we're getting differing results. I did remove my ~.m2 directory entirely to be sure that no local packages were being used. Thanks, Anthony On 06/09/14 23:19, Craig Rodrigues wrote: > Anthony, > > Thanks for submitting: > > https://github.com/jenkinsci/jna/pull/2 > > to fix the JNA library in Jenkins for FreeBSD. > I'm not sure if the Jenkins developers will accept it, but we'll see. > FreeBSD is low on their priority list. :( > > I submitted another patch to the Jenkins developers > to change Jenkins to use JNA 4.1, which has the FreeBSD fix you > mentioned. JNA 4.1 fixes things on other platforms like Linux on > ARM, so I thought that might get more interest from the Jenkins > developers: > > https://github.com/jenkinsci/jenkins/pull/1387 > > > I built my own jenkins.war file, which is available here: > > > > When I start Jenkins with it, everything starts up fine. When > I try to configure Jenkins to use Unix passwords, > none of my local Unix passwords work. However, this time, I do *not* get > any errors in /var/log/jenkins.log, like I reported > in: > > https://issues.jenkins-ci.org/browse/JENKINS-21507 > > Do you have any idea what the problem might be? > > If you or any other FreeBSD developer with Java expertise with > JNA and Maven files could help, I would appreciate it! > > -- > Craig From owner-freebsd-java@FreeBSD.ORG Sun Sep 7 19:59:47 2014 Return-Path: Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 24ED3798; Sun, 7 Sep 2014 19:59:47 +0000 (UTC) Received: from mail-lb0-x230.google.com (mail-lb0-x230.google.com [IPv6:2a00:1450:4010:c04::230]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5DDAD13B2; Sun, 7 Sep 2014 19:59:46 +0000 (UTC) Received: by mail-lb0-f176.google.com with SMTP id z11so2496133lbi.21 for ; Sun, 07 Sep 2014 12:59:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=42wisj6slEpwbOa8TDkKiMfeon7UAKyNraHY6as8Ik4=; b=Fq9xFig9UTYzi1tKtJ4ce14h2GWTTpJfnrKtctcdM+zfxHWuIkKBAADz3Kvoh2MNUV MHBpm+G0cwu86RjZSPaVuZhc9v1RVyM89EuJkuj4QDCin5dT/aTkb/KrYDQZo+BCFUMZ hee+niO46cZla0Pz7eYetUK2aiqSTj82EBt7xhbFGDxtVRGk2/A8L6hcldfbQw1/dKYS 4wDUFX76RG48NmNgyqNLGXszcztZwdzq04C5LWHGtgFWgRwoStaqTrVtGCSeMpu8JWBB Tv/upRpzH6HnYwS1e/ihdB8wgLPoq47o6gSEmDDV8rACvEXOzprVh3xikpNRUIHwJuP7 EuVg== MIME-Version: 1.0 X-Received: by 10.112.76.230 with SMTP id n6mr23761939lbw.8.1410119984287; Sun, 07 Sep 2014 12:59:44 -0700 (PDT) Sender: crodr001@gmail.com Received: by 10.112.22.72 with HTTP; Sun, 7 Sep 2014 12:59:44 -0700 (PDT) In-Reply-To: <540C2CEC.3020303@ury.york.ac.uk> References: <540C2CEC.3020303@ury.york.ac.uk> Date: Sun, 7 Sep 2014 12:59:44 -0700 X-Google-Sender-Auth: v5hkPw5O4N83niN4tfQSvpitI9s Message-ID: Subject: Re: Jenkins and PAM problem with JNA 4.1 From: Craig Rodrigues To: Anthony Williams Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 Cc: "jenkins-admin@freebsd.org" , "freebsd-java@freebsd.org" X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Sep 2014 19:59:47 -0000 On Sun, Sep 7, 2014 at 3:01 AM, Anthony Williams wrote: > Hi Craig, > > Looks like you didn't include a link for your jenkins.war file, so I built > my own using your branch of jenkins at https://github.com/rodrigc/ > jenkins/tree/JENKINS-24521-2 (built on Ubuntu 12.04 with Oracle/Sun Java > 7). For my own .war, UNIX local account logins are working normally using > FreeBSD 10.0-RELEASE, with nothing of note in the log file, so I'm not sure > why we're getting differing results. I did remove my ~.m2 directory > entirely to be sure that no local packages were being used. > > Thanks, > Anthony Oh sorry, my war file is at: https://people.freebsd.org/~rodrigc/jenkins/JENKINS-24251/ Can you try: "pkg install devel/maven3" and then build my branch under FreeBSD and see if you can duplicate the problem? One a related note, I tried to test just the PAM module in Jenkins. I did the following: (1) git clone https://github.com/kohsuke/libpam4j (2) cd libpam4j (3) edit pom.xml, change net.java.dev.jna to 4.1.0 (4) mvn install (5) mvn -Dtest=InteractiveTester -Duser.name=rodrigc -Dpassword=myunixpassword test At this point, I get: ------------------------------------------------------- T E S T S ------------------------------------------------------- Running org.jvnet.libpam.InteractiveTester [rodrigc, wheel, operator] Tests run: 5, Failures: 0, Errors: 3, Skipped: 0, Time elapsed: 0.326 sec <<< FAILURE! Results : Tests in error: testOne(org.jvnet.libpam.InteractiveTester): pam_authenticate failed : authentication error testPositiveCase(org.jvnet.libpam.InteractiveTester): pam_authenticate failed : authentication error testConcurrent(org.jvnet.libpam.InteractiveTester): org.jvnet.libpam.PAMException: pam_authenticate failed : authentication error Tests run: 5, Failures: 0, Errors: 3, Skipped: 0 Any idea what I am doing wrong? Thanks. -- Craig From owner-freebsd-java@FreeBSD.ORG Tue Sep 9 17:12:16 2014 Return-Path: Delivered-To: java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3AEE9C1D for ; Tue, 9 Sep 2014 17:12:16 +0000 (UTC) Received: from omr-d10.mx.aol.com (omr-d10.mx.aol.com [205.188.108.134]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0C60AA19 for ; Tue, 9 Sep 2014 17:12:15 +0000 (UTC) Received: from mtaout-aaf02.mx.aol.com (mtaout-aaf02.mx.aol.com [172.26.127.98]) by omr-d10.mx.aol.com (Outbound Mail Relay) with ESMTP id 3EFD270049907 for ; Tue, 9 Sep 2014 13:06:45 -0400 (EDT) Received: from OWNER-HP (unknown [41.138.171.44]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mtaout-aaf02.mx.aol.com (MUA/Third Party Client Interface) with ESMTPSA id BE8A138000098 for ; Tue, 9 Sep 2014 13:06:42 -0400 (EDT) From: "FARROUK AHMED" Subject: Urgent respond Needed!! To: java@freebsd.org MIME-Version: 1.0 Reply-To: farroukahmed00000001@gmail.com Date: Tue, 9 Sep 2014 18:06:34 +0100 Message-ID: <79163439028312210@smtp.aol.com> x-aol-global-disposition: G DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=mx.aol.com; s=20140625; t=1410282405; bh=dyvyGpWpJbMraU99F7TYChjlbnxeRt8vD9ehtAReEX8=; h=From:To:Subject:Message-ID:Date:MIME-Version:Content-Type; b=vkhHlahkumvPwvK6IHzXTlfT5Jdsqn3GYj9POmooDEYW3D3TT/OZeyWfrj78PD0FW 9YR8dmhUClXva80xtNbV9xBwEYAZi+psIeEZuLgpqRrtIeZOPgmbdOykYA/Bz0XKS8 DM24Mr1Na9dy3dansnoLgPC1LUbQb5SXDRJoKq/k= x-aol-sid: 3039ac1a7f62540f33a21341 X-AOL-IP: 41.138.171.44 Content-Type: text/plain ; charset="ISO-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Sep 2014 17:12:16 -0000 Did you authorise Mr. John Okafor to claim your winning fund on your b= ehalf? Please get back to me as soon as possible for more information.= Thanks for your understanding. Regards, Mr. Farrouk Ahmed From owner-freebsd-java@FreeBSD.ORG Fri Sep 12 05:27:21 2014 Return-Path: Delivered-To: java@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3E81FA73 for ; Fri, 12 Sep 2014 05:27:21 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 252119E9 for ; Fri, 12 Sep 2014 05:27:21 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id s8C5RLg7091176 for ; Fri, 12 Sep 2014 05:27:21 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: java@FreeBSD.org Subject: [Bug 192305] java/jamvm: 1.5.4 -> 2.0.0 Date: Fri, 12 Sep 2014 05:27:21 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: pi@FreeBSD.org X-Bugzilla-Status: In Discussion X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: java@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Sep 2014 05:27:21 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192305 --- Comment #3 from Kurt Jaeger --- Building on i386 leads to: [...] libtool: link: cc -I/usr/local/lib/libffi-3.0.13/include -I/usr/local/lib/libffi-3.0.13/include -O2 -pipe -fno-strict-aliasing -o jamvm jam.o -L/usr/local/lib ./.libs/libcore.a -lffi -lz -lm -lrt -lthr ./.libs/libcore.a(dll.o): In function `setJNIMethod': dll.c:(.text+0xe73): undefined reference to `convertSig2Simple' dll.c:(.text+0xe84): undefined reference to `jni_static_stubs' dll.c:(.text+0xe8d): undefined reference to `jni_static_stubs' dll.c:(.text+0xebd): undefined reference to `jni_stubs' dll.c:(.text+0xec6): undefined reference to `jni_stubs' cc: error: linker command failed with exit code 1 (use -v to see invocation) convertSig2Simple is found in src/stubs.c, but not used because USE_MD_STUBS is defined. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-java@FreeBSD.ORG Fri Sep 12 06:35:44 2014 Return-Path: Delivered-To: java@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1B1C39CA for ; Fri, 12 Sep 2014 06:35:44 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 022A8FB1 for ; Fri, 12 Sep 2014 06:35:44 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id s8C6ZhZK008176 for ; Fri, 12 Sep 2014 06:35:43 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: java@FreeBSD.org Subject: [Bug 193475] openjdk7 jinfo and jmap do not work Date: Fri, 12 Sep 2014 06:35:42 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: marino@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: java@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Sep 2014 06:35:44 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193475 John Marino changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Needs Triage |Open Assignee|freebsd-ports-bugs@FreeBSD. |java@FreeBSD.org |org | --- Comment #1 from John Marino --- notify maintainer -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-java@FreeBSD.ORG Fri Sep 12 15:58:05 2014 Return-Path: Delivered-To: java@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0982588E for ; Fri, 12 Sep 2014 15:58:05 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E50781C1 for ; Fri, 12 Sep 2014 15:58:04 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id s8CFw4nm046916 for ; Fri, 12 Sep 2014 15:58:04 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: java@FreeBSD.org Subject: [Bug 193475] openjdk7 jinfo and jmap do not work Date: Fri, 12 Sep 2014 15:58:04 +0000 X-Bugzilla-Reason: CC AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: jkim@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: glewis@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Sep 2014 15:58:05 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193475 Jung-uk Kim changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |java@FreeBSD.org Assignee|java@FreeBSD.org |glewis@FreeBSD.org --- Comment #2 from Jung-uk Kim --- Assign to the actual maintainer. Add java@FreeBSD.org to CC list. -- You are receiving this mail because: You are on the CC list for the bug. You are the assignee for the bug. From owner-freebsd-java@FreeBSD.ORG Fri Sep 12 18:16:40 2014 Return-Path: Delivered-To: java@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F0790AD7 for ; Fri, 12 Sep 2014 18:16:40 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D837462F for ; Fri, 12 Sep 2014 18:16:40 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id s8CIGe54056248 for ; Fri, 12 Sep 2014 18:16:40 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: java@FreeBSD.org Subject: [Bug 193475] openjdk7 jinfo and jmap do not work Date: Fri, 12 Sep 2014 18:16:39 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: dms@samersoff.net X-Bugzilla-Status: Open X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: glewis@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Sep 2014 18:16:41 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193475 Dmitry Samersoff changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dms@samersoff.net --- Comment #3 from Dmitry Samersoff --- Both jmap and jinfo uses serviceability agent, see hotspot/agent for the sources -- You are receiving this mail because: You are on the CC list for the bug. From owner-freebsd-java@FreeBSD.ORG Fri Sep 12 18:28:44 2014 Return-Path: Delivered-To: java@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BE2F3338 for ; Fri, 12 Sep 2014 18:28:44 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A61DB7AF for ; Fri, 12 Sep 2014 18:28:44 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id s8CISijC004484 for ; Fri, 12 Sep 2014 18:28:44 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: java@FreeBSD.org Subject: [Bug 193475] openjdk7 jinfo and jmap do not work Date: Fri, 12 Sep 2014 18:28:44 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: jkim@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: glewis@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Sep 2014 18:28:44 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193475 Jung-uk Kim changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jkim@FreeBSD.org --- Comment #4 from Jung-uk Kim --- (In reply to Dmitry Samersoff from comment #3) > Both jmap and jinfo uses serviceability agent, see hotspot/agent for the > sources Yes, I fixed the problems for java/openjdk6 long ago. http://svnweb.freebsd.org/changeset/ports/268830 I ported the fixes to java/openjdk8, too. Unfortunately, I never found time to fix them for java/openjdk7. -- You are receiving this mail because: You are on the CC list for the bug. From owner-freebsd-java@FreeBSD.ORG Fri Sep 12 18:34:25 2014 Return-Path: Delivered-To: java@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8C259612 for ; Fri, 12 Sep 2014 18:34:25 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 73AA386A for ; Fri, 12 Sep 2014 18:34:25 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id s8CIYPu7002246 for ; Fri, 12 Sep 2014 18:34:25 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: java@FreeBSD.org Subject: [Bug 193475] openjdk7 jinfo and jmap do not work Date: Fri, 12 Sep 2014 18:34:25 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: jkim@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: glewis@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Sep 2014 18:34:25 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=193475 --- Comment #5 from Jung-uk Kim --- (In reply to Jung-uk Kim from comment #4) > I ported the fixes to java/openjdk8, too. Actually, now I am not sure about this any more. I'll test it later. -- You are receiving this mail because: You are on the CC list for the bug.