Uploaded image for project: 'Lucene - Core'
  1. Lucene - Core
  2. LUCENE-369

Cannot use Lucene in an unsigned applet due to Java security restrictions

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • None
    • None
    • core/other
    • None
    • Operating System: All
      Platform: All

    • 34359

    Description

      A few of the Lucene source files call System.getProperty and perform a couple of
      other operations within static initializers that assume full Java 2 permissions.
      This prevents Lucene from being used from an unsigned applet embedded in a
      browser page, since the default security permissions for an applet will prohibit
      reading of most properties.

      I would suggest wrapping the initialization of the properties in try/catch
      blocks. This does mean that a couple properties would need to be made non-final,
      and in some cases, getter and setter methods might be desirable to allow the
      applet programmer to change the property values at runtime (some variables are
      public static and could be changed directly without accessors).

      This problem occurs with the shipping 1.4.3 version as well as the latest (as of
      07-apr-2005) source code fetched from CVS.

      Currently, the files that are affected are org.apache.lucene.index.IndexWriter,
      org.apache.lucene.index.SegmentReader, org.apache.lucene.search.BooleanQuery,
      and org.apache.lucene.store.FSDirectory.

      I have modified versions of these files with some suggested changes, plus a
      simple test applet and associated files that demonstrate the situation. The
      sample applet can be launched in a browser either by double-clicking the file
      locally or by putting it on a web server and launching it from an http URL. As
      soon as I can figure out how to attach to a bug report, I'll do that.

      P.S. This topic came up in August, 2004 in lucene dev mailing list but as far as
      I can tell, has not yet been resolved.

      Attachments

        1. ASF.LICENSE.NOT.GRANTED--SegmentReader.java
          18 kB
          Jon Schuster
        2. ASF.LICENSE.NOT.GRANTED--SegmentReader.diffs
          0.9 kB
          Jon Schuster
        3. ASF.LICENSE.NOT.GRANTED--sampleapplet.zip
          15 kB
          Jon Schuster
        4. ASF.LICENSE.NOT.GRANTED--IndexWriter.java
          29 kB
          Jon Schuster
        5. ASF.LICENSE.NOT.GRANTED--IndexWriter.diffs
          5 kB
          Jon Schuster
        6. ASF.LICENSE.NOT.GRANTED--FSDirectory.java
          16 kB
          Jon Schuster
        7. ASF.LICENSE.NOT.GRANTED--FSDirectory.diffs
          3 kB
          Jon Schuster
        8. ASF.LICENSE.NOT.GRANTED--BooleanQuery.java
          14 kB
          Jon Schuster
        9. ASF.LICENSE.NOT.GRANTED--BooleanQuery.diffs
          1 kB
          Jon Schuster

        Activity

          People

            java-dev@lucene.apache.org Lucene Developers
            jons@wrq.com Jon Schuster
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: