You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@felix.apache.org by "Caspar MacRae (Created) (JIRA)" <ji...@apache.org> on 2011/12/01 17:30:40 UTC

[jira] [Created] (FELIX-3250) Bouncy Castle JCE with Felix framework 3.0.8/3.0.9

Bouncy Castle JCE with Felix framework 3.0.8/3.0.9
--------------------------------------------------

                 Key: FELIX-3250
                 URL: https://issues.apache.org/jira/browse/FELIX-3250
             Project: Felix
          Issue Type: Bug
          Components: Framework
    Affects Versions: framework-3.0.8, framework-3.0.1
         Environment: Linux, sun jdk 1.6 (20.1-b02), Karaf 2.20 - 2.2.4
            Reporter: Caspar MacRae


Apologies for only providing information in the context of Karaf, but I don't have time to do a standalone testcase.



I've an issue with Bouncy Castle JCE running with Felix (I found this while trying to extend our custom Karaf distro, it seems to be a problem with Karaf 2.2.0 (Felix 3.0.8) through to 2.2.4 (Felix 3.0.9) but doesn't happen when I use Equinox.


Could not create framework: java.lang.ArrayIndexOutOfBoundsException: -1
java.lang.ArrayIndexOutOfBoundsException: -1
    at java.util.ArrayList.get(ArrayList.java:324)
    at org.apache.felix.framework.BundleImpl.getCurrentModule(BundleImpl.java:1050)
    at org.apache.felix.framework.BundleImpl.getSymbolicName(BundleImpl.java:859)
    at org.apache.felix.framework.Felix.toString(Felix.java:1019)
    at org.apache.felix.framework.Logger.doLog(Logger.java:128)
    at org.apache.felix.framework.Logger._log(Logger.java:181)
    at org.apache.felix.framework.Logger.log(Logger.java:114)
    at org.apache.felix.framework.ExtensionManager.<init>(ExtensionManager.java:201)
    at org.apache.felix.framework.Felix.<init>(Felix.java:374)
    at org.apache.felix.framework.FrameworkFactory.newFramework(FrameworkFactory.java:28)
    at org.apache.karaf.main.Main.launch(Main.java:266)
    at org.apache.karaf.main.Main.main(Main.java:427)


Steps to reproduce:

wget http://www.apache.org/dyn/closer.cgi/karaf/2.2.4/apache-karaf-2.2.4.tar.gz

tar -xvzf  apache-karaf-2.2.4.tar.gz

cd apache-karaf-2.2.4/

# Assuming you've got bcprov-jdk16-1.46.jar in your maven repo

cp ~/.m2/repository/org/bouncycastle/bcprov-jdk16/1.46/bcprov-jdk16-1.46.jar ./lib/ext/

nano etc/custom.properties    # Add the following:

org.osgi.framework.system.packages.extra =  \
   org.bouncycastle.math.ec;version=1.46; \
   org.bouncycastle.jce.provider;version=1.46;
org.apache.felix.karaf.security.providers = org.bouncycastle.jce.provider.BouncyCastleProvider
org.osgi.framework.bootdelegation = org.bouncycastle.*;

./bin/karaf
# It exits immediately with the stacktrace above

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Closed] (FELIX-3250) Bouncy Castle JCE with Felix framework 3.0.8/3.0.9

Posted by "Karl Pauls (Closed) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/FELIX-3250?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Karl Pauls closed FELIX-3250.
-----------------------------

    Resolution: Invalid
      Assignee: Karl Pauls

Closing as it was a user error.
                
> Bouncy Castle JCE with Felix framework 3.0.8/3.0.9
> --------------------------------------------------
>
>                 Key: FELIX-3250
>                 URL: https://issues.apache.org/jira/browse/FELIX-3250
>             Project: Felix
>          Issue Type: Bug
>          Components: Framework
>    Affects Versions: framework-3.0.1, framework-3.0.8
>         Environment: Linux, sun jdk 1.6 (20.1-b02), Karaf 2.20 - 2.2.4
>            Reporter: Caspar MacRae
>            Assignee: Karl Pauls
>
> Apologies for only providing information in the context of Karaf, but I don't have time to do a standalone testcase.
> I've an issue with Bouncy Castle JCE running with Felix (I found this while trying to extend our custom Karaf distro, it seems to be a problem with Karaf 2.2.0 (Felix 3.0.8) through to 2.2.4 (Felix 3.0.9) but doesn't happen when I use Equinox.
> Could not create framework: java.lang.ArrayIndexOutOfBoundsException: -1
> java.lang.ArrayIndexOutOfBoundsException: -1
>     at java.util.ArrayList.get(ArrayList.java:324)
>     at org.apache.felix.framework.BundleImpl.getCurrentModule(BundleImpl.java:1050)
>     at org.apache.felix.framework.BundleImpl.getSymbolicName(BundleImpl.java:859)
>     at org.apache.felix.framework.Felix.toString(Felix.java:1019)
>     at org.apache.felix.framework.Logger.doLog(Logger.java:128)
>     at org.apache.felix.framework.Logger._log(Logger.java:181)
>     at org.apache.felix.framework.Logger.log(Logger.java:114)
>     at org.apache.felix.framework.ExtensionManager.<init>(ExtensionManager.java:201)
>     at org.apache.felix.framework.Felix.<init>(Felix.java:374)
>     at org.apache.felix.framework.FrameworkFactory.newFramework(FrameworkFactory.java:28)
>     at org.apache.karaf.main.Main.launch(Main.java:266)
>     at org.apache.karaf.main.Main.main(Main.java:427)
> Steps to reproduce:
> wget http://www.apache.org/dyn/closer.cgi/karaf/2.2.4/apache-karaf-2.2.4.tar.gz
> tar -xvzf  apache-karaf-2.2.4.tar.gz
> cd apache-karaf-2.2.4/
> # Assuming you've got bcprov-jdk16-1.46.jar in your maven repo
> cp ~/.m2/repository/org/bouncycastle/bcprov-jdk16/1.46/bcprov-jdk16-1.46.jar ./lib/ext/
> nano etc/custom.properties    # Add the following:
> org.osgi.framework.system.packages.extra =  \
>    org.bouncycastle.math.ec;version=1.46; \
>    org.bouncycastle.jce.provider;version=1.46;
> org.apache.felix.karaf.security.providers = org.bouncycastle.jce.provider.BouncyCastleProvider
> org.osgi.framework.bootdelegation = org.bouncycastle.*;
> ./bin/karaf
> # It exits immediately with the stacktrace above

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (FELIX-3250) Bouncy Castle JCE with Felix framework 3.0.8/3.0.9

Posted by "Karl Pauls (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/FELIX-3250?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13160976#comment-13160976 ] 

Karl Pauls commented on FELIX-3250:
-----------------------------------

I think the meta-data you've added in the properties is wrong and we fail to log it correctly. Can you try with:


org.osgi.framework.system.packages.extra = \ 
   org.bouncycastle.math.ec;version=1.46, \ 
   org.bouncycastle.jce.provider;version=1.46
org.apache.felix.karaf.security.providers = org.bouncycastle.jce.provider.BouncyCastleProvider 
org.osgi.framework.bootdelegation = org.bouncycastle.*

and see whether that helps?
                
> Bouncy Castle JCE with Felix framework 3.0.8/3.0.9
> --------------------------------------------------
>
>                 Key: FELIX-3250
>                 URL: https://issues.apache.org/jira/browse/FELIX-3250
>             Project: Felix
>          Issue Type: Bug
>          Components: Framework
>    Affects Versions: framework-3.0.1, framework-3.0.8
>         Environment: Linux, sun jdk 1.6 (20.1-b02), Karaf 2.20 - 2.2.4
>            Reporter: Caspar MacRae
>
> Apologies for only providing information in the context of Karaf, but I don't have time to do a standalone testcase.
> I've an issue with Bouncy Castle JCE running with Felix (I found this while trying to extend our custom Karaf distro, it seems to be a problem with Karaf 2.2.0 (Felix 3.0.8) through to 2.2.4 (Felix 3.0.9) but doesn't happen when I use Equinox.
> Could not create framework: java.lang.ArrayIndexOutOfBoundsException: -1
> java.lang.ArrayIndexOutOfBoundsException: -1
>     at java.util.ArrayList.get(ArrayList.java:324)
>     at org.apache.felix.framework.BundleImpl.getCurrentModule(BundleImpl.java:1050)
>     at org.apache.felix.framework.BundleImpl.getSymbolicName(BundleImpl.java:859)
>     at org.apache.felix.framework.Felix.toString(Felix.java:1019)
>     at org.apache.felix.framework.Logger.doLog(Logger.java:128)
>     at org.apache.felix.framework.Logger._log(Logger.java:181)
>     at org.apache.felix.framework.Logger.log(Logger.java:114)
>     at org.apache.felix.framework.ExtensionManager.<init>(ExtensionManager.java:201)
>     at org.apache.felix.framework.Felix.<init>(Felix.java:374)
>     at org.apache.felix.framework.FrameworkFactory.newFramework(FrameworkFactory.java:28)
>     at org.apache.karaf.main.Main.launch(Main.java:266)
>     at org.apache.karaf.main.Main.main(Main.java:427)
> Steps to reproduce:
> wget http://www.apache.org/dyn/closer.cgi/karaf/2.2.4/apache-karaf-2.2.4.tar.gz
> tar -xvzf  apache-karaf-2.2.4.tar.gz
> cd apache-karaf-2.2.4/
> # Assuming you've got bcprov-jdk16-1.46.jar in your maven repo
> cp ~/.m2/repository/org/bouncycastle/bcprov-jdk16/1.46/bcprov-jdk16-1.46.jar ./lib/ext/
> nano etc/custom.properties    # Add the following:
> org.osgi.framework.system.packages.extra =  \
>    org.bouncycastle.math.ec;version=1.46; \
>    org.bouncycastle.jce.provider;version=1.46;
> org.apache.felix.karaf.security.providers = org.bouncycastle.jce.provider.BouncyCastleProvider
> org.osgi.framework.bootdelegation = org.bouncycastle.*;
> ./bin/karaf
> # It exits immediately with the stacktrace above

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Issue Comment Edited] (FELIX-3250) Bouncy Castle JCE with Felix framework 3.0.8/3.0.9

Posted by "Caspar MacRae (Issue Comment Edited) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/FELIX-3250?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13160981#comment-13160981 ] 

Caspar MacRae edited comment on FELIX-3250 at 12/1/11 5:04 PM:
---------------------------------------------------------------

Thanks Karl, that correct, user error;  it's commas instead of semi-colons.


In case anyone stumbles on this looking for the system package extras, you'll need to add "org.bouncycastle.crypto.prng" as well
                
      was (Author: earcam):
    Thanks Karl, that correct, user error;  it's commas instead of semi-colons
                  
> Bouncy Castle JCE with Felix framework 3.0.8/3.0.9
> --------------------------------------------------
>
>                 Key: FELIX-3250
>                 URL: https://issues.apache.org/jira/browse/FELIX-3250
>             Project: Felix
>          Issue Type: Bug
>          Components: Framework
>    Affects Versions: framework-3.0.1, framework-3.0.8
>         Environment: Linux, sun jdk 1.6 (20.1-b02), Karaf 2.20 - 2.2.4
>            Reporter: Caspar MacRae
>
> Apologies for only providing information in the context of Karaf, but I don't have time to do a standalone testcase.
> I've an issue with Bouncy Castle JCE running with Felix (I found this while trying to extend our custom Karaf distro, it seems to be a problem with Karaf 2.2.0 (Felix 3.0.8) through to 2.2.4 (Felix 3.0.9) but doesn't happen when I use Equinox.
> Could not create framework: java.lang.ArrayIndexOutOfBoundsException: -1
> java.lang.ArrayIndexOutOfBoundsException: -1
>     at java.util.ArrayList.get(ArrayList.java:324)
>     at org.apache.felix.framework.BundleImpl.getCurrentModule(BundleImpl.java:1050)
>     at org.apache.felix.framework.BundleImpl.getSymbolicName(BundleImpl.java:859)
>     at org.apache.felix.framework.Felix.toString(Felix.java:1019)
>     at org.apache.felix.framework.Logger.doLog(Logger.java:128)
>     at org.apache.felix.framework.Logger._log(Logger.java:181)
>     at org.apache.felix.framework.Logger.log(Logger.java:114)
>     at org.apache.felix.framework.ExtensionManager.<init>(ExtensionManager.java:201)
>     at org.apache.felix.framework.Felix.<init>(Felix.java:374)
>     at org.apache.felix.framework.FrameworkFactory.newFramework(FrameworkFactory.java:28)
>     at org.apache.karaf.main.Main.launch(Main.java:266)
>     at org.apache.karaf.main.Main.main(Main.java:427)
> Steps to reproduce:
> wget http://www.apache.org/dyn/closer.cgi/karaf/2.2.4/apache-karaf-2.2.4.tar.gz
> tar -xvzf  apache-karaf-2.2.4.tar.gz
> cd apache-karaf-2.2.4/
> # Assuming you've got bcprov-jdk16-1.46.jar in your maven repo
> cp ~/.m2/repository/org/bouncycastle/bcprov-jdk16/1.46/bcprov-jdk16-1.46.jar ./lib/ext/
> nano etc/custom.properties    # Add the following:
> org.osgi.framework.system.packages.extra =  \
>    org.bouncycastle.math.ec;version=1.46; \
>    org.bouncycastle.jce.provider;version=1.46;
> org.apache.felix.karaf.security.providers = org.bouncycastle.jce.provider.BouncyCastleProvider
> org.osgi.framework.bootdelegation = org.bouncycastle.*;
> ./bin/karaf
> # It exits immediately with the stacktrace above

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (FELIX-3250) Bouncy Castle JCE with Felix framework 3.0.8/3.0.9

Posted by "Caspar MacRae (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/FELIX-3250?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13160981#comment-13160981 ] 

Caspar MacRae commented on FELIX-3250:
--------------------------------------

Thanks Karl, that correct, user error;  it's commas instead of semi-colons
                
> Bouncy Castle JCE with Felix framework 3.0.8/3.0.9
> --------------------------------------------------
>
>                 Key: FELIX-3250
>                 URL: https://issues.apache.org/jira/browse/FELIX-3250
>             Project: Felix
>          Issue Type: Bug
>          Components: Framework
>    Affects Versions: framework-3.0.1, framework-3.0.8
>         Environment: Linux, sun jdk 1.6 (20.1-b02), Karaf 2.20 - 2.2.4
>            Reporter: Caspar MacRae
>
> Apologies for only providing information in the context of Karaf, but I don't have time to do a standalone testcase.
> I've an issue with Bouncy Castle JCE running with Felix (I found this while trying to extend our custom Karaf distro, it seems to be a problem with Karaf 2.2.0 (Felix 3.0.8) through to 2.2.4 (Felix 3.0.9) but doesn't happen when I use Equinox.
> Could not create framework: java.lang.ArrayIndexOutOfBoundsException: -1
> java.lang.ArrayIndexOutOfBoundsException: -1
>     at java.util.ArrayList.get(ArrayList.java:324)
>     at org.apache.felix.framework.BundleImpl.getCurrentModule(BundleImpl.java:1050)
>     at org.apache.felix.framework.BundleImpl.getSymbolicName(BundleImpl.java:859)
>     at org.apache.felix.framework.Felix.toString(Felix.java:1019)
>     at org.apache.felix.framework.Logger.doLog(Logger.java:128)
>     at org.apache.felix.framework.Logger._log(Logger.java:181)
>     at org.apache.felix.framework.Logger.log(Logger.java:114)
>     at org.apache.felix.framework.ExtensionManager.<init>(ExtensionManager.java:201)
>     at org.apache.felix.framework.Felix.<init>(Felix.java:374)
>     at org.apache.felix.framework.FrameworkFactory.newFramework(FrameworkFactory.java:28)
>     at org.apache.karaf.main.Main.launch(Main.java:266)
>     at org.apache.karaf.main.Main.main(Main.java:427)
> Steps to reproduce:
> wget http://www.apache.org/dyn/closer.cgi/karaf/2.2.4/apache-karaf-2.2.4.tar.gz
> tar -xvzf  apache-karaf-2.2.4.tar.gz
> cd apache-karaf-2.2.4/
> # Assuming you've got bcprov-jdk16-1.46.jar in your maven repo
> cp ~/.m2/repository/org/bouncycastle/bcprov-jdk16/1.46/bcprov-jdk16-1.46.jar ./lib/ext/
> nano etc/custom.properties    # Add the following:
> org.osgi.framework.system.packages.extra =  \
>    org.bouncycastle.math.ec;version=1.46; \
>    org.bouncycastle.jce.provider;version=1.46;
> org.apache.felix.karaf.security.providers = org.bouncycastle.jce.provider.BouncyCastleProvider
> org.osgi.framework.bootdelegation = org.bouncycastle.*;
> ./bin/karaf
> # It exits immediately with the stacktrace above

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira